diff --git a/.Rbuildignore b/.Rbuildignore
new file mode 100644
index 00000000..0ab21e67
--- /dev/null
+++ b/.Rbuildignore
@@ -0,0 +1,14 @@
+^vignettes/
+^input/
+^tools/
+^manuscript/
+^output/
+^\.github/workflows/
+^amadeus\.Rproj$
+^\.Rproj\.user$
+^\.github$
+^LICENSE\.md$
+^_pkgdown\.yml$
+^docs$
+^pkgdown$
+^.lintr
\ No newline at end of file
diff --git a/.github/workflows/check-standard.yaml b/.github/workflows/check-standard.yaml
new file mode 100644
index 00000000..0fa37d91
--- /dev/null
+++ b/.github/workflows/check-standard.yaml
@@ -0,0 +1,55 @@
+# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
+# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
+on:
+ push:
+ branches: [main, master]
+ pull_request:
+ branches: [main, master]
+
+name: R-CMD-check
+
+jobs:
+ R-CMD-check:
+ runs-on: ${{ matrix.config.os }}
+
+ name: ${{ matrix.config.os }} (${{ matrix.config.r }})
+
+ strategy:
+ fail-fast: false
+ matrix:
+ config:
+ - {os: macos-latest, r: 'release'}
+ #- {os: macos-13-xlarge, r: 'release'}
+ - {os: windows-latest, r: 'release'}
+ - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
+ - {os: ubuntu-latest, r: 'release'}
+ - {os: ubuntu-latest, r: 'oldrel-1'}
+
+ env:
+ GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
+ R_KEEP_PKG_SOURCE: yes
+
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: r-lib/actions/setup-pandoc@v2
+
+ - uses: r-lib/actions/setup-r@v2
+ with:
+ r-version: ${{ matrix.config.r }}
+ http-user-agent: ${{ matrix.config.http-user-agent }}
+ use-public-rspm: true
+
+ - uses: r-lib/actions/setup-r-dependencies@v2
+ with:
+ extra-packages: |
+ any::tictoc
+ any::units
+ any::rcmdcheck
+ any::knitr
+ any::rmarkdown
+ needs: check
+
+ - uses: r-lib/actions/check-r-package@v2
+ with:
+ upload-snapshots: true
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
new file mode 100644
index 00000000..f45f7952
--- /dev/null
+++ b/.github/workflows/lint.yaml
@@ -0,0 +1,32 @@
+# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
+# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
+on:
+ push:
+ branches: [main, master]
+ pull_request:
+ branches: [main, master]
+
+name: lint
+
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+ env:
+ GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: r-lib/actions/setup-r@v2
+ with:
+ use-public-rspm: true
+
+ - uses: r-lib/actions/setup-r-dependencies@v2
+ with:
+ extra-packages: any::lintr, local::.
+ needs: lint
+
+ - name: Lint
+ run: lintr::lint_package()
+ shell: Rscript {0}
+ env:
+ LINTR_ERROR_ON_LINT: true
\ No newline at end of file
diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml
new file mode 100644
index 00000000..eb333254
--- /dev/null
+++ b/.github/workflows/pkgdown.yaml
@@ -0,0 +1,48 @@
+# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
+# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
+on:
+ push:
+ branches: [main, master]
+ pull_request:
+ branches: [main, master]
+ release:
+ types: [published]
+ workflow_dispatch:
+
+name: pkgdown
+
+jobs:
+ pkgdown:
+ runs-on: ubuntu-latest
+ # Only restrict concurrency for non-PR jobs
+ concurrency:
+ group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
+ env:
+ GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
+ permissions:
+ contents: write
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: r-lib/actions/setup-pandoc@v2
+
+ - uses: r-lib/actions/setup-r@v2
+ with:
+ use-public-rspm: true
+
+ - uses: r-lib/actions/setup-r-dependencies@v2
+ with:
+ extra-packages: any::pkgdown, local::.
+ needs: website
+
+ - name: Build site
+ run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
+ shell: Rscript {0}
+
+ - name: Deploy to GitHub pages 🚀
+ if: github.event_name != 'pull_request'
+ uses: JamesIves/github-pages-deploy-action@v4.4.1
+ with:
+ clean: false
+ branch: gh-pages
+ folder: docs
diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml
new file mode 100644
index 00000000..30c9bad7
--- /dev/null
+++ b/.github/workflows/test-coverage.yaml
@@ -0,0 +1,59 @@
+# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
+# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
+on:
+ push:
+ branches: [main, master]
+ pull_request:
+ branches: [main, master]
+
+name: test-coverage
+
+jobs:
+ test-coverage:
+ runs-on: ubuntu-latest
+ env:
+ GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # Add this line
+
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: r-lib/actions/setup-r@v2
+ with:
+ use-public-rspm: true
+
+ - uses: r-lib/actions/setup-r-dependencies@v2
+ with:
+ extra-packages: |
+ any::tictoc
+ any::units
+ any::knitr
+ any::rmarkdown
+ needs: coverage
+
+ - name: Test coverage
+ run: |
+ covr::codecov(
+ quiet = FALSE,
+ clean = FALSE,
+ install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package")
+ )
+ shell: Rscript {0}
+
+ - name: Show testthat output
+ if: always()
+ run: |
+ ## --------------------------------------------------------------------
+ find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true
+ shell: bash
+
+ - name: Upload test results
+ if: failure()
+ uses: actions/upload-artifact@v3
+ with:
+ name: coverage-test-failures
+ path: ${{ runner.temp }}/package
+
+ - name: Upload coverage to Codecov # Add this step
+ run: |
+ Rscript -e "covr::codecov(token = Sys.getenv('CODECOV_TOKEN'))"
diff --git a/.gitignore b/.gitignore
index e75435c1..e07c36a5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -47,3 +47,7 @@ po/*~
# RStudio Connect folder
rsconnect/
+
+# DS_Store
+.DS_Store
+**/.DS_Store
\ No newline at end of file
diff --git a/.lintr b/.lintr
new file mode 100644
index 00000000..ddbabee1
--- /dev/null
+++ b/.lintr
@@ -0,0 +1,6 @@
+linters: linters_with_defaults(
+ commented_code_linter = NULL
+ )
+exclusions: list(
+ "tests/testthat/test-download_functions.R"
+ )
diff --git a/DESCRIPTION b/DESCRIPTION
new file mode 100644
index 00000000..44f61fa8
--- /dev/null
+++ b/DESCRIPTION
@@ -0,0 +1,25 @@
+Package: amadeus
+Title: AMADEUS: A Mechanism/Machine for Data, Environments, and User Setup
+Version: 0.0.1
+Authors@R: c(
+ person("Kyle", "Messier", , "kyle.messier@nih.gov", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-9508-9623")),
+ person("Mitchell", "Manware", role = c("aut", "ctb"), comment = c(ORCID = "0009-0003-6440-6106")),
+ person("Insang", "Song", role = c("aut", "ctb"), comment = c(ORCID = "0000-0001-8732-3256")),
+ person("Eva", "Marques", role = c("aut", "ctb"), comment = c(ORCID = "0000-0001-9817-6546")),
+ person("Mariana", "Alifa Kassien", role = c("aut", "ctb"), comment = c(ORCID = "0000-0003-2295-406X")),
+ person("Ranadeep", "Daw", role = c("aut", "ctb"), comment = c(ORCID = "0000-0003-3590-909X")),
+ person("Daniel", "Zilber", role = c("aut", "ctb"), comment = c(ORCID = "0000-0002-4387-0271"))
+ )
+Description: A Mechanism/Machine for Data, Environments, and User Setup package for health and climate research. It is fully tested, versioned, and open source and open access.
+Depends: R (>= 4.1.0)
+Imports: dplyr, sf, stats, terra, methods, data.table, httr, rvest, exactextractr, utils, stringr, testthat (>= 3.0.0), doParallel, parallelly, stars, foreach, future
+Suggests: covr, withr, knitr, rmarkdown, sftime, lwgeom, FNN, doRNG
+Encoding: UTF-8
+VignetteBuilder: knitr, rmarkdown
+Roxygen: list(markdown = TRUE)
+RoxygenNote: 7.3.0
+Config/Needs/website: tidyverse/tidytemplate
+Config/testhat/edition: 3
+License: MIT + file LICENSE
+URL: https://github.com/Spatiotemporal-Exposures-and-Toxicology/amadeus,
+https: //spatiotemporal-exposures-and-toxicology.github.io/amadeus/
diff --git a/NAMESPACE b/NAMESPACE
new file mode 100644
index 00000000..92d8da21
--- /dev/null
+++ b/NAMESPACE
@@ -0,0 +1,110 @@
+# Generated by roxygen2: do not edit by hand
+
+export(calc_covariates)
+export(calc_ecoregion)
+export(calc_koppen_geiger)
+export(calc_modis)
+export(calc_nei)
+export(calc_nlcd_ratio)
+export(calc_temporal_dummies)
+export(calc_tri)
+export(check_for_null_parameters)
+export(check_url_status)
+export(check_urls)
+export(convert_stdt)
+export(convert_stdt_sftime)
+export(convert_stdt_spatrastdataset)
+export(convert_stdt_spatvect)
+export(convert_stobj_to_stdt)
+export(download_aqs_data)
+export(download_data)
+export(download_ecoregion_data)
+export(download_epa_certificate)
+export(download_geos_cf_data)
+export(download_gmted_data)
+export(download_koppen_geiger_data)
+export(download_merra2_data)
+export(download_modis_data)
+export(download_narr_monolevel_data)
+export(download_narr_p_levels_data)
+export(download_nei_data)
+export(download_nlcd_data)
+export(download_noaa_hms_smoke_data)
+export(download_permit)
+export(download_remove_command)
+export(download_remove_zips)
+export(download_run)
+export(download_sanitize_path)
+export(download_sedac_groads_data)
+export(download_sedac_population_data)
+export(download_setup_dir)
+export(download_sink)
+export(download_tri_data)
+export(download_unzip)
+export(extract_urls)
+export(generate_date_sequence)
+export(is_stdt)
+export(modis_aggregate_sds)
+export(modis_get_vrt)
+export(modis_mosaic_mod06)
+export(modis_prefilter_sds)
+export(modis_preprocess_vnp46)
+export(modis_warp_stars)
+export(modis_worker)
+export(read_commands)
+export(test_download_functions)
+import(rvest)
+importFrom(data.table,.SD)
+importFrom(data.table,as.data.table)
+importFrom(data.table,fread)
+importFrom(data.table,melt)
+importFrom(data.table,merge.data.table)
+importFrom(data.table,month)
+importFrom(data.table,rbindlist)
+importFrom(data.table,year)
+importFrom(doParallel,registerDoParallel)
+importFrom(dplyr,bind_rows)
+importFrom(dplyr,left_join)
+importFrom(exactextractr,exact_extract)
+importFrom(foreach,"%dopar%")
+importFrom(foreach,foreach)
+importFrom(future,cluster)
+importFrom(future,plan)
+importFrom(httr,GET)
+importFrom(httr,HEAD)
+importFrom(methods,is)
+importFrom(parallelly,availableWorkers)
+importFrom(sf,st_as_sf)
+importFrom(sf,st_coordinates)
+importFrom(sf,st_crs)
+importFrom(sf,st_drop_geometry)
+importFrom(sf,st_geometry)
+importFrom(sf,st_transform)
+importFrom(sf,st_union)
+importFrom(stars,read_stars)
+importFrom(stars,st_warp)
+importFrom(stats,reshape)
+importFrom(stringr,str_split_i)
+importFrom(terra,buffer)
+importFrom(terra,coltab)
+importFrom(terra,crop)
+importFrom(terra,crs)
+importFrom(terra,describe)
+importFrom(terra,ext)
+importFrom(terra,extract)
+importFrom(terra,intersect)
+importFrom(terra,merge)
+importFrom(terra,mosaic)
+importFrom(terra,nlyr)
+importFrom(terra,project)
+importFrom(terra,rast)
+importFrom(terra,same.crs)
+importFrom(terra,sds)
+importFrom(terra,snap)
+importFrom(terra,tapp)
+importFrom(terra,vect)
+importFrom(testthat,expect_true)
+importFrom(utils,download.file)
+importFrom(utils,head)
+importFrom(utils,read.csv)
+importFrom(utils,tail)
diff --git a/R/calculate_covariates.R b/R/calculate_covariates.R
new file mode 100644
index 00000000..9f6a0d40
--- /dev/null
+++ b/R/calculate_covariates.R
@@ -0,0 +1,959 @@
+#' Calculate covariates
+
+# nocov start
+# nolint start
+#' @param covariate character(1). Covariate type.
+#' @param path character. Single or multiple path strings.
+#' @param sites sf/SpatVector. Unique sites. Should include
+#' a unique identifier field named \code{id_col}
+#' @param id_col character(1). Name of unique identifier.
+#' Default is \code{"site_id"}.
+#' @param ... Arguments passed to each covariate calculation
+#' function.
+#' @seealso
+#' - \link{calc_modis}: `"modis"`, `"MODIS"`
+#' - \link{calc_koppen_geiger}: `"koppen-geiger"`, `"koeppen-geiger"`, `"koppen"`,
+#' - \link{calc_ecoregion}: `"ecoregion"`, `"ecoregions"`
+#' - \link{calc_temporal_dummies}: `"dummies"`
+#' @returns Calculated covariates. Mainly data.frame object.
+#' @author Insang Song
+#' @export
+# nolint end
+calc_covariates <-
+ function(
+ covariate = c("modis", "koppen-geiger",
+ "koeppen-geiger", "koppen", "koeppen",
+ "geos", "dummies", "gmted", "roads",
+ "sedac_groads", "nlcd", "tri", "ncep", "aadt",
+ "ecoregions", "ecoregion"),
+ path,
+ sites,
+ id_col = "site_id",
+ ...) {
+
+ covariate <- tolower(covariate)
+ covariate <- match.arg(covariate)
+ if (startsWith(covariate, "ko")) {
+ covariate <- "koppen"
+ }
+
+ # select function to run
+ what_to_run <- switch(covariate,
+ modis = calc_modis,
+ ecoregion = calc_ecoregion,
+ ecoregions = calc_ecoregion,
+ koppen = calc_koppen_geiger,
+ # narr_monolevel = calc_narr_monolevel,
+ # monolevel = calc_narr_monolevel,
+ # narr_p_levels = calc_narr_p_levels,
+ # p_levels = calc_narr_p_levels,
+ # plevels = calc_narr_p_levels,
+ nlcd = calc_nlcd_ratio,
+ # noaa = calc_noaa_hms,
+ # smoke = calc_noaa_hms,
+ # hms = calc_noaa_hms,
+ # sedac_groads = calc_sedac_groads,
+ # roads = calc_sedac_groads,
+ # sedac_population = calc_sedac_population,
+ # population = calc_sedac_population,
+ # aadt = calc_aadt,
+ # tri = calc_tri,
+ # ncep = calc_ncep,
+ # geos = calc_geos,
+ # gmted = calc_gmted,
+ dummies = calc_temporal_dummies
+ )
+
+ res_covariate <-
+ tryCatch({
+ what_to_run(
+ path = path,
+ sites = sites,
+ id_col = id_col,
+ ...
+ )
+ }, error = function(e) {
+ print(e)
+ print(args(what_to_run))
+ message(paste0("Please refer to the argument list and
+ the error message above to rectify the error.\n"))
+ return(NULL)
+ })
+
+ return(res_covariate)
+ }
+# nocov end
+
+#' Calculate Koeppen-Geiger climate zone binary variables
+#' @param path character(1). Path to Koppen-Geiger
+#' climate zone raster file
+#' @param sites sf/SpatVector. Unique sites. Should include
+#' a unique identifier field named \code{id_col}
+#' @param id_col character(1). Name of unique identifier.
+#' @returns a data.frame object
+#' @author Insang Song
+#' @importFrom terra vect
+#' @importFrom terra rast
+#' @importFrom terra crs
+#' @importFrom terra project
+#' @importFrom terra extract
+#' @importFrom terra coltab
+#' @importFrom terra merge
+#' @importFrom methods is
+#' @export
+calc_koppen_geiger <-
+ function(
+ path = "./input/koppen_geiger/raw/Beck_KG_V1_present_0p0083.tif",
+ sites,
+ id_col = "site_id") {
+ ## You will get "sites" in memory after sourcing the file above
+ kg_rast <- terra::rast(path)
+ sites_tr <- sites
+
+ if (!methods::is(sites, "SpatVector")) {
+ sites_tr <- terra::vect(sites)
+ }
+ sites_kg <- terra::project(sites_tr, terra::crs(kg_rast))
+ sites_kg_extract <- terra::extract(kg_rast, sites_kg)
+
+ # The starting value is NA as the color table has 0 value in it
+ kg_class <-
+ c(
+ NA, "Af", "Am", "Aw", "BWh", "BWk", "BSh", "BSk", "Csa", "Csb",
+ "Csc", "Cwa", "Cwb", "Cwc", "Cfa", "Cfb", "Cfc",
+ "Dsa", "Dsb", "Dsc", "Dsd", "Dwa", "Dwb", "Dwc", "Dwd",
+ "Dfa", "Dfb", "Dfc", "Dfd", "ET", "EF"
+ )
+ kg_coltab <- terra::coltab(kg_rast)
+ kg_coltab <- kg_coltab[[1]][seq(1, 31), ]
+ kg_colclass <- data.frame(
+ value = kg_coltab$value,
+ class_kg = kg_class
+ )
+
+ sites_kg_extract[[id_col]] <- unlist(sites_kg[[id_col]])
+ colnames(sites_kg_extract)[2] <- "value"
+ sites_kg_extract_e <- merge(sites_kg_extract, kg_colclass, by = "value")
+
+ # "Dfa": 25
+ # "BSh": 6
+ # "Dfb": 26
+ id_search <- unlist(sites_kg_extract_e[[id_col]])
+ # errorfix: how to generalize and auto-fix it?
+ sites_kg_extract_e[
+ which(id_search == "44009000788101"),
+ "class_kg"
+ ] <- "Dfa"
+ sites_kg_extract_e[
+ which(id_search == "48061200488101"),
+ "class_kg"
+ ] <- "BSh"
+ sites_kg_extract_e[
+ which(id_search == "33015001488101"),
+ "class_kg"
+ ] <- "Dfb"
+
+ sites_kg_extract_e$class_kg <-
+ as.factor(substr(sites_kg_extract_e$class_kg, 1, 1))
+ # currently there are no "E" region in sites.
+ # however, E is filled with all zeros at the moment.
+ aelabels <- LETTERS[1:5]
+ df_ae_separated <-
+ split(aelabels, aelabels) |>
+ lapply(function(x) {
+ as.integer(sites_kg_extract_e$class_kg == x)
+ }) |>
+ Reduce(f = cbind, x = _) |>
+ as.data.frame()
+ colnames(df_ae_separated) <- sprintf("DUM_CLRG%s_0_00000", aelabels)
+
+ kg_extracted <-
+ cbind(
+ site_id = unlist(sites_kg_extract_e[[id_col]]),
+ df_ae_separated
+ )
+ return(kg_extracted)
+ }
+
+
+#' Compute land cover classes ratio in circle buffers around points
+#'
+#' @param path character giving nlcd data path
+#' @param sites terra::SpatVector of points geometry
+#' @param radius numeric (non-negative) giving the
+#' radius of buffer around points
+#' @param year numeric giving the year of NLCD data used
+#' @importFrom utils read.csv
+#' @importFrom terra rast
+#' @importFrom terra project
+#' @importFrom terra vect
+#' @importFrom terra crs
+#' @importFrom terra same.crs
+#' @importFrom terra buffer
+#' @importFrom sf st_union
+#' @importFrom sf st_geometry
+#' @importFrom terra intersect
+#' @importFrom exactextractr exact_extract
+#' @export
+calc_nlcd_ratio <- function(path,
+ sites,
+ radius = 1000,
+ year = 2021) {
+ # check inputs
+ if (!is.numeric(radius)) {
+ stop("radius is not a numeric.")
+ }
+ if (radius <= 0) {
+ stop("radius has not a likely value.")
+ }
+ if (!is.numeric(year)) {
+ stop("year is not a numeric.")
+ }
+ if (class(sites)[1] != "SpatVector") {
+ stop("sites is not a terra::SpatVector.")
+ }
+ if (!is.character(path)) {
+ stop("path is not a character.")
+ }
+ if (!file.exists(path)) {
+ stop("path does not exist.")
+ }
+ # open nlcd file corresponding to the year
+ nlcd_file <- list.files(path,
+ pattern = paste0("nlcd_", year, "_.*.tif$"),
+ full.names = TRUE)
+ if (length(nlcd_file) == 0) {
+ stop("NLCD data not available for this year.")
+ }
+ nlcd <- terra::rast(nlcd_file)
+ # select points within mainland US and reproject on nlcd crs if necessary
+ us_main <-
+ terra::ext(c(xmin = -127, xmax = -65, ymin = 24, ymax = 51)) |>
+ terra::vect() |>
+ terra::set.crs("EPSG:4326") |>
+ terra::project(y = terra::crs(sites))
+ data_vect_b <- sites |>
+ terra::intersect(x = us_main)
+ if (!terra::same.crs(data_vect_b, nlcd)) {
+ data_vect_b <- terra::project(data_vect_b, terra::crs(nlcd))
+ }
+ # create circle buffers with buf_radius
+ bufs_pol <- terra::buffer(data_vect_b, width = radius) |>
+ sf::st_as_sf()
+ # ratio of each nlcd class per buffer
+ nlcd_at_bufs <- exactextractr::exact_extract(nlcd,
+ sf::st_geometry(bufs_pol),
+ fun = "frac",
+ stack_apply = TRUE,
+ progress = FALSE)
+ # select only the columns of interest
+ nlcd_at_bufs <- nlcd_at_bufs[names(nlcd_at_bufs)[grepl("frac_",
+ names(nlcd_at_bufs))]]
+ # change column names
+ fpath <- system.file("extdata", "nlcd_classes.csv", package = "amadeus")
+ nlcd_classes <- utils::read.csv(fpath)
+ nlcd_names <- names(nlcd_at_bufs)
+ nlcd_names <- sub(pattern = "frac_", replacement = "", x = nlcd_names)
+ nlcd_names <- as.numeric(nlcd_names)
+ nlcd_names <- nlcd_classes[nlcd_classes$value %in% nlcd_names, c("class")]
+ new_names <- sapply(
+ nlcd_names,
+ function(x) {
+ sprintf("LDU_%s_0_%05d_%04d", x, radius, year)
+ }
+ )
+ names(nlcd_at_bufs) <- new_names
+ # merge data_vect with nlcd class fractions (and reproject)
+ new_data_vect <- cbind(data_vect_b, nlcd_at_bufs)
+ new_data_vect <- terra::project(new_data_vect, terra::crs(sites))
+ return(new_data_vect)
+}
+
+
+#' Calculate EPA Ecoregions level 2/3 binary variables
+#' @param path character(1). Path to Ecoregion Shapefiles
+#' @param sites sf/SpatVector. Unique sites. Should include
+#' a unique identifier field named \code{id_col}
+#' @param id_col character(1). Name of unique identifier.
+#' @returns a data.frame object with dummy variables and attributes of:
+#' - \code{attr(., "ecoregion2_code")}: Ecoregion lv.2 code and key
+#' - \code{attr(., "ecoregion3_code")}: Ecoregion lv.3 code and key
+#' @author Insang Song
+#' @importFrom methods is
+#' @importFrom terra vect
+#' @importFrom terra project
+#' @importFrom terra intersect
+#' @importFrom terra snap
+#' @importFrom terra extract
+#' @importFrom terra crs
+#' @export
+calc_ecoregion <-
+ function(
+ path = "./input/data/ecoregions/raw/us_eco_l3_state_boundaries.shp",
+ sites,
+ id_col = "site_id"
+ ) {
+
+ if (!methods::is(sites, "SpatVector")) {
+ sites <- terra::vect(sites)
+ }
+ ecoreg <- terra::vect(path)
+ ecoreg <- ecoreg[, grepl("^(L2_KEY|L3_KEY)", names(ecoreg))]
+
+ sites <- terra::project(sites, terra::crs(ecoreg))
+
+ sites_in <- terra::intersect(sites, ecoreg)
+ sites_out <-
+ sites[!unlist(sites[[id_col]]) %in% unlist(sites_in[[id_col]]), ]
+
+ sites_snapped <- terra::snap(sites_out, ecoreg, tolerance = 50)
+ sites_fixed <- rbind(sites_in, sites_snapped)
+ extracted <- terra::extract(ecoreg, sites_fixed)
+
+ # Generate field names from extracted ecoregion keys
+ # TODO: if we keep all-zero fields, the initial reference
+ # should be the ecoregion polygon, not the extracted data
+ key2_sorted <- unlist(extracted[, 3])
+ key2_num <-
+ regmatches(key2_sorted, regexpr("\\d{1,2}\\.[1-9]", key2_sorted))
+ key2_num <- as.integer(10 * as.numeric(key2_num))
+ key2_num <- sprintf("DUM_E2%03d_0_00000", key2_num)
+ key2_num_unique <- sort(unique(key2_num))
+
+ key3_sorted <- unlist(extracted[, 2])
+ key3_num <-
+ regmatches(key3_sorted, regexpr("\\d{1,3}", key3_sorted))
+ key3_num <- as.integer(as.numeric(key3_num))
+ key3_num <- sprintf("DUM_E3%03d_0_00000", key3_num)
+ key3_num_unique <- sort(unique(key3_num))
+
+
+ df_lv2 <-
+ split(key2_num_unique, key2_num_unique) |>
+ lapply(function(x) {
+ as.integer(key2_num == x)
+ }) |>
+ Reduce(f = cbind, x = _) |>
+ as.data.frame()
+ colnames(df_lv2) <- key2_num_unique
+ df_lv3 <-
+ split(key3_num_unique, key3_num_unique) |>
+ lapply(function(x) {
+ as.integer(key3_num == x)
+ }) |>
+ Reduce(f = cbind, x = _) |>
+ as.data.frame()
+ colnames(df_lv3) <- key3_num_unique
+
+ sites_ecoreg <- cbind(sites[[id_col]], df_lv2, df_lv3)
+ attr(sites_ecoreg, "ecoregion2_code") <- sort(unique(ecoreg$L2_KEY))
+ attr(sites_ecoreg, "ecoregion3_code") <- sort(unique(ecoreg$L3_KEY))
+ return(sites_ecoreg)
+ }
+
+
+#' A single-date MODIS worker for parallelization
+#' @description modis_worker operates at six MODIS/VIIRS products
+#' (MOD11A1, MOD13A2, MOD06_L2, VNP46A2, MOD09GA, and MCD19A2)
+#' on a daily basis. Given that the raw hdf files are downloaded from
+#' NASA, standard file names include a data retrieval date flag starting
+#' with A. Leveraging that piece of information, the function will select
+#' files of scope on the date of interest. Please note that this function
+#' does not provide a function to filter swaths or tiles, so it is strongly
+#' recommended to check and pre-filter the file names at users' discretion.
+#' @param raster SpatRaster.
+#' @param date Date(1). date to query.
+#' @param sites_in SpatVector/sf/sftime object. AQS sites.
+#' @param name_extracted character. Names of calculated covariates.
+#' @param product character(1). Product code of MODIS. Should be one of
+#' \code{c('MOD11A1', 'MOD13A2', 'MOD06_L2', 'VNP46A2', 'MOD09GA', 'MCD19A2')}
+#' @param fun_summary_raster function. Summary function for
+#' multilayer rasters. Passed to \code{foo}. See also
+#' \code{\link[exactextractr]{exact_extract}}
+#' @param id_col character(1). Field name where unique site identifiers
+#' are stored. Default is `"site_id"`
+#' @param radius numeric. Radius to buffer.
+#' @author Insang Song
+#' @returns A data.frame object.
+#' @importFrom terra extract
+#' @importFrom terra project
+#' @importFrom terra vect
+#' @importFrom terra nlyr
+#' @importFrom terra describe
+#' @importFrom methods is
+#' @importFrom sf st_as_sf
+#' @importFrom sf st_drop_geometry
+#' @export
+modis_worker <- function(
+ raster,
+ date,
+ sites_in = NULL,
+ name_extracted = NULL,
+ product = c("MOD11A1", "MOD13A2", "MOD06_L2",
+ "VNP46A2", "MOD09GA", "MCD19A2"),
+ fun_summary_raster = "mean",
+ id_col = "site_id",
+ radius = 0L
+) {
+ if (!any(methods::is(sites_in, "SpatVector"),
+ methods::is(sites_in, "sf"),
+ methods::is(sites_in, "sftime"),
+ is_stdt(sites_in))) {
+ stop("sites_in should be one of sf, sftime, stdt, or SpatVector.\n")
+ }
+ if (is_stdt(sites_in)) {
+ sites_in <- convert_stdt_spatvect(sites_in)
+ }
+ if (!methods::is(sites_in, "SpatVector")) {
+ sites_in <- terra::vect(sites_in)
+ }
+ if (!id_col %in% names(sites_in)) {
+ stop(sprintf("sites should include columns named %s.\n",
+ id_col)
+ )
+ }
+ if (!"time" %in% names(sites_in)) {
+ sites_in$time <- date
+ }
+
+ extract_with_buffer <- function(
+ points,
+ surf,
+ radius,
+ id,
+ time = "time",
+ func = "mean"
+ ) {
+ # generate buffers
+ bufs <- terra::buffer(points, width = radius, quadsegs = 180L)
+ bufs <- terra::project(bufs, terra::crs(surf))
+ # crop raster (deprecated)
+
+ # extract raster values
+ surf_at_bufs <-
+ exactextractr::exact_extract(
+ x = surf,
+ y = sf::st_as_sf(bufs),
+ fun = func,
+ force_df = TRUE,
+ append_cols = c(id, time),
+ progress = FALSE,
+ max_cells_in_memory = 1e7
+ )
+ return(surf_at_bufs)
+ }
+
+ product <- match.arg(product)
+
+ ## internal NaN values 65535 to NaN
+ if (product == "VNP46A2") {
+ raster[raster == 65535L] <- NaN
+ }
+ ## NaN to zero
+ raster[is.nan(raster)] <- 0L
+
+ # raster used to be vrt_today
+ if (any(grepl("00000", name_extracted))) {
+ sites_tr <- terra::project(sites_in, terra::crs(raster))
+ extracted <- terra::extract(x = raster, y = sites_tr, ID = FALSE)
+ sites_blank <- as.data.frame(sites_in)
+ extracted <- cbind(sites_blank, extracted)
+ } else {
+ extracted <-
+ extract_with_buffer(
+ points = sites_in,
+ surf = raster,
+ id = id_col,
+ radius = radius,
+ func = fun_summary_raster
+ )
+ }
+
+ # cleaning names
+ # assuming that extracted is a data.frame
+ #extracted$time <- date
+ name_offset <- terra::nlyr(raster)
+ # multiple columns will get proper names
+ name_range <- seq(ncol(extracted) - name_offset + 1, ncol(extracted), 1)
+ colnames(extracted)[name_range] <- name_extracted
+ return(extracted)
+}
+
+
+
+#' Calculate MODIS product covariates in multiple CPU threads
+#' @description calc_modis essentially runs \code{modis_worker} function
+#' in each thread (subprocess). Based on daily resolution, each day's workload
+#' will be distributed to each thread. With \code{product} argument,
+#' the files are processed by a customized function where the unique structure
+#' and/or characteristics of the products are considered. \code{nthreads}
+#' argument should be carefully selected in consideration of the machine's
+#' CPU and memory capacities as products have their own memory pressure.
+#' Overall, this function and dependent routines assume that the file system
+#' can handle concurrent access to the (network) disk by multiple processes.
+#' File system characteristics, package versions, and hardware settings/
+#' specification can affect the processing efficiency.
+#' @param path character. List of HDF files.
+#' @param product character(1). MODIS product. Should be one of
+#' \code{c("MOD11A1", "MOD13A2", "MOD06_L2", "VNP46A2", "MOD09GA", "MCD19A2")}
+#' @param sites sf object. Unique sites where covariates
+#' will be calculated.
+#' @param id_col character(1). Site identifier. Default is `"site_id"`
+#' @param name_covariates character. Name header of covariates.
+#' e.g., `"MOD_NDVIF_0_"`.
+#' The calculated covariate names will have a form of
+#' '{name_covariates}{zero-padded buffer radius in meters}',
+#' e.g., 'MOD_NDVIF_0_50000' where 50 km radius circular buffer
+#' was used to calculate mean NDVI value.
+#' @param radius numeric. Radii to calculate covariates.
+#' Default is `c(0, 1000, 10000, 50000)`.
+#' @param subdataset Index or search pattern of subdataset.
+#' Pattern is not accepted when product is \code{"VNP46A2"} or
+#' \code{"MOD06_L2"}
+#' @param fun_summary character or function. Function to summarize
+#' extracted raster values.
+#' @param nthreads integer(1). Number of threads to be used
+#' to calculate covariates.
+#' @param package_list_add character. A vector with package names to load
+#' these in each thread. Note that \code{sf}, \code{terra},
+#' \code{exactextractr}, \code{doParallel}, \code{parallelly},
+#' and \code{dplyr}
+#' are the default packages to be loaded.
+#' @param export_list_add character. A vector with object names to export
+#' to each thread. It should be minimized to spare memory.
+#' @description sites should be sf object as it is exportable to
+#' parallel workers.
+#' @note See details for setting parallelization
+#' \code{\link[foreach]{foreach}},
+#' \code{\link[parallelly]{makeClusterPSOCK}},
+#' \code{\link[parallelly]{availableCores}},
+#' \code{\link[doParallel]{registerDoParallel}}
+#' @importFrom foreach foreach
+#' @importFrom foreach %dopar%
+#' @importFrom methods is
+#' @importFrom sf st_as_sf
+#' @importFrom sf st_drop_geometry
+#' @importFrom terra nlyr
+#' @importFrom dplyr bind_rows
+#' @importFrom dplyr left_join
+#' @importFrom future plan
+#' @importFrom future cluster
+#' @importFrom parallelly availableWorkers
+#' @importFrom doParallel registerDoParallel
+#' @export
+calc_modis <-
+ function(
+ path,
+ product = c("MOD11A1", "MOD13A2", "MOD06_L2",
+ "VNP46A2", "MOD09GA", "MCD19A2"),
+ sites,
+ id_col = "site_id",
+ name_covariates,
+ radius = c(0L, 1e3L, 1e4L, 5e4L),
+ subdataset = NULL,
+ fun_summary = "mean",
+ nthreads = floor(length(parallelly::availableWorkers()) / 2),
+ package_list_add = NULL,
+ export_list_add = NULL
+ ) {
+ product <- match.arg(product)
+ dates_available <-
+ regmatches(path, regexpr("A20\\d{2,2}[0-3]\\d{2,2}", path))
+ dates_available <- unique(dates_available)
+ dates_available <- sub("A", "", dates_available)
+
+ sites_input <- try(sf::st_as_sf(sites), silent = TRUE)
+ if (inherits(sites_input, "try-error")) {
+ stop("sites cannot be convertible to sf.
+ Please convert sites into a sf object to proceed.\n")
+ }
+
+ export_list <- c()
+ package_list <-
+ c("sf", "terra", "exactextractr", "foreach", "data.table", "stars",
+ "dplyr", "parallelly", "doParallel")
+ if (!is.null(export_list_add)) {
+ export_list <- append(export_list, export_list_add)
+ }
+ if (!is.null(package_list_add)) {
+ package_list <- append(package_list, package_list_add)
+ }
+
+ # make clusters
+ doParallel::registerDoParallel(cores = nthreads)
+ future::future(future::cluster, workers = nthreads)
+
+ datei <- NULL
+ calc_results <-
+ foreach::foreach(
+ datei = seq_along(dates_available),
+ .packages = package_list,
+ .export = export_list,
+ .combine = dplyr::bind_rows,
+ .errorhandling = "pass",
+ .verbose = TRUE
+ ) %dopar% {
+ options(sf_use_s2 = FALSE)
+ # nolint start
+ day_to_pick <- dates_available[datei]
+ # nolint end
+ day_to_pick <- as.Date(day_to_pick, format = "%Y%j")
+
+ radiusindex <- seq_along(radius)
+ radiuslist <- split(radiusindex, radiusindex)
+
+ # VNP46 corner assignment
+ if (product == "VNP46A2") {
+ vrt_today <-
+ modis_preprocess_vnp46(
+ paths = path,
+ date_in = day_to_pick,
+ # upper level subdataset is ignored
+ subdataset = 3L,
+ crs_ref = "EPSG:4326"
+ )
+ } else if (product == "MOD06_L2") {
+ vrt_today <-
+ modis_mosaic_mod06(
+ paths = path,
+ date_in = day_to_pick)
+ } else {
+ vrt_today <-
+ modis_get_vrt(
+ paths = path,
+ regex_sds = subdataset,
+ product = product,
+ date_in = day_to_pick)
+ }
+ if (terra::nlyr(vrt_today) != length(name_covariates)) {
+ warning("The number of layers in the input raster do not match
+ the length of name_covariates.\n")
+ }
+
+ res0 <-
+ lapply(radiuslist,
+ function(k) {
+ name_radius <-
+ sprintf("%s%05d",
+ name_covariates,
+ radius[k])
+
+ tryCatch({
+ extracted <-
+ modis_worker(
+ raster = vrt_today,
+ date = as.character(day_to_pick),
+ sites_in = sites_input,
+ product = product,
+ fun_summary_raster = fun_summary,
+ name_extracted = name_radius,
+ id_col = id_col,
+ radius = radius[k]
+ )
+ return(extracted)
+ }, error = function(e) {
+ name_radius <-
+ sprintf("%s%05d",
+ name_covariates,
+ radius[k])
+ error_df <- sf::st_drop_geometry(sites_input)
+ if (!"time" %in% names(error_df)) {
+ error_df$time <- day_to_pick
+ }
+ # coerce to avoid errors
+ error_df <- as.data.frame(error_df)
+ error_df <- error_df[, c(id_col, "time")]
+ error_df[, name_radius] <- -99999
+ return(error_df)
+ }
+ )
+ }
+ )
+ res <-
+ Reduce(\(x, y) {
+ dplyr::left_join(x, y,
+ by = c("site_id", "time")
+ )
+ },
+ res0)
+ return(res)
+ }
+ Sys.sleep(1L)
+ return(calc_results)
+ }
+
+
+#' Calculate temporal dummy variables
+#' @param sites data.frame with a temporal field named `"time"`
+#' see \code{\link{convert_stobj_to_stdt}}
+#' @param id_col character(1). Unique site identifier column name.
+#' Default is `"site_id"`.
+#' @param domain_year integer. Year domain to dummify.
+#' Default is \code{seq(2018L, 2022L)}
+#' @returns data.frame with year, month, and weekday indicators.
+#' @author Insang Song
+#' @importFrom methods is
+#' @importFrom data.table year
+#' @importFrom data.table month
+#' @importFrom data.table as.data.table
+#' @export
+calc_temporal_dummies <-
+ function(
+ sites,
+ id_col = "site_id",
+ domain_year = seq(2018L, 2022L)
+ ) {
+ if (!methods::is(sites, "data.frame")) {
+ stop("Argument sites is not a data.frame.\n")
+ }
+ if (!"time" %in% names(sites)) {
+ stop("A mandatory field 'time' does not exist in sites.\n")
+ }
+ id_col <- id_col
+ dummify <- function(vec, domain) {
+ vec_unique <- domain
+ vec_split <- split(vec_unique, vec_unique)
+ vec_assigned <-
+ lapply(vec_split,
+ function(x) {
+ as.integer(vec == x)
+ })
+ dt_dum <- Reduce(cbind, vec_assigned)
+ dt_dum <- data.table::as.data.table(dt_dum)
+ return(dt_dum)
+ }
+
+ # year
+ vec_year <- data.table::year(sites$time)
+ dt_year_dum <- dummify(vec_year, domain_year)
+ # should the last year be the present year or 2022?
+ colnames(dt_year_dum) <-
+ sprintf("DUM_Y%d_0_00000", domain_year)
+
+ # month
+ vec_month <- data.table::month(sites$time)
+ dt_month_dum <- dummify(vec_month, seq(1L, 12L))
+ shortmn <-
+ c("JANUA", "FEBRU", "MARCH", "APRIL",
+ "MAYMA", "JUNEJ", "JULYJ", "AUGUS",
+ "SEPTE", "OCTOB", "NOVEM", "DECEM")
+ colnames(dt_month_dum) <-
+ sprintf("DUM_%s_0_00000", shortmn)
+
+ # weekday (starts from 1-Monday)
+ vec_wday <- as.POSIXlt(sites$time)$wday
+ dt_wday_dum <- dummify(vec_wday, seq(1L, 7L))
+ colnames(dt_wday_dum) <-
+ sprintf("DUM_WKDY%d_0_00000", seq(1L, 7L))
+
+ # column binding
+ sites_dums <-
+ cbind(
+ sites,
+ dt_year_dum,
+ dt_month_dum,
+ dt_wday_dum
+ )
+
+ return(sites_dums)
+ }
+
+# nocov start
+#' Calculate TRI covariates
+#' @param path character(1). Path to the directory with TRI CSV files
+#' @param sites stdt/sf/SpatVector/data.frame. Unique sites
+#' see \code{\link{convert_stobj_to_stdt}}
+#' @param id_col character(1). Unique site identifier column name.
+#' Default is `"site_id"`.
+#' @param domain_year integer. Year domain to dummify.
+#' Default is \code{seq(2018L, 2022L)}
+#' @param radius Circular buffer radius.
+#' Default is \code{c(1000, 10000, 50000)} (meters)
+#' @param sites_epsg character(1). Coordinate system of sites.
+#' @author Insang Song
+#' @returns A data.frame object.
+#' @importFrom terra vect
+#' @importFrom terra crs
+#' @importFrom methods is
+#' @importFrom data.table fread
+#' @importFrom data.table rbindlist
+#' @export
+calc_tri <- function(
+ path = "./input/tri/",
+ sites,
+ id_col = "site_id",
+ domain_year = seq(2018L, 2022L),
+ radius = c(1e3L, 1e4L, 5e4L),
+ sites_epsg = "EPSG:4326"
+) {
+ if (is_stdt(sites)) {
+ sites <- sites$stdt
+ sites_epsg <- sites$crs_dt
+ } else {
+ if (!all(c("lon", "lat", "time") %in% colnames(sites))) {
+ stop("sites should be stdt or
+ have 'lon', 'lat', and 'time' fields.\n")
+ }
+ sites_epsg <- terra::crs(sites)
+ if (!methods::is(sites, "SpatVector")) {
+ if (methods::is(sites, "sf")) {
+ sites <- terra::vect(sites)
+ }
+ if (is.data.frame(sites)) {
+ sites <-
+ terra::vect(sites,
+ geom = c("lon", "lat"),
+ crs = sites_epsg)
+ }
+ }
+ }
+ if (!is.numeric(radius)) {
+ stop("radius should be numeric.\n")
+ }
+
+ csvs_tri <- list.files(path = path, pattern = "*.csv$", full.names = TRUE)
+ col_sel <- c(1, 13, 12, 34, 41, 42, 43, 45, 46, 48, 47, 104)
+ csvs_tri <- lapply(csvs_tri, read.csv)
+ csvs_tri <- lapply(csvs_tri, function(x) x[, col_sel])
+ csvs_tri <- data.table::rbindlist(csvs_tri)
+ # column name readjustment
+
+ # depending on the way the chemicals are summarized
+ # ... csvs are aggregated...
+ csvs_tri_x <-
+ data.table::dcast(csvs_tri, YEAR + LONGITUDE + LATITUDE ~ .)
+ spvect_tri <-
+ terra::vect(csvs_tri_x,
+ geom = c("LONGITUDE", "LATITUDE"),
+ crs = "EPSG:4326",
+ keepgeom = TRUE)
+ sites_re <- terra::project(sites, terra::crs(spvect_tri))
+
+ list_buffer <- split(radius, radius)
+ list_buffer <-
+ lapply(list_buffer,
+ function(x) {
+ xx <- terra::nearby(sites_re, spvect_tri, distance = x)
+ xx$buffer <- x
+ xx[, lapply(.SD, sum, na.rm = TRUE),
+ by = c("YEAR", "LONGITUDE", "LATITUDE", "buffer")]
+ })
+ df_tri <- data.table::rbindlist(list_buffer)
+
+ return(df_tri)
+}
+# nocov end
+
+
+#' Calculate National Emission Inventory (NEI) covariates
+#' @description NEI data comprises multiple csv files where emissions of
+#' 50+ pollutants are recorded at county level. With raw data files,
+#' this function will join a combined table of NEI data and county
+#' boundary, then perform a spatial join to the sites.
+#' @param path character(1). Path to the directory with NEI CSV files
+#' @param sites stdt/sf/SpatVector/data.frame. Unique sites.
+#' See [`convert_stobj_to_stdt`] for details of `stdt`
+#' @param id_col character(1). Unique site identifier column name.
+#' Default is `"site_id"`. It is no more than a placeholder
+#' in this function
+#' @param year integer(1). Data year.
+#' Currently only accepts `c(2017, 2020)`
+#' @param county_shp character(1). Path to county boundary file.
+#' @param sites_epsg character(1). Coordinate system of sites.
+#' @author Insang Song, Ranadeep Daw
+#' @returns A data.frame object.
+#' @importFrom terra vect
+#' @importFrom terra crs
+#' @importFrom methods is
+#' @importFrom data.table .SD
+#' @importFrom data.table fread
+#' @importFrom data.table rbindlist
+#' @export
+calc_nei <- function(
+ path = "./input/nei/",
+ sites,
+ id_col = "site_id",
+ year = 2017,
+ county_shp = NULL,
+ sites_epsg = "EPSG:4326"
+) {
+ if (is_stdt(sites)) {
+ # sites <- sites$stdt
+ # sites_epsg <- sites$crs_stdt
+ sites <- convert_stdt_spatvect(sites)
+ } else {
+ if (!all(c("lon", "lat", "time") %in% colnames(sites))) {
+ stop("sites should be stdt or
+ have 'lon', 'lat', and 'time' fields.\n")
+ }
+ if (!methods::is(sites, "SpatVector")) {
+ if (methods::is(sites, "sf")) {
+ sites <- terra::vect(sites)
+ }
+ if (is.data.frame(sites)) {
+ sites <-
+ terra::vect(sites,
+ geom = c("lon", "lat"),
+ keepgeom = TRUE,
+ crs = sites_epsg
+ )
+ }
+ }
+ }
+ if (is.null(county_shp)) {
+ stop("county_shp should be provided. Put the right path to the
+ county boundary file.")
+ }
+ if (!year %in% c(2017, 2020)) {
+ stop("year should be one of 2017 or 2020.\n")
+ }
+
+ # Concatenate NEI csv files
+ csvs_nei <- list.files(path = path, pattern = "*.csv$", full.names = TRUE)
+ csvs_nei <- lapply(csvs_nei, data.table::fread)
+ csvs_nei <- data.table::rbindlist(csvs_nei)
+
+ # column name readjustment
+ target_nm <- c("fips code", "total emissions", "emissions uom")
+ # not grep-ping at once for flexibility
+ target_cns <- sapply(target_nm, function(x) grep(x, colnames(csvs_nei)))
+ colnames(csvs_nei)[target_cns] <-
+ c("geoid", "emissions_total", "unit_measurement")
+
+ # unify unit of measurement
+ # TON here is short tonne, which is 2000 lbs.
+ csvs_nei$emissions_total_ton <-
+ ifelse(
+ csvs_nei$unit_measurement == "TON",
+ csvs_nei$emissions_total,
+ csvs_nei$emissions_total / 2000
+ )
+ emissions_total_ton <- NULL
+ geoid <- NULL
+ yearabbr <- substr(year, 3, 4)
+ csvs_nei$geoid <- sprintf("%05d", as.integer(csvs_nei$geoid))
+ csvs_nei <-
+ csvs_nei[, list(
+ TRF_NEINP_0_00000 = sum(emissions_total_ton, na.rm = TRUE)
+ ),
+ by = geoid]
+ csvs_nei$Year <- year
+
+ # read county vector
+ cnty_vect <- county_shp
+ if (is.character(cnty_vect)) {
+ cnty_vect <- terra::vect(cnty_vect)
+ }
+ cnty_geoid_guess <- grep("GEOID", names(cnty_vect))
+ names(cnty_vect)[cnty_geoid_guess] <- "geoid"
+ cnty_vect$geoid <- sprintf("%05d", as.integer(cnty_vect$geoid))
+ cnty_vect <- merge(cnty_vect, csvs_nei, by = "geoid")
+ cnty_vect <- cnty_vect[, c("geoid", "Year", "TRF_NEINP_0_00000")]
+ names(cnty_vect)[3] <- sub("NP", yearabbr, names(cnty_vect)[3])
+
+ # spatial join
+ sites_re <- terra::project(sites, terra::crs(cnty_vect))
+ sites_re <- terra::intersect(sites_re, cnty_vect)
+
+ return(sites_re)
+}
diff --git a/R/calculate_covariates_support.R b/R/calculate_covariates_support.R
new file mode 100644
index 00000000..a701ab85
--- /dev/null
+++ b/R/calculate_covariates_support.R
@@ -0,0 +1,360 @@
+
+#' Selected MODIS product subdataset name selector
+#' @param product character(1). Product code.
+#' @param custom_sel character(1). Custom filter.
+#' If this value is not NULL, preset filter is
+#' overridden.
+#' @author Insang Song
+#' @returns A character object that conforms to the regular
+#' expression. Details of regular expression in R can be found in [regexp].
+#' @seealso [calc_modis]
+#' @export
+modis_prefilter_sds <-
+ function(
+ product = c("MOD11A1", "MOD13A2", "MOD09GA", "MCD19A2"),
+ custom_sel = NULL
+ ) {
+ if (!is.null(custom_sel)) {
+ modis_sds <- custom_sel
+ } else {
+ product <- match.arg(product)
+ modis_sds <-
+ switch(product,
+ MOD11A1 = "(LST_)",
+ MOD13A2 = "(NDVI)",
+ MOD09GA = "(sur_refl_b0)",
+ MCD19A2 = "(Optical_Depth)"
+ )
+ if (product == "MCD19A2") {
+ message(
+ sprintf(
+ "For MCD19A2, use %s for 5km resolution sub-datasets.\n",
+ "(cos|RelAZ|Angle)"
+ )
+ )
+ }
+ }
+ return(modis_sds)
+ }
+
+
+#' Aggregate layers in a MODIS sub-dataset
+#' @param path character(1). Full path to MODIS HDF4/HDF5 file.
+#' Direct sub-dataset access is supported, for example,
+#' HDF4_EOS:EOS_GRID:\{filename\}:\{base_grid_information\}:\{sub-dataset\}
+#' @param product character(1). Name of MODIS product.
+#' @param nsds character(1). Exact or regular expression filter of sub-dataset.
+#' See [modis_prefilter_sds] for details.
+#' @param fun_agg character(1). Function name to aggregate layers.
+#' Should be acceptable to [terra::tapp].
+#' @author Insang Song
+#' @seealso [terra::tapp], [terra::rast], [terra::describe]
+#' @note HDF values are read as original without scaling.
+#' Users should consult MODIS product documentation to apply proper
+#' scaling factor for post-hoc adjustment. If users have no preliminary
+#' information about MODIS HDF sub-datasets, consider running
+#' `terra::describe(__filename__, sds = TRUE)` to navigate the full
+#' list of sub-datasets in the input file.
+#' @importFrom terra describe
+#' @importFrom terra rast
+#' @importFrom terra nlyr
+#' @importFrom terra tapp
+#' @export
+modis_aggregate_sds <-
+ function(
+ path,
+ product = c("MOD11A1", "MOD13A2", "MOD09GA", "MCD19A2"),
+ nsds,
+ fun_agg = "mean"
+ ) {
+ product <- match.arg(product)
+
+ # describe provides subdataset information
+ if (!any(grepl(":", path))) {
+ # we use var to get detailed information in subdatasets
+ sds_desc <- terra::describe(path, sds = TRUE)
+ index_sds <- grep(nsds, sds_desc$var)
+ sds_desc <- sds_desc[index_sds, c("name", "var", "nlyr")]
+
+ sds_read <- terra::rast(path, subds = index_sds, raw = TRUE)
+ sds_nsds <- nrow(sds_desc)
+ sds_nlyr <- sds_desc$nlyr
+ sds_varn <- sds_desc$var
+ } else {
+ sds_read <- terra::rast(path, raw = TRUE)
+ sds_nsds <- 1L
+ sds_nlyr <- terra::nlyr(sds_read)
+ sds_varn <- names(sds_read)
+ }
+ if (all(sds_nlyr == 1L)) {
+ sds_agg <- sds_read
+ } else {
+ sds_aggindex <- rep(seq_len(sds_nsds), times = sds_nlyr)
+ # if there are multiple layers in a subdataset,
+ # aggregate overlapping pixel values
+ sds_agg <-
+ terra::tapp(sds_read,
+ index = sds_aggindex,
+ fun = fun_agg,
+ na.rm = TRUE)
+ }
+ # restore names
+ names(sds_agg) <- sds_varn
+ gc()
+ return(sds_agg)
+ }
+
+#' Get mosaicked or merged raster from multiple MODIS hdf files
+#' @param paths character. Full list of hdf file paths.
+#' preferably a recursive search result from \code{list.files}.
+#' @param product character(1). Product code of MODIS. Should be one of
+#' \code{c("MOD11A1", "MOD13A2", "MOD09GA", "MCD19A2")}
+#' @param date_in character(1). date to query. Should be in
+#' \code{"YYYY-MM-DD"} format.
+#' @param regex_sds character(1). subdataset names to extract.
+#' Should conform to regular expression. See \link{regex} for details.
+#' Default is NULL, which means that the subdataset names are automatically
+#' selected based on \code{product} value.
+#' @param foo Function name or custom function to aggregate overlapping
+#' cell values. See \code{fun} description in \link[terra]{tapp} for details.
+#' @author Insang Song
+#' @returns A SpatRaster object.
+#' @export
+modis_get_vrt <- function(
+ paths,
+ product = c("MOD11A1", "MOD13A2",
+ "MOD09GA", "MCD19A2"),
+ date_in = NULL,
+ regex_sds = NULL,
+ foo = "mean") {
+
+ product <- match.arg(product)
+
+ if (!is.character(paths)) {
+ stop("Argument flist should be a list of hdf files (character).\n")
+ }
+ if (!(is.character(foo) || is.function(foo))) {
+ stop("Argument foo should be a function or name of a function
+ that is accepted in terra::tapp.\n")
+ }
+ # this case cannot detect malform like 2024-02-30.
+ if (!grepl("[0-9]{4,4}\\-([0][1-9]|[1][0-2])\\-([0-2][0-9]|[3][0-1])",
+ date_in)
+ ) {
+ stop("date_in does not conform to the required format
+ 'YYYY-MM-DD'.\n")
+ }
+
+ # interpret date
+ today <- as.character(date_in)
+ dayjul <- strftime(today, "%Y%j")
+ ftarget <- grep(sprintf("A%s", dayjul), paths, value = TRUE)
+
+ # get layer information
+ layer_target <-
+ lapply(ftarget,
+ function(x) {
+ modis_aggregate_sds(
+ x,
+ product = product,
+ nsds = regex_sds,
+ fun_agg = foo
+ )
+ })
+ # Merge multiple rasters into one
+ # do.call(f, l) is equivalent to f(l[[1]], ... , l[[length(l)]])
+ if (length(paths) > 1) {
+ result_merged <- do.call(terra::merge, layer_target)
+ gc()
+ } else {
+ result_merged <- layer_target[[1]]
+ }
+ return(result_merged)
+}
+
+
+#' Assign MODIS VNP46 corner coordinates to retrieve a merged raster
+#' @description This function will return a SpatRaster object with
+#' georeferenced h5 files of VNP46A2 product. Referencing corner coordinates
+#' are necessary as the original h5 data do not include such information.
+#' @param paths character. Full paths of h5 files.
+#' @param date_in character(1). Date to query.
+#' @param subdataset integer(1). Subdataset number to process.
+#' Default is 3L.
+#' @param crs_ref character(1). terra::crs compatible CRS.
+#' Default is "EPSG:4326"
+#' @author Insang Song
+#' @importFrom terra rast
+#' @importFrom terra ext
+#' @importFrom terra crs
+#' @importFrom terra merge
+#' @export
+modis_preprocess_vnp46 <- function(
+ paths,
+ date_in,
+ subdataset = 3L,
+ crs_ref = "EPSG:4326"
+) {
+ # this case cannot detect malform like 2024-02-30.
+ if (!grepl("[0-9]{4,4}\\-([0][1-9]|[1][0-2])\\-([0-2][0-9]|[3][0-1])",
+ date_in)
+ ) {
+ stop("date_in does not conform to the required format
+ 'YYYY-MM-DD'.\n")
+ }
+
+ tile_df <-
+ expand.grid(
+ vaddr = sprintf("v%02d", 3:6),
+ haddr = sprintf("h%02d", 5:11)
+ )
+ tile_df$tile <- paste0(tile_df$haddr, tile_df$vaddr)
+ tile_df <- data.frame(tile = tile_df$tile)
+ tile_df$xmin <- rep(seq(-130, -70, 10), each = 4)
+ tile_df$xmax <- tile_df$xmin + 10
+ tile_df$ymin <- rep(seq(50, 20, -10), 7)
+ tile_df$ymax <- tile_df$ymin + 10
+
+ date_in <- as.Date(date_in)
+ datejul <- strftime(date_in, format = "%Y%j")
+ stdtile <- tile_df$tile
+
+ filepaths_today <- grep(sprintf("A%s", datejul), paths, value = TRUE)
+ # today's filenames
+ filepaths_today <-
+ grep(paste("(",
+ paste(stdtile, collapse = "|"), ")"),
+ filepaths_today, value = TRUE)
+
+ filepaths_today_tiles <-
+ regmatches(filepaths_today,
+ regexpr("h([0-2][0-9]|[3][0-6])v([0-1][0-9])", filepaths_today))
+
+ vnp46_today <- unname(split(filepaths_today, filepaths_today))
+ filepaths_today_tiles_list <-
+ unname(split(filepaths_today_tiles, filepaths_today_tiles))
+
+ # for filenames,
+ # assign corner coordinates then merge
+ # Subdataset 3 is BRDF-corrected nighttime light
+ vnp_assigned <-
+ mapply(function(vnp, tile_in) {
+ vnp_ <- terra::rast(vnp, subds = subdataset)
+ tile_ext <- tile_df[tile_df$tile == tile_in, -1]
+ # print(tile_ext)
+ terra::crs(vnp_) <- terra::crs(crs_ref)
+ terra::ext(vnp_) <- unlist(tile_ext)
+ return(vnp_)
+ }, vnp46_today, filepaths_today_tiles_list, SIMPLIFY = FALSE)
+ if (length(filepaths_today) > 1) {
+ vnp_all <- do.call(terra::merge, vnp_assigned)
+ } else {
+ vnp_all <- vnp_assigned[[1]]
+ }
+ return(vnp_all)
+}
+
+#' Warp MODIS Swath data into rectilinear grid raster
+#' @description Swath data is a type of MODIS data organization,
+#' where curvilinear points are stored with varying resolution depending on
+#' the relative position of the sensor axis. As this type of data
+#' typically does not work well with planar spatial data, users
+#' should warp or rectify this data into a rectilinear raster.
+#' Main procedure is done with [stars::st_warp], in which users are able to
+#' customize the threshold to fill potential gaps that appear where
+#' the target resolution is finer than the local resolution of curvilinear
+#' grid points.
+#' @param path File path of MODIS swath with exact sub-dataset specification.
+#' @param cellsize numeric(1). Cell size (spatial resolution) of
+#' output rectilinear grid raster.
+#' @param threshold numeric(1). Maximum distance to fill gaps if occur.
+#' @param crs_out integer(1)/character(1). Coordinate system definition.
+#' Should be compatible with EPSG codes or WKT2.
+#' See [terra::crs] and [sf::st_crs] / [EPSG](https://www.epsg.io)
+#' @note Users should specify sub-dataset with all flags that are
+#' compatible with `gdalinfo`
+#' @returns stars object.
+#' @author Insang Song
+#' @seealso [terra::rectify]
+#' @importFrom stars st_warp
+#' @importFrom stars read_stars
+#' @export
+modis_warp_stars <-
+ function(
+ path,
+ cellsize = 0.25,
+ threshold = 0.5,
+ crs_out = 4326
+ ) {
+ options(sf_use_s2 = FALSE)
+ ras <- stars::read_stars(path)
+ rtd <-
+ stars::st_warp(
+ ras,
+ crs = crs_out,
+ cellsize = cellsize,
+ threshold = threshold
+ )
+ return(rtd)
+ }
+
+
+
+
+#' Mosaic MODIS MOD06_L2 product files
+#' @description This function will return a SpatRaster object with
+#' mosaicked 5-minute cloud coverage values. Swath data include curvilinear
+#' grids, which require warping/rectifying the original curvilinear grids
+#' into rectilinear grids. The function internally warps each of inputs
+#' then mosaic the warped images into one large SpatRaster object.
+#' @param paths character. Full paths of hdf files.
+#' @param date_in character(1). Date to query.
+#' @param get_var character. One of `"Cloud_Fraction_Day"` or
+#' `"Cloud_Fraction_Night"`
+#' @param resolution numeric(1). Resolution of output raster.
+#' Unit is degree.
+#' @returns SpatRaster object. CRS is `"EPSG:4326"`.
+#' @author Insang Song
+#' @importFrom terra rast
+#' @importFrom terra crop
+#' @importFrom terra mosaic
+#' @export
+modis_mosaic_mod06 <-
+ function(
+ paths,
+ date_in,
+ get_var = c("Cloud_Fraction_Day", "Cloud_Fraction_Night"),
+ resolution = 0.025
+ ) {
+ if (!grepl("[0-9]{4,4}\\-([0][1-9]|[1][0-2])\\-([0-2][0-9]|[3][0-1])",
+ date_in)
+ ) {
+ stop("date_in does not conform to the required format
+ 'YYYY-MM-DD'.\n")
+ }
+ header <- "HDF4_EOS:EOS_SWATH:"
+ suffix <- ":mod06:"
+ ras_mod06 <- vector("list", 2L)
+ datejul <- strftime(date_in, format = "%Y%j")
+ paths_today <- grep(sprintf("A%s", datejul), paths, value = TRUE)
+
+ if (length(paths) > 1) {
+ for (element in seq_along(get_var)) {
+ target_text <-
+ sprintf("%s%s%s%s", header, paths_today, suffix, get_var[element])
+ # rectified stars objects to SpatRaster
+ mod06_element <- split(target_text, target_text) |>
+ lapply(modis_warp_stars) |>
+ lapply(terra::rast)
+ mod06_element <- Reduce(f = terra::mosaic, x = mod06_element)
+ ras_mod06[[element]] <- mod06_element
+ }
+ mod06_mosaic <- c(ras_mod06[[1]], ras_mod06[[2]])
+ terra::varnames(mod06_mosaic) <- get_var
+ mod06_mosaic <- terra::crop(mod06_mosaic,
+ terra::ext(c(-130, -60, 20, 54)))
+ } else {
+ mod06_mosaic <- terra::rast(modis_warp_stars(paths))
+ }
+ return(mod06_mosaic)
+ }
diff --git a/R/download.R b/R/download.R
new file mode 100644
index 00000000..e7cebb58
--- /dev/null
+++ b/R/download.R
@@ -0,0 +1,2533 @@
+# download.R
+#' Download raw data from sources
+#' @param dataset_name character(1). Dataset to download.
+#' @param directory_to_save character(1). Directory to save / unzip
+#' (if zip files are downloaded) data.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param ... Arguments passed to each download function.
+#' @note
+#' - All download function names are in \code{download_*_data} formats
+#' @author Insang Song
+#' @seealso
+#' For details of each download function per dataset,
+#' Please refer to:
+#' * \link{download_aqs_data}: "aqs", "AQS"
+#' * \link{download_ecoregion_data}: "ecoregion"
+#' * \link{download_geos_cf_data}: "geos"
+#' * \link{download_gmted_data}: "gmted", "GMTED"
+#' * \link{download_koppen_geiger_data}: "koppen", "koppengeiger"
+#' * \link{download_merra2_data}: "merra2", "merra", "MERRA", "MERRA2"
+#' * \link{download_narr_monolevel_data}: "narr_monolevel", "monolevel"
+#' * \link{download_narr_p_levels_data}: "narr_p_levels", "p_levels", "plevels"
+#' * \link{download_nlcd_data}: "nlcd", "NLCD"
+#' * \link{download_noaa_hms_smoke_data}: "noaa", "smoke", "hms"
+#' * \link{download_sedac_groads_data}: "sedac_groads", "groads"
+#' * \link{download_sedac_population_data}: "sedac_population", "population"
+#' * \link{download_modis_data}: "modis", "MODIS"
+#' * \link{download_tri_data}: "tri", "TRI"
+#' * \link{download_nei_data}: "nei", "NEI"
+#' @returns NULL
+#' @export
+download_data <-
+ function(
+ dataset_name = c("aqs", "ecoregion", "geos", "gmted", "koppen",
+ "koppengeiger", "merra2", "merra", "narr_monolevel",
+ "modis", "narr_p_levels", "nlcd", "noaa", "sedac_groads",
+ "sedac_population", "groads", "population", "plevels",
+ "p_levels", "monolevel", "hms", "smoke", "tri", "nei"),
+ directory_to_save = NULL,
+ data_download_acknowledgement = FALSE,
+ ...
+ ) {
+
+ dataset_name <- tolower(dataset_name)
+ dataset_name <- match.arg(dataset_name)
+
+ # determine whether the data exist and deter proceeding?
+ what_to_run <- switch(dataset_name,
+ aqs = download_aqs_data,
+ ecoregion = download_ecoregion_data,
+ geos = download_geos_cf_data,
+ gmted = download_gmted_data,
+ koppen = download_koppen_geiger_data,
+ koppengeiger = download_koppen_geiger_data,
+ merra2 = download_merra2_data,
+ merra = download_merra2_data,
+ narr_monolevel = download_narr_monolevel_data,
+ monolevel = download_narr_monolevel_data,
+ narr_p_levels = download_narr_p_levels_data,
+ p_levels = download_narr_p_levels_data,
+ plevels = download_narr_p_levels_data,
+ nlcd = download_nlcd_data,
+ noaa = download_noaa_hms_smoke_data,
+ smoke = download_noaa_hms_smoke_data,
+ hms = download_noaa_hms_smoke_data,
+ sedac_groads = download_sedac_groads_data,
+ groads = download_sedac_groads_data,
+ sedac_population = download_sedac_population_data,
+ population = download_sedac_population_data,
+ modis = download_modis_data,
+ tri = download_tri_data,
+ nei = download_nei_data
+ )
+
+ tryCatch(
+ {
+ what_to_run(
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = data_download_acknowledgement,
+ ...
+ )
+ },
+ error = function(e) {
+ print(e)
+ print(args(what_to_run))
+ stop(paste0("Please refer to the argument list and ",
+ "the error message above to rectify the error.\n"))
+ }
+ )
+ }
+
+# nolint start
+#' Download daily data from AQS datamart
+#' @param parameter_code integer(1). length of 5.
+#' EPA pollutant parameter code. For details, please refer to
+#' [AQS parameter codes](https://aqs.epa.gov/aqsweb/documents/codetables/parameters.html)
+# nolint end
+#' @param year_start integer(1). length of 4.
+#' Start year for downloading data.
+#' @param year_end integer(1). length of 4.
+#' End year for downloading data.
+#' @param resolution_temporal character(1).
+#' Name of column containing POC values.
+#' Currently, no value other than `"daily"` works.
+#' @param directory_to_download character(1).
+#' Directory to download zip files from AQS data mart.
+#' @param directory_to_save character(1).
+#' Directory to decompress zip files.
+#' @param url_aqs_download character(1).
+#' URL to the AQS pre-generated datasets.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param unzip logical(1). Unzip zip files. Default \code{TRUE}.
+#' @param remove_zip logical(1). Remove zip file from directory_to_download.
+#' Default \code{FALSE}.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands. Default is FALSE.
+#' @author Mariana Kassien, Insang Song, Mitchell Manware
+#' @returns NULL; Separate comma-separated value (CSV) files of
+#' monitors and the daily representative values
+#' will be stored in \code{directory_to_save}.
+#' @export
+download_aqs_data <-
+ function(parameter_code = 88101,
+ year_start = 2018,
+ year_end = 2022,
+ resolution_temporal = "daily",
+ directory_to_download = "./input/aqs/",
+ directory_to_save = "./input/aqs/",
+ url_aqs_download = "https://aqs.epa.gov/aqsweb/airdata/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(
+ data_download_acknowledgement =
+ data_download_acknowledgement
+ )
+ #### 2. check for null parameteres
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ directory_to_download <- download_sanitize_path(directory_to_download)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ download_setup_dir(directory_to_download)
+ download_setup_dir(directory_to_save)
+ #### 4. define year sequence
+ year_sequence <- seq(year_start, year_end, 1)
+ #### 5. build URLs
+ download_urls <- sprintf(
+ paste(url_aqs_download,
+ resolution_temporal,
+ "_",
+ parameter_code,
+ "_%.0f.zip",
+ sep = ""
+ ),
+ year_sequence
+ )
+ #### 6. check for valid URL
+ if (!(check_url_status(download_urls[1]))) {
+ stop(paste0(
+ "Invalid year returns HTTP code 404. ",
+ "Check `year_start` parameter.\n"
+ ))
+ }
+ #### 5. build download file name
+ download_names <- sprintf(
+ paste(directory_to_download,
+ "aqs_",
+ resolution_temporal,
+ "_",
+ parameter_code,
+ "_%.0f.zip",
+ sep = ""
+ ),
+ year_sequence
+ )
+ #### 6. build download command
+ download_commands <- paste0(
+ "curl ",
+ download_urls,
+ " --output ",
+ download_names,
+ "\n"
+ )
+ #### 7. initiate "..._curl_commands.txt"
+ commands_txt <- paste0(
+ directory_to_download,
+ "aqs_",
+ parameter_code,
+ "_",
+ year_start, "_", year_end,
+ "_",
+ resolution_temporal,
+ "_curl_commands.txt"
+ )
+ download_sink(commands_txt)
+ #### 8. concatenate and print download commands to "..._curl_commands.txt"
+ writeLines(download_commands)
+ #### 9. finish "..._curl_commands.txt" file
+ sink()
+ #### 10. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 11. download data
+ if (!any(file.exists(download_names))) {
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ }
+ #### 12. unzip data
+ for (n in seq_along(download_names)) {
+ download_unzip(
+ file_name = download_names[n],
+ directory_to_unzip = directory_to_save,
+ unzip = unzip
+ )
+ }
+ #### 13. remove command file
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+ #### 14. remove zip files
+ for (d in seq_along(download_names)) {
+ download_remove_zips(
+ remove = remove_zip,
+ download_name = download_names[d]
+ )
+ }
+ }
+
+
+
+
+#' Download Ecoregion Shapefiles from EPA
+#' @description
+#' The \code{download_ecoregion_data()} function accesses and downloads
+#' Ecoregions level 3 data, where all pieces of information in the higher
+#' levels are included.
+#' @note
+#' For EPA Data Commons certificate errors, follow the steps below:
+#' 1. Click Lock icon in the address bar at https://gaftp.epa.gov
+#' 2. Click Show Certificate
+#' 3. Access Details
+#' 4. Find URL with *.crt extension
+#' Currently we bundle the pre-downloaded crt and its PEM (which is accepted
+#' in wget command) file in ./inst/extdata. The instruction above is for
+#' certificate updates in the future.
+#' @param directory_to_download character(1). Directory to download zip file
+#' of Ecoregion level 3 shapefiles
+#' @param directory_to_save character(1). Directory to decompress zip files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param unzip logical(1). Unzip zip files. Default \code{TRUE}.
+#' @param remove_zip logical(1). Remove zip file from directory_to_download.
+#' Default \code{FALSE}.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @param epa_certificate_path character(1). Path to the certificate file
+#' for EPA DataCommons. Default is
+#' 'extdata/cacert_gaftp_epa.pem' under the package installation path.
+#' @param certificate_url character(1). URL to certificate file. See notes for
+#' details.
+#' @author Insang Song
+#' @returns NULL;
+#' @importFrom utils download.file
+#' @export
+download_ecoregion_data <- function(
+ directory_to_download = "./input/ecoregions/",
+ directory_to_save = "./input/ecoregions/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = TRUE,
+ epa_certificate_path =
+ system.file("extdata/cacert_gaftp_epa.pem",
+ package = "amadeus"),
+ certificate_url =
+ "http://cacerts.digicert.com/DigiCertGlobalG2TLSRSASHA2562020CA1-1.crt"
+) {
+ #### 1. data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_save)
+ download_setup_dir(directory_to_download)
+ directory_to_download <- download_sanitize_path(directory_to_download)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. Check the presence of file
+ ## This part is hard-coded as the original file appears to
+ ## be a misnomer. May need to be modified accordingly in the future.
+ path_downloaded_file <- sprintf(
+ "%sus_eco_l3_state_boundaries.shp",
+ directory_to_save
+ )
+ if (file.exists(path_downloaded_file)) {
+ message("Requested files exist in the target directory.\n")
+ return(NULL)
+ }
+ #### 5. define download URL
+ download_epa_certificate(
+ epa_certificate_path = epa_certificate_path,
+ certificate_url = certificate_url
+ )
+
+ download_url <- paste0(
+ "https://gaftp.epa.gov/EPADataCommons/ORD/Ecoregions/us/",
+ "us_eco_l3_state_boundaries.zip"
+ )
+ #### 6. build download file name
+ download_name <- sprintf(
+ "%sus_eco_l3_state_boundaries.zip",
+ directory_to_download
+ )
+ #### 7. build download command
+ download_command <-
+ paste0(
+ "wget --ca-certificate=",
+ epa_certificate_path,
+ " ",
+ download_url,
+ " -O ",
+ download_name,
+ "\n"
+ )
+ #### 8. initiate "..._curl_commands.txt" file
+ commands_txt <- paste0(
+ directory_to_download,
+ "us_eco_l3_state_boundaries_",
+ Sys.Date(),
+ "_wget_command.txt"
+ )
+ #### 9. concatenate
+ download_sink(commands_txt)
+ #### 10. concatenate and print download commands to "..._wget_commands.txt"
+ cat(download_command)
+ #### 11. finish "...curl_commands.txt" file
+ sink()
+ #### 12. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 13. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ #### 14. remove download command
+ download_remove_command(commands_txt = commands_txt,
+ remove = remove_command)
+ if (download) {
+ #### 15. unzip files
+ download_unzip(
+ file_name = download_name,
+ directory_to_unzip = directory_to_save,
+ unzip = unzip
+ )
+ #### 16. remove zip files
+ download_remove_zips(
+ remove = remove_zip,
+ download_name = download_name
+ )
+ }
+}
+
+# nolint start
+#' Download atmospheric composition data from the NASA Global Earth Observing System (GEOS) model.
+#' @description
+#' The \code{download_goes_cf_data()} function accesses and downloads various
+#' atmospheric composition collections from the [NASA Global Earth Observing System (GEOS) model](https://gmao.gsfc.nasa.gov/GEOS_systems/).
+# nolint end
+#' @param date_start character(1). length of 10. Start date for downloading
+#' data. Format YYYY-MM-DD (ex. September 1, 2023 = `"2023-09-01"`).
+#' @param date_end character(1). length of 10. End date for downloading data.
+#' Format YYYY-MM-DD (ex. September 1, 2023 = `"2023-09-01"`).
+#' @param collection character(1). GEOS-CF data collection file name.
+#' @param directory_to_save character(1). Directory to save data.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mitchell Manware, Insang Song
+#' @return NULL;
+#' @export
+download_geos_cf_data <- function(
+ date_start = "2023-09-01",
+ date_end = "2023-09-01",
+ collection =
+ c(
+ "aqc_tavg_1hr_g1440x721_v1", "chm_tavg_1hr_g1440x721_v1",
+ "met_tavg_1hr_g1440x721_x1", "xgc_tavg_1hr_g1440x721_x1",
+ "chm_inst_1hr_g1440x721_p23", "met_inst_1hr_g1440x721_p23"
+ ),
+ directory_to_save = "./input/data/geos_cf/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_save)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. match collection
+ collection <- match.arg(collection)
+ #### 5. define date sequence
+ date_sequence <- generate_date_sequence(
+ date_start,
+ date_end,
+ sub_hyphen = TRUE
+ )
+ #### 6. define time sequence
+ collection_end <- substr(collection, nchar(collection), nchar(collection))
+ if (collection_end == "1") {
+ time_sequence <- seq(from = 30, to = 2330, by = 100)
+ } else if (collection_end == "3") {
+ time_sequence <- seq(from = 0, to = 2300, by = 100)
+ }
+ time_sequence <- sprintf("%04d", time_sequence)
+ #### 7. define URL base
+ base <- "https://portal.nccs.nasa.gov/datashare/gmao/geos-cf/v1/ana/"
+ #### 8. initiate "..._wget_commands.txt" file
+ commands_txt <- paste0(
+ directory_to_save,
+ collection,
+ "_",
+ date_start,
+ "_",
+ date_end,
+ "_wget_commands.txt"
+ )
+
+ download_sink(commands_txt)
+ #### 9. concatenate and print download commands to "..._wget_commands.txt"
+ for (d in seq_along(date_sequence)) {
+ date <- date_sequence[d]
+ year <- substr(date, 1, 4)
+ month <- substr(date, 5, 6)
+ day <- substr(date, 7, 8)
+ for (t in seq_along(time_sequence)) {
+ download_url <- paste0(
+ base,
+ "Y",
+ year,
+ "/M",
+ month,
+ "/D",
+ day,
+ "/GEOS-CF.v01.rpl.",
+ collection,
+ ".",
+ date,
+ "_",
+ time_sequence[t],
+ "z.nc4"
+ )
+ if (t == 1) {
+ if (!(check_url_status(download_url))) {
+ sink()
+ file.remove(commands_txt)
+ stop(paste0(
+ "Invalid date returns HTTP code 404. ",
+ "Check `date_start` parameter.\n"
+ ))
+ }
+ }
+ download_folder <- paste0(
+ directory_to_save,
+ collection
+ )
+ download_command <- paste0(
+ "wget ",
+ download_url,
+ " -P ",
+ download_folder,
+ "\n"
+ )
+ cat(download_command)
+ }
+ }
+ #### 9. finish "..._wget_commands.txt" file
+ sink()
+ #### 10. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 11. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+}
+
+# nolint start
+#' Download global elevation data from the Global Multi-resolution Terrain Elevation Data (GMTED2010).
+#' @description
+#' The \code{download_gmted_data()} function acesses and downloads Global
+#' Multi-resolution Terrain Elevation Data (GMTED2010) from
+#' [U.S. Geological Survey and National Geospatial-Intelligence Agency](https://www.usgs.gov/coastal-changes-and-impacts/gmted2010).
+#' @param statistic character(1). Available statistics include `"Breakline Emphasis"`, `"Systematic Subsample"`, `"Median Statistic"`,
+#' `"Minimum Statistic"`, `"Mean Statistic"`, `"Maximum Statistic"`, and
+#' `"Standard Deviation Statistic"`.
+#' @param resolution character(1). Available resolutions include `"7.5 arc-seconds"`, `"15 arc-seconds"`, and `"30 arc-seconds"`.
+#' @param directory_to_download character(1). Directory to download zip files
+#' from Global Multi-resolution Terrain Elevation Data (GMTED2010).
+#' @param directory_to_save character(1). Directory to decompress zip files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param unzip logical(1). Unzip zip files. Default is \code{TRUE}.
+#' @param remove_zip logical(1). Remove zip file from directory_to_download.
+#' Default is \code{FALSE}.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands. Default is FALSE.
+#' @author Mitchell Manware, Insang Song
+# nolint end
+#' @return NULL;
+#' @export
+download_gmted_data <- function(
+ statistic = c(
+ "Breakline Emphasis", "Systematic Subsample",
+ "Median Statistic", "Minimum Statistic",
+ "Mean Statistic", "Maximum Statistic",
+ "Standard Deviation Statistic"
+ ),
+ resolution = c("7.5 arc-seconds", "15 arc-seconds", "30 arc-seconds"),
+ directory_to_download = "./input/gmted/",
+ directory_to_save = "./input/gmted/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_download)
+ download_setup_dir(directory_to_save)
+ directory_to_download <- download_sanitize_path(directory_to_download)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. check for valid statistic
+ statistic <- match.arg(statistic)
+ #### 5. check for valid resolution
+ resolution <- match.arg(resolution)
+ #### 6. define URL base
+ base <- paste0(
+ "https://edcintl.cr.usgs.gov/downloads/sciweb1/shared/topo",
+ "/downloads/GMTED/Grid_ZipFiles/"
+ )
+ #### 7. define URL statistic code
+ statistics <- c(
+ "Breakline Emphasis", "Systematic Subsample",
+ "Median Statistic", "Minimum Statistic",
+ "Mean Statistic", "Maximum Statistic",
+ "Standard Deviation Statistic"
+ )
+ statistic_codes <- c("be", "ds", "md", "mi", "mn", "mx", "sd")
+ statistic_codes <- cbind(statistics, statistic_codes)
+ statistic_code <- subset(statistic_codes, statistics == statistic)[2]
+ #### 8. define URL resolution code
+ resolutions <- c("7.5 arc-seconds", "15 arc-seconds", "30 arc-seconds")
+ resolution_codes <- c("75", "15", "30")
+ resolution_codes <- cbind(resolutions, resolution_codes)
+ resolution_code <- subset(resolution_codes, resolutions == resolution)[2]
+ #### 9. build url
+ download_url <- paste0(
+ base,
+ statistic_code,
+ resolution_code,
+ "_grd.zip"
+ )
+ #### 10. build download file name
+ download_name <- paste0(
+ directory_to_download,
+ "gmted2010_",
+ statistic_code,
+ resolution_code,
+ "_grd.zip"
+ )
+ #### 11. build download command
+ download_command <- paste0(
+ "curl -s -o ",
+ download_name,
+ " --url ",
+ download_url,
+ "\n"
+ )
+ #### 12. initiate "..._curl_commands.txt"
+ commands_txt <- paste0(
+ directory_to_download,
+ "gmted_",
+ gsub(" ", "", statistic),
+ "_",
+ gsub(" ", "", resolution),
+ "_",
+ Sys.Date(),
+ "_curl_command.txt"
+ )
+ download_sink(commands_txt)
+ #### 13. concatenate and print download command to "..._curl_commands.txt"
+ cat(download_command)
+ #### 14. finish "..._curl_commands.txt" file
+ sink()
+ #### 15. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 16. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ #### 18. Remove command file
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+ if (download) {
+ #### 17. end if unzip == FALSE
+ download_unzip(
+ file_name = download_name,
+ directory_to_unzip = directory_to_save,
+ unzip = unzip
+ )
+ #### 19. remove zip files
+ download_remove_zips(
+ remove = remove_zip,
+ download_name = download_name
+ )
+ }
+}
+
+# nolint start
+#' Download meteorological and atmospheric data from the Modern-Era Retrospective analysis for Research and Applications, Version 2 (MERRA-2) model.
+#' @description
+#' The \code{download_merra2_data()} function accesses and downloads various
+#' meteorological and atmospheric collections from the [Modern-Era Retrospective analysis for Research and Applications, Version 2 (MERRA-2)](https://gmao.gsfc.nasa.gov/reanalysis/MERRA-2/).
+#' @param date_start character(1). length of 10. Start date for downloading
+#' data. Format YYYY-MM-DD (ex. September 1, 2023 is `"2023-09-01"`).
+#' @param date_end character(1). length of 10. End date for downloading data.
+#' Format YYYY-MM-DD (ex. September 1, 2023 is `"2023-09-01"`).
+#' @param collection character(1). MERRA-2 data collection file name.
+#' @param directory_to_save character(1). Directory to save data.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mitchell Manware, Insang Song
+#' @return NULL;
+#' @export
+# nolint end
+download_merra2_data <- function(
+ date_start = "2023-09-01",
+ date_end = "2023-09-01",
+ collection = c(
+ "inst1_2d_asm_Nx", "inst1_2d_int_Nx", "inst1_2d_lfo_Nx",
+ "inst3_3d_asm_Np", "inst3_3d_aer_Nv", "inst3_3d_asm_Nv",
+ "inst3_3d_chm_Nv", "inst3_3d_gas_Nv", "inst3_2d_gas_Nx",
+ "inst6_3d_ana_Np", "inst6_3d_ana_Nv", "statD_2d_slv_Nx",
+ "tavg1_2d_adg_Nx", "tavg1_2d_aer_Nx", "tavg1_2d_chm_Nx",
+ "tavg1_2d_csp_Nx", "tavg1_2d_flx_Nx", "tavg1_2d_int_Nx",
+ "tavg1_2d_lfo_Nx", "tavg1_2d_lnd_Nx", "tavg1_2d_ocn_Nx",
+ "tavg1_2d_rad_Nx", "tavg1_2d_slv_Nx", "tavg3_3d_mst_Ne",
+ "tavg3_3d_trb_Ne", "tavg3_3d_nav_Ne", "tavg3_3d_cld_Np",
+ "tavg3_3d_mst_Np", "tavg3_3d_rad_Np", "tavg3_3d_tdt_Np",
+ "tavg3_3d_trb_Np", "tavg3_3d_udt_Np", "tavg3_3d_odt_Np",
+ "tavg3_3d_qdt_Np", "tavg3_3d_asm_Nv", "tavg3_3d_cld_Nv",
+ "tavg3_3d_mst_Nv", "tavg3_3d_rad_Nv", "tavg3_2d_glc_Nx"
+ ),
+ directory_to_save = "./input/merra2/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. directory setup
+ download_setup_dir(directory_to_save)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 3. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 4. check if collection is recognized
+ identifiers <- c(
+ "inst1_2d_asm_Nx M2I1NXASM 10.5067/3Z173KIE2TPD",
+ "inst1_2d_int_Nx M2I1NXINT 10.5067/G0U6NGQ3BLE0",
+ "inst1_2d_lfo_Nx M2I1NXLFO 10.5067/RCMZA6TL70BG",
+ "inst3_3d_asm_Np M2I3NPASM 10.5067/QBZ6MG944HW0",
+ "inst3_3d_aer_Nv M2I3NVAER 10.5067/LTVB4GPCOTK2",
+ "inst3_3d_asm_Nv M2I3NVASM 10.5067/WWQSXQ8IVFW8",
+ "inst3_3d_chm_Nv M2I3NVCHM 10.5067/HO9OVZWF3KW2",
+ "inst3_3d_gas_Nv M2I3NVGAS 10.5067/96BUID8HGGX5",
+ "inst3_2d_gas_Nx M2I3NXGAS 10.5067/HNGA0EWW0R09",
+ "inst6_3d_ana_Np M2I6NPANA 10.5067/A7S6XP56VZWS",
+ "inst6_3d_ana_Nv M2I6NVANA 10.5067/IUUF4WB9FT4W",
+ "statD_2d_slv_Nx M2SDNXSLV 10.5067/9SC1VNTWGWV3",
+ "tavg1_2d_adg_Nx M2T1NXADG 10.5067/HM00OHQBHKTP",
+ "tavg1_2d_aer_Nx M2T1NXAER 10.5067/KLICLTZ8EM9D",
+ "tavg1_2d_chm_Nx M2T1NXCHM 10.5067/3RQ5YS674DGQ",
+ "tavg1_2d_csp_Nx M2T1NXCSP 10.5067/H0VVAD8F6MX5",
+ "tavg1_2d_flx_Nx M2T1NXFLX 10.5067/7MCPBJ41Y0K6",
+ "tavg1_2d_int_Nx M2T1NXINT 10.5067/Q5GVUVUIVGO7",
+ "tavg1_2d_lfo_Nx M2T1NXLFO 10.5067/L0T5GEG1NYFA",
+ "tavg1_2d_lnd_Nx M2T1NXLND 10.5067/RKPHT8KC1Y1T",
+ "tavg1_2d_ocn_Nx M2T1NXOCN 10.5067/Y67YQ1L3ZZ4R",
+ "tavg1_2d_rad_Nx M2T1NXRAD 10.5067/Q9QMY5PBNV1T",
+ "tavg1_2d_slv_Nx M2T1NXSLV 10.5067/VJAFPLI1CSIV",
+ "tavg3_3d_mst_Ne M2T3NEMST 10.5067/JRUZ3SJ3ZJ72",
+ "tavg3_3d_trb_Ne M2T3NETRB 10.5067/4I7ZI35QRH8K",
+ "tavg3_3d_nav_Ne M2T3NENAV 10.5067/N5WAKNS1UYQN",
+ "tavg3_3d_cld_Np M2T3NPCLD 10.5067/TX10URJSKT53",
+ "tavg3_3d_mst_Np M2T3NPMST 10.5067/0TUFO90Q2PMS",
+ "tavg3_3d_rad_Np M2T3NPRAD 10.5067/3UGE8WQXZAOK",
+ "tavg3_3d_tdt_Np M2T3NPTDT 10.5067/9NCR9DDDOPFI",
+ "tavg3_3d_trb_Np M2T3NPTRB 10.5067/ZRRJPGWL8AVL",
+ "tavg3_3d_udt_Np M2T3NPUDT 10.5067/CWV0G3PPPWFW",
+ "tavg3_3d_odt_Np M2T3NPODT 10.5067/S0LYTK57786Z",
+ "tavg3_3d_qdt_Np M2T3NPQDT 10.5067/A9KWADY78YHQ",
+ "tavg3_3d_asm_Nv M2T3NVASM 10.5067/SUOQESM06LPK",
+ "tavg3_3d_cld_Nv M2T3NVCLD 10.5067/F9353J0FAHIH",
+ "tavg3_3d_mst_Nv M2T3NVMST 10.5067/ZXTJ28TQR1TR",
+ "tavg3_3d_rad_Nv M2T3NVRAD 10.5067/7GFQKO1T43RW",
+ "tavg3_2d_glc_Nx M2T3NXGLC 10.5067/9ETB4TT5J6US"
+ )
+ identifiers <- lapply(identifiers, strsplit, split = " ")
+ identifiers <- lapply(identifiers, function(x) matrix(x[[1]], nrow = 1))
+ identifiers <- do.call(rbind, identifiers)
+ identifiers_df <- as.data.frame(identifiers)
+ colnames(identifiers_df) <- c("collection_id", "estd_name", "DOI")
+ if (!(collection %in% identifiers_df$collection_id)) {
+ print(identifiers_df)
+ stop(paste0("Requested collection is not recognized.\n
+ Please refer to the table above to find a proper collection.\n"))
+ }
+ #### 5. define date sequence
+ date_sequence <- generate_date_sequence(
+ date_start,
+ date_end,
+ sub_hyphen = TRUE
+ )
+ #### 6. define year + month sequence
+ yearmonth_sequence <- unique(substr(date_sequence, 1, 6))
+ #### 7. define ESDT name and DOI
+ identifiers_df_requested <- subset(identifiers_df,
+ subset =
+ identifiers_df$collection_id ==
+ collection
+ )
+ esdt_name <- identifiers_df_requested[, 2]
+ cat(paste0(
+ "Collection: ",
+ collection,
+ " | ESDT Name: ",
+ esdt_name,
+ " | DOI: ",
+ identifiers_df_requested[, 3],
+ "\n"
+ ))
+ #### 8. define URL base
+ #### NOTE: sorted and defined manually according to
+ #### https://goldsmr4.gesdisc.eosdis.nasa.gov/data/MERRA2/ \&
+ #### https://goldsmr5.gesdisc.eosdis.nasa.gov/data/MERRA2/
+ esdt_name_4 <- c(
+ "M2I1NXASM", "M2I1NXINT", "M2I1NXLFO", "M2I3NXGAS",
+ "M2SDNXSLV", "M2T1NXADG", "M2T1NXAER", "M2T1NXCHM",
+ "M2T1NXCSP", "M2T1NXFLX", "M2T1NXINT", "M2T1NXLFO",
+ "M2T1NXLND", "M2T1NXOCN", "M2T1NXRAD", "M2T1NXSLV",
+ "M2T3NXGLC"
+ )
+ esdt_name_5 <- c(
+ "M2I3NPASM", "M2I3NVAER", "M2I3NVASM", "M2I3NVCHM",
+ "M2I3NVGAS", "M2I6NPANA", "M2I6NVANA", "M2T3NEMST",
+ "M2T3NENAV", "M2T3NETRB", "M2T3NPCLD", "M2T3NPMST",
+ "M2T3NPODT", "M2T3NPQDT", "M2T3NPRAD", "M2T3NPTDT",
+ "M2T3NPTRB", "M2T3NPUDT", "M2T3NVASM", "M2T3NVCLD",
+ "M2T3NVMST", "M2T3NVRAD"
+ )
+ if (esdt_name %in% esdt_name_4) {
+ base <- "https://goldsmr4.gesdisc.eosdis.nasa.gov/data/MERRA2/"
+ } else if (esdt_name %in% esdt_name_5) {
+ base <- "https://goldsmr5.gesdisc.eosdis.nasa.gov/data/MERRA2/"
+ }
+ #### 9. identify download URLs
+ list_urls <- NULL
+ for (y in seq_along(yearmonth_sequence)) {
+ year <- substr(yearmonth_sequence[y], 1, 4)
+ month <- substr(yearmonth_sequence[y], 5, 6)
+ if (y == 1) {
+ base_url <- paste0(
+ base,
+ esdt_name,
+ ".5.12.4/",
+ year,
+ "/",
+ month,
+ "/"
+ )
+ if (!(check_url_status(base_url))) {
+ stop(paste0(
+ "Invalid date returns HTTP code 404. ",
+ "Check `date_start` parameter.\n"
+ ))
+ }
+ }
+ list_urls_month <- system(
+ paste0(
+ "wget -q -nH -nd ",
+ "\"",
+ base,
+ esdt_name,
+ ".5.12.4/",
+ year,
+ "/",
+ month,
+ "/\"",
+ " -O - | grep .nc4 | awk -F'\"' ",
+ "'{print $4}'"
+ ),
+ intern = TRUE
+ )
+ list_urls <- c(list_urls, list_urls_month)
+ }
+ #### 10. match list_urls to date sequence
+ list_urls_date_sequence <- list_urls[substr(list_urls, 28, 35) %in%
+ date_sequence]
+ #### 11. separate data and metadata
+ list_urls_data <- list_urls_date_sequence[grep("*.xml",
+ list_urls_date_sequence,
+ invert = TRUE
+ )]
+ list_urls_metadata <- list_urls_date_sequence[grep("*.xml",
+ list_urls_date_sequence,
+ invert = FALSE
+ )]
+ #### 12. initiate "..._wget_commands.txt" file
+ commands_txt <- paste0(
+ directory_to_save,
+ collection,
+ "_",
+ date_start,
+ "_",
+ date_end,
+ "_wget_commands.txt"
+ )
+ download_sink(commands_txt)
+ #### 13. concatenate and print download commands to "..._wget_commands.txt"
+ for (l in seq_along(date_sequence)) {
+ year <- as.character(substr(date_sequence[l], 1, 4))
+ month <- as.character(substr(date_sequence[l], 5, 6))
+ download_url <- paste0(
+ base,
+ esdt_name,
+ ".5.12.4/",
+ year,
+ "/",
+ month,
+ "/",
+ list_urls_data[l]
+ )
+ download_folder <- paste0(
+ directory_to_save,
+ collection
+ )
+ download_command <- paste0(
+ "wget ",
+ download_url,
+ " -P ",
+ download_folder,
+ "\n"
+ )
+ cat(download_command)
+ download_url_metadata <- paste0(
+ base,
+ esdt_name,
+ ".5.12.4/",
+ year,
+ "/",
+ month,
+ "/",
+ list_urls_metadata[l]
+ )
+ download_folder_metadata <- paste0(
+ directory_to_save,
+ collection,
+ "/metadata/"
+ )
+ download_command_metadata <- paste0(
+ "wget ",
+ download_url_metadata,
+ " -P ",
+ download_folder_metadata,
+ "\n"
+ )
+ cat(download_command_metadata)
+ }
+ #### 14. finish "..._wget_commands.txt"
+ sink()
+ #### 15. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 16. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ #### 17. Remove command file
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+}
+
+# nolint start
+#' download_narr_monolevel_data: download monolevel meteorological data from NOAA NCEP North American Regional Reanalysis (NARR) model.
+#' @description
+#' The \code{download_narr_monolevel_data} function accesses and downloads
+#' monolevel meteorological data from [NOAA NCEP North American Regional Reanalysis (NARR)](https://psl.noaa.gov/data/gridded/data.narr.html).
+# nolint end
+#' @param year_start integer(1). length of 4. Start of year range for
+#' downloading data.
+#' @param year_end integer(1). length of 4. End of year range for downloading
+#' data.
+#' @param variables character. Variable(s) name acronym.
+#' @param directory_to_save character(1). Directory(s) to save downloaded data
+#' files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mitchell Manware, Insang Song
+#' @return NULL;
+#' @export
+download_narr_monolevel_data <- function(
+ year_start = 2022,
+ year_end = 2022,
+ variables = NULL,
+ directory_to_save = "./input/narr/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_save)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. define years sequence
+ if (any(nchar(year_start) != 4, nchar(year_end) != 4)) {
+ stop("year_start and year_end should be 4-digit integers.\n")
+ }
+ years <- seq(year_start, year_end, 1)
+ #### 5. define variables
+ variables_list <- as.vector(variables)
+ #### 6. define URL base
+ base <- "https://downloads.psl.noaa.gov/Datasets/NARR/Dailies/monolevel/"
+ #### 7. initiate "..._curl_commands.txt"
+ commands_txt <- paste0(
+ directory_to_save,
+ "narr_monolevel_",
+ year_start, "_", year_end,
+ "_curl_commands.txt"
+ )
+ download_sink(commands_txt)
+ #### 8. concatenate and print download commands to "..._curl_commands.txt"
+ for (v in seq_along(variables_list)) {
+ variable <- variables_list[v]
+ folder <- paste0(directory_to_save, variable, "/")
+ if (!(file.exists(folder))) {
+ dir.create(folder)
+ }
+ for (y in seq_along(years)) {
+ year <- years[y]
+ url <- paste0(
+ base,
+ variable,
+ ".",
+ year,
+ ".nc"
+ )
+ if (y == 1) {
+ if (!(check_url_status(url))) {
+ sink()
+ file.remove(commands_txt)
+ stop(paste0(
+ "Invalid year returns HTTP code 404. ",
+ "Check `year_start` parameter.\n"
+ ))
+ }
+ }
+ destfile <- paste0(
+ directory_to_save,
+ variable,
+ "/",
+ variable,
+ ".",
+ year,
+ ".nc"
+ )
+ command <- paste0(
+ "curl -s -o ",
+ destfile,
+ " --url ",
+ url,
+ "\n"
+ )
+ cat(command)
+ }
+ }
+ #### 9. finish "..._curl_commands.txt"
+ sink()
+ #### 10. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 11. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ #### 12. remove command text file
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+}
+
+# nolint start
+#' Download pressure level meteorological data from NOAA NCEP North American Regional Reanalysis (NARR) model.
+# nolint end
+#' @description
+#' The \code{download_narr_p_levels_data} function accesses and downloads
+#' pressure level meteorological data from [NOAA NCEP North American Regional
+#' Reanalysis (NARR)](https://psl.noaa.gov/data/gridded/data.narr.html).
+#' @param year_start integer(1). length of 4. Start of year range for
+#' downloading data.
+#' @param year_end integer(1). length of 4. End of year range for downloading
+#' data.
+#' @param variables character(1). Variable(s) name acronym.
+#' @param directory_to_save character(1). Directory(s) to save downloaded data
+#' files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mitchell Manware, Insang Song
+#' @return NULL;
+#' @export
+download_narr_p_levels_data <- function(
+ year_start = 2022,
+ year_end = 2022,
+ variables = NULL,
+ directory_to_save = "./input/narr/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_save)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. define years sequence
+ years <- seq(year_start, year_end, 1)
+ #### 5. define months sequence
+ months <- sprintf("%02d", seq(1, 12, by = 1))
+
+ #### 6. define variables
+ variables_list <- as.vector(variables)
+ #### 7. define URL base
+ base <- "https://downloads.psl.noaa.gov//Datasets/NARR/Dailies/pressure/"
+ #### 8. initiate "..._curl_commands.txt"
+ commands_txt <- paste0(
+ directory_to_save,
+ "narr_p_levels_",
+ year_start,
+ "_",
+ year_end,
+ "_curl_commands.txt"
+ )
+ download_sink(commands_txt)
+ #### 9. concatenate download commands to "..._curl_commands.txt"
+ for (v in seq_along(variables_list)) {
+ variable <- variables_list[v]
+ folder <- paste0(directory_to_save, variable, "/")
+ if (!(file.exists(folder))) {
+ dir.create(folder)
+ }
+ for (y in seq_along(years)) {
+ year <- years[y]
+ for (m in seq_along(months)) {
+ month <- months[m]
+ url <- paste0(
+ base,
+ variable,
+ ".",
+ year,
+ month,
+ ".nc"
+ )
+ if (m == 1) {
+ if (!(check_url_status(url))) {
+ sink()
+ file.remove(commands_txt)
+ stop(paste0(
+ "Invalid year returns HTTP code 404. ",
+ "Check `year_start` parameter.\n"
+ ))
+ }
+ }
+ destfile <- paste0(
+ directory_to_save,
+ variable,
+ "/",
+ variable,
+ ".",
+ year,
+ month,
+ ".nc"
+ )
+ command <- paste0(
+ "curl -s -o ",
+ destfile,
+ " --url ",
+ url,
+ "\n"
+ )
+ cat(command)
+ }
+ }
+ }
+ #### 10. finish "..._curl_commands.txt"
+ sink()
+ #### 11. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 12. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ #### 13. Remove command file
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+}
+
+
+# nolint start
+#' Download land cover data from the National Land Cover Database Science Research Products.
+# nolint end
+#' @description
+#' The \code{download_nlcd_data()} function accesses and downloads
+#' land cover data from the
+#' [NLCD Science Research Products](https://www.mrlc.gov/data) data base.
+#' @param year integer(1). Available years for Coterminous United States
+#' include `2001`, `2004`, `2006`, `2008`, `2011`, `2013`, `2016`,
+#' `2019`, and `2021`.
+#' Available years for Alaska include `2001`, `2011`, and `2016`.
+#' @param collection character(1). `"Coterminous United States"` or `"Alaska"`.
+#' @param directory_to_download character(1). Directory to download zip files
+#' from National Land Cover Database Science Research Products.
+#' @param directory_to_save character(1). Directory to decompress zip files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param unzip logical(1). Unzip zip files. Default is \code{TRUE}.
+#' @param remove_zip logical(1). Remove zip files from directory_to_download.
+#' Default is \code{FALSE}.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mitchell Manware, Insang Song
+#' @returns NULL;
+#' @export
+download_nlcd_data <- function(
+ year = 2021,
+ collection = "Coterminous United States",
+ directory_to_download = "./input/nlcd/",
+ directory_to_save = "./input/nlcd/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_download)
+ download_setup_dir(directory_to_save)
+ directory_to_download <- download_sanitize_path(directory_to_download)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. check for valid years
+ valid_years <- c(2001, 2004, 2006, 2008, 2011, 2013, 2016, 2019, 2021)
+ if (!(year %in% valid_years)) {
+ stop(paste0("Requested year is not recognized.\n"))
+ }
+ #### 5. define URL base
+ base <- "https://s3-us-west-2.amazonaws.com/mrlc/"
+ #### 6. define collection code
+ if (collection == "Coterminous United States") {
+ collection_code <- paste0(
+ "nlcd_",
+ as.character(year),
+ "_land_cover_l48_"
+ )
+ } else if (collection == "Alaska") {
+ collection_code <- paste0(
+ "NLCD_",
+ as.character(year),
+ "_Land_Cover_AK_"
+ )
+ }
+ #### 7. define release date
+ #### NOTE: release dates identified by inspecting URLs on from
+ #### https://www.mrlc.gov/data?f%5B0%5D=category%3ALand%20Cover
+ if (year == 2021 && collection == "Coterminous United States") {
+ release_date <- "20230630"
+ } else if (!(year == 2021) && collection == "Coterminous United States") {
+ release_date <- "20210604"
+ } else if (collection == "Alaska") {
+ release_date <- "20200724"
+ }
+ #### 8. build URL
+ download_url <- paste0(
+ base,
+ collection_code,
+ release_date,
+ ".zip"
+ )
+ #### 9. build download file name
+ download_name <- paste0(
+ directory_to_download,
+ tolower(collection_code),
+ release_date,
+ ".zip"
+ )
+ #### 10. build system command
+ download_command <- paste0(
+ "curl -o ",
+ download_name,
+ " --url ",
+ download_url,
+ "\n"
+ )
+ #### 11. initiate "..._curl_command.txt"
+ commands_txt <- paste0(
+ directory_to_download,
+ tolower(collection_code),
+ Sys.Date(),
+ "_curl_command.txt"
+ )
+ download_sink(commands_txt)
+ #### 12. concatenate and print download command to "..._curl_commands.txt"
+ cat(download_command)
+ #### 13. finish "..._curl_command.txt"
+ sink()
+ #### 14. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 15. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ #### 16. end if unzip == FALSE
+ download_unzip(
+ file_name = download_name,
+ directory_to_unzip = directory_to_save,
+ unzip = unzip
+ )
+ #### 17. remove zip files
+ download_remove_zips(
+ remove = remove_zip,
+ download_name = download_name
+ )
+ #### 18. remove command text
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+}
+
+# nolint start
+#' Download Global Roads Open Access Data Set (gROADS), v1 (1980-2010) data from NASA Socioeconomic Data and Applications Center (SEDAC).
+#' @description
+#' The \code{download_sedac_groads_data()} function accesses and downloads
+#' roads data from the National Aeronautics and Space
+#' Administration's (NASA) [Global Roads Open Access Data Set](https://sedac.ciesin.columbia.edu/data/set/groads-global-roads-open-access-v1/data-download).
+#' @param data_format character(1). Data can be downloaded as `"Shapefile"` or
+#' `"Geodatabase"`. (Only `"Geodatabase"` available for `"Global"` region).
+#' @param data_region character(1). Data can be downloaded for `"Global"`,
+#' `"Africa"`, `"Asia"`, `"Europe"`, `"Americas"`, `"Oceania East"`, and `"Oceania West"`.
+#' @param directory_to_download character(1). Directory to download zip files
+#' from NASA Global Roads Open Access Data Set.
+#' @param directory_to_save character(1). Directory to decompress zip files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param unzip logical(1). Unzip zip files. Default is \code{TRUE}.
+#' @param remove_zip logical(1). Remove zip files from directory_to_download.
+#' Default is \code{FALSE}.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mitchell Manware, Insang Song
+#' @return NULL;
+#' @export
+download_sedac_groads_data <- function(
+ data_format = c("Shapefile", "Geodatabase"),
+ data_region = c("Americas", "Global", "Africa", "Asia", "Europe", "Oceania East", "Oceania West"),
+ directory_to_download = "./input/sedac_groads/",
+ directory_to_save = "./input/sedac_groads/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE) {
+ # nolint end
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_download)
+ download_setup_dir(directory_to_save)
+ directory_to_download <- download_sanitize_path(directory_to_download)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. check if region is valid
+ data_format <- match.arg(data_format)
+ data_region <- match.arg(data_region)
+ #### 5. define URL base
+ base <- paste0(
+ "https://sedac.ciesin.columbia.edu/downloads/data/groads/",
+ "groads-global-roads-open-access-v1/",
+ "groads-v1-"
+ )
+ #### 6. define data format
+ if (data_format == "Shapefile" && data_region == "Global") {
+ message("Geodatabase format utilized for 'Global' dataset.\n")
+ format <- "gdb"
+ } else if (data_format == "Shapefile" && !(data_region == "Global")) {
+ format <- "shp"
+ } else if (data_format == "Geodatabase") {
+ format <- "gdb"
+ }
+ #### 7. coerce region to lower case
+ region <- tolower(data_region)
+ #### 8. build download URL
+ download_url <- paste0(
+ base,
+ gsub(" ", "-", region),
+ "-",
+ format,
+ ".zip"
+ )
+ #### 9. build download file name
+ download_name <- paste0(
+ directory_to_download,
+ "groads_v1_",
+ gsub(" ", "-", region),
+ "_",
+ format,
+ ".zip"
+ )
+ #### 10. build system command
+ download_command <- paste0(
+ "curl -n -c ~/.urs_cookies -b ~/.urs_cookies -LJ",
+ " -o ",
+ download_name,
+ " --url ",
+ download_url,
+ "\n"
+ )
+ #### 11. initiate "..._curl_commands.txt"
+ commands_txt <- paste0(
+ directory_to_download,
+ "sedac_groads_",
+ gsub(" ", "_", region),
+ "_",
+ Sys.Date(),
+ "_curl_command.txt"
+ )
+ download_sink(commands_txt)
+ #### 12. concatenate and print download command to "..._curl_commands.txt"
+ cat(download_command)
+ #### 13. finish "..._curl_commands.txt" file
+ sink()
+ #### 14. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 15. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ #### 16. end if unzip == FALSE
+ download_unzip(
+ file_name = download_name,
+ directory_to_unzip = directory_to_save,
+ unzip = unzip
+ )
+ #### 17. Remove command file
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+ #### 18. remove zip files
+ download_remove_zips(
+ remove = remove_zip,
+ download_name = download_name
+ )
+}
+
+# nolint start
+#' Download UN WPP-Adjusted population density data from NASA Socioeconomic Data and Applications Center (SEDAC)
+#' @description
+#' The \code{download_sedac_population_data()} function accesses and downloads
+#' population density data from the National Aeronatuics and Space
+#' Administration's (NASA) [UN WPP-Adjusted Population Density, v4.11]( https://sedac.ciesin.columbia.edu/data/set/gpw-v4-population-density-adjusted-to-2015-unwpp-country-totals-rev11).
+#' @param year character(1). Available years are `2000`, `2005`, `2010`, `2015`, and
+#' `2020`, or `"all"` for all years.
+#' @param data_format character(1). Individual year data can be downloaded as
+#' `"ASCII"` or `"GeoTIFF"`. "all" years is downloaded as `"netCDF"`.
+#' @param data_resolution character(1). Available resolutions are 30 second
+#' (approx. 1 km), 2.5 minute (approx. 5 km), 15 minute (approx. 30 km),
+#' 30 minute (approx. 55 km), and 60 minute (approx. 110 km).
+#' @param directory_to_download character(1). Directory to download zip files
+#' from NASA UN WPP-Adjusted Population Density, v4.11.
+#' @param directory_to_save character(1). Directory to decompress zip files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param unzip logical(1). Unzip zip files. Default is \code{TRUE}.
+#' @param remove_zip logical(1). Remove zip files from directory_to_download.
+#' Default is \code{FALSE}.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mitchell Manware, Insang Song
+# nolint end
+#' @return NULL;
+#' @export
+download_sedac_population_data <- function(
+ year = "2020",
+ data_format = c("GeoTIFF", "ASCII", "netCDF"),
+ data_resolution = "60 minute",
+ directory_to_download = "./input/sedac_population/",
+ directory_to_save = "./input/sedac_population/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ remove_command = FALSE
+) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_download)
+ download_setup_dir(directory_to_save)
+ directory_to_download <- download_sanitize_path(directory_to_download)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. define URL base
+ base <- paste0("https://sedac.ciesin.columbia.edu/downloads/data/gpw-v4/")
+ #### 5. define year
+ year <- ifelse(year == "all", "totpop", as.character(year))
+ #### 6. define data resolution
+ resolution_namecodes <- cbind(
+ c(
+ "60 minute", "30 second", "2.5 minute",
+ "15 minute", "30 minute"
+ ),
+ c(
+ "1_deg", "30_sec", "2pt5_min",
+ "15_min", "30_min"
+ )
+ )
+ resolution <-
+ resolution_namecodes[resolution_namecodes[, 1] == data_resolution][2]
+ #### 7. 30 second resolution not available for all years
+ if (year == "totpop" && resolution == "30_sec") {
+ resolution <- "2pt5_min"
+ cat(paste0(
+ "30 second resolution not available for all years. Returning",
+ " highest (2.5 minute) resolution.\n"
+ ))
+ }
+
+ data_format <- match.arg(data_format)
+ #### 8. define data format
+ if (data_format == "GeoTIFF") {
+ if (year != "totpop") {
+ format <- "tif"
+ } else {
+ format <- "nc"
+ cat(paste0(
+ "Data for all years is only available in netCDF format. ",
+ "Data will be downloaded as netCDF.\n"
+ ))
+ }
+ }
+ if (data_format == "ASCII") {
+ if (year != "totpop") {
+ format <- "asc"
+ } else {
+ format <- "nc"
+ cat(paste0(
+ "Data for all years is only available in netCDF format. ",
+ "Data will be downloaded as netCDF.\n"
+ ))
+ }
+ }
+ if (data_format == "netCDF") {
+ format <- "nc"
+ }
+ #### 9. build download URL
+ download_url <- paste0(
+ base,
+ "gpw-v4-population-density-adjusted-to-2015-unwpp-",
+ "country-totals-rev11/",
+ "gpw-v4-population-density-adjusted-to-2015-unwpp-",
+ "country-totals-rev11_",
+ year,
+ "_",
+ resolution,
+ "_",
+ format,
+ ".zip"
+ )
+ #### 10. build download file name
+ download_name <- paste0(
+ directory_to_download,
+ "gpw_v4_population_density_adjusted_to_2015_unwpp_",
+ "country_totals_rev11_",
+ year,
+ "_",
+ resolution,
+ "_",
+ format,
+ ".zip"
+ )
+ #### 11. build system command
+ download_command <- paste0(
+ "curl -n -c ~/.urs_cookies -b ~/.urs_cookies -LJ",
+ " -o ",
+ download_name,
+ " --url ",
+ download_url,
+ "\n"
+ )
+ #### 12. initiate "..._curl_command.txt"
+ commands_txt <- paste0(
+ directory_to_download,
+ "sedac_population_",
+ year,
+ "_",
+ resolution,
+ "_",
+ Sys.Date(),
+ "_curl_commands.txt"
+ )
+ download_sink(commands_txt)
+ #### 13. concatenate and print download command to "..._curl_commands.txt"
+ cat(download_command)
+ #### 14. finish "..._curl_commands.txt" file
+ sink()
+ #### 15. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 16. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ #### 17. end if unzip == FALSE
+ download_unzip(
+ file_name = download_name,
+ directory_to_unzip = directory_to_save,
+ unzip = unzip
+ )
+ #### 18. Remove command file
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+ #### 19. remove zip files
+ download_remove_zips(
+ remove = remove_zip,
+ download_name = download_name
+ )
+}
+
+# nolint start
+#' Download daily wildfire smoke plume data from NOAA Hazard Mapping System Fire and Smoke Product
+#' @description
+#' The \code{download_noaa_hms_smoke_data()} function accesses and downloads
+#' wildfire smoke plume coverage data from
+#' the National Oceanic and Atmospheric Administration's (NOAA)
+#' [Hazard Mapping System Fire and Smoke Product](https://www.ospo.noaa.gov/Products/land/hms.html#0).
+# nolint end
+#' @param date_start character(1). length of 10. Start date for downloading
+#' data. Format YYYY-MM-DD (ex. September 1, 2023 is `"2023-09-01"`).
+#' @param date_end character(1). length of 10. End date for downloading data.
+#' Format YYYY-MM-DD (ex. September 10, 2023 is `"2023-09-10"`).
+#' @param data_format character(1). "Shapefile" or "KML".
+#' @param directory_to_download character(1). Directory to download zip files
+#' from NOAA Hazard Mapping System Fire and Smoke Product. (Ignored if
+#' \code{data_format = "KML"}.)
+#' @param directory_to_save character(1). Directory to save unzipped shapefiles
+#' and KML files.
+#' @param data_download_acknowledgement logical(1).
+#' By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param unzip logical(1). Unzip zip files. Default is \code{TRUE}. (Ignored
+#' if \code{data_format = "KML"}.)
+#' @param remove_zip logical(1). Remove zip files from
+#' directory_to_download. Default is \code{FALSE}.
+#' (Ignored if \code{data_format = "KML"}.)
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @importFrom utils head
+#' @importFrom utils tail
+#' @author Mitchell Manware, Insang Song
+#' @return NULL;
+#' @export
+download_noaa_hms_smoke_data <- function(
+ date_start = "2023-09-01",
+ date_end = "2023-09-01",
+ data_format = "Shapefile",
+ directory_to_download = "./input/noaa_hms/",
+ directory_to_save = "./input/noaa_hms/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_download)
+ download_setup_dir(directory_to_save)
+ directory_to_download <- download_sanitize_path(directory_to_download)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. check for unzip == FALSE && remove_zip == TRUE
+ if (unzip == FALSE && remove_zip == TRUE) {
+ stop(paste0(
+ "Arguments unzip = FALSE and remove_zip = TRUE are not ",
+ "acceptable together. Please change one.\n"
+ ))
+ }
+ #### 5. define date sequence
+ date_sequence <- generate_date_sequence(
+ date_start,
+ date_end,
+ sub_hyphen = TRUE
+ )
+ #### 6. define URL base
+ base <- "https://satepsanone.nesdis.noaa.gov/pub/FIRE/web/HMS/Smoke_Polygons/"
+ #### 7. initiate "..._curl_commands.txt"
+ commands_txt <- paste0(
+ directory_to_download,
+ "hms_smoke_",
+ utils::head(date_sequence, n = 1),
+ "_",
+ utils::tail(date_sequence, n = 1),
+ "_curl_commands.txt"
+ )
+ download_sink(commands_txt)
+ #### 8. concatenate and print download commands to "..._curl_commands.txt"
+ download_names <- NULL
+ for (f in seq_along(date_sequence)) {
+ year <- substr(date_sequence[f], 1, 4)
+ month <- substr(date_sequence[f], 5, 6)
+ if (data_format == "Shapefile") {
+ suffix <- ".zip"
+ directory_to_cat <- directory_to_download
+ } else if (data_format == "KML") {
+ suffix <- ".kml"
+ directory_to_cat <- directory_to_save
+ }
+ url <- paste0(
+ base,
+ data_format,
+ "/",
+ year,
+ "/",
+ month,
+ "/hms_smoke",
+ date_sequence[f],
+ suffix
+ )
+ if (f == 1) {
+ if (!(check_url_status(url))) {
+ sink()
+ file.remove(commands_txt)
+ stop(paste0(
+ "Invalid date returns HTTP code 404. ",
+ "Check `date_start` parameter.\n"
+ ))
+ }
+ }
+ destfile <- paste0(
+ directory_to_cat,
+ "hms_smoke_",
+ data_format,
+ "_",
+ date_sequence[f],
+ suffix
+ )
+ download_names <- c(download_names, destfile)
+ command <- paste0(
+ "curl -s -o ",
+ destfile,
+ " --url ",
+ url,
+ "\n"
+ )
+ cat(command)
+ }
+ #### 9. finish "..._curl_commands.txt"
+ sink()
+ #### 10. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 11. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+ #### 12. remove command file
+ download_remove_command(
+ remove = remove_command,
+ commands_txt = commands_txt
+ )
+ #### 13. end if data_format == "KML"
+ if (data_format == "KML") {
+ return(cat(paste0("KML files cannot be unzipped.\n")))
+ }
+ #### 14. unzip downloaded zip files
+ for (d in seq_along(download_names)) {
+ download_unzip(
+ file_name = download_names[d],
+ directory_to_unzip = directory_to_save,
+ unzip = unzip
+ )
+ }
+ #### 15. remove zip files
+ download_remove_zips(
+ remove = remove_zip,
+ download_name = download_names
+ )
+}
+
+
+# nolint start
+#' Download climate classification data from the present and future Köppen-Geiger climate classification maps.
+#' @description
+#' The \code{download_koppen_geiger_data()} function accesses and downloads
+#' climate classification data from the Present and future
+#' Köppen-Geiger climate classification maps at
+#' 1-km resolution ([link for article](https://www.nature.com/articles/sdata2018214); [link for data](https://figshare.com/articles/dataset/Present_and_future_K_ppen-Geiger_climate_classification_maps_at_1-km_resolution/6396959/2)).
+# nolint end
+#' @param time_period character(1). Available times are `"Present"` (1980-2016)
+#' and `"Future"` (2071-2100). ("Future" classifications are based on scenario
+#' RCP8.5).
+#' @param data_resolution character(1). Available resolutions are `"0.0083"`
+#' degrees (approx. 1 km), `"0.083"` degrees (approx. 10 km), and
+#' `"0.5"` degrees (approx. 50 km).
+#' @param directory_to_download character(1). Directory to download zip files
+#' from Present and future Köppen-Geiger climate classification maps at 1-km
+#' resolution.
+#' @param directory_to_save character(1). Directory to decompress zip files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param unzip logical(1). Unzip zip files. Default is \code{TRUE}.
+#' @param remove_zip logical(1). Remove zip files from directory_to_download.
+#' Default is \code{FALSE}.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mitchell Manware, Insang Song
+#' @return NULL;
+#' @export
+download_koppen_geiger_data <- function(
+ time_period = c("Present", "Future"),
+ data_resolution = c("0.0083", "0.083", "0.5"),
+ directory_to_download = "./input/koppen_geiger/",
+ directory_to_save = "./input/koppen_geiger/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ remove_command = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. check for null parameters
+ check_for_null_parameters(mget(ls()))
+ #### 3. directory setup
+ download_setup_dir(directory_to_download)
+ download_setup_dir(directory_to_save)
+ directory_to_download <- download_sanitize_path(directory_to_download)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+ #### 4. check for data resolution
+ data_resolution <- match.arg(data_resolution)
+ #### 5. check for valid time period
+ time_period <- match.arg(time_period)
+ #### 6. define time period
+ period <- tolower(time_period)
+ #### 7. define data resolution
+ data_resolution <- gsub("\\.", "p", data_resolution)
+ #### 8 define download URL
+ download_url <- "https://figshare.com/ndownloader/files/12407516"
+ #### 9 build download file name
+ download_name <- paste0(
+ directory_to_download,
+ "koppen_geiger_",
+ period,
+ "_",
+ data_resolution,
+ ".zip"
+ )
+ #### 10. build download command
+ download_command <- paste0(
+ "wget ",
+ download_url,
+ " -O ",
+ download_name,
+ "\n"
+ )
+ #### 11. initiate "..._wget_commands.txt"
+ commands_txt <- paste0(
+ directory_to_download,
+ "koppen_geiger_",
+ time_period,
+ "_",
+ data_resolution,
+ "_",
+ Sys.Date(),
+ "_wget_command.txt"
+ )
+ download_sink(commands_txt)
+ #### 12. concatenate and print download command to "..._wget_commands.txt"
+ cat(download_command)
+ #### 13. finish "..._wget_commands.txt" file
+ sink()
+ #### 14. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 15. download data
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+
+ if (unzip) {
+ #### 17. remove unwanted files
+ unwanted_names <- list.files(
+ path = directory_to_save,
+ pattern = "Beck_KG",
+ full.names = TRUE
+ )
+ unwanted_names <- as.vector(c(
+ unwanted_names,
+ paste0(
+ directory_to_save,
+ "KoppenGeiger.m"
+ )
+ ))
+ tif <- paste0(
+ directory_to_save,
+ "/Beck_KG_V1_",
+ period,
+ "_",
+ data_resolution,
+ ".tif"
+ )
+ unwanted_names <- unwanted_names[grep(
+ pattern = tif,
+ unwanted_names,
+ invert = TRUE
+ )]
+ file.remove(unwanted_names)
+ }
+
+ #### 18. Remove command file
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+ if (download) {
+ #### 16. end if unzip == FALSE
+ download_unzip(
+ file_name = download_name,
+ directory_to_unzip = directory_to_save,
+ unzip = unzip
+ )
+ #### 19. remove zip files
+ download_remove_zips(
+ remove = remove_zip,
+ download_name = download_name
+ )
+ }
+}
+
+
+# nolint start
+#' Download MODIS product files
+# nolint end
+#' @description Need maintenance for the directory path change
+#' in NASA EOSDIS. This function first retrieves the all hdf download links
+#' on a certain day, then only selects the relevant tiles from the retrieved
+#' links. Download is only done at the queried horizontal-vertical tile number
+#' combinations. An exception is MOD06_L2 product, which is produced
+#' every five minutes every day.
+#' @note \code{date_start} and \code{date_end} should be in the same year.
+#' Directory structure looks like
+#' input/modis/raw/\{version\}/\{product\}/\{year\}/\{day_of_year\}
+#' Please note that \code{date_start} and \code{date_end} are
+#' ignored if \code{product == 'MOD06_L2'}.
+#' @param date_start character(1). length of 10. Start date for downloading
+#' data. Format YYYY-MM-DD (ex. September 1, 2023 is `"2023-09-01"`).
+#' @param date_end character(1). length of 10. End date for downloading data.
+#' Format YYYY-MM-DD (ex. September 1, 2023 is `"2023-09-01"`).
+#' @param product character(1).
+#' One of `c("MOD09GA", "MOD11A1", "MOD06_L2", "MCD19A2", "MOD13A2", "VNP46A2")`
+#' @param version character(1). Default is `"61"`, meaning v061.
+#' @param horizontal_tiles integer(2). Horizontal tile numbers
+#' `c({start}, {end})`. Default is `c(7, 13)`.
+#' @param vertical_tiles integer(2). Vertical tile numbers
+#' `c({start}, {end})`. Default is `c(3, 6)`.
+#' @param nasa_earth_data_token character(1).
+#' Token for downloading data from NASA. Should be set before
+#' trying running the function.
+#' @param directory_to_save character(1). Directory to save data.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param mod06_links character(1). CSV file path to MOD06_L2 download links
+#' from NASA LPDAAC. Default is `NULL`.
+#' @param download logical(1). Download data or only save wget commands.
+#' @param remove_command logical(1). Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mitchell Manware, Insang Song
+#' @import rvest
+#' @returns NULL;
+#' @export
+download_modis_data <- function(
+ date_start = "2023-09-01",
+ date_end = "2023-09-01",
+ product = c(
+ "MOD09GA", "MOD11A1", "MOD06_L2",
+ "MCD19A2", "MOD13A2", "VNP46A2"
+ ),
+ version = "61",
+ horizontal_tiles = c(7, 13),
+ vertical_tiles = c(3, 6),
+ nasa_earth_data_token = NULL,
+ directory_to_save = "./input/modis/raw/",
+ data_download_acknowledgement = FALSE,
+ mod06_links = NULL,
+ download = TRUE,
+ remove_command = FALSE) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. directory setup
+ download_setup_dir(directory_to_save)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+
+ #### 3. check for NASA earth data token
+ if (is.null(nasa_earth_data_token)) {
+ stop("Please provide NASA EarthData Login token.\n")
+ }
+ #### 4. check for product
+ product <- match.arg(product)
+
+ if (substr(date_start, 1, 4) != substr(date_end, 1, 4)) {
+ if (product != "MOD06_L2") {
+ stop("date_start and date_end should be in the same year.\n")
+ }
+ }
+
+ #### 5. check for version
+ if (is.null(version)) {
+ stop("Please select a data version.\n")
+ }
+
+ #### 6. check for valid horizontal tiles
+ if (!all(horizontal_tiles %in% seq(0, 35))) {
+ stop("Horizontal tiles are not in the proper range [0, 35].\n")
+ }
+ if (!all(vertical_tiles %in% seq(0, 17))) {
+ stop("Vertical tiles are not in the proper range [0, 17].\n")
+ }
+
+ #### 7. define horizontal and vertical tiles
+ tiles_horizontal <-
+ seq(
+ horizontal_tiles[1],
+ horizontal_tiles[2]
+ )
+ tiles_horizontal <-
+ sprintf("h%02d", tiles_horizontal)
+
+ tiles_vertical <-
+ seq(
+ vertical_tiles[1],
+ vertical_tiles[2]
+ )
+ tiles_vertical <-
+ sprintf("v%02d", tiles_vertical)
+
+ #### 8. define requested tiles
+ tiles_df <- expand.grid(
+ h = tiles_horizontal,
+ v = tiles_vertical
+ )
+ tiles_requested <-
+ paste0(tiles_df$h, tiles_df$v)
+
+ #### 9. Reuse ladsweb home url
+ ladsurl <- "https://ladsweb.modaps.eosdis.nasa.gov/"
+ version <- ifelse(startsWith(product, "VNP"), "5000", version)
+
+ #### 10. MOD06_L2 manual input
+ if (product == "MOD06_L2") {
+ mod06l2_url1 <-
+ "https://ladsweb.modaps.eosdis.nasa.gov/"
+ mod06l2_url2 <-
+ "search/order/4/MOD06_L2--61/"
+ mod06l2_url3 <-
+ "%s..%s/DNB/-130,52,-60,20"
+ mod06l2_url_template <-
+ paste0(mod06l2_url1, mod06l2_url2, mod06l2_url3)
+ mod06l2_full <-
+ sprintf(mod06l2_url_template, date_start, date_end)
+
+ if (is.null(mod06_links)) {
+ stop(paste(
+ "Please provide a CSV file path to MOD06_L2 download links.
+ You may download it from the link:\n", mod06l2_full,
+ "\nTime length up to one month is recommended.\n"
+ ))
+ }
+
+ #### 10-1. Parse urls in csv
+ file_url <- read.csv(mod06_links)
+ file_url <- unlist(file_url[, 2])
+ download_url <-
+ paste0(
+ substr(ladsurl, 1, nchar(ladsurl) - 1),
+ file_url
+ )
+
+ #### 10-2. Parse dates from csv
+ file_dates <-
+ regmatches(
+ file_url,
+ regexpr("[2][0-2][0-9]{2,2}[0-3][0-9]{2,2}", file_url)
+ )
+ file_dates <- as.integer(file_dates)
+ date_start <- as.Date(as.character(min(file_dates)), format = "%Y%j")
+ date_end <- as.Date(as.character(max(file_dates)), format = "%Y%j")
+
+ #### 10-3. initiate "..._wget_commands.txt" file
+ commands_txt <- paste0(
+ directory_to_save,
+ product,
+ "_",
+ date_start,
+ "_",
+ date_end,
+ "_wget_commands.txt"
+ )
+
+ #### 10-4. write download_command
+ download_command <- paste0(
+ "wget -e robots=off -m -np -R .html,.tmp ",
+ "-nH --cut-dirs=3 \"",
+ download_url,
+ "\" --header \"Authorization: Bearer ",
+ nasa_earth_data_token,
+ "\" -P ",
+ directory_to_save,
+ "\n"
+ )
+
+ # avoid any possible errors by removing existing command files
+ download_sink(commands_txt)
+ cat(download_command)
+ sink()
+
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+
+ message("Requests were processed.\n")
+
+ download_remove_command(
+ commands_txt = commands_txt,
+ remove = remove_command
+ )
+ return(NULL)
+ }
+
+
+ #### 11. define date sequence
+ date_sequence <- generate_date_sequence(
+ date_start,
+ date_end,
+ sub_hyphen = FALSE
+ )
+ # In a certain year, list all available dates
+ year <- as.character(substr(date_start, 1, 4))
+ filedir_year_url <-
+ paste0(
+ ladsurl,
+ "archive/allData/",
+ version,
+ "/",
+ product,
+ "/",
+ year
+ )
+
+ list_available_d <-
+ rvest::read_html(filedir_year_url) |>
+ rvest::html_elements("tr") |>
+ rvest::html_attr("data-name")
+ # no conditional assignment at this moment.
+
+ # remove NAs
+ # 12. Queried year's available days
+ date_sequence <- list_available_d[!is.na(list_available_d)]
+ date_sequence_i <- as.integer(date_sequence)
+ # Queried dates to integer range
+ date_start_i <- as.integer(strftime(date_start, "%j"))
+ date_end_i <- as.integer(strftime(date_end, "%j"))
+ date_range_julian <- seq(date_start_i, date_end_i)
+ date_sequence_in <- (date_sequence_i %in% date_range_julian)
+
+ message(sprintf(
+ "%d / %d days of data available in the queried dates.\n",
+ sum(date_sequence_in), length(date_range_julian)
+ ))
+ date_sequence <- date_sequence[date_sequence_in]
+
+
+ #### 13. initiate "..._wget_commands.txt" file
+ commands_txt <- paste0(
+ directory_to_save,
+ product,
+ "_",
+ date_start,
+ "_",
+ date_end,
+ "_wget_commands.txt"
+ )
+
+ # avoid any possible errors by removing existing command files
+ download_sink(commands_txt)
+ #### 14. append download commands to text file
+ for (d in seq_along(date_sequence)) {
+ day <- date_sequence[d]
+ filedir_url <-
+ paste0(
+ filedir_year_url,
+ "/",
+ day
+ )
+
+ filelist <-
+ rvest::read_html(filedir_url) |>
+ rvest::html_elements("tr") |>
+ rvest::html_attr("data-path")
+
+ filelist_sub <-
+ grep(
+ paste0("(", paste(tiles_requested, collapse = "|"), ")"),
+ filelist,
+ value = TRUE
+ )
+ download_url <- sprintf("%s%s", ladsurl, filelist_sub)
+ # Main wget run
+ download_command <- paste0(
+ "wget -e robots=off -m -np -R .html,.tmp ",
+ "-nH --cut-dirs=3 \"",
+ download_url,
+ "\" --header \"Authorization: Bearer ",
+ nasa_earth_data_token,
+ "\" -P ",
+ directory_to_save,
+ "\n"
+ )
+ #### 15. concatenate and print download commands to "..._wget_commands.txt"
+ cat(download_command)
+ }
+
+ #### 16. finish "..._wget_commands.txt"
+ sink(file = NULL)
+
+ #### 17.
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ download_run(
+ download = download,
+ system_command = system_command
+ )
+
+ message("Requests were processed.\n")
+
+ download_remove_command(commands_txt = commands_txt,
+ remove = remove_command)
+
+}
+
+
+#' Download data from EPA toxic release inventory
+#' @param year_start integer(1). length of 4. Start year for downloading data.
+#' @param year_end integer(1). length of 4. End year for downloading data.
+#' @param directory_to_save character(1). Directory to download files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1). Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @author Mariana Kassien, Insang Song
+#' @returns NULL; Yearly comma-separated value (CSV) raw files for each year
+#' @export
+download_tri_data <- function(
+ year_start = 2018L,
+ year_end = 2022L,
+ directory_to_save = "./input/tri/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. directory setup
+ download_setup_dir(directory_to_save)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+
+ #### 3. define measurement data paths
+ url_download <-
+ "https://data.epa.gov/efservice/downloads/tri/mv_tri_basic_download/"
+ year_sequence <- seq(year_start, year_end, 1)
+ download_urls <- sprintf(
+ paste(url_download, "%.0f", "_US/csv", sep = ""),
+ year_sequence
+ )
+ download_names <-
+ sprintf(paste0(directory_to_save,
+ "tri_raw_%.0f.csv"),
+ year_sequence)
+
+ #### 4. build download command
+ download_commands <- paste0("curl -L ",
+ download_urls,
+ " --output ",
+ download_names,
+ "\n")
+ #### 5. initiate "..._curl_commands.txt"
+ commands_txt <- paste0(
+ directory_to_save,
+ "TRI_",
+ year_start, "_", year_end,
+ "_",
+ Sys.Date(),
+ "_curl_commands.txt"
+ )
+ download_sink(commands_txt)
+ #### 6. concatenate and print download commands to "..._curl_commands.txt"
+ writeLines(download_commands)
+ #### 7. finish "..._curl_commands.txt" file
+ sink()
+ #### 8. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 9. download data
+ download_run(download = download,
+ system_command = system_command)
+ message("Requests were processed.\n")
+ #### 10. remove download commands
+ download_remove_command(commands_txt = commands_txt,
+ remove = remove_command)
+
+}
+
+
+# nolint start
+#' Download data from EPA National Emission Inventory aggregated on-road emission data
+# nolint end
+#' @param directory_to_save character(1). Directory to download files.
+#' @param data_download_acknowledgement logical(1). By setting \code{TRUE} the
+#' user acknowledge that the data downloaded using this function may be very
+#' large and use lots of machine storage and memory.
+#' @param download logical(1). \code{FALSE} will generate a *.txt file
+#' containing all download commands. By setting \code{TRUE} the function
+#' will download all of the requested data files.
+#' @param remove_command logical(1).
+#' Remove (\code{TRUE}) or keep (\code{FALSE})
+#' the text file containing download commands.
+#' @param year_target Available years of NEI data.
+#' Default is \code{c(2017L, 2020L)}.
+#' @param unzip logical(1). Unzip the downloaded zip files.
+#' Default is \code{FALSE}.
+#' @param epa_certificate_path character(1). Path to the certificate file
+#' for EPA DataCommons. Default is
+#' 'extdata/cacert_gaftp_epa.pem' under the package installation path.
+#' @param certificate_url character(1). URL to certificate file. See notes for
+#' details.
+#' @author Ranadeep Daw, Insang Song
+#' @note
+#' For EPA Data Commons certificate errors, follow the steps below:
+#' 1. Click Lock icon in the address bar at https://gaftp.epa.gov
+#' 2. Click Show Certificate
+#' 3. Access Details
+#' 4. Find URL with *.crt extension
+#' Currently we bundle the pre-downloaded crt and its PEM (which is accepted
+#' in wget command) file in ./inst/extdata. The instruction above is for
+#' certificate updates in the future.
+#' @returns NULL; Two comma-separated value (CSV) raw files for 2017 and 2020
+#' @export
+download_nei_data <- function(
+ directory_to_save = "./input/nei/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE,
+ year_target = c(2017L, 2020L),
+ unzip = FALSE,
+ epa_certificate_path =
+ system.file("extdata/cacert_gaftp_epa.pem",
+ package = "amadeus"),
+ certificate_url =
+ "http://cacerts.digicert.com/DigiCertGlobalG2TLSRSASHA2562020CA1-1.crt"
+) {
+ #### 1. check for data download acknowledgement
+ download_permit(data_download_acknowledgement = data_download_acknowledgement)
+ #### 2. directory setup
+ download_setup_dir(directory_to_save)
+ directory_to_save <- download_sanitize_path(directory_to_save)
+
+ #### 5. define download URL
+ download_epa_certificate(
+ epa_certificate_path = epa_certificate_path,
+ certificate_url = certificate_url
+ )
+
+ #### 3. define measurement data paths
+ url_download_base <- "https://gaftp.epa.gov/air/nei/%d/data_summaries/"
+ url_download_remain <-
+ c("2017v1/2017neiApr_onroad_byregions.zip",
+ "2020nei_onroad_byregion.zip")
+ download_urls <-
+ paste0(
+ sprintf(url_download_base, year_target),
+ url_download_remain
+ )
+ download_names_file <-
+ c("2017neiApr_onroad_byregions.zip",
+ "2020nei_onroad_byregion.zip")
+ download_names <- paste0(directory_to_save, download_names_file)
+
+ #### 4. build download command
+ download_commands <-
+ paste0("wget --ca-certificate=",
+ epa_certificate_path,
+ " ",
+ download_urls,
+ " -O ",
+ download_names,
+ "\n")
+
+ #### 5. initiate "..._curl_commands.txt"
+ commands_txt <- paste0(
+ directory_to_save,
+ "NEI_AADT_",
+ paste(year_target, collapse = "-"),
+ "_",
+ Sys.Date(),
+ "_wget_commands.txt"
+ )
+ download_sink(commands_txt)
+ #### 6. concatenate and print download commands to "..._curl_commands.txt"
+ writeLines(download_commands)
+ #### 7. finish "..._curl_commands.txt" file
+ sink()
+ #### 8. build system command
+ system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+ )
+ #### 9. download data
+ download_run(download = download,
+ system_command = system_command)
+
+ #### 10. unzip data
+ # note that this part does not utilize download_unzip
+ # as duplicate file names are across multiple zip files
+ if (download) {
+ if (unzip) {
+ dir_unzip <- sub(".zip", "", download_names)
+ for (fn in seq_along(dir_unzip)) {
+ utils::unzip(zipfile = download_names[fn], exdir = dir_unzip[fn])
+ }
+ }
+ }
+ message("Requests were processed.\n")
+ #### 10. remove download commands
+ download_remove_command(commands_txt = commands_txt,
+ remove = remove_command)
+
+}
diff --git a/R/download_support.R b/R/download_support.R
new file mode 100644
index 00000000..24d18f3e
--- /dev/null
+++ b/R/download_support.R
@@ -0,0 +1,236 @@
+################################################################################
+# Date created: 2023-12-06
+# Packages required: None
+################################################################################
+
+
+#' Check if input directory exists
+#' @param directory character(1) directory path
+#' @description If directory does not exist, the directory
+#' will be created.
+#' @returns NULL
+#' @export
+download_setup_dir <-
+ function(directory) {
+ if (!dir.exists(directory)) {
+ dir.create(directory, recursive = TRUE)
+ }
+ }
+
+
+#' Sanitize path to end with a forward slash
+#' @param directory character(1). Path
+#' @returns character ending with a forward slash.
+#' @export
+download_sanitize_path <-
+ function(directory) {
+ #### 1. directory setup
+ chars_dir <- nchar(directory)
+ if (substr(
+ directory,
+ chars_dir,
+ chars_dir
+ ) != "/") {
+ directory <-
+ paste(directory,
+ "/",
+ sep = ""
+ )
+ }
+ return(directory)
+ }
+
+
+#' Check for data download acknowledgement
+#' @param data_download_acknowledgement logical(1). Whether to
+#' start downloading
+#' @returns NULL
+#' @export
+download_permit <-
+ function(data_download_acknowledgement) {
+ if (!data_download_acknowledgement) {
+ stop(paste0(
+ "Data download acknowledgement is set to FALSE. ",
+ "Please acknowledge that the data downloaded using this ",
+ "function may be very large and use lots of machine storage ",
+ "and memory.\n"
+ ))
+ }
+ }
+
+
+#' download_run: execute or skip \code{system_command}
+#' in data download function.
+#'
+#' @description
+#' Execute or skip the commands listed in the ...wget/curl_commands.txt file
+#' produced by one of the data download functions.
+#' @param download logical(1). Execute (\code{TRUE}) or
+#' skip (\code{FALSE}) download.
+#' @param system_command character(1). Linux command to execute downloads.
+#' Inherited from data download function.
+#' @returns NULL
+#' @export
+download_run <- function(
+ download = FALSE,
+ system_command = NULL) {
+ if (download == TRUE) {
+ cat(paste0("Downloading requested files...\n"))
+ system(command = system_command)
+ cat(paste0("Requested files have been downloaded.\n"))
+ } else {
+ cat(paste0("Skipping data download.\n"))
+ return(NULL)
+ }
+}
+
+
+#' Remove or keep wget command file
+#'
+#' @param commands_txt character(1). Path of download commands
+#' @param remove logical(1). Remove (\code{TRUE}) or
+#' keep (\code{FALSE}) commands
+#' @returns NULL
+#' @export
+download_remove_command <-
+ function(commands_txt = NULL,
+ remove = FALSE) {
+ if (remove) {
+ file.remove(commands_txt)
+ }
+ }
+
+
+#' Start sink download commands into a text file
+#' @param command_txt character(1). file path to export commands.
+#' @returns NULL
+#' @export
+download_sink <-
+ function(command_txt) {
+ if (file.exists(command_txt)) {
+ file.remove(command_txt)
+ }
+ sink(file = command_txt, append = FALSE)
+ }
+
+
+#' Unzip downloaded data
+#' @param file_name character(1). Full zip file path
+#' @param directory_to_unzip character(1). Directory to unzip
+#' data
+#' @param unzip logical(1). Unzip (\code{TRUE}) or not.
+#' @returns NULL
+#' @export
+download_unzip <-
+ function(file_name,
+ directory_to_unzip,
+ unzip = TRUE) {
+ if (!unzip) {
+ cat(paste0("Downloaded files will not be unzipped.\n"))
+ return(NULL)
+ }
+
+ cat(paste0("Unzipping files...\n"))
+ unzip(file_name,
+ exdir = directory_to_unzip
+ )
+ cat(paste0(
+ "Files unzipped and saved in ",
+ directory_to_unzip,
+ ".\n"
+ ))
+ }
+
+
+#' Remove downloaded zip files
+#' @param remove logical(1). Confirm removal. Default is FALSE.
+#' @param download_name character. Full zip file path
+#' @returns NULL
+#' @export
+download_remove_zips <-
+ function(remove = FALSE,
+ download_name) {
+ #### remove zip files
+ if (remove) {
+ cat(paste0("Removing download files...\n"))
+ file.remove(download_name)
+ cat(paste0("Download files removed.\n"))
+ }
+ }
+
+
+#' Check for null arguments
+#' @param parameters parameters passed to function (called by
+#' \code{mget(ls())}.)
+#' @returns NULL
+#' @export
+check_for_null_parameters <-
+ function(
+ parameters) {
+ parameters_status <- any(unlist(lapply(parameters, is.null)))
+ if (parameters_status) {
+ stop(paste0("One or more parameters are NULL\n"))
+ }
+ }
+
+#' Generate sequence of dates based on `date_start` and `date_end`.
+#' @param date_start character(1). Beginning of date sequence.
+#' @param date_end character(1). End of date sequence.
+#' @param sub_hyphen logical(1). Substitute hyphen in dates. If `TRUE`, returns
+#' date sequence as "YYYYMMDD". If `FALSE`, returns date sequence as
+#' "YYYY-MM-DD".
+#' @returns vector
+#' @export
+generate_date_sequence <-
+ function(
+ date_start,
+ date_end,
+ sub_hyphen = TRUE) {
+ dates_original <- seq(
+ as.Date(date_start, format = "%Y-%m-%d"),
+ as.Date(date_end, format = "%Y-%m-%d"),
+ "day"
+ )
+ if (sub_hyphen == TRUE) {
+ dates_sub_hyphen <- gsub("-", "", as.character(dates_original))
+ return(dates_sub_hyphen)
+ } else {
+ return(dates_original)
+ }
+ }
+
+
+#' Check EPA Certificate
+#' @param epa_certificate_path character(1).
+#' Full path of a converted certificate of EPA.
+#' Should end with `.pem`
+#' @param certificate_url character(1).
+#' URL of the original certificate.
+#' @returns A file designated in `epa_certificate_path`
+#' @author Insang Song
+#' @importFrom utils download.file
+#' @export
+download_epa_certificate <-
+ function(
+ epa_certificate_path = "cacert_gaftp_epa.pem",
+ certificate_url =
+ "http://cacerts.digicert.com/DigiCertGlobalG2TLSRSASHA2562020CA1-1.crt"
+ ) {
+ if (!endsWith(epa_certificate_path, ".pem")) {
+ stop("Path should end with .pem .\n")
+ }
+ if (!file.exists(epa_certificate_path)) {
+ download_crt_target <- gsub("pem", "crt", epa_certificate_path)
+ utils::download.file(certificate_url, download_crt_target)
+ system(paste(
+ "openssl x509",
+ "-inform DER",
+ "-outform PEM",
+ "-in",
+ download_crt_target,
+ "-out",
+ epa_certificate_path
+ ))
+ message("Certificate conversion completed.\n")
+ }
+ }
diff --git a/R/download_test_support.R b/R/download_test_support.R
new file mode 100644
index 00000000..2115c165
--- /dev/null
+++ b/R/download_test_support.R
@@ -0,0 +1,117 @@
+###############################################################################
+# Functions used to implement and simplify unit tests on data download
+# functions
+# Date created: 2023-11-30
+# Date modified: 2024-01-21
+###############################################################################
+
+#' Check if sample of download URLs have HTTP Status 200
+#' @param url Download URL to be checked.
+#' @param method httr method to obtain URL (`"HEAD"`` or `"GET"`)
+#' @author Insang Song; Mitchell Manware
+#' @importFrom httr HEAD
+#' @importFrom httr GET
+#' @return logical object
+#' @export
+check_url_status <- function(
+ url,
+ method = c("HEAD", "GET")
+) {
+ method <- match.arg(method)
+ http_status_ok <- 200
+ if (method == "HEAD") {
+ hd <- httr::HEAD(url)
+ } else if (method == "GET") {
+ hd <- httr::GET(url)
+ }
+
+ status <- hd$status_code
+ Sys.sleep(0.5)
+ return(status == http_status_ok)
+}
+
+#' Read commands and convert to character vector
+#' @param commands_path file path with wget/curl commands
+#' @return character vector containing download commands
+#' @importFrom utils read.csv
+#' @export
+read_commands <- function(
+ commands_path = commands_path) {
+ commands <- utils::read.csv(commands_path, header = FALSE)
+ commands <- commands[seq_len(nrow(commands)), ]
+ return(commands)
+}
+
+#' Extract URLs from download commands
+#' @param commands character vector containing download commands
+#' @param position URL position in the vector
+#' @importFrom stringr str_split_i
+#' @return character vector containing download URLs
+#' @export
+extract_urls <- function(
+ commands = commands,
+ position = NULL) {
+ if (is.null(position)) {
+ cat(paste0("URL position in command is not defined.\n"))
+ return(NULL)
+ }
+ url_list <- NULL
+ for (c in seq_along(commands)) {
+ url <- stringr::str_split_i(commands[c], " ", position)
+ url_list <- c(url_list, url)
+ }
+ return(url_list)
+}
+
+#' Sample download URLs and apply `check_url_status` function
+#' @param urls character vector of URLs
+#' @param size number of observations to be sampled from \code{urls}
+#' @param method httr method to obtain URL (`"HEAD"` or `"GET"`)
+#' @return logical vector for URL status = 200
+#' @export
+check_urls <- function(
+ urls = urls,
+ size = NULL,
+ method = c("HEAD", "GET")) {
+ if (is.null(size)) {
+ cat(paste0("URL sample size is not defined.\n"))
+ return(NULL)
+ }
+ if (length(urls) < size) {
+ size <- length(urls)
+ }
+ method <- match.arg(method)
+
+ url_sample <- sample(urls, size, replace = FALSE)
+ url_status <- sapply(url_sample,
+ check_url_status,
+ method = method
+ )
+ return(url_status)
+}
+
+#' Apply download function-specific unit tests
+#' @param directory_to_save directory to test saving
+#' @param directory_to_download directory to test download
+#' @param commands_path file path with download commands
+#' @param url_status logical vector for URL status = 200
+#' @importFrom testthat expect_true
+#' @return NULL
+#' @export
+test_download_functions <- function(
+ directory_to_download = NULL,
+ directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status) {
+ # test that directory_to_download exists
+ # skip test if directory_to_download is default (NULL)
+ if (!(is.null(directory_to_download))) {
+ testthat::expect_true(dir.exists(directory_to_download))
+ }
+ # test that directory_to_save exists
+ testthat::expect_true(dir.exists(directory_to_save))
+ # test that commands_path exists
+ testthat::expect_true(file.exists(commands_path))
+ # test that sample of download URLs all have HTTP status 200
+ testthat::expect_true(all(url_status))
+}
diff --git a/R/manipulate_spacetime_data.R b/R/manipulate_spacetime_data.R
new file mode 100644
index 00000000..975f3ab0
--- /dev/null
+++ b/R/manipulate_spacetime_data.R
@@ -0,0 +1,352 @@
+# nolint start
+#' Convert spatio-temporal object to a datatable with lon, lat, time, predictors columns. It also returns the crs.
+# nolint end
+#' @param stobj object containing space-time data. It can be a data.frame,
+#' a data.table, an sf or sftime, a SpatVector or a SpatRastDataset.
+#' @return a list with a "stdt" a data.table of locations identified by
+#' lat, lon, time columns and "crs_dt" the crs of the data in well-known text
+#' format.
+#' @importFrom data.table as.data.table
+#' @importFrom terra crs
+#' @importFrom sf st_drop_geometry
+#' @importFrom sf st_coordinates
+#' @importFrom data.table melt
+#' @importFrom data.table .SD
+#' @importFrom sf st_crs
+#' @author Eva Marques, Insang Song
+#' @export
+convert_stobj_to_stdt <- function(stobj) {
+ format <- class(stobj)[[1]]
+ names_stcols <- c("lon", "lat")
+
+ if (format == "data.frame" || format == "data.table") {
+ if (any(!(c("lon", "lat", "time") %in% colnames(stobj)))) {
+ stop("Error: stobj does not contain lon, lat, time columns")
+ }
+ stdt <- data.table::as.data.table(stobj)
+ crs_dt <- NA
+ } else if (format == "sf" || format == "sftime") {
+ if (any(!(c("geometry", "time") %in% colnames(stobj)))) {
+ stop("Error: stobj does not contain geometry and time columns")
+ }
+
+ crs_dt <- sf::st_crs(stobj)$wkt
+
+ stobj[, names_stcols] <- sf::st_coordinates(stobj)
+ stobj <- sf::st_drop_geometry(stobj)
+ stdt <- data.table::as.data.table(stobj)
+ } else if (format == "SpatVector") {
+ if (!("time") %in% names(stobj)) {
+ stop("stobj does not contain time column")
+ }
+
+ crs_dt <- terra::crs(stobj)
+ stdf <- as.data.frame(stobj, geom = "XY")
+ names(stdf)[names(stdf) == "x"] <- "lon"
+ names(stdf)[names(stdf) == "y"] <- "lat"
+
+ stdt <- data.table::as.data.table(stdf)
+ } else if (format == "SpatRasterDataset") {
+ crs_dt <- terra::crs(stobj)
+ stdf <- as.data.frame(stobj[1], xy = TRUE)
+ colnames(stdf)[1] <- "lon"
+ colnames(stdf)[2] <- "lat"
+
+ # -- tranform from wide to long format
+ stdf <- stdf |>
+ data.table::as.data.table() |>
+ data.table::melt(
+ measure.vars = names(stdf)[-1:-2],
+ variable.name = "time",
+ value.name = names(stobj)[1]
+ )
+
+ for (var in seq(2, length(names(stobj)))) {
+ # test that the ts is identical to the ts of the 1st variable
+ if (!(identical(names(stobj[var]), names(stobj[1])))) {
+ stop("Error in SpatRastDataset:
+ time series is different for at least
+ 2 variables - or not ordered for one of these.")
+ }
+
+ varname_original <- names(stobj)[var]
+ df_var <- as.data.frame(stobj[var], xy = TRUE)
+ # -- tranform from wide to long format
+ df_var <- df_var |>
+ data.table::as.data.table() |>
+ data.table::melt(
+ measure.vars = names(df_var)[-1:-2],
+ variable.name = "time",
+ value.name = varname_original
+ ) |>
+ as.data.frame()
+ stdf[, varname_original] <- df_var[, 4]
+ }
+ stdt <- data.table::as.data.table(stdf)
+ } else {
+ stop("Error: stobj class not accepted")
+ }
+
+ names_vars <- names(stdt)[!names(stdt) %in% c(names_stcols, "time")]
+ names_sorted <- c(names_stcols, "time", names_vars)
+ stdt <- stdt[, .SD, .SDcols = names_sorted]
+
+ # sort stdt
+ stdt <- data.table::setorderv(stdt, cols = c("lon", "lat", "time"))
+ stdt <- stdt[order(stdt, na.last = TRUE)]
+
+ stdt_result <- list("stdt" = stdt, "crs_stdt" = crs_dt)
+ class(stdt_result) <- c("list", "stdt")
+ return(stdt_result)
+}
+
+#' Boolean to know if an object correspond to a stdtobj
+#'
+#' @param obj an object
+#' @return a boolean to know if obj is from newly created class "stdt"
+#' @author Eva Marques
+#' @export
+is_stdt <- function(obj) {
+ if (!(identical(class(obj), c("list", "stdt")))) {
+ return(FALSE)
+ } else if (!(identical(names(obj), c("stdt", "crs_stdt")))) {
+ return(FALSE)
+ } else if (!(identical(class(obj$stdt)[1], "data.table"))) {
+ return(FALSE)
+ } else if (!(all(c("lon", "lat", "time") %in% colnames(obj$stdt)))) {
+ return(FALSE)
+ } else if (!is.character(obj$crs_stdt)) {
+ return(FALSE)
+ } else {
+ return(TRUE)
+ }
+}
+
+
+#' Convert a stdt to sf/sftime/SpatVector
+#' @param stdt A stdt object
+#' @param class_to character(1). Should be one of
+#' `"sf"`, `"sftime"`, `"SpatRasterDataset"`, or `"SpatVector"`
+#' @return a sf/sftime/SpatRasterDataset/SpatVector
+#' @importFrom sf st_as_sf
+#' @importFrom terra vect
+#' @importFrom terra sds
+#' @author Insang Song
+#' @export
+convert_stdt <- function(
+ stdt,
+ class_to = c("sf", "sftime", "SpatVector", "SpatRasterDataset")) {
+ if (!is_stdt(stdt)) {
+ stop("The input for stdt argument is not an stdt object")
+ }
+ class_to <- match.arg(class_to)
+
+ converted <- switch(class_to,
+ sf = sf::st_as_sf(convert_stdt_sftime(stdt)),
+ sftime = convert_stdt_sftime(stdt),
+ SpatRasterDataset = convert_stdt_spatrastdataset(stdt),
+ SpatVector = convert_stdt_spatvect(stdt)
+ )
+ return(converted)
+}
+
+
+#' Convert a stdt to SpatVector
+#' @param stdt A stdt object
+#' @return a SpatVector
+#' @author Eva Marques
+#' @importFrom terra vect
+#' @export
+convert_stdt_spatvect <- function(stdt) {
+ if (!is_stdt(stdt)) {
+ stop("The input for stdt argument is not an stdt object")
+ }
+ vect_obj <-
+ terra::vect(stdt$stdt,
+ geom = c("lon", "lat"),
+ crs = stdt$crs_stdt,
+ keepgeom = FALSE
+ )
+ return(vect_obj)
+}
+
+
+#' Convert a stdtobj to sftime
+#' @param stdt A stdt object
+#' @return a sftime object
+#' @author Eva Marques
+#' @export
+convert_stdt_sftime <- function(stdt) {
+ if (!is_stdt(stdt)) {
+ stop("The input for stdt argument is not an stdt object")
+ }
+ stdt_stdt <- stdt$stdt
+ stdt_stdt$time <- as.Date(stdt_stdt$time)
+ sftime_obj <-
+ sftime::st_as_sftime(
+ stdt_stdt,
+ coords = c("lon", "lat"),
+ time_column_name = "time",
+ crs = stdt$crs_stdt
+ )
+ return(sftime_obj)
+}
+
+
+#' Convert a stdtobj to SpatRasterDataset
+#'
+#' @param stdt A stdt object
+#' @return a SpatRasterDataset with each raster corresponding to one variable
+#' (layers are the time series)
+#' @author Eva Marques
+#' @importFrom stats reshape
+#' @importFrom terra sds
+#' @export
+convert_stdt_spatrastdataset <- function(stdt) {
+ if (!is_stdt(stdt)) {
+ stop("The input for stdt argument is not an stdt object")
+ }
+ df <- as.data.frame(stdt$stdt)
+ col <- colnames(df)
+ variables <- col[!(col %in% c("lon", "lat", "time"))]
+ rast_list <- list()
+ for (var in variables) {
+ newdf <- stats::reshape(
+ df[, c("lon", "lat", "time", var)],
+ idvar = c("lon", "lat"),
+ timevar = "time",
+ direction = "wide"
+ )
+ colnames(newdf) <- gsub(
+ paste0(var, "."),
+ "",
+ colnames(newdf)
+ )
+
+ var_rast <- terra::rast(newdf, type = "xyz", crs = stdt$crs_stdt)
+ rast_list[[var]] <- var_rast
+ }
+ rastdt_obj <- terra::sds(rast_list)
+ return(rastdt_obj)
+}
+
+#' Create a sf object from a data.table
+#'
+#' @param datatable A data.table object with columns "lat", "lon"
+#' @param crs A character containing the original crs
+#' @author Eva Marques
+#' @importFrom sf st_as_sf
+#' @return an sf object
+dt_to_sf <- function(datatable, crs) {
+ if (!("data.table" %in% class(datatable))) {
+ stop("datatable is not a data.table")
+ }
+ if (!is.character(crs)) {
+ stop("crs is not a character")
+ }
+ if (!("lon" %in% colnames(datatable))) {
+ stop("datatable does not contain lon column")
+ }
+ if (!("lat" %in% colnames(datatable))) {
+ stop("datatable does not contain lat column")
+ }
+
+ data_sf <- sf::st_as_sf(
+ datatable,
+ coords = c("lon", "lat"),
+ remove = FALSE,
+ crs = crs
+ )
+ return(data_sf)
+}
+
+
+#' Create a sftime object from a data.table
+#'
+#' @param datatable A data.table object with columns "lat", "lon", "time"
+#' @param crs A character containing the original crs
+#' @note "time" column in datatable argument should be in date format,
+#' e.g., "2023-01-01", "01/01/2023", etc.
+#' @author Eva Marques
+#' @return an sftime object
+dt_to_sftime <- function(datatable, crs) {
+ if (!("data.table" %in% class(datatable))) {
+ stop("datatable is not a data.table")
+ }
+ if (!is.character(crs)) {
+ stop("crs is not a character")
+ }
+ if (!("lon" %in% colnames(datatable))) {
+ stop("datatable does not contain lon column")
+ }
+ if (!("lat" %in% colnames(datatable))) {
+ stop("datatable does not contain lat column")
+ }
+ if (!("time" %in% colnames(datatable))) {
+ stop("datatable does not contain time column")
+ }
+
+ datatable$date <- as.Date(datatable$time)
+ data_sft <- sftime::st_as_sftime(
+ datatable,
+ coords = c("lon", "lat"),
+ remove = FALSE,
+ crs = crs,
+ time_column_name = "time"
+ )
+ return(data_sft)
+}
+
+
+#' Project coordinates in a datatable from crs_ori to crs_dest
+#'
+#' @param datatable A data.table object with columns "lat", "lon"
+#' @param crs_ori A character containing the original crs of spatial data
+#' @param crs_dest A character containing the destination crs of spatial data
+#' @note This function assumes that users have point geometry.
+#' @author Eva Marques
+#' @importFrom sf st_coordinates
+#' @importFrom sf st_transform
+#' @importFrom sf st_drop_geometry
+#' @importFrom data.table as.data.table
+#' @importFrom data.table merge.data.table
+#' @importFrom methods is
+#' @return same datatable object with "lon", "lat",
+#' "lon_ori", "lat_ori" columns
+project_dt <- function(datatable, crs_ori, crs_dest) {
+ if (!("data.table" %in% class(datatable))) {
+ stop("datatable is not a data.table")
+ }
+ if (!is.character(crs_ori) || !is.character(crs_dest)) {
+ stop("crs are not characters")
+ }
+ if (!("lat" %in% colnames(datatable))) {
+ stop("datatable does not contain lat column")
+ }
+ if (!("lon" %in% colnames(datatable))) {
+ stop("datatable does not contain lon column")
+ }
+
+ loc <- unique(datatable[, c("lon", "lat")])
+ loc_sf <- dt_to_sf(loc, crs_ori)
+ loc_sf <- sf::st_transform(loc_sf, crs_dest)
+ colnames(loc_sf)[colnames(loc_sf) == "lon"] <- "lon_ori"
+ colnames(loc_sf)[colnames(loc_sf) == "lat"] <- "lat_ori"
+ loc_sf_coords <- sf::st_coordinates(loc_sf)
+ loc_sf[["lon"]] <- loc_sf_coords[, 1]
+ loc_sf[["lat"]] <- loc_sf_coords[, 2]
+
+ loc_proj <- sf::st_drop_geometry(loc_sf)
+ loc_proj <- data.table::as.data.table(loc_proj)
+
+ # renaming is only valid within the function
+ colnames(datatable)[colnames(datatable) == "lon"] <- "lon_ori"
+ colnames(datatable)[colnames(datatable) == "lat"] <- "lat_ori"
+ datatable_proj <- merge(
+ datatable,
+ loc_proj,
+ by = c("lon_ori", "lat_ori")
+ )
+
+ return(datatable_proj)
+}
diff --git a/_pkgdown.yml b/_pkgdown.yml
new file mode 100644
index 00000000..31a85d8b
--- /dev/null
+++ b/_pkgdown.yml
@@ -0,0 +1,9 @@
+url: https://spatiotemporal-exposures-and-toxicology.github.io/amadeus
+template:
+ bootstrap: 5
+ bootswatch: minty
+
+navbar:
+ structure:
+ left: [reference, articles, search]
+ right: [github]
diff --git a/inst/extdata/cacert_gaftp_epa.crt b/inst/extdata/cacert_gaftp_epa.crt
new file mode 100644
index 00000000..b2b37160
Binary files /dev/null and b/inst/extdata/cacert_gaftp_epa.crt differ
diff --git a/inst/extdata/cacert_gaftp_epa.pem b/inst/extdata/cacert_gaftp_epa.pem
new file mode 100644
index 00000000..22e48e7f
--- /dev/null
+++ b/inst/extdata/cacert_gaftp_epa.pem
@@ -0,0 +1,28 @@
+-----BEGIN CERTIFICATE-----
+MIIEyDCCA7CgAwIBAgIQDPW9BitWAvR6uFAsI8zwZjANBgkqhkiG9w0BAQsFADBh
+MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
+d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH
+MjAeFw0yMTAzMzAwMDAwMDBaFw0zMTAzMjkyMzU5NTlaMFkxCzAJBgNVBAYTAlVT
+MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEdsb2Jh
+bCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTCCASIwDQYJKoZIhvcNAQEBBQAD
+ggEPADCCAQoCggEBAMz3EGJPprtjb+2QUlbFbSd7ehJWivH0+dbn4Y+9lavyYEEV
+cNsSAPonCrVXOFt9slGTcZUOakGUWzUb+nv6u8W+JDD+Vu/E832X4xT1FE3LpxDy
+FuqrIvAxIhFhaZAmunjZlx/jfWardUSVc8is/+9dCopZQ+GssjoP80j812s3wWPc
+3kbW20X+fSP9kOhRBx5Ro1/tSUZUfyyIxfQTnJcVPAPooTncaQwywa8WV0yUR0J8
+osicfebUTVSvQpmowQTCd5zWSOTOEeAqgJnwQ3DPP3Zr0UxJqyRewg2C/Uaoq2yT
+zGJSQnWS+Jr6Xl6ysGHlHx+5fwmY6D36g39HaaECAwEAAaOCAYIwggF+MBIGA1Ud
+EwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFHSFgMBmx9833s+9KTeqAx2+7c0XMB8G
+A1UdIwQYMBaAFE4iVCAYlebjbuYP+vq5Eu0GF485MA4GA1UdDwEB/wQEAwIBhjAd
+BgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdgYIKwYBBQUHAQEEajBoMCQG
+CCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQAYIKwYBBQUHMAKG
+NGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RH
+Mi5jcnQwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybDMuZGlnaWNlcnQuY29t
+L0RpZ2lDZXJ0R2xvYmFsUm9vdEcyLmNybDA9BgNVHSAENjA0MAsGCWCGSAGG/WwC
+ATAHBgVngQwBATAIBgZngQwBAgEwCAYGZ4EMAQICMAgGBmeBDAECAzANBgkqhkiG
+9w0BAQsFAAOCAQEAkPFwyyiXaZd8dP3A+iZ7U6utzWX9upwGnIrXWkOH7U1MVl+t
+wcW1BSAuWdH/SvWgKtiwla3JLko716f2b4gp/DA/JIS7w7d7kwcsr4drdjPtAFVS
+slme5LnQ89/nD/7d+MS5EHKBCQRfz5eeLjJ1js+aWNJXMX43AYGyZm0pGrFmCW3R
+bpD0ufovARTFXFZkAdl9h6g4U5+LXUZtXMYnhIHUfoyMo5tS58aI7Dd8KvvwVVo4
+chDYABPPTHPbqjc1qCmBaZx2vN4Ye5DUys/vZwP9BFohFrH/6j/f3IL16/RZkiMN
+JCqVJUzKoZHm1Lesh3Sz8W2jmdv51b2EQJ8HmA==
+-----END CERTIFICATE-----
diff --git a/inst/extdata/nlcd_classes.csv b/inst/extdata/nlcd_classes.csv
new file mode 100644
index 00000000..90dd7b9f
--- /dev/null
+++ b/inst/extdata/nlcd_classes.csv
@@ -0,0 +1,17 @@
+"","value","class","names","col"
+"1",0,"Unc","Unclassified","white"
+"2",11,"WTR","Open Water","#476ba1"
+"3",21,"OSD","Developed, Open Space","#decaca"
+"4",22,"LID","Developed, Low Intensity","#d99482"
+"5",23,"MID","Developed, Medium Intensity","#ee0000"
+"6",24,"HID","Developed, High Intensity","#ab0000"
+"7",31,"BRN","Barren Land","#b3aea3"
+"8",41,"DFO","Deciduous Forest","#68ab63"
+"9",42,"EFO","Evergreen Forest","#1c6330"
+"10",43,"MFO","Mixed Forest","#b5ca8f"
+"11",52,"SHB","Shrub/Scrub","#ccba7d"
+"12",71,"GRS","Herbaceous","#e3e3c2"
+"13",81,"PAS","Hay/Pasture","#dcd93d"
+"14",82,"CRP","Cultivated Crops","#ab7028"
+"15",90,"WDW","Woody Wetlands","#bad9eb"
+"16",95,"EHW","Emergent Herbaceous Wetlands","#70a3ba"
diff --git a/inst/extdata/vignette_images/NASA_EarthData_applications.png b/inst/extdata/vignette_images/NASA_EarthData_applications.png
new file mode 100644
index 00000000..160bbdfa
Binary files /dev/null and b/inst/extdata/vignette_images/NASA_EarthData_applications.png differ
diff --git a/inst/extdata/vignette_images/NASA_EarthData_login.png b/inst/extdata/vignette_images/NASA_EarthData_login.png
new file mode 100644
index 00000000..206aff4d
Binary files /dev/null and b/inst/extdata/vignette_images/NASA_EarthData_login.png differ
diff --git a/man/calc_covariates.Rd b/man/calc_covariates.Rd
new file mode 100644
index 00000000..3ae19833
--- /dev/null
+++ b/man/calc_covariates.Rd
@@ -0,0 +1,47 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates.R
+\name{calc_covariates}
+\alias{calc_covariates}
+\title{Calculate covariates}
+\usage{
+calc_covariates(
+ covariate = c("modis", "koppen-geiger", "koeppen-geiger", "koppen", "koeppen", "geos",
+ "dummies", "gmted", "roads", "sedac_groads", "nlcd", "tri", "ncep", "aadt",
+ "ecoregions", "ecoregion"),
+ path,
+ sites,
+ id_col = "site_id",
+ ...
+)
+}
+\arguments{
+\item{covariate}{character(1). Covariate type.}
+
+\item{path}{character. Single or multiple path strings.}
+
+\item{sites}{sf/SpatVector. Unique sites. Should include
+a unique identifier field named \code{id_col}}
+
+\item{id_col}{character(1). Name of unique identifier.
+Default is \code{"site_id"}.}
+
+\item{...}{Arguments passed to each covariate calculation
+function.}
+}
+\value{
+Calculated covariates. Mainly data.frame object.
+}
+\description{
+Calculate covariates
+}
+\seealso{
+\itemize{
+\item \link{calc_modis}: \code{"modis"}, \code{"MODIS"}
+\item \link{calc_koppen_geiger}: \code{"koppen-geiger"}, \code{"koeppen-geiger"}, \code{"koppen"},
+\item \link{calc_ecoregion}: \code{"ecoregion"}, \code{"ecoregions"}
+\item \link{calc_temporal_dummies}: \code{"dummies"}
+}
+}
+\author{
+Insang Song
+}
diff --git a/man/calc_ecoregion.Rd b/man/calc_ecoregion.Rd
new file mode 100644
index 00000000..1aa460ce
--- /dev/null
+++ b/man/calc_ecoregion.Rd
@@ -0,0 +1,33 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates.R
+\name{calc_ecoregion}
+\alias{calc_ecoregion}
+\title{Calculate EPA Ecoregions level 2/3 binary variables}
+\usage{
+calc_ecoregion(
+ path = "./input/data/ecoregions/raw/us_eco_l3_state_boundaries.shp",
+ sites,
+ id_col = "site_id"
+)
+}
+\arguments{
+\item{path}{character(1). Path to Ecoregion Shapefiles}
+
+\item{sites}{sf/SpatVector. Unique sites. Should include
+a unique identifier field named \code{id_col}}
+
+\item{id_col}{character(1). Name of unique identifier.}
+}
+\value{
+a data.frame object with dummy variables and attributes of:
+\itemize{
+\item \code{attr(., "ecoregion2_code")}: Ecoregion lv.2 code and key
+\item \code{attr(., "ecoregion3_code")}: Ecoregion lv.3 code and key
+}
+}
+\description{
+Calculate EPA Ecoregions level 2/3 binary variables
+}
+\author{
+Insang Song
+}
diff --git a/man/calc_koppen_geiger.Rd b/man/calc_koppen_geiger.Rd
new file mode 100644
index 00000000..4d590eef
--- /dev/null
+++ b/man/calc_koppen_geiger.Rd
@@ -0,0 +1,30 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates.R
+\name{calc_koppen_geiger}
+\alias{calc_koppen_geiger}
+\title{Calculate Koeppen-Geiger climate zone binary variables}
+\usage{
+calc_koppen_geiger(
+ path = "./input/koppen_geiger/raw/Beck_KG_V1_present_0p0083.tif",
+ sites,
+ id_col = "site_id"
+)
+}
+\arguments{
+\item{path}{character(1). Path to Koppen-Geiger
+climate zone raster file}
+
+\item{sites}{sf/SpatVector. Unique sites. Should include
+a unique identifier field named \code{id_col}}
+
+\item{id_col}{character(1). Name of unique identifier.}
+}
+\value{
+a data.frame object
+}
+\description{
+Calculate Koeppen-Geiger climate zone binary variables
+}
+\author{
+Insang Song
+}
diff --git a/man/calc_modis.Rd b/man/calc_modis.Rd
new file mode 100644
index 00000000..527d17c8
--- /dev/null
+++ b/man/calc_modis.Rd
@@ -0,0 +1,83 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates.R
+\name{calc_modis}
+\alias{calc_modis}
+\title{Calculate MODIS product covariates in multiple CPU threads}
+\usage{
+calc_modis(
+ path,
+ product = c("MOD11A1", "MOD13A2", "MOD06_L2", "VNP46A2", "MOD09GA", "MCD19A2"),
+ sites,
+ id_col = "site_id",
+ name_covariates,
+ radius = c(0L, 1000L, 10000L, 50000L),
+ subdataset = NULL,
+ fun_summary = "mean",
+ nthreads = floor(length(parallelly::availableWorkers())/2),
+ package_list_add = NULL,
+ export_list_add = NULL
+)
+}
+\arguments{
+\item{path}{character. List of HDF files.}
+
+\item{product}{character(1). MODIS product. Should be one of
+\code{c("MOD11A1", "MOD13A2", "MOD06_L2", "VNP46A2", "MOD09GA", "MCD19A2")}}
+
+\item{sites}{sf object. Unique sites where covariates
+will be calculated.}
+
+\item{id_col}{character(1). Site identifier. Default is \code{"site_id"}}
+
+\item{name_covariates}{character. Name header of covariates.
+e.g., \code{"MOD_NDVIF_0_"}.
+The calculated covariate names will have a form of
+'{name_covariates}{zero-padded buffer radius in meters}',
+e.g., 'MOD_NDVIF_0_50000' where 50 km radius circular buffer
+was used to calculate mean NDVI value.}
+
+\item{radius}{numeric. Radii to calculate covariates.
+Default is \code{c(0, 1000, 10000, 50000)}.}
+
+\item{subdataset}{Index or search pattern of subdataset.
+Pattern is not accepted when product is \code{"VNP46A2"} or
+\code{"MOD06_L2"}}
+
+\item{fun_summary}{character or function. Function to summarize
+extracted raster values.}
+
+\item{nthreads}{integer(1). Number of threads to be used
+to calculate covariates.}
+
+\item{package_list_add}{character. A vector with package names to load
+these in each thread. Note that \code{sf}, \code{terra},
+\code{exactextractr}, \code{doParallel}, \code{parallelly},
+and \code{dplyr}
+are the default packages to be loaded.}
+
+\item{export_list_add}{character. A vector with object names to export
+to each thread. It should be minimized to spare memory.}
+}
+\description{
+calc_modis essentially runs \code{modis_worker} function
+in each thread (subprocess). Based on daily resolution, each day's workload
+will be distributed to each thread. With \code{product} argument,
+the files are processed by a customized function where the unique structure
+and/or characteristics of the products are considered. \code{nthreads}
+argument should be carefully selected in consideration of the machine's
+CPU and memory capacities as products have their own memory pressure.
+Overall, this function and dependent routines assume that the file system
+can handle concurrent access to the (network) disk by multiple processes.
+File system characteristics, package versions, and hardware settings/
+specification can affect the processing efficiency.
+
+sites should be sf object as it is exportable to
+parallel workers.
+}
+\note{
+See details for setting parallelization
+\code{\link[foreach]{foreach}},
+\code{\link[parallelly]{makeClusterPSOCK}},
+\code{\link[parallelly]{availableCores}},
+\code{\link[doParallel]{registerDoParallel}}
+}
diff --git a/man/calc_nei.Rd b/man/calc_nei.Rd
new file mode 100644
index 00000000..f7815f42
--- /dev/null
+++ b/man/calc_nei.Rd
@@ -0,0 +1,44 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates.R
+\name{calc_nei}
+\alias{calc_nei}
+\title{Calculate National Emission Inventory (NEI) covariates}
+\usage{
+calc_nei(
+ path = "./input/nei/",
+ sites,
+ id_col = "site_id",
+ year = 2017,
+ county_shp = NULL,
+ sites_epsg = "EPSG:4326"
+)
+}
+\arguments{
+\item{path}{character(1). Path to the directory with NEI CSV files}
+
+\item{sites}{stdt/sf/SpatVector/data.frame. Unique sites.
+See \code{\link{convert_stobj_to_stdt}} for details of \code{stdt}}
+
+\item{id_col}{character(1). Unique site identifier column name.
+Default is \code{"site_id"}. It is no more than a placeholder
+in this function}
+
+\item{year}{integer(1). Data year.
+Currently only accepts \code{c(2017, 2020)}}
+
+\item{county_shp}{character(1). Path to county boundary file.}
+
+\item{sites_epsg}{character(1). Coordinate system of sites.}
+}
+\value{
+A data.frame object.
+}
+\description{
+NEI data comprises multiple csv files where emissions of
+50+ pollutants are recorded at county level. With raw data files,
+this function will join a combined table of NEI data and county
+boundary, then perform a spatial join to the sites.
+}
+\author{
+Insang Song, Ranadeep Daw
+}
diff --git a/man/calc_nlcd_ratio.Rd b/man/calc_nlcd_ratio.Rd
new file mode 100644
index 00000000..53df91e5
--- /dev/null
+++ b/man/calc_nlcd_ratio.Rd
@@ -0,0 +1,21 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates.R
+\name{calc_nlcd_ratio}
+\alias{calc_nlcd_ratio}
+\title{Compute land cover classes ratio in circle buffers around points}
+\usage{
+calc_nlcd_ratio(path, sites, radius = 1000, year = 2021)
+}
+\arguments{
+\item{path}{character giving nlcd data path}
+
+\item{sites}{terra::SpatVector of points geometry}
+
+\item{radius}{numeric (non-negative) giving the
+radius of buffer around points}
+
+\item{year}{numeric giving the year of NLCD data used}
+}
+\description{
+Compute land cover classes ratio in circle buffers around points
+}
diff --git a/man/calc_temporal_dummies.Rd b/man/calc_temporal_dummies.Rd
new file mode 100644
index 00000000..e017de84
--- /dev/null
+++ b/man/calc_temporal_dummies.Rd
@@ -0,0 +1,31 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates.R
+\name{calc_temporal_dummies}
+\alias{calc_temporal_dummies}
+\title{Calculate temporal dummy variables}
+\usage{
+calc_temporal_dummies(
+ sites,
+ id_col = "site_id",
+ domain_year = seq(2018L, 2022L)
+)
+}
+\arguments{
+\item{sites}{data.frame with a temporal field named \code{"time"}
+see \code{\link{convert_stobj_to_stdt}}}
+
+\item{id_col}{character(1). Unique site identifier column name.
+Default is \code{"site_id"}.}
+
+\item{domain_year}{integer. Year domain to dummify.
+Default is \code{seq(2018L, 2022L)}}
+}
+\value{
+data.frame with year, month, and weekday indicators.
+}
+\description{
+Calculate temporal dummy variables
+}
+\author{
+Insang Song
+}
diff --git a/man/calc_tri.Rd b/man/calc_tri.Rd
new file mode 100644
index 00000000..7a53f3c1
--- /dev/null
+++ b/man/calc_tri.Rd
@@ -0,0 +1,41 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates.R
+\name{calc_tri}
+\alias{calc_tri}
+\title{Calculate TRI covariates}
+\usage{
+calc_tri(
+ path = "./input/tri/",
+ sites,
+ id_col = "site_id",
+ domain_year = seq(2018L, 2022L),
+ radius = c(1000L, 10000L, 50000L),
+ sites_epsg = "EPSG:4326"
+)
+}
+\arguments{
+\item{path}{character(1). Path to the directory with TRI CSV files}
+
+\item{sites}{stdt/sf/SpatVector/data.frame. Unique sites
+see \code{\link{convert_stobj_to_stdt}}}
+
+\item{id_col}{character(1). Unique site identifier column name.
+Default is \code{"site_id"}.}
+
+\item{domain_year}{integer. Year domain to dummify.
+Default is \code{seq(2018L, 2022L)}}
+
+\item{radius}{Circular buffer radius.
+Default is \code{c(1000, 10000, 50000)} (meters)}
+
+\item{sites_epsg}{character(1). Coordinate system of sites.}
+}
+\value{
+A data.frame object.
+}
+\description{
+Calculate TRI covariates
+}
+\author{
+Insang Song
+}
diff --git a/man/check_for_null_parameters.Rd b/man/check_for_null_parameters.Rd
new file mode 100644
index 00000000..eb934ca5
--- /dev/null
+++ b/man/check_for_null_parameters.Rd
@@ -0,0 +1,15 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{check_for_null_parameters}
+\alias{check_for_null_parameters}
+\title{Check for null arguments}
+\usage{
+check_for_null_parameters(parameters)
+}
+\arguments{
+\item{parameters}{parameters passed to function (called by
+\code{mget(ls())}.)}
+}
+\description{
+Check for null arguments
+}
diff --git a/man/check_url_status.Rd b/man/check_url_status.Rd
new file mode 100644
index 00000000..01e054c2
--- /dev/null
+++ b/man/check_url_status.Rd
@@ -0,0 +1,22 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_test_support.R
+\name{check_url_status}
+\alias{check_url_status}
+\title{Check if sample of download URLs have HTTP Status 200}
+\usage{
+check_url_status(url, method = c("HEAD", "GET"))
+}
+\arguments{
+\item{url}{Download URL to be checked.}
+
+\item{method}{httr method to obtain URL (\verb{"HEAD"`` or }"GET"`)}
+}
+\value{
+logical object
+}
+\description{
+Check if sample of download URLs have HTTP Status 200
+}
+\author{
+Insang Song; Mitchell Manware
+}
diff --git a/man/check_urls.Rd b/man/check_urls.Rd
new file mode 100644
index 00000000..3540f2ac
--- /dev/null
+++ b/man/check_urls.Rd
@@ -0,0 +1,21 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_test_support.R
+\name{check_urls}
+\alias{check_urls}
+\title{Sample download URLs and apply \code{check_url_status} function}
+\usage{
+check_urls(urls = urls, size = NULL, method = c("HEAD", "GET"))
+}
+\arguments{
+\item{urls}{character vector of URLs}
+
+\item{size}{number of observations to be sampled from \code{urls}}
+
+\item{method}{httr method to obtain URL (\code{"HEAD"} or \code{"GET"})}
+}
+\value{
+logical vector for URL status = 200
+}
+\description{
+Sample download URLs and apply \code{check_url_status} function
+}
diff --git a/man/convert_stdt.Rd b/man/convert_stdt.Rd
new file mode 100644
index 00000000..2a421e3d
--- /dev/null
+++ b/man/convert_stdt.Rd
@@ -0,0 +1,26 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/manipulate_spacetime_data.R
+\name{convert_stdt}
+\alias{convert_stdt}
+\title{Convert a stdt to sf/sftime/SpatVector}
+\usage{
+convert_stdt(
+ stdt,
+ class_to = c("sf", "sftime", "SpatVector", "SpatRasterDataset")
+)
+}
+\arguments{
+\item{stdt}{A stdt object}
+
+\item{class_to}{character(1). Should be one of
+\code{"sf"}, \code{"sftime"}, \code{"SpatRasterDataset"}, or \code{"SpatVector"}}
+}
+\value{
+a sf/sftime/SpatRasterDataset/SpatVector
+}
+\description{
+Convert a stdt to sf/sftime/SpatVector
+}
+\author{
+Insang Song
+}
diff --git a/man/convert_stdt_sftime.Rd b/man/convert_stdt_sftime.Rd
new file mode 100644
index 00000000..9a450147
--- /dev/null
+++ b/man/convert_stdt_sftime.Rd
@@ -0,0 +1,20 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/manipulate_spacetime_data.R
+\name{convert_stdt_sftime}
+\alias{convert_stdt_sftime}
+\title{Convert a stdtobj to sftime}
+\usage{
+convert_stdt_sftime(stdt)
+}
+\arguments{
+\item{stdt}{A stdt object}
+}
+\value{
+a sftime object
+}
+\description{
+Convert a stdtobj to sftime
+}
+\author{
+Eva Marques
+}
diff --git a/man/convert_stdt_spatrastdataset.Rd b/man/convert_stdt_spatrastdataset.Rd
new file mode 100644
index 00000000..fa62d98e
--- /dev/null
+++ b/man/convert_stdt_spatrastdataset.Rd
@@ -0,0 +1,21 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/manipulate_spacetime_data.R
+\name{convert_stdt_spatrastdataset}
+\alias{convert_stdt_spatrastdataset}
+\title{Convert a stdtobj to SpatRasterDataset}
+\usage{
+convert_stdt_spatrastdataset(stdt)
+}
+\arguments{
+\item{stdt}{A stdt object}
+}
+\value{
+a SpatRasterDataset with each raster corresponding to one variable
+(layers are the time series)
+}
+\description{
+Convert a stdtobj to SpatRasterDataset
+}
+\author{
+Eva Marques
+}
diff --git a/man/convert_stdt_spatvect.Rd b/man/convert_stdt_spatvect.Rd
new file mode 100644
index 00000000..e2207403
--- /dev/null
+++ b/man/convert_stdt_spatvect.Rd
@@ -0,0 +1,20 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/manipulate_spacetime_data.R
+\name{convert_stdt_spatvect}
+\alias{convert_stdt_spatvect}
+\title{Convert a stdt to SpatVector}
+\usage{
+convert_stdt_spatvect(stdt)
+}
+\arguments{
+\item{stdt}{A stdt object}
+}
+\value{
+a SpatVector
+}
+\description{
+Convert a stdt to SpatVector
+}
+\author{
+Eva Marques
+}
diff --git a/man/convert_stobj_to_stdt.Rd b/man/convert_stobj_to_stdt.Rd
new file mode 100644
index 00000000..e38ce2e5
--- /dev/null
+++ b/man/convert_stobj_to_stdt.Rd
@@ -0,0 +1,23 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/manipulate_spacetime_data.R
+\name{convert_stobj_to_stdt}
+\alias{convert_stobj_to_stdt}
+\title{Convert spatio-temporal object to a datatable with lon, lat, time, predictors columns. It also returns the crs.}
+\usage{
+convert_stobj_to_stdt(stobj)
+}
+\arguments{
+\item{stobj}{object containing space-time data. It can be a data.frame,
+a data.table, an sf or sftime, a SpatVector or a SpatRastDataset.}
+}
+\value{
+a list with a "stdt" a data.table of locations identified by
+lat, lon, time columns and "crs_dt" the crs of the data in well-known text
+format.
+}
+\description{
+Convert spatio-temporal object to a datatable with lon, lat, time, predictors columns. It also returns the crs.
+}
+\author{
+Eva Marques, Insang Song
+}
diff --git a/man/download_aqs_data.Rd b/man/download_aqs_data.Rd
new file mode 100644
index 00000000..78a32bd9
--- /dev/null
+++ b/man/download_aqs_data.Rd
@@ -0,0 +1,73 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_aqs_data}
+\alias{download_aqs_data}
+\title{Download daily data from AQS datamart}
+\usage{
+download_aqs_data(
+ parameter_code = 88101,
+ year_start = 2018,
+ year_end = 2022,
+ resolution_temporal = "daily",
+ directory_to_download = "./input/aqs/",
+ directory_to_save = "./input/aqs/",
+ url_aqs_download = "https://aqs.epa.gov/aqsweb/airdata/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{parameter_code}{integer(1). length of 5.
+EPA pollutant parameter code. For details, please refer to
+\href{https://aqs.epa.gov/aqsweb/documents/codetables/parameters.html}{AQS parameter codes}}
+
+\item{year_start}{integer(1). length of 4.
+Start year for downloading data.}
+
+\item{year_end}{integer(1). length of 4.
+End year for downloading data.}
+
+\item{resolution_temporal}{character(1).
+Name of column containing POC values.
+Currently, no value other than \code{"daily"} works.}
+
+\item{directory_to_download}{character(1).
+Directory to download zip files from AQS data mart.}
+
+\item{directory_to_save}{character(1).
+Directory to decompress zip files.}
+
+\item{url_aqs_download}{character(1).
+URL to the AQS pre-generated datasets.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{unzip}{logical(1). Unzip zip files. Default \code{TRUE}.}
+
+\item{remove_zip}{logical(1). Remove zip file from directory_to_download.
+Default \code{FALSE}.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands. Default is FALSE.}
+}
+\value{
+NULL; Separate comma-separated value (CSV) files of
+monitors and the daily representative values
+will be stored in \code{directory_to_save}.
+}
+\description{
+Download daily data from AQS datamart
+}
+\author{
+Mariana Kassien, Insang Song, Mitchell Manware
+}
diff --git a/man/download_data.Rd b/man/download_data.Rd
new file mode 100644
index 00000000..23adadde
--- /dev/null
+++ b/man/download_data.Rd
@@ -0,0 +1,60 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_data}
+\alias{download_data}
+\title{Download raw data from sources}
+\usage{
+download_data(
+ dataset_name = c("aqs", "ecoregion", "geos", "gmted", "koppen", "koppengeiger",
+ "merra2", "merra", "narr_monolevel", "modis", "narr_p_levels", "nlcd", "noaa",
+ "sedac_groads", "sedac_population", "groads", "population", "plevels", "p_levels",
+ "monolevel", "hms", "smoke", "tri", "nei"),
+ directory_to_save = NULL,
+ data_download_acknowledgement = FALSE,
+ ...
+)
+}
+\arguments{
+\item{dataset_name}{character(1). Dataset to download.}
+
+\item{directory_to_save}{character(1). Directory to save / unzip
+(if zip files are downloaded) data.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{...}{Arguments passed to each download function.}
+}
+\description{
+Download raw data from sources
+}
+\note{
+\itemize{
+\item All download function names are in \code{download_*_data} formats
+}
+}
+\seealso{
+For details of each download function per dataset,
+Please refer to:
+\itemize{
+\item \link{download_aqs_data}: "aqs", "AQS"
+\item \link{download_ecoregion_data}: "ecoregion"
+\item \link{download_geos_cf_data}: "geos"
+\item \link{download_gmted_data}: "gmted", "GMTED"
+\item \link{download_koppen_geiger_data}: "koppen", "koppengeiger"
+\item \link{download_merra2_data}: "merra2", "merra", "MERRA", "MERRA2"
+\item \link{download_narr_monolevel_data}: "narr_monolevel", "monolevel"
+\item \link{download_narr_p_levels_data}: "narr_p_levels", "p_levels", "plevels"
+\item \link{download_nlcd_data}: "nlcd", "NLCD"
+\item \link{download_noaa_hms_smoke_data}: "noaa", "smoke", "hms"
+\item \link{download_sedac_groads_data}: "sedac_groads", "groads"
+\item \link{download_sedac_population_data}: "sedac_population", "population"
+\item \link{download_modis_data}: "modis", "MODIS"
+\item \link{download_tri_data}: "tri", "TRI"
+\item \link{download_nei_data}: "nei", "NEI"
+}
+}
+\author{
+Insang Song
+}
diff --git a/man/download_ecoregion_data.Rd b/man/download_ecoregion_data.Rd
new file mode 100644
index 00000000..390d6971
--- /dev/null
+++ b/man/download_ecoregion_data.Rd
@@ -0,0 +1,72 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_ecoregion_data}
+\alias{download_ecoregion_data}
+\title{Download Ecoregion Shapefiles from EPA}
+\usage{
+download_ecoregion_data(
+ directory_to_download = "./input/ecoregions/",
+ directory_to_save = "./input/ecoregions/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = TRUE,
+ epa_certificate_path = system.file("extdata/cacert_gaftp_epa.pem", package = "amadeus"),
+ certificate_url =
+ "http://cacerts.digicert.com/DigiCertGlobalG2TLSRSASHA2562020CA1-1.crt"
+)
+}
+\arguments{
+\item{directory_to_download}{character(1). Directory to download zip file
+of Ecoregion level 3 shapefiles}
+
+\item{directory_to_save}{character(1). Directory to decompress zip files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{unzip}{logical(1). Unzip zip files. Default \code{TRUE}.}
+
+\item{remove_zip}{logical(1). Remove zip file from directory_to_download.
+Default \code{FALSE}.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+
+\item{epa_certificate_path}{character(1). Path to the certificate file
+for EPA DataCommons. Default is
+'extdata/cacert_gaftp_epa.pem' under the package installation path.}
+
+\item{certificate_url}{character(1). URL to certificate file. See notes for
+details.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_ecoregion_data()} function accesses and downloads
+Ecoregions level 3 data, where all pieces of information in the higher
+levels are included.
+}
+\note{
+For EPA Data Commons certificate errors, follow the steps below:
+\enumerate{
+\item Click Lock icon in the address bar at https://gaftp.epa.gov
+\item Click Show Certificate
+\item Access Details
+\item Find URL with *.crt extension
+Currently we bundle the pre-downloaded crt and its PEM (which is accepted
+in wget command) file in ./inst/extdata. The instruction above is for
+certificate updates in the future.
+}
+}
+\author{
+Insang Song
+}
diff --git a/man/download_epa_certificate.Rd b/man/download_epa_certificate.Rd
new file mode 100644
index 00000000..0521c577
--- /dev/null
+++ b/man/download_epa_certificate.Rd
@@ -0,0 +1,29 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{download_epa_certificate}
+\alias{download_epa_certificate}
+\title{Check EPA Certificate}
+\usage{
+download_epa_certificate(
+ epa_certificate_path = "cacert_gaftp_epa.pem",
+ certificate_url =
+ "http://cacerts.digicert.com/DigiCertGlobalG2TLSRSASHA2562020CA1-1.crt"
+)
+}
+\arguments{
+\item{epa_certificate_path}{character(1).
+Full path of a converted certificate of EPA.
+Should end with \code{.pem}}
+
+\item{certificate_url}{character(1).
+URL of the original certificate.}
+}
+\value{
+A file designated in \code{epa_certificate_path}
+}
+\description{
+Check EPA Certificate
+}
+\author{
+Insang Song
+}
diff --git a/man/download_geos_cf_data.Rd b/man/download_geos_cf_data.Rd
new file mode 100644
index 00000000..41313cfd
--- /dev/null
+++ b/man/download_geos_cf_data.Rd
@@ -0,0 +1,51 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_geos_cf_data}
+\alias{download_geos_cf_data}
+\title{Download atmospheric composition data from the NASA Global Earth Observing System (GEOS) model.}
+\usage{
+download_geos_cf_data(
+ date_start = "2023-09-01",
+ date_end = "2023-09-01",
+ collection = c("aqc_tavg_1hr_g1440x721_v1", "chm_tavg_1hr_g1440x721_v1",
+ "met_tavg_1hr_g1440x721_x1", "xgc_tavg_1hr_g1440x721_x1",
+ "chm_inst_1hr_g1440x721_p23", "met_inst_1hr_g1440x721_p23"),
+ directory_to_save = "./input/data/geos_cf/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{date_start}{character(1). length of 10. Start date for downloading
+data. Format YYYY-MM-DD (ex. September 1, 2023 = \code{"2023-09-01"}).}
+
+\item{date_end}{character(1). length of 10. End date for downloading data.
+Format YYYY-MM-DD (ex. September 1, 2023 = \code{"2023-09-01"}).}
+
+\item{collection}{character(1). GEOS-CF data collection file name.}
+
+\item{directory_to_save}{character(1). Directory to save data.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_goes_cf_data()} function accesses and downloads various
+atmospheric composition collections from the \href{https://gmao.gsfc.nasa.gov/GEOS_systems/}{NASA Global Earth Observing System (GEOS) model}.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_gmted_data.Rd b/man/download_gmted_data.Rd
new file mode 100644
index 00000000..5cb60bc4
--- /dev/null
+++ b/man/download_gmted_data.Rd
@@ -0,0 +1,60 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_gmted_data}
+\alias{download_gmted_data}
+\title{Download global elevation data from the Global Multi-resolution Terrain Elevation Data (GMTED2010).}
+\usage{
+download_gmted_data(
+ statistic = c("Breakline Emphasis", "Systematic Subsample", "Median Statistic",
+ "Minimum Statistic", "Mean Statistic", "Maximum Statistic",
+ "Standard Deviation Statistic"),
+ resolution = c("7.5 arc-seconds", "15 arc-seconds", "30 arc-seconds"),
+ directory_to_download = "./input/gmted/",
+ directory_to_save = "./input/gmted/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{statistic}{character(1). Available statistics include \code{"Breakline Emphasis"}, \code{"Systematic Subsample"}, \code{"Median Statistic"},
+\code{"Minimum Statistic"}, \code{"Mean Statistic"}, \code{"Maximum Statistic"}, and
+\code{"Standard Deviation Statistic"}.}
+
+\item{resolution}{character(1). Available resolutions include \code{"7.5 arc-seconds"}, \code{"15 arc-seconds"}, and \code{"30 arc-seconds"}.}
+
+\item{directory_to_download}{character(1). Directory to download zip files
+from Global Multi-resolution Terrain Elevation Data (GMTED2010).}
+
+\item{directory_to_save}{character(1). Directory to decompress zip files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{unzip}{logical(1). Unzip zip files. Default is \code{TRUE}.}
+
+\item{remove_zip}{logical(1). Remove zip file from directory_to_download.
+Default is \code{FALSE}.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands. Default is FALSE.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_gmted_data()} function acesses and downloads Global
+Multi-resolution Terrain Elevation Data (GMTED2010) from
+\href{https://www.usgs.gov/coastal-changes-and-impacts/gmted2010}{U.S. Geological Survey and National Geospatial-Intelligence Agency}.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_koppen_geiger_data.Rd b/man/download_koppen_geiger_data.Rd
new file mode 100644
index 00000000..c145c2f2
--- /dev/null
+++ b/man/download_koppen_geiger_data.Rd
@@ -0,0 +1,62 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_koppen_geiger_data}
+\alias{download_koppen_geiger_data}
+\title{Download climate classification data from the present and future Köppen-Geiger climate classification maps.}
+\usage{
+download_koppen_geiger_data(
+ time_period = c("Present", "Future"),
+ data_resolution = c("0.0083", "0.083", "0.5"),
+ directory_to_download = "./input/koppen_geiger/",
+ directory_to_save = "./input/koppen_geiger/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{time_period}{character(1). Available times are \code{"Present"} (1980-2016)
+and \code{"Future"} (2071-2100). ("Future" classifications are based on scenario
+RCP8.5).}
+
+\item{data_resolution}{character(1). Available resolutions are \code{"0.0083"}
+degrees (approx. 1 km), \code{"0.083"} degrees (approx. 10 km), and
+\code{"0.5"} degrees (approx. 50 km).}
+
+\item{directory_to_download}{character(1). Directory to download zip files
+from Present and future Köppen-Geiger climate classification maps at 1-km
+resolution.}
+
+\item{directory_to_save}{character(1). Directory to decompress zip files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{unzip}{logical(1). Unzip zip files. Default is \code{TRUE}.}
+
+\item{remove_zip}{logical(1). Remove zip files from directory_to_download.
+Default is \code{FALSE}.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_koppen_geiger_data()} function accesses and downloads
+climate classification data from the Present and future
+Köppen-Geiger climate classification maps at
+1-km resolution (\href{https://www.nature.com/articles/sdata2018214}{link for article}; \href{https://figshare.com/articles/dataset/Present_and_future_K_ppen-Geiger_climate_classification_maps_at_1-km_resolution/6396959/2}{link for data}).
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_merra2_data.Rd b/man/download_merra2_data.Rd
new file mode 100644
index 00000000..e028b3df
--- /dev/null
+++ b/man/download_merra2_data.Rd
@@ -0,0 +1,59 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_merra2_data}
+\alias{download_merra2_data}
+\title{Download meteorological and atmospheric data from the Modern-Era Retrospective analysis for Research and Applications, Version 2 (MERRA-2) model.}
+\usage{
+download_merra2_data(
+ date_start = "2023-09-01",
+ date_end = "2023-09-01",
+ collection = c("inst1_2d_asm_Nx", "inst1_2d_int_Nx", "inst1_2d_lfo_Nx",
+ "inst3_3d_asm_Np", "inst3_3d_aer_Nv", "inst3_3d_asm_Nv", "inst3_3d_chm_Nv",
+ "inst3_3d_gas_Nv", "inst3_2d_gas_Nx", "inst6_3d_ana_Np", "inst6_3d_ana_Nv",
+ "statD_2d_slv_Nx", "tavg1_2d_adg_Nx", "tavg1_2d_aer_Nx", "tavg1_2d_chm_Nx",
+ "tavg1_2d_csp_Nx", "tavg1_2d_flx_Nx", "tavg1_2d_int_Nx", "tavg1_2d_lfo_Nx",
+ "tavg1_2d_lnd_Nx", "tavg1_2d_ocn_Nx", "tavg1_2d_rad_Nx", "tavg1_2d_slv_Nx",
+ "tavg3_3d_mst_Ne", "tavg3_3d_trb_Ne", "tavg3_3d_nav_Ne", "tavg3_3d_cld_Np",
+
+ "tavg3_3d_mst_Np", "tavg3_3d_rad_Np", "tavg3_3d_tdt_Np", "tavg3_3d_trb_Np",
+ "tavg3_3d_udt_Np", "tavg3_3d_odt_Np", "tavg3_3d_qdt_Np", "tavg3_3d_asm_Nv",
+ "tavg3_3d_cld_Nv", "tavg3_3d_mst_Nv", "tavg3_3d_rad_Nv", "tavg3_2d_glc_Nx"),
+ directory_to_save = "./input/merra2/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{date_start}{character(1). length of 10. Start date for downloading
+data. Format YYYY-MM-DD (ex. September 1, 2023 is \code{"2023-09-01"}).}
+
+\item{date_end}{character(1). length of 10. End date for downloading data.
+Format YYYY-MM-DD (ex. September 1, 2023 is \code{"2023-09-01"}).}
+
+\item{collection}{character(1). MERRA-2 data collection file name.}
+
+\item{directory_to_save}{character(1). Directory to save data.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_merra2_data()} function accesses and downloads various
+meteorological and atmospheric collections from the \href{https://gmao.gsfc.nasa.gov/reanalysis/MERRA-2/}{Modern-Era Retrospective analysis for Research and Applications, Version 2 (MERRA-2)}.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_modis_data.Rd b/man/download_modis_data.Rd
new file mode 100644
index 00000000..4cf6368e
--- /dev/null
+++ b/man/download_modis_data.Rd
@@ -0,0 +1,78 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_modis_data}
+\alias{download_modis_data}
+\title{Download MODIS product files}
+\usage{
+download_modis_data(
+ date_start = "2023-09-01",
+ date_end = "2023-09-01",
+ product = c("MOD09GA", "MOD11A1", "MOD06_L2", "MCD19A2", "MOD13A2", "VNP46A2"),
+ version = "61",
+ horizontal_tiles = c(7, 13),
+ vertical_tiles = c(3, 6),
+ nasa_earth_data_token = NULL,
+ directory_to_save = "./input/modis/raw/",
+ data_download_acknowledgement = FALSE,
+ mod06_links = NULL,
+ download = TRUE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{date_start}{character(1). length of 10. Start date for downloading
+data. Format YYYY-MM-DD (ex. September 1, 2023 is \code{"2023-09-01"}).}
+
+\item{date_end}{character(1). length of 10. End date for downloading data.
+Format YYYY-MM-DD (ex. September 1, 2023 is \code{"2023-09-01"}).}
+
+\item{product}{character(1).
+One of \code{c("MOD09GA", "MOD11A1", "MOD06_L2", "MCD19A2", "MOD13A2", "VNP46A2")}}
+
+\item{version}{character(1). Default is \code{"61"}, meaning v061.}
+
+\item{horizontal_tiles}{integer(2). Horizontal tile numbers
+\code{c({start}, {end})}. Default is \code{c(7, 13)}.}
+
+\item{vertical_tiles}{integer(2). Vertical tile numbers
+\code{c({start}, {end})}. Default is \code{c(3, 6)}.}
+
+\item{nasa_earth_data_token}{character(1).
+Token for downloading data from NASA. Should be set before
+trying running the function.}
+
+\item{directory_to_save}{character(1). Directory to save data.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{mod06_links}{character(1). CSV file path to MOD06_L2 download links
+from NASA LPDAAC. Default is \code{NULL}.}
+
+\item{download}{logical(1). Download data or only save wget commands.}
+
+\item{remove_command}{logical(1). Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL;
+}
+\description{
+Need maintenance for the directory path change
+in NASA EOSDIS. This function first retrieves the all hdf download links
+on a certain day, then only selects the relevant tiles from the retrieved
+links. Download is only done at the queried horizontal-vertical tile number
+combinations. An exception is MOD06_L2 product, which is produced
+every five minutes every day.
+}
+\note{
+\code{date_start} and \code{date_end} should be in the same year.
+Directory structure looks like
+input/modis/raw/\{version\}/\{product\}/\{year\}/\{day_of_year\}
+Please note that \code{date_start} and \code{date_end} are
+ignored if \code{product == 'MOD06_L2'}.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_narr_monolevel_data.Rd b/man/download_narr_monolevel_data.Rd
new file mode 100644
index 00000000..ed7a2545
--- /dev/null
+++ b/man/download_narr_monolevel_data.Rd
@@ -0,0 +1,50 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_narr_monolevel_data}
+\alias{download_narr_monolevel_data}
+\title{download_narr_monolevel_data: download monolevel meteorological data from NOAA NCEP North American Regional Reanalysis (NARR) model.}
+\usage{
+download_narr_monolevel_data(
+ year_start = 2022,
+ year_end = 2022,
+ variables = NULL,
+ directory_to_save = "./input/narr/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{year_start}{integer(1). length of 4. Start of year range for
+downloading data.}
+
+\item{year_end}{integer(1). length of 4. End of year range for downloading
+data.}
+
+\item{variables}{character. Variable(s) name acronym.}
+
+\item{directory_to_save}{character(1). Directory(s) to save downloaded data
+files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_narr_monolevel_data} function accesses and downloads
+monolevel meteorological data from \href{https://psl.noaa.gov/data/gridded/data.narr.html}{NOAA NCEP North American Regional Reanalysis (NARR)}.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_narr_p_levels_data.Rd b/man/download_narr_p_levels_data.Rd
new file mode 100644
index 00000000..f96f2893
--- /dev/null
+++ b/man/download_narr_p_levels_data.Rd
@@ -0,0 +1,50 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_narr_p_levels_data}
+\alias{download_narr_p_levels_data}
+\title{Download pressure level meteorological data from NOAA NCEP North American Regional Reanalysis (NARR) model.}
+\usage{
+download_narr_p_levels_data(
+ year_start = 2022,
+ year_end = 2022,
+ variables = NULL,
+ directory_to_save = "./input/narr/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{year_start}{integer(1). length of 4. Start of year range for
+downloading data.}
+
+\item{year_end}{integer(1). length of 4. End of year range for downloading
+data.}
+
+\item{variables}{character(1). Variable(s) name acronym.}
+
+\item{directory_to_save}{character(1). Directory(s) to save downloaded data
+files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_narr_p_levels_data} function accesses and downloads
+pressure level meteorological data from \href{https://psl.noaa.gov/data/gridded/data.narr.html}{NOAA NCEP North American Regional Reanalysis (NARR)}.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_nei_data.Rd b/man/download_nei_data.Rd
new file mode 100644
index 00000000..376f2b70
--- /dev/null
+++ b/man/download_nei_data.Rd
@@ -0,0 +1,67 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_nei_data}
+\alias{download_nei_data}
+\title{Download data from EPA National Emission Inventory aggregated on-road emission data}
+\usage{
+download_nei_data(
+ directory_to_save = "./input/nei/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE,
+ year_target = c(2017L, 2020L),
+ unzip = FALSE,
+ epa_certificate_path = system.file("extdata/cacert_gaftp_epa.pem", package = "amadeus"),
+ certificate_url =
+ "http://cacerts.digicert.com/DigiCertGlobalG2TLSRSASHA2562020CA1-1.crt"
+)
+}
+\arguments{
+\item{directory_to_save}{character(1). Directory to download files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+
+\item{year_target}{Available years of NEI data.
+Default is \code{c(2017L, 2020L)}.}
+
+\item{unzip}{logical(1). Unzip the downloaded zip files.
+Default is \code{FALSE}.}
+
+\item{epa_certificate_path}{character(1). Path to the certificate file
+for EPA DataCommons. Default is
+'extdata/cacert_gaftp_epa.pem' under the package installation path.}
+
+\item{certificate_url}{character(1). URL to certificate file. See notes for
+details.}
+}
+\value{
+NULL; Two comma-separated value (CSV) raw files for 2017 and 2020
+}
+\description{
+Download data from EPA National Emission Inventory aggregated on-road emission data
+}
+\note{
+For EPA Data Commons certificate errors, follow the steps below:
+\enumerate{
+\item Click Lock icon in the address bar at https://gaftp.epa.gov
+\item Click Show Certificate
+\item Access Details
+\item Find URL with *.crt extension
+Currently we bundle the pre-downloaded crt and its PEM (which is accepted
+in wget command) file in ./inst/extdata. The instruction above is for
+certificate updates in the future.
+}
+}
+\author{
+Ranadeep Daw, Insang Song
+}
diff --git a/man/download_nlcd_data.Rd b/man/download_nlcd_data.Rd
new file mode 100644
index 00000000..7714d025
--- /dev/null
+++ b/man/download_nlcd_data.Rd
@@ -0,0 +1,59 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_nlcd_data}
+\alias{download_nlcd_data}
+\title{Download land cover data from the National Land Cover Database Science Research Products.}
+\usage{
+download_nlcd_data(
+ year = 2021,
+ collection = "Coterminous United States",
+ directory_to_download = "./input/nlcd/",
+ directory_to_save = "./input/nlcd/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{year}{integer(1). Available years for Coterminous United States
+include \code{2001}, \code{2004}, \code{2006}, \code{2008}, \code{2011}, \code{2013}, \code{2016},
+\code{2019}, and \code{2021}.
+Available years for Alaska include \code{2001}, \code{2011}, and \code{2016}.}
+
+\item{collection}{character(1). \code{"Coterminous United States"} or \code{"Alaska"}.}
+
+\item{directory_to_download}{character(1). Directory to download zip files
+from National Land Cover Database Science Research Products.}
+
+\item{directory_to_save}{character(1). Directory to decompress zip files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{unzip}{logical(1). Unzip zip files. Default is \code{TRUE}.}
+
+\item{remove_zip}{logical(1). Remove zip files from directory_to_download.
+Default is \code{FALSE}.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_nlcd_data()} function accesses and downloads
+land cover data from the
+\href{https://www.mrlc.gov/data}{NLCD Science Research Products} data base.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_noaa_hms_smoke_data.Rd b/man/download_noaa_hms_smoke_data.Rd
new file mode 100644
index 00000000..673f3daf
--- /dev/null
+++ b/man/download_noaa_hms_smoke_data.Rd
@@ -0,0 +1,67 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_noaa_hms_smoke_data}
+\alias{download_noaa_hms_smoke_data}
+\title{Download daily wildfire smoke plume data from NOAA Hazard Mapping System Fire and Smoke Product}
+\usage{
+download_noaa_hms_smoke_data(
+ date_start = "2023-09-01",
+ date_end = "2023-09-01",
+ data_format = "Shapefile",
+ directory_to_download = "./input/noaa_hms/",
+ directory_to_save = "./input/noaa_hms/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE
+)
+}
+\arguments{
+\item{date_start}{character(1). length of 10. Start date for downloading
+data. Format YYYY-MM-DD (ex. September 1, 2023 is \code{"2023-09-01"}).}
+
+\item{date_end}{character(1). length of 10. End date for downloading data.
+Format YYYY-MM-DD (ex. September 10, 2023 is \code{"2023-09-10"}).}
+
+\item{data_format}{character(1). "Shapefile" or "KML".}
+
+\item{directory_to_download}{character(1). Directory to download zip files
+from NOAA Hazard Mapping System Fire and Smoke Product. (Ignored if
+\code{data_format = "KML"}.)}
+
+\item{directory_to_save}{character(1). Directory to save unzipped shapefiles
+and KML files.}
+
+\item{data_download_acknowledgement}{logical(1).
+By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+
+\item{unzip}{logical(1). Unzip zip files. Default is \code{TRUE}. (Ignored
+if \code{data_format = "KML"}.)}
+
+\item{remove_zip}{logical(1). Remove zip files from
+directory_to_download. Default is \code{FALSE}.
+(Ignored if \code{data_format = "KML"}.)}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_noaa_hms_smoke_data()} function accesses and downloads
+wildfire smoke plume coverage data from
+the National Oceanic and Atmospheric Administration's (NOAA)
+\href{https://www.ospo.noaa.gov/Products/land/hms.html#0}{Hazard Mapping System Fire and Smoke Product}.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_permit.Rd b/man/download_permit.Rd
new file mode 100644
index 00000000..d8edffd0
--- /dev/null
+++ b/man/download_permit.Rd
@@ -0,0 +1,15 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{download_permit}
+\alias{download_permit}
+\title{Check for data download acknowledgement}
+\usage{
+download_permit(data_download_acknowledgement)
+}
+\arguments{
+\item{data_download_acknowledgement}{logical(1). Whether to
+start downloading}
+}
+\description{
+Check for data download acknowledgement
+}
diff --git a/man/download_remove_command.Rd b/man/download_remove_command.Rd
new file mode 100644
index 00000000..2eeb4121
--- /dev/null
+++ b/man/download_remove_command.Rd
@@ -0,0 +1,17 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{download_remove_command}
+\alias{download_remove_command}
+\title{Remove or keep wget command file}
+\usage{
+download_remove_command(commands_txt = NULL, remove = FALSE)
+}
+\arguments{
+\item{commands_txt}{character(1). Path of download commands}
+
+\item{remove}{logical(1). Remove (\code{TRUE}) or
+keep (\code{FALSE}) commands}
+}
+\description{
+Remove or keep wget command file
+}
diff --git a/man/download_remove_zips.Rd b/man/download_remove_zips.Rd
new file mode 100644
index 00000000..a8937cd5
--- /dev/null
+++ b/man/download_remove_zips.Rd
@@ -0,0 +1,16 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{download_remove_zips}
+\alias{download_remove_zips}
+\title{Remove downloaded zip files}
+\usage{
+download_remove_zips(remove = FALSE, download_name)
+}
+\arguments{
+\item{remove}{logical(1). Confirm removal. Default is FALSE.}
+
+\item{download_name}{character. Full zip file path}
+}
+\description{
+Remove downloaded zip files
+}
diff --git a/man/download_run.Rd b/man/download_run.Rd
new file mode 100644
index 00000000..cf26c431
--- /dev/null
+++ b/man/download_run.Rd
@@ -0,0 +1,20 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{download_run}
+\alias{download_run}
+\title{download_run: execute or skip \code{system_command}
+in data download function.}
+\usage{
+download_run(download = FALSE, system_command = NULL)
+}
+\arguments{
+\item{download}{logical(1). Execute (\code{TRUE}) or
+skip (\code{FALSE}) download.}
+
+\item{system_command}{character(1). Linux command to execute downloads.
+Inherited from data download function.}
+}
+\description{
+Execute or skip the commands listed in the ...wget/curl_commands.txt file
+produced by one of the data download functions.
+}
diff --git a/man/download_sanitize_path.Rd b/man/download_sanitize_path.Rd
new file mode 100644
index 00000000..251d2365
--- /dev/null
+++ b/man/download_sanitize_path.Rd
@@ -0,0 +1,17 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{download_sanitize_path}
+\alias{download_sanitize_path}
+\title{Sanitize path to end with a forward slash}
+\usage{
+download_sanitize_path(directory)
+}
+\arguments{
+\item{directory}{character(1). Path}
+}
+\value{
+character ending with a forward slash.
+}
+\description{
+Sanitize path to end with a forward slash
+}
diff --git a/man/download_sedac_groads_data.Rd b/man/download_sedac_groads_data.Rd
new file mode 100644
index 00000000..b8553f92
--- /dev/null
+++ b/man/download_sedac_groads_data.Rd
@@ -0,0 +1,59 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_sedac_groads_data}
+\alias{download_sedac_groads_data}
+\title{Download Global Roads Open Access Data Set (gROADS), v1 (1980-2010) data from NASA Socioeconomic Data and Applications Center (SEDAC).}
+\usage{
+download_sedac_groads_data(
+ data_format = c("Shapefile", "Geodatabase"),
+ data_region = c("Americas", "Global", "Africa", "Asia", "Europe", "Oceania East",
+ "Oceania West"),
+ directory_to_download = "./input/sedac_groads/",
+ directory_to_save = "./input/sedac_groads/",
+ data_download_acknowledgement = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{data_format}{character(1). Data can be downloaded as \code{"Shapefile"} or
+\code{"Geodatabase"}. (Only \code{"Geodatabase"} available for \code{"Global"} region).}
+
+\item{data_region}{character(1). Data can be downloaded for \code{"Global"},
+\code{"Africa"}, \code{"Asia"}, \code{"Europe"}, \code{"Americas"}, \code{"Oceania East"}, and \code{"Oceania West"}.}
+
+\item{directory_to_download}{character(1). Directory to download zip files
+from NASA Global Roads Open Access Data Set.}
+
+\item{directory_to_save}{character(1). Directory to decompress zip files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{unzip}{logical(1). Unzip zip files. Default is \code{TRUE}.}
+
+\item{remove_zip}{logical(1). Remove zip files from directory_to_download.
+Default is \code{FALSE}.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_sedac_groads_data()} function accesses and downloads
+roads data from the National Aeronautics and Space
+Administration's (NASA) \href{https://sedac.ciesin.columbia.edu/data/set/groads-global-roads-open-access-v1/data-download}{Global Roads Open Access Data Set}.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_sedac_population_data.Rd b/man/download_sedac_population_data.Rd
new file mode 100644
index 00000000..fd1dcb74
--- /dev/null
+++ b/man/download_sedac_population_data.Rd
@@ -0,0 +1,63 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_sedac_population_data}
+\alias{download_sedac_population_data}
+\title{Download UN WPP-Adjusted population density data from NASA Socioeconomic Data and Applications Center (SEDAC)}
+\usage{
+download_sedac_population_data(
+ year = "2020",
+ data_format = c("GeoTIFF", "ASCII", "netCDF"),
+ data_resolution = "60 minute",
+ directory_to_download = "./input/sedac_population/",
+ directory_to_save = "./input/sedac_population/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{year}{character(1). Available years are \code{2000}, \code{2005}, \code{2010}, \code{2015}, and
+\code{2020}, or \code{"all"} for all years.}
+
+\item{data_format}{character(1). Individual year data can be downloaded as
+\code{"ASCII"} or \code{"GeoTIFF"}. "all" years is downloaded as \code{"netCDF"}.}
+
+\item{data_resolution}{character(1). Available resolutions are 30 second
+(approx. 1 km), 2.5 minute (approx. 5 km), 15 minute (approx. 30 km),
+30 minute (approx. 55 km), and 60 minute (approx. 110 km).}
+
+\item{directory_to_download}{character(1). Directory to download zip files
+from NASA UN WPP-Adjusted Population Density, v4.11.}
+
+\item{directory_to_save}{character(1). Directory to decompress zip files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{unzip}{logical(1). Unzip zip files. Default is \code{TRUE}.}
+
+\item{remove_zip}{logical(1). Remove zip files from directory_to_download.
+Default is \code{FALSE}.}
+
+\item{remove_command}{logical(1).
+Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL;
+}
+\description{
+The \code{download_sedac_population_data()} function accesses and downloads
+population density data from the National Aeronatuics and Space
+Administration's (NASA) \href{https://sedac.ciesin.columbia.edu/data/set/gpw-v4-population-density-adjusted-to-2015-unwpp-country-totals-rev11}{UN WPP-Adjusted Population Density, v4.11}.
+}
+\author{
+Mitchell Manware, Insang Song
+}
diff --git a/man/download_setup_dir.Rd b/man/download_setup_dir.Rd
new file mode 100644
index 00000000..a6f7b35e
--- /dev/null
+++ b/man/download_setup_dir.Rd
@@ -0,0 +1,15 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{download_setup_dir}
+\alias{download_setup_dir}
+\title{Check if input directory exists}
+\usage{
+download_setup_dir(directory)
+}
+\arguments{
+\item{directory}{character(1) directory path}
+}
+\description{
+If directory does not exist, the directory
+will be created.
+}
diff --git a/man/download_sink.Rd b/man/download_sink.Rd
new file mode 100644
index 00000000..a40b0ed8
--- /dev/null
+++ b/man/download_sink.Rd
@@ -0,0 +1,14 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{download_sink}
+\alias{download_sink}
+\title{Start sink download commands into a text file}
+\usage{
+download_sink(command_txt)
+}
+\arguments{
+\item{command_txt}{character(1). file path to export commands.}
+}
+\description{
+Start sink download commands into a text file
+}
diff --git a/man/download_tri_data.Rd b/man/download_tri_data.Rd
new file mode 100644
index 00000000..5a613aa4
--- /dev/null
+++ b/man/download_tri_data.Rd
@@ -0,0 +1,42 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download.R
+\name{download_tri_data}
+\alias{download_tri_data}
+\title{Download data from EPA toxic release inventory}
+\usage{
+download_tri_data(
+ year_start = 2018L,
+ year_end = 2022L,
+ directory_to_save = "./input/tri/",
+ data_download_acknowledgement = FALSE,
+ download = FALSE,
+ remove_command = FALSE
+)
+}
+\arguments{
+\item{year_start}{integer(1). length of 4. Start year for downloading data.}
+
+\item{year_end}{integer(1). length of 4. End year for downloading data.}
+
+\item{directory_to_save}{character(1). Directory to download files.}
+
+\item{data_download_acknowledgement}{logical(1). By setting \code{TRUE} the
+user acknowledge that the data downloaded using this function may be very
+large and use lots of machine storage and memory.}
+
+\item{download}{logical(1). \code{FALSE} will generate a *.txt file
+containing all download commands. By setting \code{TRUE} the function
+will download all of the requested data files.}
+
+\item{remove_command}{logical(1). Remove (\code{TRUE}) or keep (\code{FALSE})
+the text file containing download commands.}
+}
+\value{
+NULL; Yearly comma-separated value (CSV) raw files for each year
+}
+\description{
+Download data from EPA toxic release inventory
+}
+\author{
+Mariana Kassien, Insang Song
+}
diff --git a/man/download_unzip.Rd b/man/download_unzip.Rd
new file mode 100644
index 00000000..9ced54ee
--- /dev/null
+++ b/man/download_unzip.Rd
@@ -0,0 +1,19 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{download_unzip}
+\alias{download_unzip}
+\title{Unzip downloaded data}
+\usage{
+download_unzip(file_name, directory_to_unzip, unzip = TRUE)
+}
+\arguments{
+\item{file_name}{character(1). Full zip file path}
+
+\item{directory_to_unzip}{character(1). Directory to unzip
+data}
+
+\item{unzip}{logical(1). Unzip (\code{TRUE}) or not.}
+}
+\description{
+Unzip downloaded data
+}
diff --git a/man/dt_to_sf.Rd b/man/dt_to_sf.Rd
new file mode 100644
index 00000000..22e07be5
--- /dev/null
+++ b/man/dt_to_sf.Rd
@@ -0,0 +1,22 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/manipulate_spacetime_data.R
+\name{dt_to_sf}
+\alias{dt_to_sf}
+\title{Create a sf object from a data.table}
+\usage{
+dt_to_sf(datatable, crs)
+}
+\arguments{
+\item{datatable}{A data.table object with columns "lat", "lon"}
+
+\item{crs}{A character containing the original crs}
+}
+\value{
+an sf object
+}
+\description{
+Create a sf object from a data.table
+}
+\author{
+Eva Marques
+}
diff --git a/man/dt_to_sftime.Rd b/man/dt_to_sftime.Rd
new file mode 100644
index 00000000..19b42461
--- /dev/null
+++ b/man/dt_to_sftime.Rd
@@ -0,0 +1,26 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/manipulate_spacetime_data.R
+\name{dt_to_sftime}
+\alias{dt_to_sftime}
+\title{Create a sftime object from a data.table}
+\usage{
+dt_to_sftime(datatable, crs)
+}
+\arguments{
+\item{datatable}{A data.table object with columns "lat", "lon", "time"}
+
+\item{crs}{A character containing the original crs}
+}
+\value{
+an sftime object
+}
+\description{
+Create a sftime object from a data.table
+}
+\note{
+"time" column in datatable argument should be in date format,
+e.g., "2023-01-01", "01/01/2023", etc.
+}
+\author{
+Eva Marques
+}
diff --git a/man/extract_urls.Rd b/man/extract_urls.Rd
new file mode 100644
index 00000000..6310a43a
--- /dev/null
+++ b/man/extract_urls.Rd
@@ -0,0 +1,19 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_test_support.R
+\name{extract_urls}
+\alias{extract_urls}
+\title{Extract URLs from download commands}
+\usage{
+extract_urls(commands = commands, position = NULL)
+}
+\arguments{
+\item{commands}{character vector containing download commands}
+
+\item{position}{URL position in the vector}
+}
+\value{
+character vector containing download URLs
+}
+\description{
+Extract URLs from download commands
+}
diff --git a/man/generate_date_sequence.Rd b/man/generate_date_sequence.Rd
new file mode 100644
index 00000000..3fd60139
--- /dev/null
+++ b/man/generate_date_sequence.Rd
@@ -0,0 +1,23 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_support.R
+\name{generate_date_sequence}
+\alias{generate_date_sequence}
+\title{Generate sequence of dates based on \code{date_start} and \code{date_end}.}
+\usage{
+generate_date_sequence(date_start, date_end, sub_hyphen = TRUE)
+}
+\arguments{
+\item{date_start}{character(1). Beginning of date sequence.}
+
+\item{date_end}{character(1). End of date sequence.}
+
+\item{sub_hyphen}{logical(1). Substitute hyphen in dates. If \code{TRUE}, returns
+date sequence as "YYYYMMDD". If \code{FALSE}, returns date sequence as
+"YYYY-MM-DD".}
+}
+\value{
+vector
+}
+\description{
+Generate sequence of dates based on \code{date_start} and \code{date_end}.
+}
diff --git a/man/is_stdt.Rd b/man/is_stdt.Rd
new file mode 100644
index 00000000..d010a007
--- /dev/null
+++ b/man/is_stdt.Rd
@@ -0,0 +1,20 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/manipulate_spacetime_data.R
+\name{is_stdt}
+\alias{is_stdt}
+\title{Boolean to know if an object correspond to a stdtobj}
+\usage{
+is_stdt(obj)
+}
+\arguments{
+\item{obj}{an object}
+}
+\value{
+a boolean to know if obj is from newly created class "stdt"
+}
+\description{
+Boolean to know if an object correspond to a stdtobj
+}
+\author{
+Eva Marques
+}
diff --git a/man/modis_aggregate_sds.Rd b/man/modis_aggregate_sds.Rd
new file mode 100644
index 00000000..97cdce70
--- /dev/null
+++ b/man/modis_aggregate_sds.Rd
@@ -0,0 +1,43 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates_support.R
+\name{modis_aggregate_sds}
+\alias{modis_aggregate_sds}
+\title{Aggregate layers in a MODIS sub-dataset}
+\usage{
+modis_aggregate_sds(
+ path,
+ product = c("MOD11A1", "MOD13A2", "MOD09GA", "MCD19A2"),
+ nsds,
+ fun_agg = "mean"
+)
+}
+\arguments{
+\item{path}{character(1). Full path to MODIS HDF4/HDF5 file.
+Direct sub-dataset access is supported, for example,
+HDF4_EOS:EOS_GRID:\{filename\}:\{base_grid_information\}:\{sub-dataset\}}
+
+\item{product}{character(1). Name of MODIS product.}
+
+\item{nsds}{character(1). Exact or regular expression filter of sub-dataset.
+See \link{modis_prefilter_sds} for details.}
+
+\item{fun_agg}{character(1). Function name to aggregate layers.
+Should be acceptable to \link[terra:tapp]{terra::tapp}.}
+}
+\description{
+Aggregate layers in a MODIS sub-dataset
+}
+\note{
+HDF values are read as original without scaling.
+Users should consult MODIS product documentation to apply proper
+scaling factor for post-hoc adjustment. If users have no preliminary
+information about MODIS HDF sub-datasets, consider running
+\verb{terra::describe(__filename__, sds = TRUE)} to navigate the full
+list of sub-datasets in the input file.
+}
+\seealso{
+\link[terra:tapp]{terra::tapp}, \link[terra:rast]{terra::rast}, \link[terra:describe]{terra::describe}
+}
+\author{
+Insang Song
+}
diff --git a/man/modis_get_vrt.Rd b/man/modis_get_vrt.Rd
new file mode 100644
index 00000000..202b3135
--- /dev/null
+++ b/man/modis_get_vrt.Rd
@@ -0,0 +1,41 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates_support.R
+\name{modis_get_vrt}
+\alias{modis_get_vrt}
+\title{Get mosaicked or merged raster from multiple MODIS hdf files}
+\usage{
+modis_get_vrt(
+ paths,
+ product = c("MOD11A1", "MOD13A2", "MOD09GA", "MCD19A2"),
+ date_in = NULL,
+ regex_sds = NULL,
+ foo = "mean"
+)
+}
+\arguments{
+\item{paths}{character. Full list of hdf file paths.
+preferably a recursive search result from \code{list.files}.}
+
+\item{product}{character(1). Product code of MODIS. Should be one of
+\code{c("MOD11A1", "MOD13A2", "MOD09GA", "MCD19A2")}}
+
+\item{date_in}{character(1). date to query. Should be in
+\code{"YYYY-MM-DD"} format.}
+
+\item{regex_sds}{character(1). subdataset names to extract.
+Should conform to regular expression. See \link{regex} for details.
+Default is NULL, which means that the subdataset names are automatically
+selected based on \code{product} value.}
+
+\item{foo}{Function name or custom function to aggregate overlapping
+cell values. See \code{fun} description in \link[terra]{tapp} for details.}
+}
+\value{
+A SpatRaster object.
+}
+\description{
+Get mosaicked or merged raster from multiple MODIS hdf files
+}
+\author{
+Insang Song
+}
diff --git a/man/modis_mosaic_mod06.Rd b/man/modis_mosaic_mod06.Rd
new file mode 100644
index 00000000..1211ee14
--- /dev/null
+++ b/man/modis_mosaic_mod06.Rd
@@ -0,0 +1,37 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates_support.R
+\name{modis_mosaic_mod06}
+\alias{modis_mosaic_mod06}
+\title{Mosaic MODIS MOD06_L2 product files}
+\usage{
+modis_mosaic_mod06(
+ paths,
+ date_in,
+ get_var = c("Cloud_Fraction_Day", "Cloud_Fraction_Night"),
+ resolution = 0.025
+)
+}
+\arguments{
+\item{paths}{character. Full paths of hdf files.}
+
+\item{date_in}{character(1). Date to query.}
+
+\item{get_var}{character. One of \code{"Cloud_Fraction_Day"} or
+\code{"Cloud_Fraction_Night"}}
+
+\item{resolution}{numeric(1). Resolution of output raster.
+Unit is degree.}
+}
+\value{
+SpatRaster object. CRS is \code{"EPSG:4326"}.
+}
+\description{
+This function will return a SpatRaster object with
+mosaicked 5-minute cloud coverage values. Swath data include curvilinear
+grids, which require warping/rectifying the original curvilinear grids
+into rectilinear grids. The function internally warps each of inputs
+then mosaic the warped images into one large SpatRaster object.
+}
+\author{
+Insang Song
+}
diff --git a/man/modis_prefilter_sds.Rd b/man/modis_prefilter_sds.Rd
new file mode 100644
index 00000000..356d2ac0
--- /dev/null
+++ b/man/modis_prefilter_sds.Rd
@@ -0,0 +1,31 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates_support.R
+\name{modis_prefilter_sds}
+\alias{modis_prefilter_sds}
+\title{Selected MODIS product subdataset name selector}
+\usage{
+modis_prefilter_sds(
+ product = c("MOD11A1", "MOD13A2", "MOD09GA", "MCD19A2"),
+ custom_sel = NULL
+)
+}
+\arguments{
+\item{product}{character(1). Product code.}
+
+\item{custom_sel}{character(1). Custom filter.
+If this value is not NULL, preset filter is
+overridden.}
+}
+\value{
+A character object that conforms to the regular
+expression. Details of regular expression in R can be found in \link{regexp}.
+}
+\description{
+Selected MODIS product subdataset name selector
+}
+\seealso{
+\link{calc_modis}
+}
+\author{
+Insang Song
+}
diff --git a/man/modis_preprocess_vnp46.Rd b/man/modis_preprocess_vnp46.Rd
new file mode 100644
index 00000000..826ff798
--- /dev/null
+++ b/man/modis_preprocess_vnp46.Rd
@@ -0,0 +1,27 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates_support.R
+\name{modis_preprocess_vnp46}
+\alias{modis_preprocess_vnp46}
+\title{Assign MODIS VNP46 corner coordinates to retrieve a merged raster}
+\usage{
+modis_preprocess_vnp46(paths, date_in, subdataset = 3L, crs_ref = "EPSG:4326")
+}
+\arguments{
+\item{paths}{character. Full paths of h5 files.}
+
+\item{date_in}{character(1). Date to query.}
+
+\item{subdataset}{integer(1). Subdataset number to process.
+Default is 3L.}
+
+\item{crs_ref}{character(1). terra::crs compatible CRS.
+Default is "EPSG:4326"}
+}
+\description{
+This function will return a SpatRaster object with
+georeferenced h5 files of VNP46A2 product. Referencing corner coordinates
+are necessary as the original h5 data do not include such information.
+}
+\author{
+Insang Song
+}
diff --git a/man/modis_warp_stars.Rd b/man/modis_warp_stars.Rd
new file mode 100644
index 00000000..d6e982b2
--- /dev/null
+++ b/man/modis_warp_stars.Rd
@@ -0,0 +1,44 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates_support.R
+\name{modis_warp_stars}
+\alias{modis_warp_stars}
+\title{Warp MODIS Swath data into rectilinear grid raster}
+\usage{
+modis_warp_stars(path, cellsize = 0.25, threshold = 0.5, crs_out = 4326)
+}
+\arguments{
+\item{path}{File path of MODIS swath with exact sub-dataset specification.}
+
+\item{cellsize}{numeric(1). Cell size (spatial resolution) of
+output rectilinear grid raster.}
+
+\item{threshold}{numeric(1). Maximum distance to fill gaps if occur.}
+
+\item{crs_out}{integer(1)/character(1). Coordinate system definition.
+Should be compatible with EPSG codes or WKT2.
+See \link[terra:crs]{terra::crs} and \link[sf:st_crs]{sf::st_crs} / \href{https://www.epsg.io}{EPSG}}
+}
+\value{
+stars object.
+}
+\description{
+Swath data is a type of MODIS data organization,
+where curvilinear points are stored with varying resolution depending on
+the relative position of the sensor axis. As this type of data
+typically does not work well with planar spatial data, users
+should warp or rectify this data into a rectilinear raster.
+Main procedure is done with \link[stars:st_warp]{stars::st_warp}, in which users are able to
+customize the threshold to fill potential gaps that appear where
+the target resolution is finer than the local resolution of curvilinear
+grid points.
+}
+\note{
+Users should specify sub-dataset with all flags that are
+compatible with \code{gdalinfo}
+}
+\seealso{
+\link[terra:rectify]{terra::rectify}
+}
+\author{
+Insang Song
+}
diff --git a/man/modis_worker.Rd b/man/modis_worker.Rd
new file mode 100644
index 00000000..8a4ce427
--- /dev/null
+++ b/man/modis_worker.Rd
@@ -0,0 +1,54 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/calculate_covariates.R
+\name{modis_worker}
+\alias{modis_worker}
+\title{A single-date MODIS worker for parallelization}
+\usage{
+modis_worker(
+ raster,
+ date,
+ sites_in = NULL,
+ name_extracted = NULL,
+ product = c("MOD11A1", "MOD13A2", "MOD06_L2", "VNP46A2", "MOD09GA", "MCD19A2"),
+ fun_summary_raster = "mean",
+ id_col = "site_id",
+ radius = 0L
+)
+}
+\arguments{
+\item{raster}{SpatRaster.}
+
+\item{date}{Date(1). date to query.}
+
+\item{sites_in}{SpatVector/sf/sftime object. AQS sites.}
+
+\item{name_extracted}{character. Names of calculated covariates.}
+
+\item{product}{character(1). Product code of MODIS. Should be one of
+\code{c('MOD11A1', 'MOD13A2', 'MOD06_L2', 'VNP46A2', 'MOD09GA', 'MCD19A2')}}
+
+\item{fun_summary_raster}{function. Summary function for
+multilayer rasters. Passed to \code{foo}. See also
+\code{\link[exactextractr]{exact_extract}}}
+
+\item{id_col}{character(1). Field name where unique site identifiers
+are stored. Default is \code{"site_id"}}
+
+\item{radius}{numeric. Radius to buffer.}
+}
+\value{
+A data.frame object.
+}
+\description{
+modis_worker operates at six MODIS/VIIRS products
+(MOD11A1, MOD13A2, MOD06_L2, VNP46A2, MOD09GA, and MCD19A2)
+on a daily basis. Given that the raw hdf files are downloaded from
+NASA, standard file names include a data retrieval date flag starting
+with A. Leveraging that piece of information, the function will select
+files of scope on the date of interest. Please note that this function
+does not provide a function to filter swaths or tiles, so it is strongly
+recommended to check and pre-filter the file names at users' discretion.
+}
+\author{
+Insang Song
+}
diff --git a/man/project_dt.Rd b/man/project_dt.Rd
new file mode 100644
index 00000000..f065fa76
--- /dev/null
+++ b/man/project_dt.Rd
@@ -0,0 +1,28 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/manipulate_spacetime_data.R
+\name{project_dt}
+\alias{project_dt}
+\title{Project coordinates in a datatable from crs_ori to crs_dest}
+\usage{
+project_dt(datatable, crs_ori, crs_dest)
+}
+\arguments{
+\item{datatable}{A data.table object with columns "lat", "lon"}
+
+\item{crs_ori}{A character containing the original crs of spatial data}
+
+\item{crs_dest}{A character containing the destination crs of spatial data}
+}
+\value{
+same datatable object with "lon", "lat",
+"lon_ori", "lat_ori" columns
+}
+\description{
+Project coordinates in a datatable from crs_ori to crs_dest
+}
+\note{
+This function assumes that users have point geometry.
+}
+\author{
+Eva Marques
+}
diff --git a/man/read_commands.Rd b/man/read_commands.Rd
new file mode 100644
index 00000000..52dca047
--- /dev/null
+++ b/man/read_commands.Rd
@@ -0,0 +1,17 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_test_support.R
+\name{read_commands}
+\alias{read_commands}
+\title{Read commands and convert to character vector}
+\usage{
+read_commands(commands_path = commands_path)
+}
+\arguments{
+\item{commands_path}{file path with wget/curl commands}
+}
+\value{
+character vector containing download commands
+}
+\description{
+Read commands and convert to character vector
+}
diff --git a/man/test_download_functions.Rd b/man/test_download_functions.Rd
new file mode 100644
index 00000000..602c9ff6
--- /dev/null
+++ b/man/test_download_functions.Rd
@@ -0,0 +1,25 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/download_test_support.R
+\name{test_download_functions}
+\alias{test_download_functions}
+\title{Apply download function-specific unit tests}
+\usage{
+test_download_functions(
+ directory_to_download = NULL,
+ directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status
+)
+}
+\arguments{
+\item{directory_to_download}{directory to test download}
+
+\item{directory_to_save}{directory to test saving}
+
+\item{commands_path}{file path with download commands}
+
+\item{url_status}{logical vector for URL status = 200}
+}
+\description{
+Apply download function-specific unit tests
+}
diff --git a/tests/testdata/NCEP-NCAR-Reanalysis-1/air.2m.gauss.2022.nc_subset.nc b/tests/testdata/NCEP-NCAR-Reanalysis-1/air.2m.gauss.2022.nc_subset.nc
new file mode 100644
index 00000000..52d8f884
Binary files /dev/null and b/tests/testdata/NCEP-NCAR-Reanalysis-1/air.2m.gauss.2022.nc_subset.nc differ
diff --git a/tests/testdata/NCEP-NCAR-Reanalysis-1/pres.hct.gauss.2022.nc_subset.nc b/tests/testdata/NCEP-NCAR-Reanalysis-1/pres.hct.gauss.2022.nc_subset.nc
new file mode 100644
index 00000000..15ef5c18
Binary files /dev/null and b/tests/testdata/NCEP-NCAR-Reanalysis-1/pres.hct.gauss.2022.nc_subset.nc differ
diff --git a/tests/testdata/aqs-test-data.csv b/tests/testdata/aqs-test-data.csv
new file mode 100755
index 00000000..761933b9
--- /dev/null
+++ b/tests/testdata/aqs-test-data.csv
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d1ecf1be6d30d71150f1ad09e967892348a6b69b17c97a1d75faedb8e18e726f
+size 687
diff --git a/tests/testdata/aqs-test-data.gpkg b/tests/testdata/aqs-test-data.gpkg
new file mode 100755
index 00000000..013f3e90
Binary files /dev/null and b/tests/testdata/aqs-test-data.gpkg differ
diff --git a/tests/testdata/daily_88101_2018-2022.rds b/tests/testdata/daily_88101_2018-2022.rds
new file mode 100644
index 00000000..9c5ca010
Binary files /dev/null and b/tests/testdata/daily_88101_2018-2022.rds differ
diff --git a/tests/testdata/eco_l3_clip.gpkg b/tests/testdata/eco_l3_clip.gpkg
new file mode 100644
index 00000000..da09018c
Binary files /dev/null and b/tests/testdata/eco_l3_clip.gpkg differ
diff --git a/tests/testdata/ecoregion_lv4.rds b/tests/testdata/ecoregion_lv4.rds
new file mode 100644
index 00000000..09b396e7
Binary files /dev/null and b/tests/testdata/ecoregion_lv4.rds differ
diff --git a/tests/testdata/epa_egrid_powerplants.RData b/tests/testdata/epa_egrid_powerplants.RData
new file mode 100755
index 00000000..3a7f7b95
Binary files /dev/null and b/tests/testdata/epa_egrid_powerplants.RData differ
diff --git a/tests/testdata/koppen_geiger_Present_0p0083_2023-12-21_wget_command.txt b/tests/testdata/koppen_geiger_Present_0p0083_2023-12-21_wget_command.txt
new file mode 100644
index 00000000..dc5966e8
--- /dev/null
+++ b/tests/testdata/koppen_geiger_Present_0p0083_2023-12-21_wget_command.txt
@@ -0,0 +1 @@
+wget https://figshare.com/ndownloader/files/12407516 -O ../testdata/koppen_geiger_present_0p0083.zip
diff --git a/tests/testdata/koppen_subset.tif b/tests/testdata/koppen_subset.tif
new file mode 100644
index 00000000..b97874f1
Binary files /dev/null and b/tests/testdata/koppen_subset.tif differ
diff --git a/tests/testdata/merra2_tavg2_US_mainland_20220820_daily.tif b/tests/testdata/merra2_tavg2_US_mainland_20220820_daily.tif
new file mode 100644
index 00000000..5ccce2d4
Binary files /dev/null and b/tests/testdata/merra2_tavg2_US_mainland_20220820_daily.tif differ
diff --git a/tests/testdata/modis/MCD19A2.A2021227.h11v05.061.2023149160635.hdf b/tests/testdata/modis/MCD19A2.A2021227.h11v05.061.2023149160635.hdf
new file mode 100644
index 00000000..bc65fee4
Binary files /dev/null and b/tests/testdata/modis/MCD19A2.A2021227.h11v05.061.2023149160635.hdf differ
diff --git a/tests/testdata/modis/MOD06_L2.A2021227.0320.061.2021227134022.hdf b/tests/testdata/modis/MOD06_L2.A2021227.0320.061.2021227134022.hdf
new file mode 100644
index 00000000..7ce491e5
Binary files /dev/null and b/tests/testdata/modis/MOD06_L2.A2021227.0320.061.2021227134022.hdf differ
diff --git a/tests/testdata/modis/MOD06_L2.A2021227.1520.061.2021228015812.hdf b/tests/testdata/modis/MOD06_L2.A2021227.1520.061.2021228015812.hdf
new file mode 100644
index 00000000..486e9ff0
Binary files /dev/null and b/tests/testdata/modis/MOD06_L2.A2021227.1520.061.2021228015812.hdf differ
diff --git a/tests/testdata/modis/MOD06_L2.A2021227.1700.061.2021228015307.hdf b/tests/testdata/modis/MOD06_L2.A2021227.1700.061.2021228015307.hdf
new file mode 100644
index 00000000..b8b13243
Binary files /dev/null and b/tests/testdata/modis/MOD06_L2.A2021227.1700.061.2021228015307.hdf differ
diff --git a/tests/testdata/modis/MOD09GA.A2021227.h11v05.061.2021229035936.hdf b/tests/testdata/modis/MOD09GA.A2021227.h11v05.061.2021229035936.hdf
new file mode 100644
index 00000000..b2d7f76d
Binary files /dev/null and b/tests/testdata/modis/MOD09GA.A2021227.h11v05.061.2021229035936.hdf differ
diff --git a/tests/testdata/modis/MOD11A1.A2021227.h11v05.061.2021228105320.hdf b/tests/testdata/modis/MOD11A1.A2021227.h11v05.061.2021228105320.hdf
new file mode 100644
index 00000000..30c6ac21
Binary files /dev/null and b/tests/testdata/modis/MOD11A1.A2021227.h11v05.061.2021228105320.hdf differ
diff --git a/tests/testdata/modis/MOD13A2.A2021225.h11v05.061.2021320163751.hdf b/tests/testdata/modis/MOD13A2.A2021225.h11v05.061.2021320163751.hdf
new file mode 100644
index 00000000..e4bb449c
Binary files /dev/null and b/tests/testdata/modis/MOD13A2.A2021225.h11v05.061.2021320163751.hdf differ
diff --git a/tests/testdata/modis/VNP46A2.A2018225.h09v05.001.2020345083053.h5 b/tests/testdata/modis/VNP46A2.A2018225.h09v05.001.2020345083053.h5
new file mode 100644
index 00000000..7dabd009
Binary files /dev/null and b/tests/testdata/modis/VNP46A2.A2018225.h09v05.001.2020345083053.h5 differ
diff --git a/tests/testdata/modis/VNP46A2.A2018225.h10v05.001.2020343131644.h5 b/tests/testdata/modis/VNP46A2.A2018225.h10v05.001.2020343131644.h5
new file mode 100644
index 00000000..649bd3a6
Binary files /dev/null and b/tests/testdata/modis/VNP46A2.A2018225.h10v05.001.2020343131644.h5 differ
diff --git a/tests/testdata/nei/onroadnc17.csv b/tests/testdata/nei/onroadnc17.csv
new file mode 100644
index 00000000..ff42feef
--- /dev/null
+++ b/tests/testdata/nei/onroadnc17.csv
@@ -0,0 +1,131533 @@
+fips code,total emissions,pollutant desc,emissions uom
+37007,7.7176,Ethyl Benzene,LB
+37007,1.6396704,"1,3-Butadiene",LB
+37007,0.3513208,Acrolein,LB
+37007,0.2482546,Propionaldehyde,LB
+37007,0.014248822,"Benzo[g,h,i,]Perylene",LB
+37007,0.000711739,Nickel,LB
+37007,0.015112508,Acenaphthene,LB
+37007,0.08203026,Phenanthrene,LB
+37007,0.006321967,Sulfur Dioxide,TON
+37001,32.20586,Acrolein,LB
+37001,30.10818,Toluene,LB
+37001,30.8572,Xylenes (Mixed Isomers),LB
+37001,1.2952438,Acenaphthene,LB
+37001,0.2196312,Methane,TON
+37001,1.4782132e-06,Mercury,LB
+37001,10.14325,Carbon Dioxide,TON
+37001,0.06123568,Nitrogen Oxides,TON
+37001,0.001426814,PM2.5 Primary (Filt + Cond),TON
+37189,2.301328,Fluoranthene,LB
+37189,0.7030444,Benz[a]Anthracene,LB
+37189,0.02101331,Nitrous Oxide,TON
+37189,0.1628,Sulfur Dioxide,TON
+37183,10.756224,Anthracene,LB
+37183,1723.9256,Acetaldehyde,LB
+37183,1.704232,Ammonia,TON
+37183,8.830975,PM2.5 Primary (Filt + Cond),TON
+37183,0.6758355,Sulfate Portion of PM2.5-PRI,TON
+37199,0.0008655836,Nitrate portion of PM2.5-PRI,TON
+37199,43.22154,Toluene,LB
+37199,3.522392,Pyrene,LB
+37199,41.93372,Xylenes (Mixed Isomers),LB
+37199,0.1933294,Chrysene,LB
+37199,0.0016023924,"Dibenzo[a,h]Anthracene",LB
+37199,0.4315136,Benz[a]Anthracene,LB
+37199,12.18988,Volatile Organic Compounds,TON
+37195,9.58306,"2,2,4-Trimethylpentane",LB
+37115,0.0002510933,Methane,TON
+37115,0.01585415,Nitrogen Oxides,TON
+37115,0.0007441979,PM10 Primary (Filt + Cond),TON
+37109,0.0601697,Manganese,LB
+37109,2.988568e-05,Mercury,LB
+37109,50.83432,Acetaldehyde,LB
+37109,0.3687442,Acenaphthene,LB
+37109,0.1432024,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.0008260486,Nitrate portion of PM2.5-PRI,TON
+37109,0.01333001,Sulfate Portion of PM2.5-PRI,TON
+37109,0.09458952,Chrysene,LB
+37109,3267.116,Hexane,LB
+37109,492.1192,Benzene,LB
+37101,1.486724,Nitrogen Oxides,TON
+37101,0.01481822,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,1.2398874,Ethyl Benzene,LB
+37101,1.2710318,"1,3-Butadiene",LB
+37101,0.002010786,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,37.00592,Formaldehyde,LB
+37101,0.0010790096,"Dibenzo[a,h]Anthracene",LB
+37101,0.08921908,Benz[a]Anthracene,LB
+37101,0.006475932,Manganese,LB
+37101,6.169208e-06,Mercury,LB
+37095,14.388416,Acetaldehyde,LB
+37095,0.4184868,Phenanthrene,LB
+37095,0.008190884,Methane,TON
+37095,0.01600575,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,2.637898,Acrolein,LB
+37095,0.0019745284,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.0010621718,Benzo[k]Fluoranthene,LB
+37083,0.003958786,"Benzo[g,h,i,]Perylene",LB
+37083,0.0009232872,Benzo[b]Fluoranthene,LB
+37083,0.0010080384,Manganese,LB
+37083,0.004245714,Fluorene,LB
+37083,0.001545708,Ammonia,TON
+37083,4.997218e-06,Nitrate portion of PM2.5-PRI,TON
+37083,0.005772897,PM10 Primary (Filt + Cond),TON
+37053,6.86403,Hexane,LB
+37053,0.8858332,Anthracene,LB
+37053,7.451106e-05,Chromium (VI),LB
+37053,0.016366516,Arsenic,LB
+37053,115.20372,Acetaldehyde,LB
+37053,6.198835,Carbon Monoxide,TON
+37053,1.473469,Volatile Organic Compounds,TON
+37053,0.73797,Benz[a]Anthracene,LB
+37053,811.7846,Acetaldehyde,LB
+37053,12.147416,Phenanthrene,LB
+37053,1.244508,Methane,TON
+37053,0.4629213,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,3.75706,Pyrene,LB
+37051,767.7746,Formaldehyde,LB
+37051,2.508066,Acenaphthene,LB
+37051,682.9602,Carbon Monoxide,TON
+37051,72.76313,Nitrogen Oxides,TON
+37051,0.04324103,Sulfate Portion of PM2.5-PRI,TON
+37029,0.1887901,Fluorene,LB
+37029,228.9268,Carbon Dioxide,TON
+37029,0.002330516,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.1944297,Volatile Organic Compounds,TON
+37029,1.122273,Ethyl Benzene,LB
+37029,33.8506,Formaldehyde,LB
+37023,19.345534,Xylenes (Mixed Isomers),LB
+37023,5.367648e-06,Chromium (VI),LB
+37023,0.019146306,"Benzo[g,h,i,]Perylene",LB
+37023,208.1257,Carbon Dioxide,TON
+37023,0.00130815,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.4658622,Nitrogen Oxides,TON
+37023,5.241096,Ethyl Benzene,LB
+37171,1.5046342e-05,Nickel,LB
+37171,0.002802733,PM10 Primary (Filt + Cond),TON
+37171,4.45211,Hexane,LB
+37171,0.1014059,Propionaldehyde,LB
+37171,7767.126,Hexane,LB
+37171,4.92717,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,3.115244,Benzo[b]Fluoranthene,LB
+37171,11.277814,Fluoranthene,LB
+37171,7073.406,"2,2,4-Trimethylpentane",LB
+37171,2.082982,Arsenic,LB
+37171,2690.86,Acetaldehyde,LB
+37171,7.508174,Acenaphthene,LB
+37171,3.98849,Methane,TON
+37171,1.705131,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,171.89366,Acetaldehyde,LB
+37167,6418.604,Carbon Dioxide,TON
+37167,0.05570811,Sulfur Dioxide,TON
+37167,9.66486,"2,2,4-Trimethylpentane",LB
+37165,3.033956,Styrene,LB
+37165,19.947924,Toluene,LB
+37165,0.005848386,"Dibenzo[a,h]Anthracene",LB
+37165,0.04759076,Nickel,LB
+37165,2.718982,Phenanthrene,LB
+37165,7.266205,Carbon Monoxide,TON
+37165,1.029866,PM25-Primary from certain diesel engines,TON
+37165,0.1379671,Ammonia,TON
+37165,0.5958052,Naphthalene,LB
+37165,0.0129005,PM2.5 Primary (Filt + Cond),TON
+37165,0.0003765194,Sulfur Dioxide,TON
+37165,0.3401832,Toluene,LB
+37165,0.01954207,Anthracene,LB
+37165,0.04125298,Fluoranthene,LB
+37165,0.0001530989,"Dibenzo[a,h]Anthracene",LB
+37165,0.06366606,Xylenes (Mixed Isomers),LB
+37165,3.386726e-06,Manganese,LB
+37165,5.349206e-07,Nickel,LB
+37165,0.009510124,Acetaldehyde,LB
+37165,0.001218327,Nitrogen Oxides,TON
+37153,0.00631243,Chromium (VI),LB
+37153,9.788468,"Benzo[g,h,i,]Perylene",LB
+37153,0.06328238,Mercury,LB
+37153,25.31198,Fluorene,LB
+37153,6.718271,Methane,TON
+37153,9.771299,Ammonia,TON
+37153,210.5306,Volatile Organic Compounds,TON
+37135,0.714424,Fluoranthene,LB
+37135,96.94268,Formaldehyde,LB
+37135,2.553806,"2,2,4-Trimethylpentane",LB
+37135,8.708876,Benzene,LB
+37135,0.015157738,Nickel,LB
+37135,0.00801431,Arsenic,LB
+37135,1.1521368,Phenanthrene,LB
+37135,1529.016,Carbon Dioxide,TON
+37135,0.2581752,PM25-Primary from certain diesel engines,TON
+37135,0.03965299,Ammonia,TON
+37131,1.493091,Carbon Monoxide,TON
+37131,2.75634,Hexane,LB
+37131,0.0018368778,Benzo[b]Fluoranthene,LB
+37131,2.198954e-05,Mercury,LB
+37131,0.003060856,Acenaphthene,LB
+37131,2668.874,Hexane,LB
+37131,12.344974,Acenaphthylene,LB
+37131,1.520693,Methane,TON
+37131,84.1561,Nitrogen Oxides,TON
+37131,0.9449645,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.1863259,Phenanthrene,LB
+37117,0.02054064,Ammonia,TON
+37117,34.38426,Hexane,LB
+37117,0.04988632,Fluoranthene,LB
+37125,0.15663698,Hexane,LB
+37125,0.001917148,Propionaldehyde,LB
+37125,0.0002541536,"Benzo[g,h,i,]Perylene",LB
+37125,2.050773e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.0001288795,Ammonia,TON
+37125,0.0001062548,Sulfur Dioxide,TON
+37123,0.09119372,PM2.5 Primary (Filt + Cond),TON
+37123,0.005348353,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.005290213,Sulfur Dioxide,TON
+37123,2.940456,Ethyl Benzene,LB
+37123,6.969988,Acrolein,LB
+37123,0.013279864,Nickel,LB
+37123,5.515083,Carbon Monoxide,TON
+37109,0.11882518,Acenaphthene,LB
+37109,534.3586,Carbon Dioxide,TON
+37109,0.000520792,Nitrate portion of PM2.5-PRI,TON
+37103,0.005622612,Nickel,LB
+37103,18.601456,Acetaldehyde,LB
+37103,0.14484522,Acenaphthene,LB
+37103,0.01185375,Methane,TON
+37103,1.338753,Carbon Monoxide,TON
+37103,1.0626512,Hexane,LB
+37093,0.000709496,Styrene,LB
+37093,2.543456e-05,Anthracene,LB
+37093,4.937388e-05,Pyrene,LB
+37093,2.428708e-05,"Benzo[g,h,i,]Perylene",LB
+37093,0.03059278,Benzene,LB
+37093,2.985152e-05,Acenaphthene,LB
+37093,2.092805e-05,Methane,TON
+37091,0.0006501112,Nickel,LB
+37091,0.001968654,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.004001973,Sulfur Dioxide,TON
+37091,66.22174,Toluene,LB
+37091,0.003970202,Benzo[b]Fluoranthene,LB
+37091,0.02263582,Fluoranthene,LB
+37091,0.003970202,Benzo[k]Fluoranthene,LB
+37089,0.11325478,Phenanthrene,LB
+37089,8.80106,Carbon Monoxide,TON
+37089,0.02987113,PM10 Primary (Filt + Cond),TON
+37089,0.01337727,PM2.5 Primary (Filt + Cond),TON
+37087,22.28428,Ethyl Benzene,LB
+37087,3.43896,Volatile Organic Compounds,TON
+37073,5.55474,Hexane,LB
+37073,0.0012954466,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.005485426,Fluoranthene,LB
+37073,1.24308,Acetaldehyde,LB
+37073,0.003582787,PM10 Primary (Filt + Cond),TON
+37081,5912.908,Formaldehyde,LB
+37081,2597.334,Acetaldehyde,LB
+37081,20.13474,Acenaphthene,LB
+37081,3.900801,Elemental Carbon portion of PM2.5-PRI,TON
+37081,127.3151,Nitrogen Oxides,TON
+37075,0.1841726,"1,3-Butadiene",LB
+37075,0.4741204,Xylenes (Mixed Isomers),LB
+37075,0.002769542,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.0005078211,Sulfur Dioxide,TON
+37073,2642.216,Toluene,LB
+37073,9.215242,Volatile Organic Compounds,TON
+37069,322.6206,Ethyl Benzene,LB
+37069,5.809018,Styrene,LB
+37069,98.01772,Formaldehyde,LB
+37069,0.097529,Benzo[a]Pyrene,LB
+37069,537.0618,"2,2,4-Trimethylpentane",LB
+37069,0.021258,Manganese,LB
+37069,0.05380167,Organic Carbon portion of PM2.5-PRI,TON
+37059,8.771168,"1,3-Butadiene",LB
+37059,2.097666,Fluoranthene,LB
+37059,0.3886338,Chrysene,LB
+37059,5.257368e-05,Mercury,LB
+37059,28.70592,Naphthalene,LB
+37119,77.80896,"2,2,4-Trimethylpentane",LB
+37115,7.21883e-05,Acenaphthene,LB
+37115,0.000482415,Ammonia,TON
+37115,0.007515588,Nitrogen Oxides,TON
+37115,6.784867e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.000402732,"Benzo[g,h,i,]Perylene",LB
+37115,7.976136e-05,Benzo[k]Fluoranthene,LB
+37115,0.13335556,Formaldehyde,LB
+37083,0.0414509,Styrene,LB
+37083,0.0013632464,Chrysene,LB
+37083,7.927752e-05,"Dibenzo[a,h]Anthracene",LB
+37083,16.103212,Acetaldehyde,LB
+37083,0.002902788,Fluorene,LB
+37079,0.003172846,Benzo[b]Fluoranthene,LB
+37079,0.002763832,Nickel,LB
+37079,0.0193356,Phenanthrene,LB
+37079,0.001371151,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.2637262,Benzene,LB
+37175,4.39106e-07,Mercury,LB
+37175,0.3077402,Naphthalene,LB
+37175,0.05437673,PM10 Primary (Filt + Cond),TON
+37175,0.6011632,Acrolein,LB
+37175,0.00614809,Benzo[a]Pyrene,LB
+37175,0.02403426,Acenaphthene,LB
+37175,0.002474241,Ammonia,TON
+37175,0.0001087622,Nitrate portion of PM2.5-PRI,TON
+37169,0.12018898,Pyrene,LB
+37169,183.18114,Xylenes (Mixed Isomers),LB
+37169,0.02881206,Benzo[a]Pyrene,LB
+37169,66.95748,"2,2,4-Trimethylpentane",LB
+37169,0.00016882528,Mercury,LB
+37169,0.0720012,Acenaphthene,LB
+37169,0.391296,Phenanthrene,LB
+37169,8.691728e-05,Nitrate portion of PM2.5-PRI,TON
+37169,1.474919,Volatile Organic Compounds,TON
+37169,0.007313335,PM2.5 Primary (Filt + Cond),TON
+37169,0.370356,Acrolein,LB
+37169,0.2586284,Propionaldehyde,LB
+37169,0.00398386,Benzo[k]Fluoranthene,LB
+37169,0.06764176,Acenaphthylene,LB
+37169,4.31901,Formaldehyde,LB
+37169,0.005224002,Benzo[a]Pyrene,LB
+37169,0.014855816,Acenaphthene,LB
+37167,0.4792698,Fluoranthene,LB
+37167,1.493973,Acenaphthylene,LB
+37167,0.0012695162,Mercury,LB
+37167,0.02427016,Arsenic,LB
+37167,74.85436,Acetaldehyde,LB
+37167,83.39484,Carbon Monoxide,TON
+37167,0.1254968,PM2.5 Primary (Filt + Cond),TON
+37167,0.003835712,Sulfate Portion of PM2.5-PRI,TON
+37163,0.01642704,Anthracene,LB
+37163,0.007371878,Benzo[b]Fluoranthene,LB
+37163,0.08670176,Acenaphthylene,LB
+37163,0.011354754,Benzo[a]Pyrene,LB
+37163,0.0002616482,"Dibenzo[a,h]Anthracene",LB
+37163,0.0007133908,Arsenic,LB
+37163,3.352834e-05,Nitrate portion of PM2.5-PRI,TON
+37163,0.02187203,PM10 Primary (Filt + Cond),TON
+37161,0.8863846,Styrene,LB
+37161,4.854986,Acrolein,LB
+37161,1.1886648e-05,Mercury,LB
+37161,0.002485426,Arsenic,LB
+37157,1.6075324,Benzene,LB
+37157,0.06125455,Nitrogen Oxides,TON
+37139,1.806978,Ethyl Benzene,LB
+37139,0.3298962,Fluoranthene,LB
+37139,0.3094082,Acenaphthylene,LB
+37139,0.001921839,Arsenic,LB
+37139,0.005042329,Sulfur Dioxide,TON
+37125,5.434834,"1,3-Butadiene",LB
+37125,0.4578544,Anthracene,LB
+37125,0.005788462,Benzo[b]Fluoranthene,LB
+37125,0.09929255,Methane,TON
+37125,3.647224,Nitrogen Oxides,TON
+37125,0.1721881,PM2.5 Primary (Filt + Cond),TON
+37069,0.008629158,Styrene,LB
+37069,0.0002748546,Anthracene,LB
+37069,0.6258584,Xylenes (Mixed Isomers),LB
+37069,2.311222e-06,Chromium (VI),LB
+37069,0.0007861266,Manganese,LB
+37069,0.0008993681,PM2.5 Primary (Filt + Cond),TON
+37065,0.647815,Xylenes (Mixed Isomers),LB
+37065,3.415748e-06,Chromium (VI),LB
+37065,3.42424e-05,Mercury,LB
+37065,0.0008753508,Nitrous Oxide,TON
+37065,3.160232e-06,Nitrate portion of PM2.5-PRI,TON
+37065,0.000547411,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.002901624,Acenaphthylene,LB
+37061,7.107758,Acetaldehyde,LB
+37061,0.001429457,Nitrous Oxide,TON
+37061,0.0009657665,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.00613394,PM10 Primary (Filt + Cond),TON
+37061,0.0006554261,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,2.628076,Benzene,LB
+37171,0.9598544,Acrolein,LB
+37171,2.317158,Propionaldehyde,LB
+37171,0.00887548,Chrysene,LB
+37171,0.0220631,Benzo[a]Pyrene,LB
+37171,116.97806,Acetaldehyde,LB
+37171,1320.001,Carbon Dioxide,TON
+37171,0.02942166,PM2.5 Primary (Filt + Cond),TON
+37165,0.003550238,Anthracene,LB
+37165,0.00376631,Benz[a]Anthracene,LB
+37165,0.00611063,Arsenic,LB
+37165,0.0300947,Ammonia,TON
+37165,0.004439685,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,4.87621,Ethyl Benzene,LB
+37147,4.063494,Benzene,LB
+37171,239.2764,Acrolein,LB
+37171,164.57722,Propionaldehyde,LB
+37171,0.04167606,"Benzo[g,h,i,]Perylene",LB
+37171,71.1289,"2,2,4-Trimethylpentane",LB
+37171,2.20244,Benz[a]Anthracene,LB
+37171,0.0005599576,Mercury,LB
+37171,16895.27,Carbon Dioxide,TON
+37171,1.969795,Elemental Carbon portion of PM2.5-PRI,TON
+37169,1.05201,Benzene,LB
+37169,0.3729718,Acetaldehyde,LB
+37165,5.285112,Hexane,LB
+37165,0.0004570834,Nickel,LB
+37165,0.04418604,Phenanthrene,LB
+37165,0.01640575,Fluorene,LB
+37165,8.79385,Propionaldehyde,LB
+37165,309.0418,"2,2,4-Trimethylpentane",LB
+37165,0.11873736,Manganese,LB
+37165,0.3053404,Methane,TON
+37165,119.1758,Carbon Monoxide,TON
+37165,0.2238495,Nitrous Oxide,TON
+37165,0.4712996,Ammonia,TON
+37165,0.06602739,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.02331877,Sulfur Dioxide,TON
+37165,1179.0938,Toluene,LB
+37165,0.1414449,Anthracene,LB
+37165,0.19344106,"Benzo[g,h,i,]Perylene",LB
+37165,63.00842,Formaldehyde,LB
+37165,0.013290754,Arsenic,LB
+37165,0.01042819,Elemental Carbon portion of PM2.5-PRI,TON
+37155,43.94622,Toluene,LB
+37155,0.011842344,Anthracene,LB
+37155,0.06070692,Acenaphthylene,LB
+37155,0.013215058,Acenaphthene,LB
+37155,0.6879022,Naphthalene,LB
+37059,11.009074,Toluene,LB
+37059,4.13114,"2,2,4-Trimethylpentane",LB
+37005,0.09384006,Ethyl Benzene,LB
+37005,0.389809,Toluene,LB
+37005,0.0007355278,Acenaphthylene,LB
+37005,0.1805394,"2,2,4-Trimethylpentane",LB
+37005,0.00010879978,Benz[a]Anthracene,LB
+37005,0.000193188,Arsenic,LB
+37005,0.01014426,Nitrogen Oxides,TON
+37005,0.0004173699,Sulfur Dioxide,TON
+37169,12.62616,Benzene,LB
+37169,60.93292,Acetaldehyde,LB
+37169,10.713938,Toluene,LB
+37169,1.143446,Propionaldehyde,LB
+37169,0.008897358,Pyrene,LB
+37169,0.004250738,Benzo[b]Fluoranthene,LB
+37169,0.004250738,Benzo[k]Fluoranthene,LB
+37169,0.003332172,Chrysene,LB
+37129,0.004928754,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,3.229092,Formaldehyde,LB
+37129,0.005351756,Arsenic,LB
+37129,0.012114206,Phenanthrene,LB
+37129,439.7908,Carbon Dioxide,TON
+37129,2.427663e-05,Nitrate portion of PM2.5-PRI,TON
+37129,0.05765474,PM10 Primary (Filt + Cond),TON
+37129,0.005687366,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.000218851,Acenaphthene,LB
+37007,0.09190531,Carbon Monoxide,TON
+37007,0.0001056055,Ammonia,TON
+37007,3.345667e-07,Nitrate portion of PM2.5-PRI,TON
+37007,0.004124548,Acrolein,LB
+37007,0.0002967868,"Benzo[g,h,i,]Perylene",LB
+37007,0.00011150728,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,7.016666e-05,Chrysene,LB
+37007,0.0001112967,Benzo[a]Pyrene,LB
+37007,7.342006e-05,Benz[a]Anthracene,LB
+37019,9608.366,"2,2,4-Trimethylpentane",LB
+37019,0.16753096,Mercury,LB
+37019,3.203066,Arsenic,LB
+37019,3369.544,Acetaldehyde,LB
+37019,479.3018,Naphthalene,LB
+37019,5.114818,Methane,TON
+37019,247.4705,Nitrogen Oxides,TON
+37019,3.070638,Organic Carbon portion of PM2.5-PRI,TON
+37019,11023.108,Hexane,LB
+37005,0.06119286,Propionaldehyde,LB
+37005,0.010792442,Pyrene,LB
+37005,0.00822438,Fluoranthene,LB
+37005,0.0001334678,Nickel,LB
+37005,4.227896e-05,Arsenic,LB
+37005,0.5240996,Acetaldehyde,LB
+37005,0.00245204,PM25-Primary from certain diesel engines,TON
+37005,0.0009565794,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.0848328,Styrene,LB
+37005,0.5041284,Acrolein,LB
+37005,0.5078168,Toluene,LB
+37005,0.0003361448,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.0013203022,Benzo[b]Fluoranthene,LB
+37005,0.004427828,Benzo[a]Pyrene,LB
+37005,0.01458509,Benz[a]Anthracene,LB
+37005,0.000857438,Nickel,LB
+37005,0.01565256,PM10-Primary from certain diesel engines,TON
+37005,0.02072965,PM10 Primary (Filt + Cond),TON
+37081,0.006420801,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.003643806,Chrysene,LB
+37039,0.0008855528,Pyrene,LB
+37039,0.000851022,Benzo[a]Pyrene,LB
+37039,4.835282e-05,Mercury,LB
+37039,0.00092445,Arsenic,LB
+37039,0.004127775,Ammonia,TON
+37039,0.004072002,PM10 Primary (Filt + Cond),TON
+37039,0.001952599,Sulfur Dioxide,TON
+37039,3.43231e-05,Sulfate Portion of PM2.5-PRI,TON
+37029,0.10255238,Formaldehyde,LB
+37029,0.1550076,Benzene,LB
+37029,5.306098e-06,Mercury,LB
+37029,0.07420597,Carbon Monoxide,TON
+37029,4.098746e-07,Nitrate portion of PM2.5-PRI,TON
+37029,0.0499975,Hexane,LB
+37029,0.00010472194,Pyrene,LB
+37029,6.136006e-05,Benzo[b]Fluoranthene,LB
+37025,44.99082,Toluene,LB
+37011,0.000207227,Anthracene,LB
+37011,0.05406998,Propionaldehyde,LB
+37011,0.6399812,Benzene,LB
+37011,0.001466608,Ammonia,TON
+37113,0.0009083116,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.0004280928,Benz[a]Anthracene,LB
+37113,0.0005281102,Acenaphthene,LB
+37113,0.004223232,Methane,TON
+37113,0.003973966,Ammonia,TON
+37113,0.03995803,Nitrogen Oxides,TON
+37113,0.0006011703,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.0005284989,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,3.309822,"2,2,4-Trimethylpentane",LB
+37101,0.04168588,Arsenic,LB
+37101,0.02563206,Acenaphthene,LB
+37101,0.2287445,PM10 Primary (Filt + Cond),TON
+37101,0.1163208,Sulfur Dioxide,TON
+37101,59.13328,Toluene,LB
+37127,5033.554,"2,2,4-Trimethylpentane",LB
+37117,0.013026788,Pyrene,LB
+37117,1.5416554e-06,Chromium (VI),LB
+37117,0.006864062,"Benzo[g,h,i,]Perylene",LB
+37117,0.002025056,Benzo[b]Fluoranthene,LB
+37117,0.011414454,Fluoranthene,LB
+37117,0.04262612,Phenanthrene,LB
+37111,1.741736,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.1361915,Sulfate Portion of PM2.5-PRI,TON
+37111,3.06971,Volatile Organic Compounds,TON
+37111,0.6119394,Chrysene,LB
+37111,0.012766102,"Dibenzo[a,h]Anthracene",LB
+37111,0.2105062,Manganese,LB
+37119,0.1396132,PM2.5 Primary (Filt + Cond),TON
+37119,0.5470934,Pyrene,LB
+37119,0.002470974,"Benzo[g,h,i,]Perylene",LB
+37119,0.006546524,Nickel,LB
+37119,0.01649592,Ammonia,TON
+37113,0.2838268,Styrene,LB
+37113,0.1899302,Acrolein,LB
+37113,0.003328442,Benz[a]Anthracene,LB
+37113,0.06340066,Phenanthrene,LB
+37113,20.91619,Carbon Dioxide,TON
+37113,0.004474735,PM2.5 Primary (Filt + Cond),TON
+37113,8.918083e-05,Sulfate Portion of PM2.5-PRI,TON
+37109,4.117832,Fluoranthene,LB
+37109,2.71059,Acenaphthylene,LB
+37109,493.9928,Formaldehyde,LB
+37109,0.2638222,Manganese,LB
+37109,26.12348,Propionaldehyde,LB
+37109,33.41306,Xylenes (Mixed Isomers),LB
+37109,2.527504,PM10-Primary from certain diesel engines,TON
+37109,0.1190764,Ammonia,TON
+37091,18.566172,Xylenes (Mixed Isomers),LB
+37091,0.08681092,Benzo[a]Pyrene,LB
+37091,16.070646,Benzene,LB
+37091,0.00012279578,Mercury,LB
+37091,5.904784,Carbon Monoxide,TON
+37091,0.1458915,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.0788867,Sulfur Dioxide,TON
+37103,0.11679038,Acenaphthylene,LB
+37103,0.013718048,Benz[a]Anthracene,LB
+37103,0.003225084,Arsenic,LB
+37103,0.06949492,Acenaphthene,LB
+37103,0.19409712,Phenanthrene,LB
+37103,3.216344e-05,Nitrate portion of PM2.5-PRI,TON
+37103,0.2555306,Nitrogen Oxides,TON
+37095,0.009950078,Styrene,LB
+37095,0.05602814,Acrolein,LB
+37095,0.0502574,Toluene,LB
+37095,0.0180775,Hexane,LB
+37095,3.056048e-05,"Benzo[g,h,i,]Perylene",LB
+37095,0.005267824,Fluoranthene,LB
+37095,0.0003198461,Methane,TON
+37095,0.0006959833,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.004082508,Volatile Organic Compounds,TON
+37089,0.521643,Benzo[a]Pyrene,LB
+37089,21.80922,"2,2,4-Trimethylpentane",LB
+37089,84.15694,Naphthalene,LB
+37089,0.5999595,Methane,TON
+37089,17.4461,Carbon Monoxide,TON
+37089,2.454736,Anthracene,LB
+37083,18.437568,Ethyl Benzene,LB
+37083,69.53954,Xylenes (Mixed Isomers),LB
+37087,0.3892419,Nitrous Oxide,TON
+37087,0.1297378,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,1582.9862,Xylenes (Mixed Isomers),LB
+37087,0.0006735238,Chromium (VI),LB
+37087,501.455,"2,2,4-Trimethylpentane",LB
+37087,0.006751782,Mercury,LB
+37061,24.62774,Ethyl Benzene,LB
+37061,18.782802,Hexane,LB
+37061,37.80568,Propionaldehyde,LB
+37061,7.188806,Pyrene,LB
+37061,3.873214,Acenaphthylene,LB
+37061,0.0002414548,Mercury,LB
+37061,0.12103884,Nickel,LB
+37061,80.31502,Naphthalene,LB
+37061,2.099292,PM10-Primary from certain diesel engines,TON
+37061,7.39916,Hexane,LB
+37061,1.5627968,Pyrene,LB
+37061,0.007547388,Benzo[b]Fluoranthene,LB
+37061,7.368672,"2,2,4-Trimethylpentane",LB
+37061,127.83012,Acetaldehyde,LB
+37061,2.580706,Phenanthrene,LB
+37061,18.90718,Carbon Monoxide,TON
+37061,0.005445507,Nitrous Oxide,TON
+37061,0.3129049,PM2.5 Primary (Filt + Cond),TON
+37055,0.00980873,Manganese,LB
+37055,4.163694e-06,Mercury,LB
+37055,0.002014442,Nickel,LB
+37055,0.0001958473,Nitrate portion of PM2.5-PRI,TON
+37055,1.21354,Nitrogen Oxides,TON
+37055,0.1035708,PM10 Primary (Filt + Cond),TON
+37055,0.6773408,Propionaldehyde,LB
+37039,0.06119078,PM2.5 Primary (Filt + Cond),TON
+37037,77.67292,Formaldehyde,LB
+37037,0.02223532,Manganese,LB
+37037,33.85158,Acetaldehyde,LB
+37037,0.7913696,Phenanthrene,LB
+37037,8.547334,Naphthalene,LB
+37025,2.816504,Propionaldehyde,LB
+37025,0.0007873934,Arsenic,LB
+37025,0.004929764,Ammonia,TON
+37025,5.911726e-06,Nitrate portion of PM2.5-PRI,TON
+37029,0.0001016187,Benzo[k]Fluoranthene,LB
+37029,0.063406,Formaldehyde,LB
+37029,9.353956e-05,Benz[a]Anthracene,LB
+37029,0.0003921142,Fluorene,LB
+37131,0.265511,Formaldehyde,LB
+37131,0.3940372,Benzene,LB
+37131,0.008969519,Volatile Organic Compounds,TON
+37169,10.798212,Propionaldehyde,LB
+37169,1.5951802,Fluoranthene,LB
+37169,199.67304,Formaldehyde,LB
+37169,0.006325288,"Dibenzo[a,h]Anthracene",LB
+37169,18.97249,Benzene,LB
+37169,0.03072892,Nickel,LB
+37169,0.04842309,Ammonia,TON
+37155,5.572555,Nitrogen Oxides,TON
+37155,3.8966,Ethyl Benzene,LB
+37155,0.4073538,Anthracene,LB
+37155,10.8169,Benzene,LB
+37163,22.9051,Acrolein,LB
+37163,2.00952,Pyrene,LB
+37163,0.3152472,Benzo[b]Fluoranthene,LB
+37163,1198.6018,Benzene,LB
+37163,2.454346,Fluorene,LB
+37163,0.001249978,Nitrate portion of PM2.5-PRI,TON
+37163,0.3217168,Sulfur Dioxide,TON
+37153,0.05957512,Mercury,LB
+37153,10.08369,Fluorene,LB
+37153,1.831579,Sulfur Dioxide,TON
+37153,1.6529218,Benzo[k]Fluoranthene,LB
+37145,24.80344,Naphthalene,LB
+37145,1.115087,PM2.5 Primary (Filt + Cond),TON
+37145,0.02732534,Sulfur Dioxide,TON
+37145,13.543904,Xylenes (Mixed Isomers),LB
+37145,0.2066448,Benzo[a]Pyrene,LB
+37145,0.6607028,Benz[a]Anthracene,LB
+37145,98.02324,Acetaldehyde,LB
+37145,0.7672734,Acenaphthene,LB
+37145,25.11612,Xylenes (Mixed Isomers),LB
+37129,0.13409284,Xylenes (Mixed Isomers),LB
+37129,7.811938e-06,Benz[a]Anthracene,LB
+37129,0.0609623,Benzene,LB
+37129,0.0002367894,Phenanthrene,LB
+37129,4.897348e-06,Nitrate portion of PM2.5-PRI,TON
+37139,0.007976356,Acrolein,LB
+37139,0.0002403572,Benz[a]Anthracene,LB
+37139,5.673556e-06,Nickel,LB
+37139,8.699496e-06,Arsenic,LB
+37139,0.0005001536,Acenaphthene,LB
+37139,0.02600466,Naphthalene,LB
+37139,0.0005925996,PM10 Primary (Filt + Cond),TON
+37139,6.566621e-05,Sulfur Dioxide,TON
+37139,3.066782,Styrene,LB
+37139,2.695254,Acrolein,LB
+37139,5.35407e-05,Chromium (VI),LB
+37139,0.06840894,Methane,TON
+37139,33.83103,Carbon Monoxide,TON
+37139,0.09021126,PM10 Primary (Filt + Cond),TON
+37127,0.006942746,Arsenic,LB
+37127,0.3233647,PM25-Primary from certain diesel engines,TON
+37127,0.02568306,Ammonia,TON
+37127,0.001025337,Nitrate portion of PM2.5-PRI,TON
+37127,0.3446267,PM2.5 Primary (Filt + Cond),TON
+37127,0.04441121,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.00399799,"Benzo[g,h,i,]Perylene",LB
+37013,7.665866,Xylenes (Mixed Isomers),LB
+37013,0.15751846,Chrysene,LB
+37013,0.011646074,Nickel,LB
+37013,0.7979294,Fluorene,LB
+37013,0.3572643,PM10 Primary (Filt + Cond),TON
+37013,0.005563825,Sulfate Portion of PM2.5-PRI,TON
+37013,0.6532701,Volatile Organic Compounds,TON
+37007,11.933234,Propionaldehyde,LB
+37007,246.4642,Formaldehyde,LB
+37007,0.009027287,Nitrous Oxide,TON
+37007,0.2184493,Organic Carbon portion of PM2.5-PRI,TON
+37007,1.445221,PM10 Primary (Filt + Cond),TON
+37005,0.00103022,Chrysene,LB
+37005,17.76425,Carbon Dioxide,TON
+37005,0.0834664,Propionaldehyde,LB
+37073,1.092658e-05,Chromium (VI),LB
+37073,0.0016091428,Benzo[k]Fluoranthene,LB
+37073,0.0014207108,Benz[a]Anthracene,LB
+37073,0.010797988,Phenanthrene,LB
+37073,0.01066764,Ammonia,TON
+37073,0.1232581,Volatile Organic Compounds,TON
+37073,0.05573342,Styrene,LB
+37073,4.265058,Toluene,LB
+37021,0.235949,Chrysene,LB
+37021,0.04716806,Benzo[a]Pyrene,LB
+37021,27.13034,"2,2,4-Trimethylpentane",LB
+37021,7074.389,Carbon Dioxide,TON
+37021,0.03265332,Sulfate Portion of PM2.5-PRI,TON
+37021,5.272202,Volatile Organic Compounds,TON
+37021,8.385643,Volatile Organic Compounds,TON
+37021,180.45848,Hexane,LB
+37013,3.863582e-06,Chromium (VI),LB
+37013,0.000553503,"Benzo[g,h,i,]Perylene",LB
+37013,0.0003750482,"Dibenzo[a,h]Anthracene",LB
+37013,1.1416928,Benzene,LB
+37013,0.08488902,Fluorene,LB
+37013,0.05436161,PM25-Primary from certain diesel engines,TON
+37013,0.0346092,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.000443088,Nitrous Oxide,TON
+37013,0.004264167,Ammonia,TON
+37019,12232.112,Xylenes (Mixed Isomers),LB
+37019,6387.442,"2,2,4-Trimethylpentane",LB
+37017,4.025732e-06,Benzo[a]Pyrene,LB
+37017,0.005743408,"2,2,4-Trimethylpentane",LB
+37017,6.401804e-07,Manganese,LB
+37017,1.342524e-07,Nickel,LB
+37017,7.558894e-06,Acenaphthene,LB
+37017,0.0003926378,Naphthalene,LB
+37017,1.064111e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,1.074186e-09,Chromium (VI),LB
+37017,4.03603e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,2.693254e-06,Benzo[b]Fluoranthene,LB
+37017,2.484774e-06,Chrysene,LB
+37013,21.4217,Toluene,LB
+37013,1.5541908,Formaldehyde,LB
+37013,0.0004224676,Arsenic,LB
+37013,0.258273,Naphthalene,LB
+37013,0.002471739,PM2.5 Primary (Filt + Cond),TON
+37013,0.7651016,Ethyl Benzene,LB
+37013,4.560936,Toluene,LB
+37013,0.0002998612,Chrysene,LB
+37013,5.580296e-06,Nickel,LB
+37013,0.06213674,Naphthalene,LB
+37013,0.001482213,Methane,TON
+37013,0.0005743555,PM10 Primary (Filt + Cond),TON
+37013,7.763581e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.13469826,Propionaldehyde,LB
+37011,0.02464524,Pyrene,LB
+37011,2.636692,Formaldehyde,LB
+37011,0.005808308,Benz[a]Anthracene,LB
+37011,0.001278622,Methane,TON
+37011,0.002228708,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.00589034,PM2.5 Primary (Filt + Cond),TON
+37011,1.9971048e-05,Styrene,LB
+37011,1.4939664e-05,Acrolein,LB
+37011,0.002475106,Toluene,LB
+37011,0.000534242,Hexane,LB
+37011,7.361234e-07,Anthracene,LB
+37011,0.0017292542,Xylenes (Mixed Isomers),LB
+37011,2.086488e-06,"Benzo[g,h,i,]Perylene",LB
+37011,4.59786e-07,Benzo[b]Fluoranthene,LB
+37011,4.354906e-05,Naphthalene,LB
+37011,2.272043e-09,Nitrate portion of PM2.5-PRI,TON
+37065,6.413652,Xylenes (Mixed Isomers),LB
+37065,5.664406,"2,2,4-Trimethylpentane",LB
+37027,0.0004735572,Pyrene,LB
+37027,0.00136489,"Benzo[g,h,i,]Perylene",LB
+37027,0.2711926,"2,2,4-Trimethylpentane",LB
+37027,0.0013823364,Phenanthrene,LB
+37027,0.002001678,Methane,TON
+37027,0.2669625,Carbon Monoxide,TON
+37027,0.0003435499,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.003504659,PM10 Primary (Filt + Cond),TON
+37165,1.1999294,Ethyl Benzene,LB
+37165,1.1173782,Hexane,LB
+37153,2.915186,Toluene,LB
+37153,2.408852,Xylenes (Mixed Isomers),LB
+37153,0.006070156,"Benzo[g,h,i,]Perylene",LB
+37153,0.002280678,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.001851301,Fluoranthene,LB
+37153,0.0012007806,Benzo[k]Fluoranthene,LB
+37153,0.006112828,Phenanthrene,LB
+37153,1.728986,Carbon Monoxide,TON
+37153,0.00385571,PM2.5 Primary (Filt + Cond),TON
+37153,0.001549014,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.0001132381,Sulfate Portion of PM2.5-PRI,TON
+37153,0.08542187,Volatile Organic Compounds,TON
+37181,0.00947176,"Benzo[g,h,i,]Perylene",LB
+37181,0.0300231,Acenaphthylene,LB
+37181,2.191334,Formaldehyde,LB
+37181,8.16594e-05,"Dibenzo[a,h]Anthracene",LB
+37181,3.17466,"2,2,4-Trimethylpentane",LB
+37181,7.698362,Benzene,LB
+37181,0.0003556502,Nickel,LB
+37181,0.3419292,Naphthalene,LB
+37181,157.3075,Carbon Dioxide,TON
+37181,0.005213093,PM2.5 Primary (Filt + Cond),TON
+37179,296.0858,Propionaldehyde,LB
+37179,5.255616,Benzo[k]Fluoranthene,LB
+37179,3556.514,Carbon Monoxide,TON
+37179,8.794935,Nitrous Oxide,TON
+37179,7.200319,Sulfur Dioxide,TON
+37197,0.2948132,"1,3-Butadiene",LB
+37197,0.229852,Hexane,LB
+37197,0.6165836,Xylenes (Mixed Isomers),LB
+37197,0.0004288794,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.007929838,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.0009245357,Sulfur Dioxide,TON
+37197,0.002283294,"Benzo[g,h,i,]Perylene",LB
+37197,1.2481886,"2,2,4-Trimethylpentane",LB
+37197,0.3394562,Fluorene,LB
+37197,0.01695311,Ammonia,TON
+37197,2.345031,Nitrogen Oxides,TON
+37197,0.005401521,Sulfur Dioxide,TON
+37185,0.1140651,Volatile Organic Compounds,TON
+37185,0.10690978,Acenaphthylene,LB
+37185,0.2534836,Phenanthrene,LB
+37185,0.05853895,PM25-Primary from certain diesel engines,TON
+37189,4.47848,Benzo[a]Pyrene,LB
+37189,12.964872,Acenaphthene,LB
+37189,5.431998,PM2.5 Primary (Filt + Cond),TON
+37189,206.253,Volatile Organic Compounds,TON
+37183,23973.24,"2,2,4-Trimethylpentane",LB
+37199,1.1602722,Pyrene,LB
+37199,0.003243234,"Dibenzo[a,h]Anthracene",LB
+37199,69.44164,Acetaldehyde,LB
+37199,0.1297654,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.06975006,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,1.8100916,Styrene,LB
+37199,7.002036,Propionaldehyde,LB
+37199,0.02269996,Benzo[b]Fluoranthene,LB
+37199,0.00316028,Benzo[k]Fluoranthene,LB
+37199,61.23668,Acetaldehyde,LB
+37199,15.350614,Naphthalene,LB
+37199,0.03804692,Sulfur Dioxide,TON
+37193,8.862162,Hexane,LB
+37193,0.000645439,Arsenic,LB
+37193,119.3048,Carbon Dioxide,TON
+37187,0.4494026,Propionaldehyde,LB
+37187,0.04144304,Pyrene,LB
+37187,0.000455575,Benzo[a]Pyrene,LB
+37187,0.002552804,Nickel,LB
+37187,3.971212,Acetaldehyde,LB
+37183,260.7808,Acrolein,LB
+37183,8.25855,Acenaphthene,LB
+37183,13.86413,PM2.5 Primary (Filt + Cond),TON
+37183,1.604124,Sulfate Portion of PM2.5-PRI,TON
+37183,87.48522,"2,2,4-Trimethylpentane",LB
+37183,10.556616,Acenaphthene,LB
+37183,41.8004,Phenanthrene,LB
+37183,0.1023498,Nitrous Oxide,TON
+37183,3.870375,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.6347774,Sulfate Portion of PM2.5-PRI,TON
+37181,0.002603744,"1,3-Butadiene",LB
+37181,0.00042706,Propionaldehyde,LB
+37181,4.725444e-05,"Benzo[g,h,i,]Perylene",LB
+37181,1.775443e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,1.7617512e-05,Benzo[a]Pyrene,LB
+37181,0.0208638,Benzene,LB
+37181,0.006670276,Acetaldehyde,LB
+37181,1.357338e-05,Methane,TON
+37181,0.1995993,Carbon Dioxide,TON
+37181,5.113394e-06,Ammonia,TON
+37179,16.806962,Ethyl Benzene,LB
+37179,0.710468,Chrysene,LB
+37179,3.457196,Fluorene,LB
+37179,0.2707639,Methane,TON
+37179,1.219243,PM10-Primary from certain diesel engines,TON
+37179,0.3902389,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.015950864,Fluoranthene,LB
+37177,0.0014917202,Benzo[a]Pyrene,LB
+37177,0.2393776,Naphthalene,LB
+37177,0.0111195,PM10-Primary from certain diesel engines,TON
+37177,0.0008737684,Ammonia,TON
+37177,2.612802e-05,Nitrate portion of PM2.5-PRI,TON
+37177,0.2450655,Nitrogen Oxides,TON
+37177,0.0124603,Volatile Organic Compounds,TON
+37013,23.52174,Styrene,LB
+37013,0.8454428,Anthracene,LB
+37013,4.521284,Acenaphthylene,LB
+37013,342.2096,Acetaldehyde,LB
+37013,0.8983345,PM10 Primary (Filt + Cond),TON
+37013,0.00824441,Sulfate Portion of PM2.5-PRI,TON
+37001,0.006298719,Organic Carbon portion of PM2.5-PRI,TON
+37001,1.308127,Naphthalene,LB
+37001,0.008491786,Benzo[b]Fluoranthene,LB
+37001,8.139788,Formaldehyde,LB
+37031,2.385272,Propionaldehyde,LB
+37031,0.045739,Acenaphthylene,LB
+37031,0.010090028,Nickel,LB
+37031,0.02004458,Fluorene,LB
+37031,0.07813852,Methane,TON
+37031,1578.875,Carbon Dioxide,TON
+37031,0.1642553,PM10 Primary (Filt + Cond),TON
+37031,0.001099008,Sulfate Portion of PM2.5-PRI,TON
+37037,0.001010599,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.000728059,Fluoranthene,LB
+37037,2.320004e-05,"Dibenzo[a,h]Anthracene",LB
+37037,0.000452259,Benz[a]Anthracene,LB
+37037,0.0005423786,Nickel,LB
+37037,0.0008305908,Fluorene,LB
+37127,10.094536,Hexane,LB
+37127,22.116,Xylenes (Mixed Isomers),LB
+37127,0.00011510052,Chromium (VI),LB
+37127,0.015814544,Benzo[b]Fluoranthene,LB
+37127,11.559552,"2,2,4-Trimethylpentane",LB
+37127,0.02206056,Arsenic,LB
+37127,0.01063323,Acenaphthene,LB
+37091,0.3178066,Acrolein,LB
+37091,6.885216,Toluene,LB
+37091,0.7557532,Propionaldehyde,LB
+37091,0.005812474,Pyrene,LB
+37091,0.002609652,Benzo[b]Fluoranthene,LB
+37091,0.01735567,Ammonia,TON
+37091,0.3625293,Nitrogen Oxides,TON
+37091,0.009442871,Sulfur Dioxide,TON
+37179,4613.768,Xylenes (Mixed Isomers),LB
+37179,0.2975618,Chrysene,LB
+37179,0.00924027,"Dibenzo[a,h]Anthracene",LB
+37197,0.08890598,"1,3-Butadiene",LB
+37197,0.15443224,Propionaldehyde,LB
+37197,0.0013869812,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.000729,Benzo[b]Fluoranthene,LB
+37197,0.006188732,Ammonia,TON
+37197,0.002898325,Sulfur Dioxide,TON
+37193,1.5492756,Hexane,LB
+37193,3.364248,Xylenes (Mixed Isomers),LB
+37193,1.3451638e-05,Chromium (VI),LB
+37193,0.002410964,"Benzo[g,h,i,]Perylene",LB
+37193,0.003077086,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.003954515,Sulfur Dioxide,TON
+37191,3.040536,Benzo[k]Fluoranthene,LB
+37191,8.65875,Acenaphthene,LB
+37191,191.1145,Volatile Organic Compounds,TON
+37075,2.267176,Naphthalene,LB
+37075,0.8706302,Carbon Monoxide,TON
+37075,0.05588748,PM10 Primary (Filt + Cond),TON
+37075,0.1227026,Volatile Organic Compounds,TON
+37075,0.7022862,"1,3-Butadiene",LB
+37075,3.97257e-06,Chromium (VI),LB
+37075,0.0005518968,"Benzo[g,h,i,]Perylene",LB
+37075,0.01619666,Chrysene,LB
+37071,93.77728,Ethyl Benzene,LB
+37071,0.000843505,Chromium (VI),LB
+37071,11.317602,Fluoranthene,LB
+37071,0.0396396,Benzo[k]Fluoranthene,LB
+37071,5.552462,Acenaphthene,LB
+37071,24.2168,Phenanthrene,LB
+37071,4.112582,Methane,TON
+37071,1.615171,Organic Carbon portion of PM2.5-PRI,TON
+37069,28.7867,Toluene,LB
+37069,8.728588,Hexane,LB
+37069,9.516948,"2,2,4-Trimethylpentane",LB
+37069,30.1728,Benzene,LB
+37069,0.17343386,Manganese,LB
+37069,3.649436,Phenanthrene,LB
+37069,10.46384,Carbon Monoxide,TON
+37067,1836.3556,Ethyl Benzene,LB
+37067,30.1927,Propionaldehyde,LB
+37067,0.0007543364,Chromium (VI),LB
+37067,2.14389,"Benzo[g,h,i,]Perylene",LB
+37067,711.5546,Formaldehyde,LB
+37067,0.018480076,"Dibenzo[a,h]Anthracene",LB
+37067,1.8672894,Acenaphthene,LB
+37067,96.96668,Naphthalene,LB
+37067,23.20654,Nitrogen Oxides,TON
+37059,0.08616546,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,2.922402e-08,Nitrate portion of PM2.5-PRI,TON
+37053,1.053389e-05,PM2.5 Primary (Filt + Cond),TON
+37053,3.897e-06,Sulfur Dioxide,TON
+37053,0.0004780898,Styrene,LB
+37053,0.002577932,"1,3-Butadiene",LB
+37053,0.06679246,Toluene,LB
+37053,0.0004076718,Propionaldehyde,LB
+37053,5.58637e-07,Arsenic,LB
+37053,0.006561286,Acetaldehyde,LB
+37053,0.0010459052,Naphthalene,LB
+37053,0.03505364,Phenanthrene,LB
+37053,0.001375116,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.002463081,Sulfur Dioxide,TON
+37053,0.09665628,Volatile Organic Compounds,TON
+37043,0.881155,Naphthalene,LB
+37043,7.154616,Carbon Monoxide,TON
+37043,0.007869416,Ammonia,TON
+37043,0.0001446801,Sulfate Portion of PM2.5-PRI,TON
+37043,0.01447667,Anthracene,LB
+37043,0.005575148,Benzo[a]Pyrene,LB
+37043,17.703636,Benzene,LB
+37043,0.000630742,Nickel,LB
+37037,2.529458,Anthracene,LB
+37037,29.72002,Carbon Monoxide,TON
+37037,0.6688866,Ammonia,TON
+37037,0.3644675,Sulfur Dioxide,TON
+37037,0.006559732,"Benzo[g,h,i,]Perylene",LB
+37037,0.4032512,PM10-Primary from certain diesel engines,TON
+37037,1.273012,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,131.79146,Acrolein,LB
+37037,3.348734,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,2.028458,Chrysene,LB
+37033,0.703119,Styrene,LB
+37033,0.015562356,Benzo[a]Pyrene,LB
+37033,0.0003581344,"Dibenzo[a,h]Anthracene",LB
+37033,9.741988,Acetaldehyde,LB
+37031,73.71837,Carbon Dioxide,TON
+37031,0.02407995,PM10-Primary from certain diesel engines,TON
+37031,0.004551672,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,0.2602834,Hexane,LB
+37031,0.00225567,Benzo[b]Fluoranthene,LB
+37029,12.07868,Toluene,LB
+37029,7.38714,Xylenes (Mixed Isomers),LB
+37029,0.003171202,"Benzo[g,h,i,]Perylene",LB
+37029,0.0008768116,Benz[a]Anthracene,LB
+37029,0.006117054,Fluorene,LB
+37029,0.9948064,Carbon Monoxide,TON
+37029,0.0007738249,Nitrous Oxide,TON
+37029,0.001201663,PM2.5 Primary (Filt + Cond),TON
+37119,14.979776,Ethyl Benzene,LB
+37119,13.284368,"2,2,4-Trimethylpentane",LB
+37119,0.903158,Benz[a]Anthracene,LB
+37119,0.4234314,Organic Carbon portion of PM2.5-PRI,TON
+37119,2.218163,Volatile Organic Compounds,TON
+37109,0.01196111,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.6720138,Acenaphthene,LB
+37109,0.5329023,PM10-Primary from certain diesel engines,TON
+37109,0.4902622,PM25-Primary from certain diesel engines,TON
+37109,1.203565,Volatile Organic Compounds,TON
+37109,0.02188646,Fluoranthene,LB
+37109,2.5489e-05,Mercury,LB
+37109,0.0820134,Phenanthrene,LB
+37109,0.001897927,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,37.0894,Ethyl Benzene,LB
+37105,73.57702,Acrolein,LB
+37105,1.9331388,Anthracene,LB
+37105,3.821302,Fluoranthene,LB
+37105,36.8873,"2,2,4-Trimethylpentane",LB
+37105,0.0003597972,Mercury,LB
+37105,2.682749,PM10-Primary from certain diesel engines,TON
+37105,0.02790217,Nitrous Oxide,TON
+37105,0.25061,Sulfate Portion of PM2.5-PRI,TON
+37097,0.02202506,Benzo[k]Fluoranthene,LB
+37097,4.807043,PM10-Primary from certain diesel engines,TON
+37097,103.6864,Nitrogen Oxides,TON
+37097,0.2763933,Sulfur Dioxide,TON
+37091,0.1185668,Acrolein,LB
+37091,0.771411,Propionaldehyde,LB
+37091,0.0008551348,Manganese,LB
+37091,0.000623818,Naphthalene,LB
+37091,6.897901e-07,Nitrate portion of PM2.5-PRI,TON
+37091,0.2144559,Nitrogen Oxides,TON
+37091,0.003143304,PM2.5 Primary (Filt + Cond),TON
+37091,3.236359e-05,Sulfate Portion of PM2.5-PRI,TON
+37105,1.3617162,Formaldehyde,LB
+37105,0.01289939,PM10 Primary (Filt + Cond),TON
+37105,0.07351961,Volatile Organic Compounds,TON
+37103,1.1552474,Hexane,LB
+37103,1.456656e-05,Chromium (VI),LB
+37103,0.0012921838,Benzo[b]Fluoranthene,LB
+37103,0.2030528,Fluoranthene,LB
+37103,45.9613,Formaldehyde,LB
+37103,0.4070986,Phenanthrene,LB
+37103,0.0008729,Nitrous Oxide,TON
+37101,52.21136,Fluoranthene,LB
+37101,10.529452,Benzo[k]Fluoranthene,LB
+37101,0.3328506,"Dibenzo[a,h]Anthracene",LB
+37101,193.81688,Phenanthrene,LB
+37101,554310.5,Carbon Dioxide,TON
+37099,1.8352562e-06,Nickel,LB
+37099,0.000422131,Arsenic,LB
+37099,0.00019297822,Acenaphthene,LB
+37099,0.0005388189,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.01277213,Nitrous Oxide,TON
+37099,0.002056572,Organic Carbon portion of PM2.5-PRI,TON
+37099,48.56434,Formaldehyde,LB
+37093,221.664,Formaldehyde,LB
+37093,23.39562,Naphthalene,LB
+37093,2466.457,Carbon Dioxide,TON
+37093,8.258775,Nitrogen Oxides,TON
+37093,1.191099,Volatile Organic Compounds,TON
+37093,7.24921,Ethyl Benzene,LB
+37093,0.04662276,Benzo[b]Fluoranthene,LB
+37093,0.006399018,Benzo[k]Fluoranthene,LB
+37093,0.298876,Chrysene,LB
+37093,0.7461796,Acrolein,LB
+37093,140.56586,Toluene,LB
+37093,0.06015466,Pyrene,LB
+37093,16.6013,Carbon Monoxide,TON
+37089,1.6207956,Nickel,LB
+37089,2.485236,Arsenic,LB
+37089,48.2451,Phenanthrene,LB
+37089,23.67096,PM10 Primary (Filt + Cond),TON
+37089,0.1944505,Sulfate Portion of PM2.5-PRI,TON
+37089,1411.0744,"1,3-Butadiene",LB
+37089,4.996976,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,2.997294,Chrysene,LB
+37089,4.980354,Benzo[a]Pyrene,LB
+37079,4.673088,Hexane,LB
+37079,0.00771466,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.2007482,Chrysene,LB
+37079,0.7663853,PM25-Primary from certain diesel engines,TON
+37079,0.05476347,Sulfur Dioxide,TON
+37083,6383.784,Xylenes (Mixed Isomers),LB
+37073,494.329,Toluene,LB
+37073,0.9914184,Propionaldehyde,LB
+37073,0.0995267,Pyrene,LB
+37073,0.06284748,"Benzo[g,h,i,]Perylene",LB
+37073,0.2716718,Acenaphthylene,LB
+37073,0.016873816,Chrysene,LB
+37073,22.39658,Formaldehyde,LB
+37073,0.017348562,Benz[a]Anthracene,LB
+37073,0.12080666,Fluorene,LB
+37073,0.007920021,Sulfur Dioxide,TON
+37069,1.514662,Volatile Organic Compounds,TON
+37067,0.0005947788,Mercury,LB
+37067,1346.0466,Acetaldehyde,LB
+37067,10.295354,Acenaphthene,LB
+37067,40.53844,Phenanthrene,LB
+37067,1.043975,Methane,TON
+37067,1.959886,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,26.30662,Fluoranthene,LB
+37067,3081.484,Formaldehyde,LB
+37067,76.36014,"2,2,4-Trimethylpentane",LB
+37063,0.3830796,Benz[a]Anthracene,LB
+37063,0.03358676,Arsenic,LB
+37063,0.5583367,PM2.5 Primary (Filt + Cond),TON
+37063,37.23646,Fluoranthene,LB
+37063,13.207232,Manganese,LB
+37063,50.3115,Fluorene,LB
+37063,530.5977,Volatile Organic Compounds,TON
+37057,0.002886178,Manganese,LB
+37057,0.15740262,Phenanthrene,LB
+37057,0.005507008,Ammonia,TON
+37057,0.008063734,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.004066436,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.015161918,Benzo[a]Pyrene,LB
+37055,22.5039,Styrene,LB
+37055,0.0003703022,Chromium (VI),LB
+37055,0.637613,Chrysene,LB
+37055,1504.3834,Formaldehyde,LB
+37055,0.008451194,"Dibenzo[a,h]Anthracene",LB
+37055,36.84676,"2,2,4-Trimethylpentane",LB
+37055,13.914338,Phenanthrene,LB
+37055,0.9707465,Elemental Carbon portion of PM2.5-PRI,TON
+37047,11.988946,Phenanthrene,LB
+37047,5.91885,Fluorene,LB
+37047,2.349617,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.7063418,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.0004287166,Chromium (VI),LB
+37039,9.030544,Ethyl Benzene,LB
+37039,2.64245,Pyrene,LB
+37039,20.71648,Xylenes (Mixed Isomers),LB
+37039,7.700866e-05,Chromium (VI),LB
+37039,0.014846294,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,274.6662,Formaldehyde,LB
+37039,2963.452,Carbon Dioxide,TON
+37039,0.2567965,Elemental Carbon portion of PM2.5-PRI,TON
+37041,9.074808,Hexane,LB
+37033,4.525743,PM10 Primary (Filt + Cond),TON
+37033,7.135444,Anthracene,LB
+37033,6.47193,"Benzo[g,h,i,]Perylene",LB
+37029,0.05699812,Benzo[a]Pyrene,LB
+37029,0.0477371,Sulfate Portion of PM2.5-PRI,TON
+37121,0.00010044186,Anthracene,LB
+37121,0.04592816,Carbon Monoxide,TON
+37105,0.3322731,Methane,TON
+37105,67.72852,Carbon Monoxide,TON
+37105,24.6125,Nitrogen Oxides,TON
+37105,0.017001572,"Benzo[g,h,i,]Perylene",LB
+37105,12.353196,Ethyl Benzene,LB
+37105,54.10214,Toluene,LB
+37105,15.632128,Benzene,LB
+37097,62.88074,Benzene,LB
+37089,0.6551308,Benz[a]Anthracene,LB
+37089,3.81635e-05,Mercury,LB
+37089,1787.093,Carbon Dioxide,TON
+37089,9.276818,Ethyl Benzene,LB
+37085,101.27912,Acrolein,LB
+37085,1588.3338,Formaldehyde,LB
+37085,0.4944066,Benzo[a]Pyrene,LB
+37085,605.4736,Acetaldehyde,LB
+37085,34.12844,Carbon Monoxide,TON
+37085,4.469584,PM10-Primary from certain diesel engines,TON
+37085,2.659534,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.7420902,Ammonia,TON
+37085,0.4172873,Sulfur Dioxide,TON
+37083,23.05056,Toluene,LB
+37083,5.676934,Hexane,LB
+37083,0.006248256,Anthracene,LB
+37083,0.13220022,Propionaldehyde,LB
+37083,0.011242896,Fluoranthene,LB
+37083,0.03190674,Acenaphthylene,LB
+37083,0.003057658,Manganese,LB
+37079,0.0208383,"1,3-Butadiene",LB
+37079,0.4095386,Xylenes (Mixed Isomers),LB
+37079,0.010081736,Naphthalene,LB
+37075,0.8673522,Anthracene,LB
+37075,17.11218,Propionaldehyde,LB
+37075,19.34656,Xylenes (Mixed Isomers),LB
+37075,7.63573,"2,2,4-Trimethylpentane",LB
+37075,29.84612,Benzene,LB
+37075,1.066454,Acenaphthene,LB
+37075,2.340048,"2,2,4-Trimethylpentane",LB
+37075,2.198942e-06,Mercury,LB
+37075,0.001709786,Acenaphthene,LB
+37075,0.001568973,Methane,TON
+37075,0.0002744513,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.0005820875,PM2.5 Primary (Filt + Cond),TON
+37075,1936.5558,Hexane,LB
+37075,2.274016,"Benzo[g,h,i,]Perylene",LB
+37075,0.7096518,Chrysene,LB
+37075,0.2909988,Manganese,LB
+37075,24506.1,Carbon Dioxide,TON
+37075,1.193695,Nitrous Oxide,TON
+37071,15.892698,Styrene,LB
+37071,33.8477,Hexane,LB
+37071,0.04661924,"Benzo[g,h,i,]Perylene",LB
+37071,1.4509734,Chrysene,LB
+37071,1349.5588,Formaldehyde,LB
+37071,0.03070904,"Dibenzo[a,h]Anthracene",LB
+37071,0.2372108,Nickel,LB
+37071,558.9006,Acetaldehyde,LB
+37071,7.973722,Fluorene,LB
+37071,49143.17,Carbon Dioxide,TON
+37071,8.192382,PM10 Primary (Filt + Cond),TON
+37071,5.506857,PM2.5 Primary (Filt + Cond),TON
+37069,1.7270748,"1,3-Butadiene",LB
+37069,2.872186,Propionaldehyde,LB
+37069,57.29772,Formaldehyde,LB
+37069,0.084447,Benz[a]Anthracene,LB
+37069,0.5792242,Phenanthrene,LB
+37069,6.131638,Naphthalene,LB
+37069,0.000419904,Nitrate portion of PM2.5-PRI,TON
+37069,0.006963665,Sulfur Dioxide,TON
+37069,0.19822292,Anthracene,LB
+37069,0.00025519,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.00013980238,Benzo[k]Fluoranthene,LB
+37069,0.01950394,Chrysene,LB
+37069,80.03592,Formaldehyde,LB
+37069,0.2464804,Acenaphthene,LB
+37069,9.186079e-05,Nitrate portion of PM2.5-PRI,TON
+37069,0.04046485,PM10 Primary (Filt + Cond),TON
+37069,8.196654,Ethyl Benzene,LB
+37069,0.5343852,Naphthalene,LB
+37069,9.119327e-05,Sulfate Portion of PM2.5-PRI,TON
+37061,107.11892,Toluene,LB
+37061,0.009972798,Benzo[b]Fluoranthene,LB
+37061,4.782872e-05,Mercury,LB
+37061,0.00267004,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.9010974,Nitrogen Oxides,TON
+37061,0.004508805,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,4.785522,Volatile Organic Compounds,TON
+37057,59.44178,Toluene,LB
+37057,43.68434,Propionaldehyde,LB
+37057,60.21156,Xylenes (Mixed Isomers),LB
+37057,0.0002073416,Chromium (VI),LB
+37057,4.502508,Acenaphthylene,LB
+37057,0.6258576,Benzo[a]Pyrene,LB
+37057,91.68512,Naphthalene,LB
+37057,3.753785,PM10-Primary from certain diesel engines,TON
+37057,0.2096668,Ammonia,TON
+37057,51.38752,Ethyl Benzene,LB
+37057,276.9756,Toluene,LB
+37057,0.13917048,Fluoranthene,LB
+37057,0.435845,Acenaphthylene,LB
+37057,0.02519156,Chrysene,LB
+37055,350.3956,Formaldehyde,LB
+37055,0.1267831,Methane,TON
+37055,0.3883046,PM25-Primary from certain diesel engines,TON
+37053,0.3200116,"1,3-Butadiene",LB
+37053,0.05105292,Propionaldehyde,LB
+37053,0.004531058,Pyrene,LB
+37053,2.953348,Benzene,LB
+37053,0.0002520796,Nickel,LB
+37053,0.0006552436,Organic Carbon portion of PM2.5-PRI,TON
+37039,6.224404,Xylenes (Mixed Isomers),LB
+37039,0.0011613488,"Benzo[g,h,i,]Perylene",LB
+37039,0.3791176,Fluoranthene,LB
+37039,0.009970946,Manganese,LB
+37039,0.06303002,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.001629194,Nitrous Oxide,TON
+37039,1.717784,Nitrogen Oxides,TON
+37039,0.005477044,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.0015721728,Fluorene,LB
+37035,2.395546,Carbon Dioxide,TON
+37035,1.984107e-06,Nitrate portion of PM2.5-PRI,TON
+37035,0.0006798339,PM2.5 Primary (Filt + Cond),TON
+37035,0.0013613148,Pyrene,LB
+37035,0.0004188072,Benzo[k]Fluoranthene,LB
+37035,0.6674844,"2,2,4-Trimethylpentane",LB
+37031,0.05673708,Ethyl Benzene,LB
+37031,0.000856925,Anthracene,LB
+37031,0.0019751182,Fluoranthene,LB
+37031,0.0003152136,Benz[a]Anthracene,LB
+37031,2.30998e-06,Nickel,LB
+37031,0.002809606,Fluorene,LB
+37031,1.472996,Nitrogen Oxides,TON
+37031,0.05161571,PM10 Primary (Filt + Cond),TON
+37025,2.561846,"2,2,4-Trimethylpentane",LB
+37025,0.004236276,Methane,TON
+37025,3.198592e-06,Nitrate portion of PM2.5-PRI,TON
+37025,0.0001265823,Sulfur Dioxide,TON
+37025,0.05763553,Volatile Organic Compounds,TON
+37025,0.0008578628,Chrysene,LB
+37135,32.84452,Carbon Monoxide,TON
+37135,0.01136459,Nitrate portion of PM2.5-PRI,TON
+37135,0.1921873,Benzo[b]Fluoranthene,LB
+37135,1.255025,Chrysene,LB
+37135,0.0267364,"Dibenzo[a,h]Anthracene",LB
+37129,1.0104248,Styrene,LB
+37129,6.360032,Acrolein,LB
+37129,3.995136,Propionaldehyde,LB
+37129,0.8084708,Pyrene,LB
+37129,0.6081844,Fluoranthene,LB
+37129,0.12036602,Chrysene,LB
+37129,7.660118,Benzene,LB
+37129,1234.296,Carbon Dioxide,TON
+37135,0.2825885,Sulfate Portion of PM2.5-PRI,TON
+37135,12088.364,Hexane,LB
+37135,210.664,Propionaldehyde,LB
+37135,7.653228,Benzo[a]Pyrene,LB
+37135,0.176669,"Dibenzo[a,h]Anthracene",LB
+37135,24.33569,Ammonia,TON
+37135,3.287359,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.03381986,Benz[a]Anthracene,LB
+37133,0.05885742,Manganese,LB
+37133,0.01030454,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.0003032758,Chromium (VI),LB
+37123,2.087102,Acenaphthylene,LB
+37123,141.70638,Formaldehyde,LB
+37123,0.1587052,Benzo[a]Pyrene,LB
+37123,317.693,"2,2,4-Trimethylpentane",LB
+37123,0.2987212,Methane,TON
+37123,0.1758132,PM2.5 Primary (Filt + Cond),TON
+37123,0.004431339,Sulfate Portion of PM2.5-PRI,TON
+37113,0.009545379,Nitrous Oxide,TON
+37113,0.1198884,Ammonia,TON
+37113,0.002600132,Nitrate portion of PM2.5-PRI,TON
+37113,27.50512,Nitrogen Oxides,TON
+37113,3.236388,Styrene,LB
+37113,0.011214032,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.14746978,Benzo[a]Pyrene,LB
+37113,2.83225,Phenanthrene,LB
+37113,1.6006862,Fluorene,LB
+37113,70.98748,Styrene,LB
+37113,5.112678,Pyrene,LB
+37113,0.9706684,Benzo[b]Fluoranthene,LB
+37113,0.9571766,Benz[a]Anthracene,LB
+37113,0.5709696,Arsenic,LB
+37113,3.793002,Ammonia,TON
+37111,1178.1618,Xylenes (Mixed Isomers),LB
+37111,2.539018,Acenaphthylene,LB
+37111,0.004086866,Mercury,LB
+37111,0.5247906,Ammonia,TON
+37111,0.07261704,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.1553356,Sulfur Dioxide,TON
+37103,0.003870314,Manganese,LB
+37103,0.10826818,Fluoranthene,LB
+37103,0.0004609534,Benzo[k]Fluoranthene,LB
+37103,0.011271462,Benzo[a]Pyrene,LB
+37091,4.6774e-07,Chromium (VI),LB
+37091,0.0004388384,Manganese,LB
+37091,17.5628,Carbon Dioxide,TON
+37091,0.001880379,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.00014821,Sulfate Portion of PM2.5-PRI,TON
+37105,9.332628,"1,3-Butadiene",LB
+37105,4.022984,Propionaldehyde,LB
+37105,0.4161378,Pyrene,LB
+37105,1078.736,Xylenes (Mixed Isomers),LB
+37105,9.854374e-05,Chromium (VI),LB
+37105,94.006,Formaldehyde,LB
+37105,0.00242347,"Dibenzo[a,h]Anthracene",LB
+37105,0.248673,Acenaphthene,LB
+37105,61.32215,Carbon Monoxide,TON
+37105,0.03318621,Sulfur Dioxide,TON
+37099,0.07334328,Elemental Carbon portion of PM2.5-PRI,TON
+37099,22.82802,Nitrogen Oxides,TON
+37099,0.3698952,PM2.5 Primary (Filt + Cond),TON
+37099,426.9998,Ethyl Benzene,LB
+37099,104.65496,"1,3-Butadiene",LB
+37099,0.2942668,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.3127854,Xylenes (Mixed Isomers),LB
+37093,0.000591106,Acenaphthylene,LB
+37093,2.046684e-06,Arsenic,LB
+37093,1.919103e-05,Ammonia,TON
+37091,1.9834868,Styrene,LB
+37091,10.5671,Acrolein,LB
+37091,7.829264,Xylenes (Mixed Isomers),LB
+37091,0.004270144,"Dibenzo[a,h]Anthracene",LB
+37091,12.56202,Benzene,LB
+37085,7.291508,Phenanthrene,LB
+37085,2.903192,PM10-Primary from certain diesel engines,TON
+37085,1.747008,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.4092281,Ammonia,TON
+37085,3.554685,Volatile Organic Compounds,TON
+37085,57.92824,Toluene,LB
+37085,5.371762,Pyrene,LB
+37085,3.121482,Acenaphthylene,LB
+37085,703.294,Formaldehyde,LB
+37085,0.015304156,"Dibenzo[a,h]Anthracene",LB
+37085,0.1242652,Nickel,LB
+37083,0.3001936,Acrolein,LB
+37083,4.59246e-06,Chromium (VI),LB
+37083,5.59537,Formaldehyde,LB
+37083,0.02199114,Benzo[a]Pyrene,LB
+37083,0.002604338,Manganese,LB
+37083,5.404008,Acetaldehyde,LB
+37083,0.0347234,Fluorene,LB
+37083,197.816,Carbon Dioxide,TON
+37083,0.02189679,PM2.5 Primary (Filt + Cond),TON
+37077,0.04662494,Benz[a]Anthracene,LB
+37077,1.9738012,Benzene,LB
+37077,9.194734,Acetaldehyde,LB
+37065,14.62199,Nitrogen Oxides,TON
+37065,27.0598,Toluene,LB
+37065,8.931604,Hexane,LB
+37065,28.47642,Xylenes (Mixed Isomers),LB
+37065,1.7433034,Acenaphthylene,LB
+37065,355.8938,Formaldehyde,LB
+37065,0.01017715,"Dibenzo[a,h]Anthracene",LB
+37065,7.697414,Carbon Monoxide,TON
+37049,3.70992,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,2.301534,Chrysene,LB
+37049,2028.806,Formaldehyde,LB
+37047,1.190568,Volatile Organic Compounds,TON
+37047,39.85116,Ethyl Benzene,LB
+37047,1.1627602,Acrolein,LB
+37047,147.627,Xylenes (Mixed Isomers),LB
+37047,0.02124306,Chrysene,LB
+37047,19.365324,Formaldehyde,LB
+37047,52.81246,"2,2,4-Trimethylpentane",LB
+37047,0.0002908912,Mercury,LB
+37047,0.12245922,Fluorene,LB
+37041,139.2941,Carbon Dioxide,TON
+37041,0.001256214,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.003371426,PM2.5 Primary (Filt + Cond),TON
+37041,0.679809,Ethyl Benzene,LB
+37041,2.124372,Xylenes (Mixed Isomers),LB
+37041,4.391498e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,2.492816e-05,Benzo[k]Fluoranthene,LB
+37041,0.003671342,Nickel,LB
+37041,0.0018583502,Arsenic,LB
+37031,0.4854882,Ethyl Benzene,LB
+37031,0.18220448,Styrene,LB
+37031,0.11104124,Fluoranthene,LB
+37031,1.5590128,Naphthalene,LB
+37031,0.01775953,Organic Carbon portion of PM2.5-PRI,TON
+37027,483.0872,Benzene,LB
+37109,0.0013593016,Benzo[k]Fluoranthene,LB
+37109,0.005403938,Acenaphthylene,LB
+37109,1.8237656,Formaldehyde,LB
+37109,0.002558208,Benzo[a]Pyrene,LB
+37109,0.03375852,Styrene,LB
+37109,3.810988,Benzene,LB
+37109,0.0011670464,Acenaphthene,LB
+37109,0.009856846,Methane,TON
+37109,201.7523,Carbon Dioxide,TON
+37175,6.116016,Benzene,LB
+37171,579.654,Benzene,LB
+37169,523.9748,Carbon Dioxide,TON
+37169,0.1899435,PM25-Primary from certain diesel engines,TON
+37169,0.08034621,Elemental Carbon portion of PM2.5-PRI,TON
+37167,14.33932,"1,3-Butadiene",LB
+37167,2.118534,Acrolein,LB
+37167,3.167476e-05,Chromium (VI),LB
+37167,0.1555025,Fluoranthene,LB
+37167,0.02683482,Chrysene,LB
+37167,0.03207768,Benzo[a]Pyrene,LB
+37167,0.0007306694,"Dibenzo[a,h]Anthracene",LB
+37167,0.02703812,Benz[a]Anthracene,LB
+37159,11.36302,Styrene,LB
+37159,42.30318,Propionaldehyde,LB
+37159,0.02643432,Benzo[k]Fluoranthene,LB
+37159,1.230562,Chrysene,LB
+37159,87.65546,Naphthalene,LB
+37159,15273.81,Carbon Dioxide,TON
+37159,4.013629,PM10-Primary from certain diesel engines,TON
+37159,2.365206,Elemental Carbon portion of PM2.5-PRI,TON
+37159,4.615642,Volatile Organic Compounds,TON
+37155,4.917168,Toluene,LB
+37155,3.572286e-05,Mercury,LB
+37155,0.5564028,Phenanthrene,LB
+37155,0.3470574,Fluorene,LB
+37155,7.855776,Carbon Monoxide,TON
+37155,0.01527911,PM25-Primary from certain diesel engines,TON
+37155,0.0006947995,Nitrous Oxide,TON
+37155,0.01260373,Ammonia,TON
+37155,0.7085013,Nitrogen Oxides,TON
+37155,0.04589542,PM10 Primary (Filt + Cond),TON
+37155,0.01923277,PM2.5 Primary (Filt + Cond),TON
+37155,0.3661225,Volatile Organic Compounds,TON
+37133,0.3327644,Styrene,LB
+37133,0.597869,Hexane,LB
+37133,1.2434838,Propionaldehyde,LB
+37133,0.2326752,Pyrene,LB
+37133,1.65072,Xylenes (Mixed Isomers),LB
+37133,0.16495674,Fluorene,LB
+37133,218.2057,Carbon Dioxide,TON
+37133,0.05151308,PM25-Primary from certain diesel engines,TON
+37133,0.0005734425,Nitrous Oxide,TON
+37133,0.8834251,Nitrogen Oxides,TON
+37133,0.05407392,PM2.5 Primary (Filt + Cond),TON
+37133,0.01026348,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.1359187,Volatile Organic Compounds,TON
+37133,0.004415432,Manganese,LB
+37133,0.0001925643,Sulfate Portion of PM2.5-PRI,TON
+37133,78.83896,Toluene,LB
+37133,0.02564302,Pyrene,LB
+37133,0.003828386,Benzo[b]Fluoranthene,LB
+37133,4.957118,Formaldehyde,LB
+37125,21.95,Benzene,LB
+37125,103.62636,Acetaldehyde,LB
+37125,25.87692,Naphthalene,LB
+37125,0.0002449301,Nitrate portion of PM2.5-PRI,TON
+37125,1.716368,Nitrogen Oxides,TON
+37125,0.04754574,PM2.5 Primary (Filt + Cond),TON
+37121,1.7836302,Ethyl Benzene,LB
+37121,0.7392358,Styrene,LB
+37121,0.139202,Anthracene,LB
+37121,0.2721742,Pyrene,LB
+37121,3.867494,Xylenes (Mixed Isomers),LB
+37121,0.0006709886,"Benzo[g,h,i,]Perylene",LB
+37121,0.05780731,PM10 Primary (Filt + Cond),TON
+37021,0.4736179,PM10 Primary (Filt + Cond),TON
+37021,4.858978,Acrolein,LB
+37021,0.002666246,"Benzo[g,h,i,]Perylene",LB
+37021,0.01313276,Benzo[b]Fluoranthene,LB
+37021,5.84098,Benzene,LB
+37021,0.00505504,Arsenic,LB
+37019,372.2418,Acetaldehyde,LB
+37019,28.34886,Ethyl Benzene,LB
+37019,12.468212,Styrene,LB
+37019,4.80244,Acenaphthylene,LB
+37015,23.6356,Toluene,LB
+37015,0.03780752,Benzo[b]Fluoranthene,LB
+37015,272.1646,Formaldehyde,LB
+37015,0.005316116,"Dibenzo[a,h]Anthracene",LB
+37015,0.428828,Benz[a]Anthracene,LB
+37015,0.2046495,Ammonia,TON
+37015,0.002243324,Nitrate portion of PM2.5-PRI,TON
+37015,32.412,Nitrogen Oxides,TON
+37015,0.2125023,Organic Carbon portion of PM2.5-PRI,TON
+37015,1.709141,PM10 Primary (Filt + Cond),TON
+37015,0.1151639,Sulfur Dioxide,TON
+37015,0.1065845,Sulfate Portion of PM2.5-PRI,TON
+37015,9.7943e-07,Chromium (VI),LB
+37015,0.02304544,Acenaphthylene,LB
+37015,0.005928888,Chrysene,LB
+37015,0.10422018,"2,2,4-Trimethylpentane",LB
+37015,0.003924127,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.7201326,Propionaldehyde,LB
+37011,0.10093904,Xylenes (Mixed Isomers),LB
+37011,2.716444e-05,Benz[a]Anthracene,LB
+37011,0.088451,Benzene,LB
+37011,0.2400049,Methane,TON
+37011,43.69217,Carbon Dioxide,TON
+37011,0.0002639782,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.007555536,Nitrous Oxide,TON
+37011,0.0002313251,Sulfur Dioxide,TON
+37011,0.02846373,Volatile Organic Compounds,TON
+37001,0.2958358,Anthracene,LB
+37001,0.005205572,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.002808718,Benzo[k]Fluoranthene,LB
+37001,0.4362756,Acenaphthylene,LB
+37001,1.0661948,Phenanthrene,LB
+37001,1239.214,Carbon Dioxide,TON
+37001,0.09823657,Organic Carbon portion of PM2.5-PRI,TON
+37001,1.1187586,Styrene,LB
+37075,0.0002265334,Fluoranthene,LB
+37075,0.000250118,Benzo[a]Pyrene,LB
+37075,0.00011759922,Benz[a]Anthracene,LB
+37075,6.92863e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.0003081223,Nitrous Oxide,TON
+37075,0.0003433833,PM2.5 Primary (Filt + Cond),TON
+37075,0.0005116698,Sulfur Dioxide,TON
+37157,0.234052,"1,3-Butadiene",LB
+37157,1.8887954,Hexane,LB
+37157,0.0014361988,Anthracene,LB
+37157,3.453318,Xylenes (Mixed Isomers),LB
+37157,0.0017387912,Benzo[k]Fluoranthene,LB
+37157,0.003262382,Benzo[a]Pyrene,LB
+37157,5.005408,Benzene,LB
+37157,0.00017294668,Mercury,LB
+37157,0.008789694,Phenanthrene,LB
+37157,0.08051446,Naphthalene,LB
+37157,2.022248,Carbon Monoxide,TON
+37157,0.003922684,Nitrous Oxide,TON
+37157,1.227858e-05,Nitrate portion of PM2.5-PRI,TON
+37125,0.0009526548,Benzo[a]Pyrene,LB
+37125,4.0364e-05,Mercury,LB
+37125,0.000771742,Arsenic,LB
+37125,0.04504138,Nitrogen Oxides,TON
+37125,0.0006287776,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.002154881,Sulfur Dioxide,TON
+37125,4.247909e-05,Sulfate Portion of PM2.5-PRI,TON
+37119,4.497978,Ethyl Benzene,LB
+37119,19.705576,Toluene,LB
+37119,0.03499564,Acenaphthylene,LB
+37119,13.239238,Formaldehyde,LB
+37119,0.0256241,Benzo[a]Pyrene,LB
+37119,0.0005966316,"Dibenzo[a,h]Anthracene",LB
+37119,0.007474046,Acenaphthene,LB
+37013,2.099364,Acrolein,LB
+37013,1.9880606,Toluene,LB
+37013,0.0008958912,Benzo[k]Fluoranthene,LB
+37013,0.04153462,Chrysene,LB
+37013,0.01441053,Methane,TON
+37013,0.02580251,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.3639744,Styrene,LB
+37007,27.8335,Toluene,LB
+37019,0.3820448,Styrene,LB
+37019,0.02275154,Benzo[a]Pyrene,LB
+37019,0.3635062,Phenanthrene,LB
+37019,3.23196,Naphthalene,LB
+37019,0.1443948,PM10-Primary from certain diesel engines,TON
+37019,0.0004028331,Nitrate portion of PM2.5-PRI,TON
+37019,0.03436642,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.1156751,Xylenes (Mixed Isomers),LB
+37015,1.739474e-08,Chromium (VI),LB
+37015,9.964682e-06,Mercury,LB
+37015,0.001398645,Ammonia,TON
+37015,0.001150639,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.00203106,Propionaldehyde,LB
+37013,0.2393296,Xylenes (Mixed Isomers),LB
+37013,0.0004715192,Acenaphthylene,LB
+37013,2.69386e-06,Arsenic,LB
+37009,1.3439212,Acrolein,LB
+37009,0.873754,Propionaldehyde,LB
+37009,4.841214e-06,Mercury,LB
+37009,7.515522,Acetaldehyde,LB
+37009,0.05282672,Acenaphthene,LB
+37009,0.01764035,Organic Carbon portion of PM2.5-PRI,TON
+37009,1574.3036,Ethyl Benzene,LB
+37009,0.7715014,Benzo[b]Fluoranthene,LB
+37009,3.595806,Fluoranthene,LB
+37009,11.14245,Acenaphthylene,LB
+37009,0.2994047,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.4675053,Methane,TON
+37003,0.00019091256,Benzo[k]Fluoranthene,LB
+37003,0.4315928,Acrolein,LB
+37003,0.015159392,Benz[a]Anthracene,LB
+37003,0.2192596,Nitrogen Oxides,TON
+37003,0.00649327,Organic Carbon portion of PM2.5-PRI,TON
+37003,23.62888,Phenanthrene,LB
+37003,0.4566408,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.9216375,Sulfur Dioxide,TON
+37075,0.2974506,Ethyl Benzene,LB
+37075,0.0227411,Volatile Organic Compounds,TON
+37199,0.017154808,Ethyl Benzene,LB
+37199,0.011162682,"1,3-Butadiene",LB
+37199,7.122914e-05,Anthracene,LB
+37199,0.0003231292,Pyrene,LB
+37199,5.134528e-05,Chrysene,LB
+37199,0.00010938924,Acenaphthene,LB
+37199,0.0006011462,Naphthalene,LB
+37187,359.6654,Toluene,LB
+37187,0.0922517,Pyrene,LB
+37187,2.35302e-05,Chromium (VI),LB
+37187,0.01722786,Benzo[k]Fluoranthene,LB
+37187,78.91316,"2,2,4-Trimethylpentane",LB
+37187,12.07672,Acetaldehyde,LB
+37187,0.11146036,Fluorene,LB
+37187,1.594295,Volatile Organic Compounds,TON
+37183,0.00286099,Acrolein,LB
+37183,0.0064788,Toluene,LB
+37183,0.01861481,Propionaldehyde,LB
+37183,0.005546568,Xylenes (Mixed Isomers),LB
+37183,0.745569,Formaldehyde,LB
+37183,6.88541e-05,Manganese,LB
+37183,0.0003672478,Nitrous Oxide,TON
+37183,5.39517e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.0009674299,Volatile Organic Compounds,TON
+37177,1.7885208,Toluene,LB
+37177,1.7667578,Xylenes (Mixed Isomers),LB
+37177,0.14837958,Acenaphthylene,LB
+37177,0.0046708,Nickel,LB
+37177,0.0016813492,Arsenic,LB
+37177,0.0005128495,Nitrous Oxide,TON
+37177,0.001079917,Sulfate Portion of PM2.5-PRI,TON
+37045,4463.314,Hexane,LB
+37045,5903.032,"2,2,4-Trimethylpentane",LB
+37041,0.000260782,Arsenic,LB
+37041,0.001384815,Ammonia,TON
+37041,0.002080363,Methane,TON
+37041,95.11295,Carbon Dioxide,TON
+37037,0.7407752,Benzene,LB
+37037,8.389838,Propionaldehyde,LB
+37037,0.00334404,Pyrene,LB
+37037,0.4499392,Xylenes (Mixed Isomers),LB
+37037,1.791632,Methane,TON
+37037,283.6042,Formaldehyde,LB
+37033,0.09164778,Pyrene,LB
+37033,22.95878,Formaldehyde,LB
+37033,2.266338e-05,"Dibenzo[a,h]Anthracene",LB
+37033,1.0482294,Propionaldehyde,LB
+37033,0.005514214,Nickel,LB
+37033,0.01873073,Methane,TON
+37033,0.0006058713,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.1775839,Nitrogen Oxides,TON
+37033,0.0008235661,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,5.420292e-08,Chromium (VI),LB
+37027,0.005466512,Manganese,LB
+37027,0.0007208188,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.05832764,Styrene,LB
+37155,0.321814,"1,3-Butadiene",LB
+37155,0.002028286,Benzo[k]Fluoranthene,LB
+37155,3.69352e-05,Arsenic,LB
+37155,0.7679842,Acetaldehyde,LB
+37155,0.124933,Naphthalene,LB
+37151,0.08022918,Sulfate Portion of PM2.5-PRI,TON
+37151,20.3282,Ethyl Benzene,LB
+37151,48.15398,Acrolein,LB
+37151,2.1804,Anthracene,LB
+37151,4.72396,Fluoranthene,LB
+37151,613.1754,Formaldehyde,LB
+37151,0.03097618,Arsenic,LB
+37143,0.00285769,"Benzo[g,h,i,]Perylene",LB
+37143,0.004940542,Fluoranthene,LB
+37143,0.002957664,Methane,TON
+37143,3.375829e-06,Nitrate portion of PM2.5-PRI,TON
+37143,5.53182,Hexane,LB
+37139,2277.074,Ethyl Benzene,LB
+37139,3512.84,Benzene,LB
+37123,4.942788e-05,Chromium (VI),LB
+37123,1.371104,Fluoranthene,LB
+37123,0.12895616,Benzo[a]Pyrene,LB
+37123,0.5940936,Acenaphthene,LB
+37123,5.135355,Carbon Monoxide,TON
+37123,2855.948,Carbon Dioxide,TON
+37123,0.002221106,Nitrate portion of PM2.5-PRI,TON
+37123,0.01533905,Sulfate Portion of PM2.5-PRI,TON
+37119,36.69958,Hexane,LB
+37119,131.62802,Benzene,LB
+37119,2.690824,PM10-Primary from certain diesel engines,TON
+37115,0.12067952,Acrolein,LB
+37115,18.417064,Xylenes (Mixed Isomers),LB
+37115,0.00311386,Benzo[b]Fluoranthene,LB
+37115,2.809539,Carbon Monoxide,TON
+37115,0.0008975982,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.001882559,Ammonia,TON
+37101,6.596364,Naphthalene,LB
+37101,2022.858,Carbon Dioxide,TON
+37101,0.03043392,Ammonia,TON
+37101,1.579824,Hexane,LB
+37101,2.52952e-05,Chromium (VI),LB
+37073,0.1009792,Styrene,LB
+37073,0.5662816,"1,3-Butadiene",LB
+37073,0.00507417,Methane,TON
+37073,0.0003940302,Elemental Carbon portion of PM2.5-PRI,TON
+37081,41.5293,Ethyl Benzene,LB
+37081,0.05039316,Anthracene,LB
+37081,0.05732436,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,155.77136,Benzene,LB
+37081,46122.28,Ethyl Benzene,LB
+37081,23.09452,Chrysene,LB
+37081,422.4594,Phenanthrene,LB
+37081,42.91008,PM2.5 Primary (Filt + Cond),TON
+37081,1.185641,Sulfate Portion of PM2.5-PRI,TON
+37067,0.05840114,Benzo[k]Fluoranthene,LB
+37067,83.15868,"2,2,4-Trimethylpentane",LB
+37067,231.8144,Benzene,LB
+37067,0.01647294,Elemental Carbon portion of PM2.5-PRI,TON
+37067,1146.9268,Acrolein,LB
+37067,1214.5124,Propionaldehyde,LB
+37067,42981.52,"2,2,4-Trimethylpentane",LB
+37067,17.525104,Manganese,LB
+37067,20345.72,Acetaldehyde,LB
+37067,3140.084,Naphthalene,LB
+37065,0.0005220816,"Benzo[g,h,i,]Perylene",LB
+37065,0.0006566034,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,1.278793,Naphthalene,LB
+37065,0.0614586,PM10-Primary from certain diesel engines,TON
+37065,0.03711205,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.0246554,Anthracene,LB
+37043,0.5335668,Xylenes (Mixed Isomers),LB
+37043,0.05470596,Fluoranthene,LB
+37043,0.000228779,Benzo[k]Fluoranthene,LB
+37043,0.02181896,Acenaphthene,LB
+37043,0.01965333,PM10-Primary from certain diesel engines,TON
+37043,0.03945957,Volatile Organic Compounds,TON
+37037,1.2698458,Propionaldehyde,LB
+37037,4.13283e-05,Chromium (VI),LB
+37037,0.09997434,Fluoranthene,LB
+37037,0.007921076,Arsenic,LB
+37037,0.3656906,Phenanthrene,LB
+37037,0.0001287988,Nitrate portion of PM2.5-PRI,TON
+37037,3.437915,Nitrogen Oxides,TON
+37037,0.001381636,Sulfate Portion of PM2.5-PRI,TON
+37035,3.28078,Benz[a]Anthracene,LB
+37035,401.1688,Benzene,LB
+37035,0.5762394,Nickel,LB
+37035,0.3163685,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,3.657418e-05,Fluoranthene,LB
+37035,9.257786e-06,Benz[a]Anthracene,LB
+37035,0.008018416,Acetaldehyde,LB
+37035,2.641021e-05,PM10 Primary (Filt + Cond),TON
+37031,2.893946,Fluorene,LB
+37031,0.3346478,Elemental Carbon portion of PM2.5-PRI,TON
+37031,1.084865,PM2.5 Primary (Filt + Cond),TON
+37031,0.02453292,Arsenic,LB
+37031,190.98298,Acetaldehyde,LB
+37031,5.206486,Phenanthrene,LB
+37031,36.08602,Toluene,LB
+37031,11.509962,Hexane,LB
+37025,3.975798,Styrene,LB
+37025,3.1869,Propionaldehyde,LB
+37025,0.2070108,"Benzo[g,h,i,]Perylene",LB
+37025,0.015518144,Arsenic,LB
+37025,0.1180279,Methane,TON
+37025,0.1338867,Nitrous Oxide,TON
+37027,0.02191784,Anthracene,LB
+37027,0.01216359,Methane,TON
+37027,2.941112e-05,Nitrate portion of PM2.5-PRI,TON
+37027,0.007333884,Sulfur Dioxide,TON
+37027,0.0003904403,Sulfate Portion of PM2.5-PRI,TON
+37027,0.006232866,Benz[a]Anthracene,LB
+37027,0.0008054436,Nickel,LB
+37027,0.0521973,Fluorene,LB
+37175,719.6032,Ethyl Benzene,LB
+37175,5994.362,Toluene,LB
+37173,119.16854,Benzene,LB
+37159,0.07484958,Benzo[a]Pyrene,LB
+37159,2.63966,"2,2,4-Trimethylpentane",LB
+37159,1310.657,Carbon Dioxide,TON
+37151,1.3716932,Anthracene,LB
+37151,0.5705642,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,1.6058916,Acenaphthene,LB
+37151,83.37858,Naphthalene,LB
+37151,0.4048495,Sulfur Dioxide,TON
+37141,0.02806328,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.1538205,PM10 Primary (Filt + Cond),TON
+37141,1.5453452,Styrene,LB
+37141,7.610372,"1,3-Butadiene",LB
+37141,1.255606,Propionaldehyde,LB
+37141,0.02999518,Benzo[b]Fluoranthene,LB
+37141,0.3057186,Acenaphthylene,LB
+37141,3.47772,Naphthalene,LB
+37141,33.35111,Carbon Monoxide,TON
+37137,0.0005244664,"Benzo[g,h,i,]Perylene",LB
+37137,0.11375624,Fluoranthene,LB
+37137,0.468956,"2,2,4-Trimethylpentane",LB
+37137,1.8280312,Benzene,LB
+37137,2.12476,Naphthalene,LB
+37137,0.0440636,PM10-Primary from certain diesel engines,TON
+37137,0.0001312062,Nitrate portion of PM2.5-PRI,TON
+37117,27.37316,Toluene,LB
+37117,20.75656,Hexane,LB
+37123,7.730776e-06,Anthracene,LB
+37123,2.263264e-05,"Benzo[g,h,i,]Perylene",LB
+37123,4.956928e-06,Benzo[b]Fluoranthene,LB
+37123,0.0028661,Formaldehyde,LB
+37123,0.006037308,"2,2,4-Trimethylpentane",LB
+37123,0.002774636,Acetaldehyde,LB
+37123,1.778748e-05,Fluorene,LB
+37123,5.418264e-06,Methane,TON
+37109,3.63866,Hexane,LB
+37109,0.02342492,Phenanthrene,LB
+37109,0.008745132,Fluorene,LB
+37109,0.0007315197,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.15025728,Manganese,LB
+37105,0.00014079046,Mercury,LB
+37105,0.0294374,Arsenic,LB
+37105,41.13898,Naphthalene,LB
+37105,0.3571489,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.01605785,Nitrous Oxide,TON
+37105,0.141577,Ammonia,TON
+37105,0.004321063,Nitrate portion of PM2.5-PRI,TON
+37105,9.989776,Hexane,LB
+37105,0.014944812,"Benzo[g,h,i,]Perylene",LB
+37105,0.07272486,Benzo[b]Fluoranthene,LB
+37103,19.654598,Acrolein,LB
+37103,7.63303,Hexane,LB
+37103,0.003771852,Benzo[k]Fluoranthene,LB
+37103,2.469226,Phenanthrene,LB
+37103,0.08807438,Sulfur Dioxide,TON
+37103,0.04746328,Manganese,LB
+37103,0.6615142,PM25-Primary from certain diesel engines,TON
+37103,0.00535062,Nitrous Oxide,TON
+37103,12.494884,Xylenes (Mixed Isomers),LB
+37103,170.33008,Formaldehyde,LB
+37103,0.08513698,Methane,TON
+37101,0.0101427,Benzo[k]Fluoranthene,LB
+37101,0.8204778,Benz[a]Anthracene,LB
+37101,1.1084938,Acenaphthene,LB
+37101,4.80234,Styrene,LB
+37101,18.213126,Propionaldehyde,LB
+37101,1.3181854,Pyrene,LB
+37101,3493.312,Xylenes (Mixed Isomers),LB
+37101,0.0003376044,Chromium (VI),LB
+37101,1.155808,Fluoranthene,LB
+37101,0.2386088,Chrysene,LB
+37101,0.3604168,Benzo[a]Pyrene,LB
+37101,0.04219948,Nickel,LB
+37101,0.064709,Arsenic,LB
+37101,0.731876,Ammonia,TON
+37101,0.5105508,PM10 Primary (Filt + Cond),TON
+37097,0.05494918,Acrolein,LB
+37097,2.19249,Hexane,LB
+37097,5.19672,Xylenes (Mixed Isomers),LB
+37097,0.002464778,Benzo[b]Fluoranthene,LB
+37097,0.004804896,Fluoranthene,LB
+37097,1.3630026,"2,2,4-Trimethylpentane",LB
+37097,0.005949202,Fluorene,LB
+37097,1.497957e-05,Nitrate portion of PM2.5-PRI,TON
+37097,0.00271153,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.004090906,Sulfur Dioxide,TON
+37093,1.3017386e-05,Chromium (VI),LB
+37093,0.10375198,Chrysene,LB
+37093,6.902864,Benzene,LB
+37093,0.018286054,Manganese,LB
+37089,0.002825014,Ethyl Benzene,LB
+37089,0.0005053424,"1,3-Butadiene",LB
+37089,0.00010627466,Propionaldehyde,LB
+37089,4.42768e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,4.39457e-06,Benzo[a]Pyrene,LB
+37089,1.671574e-07,Arsenic,LB
+37089,5.335496e-06,Acenaphthene,LB
+37089,6.952349e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37089,1.550013e-07,Sulfate Portion of PM2.5-PRI,TON
+37087,3.70715e-06,Anthracene,LB
+37087,0.002267358,"2,2,4-Trimethylpentane",LB
+37087,1.0846504e-07,Nickel,LB
+37087,0.0011866608,Acetaldehyde,LB
+37087,4.135286e-06,Acenaphthene,LB
+37087,8.222964e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.0002410968,Nitrogen Oxides,TON
+37081,0.00012211372,Benz[a]Anthracene,LB
+37081,0.2408378,Benzene,LB
+37081,0.00015435202,Manganese,LB
+37081,2.375988e-06,Mercury,LB
+37081,0.0012355346,Phenanthrene,LB
+37081,0.0002928358,PM2.5 Primary (Filt + Cond),TON
+37081,8.908576e-06,Sulfate Portion of PM2.5-PRI,TON
+37081,0.005020138,Styrene,LB
+37059,0.0011302064,"Dibenzo[a,h]Anthracene",LB
+37059,1.339141,Volatile Organic Compounds,TON
+37061,0.5286456,Toluene,LB
+37061,0.0002367512,Pyrene,LB
+37061,0.04552532,Formaldehyde,LB
+37061,0.13051288,Benzene,LB
+37061,7.660416e-08,Mercury,LB
+37061,0.04847235,Carbon Monoxide,TON
+37061,2.930257e-05,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.002621986,Volatile Organic Compounds,TON
+37055,0.0002542158,Benz[a]Anthracene,LB
+37055,0.0003405652,Methane,TON
+37055,0.03394758,Nitrogen Oxides,TON
+37055,0.0008311666,"Benzo[g,h,i,]Perylene",LB
+37055,0.0002508778,Chrysene,LB
+37051,172.1578,Volatile Organic Compounds,TON
+37047,22.32578,Ethyl Benzene,LB
+37047,33.25844,Propionaldehyde,LB
+37047,53.9333,Xylenes (Mixed Isomers),LB
+37047,0.0288188,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,682.031,Formaldehyde,LB
+37047,0.015648716,"Dibenzo[a,h]Anthracene",LB
+37047,0.13658284,Nickel,LB
+37047,20.781,Carbon Monoxide,TON
+37047,0.02365389,Nitrous Oxide,TON
+37047,1.094231,PM2.5 Primary (Filt + Cond),TON
+37047,62.22324,Propionaldehyde,LB
+37047,0.09812862,Benzo[a]Pyrene,LB
+37047,3.889744,Acenaphthene,LB
+37047,7745.69,Carbon Dioxide,TON
+37177,7.497686,Acrolein,LB
+37177,0.1444158,Benzo[k]Fluoranthene,LB
+37177,2.02434,Phenanthrene,LB
+37177,0.7502504,Fluorene,LB
+37177,0.6060453,PM10 Primary (Filt + Cond),TON
+37175,5.125924,Xylenes (Mixed Isomers),LB
+37175,0.00325913,"Benzo[g,h,i,]Perylene",LB
+37175,0.004020762,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.05298492,Benzo[a]Pyrene,LB
+37175,0.2410624,Acenaphthene,LB
+37175,0.002439468,Nitrous Oxide,TON
+37175,0.007548966,Ammonia,TON
+37161,2.608403,Volatile Organic Compounds,TON
+37161,12.340086,Hexane,LB
+37161,0.02408568,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,1.043828,Benz[a]Anthracene,LB
+37161,0.0308212,Arsenic,LB
+37161,0.4368978,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.01887858,Nitrous Oxide,TON
+37161,1.16526,PM2.5 Primary (Filt + Cond),TON
+37155,16.472408,Styrene,LB
+37155,115.4367,Xylenes (Mixed Isomers),LB
+37155,0.2088848,Benzo[b]Fluoranthene,LB
+37155,8.161466,Fluoranthene,LB
+37155,1.3876958,Chrysene,LB
+37155,0.15565796,Arsenic,LB
+37155,14.412382,Phenanthrene,LB
+37155,0.9775194,Methane,TON
+37155,6.29163,PM10-Primary from certain diesel engines,TON
+37155,131.70662,Toluene,LB
+37155,0.03083372,"Benzo[g,h,i,]Perylene",LB
+37155,0.3691062,Nickel,LB
+37161,1.913172,PM10-Primary from certain diesel engines,TON
+37161,1.834123,PM2.5 Primary (Filt + Cond),TON
+37161,13.040614,Ethyl Benzene,LB
+37143,0.003923824,"Benzo[g,h,i,]Perylene",LB
+37143,0.01919721,Benzo[b]Fluoranthene,LB
+37143,0.2803808,Acenaphthene,LB
+37143,2.450185,Carbon Monoxide,TON
+37143,0.01184077,Sulfur Dioxide,TON
+37143,0.008102086,Sulfate Portion of PM2.5-PRI,TON
+37143,103.94698,Hexane,LB
+37143,0.2233964,Pyrene,LB
+37143,0.04320908,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,135.5602,Benzene,LB
+37143,0.0009706916,Mercury,LB
+37143,0.2732,Fluorene,LB
+37143,0.01131572,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.0001329562,Nitrate portion of PM2.5-PRI,TON
+37143,0.1221108,PM10 Primary (Filt + Cond),TON
+37143,0.03652428,Sulfur Dioxide,TON
+37131,4.056234,Hexane,LB
+37131,9.004574,Propionaldehyde,LB
+37131,4.516012e-05,Chromium (VI),LB
+37131,0.03775938,Benzo[b]Fluoranthene,LB
+37131,2.467762,Styrene,LB
+37131,2.067018,Phenanthrene,LB
+37129,35.32952,Acrolein,LB
+37129,22.43268,Propionaldehyde,LB
+37129,0.007359324,"Benzo[g,h,i,]Perylene",LB
+37129,0.10720468,Manganese,LB
+37129,0.05545948,Nickel,LB
+37129,23.25408,Carbon Monoxide,TON
+37129,0.1364968,Ammonia,TON
+37129,2.504538,Volatile Organic Compounds,TON
+37129,0.000832702,Benzo[k]Fluoranthene,LB
+37129,5.003546,Benzene,LB
+37129,3.25538e-06,Mercury,LB
+37129,0.02564102,Phenanthrene,LB
+37129,13.61443,Carbon Dioxide,TON
+37121,102.90762,Formaldehyde,LB
+37121,0.18391758,Benz[a]Anthracene,LB
+37121,0.00885976,Arsenic,LB
+37121,3.279056,Carbon Monoxide,TON
+37121,0.0378528,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.3164854,"1,3-Butadiene",LB
+37111,0.6372678,Xylenes (Mixed Isomers),LB
+37111,2.577036e-06,Chromium (VI),LB
+37111,0.0002681258,Benzo[k]Fluoranthene,LB
+37111,9.687226,Formaldehyde,LB
+37111,0.01195332,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.0001859852,Nitrous Oxide,TON
+37111,0.0007296058,Sulfate Portion of PM2.5-PRI,TON
+37111,76.43492,Acenaphthylene,LB
+37111,16323.042,Benzene,LB
+37111,33.99714,Fluorene,LB
+37111,526.8983,Nitrogen Oxides,TON
+37111,0.1868581,Sulfate Portion of PM2.5-PRI,TON
+37111,0.002484048,"Dibenzo[a,h]Anthracene",LB
+37111,56.517,Acetaldehyde,LB
+37111,1.3492154,Phenanthrene,LB
+37111,0.502368,Fluorene,LB
+37111,12.879364,Naphthalene,LB
+37111,0.003240712,Sulfate Portion of PM2.5-PRI,TON
+37111,478.5296,Hexane,LB
+37111,4.125342,Propionaldehyde,LB
+37111,0.415501,Pyrene,LB
+37111,0.2881836,"Benzo[g,h,i,]Perylene",LB
+37111,0.07679452,Benzo[k]Fluoranthene,LB
+37109,0.08755252,"Dibenzo[a,h]Anthracene",LB
+37109,7360.212,"2,2,4-Trimethylpentane",LB
+37109,2651.82,Acetaldehyde,LB
+37109,131832.4,Carbon Dioxide,TON
+37103,0.019462456,Xylenes (Mixed Isomers),LB
+37103,1.697851e-09,Chromium (VI),LB
+37103,1.8830036e-05,"Benzo[g,h,i,]Perylene",LB
+37103,0.006371498,"2,2,4-Trimethylpentane",LB
+37103,7.656208e-07,Manganese,LB
+37103,2.122314e-07,Nickel,LB
+37103,5.709878e-06,Methane,TON
+37103,3.952395e-06,Nitrous Oxide,TON
+37103,0.0004623371,Nitrogen Oxides,TON
+37101,65.28198,Nitrogen Oxides,TON
+37101,44.39798,Acrolein,LB
+37101,1771.4344,Hexane,LB
+37101,2.50173,"Benzo[g,h,i,]Perylene",LB
+37101,11.9262,Phenanthrene,LB
+37101,4.441524,Fluorene,LB
+37091,0.0007589618,Acenaphthylene,LB
+37091,2.138378e-05,Manganese,LB
+37091,5.22277e-06,Nickel,LB
+37091,0.002901195,Volatile Organic Compounds,TON
+37089,37.70522,"1,3-Butadiene",LB
+37089,0.04815948,"Benzo[g,h,i,]Perylene",LB
+37089,6.19448,Acenaphthylene,LB
+37089,1.4899566,Chrysene,LB
+37089,777.5542,Acetaldehyde,LB
+37089,4.701423,PM25-Primary from certain diesel engines,TON
+37089,2.658474,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.7535697,Ammonia,TON
+37089,5.310143,PM2.5 Primary (Filt + Cond),TON
+37089,2.425348,Ethyl Benzene,LB
+37089,0.004247402,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,31.07474,Acetaldehyde,LB
+37117,0.00773634,Fluoranthene,LB
+37117,10.018896,Formaldehyde,LB
+37117,4.717184,"2,2,4-Trimethylpentane",LB
+37117,12.455924,Benzene,LB
+37117,56.9402,Acetaldehyde,LB
+37117,0.003590324,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,5.327672,Hexane,LB
+37175,0.8452688,Acenaphthylene,LB
+37175,0.36502,Benz[a]Anthracene,LB
+37175,0.0246897,Arsenic,LB
+37175,0.8175885,PM25-Primary from certain diesel engines,TON
+37175,1.528667,PM10 Primary (Filt + Cond),TON
+37175,3.880728,Ethyl Benzene,LB
+37175,117.18398,Formaldehyde,LB
+37175,0.014569366,Manganese,LB
+37175,50.6295,Acetaldehyde,LB
+37175,12.763622,Naphthalene,LB
+37175,5.663206,Carbon Monoxide,TON
+37175,0.1103107,PM10-Primary from certain diesel engines,TON
+37175,0.02010543,Ammonia,TON
+37175,0.005478209,Sulfur Dioxide,TON
+37165,0.010671126,Benzo[b]Fluoranthene,LB
+37165,0.2657934,Benz[a]Anthracene,LB
+37165,5.142924,Styrene,LB
+37165,8.665582,Hexane,LB
+37165,9.427218e-05,Chromium (VI),LB
+37165,0.05410196,Nickel,LB
+37165,151.4995,Acetaldehyde,LB
+37165,0.09872627,Methane,TON
+37165,0.02673488,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,556.1434,Hexane,LB
+37161,1558.6774,Xylenes (Mixed Isomers),LB
+37161,1.0334278,Fluoranthene,LB
+37161,513.7812,"2,2,4-Trimethylpentane",LB
+37161,0.1603142,Manganese,LB
+37161,1.4391184,Fluorene,LB
+37161,153.0395,Carbon Monoxide,TON
+37161,0.1378033,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.00015517376,Anthracene,LB
+37157,2.594074e-05,Mercury,LB
+37157,0.0013055084,Naphthalene,LB
+37157,0.5916673,Methane,TON
+37151,1.0512822,Styrene,LB
+37151,6.360752,Acrolein,LB
+37151,2.148224,Hexane,LB
+37151,2.761956e-05,Chromium (VI),LB
+37151,0.410345,Acenaphthylene,LB
+37151,0.002510528,"Dibenzo[a,h]Anthracene",LB
+37151,0.2263335,PM2.5 Primary (Filt + Cond),TON
+37149,5.47799e-05,Chromium (VI),LB
+37149,0.16958864,"Benzo[g,h,i,]Perylene",LB
+37149,2.852048,Styrene,LB
+37149,0.009103996,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.0001806666,Nitrate portion of PM2.5-PRI,TON
+37149,0.08084965,PM10 Primary (Filt + Cond),TON
+37149,0.00806444,Manganese,LB
+37149,0.0005491692,Mercury,LB
+37149,0.7013538,Phenanthrene,LB
+37141,5.59876,Fluoranthene,LB
+37141,4.905104,Acenaphthylene,LB
+37141,1.5087026,Benz[a]Anthracene,LB
+37141,2.925366,Acenaphthene,LB
+37141,115.1539,Nitrogen Oxides,TON
+37003,3.963762,Styrene,LB
+37003,9.016182,"1,3-Butadiene",LB
+37003,5.74097e-05,Chromium (VI),LB
+37003,2.157772,Fluoranthene,LB
+37003,3.469962,Phenanthrene,LB
+37003,2321.863,Carbon Dioxide,TON
+37003,10.19709,Nitrogen Oxides,TON
+37003,0.02003095,Sulfur Dioxide,TON
+37075,0.0002487682,Arsenic,LB
+37075,17.30315,Carbon Dioxide,TON
+37075,0.00110807,PM10 Primary (Filt + Cond),TON
+37021,16.747468,Hexane,LB
+37021,0.0371201,Pyrene,LB
+37021,0.04668292,Benzo[a]Pyrene,LB
+37021,0.0015231116,Mercury,LB
+37021,2.179177,Nitrogen Oxides,TON
+37021,0.08768437,Sulfur Dioxide,TON
+37147,6.784286,Toluene,LB
+37147,3.173444e-05,Chromium (VI),LB
+37147,3.721224,Formaldehyde,LB
+37147,7.823826,Benzene,LB
+37147,0.012917714,Manganese,LB
+37147,0.01140466,PM2.5 Primary (Filt + Cond),TON
+37147,0.00516534,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.004039076,Nickel,LB
+37127,3.102884,Carbon Monoxide,TON
+37127,0.004807302,Nitrous Oxide,TON
+37127,2.126199e-05,Nitrate portion of PM2.5-PRI,TON
+37127,0.0128245,Sulfur Dioxide,TON
+37121,0.3340866,Ethyl Benzene,LB
+37121,1.0002218,"2,2,4-Trimethylpentane",LB
+37011,0.003642794,Acrolein,LB
+37011,4.188406e-07,Mercury,LB
+37011,2.229919e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37011,2.935368e-07,Nitrate portion of PM2.5-PRI,TON
+37005,0.004067343,Nitrous Oxide,TON
+37005,0.2513862,PM10 Primary (Filt + Cond),TON
+37005,1.9804e-05,Chromium (VI),LB
+37005,0.002075584,Benzo[k]Fluoranthene,LB
+37005,0.07065698,Methane,TON
+37005,2.536086,Carbon Monoxide,TON
+37053,0.01206531,Styrene,LB
+37053,0.10054298,Propionaldehyde,LB
+37053,5.49396e-06,Chromium (VI),LB
+37053,0.0009579349,Nitrous Oxide,TON
+37053,0.001496106,PM2.5 Primary (Filt + Cond),TON
+37053,1.0887004,Ethyl Benzene,LB
+37053,3.690546,Xylenes (Mixed Isomers),LB
+37039,0.1353284,Styrene,LB
+37039,0.546567,"1,3-Butadiene",LB
+37039,2.69609e-05,Chromium (VI),LB
+37039,0.00403089,Benzo[b]Fluoranthene,LB
+37039,4.619814,"2,2,4-Trimethylpentane",LB
+37039,0.00947676,Fluorene,LB
+37013,3.245672,Propionaldehyde,LB
+37013,0.3257598,Acenaphthylene,LB
+37013,442.6226,Carbon Dioxide,TON
+37013,6.596544e-05,Nitrate portion of PM2.5-PRI,TON
+37013,0.0389994,PM10 Primary (Filt + Cond),TON
+37011,14.152566,Hexane,LB
+37011,5.392726,Benzene,LB
+37005,0.033524,Acrolein,LB
+37005,0.7126135,Carbon Monoxide,TON
+37005,0.0002850072,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.001575253,PM10 Primary (Filt + Cond),TON
+37005,0.0003268215,Sulfur Dioxide,TON
+37005,1.289464e-05,Sulfate Portion of PM2.5-PRI,TON
+37177,0.002013213,Methane,TON
+37177,7.719693e-05,Sulfur Dioxide,TON
+37177,1.4908666e-05,"Dibenzo[a,h]Anthracene",LB
+37177,0.08781948,Naphthalene,LB
+37177,0.04112848,Styrene,LB
+37177,0.002819024,Pyrene,LB
+37177,0.007703186,Acenaphthylene,LB
+37173,54.8709,"1,3-Butadiene",LB
+37173,6.270245,Volatile Organic Compounds,TON
+37171,41.33218,Hexane,LB
+37171,0.02112392,Anthracene,LB
+37171,0.010284408,Benzo[b]Fluoranthene,LB
+37171,0.01627013,Benzo[a]Pyrene,LB
+37171,8.294514,Acetaldehyde,LB
+37171,0.02434448,Acenaphthene,LB
+37171,0.003082386,Elemental Carbon portion of PM2.5-PRI,TON
+37171,4.669278e-05,Nitrate portion of PM2.5-PRI,TON
+37169,2.367811,PM2.5 Primary (Filt + Cond),TON
+37169,11258.47,Xylenes (Mixed Isomers),LB
+37169,19.462334,Acenaphthylene,LB
+37169,1227.5642,Formaldehyde,LB
+37169,0.03932708,Mercury,LB
+37169,23.24618,Phenanthrene,LB
+37169,1.911984,Methane,TON
+37169,4.946391,Ammonia,TON
+37169,1.098112,Organic Carbon portion of PM2.5-PRI,TON
+37149,2.55017e-08,Chromium (VI),LB
+37149,2.2804e-05,"Benzo[g,h,i,]Perylene",LB
+37149,0.00010276166,Chrysene,LB
+37149,7.202703e-07,Nitrate portion of PM2.5-PRI,TON
+37153,0.00109495,Ammonia,TON
+37153,6.598426e-05,Nitrate portion of PM2.5-PRI,TON
+37153,0.005337121,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.007414882,Chrysene,LB
+37147,0.6124338,Anthracene,LB
+37147,0.005814826,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,18.38668,Benzene,LB
+37147,0.4296176,PM10-Primary from certain diesel engines,TON
+37147,0.020758,Sulfur Dioxide,TON
+37147,0.0168487,Sulfate Portion of PM2.5-PRI,TON
+37147,0.03310988,Pyrene,LB
+37147,4.323552e-06,Chromium (VI),LB
+37147,0.005580468,Benzo[b]Fluoranthene,LB
+37147,0.3766968,Acrolein,LB
+37147,0.005580468,Benzo[k]Fluoranthene,LB
+37147,0.0054944,Chrysene,LB
+37147,6.346234,Formaldehyde,LB
+37147,0.00458397,Manganese,LB
+37147,0.6831255,Nitrogen Oxides,TON
+37147,0.02551655,PM10 Primary (Filt + Cond),TON
+37147,0.003976978,Sulfur Dioxide,TON
+37139,0.01188928,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.04669162,Benzo[b]Fluoranthene,LB
+37139,6.3162,"2,2,4-Trimethylpentane",LB
+37139,0.5706745,PM10-Primary from certain diesel engines,TON
+37139,0.002794113,Nitrate portion of PM2.5-PRI,TON
+37139,1.276656,Volatile Organic Compounds,TON
+37143,3.362722,Xylenes (Mixed Isomers),LB
+37143,0.0005274414,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,1.2065172,"2,2,4-Trimethylpentane",LB
+37143,0.4591654,Acetaldehyde,LB
+37143,0.0713212,Naphthalene,LB
+37143,1.819268e-06,Nitrate portion of PM2.5-PRI,TON
+37143,0.0003129446,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.0006196905,Sulfur Dioxide,TON
+37143,0.02742841,Volatile Organic Compounds,TON
+37141,0.5241716,Anthracene,LB
+37141,3.712268,"2,2,4-Trimethylpentane",LB
+37141,1163.766,Carbon Dioxide,TON
+37137,0.0001558814,Benzo[k]Fluoranthene,LB
+37137,0.003764572,Benzo[a]Pyrene,LB
+37137,0.004790832,Manganese,LB
+37137,8.909084e-06,Mercury,LB
+37137,0.008342778,Ammonia,TON
+37137,0.002163746,Sulfur Dioxide,TON
+37137,0.246422,Volatile Organic Compounds,TON
+37133,0.17646146,Acenaphthylene,LB
+37133,1.7525728,Propionaldehyde,LB
+37133,0.1694694,PM10-Primary from certain diesel engines,TON
+37133,0.09443397,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.01454851,Ammonia,TON
+37127,113.6279,Xylenes (Mixed Isomers),LB
+37127,0.17479048,Benzo[a]Pyrene,LB
+37127,0.007204674,"Dibenzo[a,h]Anthracene",LB
+37127,0.09492536,Arsenic,LB
+37127,195.05648,Naphthalene,LB
+37127,12807.56,Carbon Dioxide,TON
+37127,2.28264,PM10 Primary (Filt + Cond),TON
+37127,1.654449,PM2.5 Primary (Filt + Cond),TON
+37121,1.2507794e-05,Acenaphthene,LB
+37121,0.001732766,"1,3-Butadiene",LB
+37121,2.11541e-05,Pyrene,LB
+37117,0.07025116,Anthracene,LB
+37117,6.214436e-06,Chromium (VI),LB
+37117,0.004894186,Benzo[b]Fluoranthene,LB
+37117,0.03102322,Chrysene,LB
+37117,2.127834,Naphthalene,LB
+37117,0.15398144,Ethyl Benzene,LB
+37117,0.005995604,Styrene,LB
+37117,0.03347106,"1,3-Butadiene",LB
+37117,0.5693014,Xylenes (Mixed Isomers),LB
+37117,2.077954e-06,"Dibenzo[a,h]Anthracene",LB
+37117,6.89208e-05,Benz[a]Anthracene,LB
+37117,0.07960903,Carbon Monoxide,TON
+37117,9.462023e-05,Nitrous Oxide,TON
+37117,2.554095e-07,Nitrate portion of PM2.5-PRI,TON
+37107,0.00428195,Arsenic,LB
+37107,0.06235406,Methane,TON
+37107,0.004580542,"Dibenzo[a,h]Anthracene",LB
+37097,8.408609,Nitrogen Oxides,TON
+37097,0.06651578,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.05128167,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.07346294,Benzo[k]Fluoranthene,LB
+37097,0.002638872,"Dibenzo[a,h]Anthracene",LB
+37097,3.358504,Propionaldehyde,LB
+37105,0.02500932,Acrolein,LB
+37105,0.007233196,Acenaphthylene,LB
+37105,0.0006965786,Benzo[a]Pyrene,LB
+37105,0.000488347,Benz[a]Anthracene,LB
+37105,3.516927,Carbon Dioxide,TON
+37105,0.0001675139,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.0001162898,Ammonia,TON
+37105,0.001111464,PM10 Primary (Filt + Cond),TON
+37105,252.4694,Styrene,LB
+37105,35999.54,Toluene,LB
+37105,9.12198,Anthracene,LB
+37105,17.776952,Pyrene,LB
+37105,4.138864,Benzo[a]Pyrene,LB
+37105,10632.114,Benzene,LB
+37105,2687.185,Carbon Monoxide,TON
+37105,0.974841,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.01331049,Nitrate portion of PM2.5-PRI,TON
+37105,313.4277,Nitrogen Oxides,TON
+37103,0.004821984,Arsenic,LB
+37103,47.28834,Acetaldehyde,LB
+37103,11.976874,Naphthalene,LB
+37103,0.1202517,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.6457312,Volatile Organic Compounds,TON
+37103,0.410002,Anthracene,LB
+37103,0.08552262,Benzo[a]Pyrene,LB
+37103,10.324012,Benzene,LB
+37099,20.27052,Toluene,LB
+37099,0.02028864,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,1.448181,PM25-Primary from certain diesel engines,TON
+37099,31.91282,Nitrogen Oxides,TON
+37099,0.03903816,Phenanthrene,LB
+37099,0.014550448,Fluorene,LB
+37099,0.002805716,Ammonia,TON
+37099,9.079236e-06,Nitrate portion of PM2.5-PRI,TON
+37083,63.67478,Propionaldehyde,LB
+37083,749.8536,Acetaldehyde,LB
+37083,3.210444,Acenaphthene,LB
+37083,2.485062,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.009657497,Nitrate portion of PM2.5-PRI,TON
+37017,0.01522653,PM10-Primary from certain diesel engines,TON
+37017,0.001207858,Ammonia,TON
+37017,0.01449302,PM2.5 Primary (Filt + Cond),TON
+37017,0.0004435916,Sulfur Dioxide,TON
+37017,0.03379522,Volatile Organic Compounds,TON
+37017,0.19373092,Ethyl Benzene,LB
+37017,0.08352594,Styrene,LB
+37017,0.02084034,Anthracene,LB
+37017,0.0592393,Pyrene,LB
+37017,0.008293572,Chrysene,LB
+37021,49088.5,Benzene,LB
+37021,4.794146,Nickel,LB
+37021,269.4882,Phenanthrene,LB
+37021,11381.33,Carbon Monoxide,TON
+37021,25.53986,Nitrous Oxide,TON
+37021,28.50164,PM2.5 Primary (Filt + Cond),TON
+37021,6918.642,"1,3-Butadiene",LB
+37021,83.0133,Pyrene,LB
+37021,108008.18,Xylenes (Mixed Isomers),LB
+37021,21.79886,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,15.421318,Benzo[b]Fluoranthene,LB
+37021,15.421318,Benzo[k]Fluoranthene,LB
+37017,240.0586,Styrene,LB
+37017,182.8152,Acrolein,LB
+37017,32828.5,Toluene,LB
+37017,45.7428,Acenaphthylene,LB
+37017,3179.188,Formaldehyde,LB
+37017,0.705534,Nickel,LB
+37017,521.8144,Naphthalene,LB
+37017,8.672571,Ammonia,TON
+37017,1.607837,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.194949,Anthracene,LB
+37009,5.79228,Benzene,LB
+37009,26.50176,Acetaldehyde,LB
+37009,0.2114642,Acenaphthene,LB
+37009,0.0003996835,Nitrate portion of PM2.5-PRI,TON
+37009,0.03043308,Organic Carbon portion of PM2.5-PRI,TON
+37015,9.007538,Toluene,LB
+37015,0.00376612,Anthracene,LB
+37015,2.941878e-05,Chromium (VI),LB
+37015,0.00305987,Chrysene,LB
+37015,0.00654367,Manganese,LB
+37015,0.02906037,Ammonia,TON
+37015,0.00959834,PM2.5 Primary (Filt + Cond),TON
+37021,0.134248,Nitrogen Oxides,TON
+37021,0.0018911252,Benzo[k]Fluoranthene,LB
+37021,8.473912e-05,"Dibenzo[a,h]Anthracene",LB
+37009,0.1256138,Styrene,LB
+37009,0.006293508,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,336.08,Carbon Dioxide,TON
+37009,0.001690616,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.01978082,PM10 Primary (Filt + Cond),TON
+37171,0.003609802,"Benzo[g,h,i,]Perylene",LB
+37171,0.002321,Acenaphthylene,LB
+37171,0.0005999902,Benz[a]Anthracene,LB
+37171,0.002885078,Phenanthrene,LB
+37171,0.7232299,Carbon Monoxide,TON
+37151,0.02664652,Fluoranthene,LB
+37151,0.07203708,Acenaphthylene,LB
+37151,42.0816,Benzene,LB
+37151,1.795726,Nitrogen Oxides,TON
+37103,9.352576e-05,Benzo[k]Fluoranthene,LB
+37103,8.022156e-05,Benz[a]Anthracene,LB
+37103,0.0003916006,Phenanthrene,LB
+37089,0.2963074,Propionaldehyde,LB
+37089,2.748252,Xylenes (Mixed Isomers),LB
+37089,0.00287092,Benzo[a]Pyrene,LB
+37089,1.5532022,"2,2,4-Trimethylpentane",LB
+37089,0.006018216,Manganese,LB
+37089,0.002891126,Arsenic,LB
+37089,0.002489958,Fluorene,LB
+37089,0.002436206,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,29.65412,Propionaldehyde,LB
+37021,0.3270051,Methane,TON
+37021,0.007021725,Nitrate portion of PM2.5-PRI,TON
+37021,0.5566914,Organic Carbon portion of PM2.5-PRI,TON
+37017,8.424612,Ethyl Benzene,LB
+37017,6.499052,"1,3-Butadiene",LB
+37017,3.425924,Acrolein,LB
+37017,0.3043688,Pyrene,LB
+37017,646.4814,Xylenes (Mixed Isomers),LB
+37017,0.2668278,Fluoranthene,LB
+37017,263.9678,"2,2,4-Trimethylpentane",LB
+37017,0.00966862,Nickel,LB
+37017,0.181984,Acenaphthene,LB
+37017,0.008474661,Nitrous Oxide,TON
+37017,2.556952,Nitrogen Oxides,TON
+37017,0.07415126,PM2.5 Primary (Filt + Cond),TON
+37011,0.2829494,Benz[a]Anthracene,LB
+37011,4.487532,"1,3-Butadiene",LB
+37011,0.7478094,PM2.5 Primary (Filt + Cond),TON
+37011,0.07416788,Sulfur Dioxide,TON
+37011,3.738574,Methane,TON
+37011,59874.13,Carbon Dioxide,TON
+37011,0.5910301,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.05842516,Sulfate Portion of PM2.5-PRI,TON
+37011,108.4315,Volatile Organic Compounds,TON
+37011,2.316834,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,4.73757,Propionaldehyde,LB
+37003,0.00371323,"Benzo[g,h,i,]Perylene",LB
+37003,0.493375,Acenaphthylene,LB
+37003,0.059303,Benzo[a]Pyrene,LB
+37003,0.014838536,Manganese,LB
+37003,1.0535898,Phenanthrene,LB
+37003,0.07566455,Elemental Carbon portion of PM2.5-PRI,TON
+37001,14.828234,Styrene,LB
+37001,0.19729236,Benzo[k]Fluoranthene,LB
+37001,0.1972402,Benz[a]Anthracene,LB
+37001,0.0307014,Nickel,LB
+37001,151.54626,Acetaldehyde,LB
+37001,0.669623,Acenaphthene,LB
+37001,0.3105367,Methane,TON
+37001,0.4436871,PM10 Primary (Filt + Cond),TON
+37001,0.2723081,PM2.5 Primary (Filt + Cond),TON
+37199,0.0015942944,Benzo[b]Fluoranthene,LB
+37199,3.888698e-05,Arsenic,LB
+37199,0.2865138,Naphthalene,LB
+37199,0.09817361,Nitrogen Oxides,TON
+37185,0.03283186,Benzo[b]Fluoranthene,LB
+37185,0.5056602,Acenaphthene,LB
+37185,0.7181943,PM2.5 Primary (Filt + Cond),TON
+37185,2.21482,Styrene,LB
+37185,5.313574,Xylenes (Mixed Isomers),LB
+37185,0.00763357,"Benzo[g,h,i,]Perylene",LB
+37185,0.00286802,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,1.767618,"2,2,4-Trimethylpentane",LB
+37185,2.508962,Benzene,LB
+37185,0.00481148,Fluorene,LB
+37185,0.001487497,Methane,TON
+37189,11.940644,Benzene,LB
+37189,0.07363103,Methane,TON
+37189,734.2187,Carbon Dioxide,TON
+37189,0.1015615,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.00420735,Nitrous Oxide,TON
+37189,4.170584,Nitrogen Oxides,TON
+37189,0.3631187,PM10 Primary (Filt + Cond),TON
+37189,0.04789221,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.003233038,Benzo[k]Fluoranthene,LB
+37189,7.394902,Acenaphthylene,LB
+37189,0.466568,Chrysene,LB
+37189,0.12970278,Benzo[a]Pyrene,LB
+37189,11.738626,Phenanthrene,LB
+37189,145.0106,Naphthalene,LB
+37189,1.174014,PM10-Primary from certain diesel engines,TON
+37189,1.080099,PM25-Primary from certain diesel engines,TON
+37189,25.19615,Nitrogen Oxides,TON
+37193,13.63032,Hexane,LB
+37193,1.7505568,Anthracene,LB
+37193,4.814284,Pyrene,LB
+37193,0.0001972435,Chromium (VI),LB
+37193,231.344,Acetaldehyde,LB
+37193,17.2651,Carbon Monoxide,TON
+37193,15100.82,Carbon Dioxide,TON
+37193,2.28959,PM25-Primary from certain diesel engines,TON
+37193,2.38566,PM2.5 Primary (Filt + Cond),TON
+37193,0.1004247,Sulfate Portion of PM2.5-PRI,TON
+37193,0.6461538,Chrysene,LB
+37185,0.1661446,Methane,TON
+37185,0.1220892,Nitrous Oxide,TON
+37185,0.2292776,Ammonia,TON
+37185,0.06991008,Chrysene,LB
+37185,5.051336,Propionaldehyde,LB
+37183,999.0546,Xylenes (Mixed Isomers),LB
+37183,0.2003772,Benzo[k]Fluoranthene,LB
+37183,0.17848536,Chrysene,LB
+37183,0.003810778,Mercury,LB
+37183,270.1649,Carbon Monoxide,TON
+37179,439.7312,Benzene,LB
+37179,3.985018,PM10-Primary from certain diesel engines,TON
+37179,0.7733451,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.06833214,"Benzo[g,h,i,]Perylene",LB
+37179,251.7872,Propionaldehyde,LB
+37179,0.0206441,"Dibenzo[a,h]Anthracene",LB
+37179,14.301066,Hexane,LB
+37179,0.277246,Propionaldehyde,LB
+37179,0.00827224,Manganese,LB
+37179,0.01077536,Nitrous Oxide,TON
+37179,0.0002522353,Sulfate Portion of PM2.5-PRI,TON
+37173,0.011391154,Benzo[b]Fluoranthene,LB
+37173,0.3001858,Acenaphthylene,LB
+37173,0.001491817,Nitrous Oxide,TON
+37173,0.1374757,PM2.5 Primary (Filt + Cond),TON
+37173,0.3149187,Volatile Organic Compounds,TON
+37125,26.3508,"1,3-Butadiene",LB
+37125,757.9072,Toluene,LB
+37125,452.1198,Xylenes (Mixed Isomers),LB
+37125,0.04460914,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.0010249488,"Dibenzo[a,h]Anthracene",LB
+37125,9.284828,Naphthalene,LB
+37125,0.0001431433,Nitrate portion of PM2.5-PRI,TON
+37113,134.62492,Xylenes (Mixed Isomers),LB
+37113,0.00015912832,Mercury,LB
+37109,0.0287088,Acenaphthylene,LB
+37109,0.00210183,Benz[a]Anthracene,LB
+37109,0.005201716,Methane,TON
+37109,0.004637629,Nitrous Oxide,TON
+37109,0.001849093,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.0019673274,"Benzo[g,h,i,]Perylene",LB
+37105,0.0012290028,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.004822434,Benzo[b]Fluoranthene,LB
+37105,0.5823188,Fluoranthene,LB
+37105,0.016159542,Benzo[a]Pyrene,LB
+37105,15.070158,Naphthalene,LB
+37105,0.1470236,PM2.5 Primary (Filt + Cond),TON
+37105,0.7700238,Volatile Organic Compounds,TON
+37101,0.010083014,Benzo[k]Fluoranthene,LB
+37101,0.071405,Acenaphthylene,LB
+37101,10.759448,"2,2,4-Trimethylpentane",LB
+37101,0.00016258346,Mercury,LB
+37101,4.609876,Acetaldehyde,LB
+37101,5.675186e-05,Nitrate portion of PM2.5-PRI,TON
+37101,0.05465094,PM10 Primary (Filt + Cond),TON
+37097,0.02648072,Benzo[b]Fluoranthene,LB
+37097,0.4095956,Acenaphthylene,LB
+37097,0.02647498,Benz[a]Anthracene,LB
+37097,0.0899132,Acenaphthene,LB
+37097,0.1821279,Fluorene,LB
+37097,0.001851184,Sulfate Portion of PM2.5-PRI,TON
+37089,3.803778,Acenaphthylene,LB
+37089,0.0243633,"Dibenzo[a,h]Anthracene",LB
+37089,1.9133604,Benz[a]Anthracene,LB
+37089,297.4036,Acetaldehyde,LB
+37089,11165.76,Carbon Dioxide,TON
+37089,0.8491996,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.2005484,Fluoranthene,LB
+37087,0.9676064,Ethyl Benzene,LB
+37087,1.1177194e-05,Chromium (VI),LB
+37087,0.09251338,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.01292203,Ammonia,TON
+37079,0.0010263182,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,1.7793472,Naphthalene,LB
+37079,0.04907311,PM10-Primary from certain diesel engines,TON
+37079,0.00181915,Sulfate Portion of PM2.5-PRI,TON
+37073,4.011617e-06,Organic Carbon portion of PM2.5-PRI,TON
+37073,2.118522e-07,Sulfate Portion of PM2.5-PRI,TON
+37073,0.001777965,"1,3-Butadiene",LB
+37073,0.0002510626,Acrolein,LB
+37073,1.911158e-09,Chromium (VI),LB
+37073,1.9662708e-05,"Benzo[g,h,i,]Perylene",LB
+37073,1.6955772e-07,"Dibenzo[a,h]Anthracene",LB
+37073,7.385664e-05,Phenanthrene,LB
+37085,0.01279208,Mercury,LB
+37085,0.5497448,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,12.515156,Propionaldehyde,LB
+37081,7.189232,"2,2,4-Trimethylpentane",LB
+37081,0.10434444,Manganese,LB
+37081,0.00010725808,Mercury,LB
+37081,1.6833688,Fluorene,LB
+37081,5.913971,Carbon Monoxide,TON
+37081,11.68503,Nitrogen Oxides,TON
+37081,0.1284159,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,3.702416,Ethyl Benzene,LB
+37071,8.512576,Acrolein,LB
+37071,2.839078,Hexane,LB
+37071,0.3326602,Acenaphthene,LB
+37071,0.2792773,PM25-Primary from certain diesel engines,TON
+37071,0.1076599,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.2984301,PM2.5 Primary (Filt + Cond),TON
+37065,0.19095598,"2,2,4-Trimethylpentane",LB
+37065,0.0009751542,Nickel,LB
+37065,0.8531478,Naphthalene,LB
+37065,0.3166024,Nitrogen Oxides,TON
+37063,1624.2424,Hexane,LB
+37063,0.8672988,Anthracene,LB
+37063,1.2404184,"Benzo[g,h,i,]Perylene",LB
+37063,1328.976,Benzene,LB
+37063,0.01428462,Sulfate Portion of PM2.5-PRI,TON
+37057,11.820852,Pyrene,LB
+37057,0.02645902,"Dibenzo[a,h]Anthracene",LB
+37057,0.0009353906,Mercury,LB
+37057,0.5971322,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,12.534542,Benzene,LB
+37051,0.03705446,Sulfate Portion of PM2.5-PRI,TON
+37051,13.707116,"2,2,4-Trimethylpentane",LB
+37051,0.00018690618,Mercury,LB
+37051,0.001383889,Nitrate portion of PM2.5-PRI,TON
+37045,0.019195824,Styrene,LB
+37045,5.643092e-06,Nickel,LB
+37045,0.001030413,PM10 Primary (Filt + Cond),TON
+37045,0.1837754,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,6.01721,Acenaphthylene,LB
+37045,408.9266,Formaldehyde,LB
+37045,0.3735916,Benz[a]Anthracene,LB
+37045,1307.201,Benzene,LB
+37045,0.1228299,Elemental Carbon portion of PM2.5-PRI,TON
+37045,37.74397,Nitrogen Oxides,TON
+37039,800.6012,Ethyl Benzene,LB
+37039,1179.7654,Hexane,LB
+37039,176.4405,Benzene,LB
+37035,1.3890028,Styrene,LB
+37035,0.00496859,"Benzo[g,h,i,]Perylene",LB
+37035,0.5405808,Acenaphthylene,LB
+37035,0.007572782,Arsenic,LB
+37035,2.481717,Carbon Monoxide,TON
+37035,4.568016,Nitrogen Oxides,TON
+37035,0.05463338,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.2159193,Methane,TON
+37035,0.003583995,Nitrous Oxide,TON
+37035,0.009462786,Sulfate Portion of PM2.5-PRI,TON
+37035,0.08677804,Chrysene,LB
+37035,1.7572222,Fluorene,LB
+37033,36.22556,"1,3-Butadiene",LB
+37033,4.662738,Acrolein,LB
+37033,0.2179478,Anthracene,LB
+37033,0.4227104,Pyrene,LB
+37033,178.94574,"2,2,4-Trimethylpentane",LB
+37033,86.84652,Acetaldehyde,LB
+37033,13.289632,Naphthalene,LB
+37033,1812.739,Carbon Dioxide,TON
+37033,0.1238808,Nitrous Oxide,TON
+37033,0.01883723,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.037035,Sulfate Portion of PM2.5-PRI,TON
+37033,70.24392,Styrene,LB
+37033,1.374248,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,4.405886,Fluoranthene,LB
+37033,0.9591286,Benzo[k]Fluoranthene,LB
+37033,3101.228,Benzene,LB
+37033,1.25145,Nitrous Oxide,TON
+37029,0.2583966,Ethyl Benzene,LB
+37029,0.2310338,"1,3-Butadiene",LB
+37029,0.5950588,Acrolein,LB
+37029,0.0392099,Acenaphthylene,LB
+37029,0.1803627,Carbon Monoxide,TON
+37029,0.0001049025,Nitrate portion of PM2.5-PRI,TON
+37029,0.02075832,PM2.5 Primary (Filt + Cond),TON
+37029,0.0009523943,Sulfate Portion of PM2.5-PRI,TON
+37027,0.013396018,Styrene,LB
+37027,0.0009145278,Pyrene,LB
+37027,4.343744e-06,"Dibenzo[a,h]Anthracene",LB
+37027,0.00014883762,Benz[a]Anthracene,LB
+37027,2.785134e-06,Nickel,LB
+37027,0.9248232,Carbon Dioxide,TON
+37175,3.179038,Ethyl Benzene,LB
+37175,0.02316638,Acenaphthylene,LB
+37175,0.02760362,Phenanthrene,LB
+37175,0.010307862,Fluorene,LB
+37175,4.683767e-06,Nitrate portion of PM2.5-PRI,TON
+37175,3.27913e-05,Sulfate Portion of PM2.5-PRI,TON
+37171,41.76414,Styrene,LB
+37171,33.66982,Acrolein,LB
+37171,35.32838,Propionaldehyde,LB
+37171,8.052896,Acenaphthylene,LB
+37171,0.5177866,Chrysene,LB
+37165,0.631886,"1,3-Butadiene",LB
+37165,1.634502,Xylenes (Mixed Isomers),LB
+37165,0.1073205,Acenaphthylene,LB
+37165,0.00161142,Arsenic,LB
+37165,0.14534356,Fluorene,LB
+37165,0.01209301,Methane,TON
+37165,0.01088534,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.333636,Ethyl Benzene,LB
+37165,3.640156e-06,Chromium (VI),LB
+37165,3.718186e-06,Mercury,LB
+37165,0.0017989272,Nickel,LB
+37165,0.005738559,Methane,TON
+37165,0.3052196,Carbon Monoxide,TON
+37165,0.004219467,Ammonia,TON
+37165,0.01082167,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.04916062,PM2.5 Primary (Filt + Cond),TON
+37161,0.0327066,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,23.61892,Formaldehyde,LB
+37161,0.016278348,Manganese,LB
+37161,51.10886,Ethyl Benzene,LB
+37161,1.7769356,Styrene,LB
+37161,0.0665782,Methane,TON
+37161,0.0592537,Nitrous Oxide,TON
+37161,0.03859873,PM2.5 Primary (Filt + Cond),TON
+37161,1.524697,Volatile Organic Compounds,TON
+37153,0.0428625,"1,3-Butadiene",LB
+37153,0.0002713354,Anthracene,LB
+37145,0.05860292,Acenaphthylene,LB
+37145,0.0003598008,"Dibenzo[a,h]Anthracene",LB
+37145,0.02830252,Benz[a]Anthracene,LB
+37145,1.0457134,Benzene,LB
+37145,0.000705333,Arsenic,LB
+37145,4.865436,Acetaldehyde,LB
+37145,0.003662963,Ammonia,TON
+37145,0.01298022,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.002321905,Sulfate Portion of PM2.5-PRI,TON
+37145,0.06312575,Volatile Organic Compounds,TON
+37143,14.257676,Toluene,LB
+37139,19.226748,"2,2,4-Trimethylpentane",LB
+37139,8.093422,Benzene,LB
+37129,5.983422,Fluorene,LB
+37129,14219.97,Carbon Dioxide,TON
+37129,90.26078,Xylenes (Mixed Isomers),LB
+37129,6.500954,Fluoranthene,LB
+37141,6.114268,Styrene,LB
+37141,1.397456,Acenaphthene,LB
+37141,0.00011271658,Chromium (VI),LB
+37141,2.349606,Acenaphthylene,LB
+37133,0.0009405386,"Dibenzo[a,h]Anthracene",LB
+37133,22.40502,Naphthalene,LB
+37133,0.007415624,Nitrous Oxide,TON
+37129,10.479084,"1,3-Butadiene",LB
+37129,8.546932,Hexane,LB
+37129,24.78464,Xylenes (Mixed Isomers),LB
+37129,0.01567922,"Benzo[g,h,i,]Perylene",LB
+37129,31.39604,Benzene,LB
+37129,0.840746,PM2.5 Primary (Filt + Cond),TON
+37125,0.02033986,Acenaphthene,LB
+37125,0.004694167,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.2282723,Nitrogen Oxides,TON
+37125,0.005730288,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.01330616,PM2.5 Primary (Filt + Cond),TON
+37125,0.03652173,Volatile Organic Compounds,TON
+37125,0.08826522,Styrene,LB
+37125,0.3327384,Propionaldehyde,LB
+37125,0.004056768,Benzo[a]Pyrene,LB
+37121,1.4951446,Toluene,LB
+37121,0.14767468,Acenaphthylene,LB
+37121,0.00903377,Benzo[a]Pyrene,LB
+37121,0.5890374,"2,2,4-Trimethylpentane",LB
+37121,10.95708,Acetaldehyde,LB
+37121,0.08781718,Acenaphthene,LB
+37121,0.05633287,PM10-Primary from certain diesel engines,TON
+37121,0.03363293,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.06983402,PM10 Primary (Filt + Cond),TON
+37123,2.784394,"2,2,4-Trimethylpentane",LB
+37123,0.0002995072,Nickel,LB
+37123,0.0005813108,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.002059627,Nitrous Oxide,TON
+37123,0.001859598,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.00110798,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.2432952,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.00200657,Mercury,LB
+37119,2278.782,Acetaldehyde,LB
+37119,115.2356,Carbon Monoxide,TON
+37119,3.833275,Elemental Carbon portion of PM2.5-PRI,TON
+37119,2015.68,Toluene,LB
+37119,592.5102,Hexane,LB
+37119,1376.0048,Xylenes (Mixed Isomers),LB
+37119,0.2953312,Benzo[b]Fluoranthene,LB
+37119,0.7058802,Acenaphthene,LB
+37119,36.67914,Naphthalene,LB
+37107,966.4412,Hexane,LB
+37107,24.57916,Propionaldehyde,LB
+37107,0.4154334,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,1211.005,Benzene,LB
+37107,0.6954965,Nitrous Oxide,TON
+37107,0.2441276,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.01887406,Nitrate portion of PM2.5-PRI,TON
+37097,1.544808,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.2125758,Sulfur Dioxide,TON
+37097,139.24252,Toluene,LB
+37097,0.0005547642,Mercury,LB
+37097,10.310324,Fluorene,LB
+37097,37.67607,Carbon Monoxide,TON
+37097,24984.8,Carbon Dioxide,TON
+37097,3.670002,PM25-Primary from certain diesel engines,TON
+37101,36493.48,Xylenes (Mixed Isomers),LB
+37101,0.1952455,"Dibenzo[a,h]Anthracene",LB
+37101,5.58439,Manganese,LB
+37101,4.63163,Arsenic,LB
+37101,3852.036,Carbon Monoxide,TON
+37101,27.61251,Ammonia,TON
+37099,0.00010403988,"Dibenzo[a,h]Anthracene",LB
+37099,20.88629,Carbon Dioxide,TON
+37099,0.002367546,Nitrous Oxide,TON
+37099,1.254171e-05,Nitrate portion of PM2.5-PRI,TON
+37093,0.0017732478,Manganese,LB
+37093,1.0000556,Acetaldehyde,LB
+37093,0.1138873,Nitrogen Oxides,TON
+37093,0.008353089,PM10 Primary (Filt + Cond),TON
+37093,0.001899378,PM2.5 Primary (Filt + Cond),TON
+37093,0.004784886,Fluoranthene,LB
+37093,0.0008266442,Benzo[k]Fluoranthene,LB
+37093,0.0010408418,Benzo[a]Pyrene,LB
+37093,1.7392456,"2,2,4-Trimethylpentane",LB
+37093,0.000852676,Benz[a]Anthracene,LB
+37089,92.73926,"1,3-Butadiene",LB
+37089,7.835242,Anthracene,LB
+37089,15.786696,Pyrene,LB
+37089,70.2981,"2,2,4-Trimethylpentane",LB
+37089,16.256382,Fluorene,LB
+37089,0.9833882,Methane,TON
+37089,0.05813246,Nitrous Oxide,TON
+37089,0.4873984,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.001918621,Nitrous Oxide,TON
+37065,0.0005310827,Nitrate portion of PM2.5-PRI,TON
+37065,1.9119938e-05,Chromium (VI),LB
+37065,0.0011975946,"Dibenzo[a,h]Anthracene",LB
+37065,0.010726782,Nickel,LB
+37063,0.000760995,Benzo[k]Fluoranthene,LB
+37063,0.0005737465,Nitrous Oxide,TON
+37063,0.0006055199,Organic Carbon portion of PM2.5-PRI,TON
+37061,9.308348,Propionaldehyde,LB
+37061,11.165662,Xylenes (Mixed Isomers),LB
+37061,0.0375363,Benzo[b]Fluoranthene,LB
+37061,0.05802212,Methane,TON
+37061,0.4572401,PM25-Primary from certain diesel engines,TON
+37061,0.01033574,Sulfur Dioxide,TON
+37061,0.008840452,Sulfate Portion of PM2.5-PRI,TON
+37057,3.846028,Propionaldehyde,LB
+37057,0.3222212,Pyrene,LB
+37057,3.617724e-05,Chromium (VI),LB
+37057,0.05855472,Benzo[b]Fluoranthene,LB
+37057,0.0819144,Benzo[a]Pyrene,LB
+37057,0.1731425,PM10 Primary (Filt + Cond),TON
+37057,4.076365,Volatile Organic Compounds,TON
+37057,911.0546,Benzene,LB
+37057,0.04703156,Manganese,LB
+37057,0.03233706,Nickel,LB
+37057,3.571128,Phenanthrene,LB
+37057,34.0869,Naphthalene,LB
+37057,4285.59,Carbon Dioxide,TON
+37057,0.04201744,Elemental Carbon portion of PM2.5-PRI,TON
+37057,8.533131,Nitrogen Oxides,TON
+37057,26.36431,Volatile Organic Compounds,TON
+37057,30.55282,"1,3-Butadiene",LB
+37057,1503.6744,Hexane,LB
+37057,0.2887144,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.2042804,Benzo[k]Fluoranthene,LB
+37053,0.638927,Propionaldehyde,LB
+37053,0.04911896,Fluoranthene,LB
+37053,10.742822,Formaldehyde,LB
+37053,0.011234864,Benzo[a]Pyrene,LB
+37053,0.002296004,Nickel,LB
+37053,0.6349337,Volatile Organic Compounds,TON
+37047,25528.46,Toluene,LB
+37047,3.294498,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.0756198,"Dibenzo[a,h]Anthracene",LB
+37047,0.09032984,Mercury,LB
+37043,0.00013883018,Manganese,LB
+37043,0.117512,Formaldehyde,LB
+37043,0.2049448,"2,2,4-Trimethylpentane",LB
+37037,0.1944164,Methane,TON
+37037,0.04015359,PM10-Primary from certain diesel engines,TON
+37037,0.002275266,Nitrous Oxide,TON
+37031,2.415376,Acrolein,LB
+37031,2.682852,Xylenes (Mixed Isomers),LB
+37031,9.025114e-06,Chromium (VI),LB
+37031,0.0010204354,"Dibenzo[a,h]Anthracene",LB
+37029,0.05808836,Hexane,LB
+37029,0.0016128558,Benzo[a]Pyrene,LB
+37029,0.005195106,PM25-Primary from certain diesel engines,TON
+37029,0.002021709,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.0008363862,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.0006471022,Benzo[b]Fluoranthene,LB
+37029,0.000120214,Arsenic,LB
+37029,0.801647,Acetaldehyde,LB
+37029,0.004967052,Fluorene,LB
+37029,0.09838333,Nitrogen Oxides,TON
+37165,3259.834,Xylenes (Mixed Isomers),LB
+37165,25.37624,Volatile Organic Compounds,TON
+37149,0.861285,Benz[a]Anthracene,LB
+37149,0.02890748,Arsenic,LB
+37149,2.568446,Fluorene,LB
+37149,41.07364,Naphthalene,LB
+37149,0.0420695,Sulfate Portion of PM2.5-PRI,TON
+37149,5.139892,Styrene,LB
+37157,48.88076,Acrolein,LB
+37157,665.5844,Formaldehyde,LB
+37157,1.3774862,Benz[a]Anthracene,LB
+37157,0.2211508,Manganese,LB
+37157,1.8457148,Acenaphthene,LB
+37157,15.05685,Carbon Monoxide,TON
+37151,10.096162,Ethyl Benzene,LB
+37151,9.181902,"1,3-Butadiene",LB
+37151,2.724454,Pyrene,LB
+37151,28.0174,Benzene,LB
+37151,0.008681232,Arsenic,LB
+37151,1.981598,Fluorene,LB
+37151,11.29474,Nitrogen Oxides,TON
+37151,0.8988666,PM10 Primary (Filt + Cond),TON
+37145,351.246,Ethyl Benzene,LB
+37145,3.255848,Phenanthrene,LB
+37143,1.982078,Propionaldehyde,LB
+37143,0.0009500318,Benzo[b]Fluoranthene,LB
+37143,0.00318432,Benzo[a]Pyrene,LB
+37143,0.004399844,Manganese,LB
+37143,0.1220108,Acenaphthene,LB
+37139,0.1114637,Styrene,LB
+37139,0.2555798,"1,3-Butadiene",LB
+37139,0.4274058,Propionaldehyde,LB
+37139,0.06231388,Fluoranthene,LB
+37139,0.02001522,Benz[a]Anthracene,LB
+37139,0.05737504,Fluorene,LB
+37139,230.4785,Carbon Dioxide,TON
+37141,0.262953,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.2004394,Chrysene,LB
+37141,0.5066392,Methane,TON
+37141,0.0008413687,Nitrate portion of PM2.5-PRI,TON
+37141,22.77039,Nitrogen Oxides,TON
+37141,0.8683712,PM10 Primary (Filt + Cond),TON
+37141,0.2449672,Sulfur Dioxide,TON
+37141,0.008778481,Sulfate Portion of PM2.5-PRI,TON
+37135,221.805,Formaldehyde,LB
+37135,767.53,Benzene,LB
+37135,945.4418,Hexane,LB
+37129,3.35737,Acenaphthylene,LB
+37129,0.19829818,Chrysene,LB
+37129,0.2619932,Benzo[a]Pyrene,LB
+37129,0.09203284,Manganese,LB
+37129,0.002696944,Mercury,LB
+37129,0.03362858,Nickel,LB
+37129,4.002168,Phenanthrene,LB
+37129,1.493548,Fluorene,LB
+37129,0.0387091,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.0533402,Nitrous Oxide,TON
+37129,0.4830207,Ammonia,TON
+37129,0.08660528,Sulfur Dioxide,TON
+37127,11.727842,Propionaldehyde,LB
+37127,0.006764754,"Dibenzo[a,h]Anthracene",LB
+37127,21.2063,Benzene,LB
+37127,0.008270762,Arsenic,LB
+37127,0.007755448,Nitrous Oxide,TON
+37127,0.0007113094,Styrene,LB
+37127,0.0007511058,Acrolein,LB
+37127,0.08434864,Toluene,LB
+37127,6.249572e-05,Pyrene,LB
+37127,4.633498e-05,Benzo[a]Pyrene,LB
+37127,0.008527142,Acetaldehyde,LB
+37127,0.0017797228,Naphthalene,LB
+37119,13541.586,Benzene,LB
+37119,8.040083,Sulfur Dioxide,TON
+37119,21.43894,Pyrene,LB
+37119,57.98302,Acenaphthylene,LB
+37115,0.05879618,Benzo[b]Fluoranthene,LB
+37115,0.1970939,Benzo[a]Pyrene,LB
+37115,113.79492,Acetaldehyde,LB
+37115,0.05978415,Sulfur Dioxide,TON
+37109,1.6824994,Anthracene,LB
+37109,564.4586,Formaldehyde,LB
+37109,0.06837392,Nickel,LB
+37109,233.6966,Acetaldehyde,LB
+37109,0.4229969,Methane,TON
+37107,0.4669536,Pyrene,LB
+37107,0.10627256,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,1.2765388,Acenaphthylene,LB
+37107,0.2802874,Acenaphthene,LB
+37107,0.003295447,Sulfate Portion of PM2.5-PRI,TON
+37107,2595.268,Hexane,LB
+37097,0.0003247684,Benz[a]Anthracene,LB
+37097,7.466048e-05,Manganese,LB
+37097,5.367754e-07,Mercury,LB
+37091,14.001968,Xylenes (Mixed Isomers),LB
+37091,0.0011194288,Benzo[b]Fluoranthene,LB
+37091,0.0011519384,Benz[a]Anthracene,LB
+37091,0.0005772062,Manganese,LB
+37091,0.001474118,Nitrous Oxide,TON
+37091,0.148699,Nitrogen Oxides,TON
+37091,0.0007633191,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.00011876724,Mercury,LB
+37079,0.028655,Acenaphthene,LB
+37079,0.02472111,Methane,TON
+37079,440.6357,Carbon Dioxide,TON
+37079,0.0157752,PM2.5 Primary (Filt + Cond),TON
+37077,43.83304,Xylenes (Mixed Isomers),LB
+37077,0.02790538,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,58.68796,Naphthalene,LB
+37077,0.2374025,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,16.65997,Benzene,LB
+37059,13.16537,Ethyl Benzene,LB
+37059,57.66032,Toluene,LB
+37059,43.72206,Hexane,LB
+37025,0.0008365062,Anthracene,LB
+37025,0.0012645606,Benzo[b]Fluoranthene,LB
+37025,193.5506,Carbon Dioxide,TON
+37169,0.9473434,Ethyl Benzene,LB
+37145,0.9172832,Hexane,LB
+37137,0.05555816,Styrene,LB
+37137,0.0012849966,Chrysene,LB
+37137,1.025619e-05,Nitrate portion of PM2.5-PRI,TON
+37137,0.001863441,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.006329009,Sulfur Dioxide,TON
+37103,2.443228,Xylenes (Mixed Isomers),LB
+37089,1.3187356,Toluene,LB
+37089,0.02881382,Naphthalene,LB
+37089,5.481069e-06,Nitrate portion of PM2.5-PRI,TON
+37089,0.0009272671,Organic Carbon portion of PM2.5-PRI,TON
+37089,6.841596e-05,Sulfate Portion of PM2.5-PRI,TON
+37167,1.101645,Ethyl Benzene,LB
+37167,0.02933206,Acrolein,LB
+37167,0.004174052,"Benzo[g,h,i,]Perylene",LB
+37167,0.000938515,Benzo[k]Fluoranthene,LB
+37167,3.598758e-05,"Dibenzo[a,h]Anthracene",LB
+37167,1.6708302,Benzene,LB
+37167,0.00010944966,Manganese,LB
+37167,0.5964114,Acetaldehyde,LB
+37021,0.009856066,"Benzo[g,h,i,]Perylene",LB
+37021,2.121648,Fluoranthene,LB
+37021,9.5215,"2,2,4-Trimethylpentane",LB
+37021,1.209373,Acenaphthene,LB
+37021,3.815674,Phenanthrene,LB
+37021,2.309338,Fluorene,LB
+37021,13.4635,Carbon Monoxide,TON
+37021,1.282705,PM10 Primary (Filt + Cond),TON
+37021,0.1181772,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.1194858,Sulfur Dioxide,TON
+37021,4.849633,Volatile Organic Compounds,TON
+37021,0.4875412,Pyrene,LB
+37005,0.016454488,Manganese,LB
+37061,0.018116354,Fluoranthene,LB
+37061,0.010761734,Benzo[k]Fluoranthene,LB
+37061,0.04956118,Acenaphthylene,LB
+37061,23.44596,Formaldehyde,LB
+37061,0.06072534,Phenanthrene,LB
+37061,0.09084683,Methane,TON
+37061,0.01705893,Nitrous Oxide,TON
+37061,0.06524896,PM10 Primary (Filt + Cond),TON
+37035,0.0003002368,Mercury,LB
+37035,0.003743682,Nickel,LB
+37035,0.2063994,Nitrogen Oxides,TON
+37035,0.003941114,Organic Carbon portion of PM2.5-PRI,TON
+37035,6.130532,Toluene,LB
+37035,0.004011998,Fluoranthene,LB
+37035,7.247376,Benzene,LB
+37023,0.04607654,"1,3-Butadiene",LB
+37023,0.001374499,Manganese,LB
+37023,0.0007878728,Arsenic,LB
+37143,0.17378678,Ethyl Benzene,LB
+37143,0.06957934,Propionaldehyde,LB
+37143,0.0005235478,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.0004840976,Fluoranthene,LB
+37143,0.0001418971,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.0006437392,Nitrous Oxide,TON
+37143,0.002536178,PM10 Primary (Filt + Cond),TON
+37143,0.0007604984,PM2.5 Primary (Filt + Cond),TON
+37017,0.04383118,Anthracene,LB
+37017,0.00275217,Benzo[b]Fluoranthene,LB
+37017,4.262158e-06,Mercury,LB
+37017,0.00622751,Methane,TON
+37017,0.000413767,Nitrous Oxide,TON
+37007,3.321664,Ethyl Benzene,LB
+37007,6.70466,Toluene,LB
+37007,0.0008898826,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.014166074,Manganese,LB
+37007,0.8968124,Phenanthrene,LB
+37007,0.0364567,Methane,TON
+37007,0.1064254,PM25-Primary from certain diesel engines,TON
+37007,2.175587,Nitrogen Oxides,TON
+37017,0.9310504,Styrene,LB
+37017,0.03379632,Anthracene,LB
+37017,0.7805052,Propionaldehyde,LB
+37017,41.73708,Benzene,LB
+37017,0.010672588,Manganese,LB
+37015,200.7685,Nitrogen Oxides,TON
+37015,2.206361,PM2.5 Primary (Filt + Cond),TON
+37015,1.493624,Sulfur Dioxide,TON
+37015,0.0584848,Sulfate Portion of PM2.5-PRI,TON
+37015,101.8579,Volatile Organic Compounds,TON
+37015,1963.574,Formaldehyde,LB
+37015,1.9896296,Benzo[a]Pyrene,LB
+37015,0.038254,Mercury,LB
+37015,2044.654,Acetaldehyde,LB
+37015,12.53054,Fluorene,LB
+37015,112.19246,Acrolein,LB
+37181,0.0001578952,"Dibenzo[a,h]Anthracene",LB
+37181,0.003816192,Benz[a]Anthracene,LB
+37181,2.65603,Acetaldehyde,LB
+37181,0.003530618,Chrysene,LB
+37195,0.010418638,Acrolein,LB
+37195,0.5647464,Hexane,LB
+37195,0.003014914,Acenaphthylene,LB
+37195,0.551131,"2,2,4-Trimethylpentane",LB
+37195,0.0006612658,Acenaphthene,LB
+37195,7.453236e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.0003239513,PM2.5 Primary (Filt + Cond),TON
+37191,1.1950144,Acrolein,LB
+37191,0.8066872,Propionaldehyde,LB
+37191,0.000423981,Benzo[k]Fluoranthene,LB
+37191,0.03485644,Benz[a]Anthracene,LB
+37191,1.424253,Benzene,LB
+37191,0.2820656,Carbon Monoxide,TON
+37191,0.00257146,Ammonia,TON
+37191,0.001061946,Sulfur Dioxide,TON
+37187,0.00016758286,Acenaphthylene,LB
+37187,3.67795e-05,Chrysene,LB
+37187,0.06111888,Benzene,LB
+37187,5.998372e-06,Mercury,LB
+37187,0.2529937,Carbon Monoxide,TON
+37187,0.0008527272,Ammonia,TON
+37187,0.001196924,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,2.112963e-05,Sulfate Portion of PM2.5-PRI,TON
+37181,1.404917,Volatile Organic Compounds,TON
+37181,30.23368,Hexane,LB
+37181,11.520476,Benzene,LB
+37191,2.242538,"1,3-Butadiene",LB
+37191,95.1006,Toluene,LB
+37191,0.008116956,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.005639086,Benzo[b]Fluoranthene,LB
+37191,0.9045946,Naphthalene,LB
+37191,7.645285,Carbon Monoxide,TON
+37191,0.006101096,Ammonia,TON
+37191,0.00935012,PM2.5 Primary (Filt + Cond),TON
+37181,1.8653192,Toluene,LB
+37181,0.0537767,Anthracene,LB
+37181,0.00553247,Chrysene,LB
+37181,2.108116,Benzene,LB
+37181,0.1871332,Phenanthrene,LB
+37181,0.1246254,Volatile Organic Compounds,TON
+37197,718.232,"1,3-Butadiene",LB
+37197,1.793724,Benzo[b]Fluoranthene,LB
+37197,21.72404,Acenaphthylene,LB
+37197,1407.0528,Formaldehyde,LB
+37197,247.3616,Naphthalene,LB
+37197,79360.32,Carbon Dioxide,TON
+37195,6.561058,Acrolein,LB
+37195,1253.4298,Xylenes (Mixed Isomers),LB
+37195,132.0174,Formaldehyde,LB
+37195,90.77648,Carbon Monoxide,TON
+37195,2391.139,Carbon Dioxide,TON
+37195,0.02259246,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.04075712,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.004790836,Sulfate Portion of PM2.5-PRI,TON
+37195,10.2718,Volatile Organic Compounds,TON
+37183,2.465178,Propionaldehyde,LB
+37183,4.776314,Xylenes (Mixed Isomers),LB
+37183,1.7544684,Ethyl Benzene,LB
+37183,731.5964,Carbon Dioxide,TON
+37185,0.4104181,PM10-Primary from certain diesel engines,TON
+37185,0.09900925,Ammonia,TON
+37185,0.02445487,Sulfur Dioxide,TON
+37185,0.0011989276,Benzo[k]Fluoranthene,LB
+37185,0.02883078,Benzo[a]Pyrene,LB
+37185,0.0011905902,"Dibenzo[a,h]Anthracene",LB
+37185,0.0700348,Nickel,LB
+37041,9.4187,Benzene,LB
+37041,0.2415182,PM10-Primary from certain diesel engines,TON
+37041,0.2222028,PM25-Primary from certain diesel engines,TON
+37041,0.004415421,Nitrous Oxide,TON
+37041,0.08940353,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.2336886,PM2.5 Primary (Filt + Cond),TON
+37041,0.01055954,Sulfate Portion of PM2.5-PRI,TON
+37041,3.449596,Ethyl Benzene,LB
+37041,2.971068,"1,3-Butadiene",LB
+37041,7.838896,Acrolein,LB
+37041,5.008872,Propionaldehyde,LB
+37041,0.12089014,Chrysene,LB
+37041,0.0620185,Benzo[a]Pyrene,LB
+37031,1.73371,Pyrene,LB
+37031,0.3295222,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,775.5382,"2,2,4-Trimethylpentane",LB
+37031,0.4028538,Manganese,LB
+37031,0.008565378,Mercury,LB
+37031,1.0473044,Acenaphthene,LB
+37031,5.678628,Phenanthrene,LB
+37031,0.6915697,Methane,TON
+37031,0.6562854,Nitrous Oxide,TON
+37031,1.003533,Ammonia,TON
+37031,0.00119469,Nitrate portion of PM2.5-PRI,TON
+37029,4.023488e-05,Phenanthrene,LB
+37029,4.116917e-06,PM2.5 Primary (Filt + Cond),TON
+37029,1.06779e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.0009586242,"1,3-Butadiene",LB
+37029,0.005307086,"2,2,4-Trimethylpentane",LB
+37087,26.08164,Propionaldehyde,LB
+37087,0.0001273438,Chromium (VI),LB
+37087,0.0738758,Nickel,LB
+37087,53.0646,Naphthalene,LB
+37087,8275.804,Carbon Dioxide,TON
+37087,0.01076224,Nitrous Oxide,TON
+37087,0.1171105,Ammonia,TON
+37087,3.057824,PM10 Primary (Filt + Cond),TON
+37087,0.7430713,Volatile Organic Compounds,TON
+37087,58.06034,Acetaldehyde,LB
+37087,0.0279539,PM25-Primary from certain diesel engines,TON
+37087,4.508992,Ethyl Benzene,LB
+37087,3.457916,Hexane,LB
+37083,0.2587364,Hexane,LB
+37083,0.5526536,Propionaldehyde,LB
+37083,0.00675598,Benzo[a]Pyrene,LB
+37083,1.1341338,Naphthalene,LB
+37083,121.4189,Carbon Dioxide,TON
+37083,0.03532118,PM10 Primary (Filt + Cond),TON
+37083,0.02793535,PM2.5 Primary (Filt + Cond),TON
+37079,0.09190542,Hexane,LB
+37079,0.01292268,Anthracene,LB
+37079,0.00010555674,Benzo[k]Fluoranthene,LB
+37079,0.09134832,"2,2,4-Trimethylpentane",LB
+37079,0.0007881336,Manganese,LB
+37079,0.009733992,PM10-Primary from certain diesel engines,TON
+37071,0.0040117,Benzo[b]Fluoranthene,LB
+37071,1.2953328,Acenaphthylene,LB
+37071,256.7304,Formaldehyde,LB
+37071,0.01344309,Benzo[a]Pyrene,LB
+37071,6.673862,"2,2,4-Trimethylpentane",LB
+37071,108.82668,Acetaldehyde,LB
+37071,1.315824,Fluorene,LB
+37071,22.07566,Carbon Monoxide,TON
+37071,0.0003368136,Nitrate portion of PM2.5-PRI,TON
+37071,0.274567,Acrolein,LB
+37071,0.011945776,Anthracene,LB
+37071,0.02377904,Pyrene,LB
+37071,1.1261486e-05,Chromium (VI),LB
+37071,9.576232,"2,2,4-Trimethylpentane",LB
+37071,0.0751028,Phenanthrene,LB
+37071,0.008636944,Sulfur Dioxide,TON
+37071,0.0004370844,Sulfate Portion of PM2.5-PRI,TON
+37053,0.0314503,Volatile Organic Compounds,TON
+37053,30.72136,Formaldehyde,LB
+37053,0.09086088,Benzene,LB
+37053,0.0005769868,Phenanthrene,LB
+37053,0.0006535872,Naphthalene,LB
+37053,0.009606477,Nitrous Oxide,TON
+37053,1.160061e-06,Nitrate portion of PM2.5-PRI,TON
+37053,0.2102822,Nitrogen Oxides,TON
+37063,5365.596,Ethyl Benzene,LB
+37063,1193.8554,Benzene,LB
+37041,0.002920036,"Benzo[g,h,i,]Perylene",LB
+37041,0.003431838,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.4297032,Acenaphthylene,LB
+37041,8.190642,Benzene,LB
+37041,0.2391355,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.0652095,Acrolein,LB
+37041,1.0089946,Formaldehyde,LB
+37041,0.00146749,Benzo[a]Pyrene,LB
+37041,0.4715338,"1,3-Butadiene",LB
+37041,0.001189257,Nitrous Oxide,TON
+37041,0.0005078389,Sulfur Dioxide,TON
+37037,0.002172268,Manganese,LB
+37037,2.109194e-06,Mercury,LB
+37037,0.0013836398,Nickel,LB
+37037,0.03388488,PM10 Primary (Filt + Cond),TON
+37037,0.004263963,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.0008457721,Sulfur Dioxide,TON
+37029,0.002937296,Benzo[b]Fluoranthene,LB
+37029,3.490848,Formaldehyde,LB
+37029,0.00343437,Manganese,LB
+37029,0.0010393496,Arsenic,LB
+37029,1.278623e-05,Nitrate portion of PM2.5-PRI,TON
+37029,0.01686612,PM10 Primary (Filt + Cond),TON
+37023,2.90124,"1,3-Butadiene",LB
+37023,0.014386772,Benzo[a]Pyrene,LB
+37023,0.01294037,Nitrous Oxide,TON
+37023,0.01554616,Ammonia,TON
+37023,0.009111646,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.4457783,Volatile Organic Compounds,TON
+37199,0.0001572552,Arsenic,LB
+37199,0.004960138,Acenaphthene,LB
+37199,2.00528,Carbon Monoxide,TON
+37199,0.001289383,Ammonia,TON
+37199,0.0006767982,Sulfur Dioxide,TON
+37199,0.123101,Volatile Organic Compounds,TON
+37199,0.004240292,Anthracene,LB
+37199,0.02258882,Acenaphthylene,LB
+37199,5.93187,"2,2,4-Trimethylpentane",LB
+37185,0.2835536,Acrolein,LB
+37185,6.145104,Toluene,LB
+37185,0.002632918,Anthracene,LB
+37185,0.002896096,Benzo[b]Fluoranthene,LB
+37185,0.001207665,Elemental Carbon portion of PM2.5-PRI,TON
+37185,1.719542e-05,Nitrate portion of PM2.5-PRI,TON
+37185,0.006529951,PM2.5 Primary (Filt + Cond),TON
+37191,0.01578684,Benzo[b]Fluoranthene,LB
+37191,0.002175512,Benzo[k]Fluoranthene,LB
+37191,0.0529331,Benzo[a]Pyrene,LB
+37191,0.0021681,"Dibenzo[a,h]Anthracene",LB
+37191,0.208003,Benz[a]Anthracene,LB
+37191,0.01759888,Nickel,LB
+37191,0.00420257,Nitrous Oxide,TON
+37191,0.04337072,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.02680046,"Benzo[g,h,i,]Perylene",LB
+37191,0.11952732,Acenaphthylene,LB
+37191,8.509316,Formaldehyde,LB
+37191,0.010098008,Benzo[a]Pyrene,LB
+37191,9.617926e-05,Mercury,LB
+37191,0.0011992586,Nickel,LB
+37191,0.01375337,Methane,TON
+37191,0.01713684,PM2.5 Primary (Filt + Cond),TON
+37189,0.010515982,Nickel,LB
+37189,48.88796,Acetaldehyde,LB
+37189,8.768672,"1,3-Butadiene",LB
+37189,371.3308,Hexane,LB
+37189,0.1850551,Anthracene,LB
+37189,0.08724778,Benzo[a]Pyrene,LB
+37189,0.0019979228,"Dibenzo[a,h]Anthracene",LB
+37181,270.1024,Styrene,LB
+37181,2.89784,Benzo[b]Fluoranthene,LB
+37181,1.6080264,Manganese,LB
+37181,587.6324,Naphthalene,LB
+37181,1.149119,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,2.266502,Sulfur Dioxide,TON
+37181,0.1075707,Sulfate Portion of PM2.5-PRI,TON
+37023,73.59532,Xylenes (Mixed Isomers),LB
+37023,24.6922,Benzene,LB
+37023,0.004028288,Fluoranthene,LB
+37023,0.01239979,Acenaphthylene,LB
+37023,0.8808708,Formaldehyde,LB
+37095,0.005142306,"Benzo[g,h,i,]Perylene",LB
+37095,0.0017405288,Benz[a]Anthracene,LB
+37095,0.006815712,Methane,TON
+37095,75.65866,Carbon Dioxide,TON
+37095,0.006436112,Nitrous Oxide,TON
+37093,1.418124,Toluene,LB
+37093,0.09371186,Acenaphthylene,LB
+37093,0.04800944,Benz[a]Anthracene,LB
+37087,6.20396,Propionaldehyde,LB
+37087,0.17117794,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.11957912,Benzo[b]Fluoranthene,LB
+37087,0.5502972,Fluoranthene,LB
+37087,0.11957912,Benzo[k]Fluoranthene,LB
+37087,139.8675,Formaldehyde,LB
+37087,0.0269939,Arsenic,LB
+37087,0.373812,Acenaphthene,LB
+37087,0.2870141,Ammonia,TON
+37087,0.04752786,Sulfur Dioxide,TON
+37087,0.005161756,Sulfate Portion of PM2.5-PRI,TON
+37085,0.0282335,Methane,TON
+37085,0.02957246,Ammonia,TON
+37085,0.01511285,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.001056122,Sulfate Portion of PM2.5-PRI,TON
+37077,6.287816,Ethyl Benzene,LB
+37077,1.0072878,Acenaphthylene,LB
+37077,190.41686,Formaldehyde,LB
+37077,20.59112,Naphthalene,LB
+37077,10.47502,Carbon Monoxide,TON
+37077,0.1963041,PM25-Primary from certain diesel engines,TON
+37077,0.05078465,Ammonia,TON
+37077,0.02815094,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.01335888,Methane,TON
+37077,0.007597467,PM10 Primary (Filt + Cond),TON
+37077,32.20528,Toluene,LB
+37077,0.00512477,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.013227118,Fluoranthene,LB
+37069,481.9534,"2,2,4-Trimethylpentane",LB
+37045,0.2152368,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.7729768,Fluoranthene,LB
+37045,0.15615602,Benzo[k]Fluoranthene,LB
+37045,0.15141084,Chrysene,LB
+37045,198.98458,Formaldehyde,LB
+37045,0.4282156,Ammonia,TON
+37045,21.17322,"1,3-Butadiene",LB
+37037,0.011821406,"Dibenzo[a,h]Anthracene",LB
+37037,1.701201,PM25-Primary from certain diesel engines,TON
+37037,12.751932,Ethyl Benzene,LB
+37031,4.540206,Styrene,LB
+37031,0.2510828,Benzo[a]Pyrene,LB
+37031,35.18632,Benzene,LB
+37031,0.0001753496,Mercury,LB
+37031,4.397964,Phenanthrene,LB
+37031,13905.9,Carbon Dioxide,TON
+37031,1.511757,PM25-Primary from certain diesel engines,TON
+37031,0.2030715,Ammonia,TON
+37031,12353.304,"2,2,4-Trimethylpentane",LB
+37031,3507.324,Carbon Monoxide,TON
+37031,0.1958148,Sulfate Portion of PM2.5-PRI,TON
+37027,0.14960054,Fluoranthene,LB
+37027,0.09785216,Acenaphthylene,LB
+37027,0.19886494,Pyrene,LB
+37027,0.01562568,Benzo[a]Pyrene,LB
+37027,0.5253716,"2,2,4-Trimethylpentane",LB
+37027,0.014287836,Manganese,LB
+37027,5.5527e-06,Mercury,LB
+37027,0.1336304,Fluorene,LB
+37027,0.6492808,Carbon Monoxide,TON
+37027,0.09044168,PM10-Primary from certain diesel engines,TON
+37027,0.1458685,PM10 Primary (Filt + Cond),TON
+37169,115.19486,Acetaldehyde,LB
+37169,61.18959,Carbon Monoxide,TON
+37169,7.293582,Nitrogen Oxides,TON
+37169,0.1220917,PM2.5 Primary (Filt + Cond),TON
+37169,5.618791,Volatile Organic Compounds,TON
+37169,0.4769244,Fluoranthene,LB
+37169,0.08478008,Benz[a]Anthracene,LB
+37153,0.3266806,Pyrene,LB
+37153,0.07622482,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.2863462,Fluoranthene,LB
+37153,0.05646098,Benz[a]Anthracene,LB
+37153,0.0007329644,Mercury,LB
+37153,0.08965758,Methane,TON
+37153,0.01217467,Nitrous Oxide,TON
+37153,0.1465968,Ammonia,TON
+37153,0.0760427,PM2.5 Primary (Filt + Cond),TON
+37153,0.02464816,Sulfur Dioxide,TON
+37153,0.00233114,Sulfate Portion of PM2.5-PRI,TON
+37151,0.1727655,Benzo[k]Fluoranthene,LB
+37151,30.40836,Naphthalene,LB
+37151,26.7002,"1,3-Butadiene",LB
+37151,5601.386,Toluene,LB
+37151,0.2360047,PM2.5 Primary (Filt + Cond),TON
+37151,23.43677,Volatile Organic Compounds,TON
+37143,0.03582584,Toluene,LB
+37143,0.0001691062,Pyrene,LB
+37143,1.5773534e-05,Benz[a]Anthracene,LB
+37143,0.0002619358,Phenanthrene,LB
+37143,0.1089816,Methane,TON
+37143,0.0009390391,Ammonia,TON
+37143,5.012611e-07,Nitrate portion of PM2.5-PRI,TON
+37143,0.004238447,PM10 Primary (Filt + Cond),TON
+37143,0.001898904,PM2.5 Primary (Filt + Cond),TON
+37143,0.001066123,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.8200542,Toluene,LB
+37141,0.313238,"2,2,4-Trimethylpentane",LB
+37141,5.640994,Acetaldehyde,LB
+37141,0.002295123,Ammonia,TON
+37141,0.01183793,Organic Carbon portion of PM2.5-PRI,TON
+37139,2.054392e-08,Chromium (VI),LB
+37139,27.67696,Formaldehyde,LB
+37139,0.0002250028,Arsenic,LB
+37139,0.003469096,PM2.5 Primary (Filt + Cond),TON
+37135,0.03560734,Chrysene,LB
+37135,0.005228474,Manganese,LB
+37135,0.06048064,PM25-Primary from certain diesel engines,TON
+37135,0.0003136643,Nitrate portion of PM2.5-PRI,TON
+37135,0.09200116,Anthracene,LB
+37127,9.070044,Benzene,LB
+37127,42.7,Acetaldehyde,LB
+37127,10.19142,Carbon Monoxide,TON
+37127,1.2097504,Styrene,LB
+37127,0.441309,Pyrene,LB
+37127,0.4740432,Acenaphthylene,LB
+37127,0.02514804,Chrysene,LB
+37127,103.22292,Formaldehyde,LB
+37119,0.6933008,Arsenic,LB
+37119,182.99444,"2,2,4-Trimethylpentane",LB
+37119,682.7124,Xylenes (Mixed Isomers),LB
+37119,0.9261786,Benzo[b]Fluoranthene,LB
+37119,21.99612,Acenaphthylene,LB
+37119,3.10046,Benzo[a]Pyrene,LB
+37115,3.931468,Volatile Organic Compounds,TON
+37115,0.04427288,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.03187194,Benzo[b]Fluoranthene,LB
+37115,0.4833244,Acenaphthylene,LB
+37115,930.5344,Toluene,LB
+37115,0.0908958,Anthracene,LB
+37097,0.6339846,Styrene,LB
+37097,2.47389,Propionaldehyde,LB
+37097,0.03467846,Benzo[a]Pyrene,LB
+37097,4.670114,Benzene,LB
+37097,0.008535626,Nickel,LB
+37103,0.3132818,Pyrene,LB
+37103,3.770974,Benzene,LB
+37103,0.09867148,PM10-Primary from certain diesel engines,TON
+37103,0.0006573067,Nitrous Oxide,TON
+37103,1.2931004,Ethyl Benzene,LB
+37095,2.526588,Propionaldehyde,LB
+37095,3.957018,Xylenes (Mixed Isomers),LB
+37095,0.357455,Fluoranthene,LB
+37095,0.5869262,Phenanthrene,LB
+37095,5.440908,Naphthalene,LB
+37095,1.41185,Carbon Monoxide,TON
+37079,0.0008528796,Benz[a]Anthracene,LB
+37079,0.0002852266,Arsenic,LB
+37079,0.7098736,Acetaldehyde,LB
+37079,0.1154567,Naphthalene,LB
+37079,50.71428,Carbon Dioxide,TON
+37079,0.000807072,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.0005581275,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.0008968618,Benzo[b]Fluoranthene,LB
+37079,0.270195,"1,3-Butadiene",LB
+37073,3.921,Ethyl Benzene,LB
+37073,1.2589108,Styrene,LB
+37073,0.312016,Anthracene,LB
+37073,0.002442504,"Dibenzo[a,h]Anthracene",LB
+37073,10.331778,Benzene,LB
+37073,1.2094542,Phenanthrene,LB
+37073,0.005839646,Nitrous Oxide,TON
+37073,13.87831,Nitrogen Oxides,TON
+37073,0.00637667,Arsenic,LB
+37073,1154.602,Carbon Dioxide,TON
+37073,0.1144672,Organic Carbon portion of PM2.5-PRI,TON
+37073,1.481874,Styrene,LB
+37085,7.562726e-05,Mercury,LB
+37085,72.54974,Acetaldehyde,LB
+37085,1266.095,Carbon Dioxide,TON
+37085,1.354355,Nitrogen Oxides,TON
+37085,0.005598274,Sulfate Portion of PM2.5-PRI,TON
+37085,0.0007944576,Arsenic,LB
+37085,0.01277967,Methane,TON
+37085,0.001541847,Elemental Carbon portion of PM2.5-PRI,TON
+37085,19.642996,"2,2,4-Trimethylpentane",LB
+37085,0.3929888,Styrene,LB
+37085,2.136596,"1,3-Butadiene",LB
+37085,0.3166936,Acrolein,LB
+37085,23.79778,Hexane,LB
+37085,0.014394364,Anthracene,LB
+37085,0.02235968,"Benzo[g,h,i,]Perylene",LB
+37085,0.005706064,Benzo[b]Fluoranthene,LB
+37083,4.306282,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,2151.008,Formaldehyde,LB
+37083,0.09884854,"Dibenzo[a,h]Anthracene",LB
+37083,1.1914376,Nickel,LB
+37083,134152,Carbon Dioxide,TON
+37083,2.814142,Sulfur Dioxide,TON
+37083,0.1359743,Sulfate Portion of PM2.5-PRI,TON
+37079,4.3672,Xylenes (Mixed Isomers),LB
+37079,0.0009945378,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.721186,Formaldehyde,LB
+37079,2.282362e-05,"Dibenzo[a,h]Anthracene",LB
+37077,0.13029058,Benzo[a]Pyrene,LB
+37077,12.101394,"1,3-Butadiene",LB
+37077,0.0870664,Chrysene,LB
+37077,1.5740224,Phenanthrene,LB
+37077,77.87549,Carbon Monoxide,TON
+37053,4.815388,Toluene,LB
+37053,0.001866261,Benzo[k]Fluoranthene,LB
+37053,1.087314e-05,Mercury,LB
+37053,463.7199,Carbon Dioxide,TON
+37061,0.11054844,Benzo[b]Fluoranthene,LB
+37061,0.7365076,Chrysene,LB
+37061,73.80244,Naphthalene,LB
+37061,0.1636426,Sulfate Portion of PM2.5-PRI,TON
+37061,7.055284,Pyrene,LB
+37061,7.502394,Acenaphthylene,LB
+37061,0.4051432,Chrysene,LB
+37061,0.09067634,Benzo[a]Pyrene,LB
+37061,123.99584,Benzene,LB
+37061,0.1558227,Manganese,LB
+37061,568.8718,Acetaldehyde,LB
+37061,28.96967,Nitrogen Oxides,TON
+37061,1.478133,PM10 Primary (Filt + Cond),TON
+37061,1.189922,PM2.5 Primary (Filt + Cond),TON
+37061,43.11864,Ethyl Benzene,LB
+37061,19.523328,Styrene,LB
+37051,24067.04,Ethyl Benzene,LB
+37051,15.833112,Benzo[a]Pyrene,LB
+37051,17.11702,Manganese,LB
+37051,5.025624,Nickel,LB
+37051,21.93736,Nitrous Oxide,TON
+37051,0.05576586,Nitrate portion of PM2.5-PRI,TON
+37051,8.492757,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,2.186844,Ethyl Benzene,LB
+37043,6.574132,"2,2,4-Trimethylpentane",LB
+37039,0.2233934,Ammonia,TON
+37039,0.04127348,Benzo[b]Fluoranthene,LB
+37039,7.31139,"1,3-Butadiene",LB
+37029,0.0014503584,Benz[a]Anthracene,LB
+37029,0.002958606,Manganese,LB
+37029,20.15908,Acetaldehyde,LB
+37029,221.6613,Carbon Dioxide,TON
+37029,0.01187036,Ammonia,TON
+37023,9.209816,Xylenes (Mixed Isomers),LB
+37017,0.02645044,Acenaphthylene,LB
+37017,15.355382,Benzene,LB
+37017,0.00522038,Anthracene,LB
+37017,0.009480372,Fluoranthene,LB
+37017,0.02025957,Sulfur Dioxide,TON
+37177,0.00012300502,Benzo[k]Fluoranthene,LB
+37177,0.002653906,Styrene,LB
+37177,0.009677382,Acrolein,LB
+37177,9.174946e-05,Acenaphthene,LB
+37177,0.1728167,Carbon Monoxide,TON
+37177,8.396272e-07,Nitrate portion of PM2.5-PRI,TON
+37177,0.01079142,Nitrogen Oxides,TON
+37177,0.001123552,PM10 Primary (Filt + Cond),TON
+37139,2.627548,Benzene,LB
+37139,0.001405552,Arsenic,LB
+37139,0.0008084532,Acenaphthene,LB
+37139,0.001893344,Nitrous Oxide,TON
+37139,5.731359e-06,Nitrate portion of PM2.5-PRI,TON
+37139,0.003307243,Sulfur Dioxide,TON
+37139,7.201015e-05,Sulfate Portion of PM2.5-PRI,TON
+37139,0.0015285632,Pyrene,LB
+37129,0.002219688,Benzo[k]Fluoranthene,LB
+37129,2.23761,"2,2,4-Trimethylpentane",LB
+37129,0.010357054,Phenanthrene,LB
+37129,0.006516163,Nitrous Oxide,TON
+37129,0.01541168,Ammonia,TON
+37129,1.926719e-05,Nitrate portion of PM2.5-PRI,TON
+37103,0.0004499414,Benzo[b]Fluoranthene,LB
+37103,0.0007178824,Nitrous Oxide,TON
+37087,7.271102,Hexane,LB
+37087,0.018348746,Pyrene,LB
+37087,0.04154356,Acenaphthylene,LB
+37087,19.081302,Formaldehyde,LB
+37087,0.014305402,Arsenic,LB
+37087,0.05167302,Phenanthrene,LB
+37175,5.164156,"1,3-Butadiene",LB
+37175,14.020914,Toluene,LB
+37175,4.55905,Hexane,LB
+37175,8.683704,Propionaldehyde,LB
+37175,0.3713278,Benz[a]Anthracene,LB
+37171,7.649858,Styrene,LB
+37171,17.289612,"1,3-Butadiene",LB
+37171,42.06304,Acrolein,LB
+37171,5.380556,Pyrene,LB
+37171,0.08016488,Nickel,LB
+37171,1.7546942,Acenaphthene,LB
+37171,0.00014451974,Mercury,LB
+37171,0.602147,PM10-Primary from certain diesel engines,TON
+37171,40.43416,Acrolein,LB
+37159,0.0005922738,Fluoranthene,LB
+37159,0.3722962,Benzene,LB
+37159,0.0008166156,Arsenic,LB
+37159,1.06901,Methane,TON
+37159,0.6964854,Nitrogen Oxides,TON
+37159,0.1122792,Volatile Organic Compounds,TON
+37155,24.17014,Formaldehyde,LB
+37155,0.003676848,Nickel,LB
+37155,0.2912666,Phenanthrene,LB
+37155,0.4674129,Carbon Monoxide,TON
+37155,0.0002774585,Nitrate portion of PM2.5-PRI,TON
+37155,0.3733734,Fluoranthene,LB
+37155,0.02518282,Manganese,LB
+37155,0.004917444,Arsenic,LB
+37155,0.626832,Phenanthrene,LB
+37155,0.02998078,Methane,TON
+37155,1833.723,Carbon Dioxide,TON
+37155,0.02591769,Ammonia,TON
+37009,3.155256e-06,"Dibenzo[a,h]Anthracene",LB
+37009,0.296257,Benzene,LB
+37009,6.483532e-06,Nickel,LB
+37009,0.0002388526,Methane,TON
+37009,3.295841,Carbon Dioxide,TON
+37009,6.914661e-05,Sulfur Dioxide,TON
+37009,0.005594518,Acrolein,LB
+37009,0.005602932,Propionaldehyde,LB
+37009,5.186958e-08,Chromium (VI),LB
+37009,9.469782e-05,Benzo[k]Fluoranthene,LB
+37001,108.80114,Ethyl Benzene,LB
+37001,0.0257219,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.3386574,Benzo[a]Pyrene,LB
+37001,2.546194,Benz[a]Anthracene,LB
+37001,0.0005526306,Mercury,LB
+37001,11.325006,Acenaphthene,LB
+37001,0.006642838,Nitrate portion of PM2.5-PRI,TON
+37071,0.00823717,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.014819096,Acenaphthylene,LB
+37071,672.4151,Carbon Dioxide,TON
+37071,1.956492,Ethyl Benzene,LB
+37013,2.114802,Propionaldehyde,LB
+37013,0.016086198,Pyrene,LB
+37013,4.303868e-05,Chromium (VI),LB
+37013,18.36351,Formaldehyde,LB
+37013,110.9292,Acetaldehyde,LB
+37013,9.093633,Carbon Monoxide,TON
+37013,0.0004909411,Sulfate Portion of PM2.5-PRI,TON
+37005,0.07466706,"2,2,4-Trimethylpentane",LB
+37005,7.356312e-05,Acenaphthene,LB
+37005,0.00014900578,Fluorene,LB
+37005,0.06593529,Carbon Monoxide,TON
+37157,2.141136,Propionaldehyde,LB
+37157,18.144316,Xylenes (Mixed Isomers),LB
+37157,0.0447429,"Benzo[g,h,i,]Perylene",LB
+37157,0.008948006,Benzo[b]Fluoranthene,LB
+37117,0.000225458,Benzo[k]Fluoranthene,LB
+37117,0.2097662,"2,2,4-Trimethylpentane",LB
+37117,33.3491,Carbon Dioxide,TON
+37117,0.002214485,PM10 Primary (Filt + Cond),TON
+37117,0.0002284317,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.001013181,Sulfur Dioxide,TON
+37117,0.02345036,"1,3-Butadiene",LB
+37117,0.18300488,Hexane,LB
+37095,0.0002351736,Manganese,LB
+37095,0.0001916795,Fluorene,LB
+37095,0.00874516,Nitrogen Oxides,TON
+37095,0.2528266,Toluene,LB
+37095,0.0001847017,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,27.87826,Hexane,LB
+37013,3.150996,Anthracene,LB
+37013,0.382697,Chrysene,LB
+37013,0.00019139556,Mercury,LB
+37013,0.9182998,PM10-Primary from certain diesel engines,TON
+37013,0.02810873,Sulfate Portion of PM2.5-PRI,TON
+37021,13.434038,Ethyl Benzene,LB
+37021,0.4707738,Acrolein,LB
+37021,0.011083116,Benzo[b]Fluoranthene,LB
+37021,0.002720874,Arsenic,LB
+37021,0.04810998,Fluorene,LB
+37021,6.364243e-05,Nitrate portion of PM2.5-PRI,TON
+37011,4.703128,"1,3-Butadiene",LB
+37011,0.3909626,Anthracene,LB
+37011,7.770914,Propionaldehyde,LB
+37011,0.00192495,"Benzo[g,h,i,]Perylene",LB
+37011,0.6289136,Fluoranthene,LB
+37011,0.016457274,Manganese,LB
+37011,0.1039862,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.002667815,Nitrous Oxide,TON
+37011,0.004702423,Sulfate Portion of PM2.5-PRI,TON
+37001,0.05516506,"Benzo[g,h,i,]Perylene",LB
+37001,0.02058606,Benzo[a]Pyrene,LB
+37001,0.0004756056,"Dibenzo[a,h]Anthracene",LB
+37001,29.47936,"2,2,4-Trimethylpentane",LB
+37001,5.651874e-05,Mercury,LB
+37051,55.93394,Xylenes (Mixed Isomers),LB
+37051,0.01782769,Elemental Carbon portion of PM2.5-PRI,TON
+37051,3.42202,Nitrogen Oxides,TON
+37047,1.9002848,Toluene,LB
+37047,0.0008152818,Chrysene,LB
+37047,1.6046286,Formaldehyde,LB
+37047,9.561144e-05,Mercury,LB
+37047,0.001627612,Fluorene,LB
+37047,0.008543635,Methane,TON
+37047,0.01008561,PM10 Primary (Filt + Cond),TON
+37047,8.810454e-05,Sulfate Portion of PM2.5-PRI,TON
+37023,3.068336,Toluene,LB
+37023,0.0010694138,Anthracene,LB
+37023,0.2717594,Propionaldehyde,LB
+37023,0.002281148,Pyrene,LB
+37023,0.007691172,"Benzo[g,h,i,]Perylene",LB
+37023,0.0014979792,Benzo[b]Fluoranthene,LB
+37023,0.00523622,Acenaphthylene,LB
+37023,0.0018309028,Nickel,LB
+37023,13.32094,Acetaldehyde,LB
+37023,0.006491542,Phenanthrene,LB
+37023,0.0007710509,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.08992448,Volatile Organic Compounds,TON
+37159,0.004446108,Fluorene,LB
+37159,0.005867233,Nitrous Oxide,TON
+37159,0.004164611,Organic Carbon portion of PM2.5-PRI,TON
+37111,16.933456,Formaldehyde,LB
+37111,0.0003660312,"Dibenzo[a,h]Anthracene",LB
+37111,0.4844046,Volatile Organic Compounds,TON
+37017,1.285688,Propionaldehyde,LB
+37017,8.784642e-05,Chrysene,LB
+37017,0.0010381054,Naphthalene,LB
+37017,79.68374,Carbon Dioxide,TON
+37017,1.152199e-06,Nitrate portion of PM2.5-PRI,TON
+37007,12.040738,Toluene,LB
+37007,192.26176,Formaldehyde,LB
+37007,0.16522906,Benzo[a]Pyrene,LB
+37007,0.007831062,Arsenic,LB
+37007,2901.799,Carbon Dioxide,TON
+37007,1.209352,PM10 Primary (Filt + Cond),TON
+37005,1986.436,Carbon Dioxide,TON
+37005,0.0006110294,Nitrate portion of PM2.5-PRI,TON
+37005,0.3418084,PM10 Primary (Filt + Cond),TON
+37005,0.3748706,Volatile Organic Compounds,TON
+37001,14.122772,Anthracene,LB
+37001,4799.476,Formaldehyde,LB
+37001,17137.426,Benzene,LB
+37001,0.2069998,Mercury,LB
+37007,839.4832,Ethyl Benzene,LB
+37007,186.4134,Benzene,LB
+37061,2.464028,Benzene,LB
+37043,0.1624818,Hexane,LB
+37043,0.00010849276,Chrysene,LB
+37043,0.0002551776,Benzo[a]Pyrene,LB
+37017,0.1182844,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.2449966,PM10 Primary (Filt + Cond),TON
+37017,0.1877491,PM2.5 Primary (Filt + Cond),TON
+37017,0.006499442,Sulfur Dioxide,TON
+37017,0.06954676,Chrysene,LB
+37017,7.724874,Benzene,LB
+37015,3.910572,Acetaldehyde,LB
+37015,0.06263128,Fluorene,LB
+37015,0.02664021,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.17366634,Phenanthrene,LB
+37011,0.00437451,Ammonia,TON
+37199,0.0001764942,Chrysene,LB
+37199,0.4008048,Formaldehyde,LB
+37199,0.0003923514,Arsenic,LB
+37193,0.005857032,"Dibenzo[a,h]Anthracene",LB
+37193,4.936026,"2,2,4-Trimethylpentane",LB
+37193,0.03532396,Manganese,LB
+37193,0.0201814,Nickel,LB
+37193,87.28552,Acetaldehyde,LB
+37193,6.6481,Ethyl Benzene,LB
+37193,1.172132,Volatile Organic Compounds,TON
+37193,0.07090622,Mercury,LB
+37193,1.3556624,Arsenic,LB
+37193,3.213196,Methane,TON
+37193,9.5589,Ammonia,TON
+37193,3.767344,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,2.462536,Benz[a]Anthracene,LB
+37191,10.840528,Styrene,LB
+37191,0.03344486,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.018733806,Benzo[k]Fluoranthene,LB
+37191,133.493,Naphthalene,LB
+37191,1.948627,Methane,TON
+37191,3.8767,PM2.5 Primary (Filt + Cond),TON
+37181,0.0003290908,Fluoranthene,LB
+37181,1.565021e-05,Mercury,LB
+37181,5.778172,Acetaldehyde,LB
+37181,85.45337,Carbon Dioxide,TON
+37181,0.3816222,Nitrogen Oxides,TON
+37181,0.2212624,Acrolein,LB
+37199,0.0872662,Styrene,LB
+37199,6.38686,Toluene,LB
+37199,1.399042e-05,Chromium (VI),LB
+37199,2.907534,"2,2,4-Trimethylpentane",LB
+37199,0.01382067,Ammonia,TON
+37197,590.6651,Carbon Dioxide,TON
+37197,0.004095885,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.967316,Styrene,LB
+37197,6.395966,Toluene,LB
+37195,10.004646,Styrene,LB
+37195,2.521776,Anthracene,LB
+37195,38.90016,Propionaldehyde,LB
+37195,0.0002811142,Chromium (VI),LB
+37195,0.03940114,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,5.428134,Fluoranthene,LB
+37195,821.7674,Formaldehyde,LB
+37195,0.02123238,"Dibenzo[a,h]Anthracene",LB
+37195,0.12634768,Nickel,LB
+37195,18.71747,Carbon Monoxide,TON
+37195,0.8726642,Elemental Carbon portion of PM2.5-PRI,TON
+37069,1.0888972,Xylenes (Mixed Isomers),LB
+37069,0.0005581488,"Benzo[g,h,i,]Perylene",LB
+37069,0.0003836892,Benzo[k]Fluoranthene,LB
+37069,0.009258662,Benzo[a]Pyrene,LB
+37069,1.1835318,Benzene,LB
+37069,363.6797,Carbon Dioxide,TON
+37069,0.0930713,PM10 Primary (Filt + Cond),TON
+37067,31977.48,Carbon Dioxide,TON
+37067,0.09020366,Nitrous Oxide,TON
+37067,27.36294,Pyrene,LB
+37067,22.26576,Fluoranthene,LB
+37067,4844.87,Formaldehyde,LB
+37067,0.7220436,Nickel,LB
+37067,0.2206778,Arsenic,LB
+37067,2127.61,Acetaldehyde,LB
+37067,16.48247,Acenaphthene,LB
+37067,28.30924,Fluorene,LB
+37063,60.63962,Benzene,LB
+37049,5.258021,Volatile Organic Compounds,TON
+37049,0.02608604,"Benzo[g,h,i,]Perylene",LB
+37049,4.828502,Fluoranthene,LB
+37049,1.3722452,Benz[a]Anthracene,LB
+37049,5.140348,Fluorene,LB
+37037,0.9221066,Benz[a]Anthracene,LB
+37037,0.1960365,Manganese,LB
+37037,5.716376,Phenanthrene,LB
+37037,0.4554146,Methane,TON
+37037,3.160888,Fluoranthene,LB
+37035,0.0008885756,Mercury,LB
+37035,1.515325,Phenanthrene,LB
+37035,0.2096922,Nitrous Oxide,TON
+37035,0.07635636,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.239248,Anthracene,LB
+37035,38.87051,Ammonia,TON
+37035,65.55144,Fluoranthene,LB
+37035,204.8456,Acenaphthylene,LB
+37035,9985.065,Carbon Monoxide,TON
+37035,14211.978,Formaldehyde,LB
+37035,0.3710114,"Dibenzo[a,h]Anthracene",LB
+37035,32972.36,"2,2,4-Trimethylpentane",LB
+37035,3.220656,Nickel,LB
+37033,30.27521,Nitrogen Oxides,TON
+37033,137.66598,Acetaldehyde,LB
+37033,1.4545258,Fluorene,LB
+37033,0.01058242,Nitrous Oxide,TON
+37033,0.00782984,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.0009049892,Hexane,LB
+37023,7.123369e-05,Nitrogen Oxides,TON
+37023,7.957909e-07,Organic Carbon portion of PM2.5-PRI,TON
+37023,2.766766e-06,PM10 Primary (Filt + Cond),TON
+37023,4.234795e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,342.4302,Acetaldehyde,LB
+37023,1.0053484,Acenaphthene,LB
+37023,0.9518836,Ammonia,TON
+37023,1.293629,PM10 Primary (Filt + Cond),TON
+37023,0.14948,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,20.13722,Propionaldehyde,LB
+37023,1.469932,Fluoranthene,LB
+37159,23.19924,Hexane,LB
+37159,0.0442286,Pyrene,LB
+37159,0.12048538,Acenaphthylene,LB
+37159,0.0001854529,Nickel,LB
+37159,9.372816,Carbon Monoxide,TON
+37159,0.008518065,Nitrous Oxide,TON
+37159,3.105894e-05,Nitrate portion of PM2.5-PRI,TON
+37145,0.0003614838,Arsenic,LB
+37145,0.2349112,Naphthalene,LB
+37145,0.592602,"1,3-Butadiene",LB
+37145,1.8860832e-06,Chromium (VI),LB
+37145,0.0004248635,Elemental Carbon portion of PM2.5-PRI,TON
+37145,5.000037e-06,Nitrate portion of PM2.5-PRI,TON
+37145,0.1893125,Nitrogen Oxides,TON
+37145,0.006659755,PM10 Primary (Filt + Cond),TON
+37143,0.1746494,Toluene,LB
+37143,0.1702628,Xylenes (Mixed Isomers),LB
+37143,0.06585338,"2,2,4-Trimethylpentane",LB
+37143,0.000323935,Nickel,LB
+37143,1.1694134,Acetaldehyde,LB
+37143,0.05215919,Carbon Monoxide,TON
+37143,0.006085007,PM2.5 Primary (Filt + Cond),TON
+37143,0.0001582889,Sulfate Portion of PM2.5-PRI,TON
+37139,0.002415982,Ethyl Benzene,LB
+37139,1.3880634e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.003938774,Benzene,LB
+37139,7.247395e-07,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.11198408,Anthracene,LB
+37127,0.3230092,Pyrene,LB
+37127,0.001461092,"Benzo[g,h,i,]Perylene",LB
+37127,0.2444168,Fluoranthene,LB
+37127,0.9297016,"2,2,4-Trimethylpentane",LB
+37127,0.1717637,PM10-Primary from certain diesel engines,TON
+37127,0.001294973,Nitrous Oxide,TON
+37127,3.397684,Nitrogen Oxides,TON
+37127,0.1682524,PM2.5 Primary (Filt + Cond),TON
+37127,0.009233641,Sulfate Portion of PM2.5-PRI,TON
+37125,11.594012,"2,2,4-Trimethylpentane",LB
+37125,9.620784e-05,Mercury,LB
+37125,0.1928328,Methane,TON
+37125,1.167368,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.0132131,Nitrous Oxide,TON
+37125,1.980766,PM2.5 Primary (Filt + Cond),TON
+37125,6.457062,Styrene,LB
+37125,0.002995574,Benzo[b]Fluoranthene,LB
+37125,3.627444,Formaldehyde,LB
+37125,0.009762347,Nitrous Oxide,TON
+37125,0.005110474,PM2.5 Primary (Filt + Cond),TON
+37123,35.17136,Toluene,LB
+37113,0.08495464,Fluoranthene,LB
+37113,0.008339462,Benzo[a]Pyrene,LB
+37113,0.02723332,Benz[a]Anthracene,LB
+37113,0.07808556,Fluorene,LB
+37113,0.03173472,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.006255815,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.009347144,Benzo[b]Fluoranthene,LB
+37113,0.0012777216,"Dibenzo[a,h]Anthracene",LB
+37113,0.002309692,"Benzo[g,h,i,]Perylene",LB
+37113,0.5302524,Fluorene,LB
+37109,0.0009077974,"Dibenzo[a,h]Anthracene",LB
+37109,0.0003953866,Mercury,LB
+37109,0.004929878,Nickel,LB
+37109,0.01072457,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.05028708,PM2.5 Primary (Filt + Cond),TON
+37109,0.0001577641,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.0003278678,Nitrous Oxide,TON
+37109,0.000938429,PM2.5 Primary (Filt + Cond),TON
+37109,0.03371846,Propionaldehyde,LB
+37109,0.002667536,Pyrene,LB
+37109,0.0002412205,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,2.773911e-05,Sulfate Portion of PM2.5-PRI,TON
+37109,0.008140878,Nitrous Oxide,TON
+37109,2.55714e-05,Nitrate portion of PM2.5-PRI,TON
+37109,0.005315601,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.0003430255,Sulfate Portion of PM2.5-PRI,TON
+37109,9.206764,Ethyl Benzene,LB
+37109,47.21802,Toluene,LB
+37109,5.814858e-06,Chromium (VI),LB
+37109,0.026698,Fluoranthene,LB
+37101,172.55804,Hexane,LB
+37097,1.8625318,Pyrene,LB
+37097,18.452264,Xylenes (Mixed Isomers),LB
+37097,0.006739648,"Benzo[g,h,i,]Perylene",LB
+37097,0.567912,PM2.5 Primary (Filt + Cond),TON
+37099,0.04571296,Acenaphthylene,LB
+37099,0.02384615,PM10 Primary (Filt + Cond),TON
+37093,6.750922,Propionaldehyde,LB
+37093,0.563489,Pyrene,LB
+37093,744.511,Xylenes (Mixed Isomers),LB
+37093,1.556011,Acenaphthylene,LB
+37093,343.9156,Benzene,LB
+37093,0.3420048,Acenaphthene,LB
+37093,67.55128,Carbon Monoxide,TON
+37093,0.1182463,PM2.5 Primary (Filt + Cond),TON
+37093,0.002849435,Sulfate Portion of PM2.5-PRI,TON
+37083,1.191715e-05,"Dibenzo[a,h]Anthracene",LB
+37083,0.009992448,Styrene,LB
+37083,0.4552178,Benzene,LB
+37083,8.02665e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37081,41.44012,Hexane,LB
+37081,0.02380916,"Benzo[g,h,i,]Perylene",LB
+37081,0.008575614,Benzo[k]Fluoranthene,LB
+37081,0.278207,Manganese,LB
+37081,697.9336,Acetaldehyde,LB
+37081,4.906866,Acenaphthene,LB
+37081,14798.37,Carbon Dioxide,TON
+37077,0.002321506,Nitrogen Oxides,TON
+37077,0.0012122822,Propionaldehyde,LB
+37077,4.746354e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.05932498,Benzene,LB
+37075,1.9100904,"1,3-Butadiene",LB
+37075,5.011192,Acrolein,LB
+37075,5.21586,Toluene,LB
+37075,1.6912574,Hexane,LB
+37075,1.7873852,"2,2,4-Trimethylpentane",LB
+37075,0.04526055,Methane,TON
+37075,0.0006080182,Nitrate portion of PM2.5-PRI,TON
+37075,0.05184518,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.01355685,Sulfate Portion of PM2.5-PRI,TON
+37075,209.5532,Ethyl Benzene,LB
+37065,0.0009605368,"Benzo[g,h,i,]Perylene",LB
+37065,0.0003610706,Benzo[a]Pyrene,LB
+37065,0.0002347335,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.003305898,Benzo[b]Fluoranthene,LB
+37057,0.011088924,Benzo[a]Pyrene,LB
+37057,1.4550198,Benzene,LB
+37057,0.03956604,PM2.5 Primary (Filt + Cond),TON
+37055,1.149163,Anthracene,LB
+37055,18.254906,Propionaldehyde,LB
+37055,3.281296,Pyrene,LB
+37055,0.010143358,"Dibenzo[a,h]Anthracene",LB
+37055,1.0467754,Acenaphthene,LB
+37055,1.932919,PM2.5 Primary (Filt + Cond),TON
+37049,456.006,Benzene,LB
+37041,0.128979,Toluene,LB
+37041,0.04853632,Hexane,LB
+37041,15.09839,Carbon Dioxide,TON
+37041,0.0003227243,Ammonia,TON
+37041,0.07755596,Nitrogen Oxides,TON
+37041,0.004325666,PM2.5 Primary (Filt + Cond),TON
+37031,15100.61,Toluene,LB
+37031,52.66641,Volatile Organic Compounds,TON
+37029,878.1764,Formaldehyde,LB
+37029,146.37456,Naphthalene,LB
+37101,0.00014452738,Mercury,LB
+37101,0.006689342,Phenanthrene,LB
+37101,238.5083,Carbon Dioxide,TON
+37101,0.1412021,Nitrogen Oxides,TON
+37101,0.08294215,Volatile Organic Compounds,TON
+37093,2.628208,Toluene,LB
+37177,7.658137e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.129751,PM25-Primary from certain diesel engines,TON
+37175,0.007149308,Ammonia,TON
+37175,0.0004718153,Nitrate portion of PM2.5-PRI,TON
+37167,33.31086,Acrolein,LB
+37167,0.00011263316,Chromium (VI),LB
+37167,0.02575936,Arsenic,LB
+37167,187.90958,Acetaldehyde,LB
+37167,0.3161006,Methane,TON
+37167,0.3490537,Elemental Carbon portion of PM2.5-PRI,TON
+37167,16.43708,Nitrogen Oxides,TON
+37167,1.507398,PM10 Primary (Filt + Cond),TON
+37167,0.04345127,Sulfur Dioxide,TON
+37165,1187.1304,Acetaldehyde,LB
+37165,3.316018,Acenaphthene,LB
+37165,6.716952,Fluorene,LB
+37165,97.85742,Nitrogen Oxides,TON
+37165,62.95596,Propionaldehyde,LB
+37165,0.005374936,Chromium (VI),LB
+37165,1.8174394,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,5.1793,Benzo[b]Fluoranthene,LB
+37163,5.1793,Benzo[k]Fluoranthene,LB
+37163,1085.9142,Naphthalene,LB
+37163,17.5676,Ammonia,TON
+37163,7.217509,PM2.5 Primary (Filt + Cond),TON
+37163,1.961412,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,1.96801,"1,3-Butadiene",LB
+37145,3.235916,Xylenes (Mixed Isomers),LB
+37145,1.4293786e-05,Chromium (VI),LB
+37145,0.2003234,Acenaphthene,LB
+37145,0.1731037,PM10-Primary from certain diesel engines,TON
+37145,0.0005508041,Nitrate portion of PM2.5-PRI,TON
+37139,13601.74,Carbon Dioxide,TON
+37139,1.259207,PM10-Primary from certain diesel engines,TON
+37139,0.2031128,Ammonia,TON
+37139,34.40307,Nitrogen Oxides,TON
+37139,1.791885,Volatile Organic Compounds,TON
+37139,3.365306,Styrene,LB
+37139,41.66406,Toluene,LB
+37139,0.011026042,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,1.3717016,Acenaphthylene,LB
+37139,0.2865412,Chrysene,LB
+37139,7.32695,Ethyl Benzene,LB
+37139,6.166134,"1,3-Butadiene",LB
+37139,0.620392,Acenaphthene,LB
+37139,7770.045,Carbon Dioxide,TON
+37131,4.85212,Styrene,LB
+37131,44.85584,Acrolein,LB
+37131,91.38624,Xylenes (Mixed Isomers),LB
+37131,732.0528,Formaldehyde,LB
+37131,55.25054,Benzene,LB
+37131,272.6478,Acetaldehyde,LB
+37131,66.70962,Naphthalene,LB
+37131,0.2858696,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.1521235,Sulfur Dioxide,TON
+37127,867.4932,Ethyl Benzene,LB
+37127,29.0346,Propionaldehyde,LB
+37127,0.6775546,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,6.717264,Acenaphthylene,LB
+37127,0.677328,Benzo[a]Pyrene,LB
+37127,0.4656216,Benz[a]Anthracene,LB
+37127,2.985342,Fluorene,LB
+37127,28288.93,Carbon Dioxide,TON
+37127,0.1620249,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.8379678,Nitrous Oxide,TON
+37127,0.871234,PM2.5 Primary (Filt + Cond),TON
+37127,0.02390507,Sulfate Portion of PM2.5-PRI,TON
+37123,1.113325,Methane,TON
+37123,13.73977,Carbon Monoxide,TON
+37123,0.2893572,Organic Carbon portion of PM2.5-PRI,TON
+37123,78.19552,Toluene,LB
+37111,0.0001708284,Anthracene,LB
+37111,0.0006756172,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.002858339,Ammonia,TON
+37111,0.07019759,Volatile Organic Compounds,TON
+37007,0.6588175,PM2.5 Primary (Filt + Cond),TON
+37007,0.05683912,Benzo[b]Fluoranthene,LB
+37007,0.007794678,Benzo[k]Fluoranthene,LB
+37007,0.007780414,"Dibenzo[a,h]Anthracene",LB
+37007,0.1381552,Methane,TON
+37015,6.850848,Propionaldehyde,LB
+37015,1.5516592,Acenaphthylene,LB
+37015,235.1852,"2,2,4-Trimethylpentane",LB
+37015,0.0930028,Benz[a]Anthracene,LB
+37015,0.3478502,Ammonia,TON
+37015,10.69397,Nitrogen Oxides,TON
+37015,0.06817105,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.03995735,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.003702528,Sulfate Portion of PM2.5-PRI,TON
+37015,0.678464,Arsenic,LB
+37015,859.8102,Acetaldehyde,LB
+37015,1.297753,Methane,TON
+37015,0.7472664,Organic Carbon portion of PM2.5-PRI,TON
+37015,49.44453,Volatile Organic Compounds,TON
+37015,719.3812,Formaldehyde,LB
+37077,0.0004963696,Pyrene,LB
+37077,0.0006311458,Manganese,LB
+37077,0.002371992,Methane,TON
+37077,0.0001578885,Elemental Carbon portion of PM2.5-PRI,TON
+37025,7.24678,Toluene,LB
+37025,0.0003640114,Mercury,LB
+37025,0.002558878,Acenaphthene,LB
+37133,6.561524,Toluene,LB
+37133,3.462342e-05,Chromium (VI),LB
+37133,0.010354302,Acenaphthylene,LB
+37133,0.006636058,Arsenic,LB
+37133,0.1883292,Nitrogen Oxides,TON
+37133,0.06457382,Styrene,LB
+37133,0.3386122,"1,3-Butadiene",LB
+37111,0.02322162,"1,3-Butadiene",LB
+37111,2.113248e-06,Chromium (VI),LB
+37111,0.0002048754,Chrysene,LB
+37111,0.0004072732,Fluorene,LB
+37111,0.001093985,Sulfur Dioxide,TON
+37021,0.03155886,Benzo[k]Fluoranthene,LB
+37021,5798.496,Formaldehyde,LB
+37021,142.62708,"2,2,4-Trimethylpentane",LB
+37021,4.889978,Benz[a]Anthracene,LB
+37021,35043.36,Carbon Dioxide,TON
+37021,0.01449974,Nitrate portion of PM2.5-PRI,TON
+37021,0.5769326,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,14.921646,Propionaldehyde,LB
+37013,19.266776,Xylenes (Mixed Isomers),LB
+37013,0.1015938,Chrysene,LB
+37013,0.2116118,Benz[a]Anthracene,LB
+37013,0.004440136,Chromium (VI),LB
+37013,4.569884,Acenaphthene,LB
+37013,0.4797017,Elemental Carbon portion of PM2.5-PRI,TON
+37013,6.542059,PM10 Primary (Filt + Cond),TON
+37013,97.18539,Volatile Organic Compounds,TON
+37011,1.0849936e-05,Mercury,LB
+37011,0.000648458,Sulfate Portion of PM2.5-PRI,TON
+37011,0.3094664,Styrene,LB
+37011,2.152974,Toluene,LB
+37011,0.668385,Hexane,LB
+37011,1.14978e-05,Chromium (VI),LB
+37011,0.0128865,Benz[a]Anthracene,LB
+37005,2.92459,"1,3-Butadiene",LB
+37005,50.80702,Xylenes (Mixed Isomers),LB
+37005,0.002084365,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.002726077,Organic Carbon portion of PM2.5-PRI,TON
+37005,9.40293e-05,Sulfate Portion of PM2.5-PRI,TON
+37021,0.3394822,"1,3-Butadiene",LB
+37021,0.2508758,Acrolein,LB
+37021,0.002166482,Anthracene,LB
+37021,0.005990398,Benzo[a]Pyrene,LB
+37021,2.84714,"2,2,4-Trimethylpentane",LB
+37021,0.012875886,Manganese,LB
+37021,3.420124,Carbon Monoxide,TON
+37021,0.0003466794,Sulfate Portion of PM2.5-PRI,TON
+37013,0.2164642,Acrolein,LB
+37013,0.002896446,Chrysene,LB
+37013,3.857858,Acetaldehyde,LB
+37013,0.0008113438,Elemental Carbon portion of PM2.5-PRI,TON
+37013,1.064945e-05,Nitrate portion of PM2.5-PRI,TON
+37009,0.80171,Pyrene,LB
+37009,0.04763748,Chrysene,LB
+37009,68.84582,Acetaldehyde,LB
+37009,0.07739652,Methane,TON
+37009,0.004522229,Sulfate Portion of PM2.5-PRI,TON
+37005,2.028278,Ammonia,TON
+37005,90.83104,Styrene,LB
+37005,551.1288,"1,3-Butadiene",LB
+37005,71.77426,Acrolein,LB
+37005,11807.854,Toluene,LB
+37005,3.243912,Anthracene,LB
+37005,0.934052,Benz[a]Anthracene,LB
+37005,628.205,Carbon Monoxide,TON
+37001,0.252099,Acrolein,LB
+37001,0.0006024452,Acenaphthylene,LB
+37001,0.6664501,Methane,TON
+37015,3.76663,Phenanthrene,LB
+37015,2.458014,Fluorene,LB
+37015,0.3089272,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.006570859,Nitrous Oxide,TON
+37015,33.909,Acrolein,LB
+37015,10.541852,Hexane,LB
+37015,419.1618,Formaldehyde,LB
+37015,185.0092,Acetaldehyde,LB
+37199,0.04353436,Ethyl Benzene,LB
+37199,0.0639587,Hexane,LB
+37199,0.0001452707,Pyrene,LB
+37199,0.000367964,"Benzo[g,h,i,]Perylene",LB
+37199,0.07751554,"2,2,4-Trimethylpentane",LB
+37199,7.646772e-05,Acenaphthene,LB
+37199,0.0006521702,Methane,TON
+37199,3.903531e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.0963622,Fluoranthene,LB
+37199,0.0009216842,Benzo[a]Pyrene,LB
+37199,0.002106414,Arsenic,LB
+37197,3.124542,Ethyl Benzene,LB
+37197,0.3058748,Anthracene,LB
+37197,0.5591786,Fluoranthene,LB
+37197,0.0012673172,Benzo[k]Fluoranthene,LB
+37197,0.07117694,Chrysene,LB
+37197,92.81128,Formaldehyde,LB
+37197,0.016551658,Manganese,LB
+37197,0.220212,PM2.5 Primary (Filt + Cond),TON
+37193,47.79749,Nitrogen Oxides,TON
+37193,94.32384,"1,3-Butadiene",LB
+37193,220.4962,Acrolein,LB
+37193,0.03824622,"Benzo[g,h,i,]Perylene",LB
+37193,0.07006188,Benzo[b]Fluoranthene,LB
+37193,0.4601713,Methane,TON
+37193,11639.31,Carbon Dioxide,TON
+37193,0.0350677,Nitrous Oxide,TON
+37193,7.360482,Xylenes (Mixed Isomers),LB
+37193,0.004796782,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,7.5709,Xylenes (Mixed Isomers),LB
+37195,0.15848382,Benz[a]Anthracene,LB
+37195,0.03990268,Methane,TON
+37195,0.05737238,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.0303868,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.01419548,Sulfur Dioxide,TON
+37195,0.8342705,Nitrous Oxide,TON
+37195,46.85243,Nitrogen Oxides,TON
+37195,34.76892,Styrene,LB
+37195,1.2704396,Anthracene,LB
+37195,1041.5106,"2,2,4-Trimethylpentane",LB
+37195,0.015147136,Mercury,LB
+37195,2.999372,Fluorene,LB
+37191,0.019710676,Benzo[k]Fluoranthene,LB
+37191,0.1048679,Organic Carbon portion of PM2.5-PRI,TON
+37191,17.0123,Volatile Organic Compounds,TON
+37191,549.538,Ethyl Benzene,LB
+37191,952.6754,Hexane,LB
+37191,0.793557,Pyrene,LB
+37189,216.143,Benzene,LB
+37185,1720.4382,Ethyl Benzene,LB
+37185,4.326226,Pyrene,LB
+37185,6368.796,Xylenes (Mixed Isomers),LB
+37185,1.4203976,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,13.930592,Phenanthrene,LB
+37185,44018.82,Carbon Dioxide,TON
+37181,0.002565084,Nickel,LB
+37181,6.017098,Acetaldehyde,LB
+37181,0.04393744,Acenaphthene,LB
+37181,0.0477769,Anthracene,LB
+37181,14.031668,Formaldehyde,LB
+37179,3.940984,Acrolein,LB
+37179,1.7492998e-05,Mercury,LB
+37179,5.577996,Naphthalene,LB
+37179,1474.368,Carbon Dioxide,TON
+37179,0.2731682,PM10-Primary from certain diesel engines,TON
+37179,0.1580136,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.4653489,PM10 Primary (Filt + Cond),TON
+37191,27.90728,Propionaldehyde,LB
+37191,0.02507284,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.6436226,Chrysene,LB
+37191,0.2939322,Manganese,LB
+37191,0.3574561,Ammonia,TON
+37183,11232.118,"1,3-Butadiene",LB
+37183,75263.84,Hexane,LB
+37183,306.435,Acenaphthylene,LB
+37183,15.01395,Nickel,LB
+37183,17758.45,Carbon Monoxide,TON
+37183,55.86579,PM2.5 Primary (Filt + Cond),TON
+37031,2.251614,Acenaphthylene,LB
+37031,1.3392328,Acenaphthene,LB
+37031,0.09154851,Ammonia,TON
+37031,1.865581,PM2.5 Primary (Filt + Cond),TON
+37031,7.152904e-05,Mercury,LB
+37031,0.06565566,Ammonia,TON
+37031,0.01867685,Sulfur Dioxide,TON
+37031,0.003340622,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,1.5035386,Acenaphthylene,LB
+37031,61.01078,"1,3-Butadiene",LB
+37031,0.236757,Benzo[a]Pyrene,LB
+37031,45.22572,"2,2,4-Trimethylpentane",LB
+37031,0.06648214,Sulfate Portion of PM2.5-PRI,TON
+37029,0.00942177,Arsenic,LB
+37029,0.9769934,Phenanthrene,LB
+37029,3.008446,Ethyl Benzene,LB
+37029,0.2677364,Anthracene,LB
+37029,2.137162,Acrolein,LB
+37029,0.005532952,Benzo[b]Fluoranthene,LB
+37029,189.8776,Carbon Dioxide,TON
+37029,0.6961468,"2,2,4-Trimethylpentane",LB
+37029,2.552598,Benzene,LB
+37119,82.41172,Styrene,LB
+37119,153.43594,"2,2,4-Trimethylpentane",LB
+37119,6.069342,PM10-Primary from certain diesel engines,TON
+37119,0.01581845,Nitrate portion of PM2.5-PRI,TON
+37119,0.4419372,Sulfur Dioxide,TON
+37101,88.75088,Benzene,LB
+37101,0.2501868,Ammonia,TON
+37101,30.75812,"1,3-Butadiene",LB
+37101,74.48718,Acrolein,LB
+37091,2.434872e-06,Chromium (VI),LB
+37091,0.005080614,Benzo[a]Pyrene,LB
+37091,0.7311978,Nitrogen Oxides,TON
+37091,0.0224503,Acenaphthene,LB
+37091,0.08606038,Phenanthrene,LB
+37091,0.000240609,Nitrous Oxide,TON
+37103,0.0002051395,Nitrate portion of PM2.5-PRI,TON
+37103,130.33428,Hexane,LB
+37103,0.175655,"Benzo[g,h,i,]Perylene",LB
+37103,0.0497584,Benz[a]Anthracene,LB
+37099,0.414813,Hexane,LB
+37099,0.002727572,Nickel,LB
+37099,0.0002057874,Nitrate portion of PM2.5-PRI,TON
+37099,0.003644227,Sulfur Dioxide,TON
+37099,37.17128,Hexane,LB
+37093,0.2752056,Methane,TON
+37093,1.198768,PM2.5 Primary (Filt + Cond),TON
+37093,0.009342576,"Benzo[g,h,i,]Perylene",LB
+37093,0.00649284,Benzo[k]Fluoranthene,LB
+37091,0.0011222288,Manganese,LB
+37091,0.005843486,PM10 Primary (Filt + Cond),TON
+37091,0.0007990364,Benzo[k]Fluoranthene,LB
+37091,0.8740438,Formaldehyde,LB
+37091,0.0669086,Acrolein,LB
+37071,2.189442,Ethyl Benzene,LB
+37071,4.0247,Hexane,LB
+37071,3.018316,Carbon Monoxide,TON
+37069,0.211834,Acrolein,LB
+37069,0.14538668,Propionaldehyde,LB
+37069,17.27819,Xylenes (Mixed Isomers),LB
+37069,0.00225722,Benzo[b]Fluoranthene,LB
+37069,0.002316664,Chrysene,LB
+37069,0.009189434,Acenaphthene,LB
+37069,0.004854802,PM2.5 Primary (Filt + Cond),TON
+37069,0.00216474,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,99.5857,Styrene,LB
+37067,608.4596,"1,3-Butadiene",LB
+37067,86.01574,Acrolein,LB
+37067,13781.522,Toluene,LB
+37067,3342.006,Hexane,LB
+37067,0.04487644,"Dibenzo[a,h]Anthracene",LB
+37067,3.255528,Methane,TON
+37067,1136.295,Carbon Monoxide,TON
+37067,5.718899,Ammonia,TON
+37061,6.943746,Styrene,LB
+37061,1927.4044,Toluene,LB
+37061,0.5261674,Pyrene,LB
+37061,1054.8762,Xylenes (Mixed Isomers),LB
+37061,1.429123,Acenaphthylene,LB
+37061,0.09459474,Chrysene,LB
+37061,16.285376,Naphthalene,LB
+37061,4.464539,Nitrogen Oxides,TON
+37057,114.4711,Hexane,LB
+37039,2.028909e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37039,2.7037e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,3.020697e-07,Sulfate Portion of PM2.5-PRI,TON
+37039,2.460664e-09,Chromium (VI),LB
+37039,8.014196e-05,Acenaphthylene,LB
+37043,0.07729056,Hexane,LB
+37043,0.0004310068,Acenaphthylene,LB
+37043,3.241138e-05,Benz[a]Anthracene,LB
+37043,4.622318e-06,Arsenic,LB
+37043,0.0005154428,Phenanthrene,LB
+37043,2.692909e-05,Organic Carbon portion of PM2.5-PRI,TON
+37043,1.408924e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,1.432839e-06,Sulfate Portion of PM2.5-PRI,TON
+37041,0.008917355,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,28.36136,Formaldehyde,LB
+37041,0.08301188,Acenaphthene,LB
+37041,0.300334,Phenanthrene,LB
+37041,0.0002846667,Nitrate portion of PM2.5-PRI,TON
+37041,0.02131156,Organic Carbon portion of PM2.5-PRI,TON
+37027,15.00488,Propionaldehyde,LB
+37027,1.239525,Pyrene,LB
+37027,740.0114,Benzene,LB
+37027,0.09110182,Arsenic,LB
+37027,0.7490902,Acenaphthene,LB
+37027,17.78524,Nitrogen Oxides,TON
+37023,2.393708,Benzene,LB
+37023,0.17424578,Fluorene,LB
+37023,738.3251,Carbon Dioxide,TON
+37023,0.000963878,Nitrous Oxide,TON
+37023,0.1881597,PM10 Primary (Filt + Cond),TON
+37023,0.3402852,Styrene,LB
+37023,1.997612,Acrolein,LB
+37023,9.013508e-06,Chromium (VI),LB
+37197,9.227906,"1,3-Butadiene",LB
+37197,0.07095254,Benzo[b]Fluoranthene,LB
+37197,0.06987428,Benz[a]Anthracene,LB
+37197,59.85321,Carbon Monoxide,TON
+37197,0.0146285,Elemental Carbon portion of PM2.5-PRI,TON
+37195,7.600846e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.001145126,Volatile Organic Compounds,TON
+37195,6.752224e-09,Chromium (VI),LB
+37195,9.688436,Fluoranthene,LB
+37195,1884.9268,Formaldehyde,LB
+37195,6890.614,Benzene,LB
+37195,0.1527315,Sulfate Portion of PM2.5-PRI,TON
+37191,0.012601514,"Benzo[g,h,i,]Perylene",LB
+37191,0.004734572,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,1.571111e-05,Nitrate portion of PM2.5-PRI,TON
+37187,0.3200452,Toluene,LB
+37187,0.11324014,Hexane,LB
+37187,0.03185998,Fluoranthene,LB
+37187,0.00012080244,Benzo[k]Fluoranthene,LB
+37187,0.009800988,Benz[a]Anthracene,LB
+37187,0.4167464,Benzene,LB
+37187,0.1533605,Carbon Monoxide,TON
+37187,0.02262183,PM10-Primary from certain diesel engines,TON
+37187,0.02081243,PM25-Primary from certain diesel engines,TON
+37183,41.07332,Ethyl Benzene,LB
+37183,170.18556,Toluene,LB
+37183,70.50766,Hexane,LB
+37183,16.90403,Propionaldehyde,LB
+37183,0.16684048,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.0869933,Benzo[k]Fluoranthene,LB
+37183,0.07499212,Benz[a]Anthracene,LB
+37183,11284.23,Carbon Dioxide,TON
+37183,7.950626,Nitrogen Oxides,TON
+37183,0.1111326,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.007800006,Sulfate Portion of PM2.5-PRI,TON
+37183,10.91423,Elemental Carbon portion of PM2.5-PRI,TON
+37183,1967.3216,Propionaldehyde,LB
+37183,465.7628,Acenaphthylene,LB
+37183,20.32412,Arsenic,LB
+37183,555.9142,Phenanthrene,LB
+37179,106.7348,Toluene,LB
+37179,0.7071102,Benzo[a]Pyrene,LB
+37179,4.750563,PM10-Primary from certain diesel engines,TON
+37179,2.628492,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.6510523,Ammonia,TON
+37167,13.229958,Acrolein,LB
+37167,11.92026,Toluene,LB
+37167,0.03715462,Benzo[b]Fluoranthene,LB
+37167,0.00507728,Benzo[k]Fluoranthene,LB
+37167,170.1365,Formaldehyde,LB
+37167,6.566424,Carbon Monoxide,TON
+37167,0.4250758,PM10-Primary from certain diesel engines,TON
+37167,0.005983468,Nitrous Oxide,TON
+37167,0.002243303,Nitrate portion of PM2.5-PRI,TON
+37167,0.009102415,Sulfate Portion of PM2.5-PRI,TON
+37165,1.759462e-05,Sulfate Portion of PM2.5-PRI,TON
+37165,0.008081282,Acrolein,LB
+37165,0.0009084518,Pyrene,LB
+37165,6.642398e-07,Mercury,LB
+37163,0.1607094,Methane,TON
+37163,0.3011944,Anthracene,LB
+37163,0.15000582,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,5.282884,Propionaldehyde,LB
+37161,0.249098,Ammonia,TON
+37161,0.1964906,PM10 Primary (Filt + Cond),TON
+37161,0.04110703,Sulfur Dioxide,TON
+37153,8.67348,Toluene,LB
+37153,0.3536536,Anthracene,LB
+37153,0.0006353142,Benzo[k]Fluoranthene,LB
+37153,0.04972172,Chrysene,LB
+37153,0.7341528,Fluorene,LB
+37153,14.121976,Naphthalene,LB
+37153,0.0003023987,Nitrate portion of PM2.5-PRI,TON
+37153,0.0237381,Organic Carbon portion of PM2.5-PRI,TON
+37139,2.042662e-05,Mercury,LB
+37139,0.012429372,Nickel,LB
+37139,0.3252946,Acenaphthene,LB
+37139,0.005221724,Sulfur Dioxide,TON
+37139,0.003318915,Sulfate Portion of PM2.5-PRI,TON
+37139,0.4507996,Fluoranthene,LB
+37139,0.07996724,Benz[a]Anthracene,LB
+37129,11.713796,Styrene,LB
+37129,79.29524,Acrolein,LB
+37129,3.183624,Anthracene,LB
+37129,457.2846,Acetaldehyde,LB
+37129,1.182503,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.6755821,PM25-Primary from certain diesel engines,TON
+37131,0.1142754,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.02926388,Sulfur Dioxide,TON
+37131,8.303836e-05,Mercury,LB
+37127,0.6110592,Fluoranthene,LB
+37127,0.0545402,Methane,TON
+37127,1.804048,Carbon Monoxide,TON
+37127,0.209742,PM25-Primary from certain diesel engines,TON
+37123,249.961,Hexane,LB
+37123,2.12959,Propionaldehyde,LB
+37123,0.18842378,Fluoranthene,LB
+37123,0.6974118,Phenanthrene,LB
+37123,35.72468,Carbon Monoxide,TON
+37093,4.420241e-06,Nitrate portion of PM2.5-PRI,TON
+37093,3.018968e-05,"Dibenzo[a,h]Anthracene",LB
+37093,6.433996,"2,2,4-Trimethylpentane",LB
+37085,4.412118,Acrolein,LB
+37085,2.82967,Propionaldehyde,LB
+37085,0.001792197,"Dibenzo[a,h]Anthracene",LB
+37085,5.298816,Benzene,LB
+37085,0.008920694,Nickel,LB
+37085,832.4987,Carbon Dioxide,TON
+37073,8.846378e-06,Nickel,LB
+37073,0.0010816998,Phenanthrene,LB
+37073,4.155195e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.10333334,Ethyl Benzene,LB
+37073,0.00017021058,Anthracene,LB
+37073,0.00018762706,"Benzo[g,h,i,]Perylene",LB
+37073,5.379654e-05,Benzo[b]Fluoranthene,LB
+37073,0.060322,Formaldehyde,LB
+37085,0.005864632,Styrene,LB
+37085,0.000402576,Pyrene,LB
+37085,0.4944019,Carbon Dioxide,TON
+37085,1.695949e-05,Ammonia,TON
+37085,0.0001561452,PM10 Primary (Filt + Cond),TON
+37085,0.004475667,Volatile Organic Compounds,TON
+37199,0.0209553,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,732.47,Toluene,LB
+37199,169.59456,Hexane,LB
+37199,0.3961,Pyrene,LB
+37199,0.000120689,Chromium (VI),LB
+37199,0.0781304,Benzo[a]Pyrene,LB
+37199,0.0012099998,Mercury,LB
+37199,0.0231302,Arsenic,LB
+37199,0.4841956,Fluorene,LB
+37199,2172.075,Carbon Dioxide,TON
+37199,0.02202927,Elemental Carbon portion of PM2.5-PRI,TON
+37195,28.5873,Toluene,LB
+37195,18.076616,Hexane,LB
+37195,0.3629472,Propionaldehyde,LB
+37195,0.011740474,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.007904072,Benzo[b]Fluoranthene,LB
+37195,0.007904072,Benzo[k]Fluoranthene,LB
+37195,0.011715582,Benzo[a]Pyrene,LB
+37195,0.00768137,Benz[a]Anthracene,LB
+37195,0.3435685,Volatile Organic Compounds,TON
+37191,23.60526,Styrene,LB
+37191,40.56992,Hexane,LB
+37191,8.934012,Pyrene,LB
+37191,104.13632,Xylenes (Mixed Isomers),LB
+37191,0.0003688842,Chromium (VI),LB
+37191,0.16260998,Benzo[a]Pyrene,LB
+37191,0.2138116,Manganese,LB
+37191,9.289644,Fluorene,LB
+37191,0.5322407,Methane,TON
+37191,1.395324,PM10-Primary from certain diesel engines,TON
+37191,0.003223529,Nitrate portion of PM2.5-PRI,TON
+37191,0.1284074,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,4.516632,Styrene,LB
+37181,26.8619,Acrolein,LB
+37181,0.202548,Benzo[a]Pyrene,LB
+37181,0.1777547,Ammonia,TON
+37181,41.33642,Nitrogen Oxides,TON
+37181,1.924664,Volatile Organic Compounds,TON
+37173,0.4658504,Propionaldehyde,LB
+37173,0.014907396,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.0014342604,Nickel,LB
+37173,0.008197716,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.008813391,Sulfur Dioxide,TON
+37113,4309.926,Acetaldehyde,LB
+37113,4.289518,PM2.5 Primary (Filt + Cond),TON
+37113,10.82234,Anthracene,LB
+37101,42.86508,"1,3-Butadiene",LB
+37101,12.098246,Pyrene,LB
+37101,0.8091328,Benzo[a]Pyrene,LB
+37101,45.77954,"2,2,4-Trimethylpentane",LB
+37101,0.000954927,Mercury,LB
+37101,679.0886,Acetaldehyde,LB
+37101,48.21779,Carbon Monoxide,TON
+37101,1.057422,Ammonia,TON
+37101,0.01433047,Nitrate portion of PM2.5-PRI,TON
+37101,180.6538,Nitrogen Oxides,TON
+37101,1.303018,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.5321725,Sulfate Portion of PM2.5-PRI,TON
+37105,1.0453822,Acrolein,LB
+37105,0.0326193,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.07598086,Fluoranthene,LB
+37105,0.03245912,Benzo[a]Pyrene,LB
+37105,0.02082766,Manganese,LB
+37105,0.0002933878,Mercury,LB
+37105,0.03470271,Methane,TON
+37105,1182.999,Carbon Dioxide,TON
+37103,0.05721796,Carbon Monoxide,TON
+37103,0.006716665,Nitrogen Oxides,TON
+37103,0.011509304,"1,3-Butadiene",LB
+37103,0.2421386,Xylenes (Mixed Isomers),LB
+37103,4.84164e-05,Chrysene,LB
+37103,0.07532902,"2,2,4-Trimethylpentane",LB
+37103,2.071198e-05,Manganese,LB
+37097,3.673818,Pyrene,LB
+37097,3.221312,Fluoranthene,LB
+37097,2228.39,Benzene,LB
+37097,2.188022,Acenaphthene,LB
+37097,1.357068,PM2.5 Primary (Filt + Cond),TON
+37093,3.173612,Styrene,LB
+37093,2.831836,Phenanthrene,LB
+37093,1.259261,Volatile Organic Compounds,TON
+37093,3.178812,Acrolein,LB
+37093,38.01644,Acetaldehyde,LB
+37093,38.81314,Carbon Monoxide,TON
+37093,0.03240113,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.09377195,PM10 Primary (Filt + Cond),TON
+37087,0.353669,Ethyl Benzene,LB
+37087,0.0004430374,"Benzo[g,h,i,]Perylene",LB
+37087,4.642788,Acetaldehyde,LB
+37087,0.02829398,PM10-Primary from certain diesel engines,TON
+37087,0.02603001,PM25-Primary from certain diesel engines,TON
+37087,0.5376774,Nitrogen Oxides,TON
+37085,0.007864448,Nitrate portion of PM2.5-PRI,TON
+37085,18.239192,"1,3-Butadiene",LB
+37085,29.87198,Propionaldehyde,LB
+37085,4.541162,Fluoranthene,LB
+37081,47.71056,Propionaldehyde,LB
+37081,0.03983318,Arsenic,LB
+37081,2.941834,Acenaphthene,LB
+37081,0.3610279,Methane,TON
+37081,1.914065,PM2.5 Primary (Filt + Cond),TON
+37077,0.00080269,Arsenic,LB
+37077,64.34898,Toluene,LB
+37067,9.415916,Styrene,LB
+37067,44.53544,Toluene,LB
+37067,4.994658,Pyrene,LB
+37067,0.7378334,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.07460958,Sulfur Dioxide,TON
+37065,3.423418,Ethyl Benzene,LB
+37065,0.003320324,"Dibenzo[a,h]Anthracene",LB
+37065,0.013085408,Nickel,LB
+37065,3.31543,Carbon Monoxide,TON
+37065,0.1048927,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.01243726,Ammonia,TON
+37065,0.04883036,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.005980341,Sulfur Dioxide,TON
+37065,27.37794,Nitrogen Oxides,TON
+37065,0.8266086,Anthracene,LB
+37065,1.411437,Fluoranthene,LB
+37061,0.1281175,Acetaldehyde,LB
+37061,0.0004228058,Acenaphthene,LB
+37061,9.014961,Carbon Dioxide,TON
+37061,0.0001889262,Sulfur Dioxide,TON
+37061,0.007184391,Volatile Organic Compounds,TON
+37057,0.06620256,"Benzo[g,h,i,]Perylene",LB
+37057,477.5354,Benzene,LB
+37057,17.229294,Acenaphthene,LB
+37057,311.9756,Toluene,LB
+37057,14.073864,Anthracene,LB
+37057,27.40372,Pyrene,LB
+37055,26.6473,Styrene,LB
+37055,1.6415698,Fluoranthene,LB
+37055,5.147388,Acenaphthylene,LB
+37055,0.008393662,"Dibenzo[a,h]Anthracene",LB
+37055,0.5933609,Nitrous Oxide,TON
+37055,0.001295425,Nitrate portion of PM2.5-PRI,TON
+37055,0.1983526,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.04718282,Phenanthrene,LB
+37039,0.423803,Naphthalene,LB
+37039,0.009218196,PM25-Primary from certain diesel engines,TON
+37039,0.003614997,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.05520112,Styrene,LB
+37041,0.0015590768,Benzo[b]Fluoranthene,LB
+37041,0.0208333,Chrysene,LB
+37041,0.009273362,Nickel,LB
+37041,0.02805109,Methane,TON
+37041,0.001260982,Nitrous Oxide,TON
+37041,0.008481484,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.002084216,Sulfate Portion of PM2.5-PRI,TON
+37029,10.90214,Xylenes (Mixed Isomers),LB
+37171,98.34606,Xylenes (Mixed Isomers),LB
+37167,0.11957702,Acrolein,LB
+37167,0.005564488,"Benzo[g,h,i,]Perylene",LB
+37167,0.002100226,Benzo[a]Pyrene,LB
+37167,0.002097762,Manganese,LB
+37167,7.72691e-05,Sulfate Portion of PM2.5-PRI,TON
+37165,1.4492774e-05,Benzo[k]Fluoranthene,LB
+37165,0.8208424,Naphthalene,LB
+37165,0.002096433,PM2.5 Primary (Filt + Cond),TON
+37165,4.611628e-06,Chromium (VI),LB
+37165,2.557724e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,2.787476e-08,Chromium (VI),LB
+37161,42.53952,Hexane,LB
+37161,16.209006,Benzene,LB
+37151,0.1361978,Nickel,LB
+37151,14863.82,Carbon Dioxide,TON
+37151,2.304767,PM25-Primary from certain diesel engines,TON
+37151,0.9273353,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.1249068,Sulfate Portion of PM2.5-PRI,TON
+37151,6.791254,Fluoranthene,LB
+37151,94.53102,Benzene,LB
+37137,0.00241616,Benzo[b]Fluoranthene,LB
+37137,0.003161874,Benzo[a]Pyrene,LB
+37137,0.003165485,PM2.5 Primary (Filt + Cond),TON
+37133,6.010638,Xylenes (Mixed Isomers),LB
+37133,0.014302818,Benzo[b]Fluoranthene,LB
+37133,0.09080994,Chrysene,LB
+37133,1.85522,"2,2,4-Trimethylpentane",LB
+37133,0.02849544,Manganese,LB
+37133,0.7712634,Phenanthrene,LB
+37133,7.05421,Naphthalene,LB
+37133,0.0008389741,Nitrate portion of PM2.5-PRI,TON
+37133,0.1684553,PM2.5 Primary (Filt + Cond),TON
+37133,0.03391437,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.3503907,Volatile Organic Compounds,TON
+37133,3.824834,Phenanthrene,LB
+37133,1.781512,Volatile Organic Compounds,TON
+37133,1.0966504,Anthracene,LB
+37133,0.235733,Benzo[a]Pyrene,LB
+37131,173.1459,Benzene,LB
+37115,9.154168e-05,Anthracene,LB
+37115,0.0002220942,Fluoranthene,LB
+37115,3.652684,Acetaldehyde,LB
+37115,0.000773824,Naphthalene,LB
+37115,0.007973873,PM10 Primary (Filt + Cond),TON
+37115,0.03757826,Volatile Organic Compounds,TON
+37115,0.0008556094,Benzo[k]Fluoranthene,LB
+37115,0.12804876,Acenaphthylene,LB
+37115,0.6370824,"2,2,4-Trimethylpentane",LB
+37115,0.06661086,Benz[a]Anthracene,LB
+37115,5.617764e-06,Mercury,LB
+37115,0.002798678,Nickel,LB
+37115,0.1375101,Volatile Organic Compounds,TON
+37115,84.65186,Xylenes (Mixed Isomers),LB
+37115,35.7481,Benzene,LB
+37115,0.6756298,Acrolein,LB
+37115,5.814291e-05,Nitrate portion of PM2.5-PRI,TON
+37115,0.6705776,Volatile Organic Compounds,TON
+37103,0.02075242,Anthracene,LB
+37103,0.3130306,Propionaldehyde,LB
+37103,0.6584702,Naphthalene,LB
+37103,0.006227874,Organic Carbon portion of PM2.5-PRI,TON
+37099,4.664388,Styrene,LB
+37099,1455.92,Toluene,LB
+37099,0.06375492,Benzo[b]Fluoranthene,LB
+37099,0.06375492,Benzo[k]Fluoranthene,LB
+37099,0.1036703,Methane,TON
+37099,0.01212886,Nitrous Oxide,TON
+37095,2.16068e-05,Anthracene,LB
+37095,9.849892e-05,Pyrene,LB
+37095,1.5761994e-05,Chrysene,LB
+37095,8.603912e-06,Benz[a]Anthracene,LB
+37095,0.0276096,Benzene,LB
+37095,2.233062e-07,Nickel,LB
+37095,7.290318e-05,Fluorene,LB
+37077,1.7555342,Styrene,LB
+37077,9.705924,Acrolein,LB
+37077,8.274098,Xylenes (Mixed Isomers),LB
+37077,0.007103784,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,3.078438,"2,2,4-Trimethylpentane",LB
+37077,1.5186618,Phenanthrene,LB
+37077,0.3149546,PM25-Primary from certain diesel engines,TON
+37077,0.05580621,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.002950825,Nitrous Oxide,TON
+37075,2.795506,Nitrogen Oxides,TON
+37075,0.9918774,Styrene,LB
+37075,1.9826488,Hexane,LB
+37075,0.003572538,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.5149424,Fluoranthene,LB
+37075,0.09192552,Chrysene,LB
+37075,78.99922,Formaldehyde,LB
+37075,422.675,Ethyl Benzene,LB
+37075,610.1648,Hexane,LB
+37075,1562.652,Xylenes (Mixed Isomers),LB
+37075,0.2966708,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,126.8992,Carbon Monoxide,TON
+37075,0.0008959731,Nitrate portion of PM2.5-PRI,TON
+37075,15.45524,Nitrogen Oxides,TON
+37075,0.1876703,Sulfur Dioxide,TON
+37065,5.046448,Hexane,LB
+37065,0.008285774,Benzo[b]Fluoranthene,LB
+37065,0.0011475822,Benzo[k]Fluoranthene,LB
+37065,200.8592,Formaldehyde,LB
+37065,0.1662792,Benz[a]Anthracene,LB
+37065,0.010354958,Arsenic,LB
+37065,1.7932774,Phenanthrene,LB
+37065,0.0886822,Methane,TON
+37065,0.2118067,PM25-Primary from certain diesel engines,TON
+37065,0.2216884,PM2.5 Primary (Filt + Cond),TON
+37065,9.686282e-07,Manganese,LB
+37065,2.082704e-07,Nickel,LB
+37065,1.0360326e-05,Acenaphthene,LB
+37065,0.0005384842,Naphthalene,LB
+37065,2.863188e-06,Ammonia,TON
+37065,0.000476418,Nitrogen Oxides,TON
+37065,2.346892e-07,Sulfate Portion of PM2.5-PRI,TON
+37065,0.03396494,Toluene,LB
+37065,0.0002124476,Propionaldehyde,LB
+37065,0.003340536,Formaldehyde,LB
+37061,21.69398,Formaldehyde,LB
+37061,0.02674438,Benz[a]Anthracene,LB
+37061,71.85694,Benzene,LB
+37061,0.0003196018,Mercury,LB
+37061,1208.367,Carbon Dioxide,TON
+37061,0.008910246,Elemental Carbon portion of PM2.5-PRI,TON
+37061,1.361094,Volatile Organic Compounds,TON
+37053,8.312804,Propionaldehyde,LB
+37053,0.11067674,Benzo[k]Fluoranthene,LB
+37053,0.1801793,PM2.5 Primary (Filt + Cond),TON
+37051,11.498818,Acrolein,LB
+37051,0.7210654,Acenaphthylene,LB
+37051,6.03283e-05,Mercury,LB
+37051,0.02124758,Nickel,LB
+37051,0.6800406,PM10 Primary (Filt + Cond),TON
+37051,0.08289348,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,1.1950544e-05,Chrysene,LB
+37049,0.011474314,"2,2,4-Trimethylpentane",LB
+37049,1.3062336e-05,Benz[a]Anthracene,LB
+37049,2.463128e-06,Nickel,LB
+37049,1.669095e-05,Methane,TON
+37049,1.370084,Carbon Dioxide,TON
+37049,9.153579e-06,Nitrous Oxide,TON
+37049,9.505543e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,1.9704744e-08,Chromium (VI),LB
+37049,0.3976692,Acenaphthene,LB
+37049,0.1949198,Methane,TON
+37049,103.1323,Carbon Monoxide,TON
+37049,0.1638056,PM2.5 Primary (Filt + Cond),TON
+37173,2.359793,Nitrous Oxide,TON
+37173,188.3239,Nitrogen Oxides,TON
+37173,0.5832958,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,109.15436,Acrolein,LB
+37173,0.7264828,Manganese,LB
+37169,0.017795694,"Benzo[g,h,i,]Perylene",LB
+37169,0.0002683208,Nickel,LB
+37169,0.06569448,Phenanthrene,LB
+37161,29.92316,Ethyl Benzene,LB
+37161,0.02866833,Nitrous Oxide,TON
+37161,0.2426789,Sulfur Dioxide,TON
+37155,0.274647,Benzo[b]Fluoranthene,LB
+37155,9.499638,Fluoranthene,LB
+37163,0.7646676,Styrene,LB
+37163,92.54972,Toluene,LB
+37163,0.03827926,"Benzo[g,h,i,]Perylene",LB
+37163,0.014382156,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.15758972,Acenaphthylene,LB
+37163,0.0001282175,Mercury,LB
+37163,0.18807296,Phenanthrene,LB
+37163,0.01829557,Methane,TON
+37163,0.02075011,PM2.5 Primary (Filt + Cond),TON
+37161,0.012908996,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,1.3540574,Benz[a]Anthracene,LB
+37161,0.04058316,Sulfate Portion of PM2.5-PRI,TON
+37155,149.85478,Acetaldehyde,LB
+37155,3.65634,Phenanthrene,LB
+37155,0.3137047,Methane,TON
+37155,8.871457,Nitrogen Oxides,TON
+37153,0.006564392,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.8020836,Fluorene,LB
+37151,0.434899,PM25-Primary from certain diesel engines,TON
+37151,9.127468,Nitrogen Oxides,TON
+37151,0.03643908,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.00628952,"Benzo[g,h,i,]Perylene",LB
+37151,0.04862884,Benzo[a]Pyrene,LB
+37151,0.00010296462,Mercury,LB
+37135,0.2674718,Benzo[b]Fluoranthene,LB
+37135,7.66108,PM25-Primary from certain diesel engines,TON
+37135,4.884721,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.7390166,Sulfur Dioxide,TON
+37117,1.9384412,Hexane,LB
+37117,0.8208444,Pyrene,LB
+37117,0.620557,Fluoranthene,LB
+37019,14.004912,Acrolein,LB
+37019,8.86156,Propionaldehyde,LB
+37019,8.490412e-05,Chromium (VI),LB
+37019,0.0018711688,"Benzo[g,h,i,]Perylene",LB
+37019,0.0428096,Chrysene,LB
+37019,0.0963117,Benz[a]Anthracene,LB
+37019,0.1468615,Methane,TON
+37003,0.0003873541,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.001740588,PM2.5 Primary (Filt + Cond),TON
+37003,0.09517247,Volatile Organic Compounds,TON
+37003,0.00394856,Anthracene,LB
+37001,33.64716,Ethyl Benzene,LB
+37001,8.390528,Pyrene,LB
+37001,6.37793,Fluoranthene,LB
+37001,1.1711028,Chrysene,LB
+37001,0.02515442,"Dibenzo[a,h]Anthracene",LB
+37001,90.27678,Benzene,LB
+37001,426.754,Acetaldehyde,LB
+37001,6.055202,Fluorene,LB
+37001,37395.58,Carbon Dioxide,TON
+37001,5.248606,Volatile Organic Compounds,TON
+37015,1.134086,Carbon Monoxide,TON
+37015,0.008322821,Ammonia,TON
+37015,0.09630242,"1,3-Butadiene",LB
+37015,1.1735686,Formaldehyde,LB
+37015,0.001215784,Nickel,LB
+37015,0.0007019048,Acenaphthene,LB
+37003,0.009692176,Fluorene,LB
+37003,0.0176065,Ammonia,TON
+37003,1.1533492,Propionaldehyde,LB
+37003,0.008604264,Pyrene,LB
+37003,0.005681482,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.003203254,Benzo[k]Fluoranthene,LB
+37003,0.008392999,PM2.5 Primary (Filt + Cond),TON
+37005,0.15137892,Benzene,LB
+37143,0.01106742,"1,3-Butadiene",LB
+37143,9.244156e-05,Benzo[b]Fluoranthene,LB
+37143,4.010074e-06,"Dibenzo[a,h]Anthracene",LB
+37143,7.633478e-06,Mercury,LB
+37143,0.0007970955,Methane,TON
+37125,0.004540664,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.007115718,Chrysene,LB
+37125,10.008952,"2,2,4-Trimethylpentane",LB
+37125,0.008174836,Nickel,LB
+37125,0.009059612,Acenaphthene,LB
+37109,4.569214,Acetaldehyde,LB
+37109,0.000743507,Fluorene,LB
+37109,0.2133392,Ethyl Benzene,LB
+37109,0.08847806,Propionaldehyde,LB
+37109,0.0007776446,Benzo[a]Pyrene,LB
+37099,6.088044,Acetaldehyde,LB
+37099,0.02768134,Naphthalene,LB
+37099,0.004876644,Methane,TON
+37099,0.002081329,PM2.5 Primary (Filt + Cond),TON
+37099,0.002988454,Sulfur Dioxide,TON
+37099,0.0004976466,Anthracene,LB
+37099,0.12784518,Propionaldehyde,LB
+37099,0.0010523132,Pyrene,LB
+37099,0.0006437286,Benzo[k]Fluoranthene,LB
+37099,0.0004892086,Chrysene,LB
+37013,0.05618972,Nickel,LB
+37013,0.9263612,Acenaphthene,LB
+37013,10008.54,Carbon Dioxide,TON
+37013,0.2828804,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.3656374,Chrysene,LB
+37013,320.0506,Formaldehyde,LB
+37007,0.0003460864,Benzo[a]Pyrene,LB
+37007,0.002011,Manganese,LB
+37007,0.02170126,Acenaphthene,LB
+37007,0.06033112,Phenanthrene,LB
+37007,0.005264855,Methane,TON
+37007,0.001327362,PM10-Primary from certain diesel engines,TON
+37007,0.001221043,PM25-Primary from certain diesel engines,TON
+37009,6.678226,Acrolein,LB
+37009,0.16613248,Benz[a]Anthracene,LB
+37009,0.951669,Phenanthrene,LB
+37009,0.04806206,Methane,TON
+37009,0.008225255,Ammonia,TON
+37009,0.02782868,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.0012811276,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.06752206,Benz[a]Anthracene,LB
+37003,0.012926334,Manganese,LB
+37003,7.50934e-06,Mercury,LB
+37003,465.6751,Carbon Dioxide,TON
+37003,0.2747751,Volatile Organic Compounds,TON
+37001,3.076684e-06,Mercury,LB
+37001,0.2096828,Phenanthrene,LB
+37001,0.04866231,PM10-Primary from certain diesel engines,TON
+37001,0.0002325363,Nitrate portion of PM2.5-PRI,TON
+37057,244.5478,Acetaldehyde,LB
+37057,11.348214,Ethyl Benzene,LB
+37057,4.786988,Propionaldehyde,LB
+37057,0.02227134,Benzo[b]Fluoranthene,LB
+37057,0.0918811,Acenaphthylene,LB
+37041,1.0957406,Toluene,LB
+37041,0.9185358,Xylenes (Mixed Isomers),LB
+37041,0.0004166542,Acenaphthene,LB
+37041,0.0009253804,Nitrous Oxide,TON
+37041,0.002801523,PM10 Primary (Filt + Cond),TON
+37041,0.0002812616,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,7.120762,Acetaldehyde,LB
+37003,0.1707244,Anthracene,LB
+37003,0.0005027394,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.0019742562,Benzo[b]Fluoranthene,LB
+37003,0.0002730104,Benzo[k]Fluoranthene,LB
+37003,0.02272118,Chrysene,LB
+37003,0.04731332,Benz[a]Anthracene,LB
+37007,4.756836,Pyrene,LB
+37007,0.8910832,Chrysene,LB
+37007,2.823288,Acenaphthene,LB
+37007,146.64502,Naphthalene,LB
+37007,721.6262,Carbon Monoxide,TON
+37007,1.780326,PM2.5 Primary (Filt + Cond),TON
+37007,0.06643424,Pyrene,LB
+37007,12.797308,Formaldehyde,LB
+37007,0.00016950218,Mercury,LB
+37007,2.081408,Naphthalene,LB
+37007,4.445713e-05,Nitrate portion of PM2.5-PRI,TON
+37007,0.05925495,PM10 Primary (Filt + Cond),TON
+37007,0.00659877,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.7920826,Volatile Organic Compounds,TON
+37019,4.61704,Hexane,LB
+37019,0.15980714,Chrysene,LB
+37019,0.2296185,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.005148884,Nitrous Oxide,TON
+37019,0.001333151,Nitrate portion of PM2.5-PRI,TON
+37013,0.3872878,Naphthalene,LB
+37013,121.5371,Carbon Dioxide,TON
+37013,0.003203663,Ammonia,TON
+37013,0.001493996,Organic Carbon portion of PM2.5-PRI,TON
+37013,20.10734,Toluene,LB
+37013,0.006156184,"Benzo[g,h,i,]Perylene",LB
+37013,3.982786,"2,2,4-Trimethylpentane",LB
+37005,0.1178337,Styrene,LB
+37005,0.0012920796,Benzo[b]Fluoranthene,LB
+37005,0.00705186,Fluoranthene,LB
+37005,0.0012920796,Benzo[k]Fluoranthene,LB
+37005,1.1125508e-06,Mercury,LB
+37005,0.009815586,Fluorene,LB
+37005,0.2515882,Naphthalene,LB
+37199,0.06395892,"2,2,4-Trimethylpentane",LB
+37199,19.95913,Carbon Dioxide,TON
+37199,0.1058237,Nitrogen Oxides,TON
+37199,0.002376885,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.005743406,PM2.5 Primary (Filt + Cond),TON
+37199,0.0001714671,Sulfate Portion of PM2.5-PRI,TON
+37199,5.40486e-07,Chromium (VI),LB
+37199,0.003296722,Chrysene,LB
+37191,0.61432,Xylenes (Mixed Isomers),LB
+37191,0.007742362,Naphthalene,LB
+37191,192.0781,Carbon Dioxide,TON
+37191,0.004512752,Ammonia,TON
+37191,3.479998e-06,Nitrate portion of PM2.5-PRI,TON
+37189,16.346488,Ethyl Benzene,LB
+37189,8.270802,Formaldehyde,LB
+37189,0.012096786,Benzo[a]Pyrene,LB
+37189,0.00821132,Benz[a]Anthracene,LB
+37189,0.4689976,Volatile Organic Compounds,TON
+37137,0.3415,"1,3-Butadiene",LB
+37137,0.0006149588,Chrysene,LB
+37137,0.7721422,Formaldehyde,LB
+37137,2.774664,Benzene,LB
+37137,0.0001000194,Arsenic,LB
+37137,0.00504405,Fluorene,LB
+37127,2.184198,Nickel,LB
+37127,3021.624,Acetaldehyde,LB
+37127,177.6944,Volatile Organic Compounds,TON
+37127,7.209642,Anthracene,LB
+37127,156.7746,Propionaldehyde,LB
+37127,21841.66,Xylenes (Mixed Isomers),LB
+37127,15.337376,"Benzo[g,h,i,]Perylene",LB
+37127,3.595068,Benzo[k]Fluoranthene,LB
+37127,3.386448,Benz[a]Anthracene,LB
+37111,0.12111468,Acenaphthylene,LB
+37111,0.1197175,PM10-Primary from certain diesel engines,TON
+37111,0.1101405,PM25-Primary from certain diesel engines,TON
+37111,2.762184,Nitrogen Oxides,TON
+37111,27.47986,Acrolein,LB
+37111,8.50074,Hexane,LB
+37111,3.724252,Pyrene,LB
+37111,8.183004,"2,2,4-Trimethylpentane",LB
+37111,0.07759604,Methane,TON
+37111,1.785092,PM10-Primary from certain diesel engines,TON
+37111,1.691523,PM2.5 Primary (Filt + Cond),TON
+37111,0.03139634,Sulfate Portion of PM2.5-PRI,TON
+37119,2.813538,Propionaldehyde,LB
+37119,0.05410976,Benz[a]Anthracene,LB
+37119,0.01217603,Arsenic,LB
+37113,0.04744991,Ammonia,TON
+37113,0.003278343,Nitrate portion of PM2.5-PRI,TON
+37113,0.02848109,Sulfur Dioxide,TON
+37113,5.630936,Hexane,LB
+37113,0.19008928,Benzo[a]Pyrene,LB
+37109,42.11508,Styrene,LB
+37109,0.3272196,Manganese,LB
+37109,0.0004988066,Mercury,LB
+37109,0.004895871,Nitrate portion of PM2.5-PRI,TON
+37109,0.1761265,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,4.789132,Styrene,LB
+37107,10.232654,Hexane,LB
+37107,0.2056204,Manganese,LB
+37107,4.385516,Phenanthrene,LB
+37107,12.51572,Carbon Monoxide,TON
+37107,14064.59,Carbon Dioxide,TON
+37107,0.1196324,Sulfur Dioxide,TON
+37103,0.03085426,PM10 Primary (Filt + Cond),TON
+37103,0.03119102,Pyrene,LB
+37103,0.006691042,Benzo[b]Fluoranthene,LB
+37103,0.0002319036,"Dibenzo[a,h]Anthracene",LB
+37103,566.7018,Toluene,LB
+37103,125.02232,"2,2,4-Trimethylpentane",LB
+37103,105.29798,Benzene,LB
+37103,0.000328987,Mercury,LB
+37103,534.0985,Carbon Dioxide,TON
+37103,2.476727,Volatile Organic Compounds,TON
+37099,1087.5922,Ethyl Benzene,LB
+37095,15.76014,Acrolein,LB
+37095,0.06095702,Chrysene,LB
+37095,18.74218,Benzene,LB
+37095,1.13893,Fluorene,LB
+37095,0.009880414,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,53.64604,Xylenes (Mixed Isomers),LB
+37083,0.3613094,Benzo[a]Pyrene,LB
+37083,7.356612,Phenanthrene,LB
+37083,0.006290342,Nitrate portion of PM2.5-PRI,TON
+37083,84.21385,Nitrogen Oxides,TON
+37083,0.5531678,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.1655347,Sulfate Portion of PM2.5-PRI,TON
+37083,22.2827,Ethyl Benzene,LB
+37083,51.21824,Toluene,LB
+37083,52.46684,Acrolein,LB
+37083,3.557096,Acenaphthylene,LB
+37083,8.073108,Phenanthrene,LB
+37083,0.2239771,Ammonia,TON
+37083,35.23478,Nitrogen Oxides,TON
+37087,0.10847456,Anthracene,LB
+37087,0.0005686186,Mercury,LB
+37087,0.6794274,Phenanthrene,LB
+37087,0.0003756771,Nitrate portion of PM2.5-PRI,TON
+37087,0.06899142,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.282031,PM10 Primary (Filt + Cond),TON
+37083,18.883612,Styrene,LB
+37083,2522.996,Toluene,LB
+37083,0.233564,Benzo[k]Fluoranthene,LB
+37083,0.005902086,Mercury,LB
+37071,0.6525914,Manganese,LB
+37071,7.029418,PM10-Primary from certain diesel engines,TON
+37071,0.02878028,Nitrous Oxide,TON
+37071,6.767337,PM2.5 Primary (Filt + Cond),TON
+37071,44.47998,Ethyl Benzene,LB
+37071,0.0003200258,Chromium (VI),LB
+37071,0.0711358,"Benzo[g,h,i,]Perylene",LB
+37071,4600.482,Ethyl Benzene,LB
+37071,8965.848,"2,2,4-Trimethylpentane",LB
+37069,0.0011999048,Benzo[b]Fluoranthene,LB
+37069,3.692176e-05,"Dibenzo[a,h]Anthracene",LB
+37069,2.873426e-05,Mercury,LB
+37069,0.02321528,Phenanthrene,LB
+37055,0.09686088,Anthracene,LB
+37055,0.0017385354,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.217746,Fluoranthene,LB
+37055,0.02289484,Benzo[a]Pyrene,LB
+37055,8.701892e-06,Mercury,LB
+37055,0.3455216,Phenanthrene,LB
+37055,0.009278217,Ammonia,TON
+37055,0.000397918,Nitrate portion of PM2.5-PRI,TON
+37055,1.098714,Nitrogen Oxides,TON
+37055,0.003441618,Sulfate Portion of PM2.5-PRI,TON
+37051,179.2523,"2,2,4-Trimethylpentane",LB
+37051,0.09333678,"1,3-Butadiene",LB
+37051,0.00412973,Acenaphthene,LB
+37051,478.9979,Carbon Dioxide,TON
+37051,0.0009698194,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.5970366,Fluoranthene,LB
+37039,0.014733634,Manganese,LB
+37039,0.0815732,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.0001130927,Nitrate portion of PM2.5-PRI,TON
+37041,0.1034804,Volatile Organic Compounds,TON
+37041,0.4382796,"2,2,4-Trimethylpentane",LB
+37041,0.003970386,Manganese,LB
+37041,0.8172137,Carbon Monoxide,TON
+37037,0.004949806,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.002950562,Benzo[b]Fluoranthene,LB
+37037,4.556502,"2,2,4-Trimethylpentane",LB
+37037,1.8122852,Acetaldehyde,LB
+37037,0.2994838,Naphthalene,LB
+37037,1.589475e-05,Nitrate portion of PM2.5-PRI,TON
+37037,19.62091,Nitrogen Oxides,TON
+37037,0.1484094,Organic Carbon portion of PM2.5-PRI,TON
+37037,544.6912,Hexane,LB
+37037,13.419568,Propionaldehyde,LB
+37037,0.6965662,"Benzo[g,h,i,]Perylene",LB
+37037,0.00600917,"Dibenzo[a,h]Anthracene",LB
+37037,689.4276,Benzene,LB
+37031,0.2339984,Acrolein,LB
+37031,0.01745343,Pyrene,LB
+37031,0.00322771,Benzo[a]Pyrene,LB
+37031,0.0213786,Fluorene,LB
+37031,4.869009,Carbon Monoxide,TON
+37031,1.512258e-05,Nitrate portion of PM2.5-PRI,TON
+37031,0.004371513,Sulfur Dioxide,TON
+37029,1.5374294,Acetaldehyde,LB
+37029,0.1179343,Carbon Monoxide,TON
+37029,0.11914294,Ethyl Benzene,LB
+37029,0.03386766,Pyrene,LB
+37029,0.00010214148,"Dibenzo[a,h]Anthracene",LB
+37029,0.0947275,"2,2,4-Trimethylpentane",LB
+37029,2.199,Acrolein,LB
+37029,112.22112,Benzene,LB
+37029,0.0001182128,Nitrate portion of PM2.5-PRI,TON
+37029,0.1131469,PM10 Primary (Filt + Cond),TON
+37025,1.368892,Methane,TON
+37025,457.9313,Carbon Monoxide,TON
+37025,51.21546,Nitrogen Oxides,TON
+37025,0.7641711,Sulfur Dioxide,TON
+37025,0.0019834028,Chromium (VI),LB
+37025,0.7422016,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.802312,Manganese,LB
+37023,0.03644988,Methane,TON
+37023,0.06181128,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.02077862,Ammonia,TON
+37023,0.00694937,Sulfur Dioxide,TON
+37169,4.155054e-06,Nitrate portion of PM2.5-PRI,TON
+37169,0.09916662,"1,3-Butadiene",LB
+37169,0.0012089444,Pyrene,LB
+37169,0.0011331862,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.0006071256,Benzo[k]Fluoranthene,LB
+37169,0.0011193606,Benzo[a]Pyrene,LB
+37169,2.027888,Benzene,LB
+37169,0.001008676,Arsenic,LB
+37169,7.792366,Acetaldehyde,LB
+37169,0.001292626,Fluorene,LB
+37107,0.0010865204,Arsenic,LB
+37107,100.9147,Carbon Dioxide,TON
+37107,0.004892573,Ammonia,TON
+37175,1.2138518e-05,Benzo[k]Fluoranthene,LB
+37175,2.975362e-07,Nickel,LB
+37175,4.562088e-07,Arsenic,LB
+37175,0.000953638,Propionaldehyde,LB
+37175,0.11042332,Xylenes (Mixed Isomers),LB
+37171,9.513366,Styrene,LB
+37171,3286.19,Toluene,LB
+37171,0.7199398,Pyrene,LB
+37171,161.59436,Formaldehyde,LB
+37171,0.0017169172,Mercury,LB
+37171,0.103025,Organic Carbon portion of PM2.5-PRI,TON
+37161,38.15816,Benzene,LB
+37161,0.07555348,Nickel,LB
+37159,0.03645262,Organic Carbon portion of PM2.5-PRI,TON
+37159,2.876643,Volatile Organic Compounds,TON
+37159,588.2134,Toluene,LB
+37159,2.84987,Propionaldehyde,LB
+37159,0.04653352,Benzo[b]Fluoranthene,LB
+37159,0.0004421388,Mercury,LB
+37161,1.187152,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,2.973876,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,1.9928538,Benzo[b]Fluoranthene,LB
+37161,1.8434036,Chrysene,LB
+37161,11.449284,Fluorene,LB
+37161,293.5964,Naphthalene,LB
+37161,102640.2,Carbon Dioxide,TON
+37161,2.873345,Nitrous Oxide,TON
+37161,1.733586,Organic Carbon portion of PM2.5-PRI,TON
+37155,19381.754,Ethyl Benzene,LB
+37155,9.68169,Benzo[k]Fluoranthene,LB
+37155,9.360882,Chrysene,LB
+37155,4.162656,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.9073472,"1,3-Butadiene",LB
+37153,0.17405654,Propionaldehyde,LB
+37153,0.018072102,Pyrene,LB
+37153,0.003559002,Benzo[b]Fluoranthene,LB
+37153,0.03098244,PM10 Primary (Filt + Cond),TON
+37153,0.008120895,PM2.5 Primary (Filt + Cond),TON
+37151,23.83548,Hexane,LB
+37151,0.04233696,Fluoranthene,LB
+37151,0.13153268,Acenaphthylene,LB
+37151,0.00840783,Chrysene,LB
+37151,4.264456e-05,Nitrate portion of PM2.5-PRI,TON
+37151,0.05765519,PM10 Primary (Filt + Cond),TON
+37151,0.01715168,PM2.5 Primary (Filt + Cond),TON
+37007,0.01580308,Sulfate Portion of PM2.5-PRI,TON
+37007,18.667832,Ethyl Benzene,LB
+37007,45.15786,Acrolein,LB
+37007,35.28686,Toluene,LB
+37007,33.7297,Xylenes (Mixed Isomers),LB
+37007,246.3358,Acetaldehyde,LB
+37019,25.79004,Acrolein,LB
+37019,324.3794,Formaldehyde,LB
+37019,2.401004,Fluorene,LB
+37019,2429.355,Carbon Dioxide,TON
+37019,0.3299137,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.05058021,Ammonia,TON
+37011,0.7598526,Acetaldehyde,LB
+37011,0.002939216,Methane,TON
+37011,7.59017e-05,Sulfur Dioxide,TON
+37009,13.447752,Acrolein,LB
+37009,166.97814,Formaldehyde,LB
+37009,0.12905288,Benzo[a]Pyrene,LB
+37009,73.48364,Acetaldehyde,LB
+37009,0.5721878,Acenaphthene,LB
+37009,18.588072,Naphthalene,LB
+37003,0.00409679,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.02269134,Fluorene,LB
+37085,0.00242411,Manganese,LB
+37085,0.0101315,PM10 Primary (Filt + Cond),TON
+37085,0.05523219,Volatile Organic Compounds,TON
+37085,0.10065818,"1,3-Butadiene",LB
+37085,0.7911484,Hexane,LB
+37085,0.0015333504,Pyrene,LB
+37067,9.078954,Hexane,LB
+37061,0.1967077,"1,3-Butadiene",LB
+37061,3.87958,Toluene,LB
+37061,2.491626,Formaldehyde,LB
+37061,0.0008293785,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.01497568,PM10 Primary (Filt + Cond),TON
+37061,0.008046061,Sulfur Dioxide,TON
+37061,0.1134788,Volatile Organic Compounds,TON
+37013,6.084052,Xylenes (Mixed Isomers),LB
+37199,0.08427116,Styrene,LB
+37199,0.4610684,Toluene,LB
+37199,0.0210348,Anthracene,LB
+37199,0.4747804,Xylenes (Mixed Isomers),LB
+37199,0.1637048,"2,2,4-Trimethylpentane",LB
+37199,0.000411631,Arsenic,LB
+37199,0.02650079,PM25-Primary from certain diesel engines,TON
+37199,0.006307085,Organic Carbon portion of PM2.5-PRI,TON
+37199,5.43296e-08,Nickel,LB
+37199,8.33054e-08,Arsenic,LB
+37199,0.02809988,Carbon Dioxide,TON
+37199,5.897583e-07,Sulfur Dioxide,TON
+37199,5.991765e-08,Sulfate Portion of PM2.5-PRI,TON
+37199,9.983544e-05,Styrene,LB
+37199,2.312918e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.7206656,Toluene,LB
+37193,0.3310968,"2,2,4-Trimethylpentane",LB
+37193,2.412766e-05,Sulfate Portion of PM2.5-PRI,TON
+37193,16804.38,Hexane,LB
+37193,5.66719,Benzo[b]Fluoranthene,LB
+37193,5.66719,Benzo[k]Fluoranthene,LB
+37193,5.773752,Chrysene,LB
+37193,45.68706,Fluorene,LB
+37193,181618.3,Carbon Dioxide,TON
+37193,386.5049,Volatile Organic Compounds,TON
+37185,0.0778974,Formaldehyde,LB
+37185,0.000245424,Benzo[a]Pyrene,LB
+37185,0.654159,Toluene,LB
+37185,0.0002477759,PM2.5 Primary (Filt + Cond),TON
+37187,2.375992,Xylenes (Mixed Isomers),LB
+37187,0.1518903,Fluoranthene,LB
+37187,0.1925528,Acenaphthylene,LB
+37187,0.02846816,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.6249266,Formaldehyde,LB
+37187,0.002039632,Acenaphthene,LB
+37187,43.52197,Carbon Dioxide,TON
+37187,0.0004678491,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,5.47125,Toluene,LB
+37179,0.002265724,Anthracene,LB
+37179,0.5853788,Propionaldehyde,LB
+37179,0.01421385,"Benzo[g,h,i,]Perylene",LB
+37179,0.00421436,Fluoranthene,LB
+37179,0.005270856,Benzo[a]Pyrene,LB
+37179,29.10214,Acetaldehyde,LB
+37179,0.0477719,PM10 Primary (Filt + Cond),TON
+37177,1.5649218e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,4.04848e-08,Nickel,LB
+37177,2.46785e-06,Acenaphthene,LB
+37177,4.99884e-06,Fluorene,LB
+37177,1.760336e-06,Methane,TON
+37177,0.001177835,Carbon Monoxide,TON
+37177,2.832876e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37177,9.68392e-05,Nitrogen Oxides,TON
+37187,0.3965802,Acenaphthene,LB
+37187,0.004272793,Nitrous Oxide,TON
+37187,5.833753,Nitrogen Oxides,TON
+37183,37.9611,Toluene,LB
+37183,0.00017016386,Chromium (VI),LB
+37183,0.06321336,Acenaphthylene,LB
+37183,0.03130286,Benzo[a]Pyrene,LB
+37183,0.06506584,Manganese,LB
+37183,0.013639064,Acenaphthene,LB
+37183,0.124679,Methane,TON
+37183,19.88671,Carbon Monoxide,TON
+37183,0.2625679,PM10 Primary (Filt + Cond),TON
+37177,0.07226236,Acrolein,LB
+37177,0.0610675,Xylenes (Mixed Isomers),LB
+37177,0.0012423006,Chrysene,LB
+37177,0.0228355,"2,2,4-Trimethylpentane",LB
+37177,0.011015772,Phenanthrene,LB
+37177,0.006436402,Fluorene,LB
+37177,0.003001808,PM10 Primary (Filt + Cond),TON
+37023,1.7030654,Styrene,LB
+37023,0.03930834,Manganese,LB
+37023,0.06559031,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.262777,PM2.5 Primary (Filt + Cond),TON
+37173,1.4815076,Pyrene,LB
+37173,14.595884,Xylenes (Mixed Isomers),LB
+37173,0.004044396,Benzo[k]Fluoranthene,LB
+37173,16.453372,Benzene,LB
+37173,0.1148058,Methane,TON
+37173,6171.651,Carbon Dioxide,TON
+37173,1.034014,PM10 Primary (Filt + Cond),TON
+37173,0.9823284,Volatile Organic Compounds,TON
+37167,29.58516,Acrolein,LB
+37167,3.19963,Pyrene,LB
+37167,0.4297864,Chrysene,LB
+37167,41.92112,Naphthalene,LB
+37167,12.77399,Carbon Monoxide,TON
+37167,1.504147,PM25-Primary from certain diesel engines,TON
+37139,3.465884e-07,Chromium (VI),LB
+37139,0.002475352,Benzo[k]Fluoranthene,LB
+37139,7.900242,"2,2,4-Trimethylpentane",LB
+37139,2.811632,Acetaldehyde,LB
+37139,0.04744508,Phenanthrene,LB
+37139,0.0009876634,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.002298076,Nitrous Oxide,TON
+37131,24.68696,Toluene,LB
+37131,0.15562548,Propionaldehyde,LB
+37131,0.0007497118,Arsenic,LB
+37131,1.725844e-05,Nitrate portion of PM2.5-PRI,TON
+37125,0.4055446,Benz[a]Anthracene,LB
+37125,0.017372134,Nickel,LB
+37125,17.47723,Acrolein,LB
+37125,19.3192,Toluene,LB
+37125,6.014904,Hexane,LB
+37125,0.6688644,Anthracene,LB
+37125,0.03506218,Benzo[b]Fluoranthene,LB
+37125,1.0962728,Acenaphthylene,LB
+37113,7.310436,Hexane,LB
+37113,22.47084,Xylenes (Mixed Isomers),LB
+37113,0.012077766,"Benzo[g,h,i,]Perylene",LB
+37113,291.1992,Formaldehyde,LB
+37113,0.8721418,Acenaphthene,LB
+37109,0.0007051588,"Dibenzo[a,h]Anthracene",LB
+37109,0.645572,"1,3-Butadiene",LB
+37109,0.7576223,Carbon Monoxide,TON
+37109,0.02610597,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.006324445,Sulfate Portion of PM2.5-PRI,TON
+37105,0.0006435878,"Benzo[g,h,i,]Perylene",LB
+37105,0.4081952,Hexane,LB
+37105,1.7010964,Naphthalene,LB
+37105,0.07623923,PM10-Primary from certain diesel engines,TON
+37097,0.5550384,Styrene,LB
+37097,0.0011099052,Arsenic,LB
+37097,16.135576,Acetaldehyde,LB
+37095,0.04405384,Hexane,LB
+37095,1.7539862,Formaldehyde,LB
+37095,0.008274868,PM10-Primary from certain diesel engines,TON
+37089,0.8720796,Pyrene,LB
+37089,196.19276,Formaldehyde,LB
+37089,0.5234598,Acenaphthene,LB
+37089,27.17972,Naphthalene,LB
+37089,0.3597365,PM10 Primary (Filt + Cond),TON
+37079,55.30966,Formaldehyde,LB
+37079,1.3715454,"2,2,4-Trimethylpentane",LB
+37079,0.01896499,Methane,TON
+37079,354.1796,Carbon Dioxide,TON
+37079,0.06252946,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.1470639,PM2.5 Primary (Filt + Cond),TON
+37079,2.976442,Propionaldehyde,LB
+37087,19899.574,Toluene,LB
+37075,0.003817078,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.005192299,Sulfur Dioxide,TON
+37075,10.31221,Carbon Monoxide,TON
+37075,252.3774,Carbon Dioxide,TON
+37075,0.00254454,Nitrous Oxide,TON
+37075,0.06492216,Pyrene,LB
+37075,0.04182548,"Benzo[g,h,i,]Perylene",LB
+37075,0.05690948,Fluoranthene,LB
+37059,2.611236,Acenaphthylene,LB
+37059,0.6718234,Chrysene,LB
+37059,0.0750457,Nickel,LB
+37059,1.272417,PM25-Primary from certain diesel engines,TON
+37059,0.4948656,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.9242604,Carbon Dioxide,TON
+37065,4.620153e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.009455054,Propionaldehyde,LB
+37065,0.00013744046,Benzo[k]Fluoranthene,LB
+37065,2.935438e-05,Manganese,LB
+37059,0.4035826,Methane,TON
+37059,0.3143158,Nitrous Oxide,TON
+37059,17.01903,Nitrogen Oxides,TON
+37059,0.5360308,Anthracene,LB
+37059,0.17070296,Benzo[b]Fluoranthene,LB
+37057,1028.7116,Styrene,LB
+37057,71.86414,Pyrene,LB
+37057,16.369796,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,2.982044,Nickel,LB
+37057,14484.31,Acetaldehyde,LB
+37057,43.13444,Acenaphthene,LB
+37055,1.697671,Styrene,LB
+37055,1.2485678,Pyrene,LB
+37055,0.007078708,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.02780656,Benzo[b]Fluoranthene,LB
+37055,2.929352,"2,2,4-Trimethylpentane",LB
+37055,0.1060891,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.4186999,PM10 Primary (Filt + Cond),TON
+37055,0.0009153624,Benzo[b]Fluoranthene,LB
+37055,0.0011819312,Benzo[a]Pyrene,LB
+37055,86.1626,Carbon Dioxide,TON
+37055,0.000287586,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.1878885,Nitrogen Oxides,TON
+37043,528.5912,"1,3-Butadiene",LB
+37043,2638.816,Hexane,LB
+37043,0.02536224,"Dibenzo[a,h]Anthracene",LB
+37043,3657.23,Benzene,LB
+37043,1.199384,PM2.5 Primary (Filt + Cond),TON
+37043,61.4819,Volatile Organic Compounds,TON
+37033,0.11612928,Acrolein,LB
+37033,0.005619822,Anthracene,LB
+37033,0.002656514,Benzo[k]Fluoranthene,LB
+37033,0.02960778,Acenaphthylene,LB
+37033,0.000727146,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.2729108,Nitrogen Oxides,TON
+37033,0.004340692,PM2.5 Primary (Filt + Cond),TON
+37025,77.90664,Xylenes (Mixed Isomers),LB
+37025,0.000247465,Mercury,LB
+37025,0.163307,Nickel,LB
+37025,20586.68,Carbon Dioxide,TON
+37027,5435.7,Ethyl Benzene,LB
+37027,3.591642,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,2.466292,Benzo[k]Fluoranthene,LB
+37027,0.08246924,"Dibenzo[a,h]Anthracene",LB
+37027,7568.082,"2,2,4-Trimethylpentane",LB
+37027,2.722611,Sulfur Dioxide,TON
+37023,51.66772,Acrolein,LB
+37023,0.03301314,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.017931618,"Dibenzo[a,h]Anthracene",LB
+37023,1.4272068,Benz[a]Anthracene,LB
+37023,292.6496,Acetaldehyde,LB
+37023,1.9368536,Acenaphthene,LB
+37023,0.3741979,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,3.521524e-05,Chromium (VI),LB
+37179,0.18179678,Fluoranthene,LB
+37179,57.43748,"2,2,4-Trimethylpentane",LB
+37179,60.88046,Ethyl Benzene,LB
+37179,0.03928948,Ammonia,TON
+37171,68.77006,Acrolein,LB
+37171,2.615782,Anthracene,LB
+37171,5.339522,Fluoranthene,LB
+37171,25.4926,"2,2,4-Trimethylpentane",LB
+37171,0.1679164,Nickel,LB
+37171,97.48118,Naphthalene,LB
+37171,3.598446,PM25-Primary from certain diesel engines,TON
+37149,0.4843504,"1,3-Butadiene",LB
+37149,1.2020042,Acrolein,LB
+37149,0.00519255,Manganese,LB
+37161,3.133444,Xylenes (Mixed Isomers),LB
+37161,0.000728901,Chrysene,LB
+37161,0.007873276,Phenanthrene,LB
+37161,0.5277649,Carbon Monoxide,TON
+37161,4.346985e-06,Nitrate portion of PM2.5-PRI,TON
+37147,0.7406226,Acetaldehyde,LB
+37147,0.002630696,Methane,TON
+37147,0.0008947513,PM2.5 Primary (Filt + Cond),TON
+37147,0.0002185031,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.0006469196,Benzo[k]Fluoranthene,LB
+37147,0.0006361898,Chrysene,LB
+37147,0.02850706,"Benzo[g,h,i,]Perylene",LB
+37147,0.007921362,Chrysene,LB
+37147,611.9875,Carbon Dioxide,TON
+37143,0.5653616,Xylenes (Mixed Isomers),LB
+37143,0.076966,Formaldehyde,LB
+37143,0.00010789232,Benz[a]Anthracene,LB
+37143,0.2202308,Benzene,LB
+37143,4.13891e-05,Ammonia,TON
+37143,0.007794722,Nitrogen Oxides,TON
+37143,3.269648e-05,Sulfur Dioxide,TON
+37131,0.1271686,Acenaphthylene,LB
+37131,0.06321626,Benz[a]Anthracene,LB
+37131,0.07565298,Acenaphthene,LB
+37111,0.007600964,Arsenic,LB
+37111,3.914866,Naphthalene,LB
+37119,107.46286,Xylenes (Mixed Isomers),LB
+37119,0.006959264,Nickel,LB
+37119,0.2725448,PM10 Primary (Filt + Cond),TON
+37119,0.07005742,PM2.5 Primary (Filt + Cond),TON
+37109,0.5360775,Methane,TON
+37109,0.6093777,Carbon Monoxide,TON
+37109,0.01587912,PM10 Primary (Filt + Cond),TON
+37109,17.298258,Acrolein,LB
+37109,7.425722e-05,Chromium (VI),LB
+37109,0.003155754,Benzo[b]Fluoranthene,LB
+37109,5.808628,"2,2,4-Trimethylpentane",LB
+37109,1.768197,Nitrogen Oxides,TON
+37109,0.1082228,PM10 Primary (Filt + Cond),TON
+37109,0.04415298,PM2.5 Primary (Filt + Cond),TON
+37109,0.009717719,Sulfur Dioxide,TON
+37109,0.004406667,Sulfate Portion of PM2.5-PRI,TON
+37109,0.3963032,Anthracene,LB
+37109,0.0001802061,Chromium (VI),LB
+37109,0.13364616,Benzo[k]Fluoranthene,LB
+37109,638.5718,Benzene,LB
+37109,0.03453922,Arsenic,LB
+37109,0.463103,Acenaphthene,LB
+37109,5.944411,Nitrogen Oxides,TON
+37107,0.06461896,Phenanthrene,LB
+37107,0.02415156,Fluorene,LB
+37107,37.5222,Xylenes (Mixed Isomers),LB
+37107,0.00290172,Benzo[b]Fluoranthene,LB
+37097,42.85204,Ethyl Benzene,LB
+37097,42.13318,"1,3-Butadiene",LB
+37097,102.24926,Acrolein,LB
+37097,121.85966,Benzene,LB
+37097,9.56695,Fluorene,LB
+37097,0.2944758,Ammonia,TON
+37097,0.7878745,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,7.514272,Volatile Organic Compounds,TON
+37099,0.015249406,"Benzo[g,h,i,]Perylene",LB
+37099,0.2828718,Manganese,LB
+37099,5.08417,Phenanthrene,LB
+37099,52.27134,Naphthalene,LB
+37099,14.69747,Carbon Monoxide,TON
+37099,23244,Carbon Dioxide,TON
+37099,2.099368,PM10-Primary from certain diesel engines,TON
+37089,0.008974636,PM2.5 Primary (Filt + Cond),TON
+37089,0.003526677,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.04668464,Acenaphthylene,LB
+37089,0.006478126,Benzo[a]Pyrene,LB
+37089,0.00014938706,"Dibenzo[a,h]Anthracene",LB
+37089,0.010226816,Acenaphthene,LB
+37123,71.25116,Benzene,LB
+37123,0.0009966753,Nitrate portion of PM2.5-PRI,TON
+37123,0.07563595,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.003544638,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.3142504,Styrene,LB
+37123,0.7256202,"1,3-Butadiene",LB
+37123,0.6524178,Hexane,LB
+37123,1.3069344e-05,Chromium (VI),LB
+37123,5.36628e-05,Benzo[k]Fluoranthene,LB
+37123,0.00690204,Nickel,LB
+37115,17.46103,Toluene,LB
+37115,2.115598,Pyrene,LB
+37115,0.04500512,Benzo[b]Fluoranthene,LB
+37115,0.0308424,Nickel,LB
+37115,0.012864702,Arsenic,LB
+37115,0.5292707,PM25-Primary from certain diesel engines,TON
+37115,0.2211722,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.2148722,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.5550416,PM2.5 Primary (Filt + Cond),TON
+37115,0.02165475,Sulfur Dioxide,TON
+37113,3.34378e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,7.677228e-05,Benzo[k]Fluoranthene,LB
+37113,2.646696e-06,"Dibenzo[a,h]Anthracene",LB
+37113,0.008838634,Nitrogen Oxides,TON
+37107,1.6584394,Pyrene,LB
+37107,1.340891,Fluoranthene,LB
+37107,1.670189,Fluorene,LB
+37107,0.007038633,Nitrous Oxide,TON
+37107,0.000775607,Nitrate portion of PM2.5-PRI,TON
+37105,2.11283,"1,3-Butadiene",LB
+37105,0.04932834,Chrysene,LB
+37105,0.02218444,Benzo[a]Pyrene,LB
+37105,0.02369692,Manganese,LB
+37105,0.008303972,Nickel,LB
+37105,0.003035544,Arsenic,LB
+37105,28.74322,Acetaldehyde,LB
+37105,942.8023,Carbon Dioxide,TON
+37105,0.002077286,Nitrous Oxide,TON
+37097,6.315094,Styrene,LB
+37097,24.0084,Propionaldehyde,LB
+37097,0.323031,Benzo[a]Pyrene,LB
+37097,5.542556,Phenanthrene,LB
+37097,0.02964257,Sulfur Dioxide,TON
+37101,8415.268,"2,2,4-Trimethylpentane",LB
+37099,5.09248,Pyrene,LB
+37099,1.1146088,Benzo[b]Fluoranthene,LB
+37099,1.0179466,Chrysene,LB
+37099,6.080388,Fluorene,LB
+37099,741.4305,Carbon Monoxide,TON
+37099,1.017104,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.0414232,Benzo[b]Fluoranthene,LB
+37093,1.011572,Acenaphthylene,LB
+37093,0.005727702,"Dibenzo[a,h]Anthracene",LB
+37093,19.318112,Benzene,LB
+37093,0.12291932,Manganese,LB
+37093,22.73492,Naphthalene,LB
+37093,0.1649919,Methane,TON
+37093,2.582308,Styrene,LB
+37093,7.857484e-05,Chromium (VI),LB
+37085,2.157296e-06,Nickel,LB
+37085,0.002571946,Fluorene,LB
+37085,0.003016596,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.0008360599,Sulfur Dioxide,TON
+37079,1.894196e-08,Chromium (VI),LB
+37079,0.0006483602,Phenanthrene,LB
+37079,0.0003015852,Sulfur Dioxide,TON
+37079,0.140113,Acrolein,LB
+37081,232.0036,Acrolein,LB
+37081,81.74838,Hexane,LB
+37081,0.0014197846,Chromium (VI),LB
+37081,94.11081,Carbon Monoxide,TON
+37081,0.145341,Nitrous Oxide,TON
+37081,1.132317,Sulfur Dioxide,TON
+37081,0.6788782,Acrolein,LB
+37081,0.09347172,"Benzo[g,h,i,]Perylene",LB
+37081,0.02097968,Methane,TON
+37081,17.42726,Carbon Monoxide,TON
+37081,1137.912,Carbon Dioxide,TON
+37081,2.28541,Nitrogen Oxides,TON
+37081,0.1110214,PM10 Primary (Filt + Cond),TON
+37081,0.01430483,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,4.968534,"Benzo[g,h,i,]Perylene",LB
+37079,0.04285722,"Dibenzo[a,h]Anthracene",LB
+37079,5853.112,Benzene,LB
+37079,1396.651,Carbon Monoxide,TON
+37079,2.47552,Nitrous Oxide,TON
+37077,0.001944886,Methane,TON
+37077,0.000503663,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.0002390535,Sulfur Dioxide,TON
+37077,0.0018993084,Benzo[b]Fluoranthene,LB
+37069,1.2514978,Anthracene,LB
+37069,47.6394,Xylenes (Mixed Isomers),LB
+37069,0.0002202068,Chromium (VI),LB
+37069,0.015460578,"Benzo[g,h,i,]Perylene",LB
+37069,1.9578528,Acenaphthylene,LB
+37069,0.2492054,Benzo[a]Pyrene,LB
+37069,2.584984,Fluorene,LB
+37069,1.894118,PM25-Primary from certain diesel engines,TON
+37069,2.319262,Volatile Organic Compounds,TON
+37069,0.0988526,Anthracene,LB
+37069,30.33956,Formaldehyde,LB
+37069,0.0009371064,"Dibenzo[a,h]Anthracene",LB
+37069,0.004161286,Nickel,LB
+37069,0.6912897,Carbon Monoxide,TON
+37069,0.001055386,Nitrous Oxide,TON
+37069,0.0004006648,Nitrate portion of PM2.5-PRI,TON
+37069,0.0151656,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,1.5992278,Anthracene,LB
+37061,0.02464812,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,5.374626,Phenanthrene,LB
+37061,2.210903,PM10-Primary from certain diesel engines,TON
+37061,2.547474,Volatile Organic Compounds,TON
+37055,1.3304678e-07,"Dibenzo[a,h]Anthracene",LB
+37055,0.008729352,"2,2,4-Trimethylpentane",LB
+37055,2.084594e-06,Manganese,LB
+37055,1.6758026e-08,Mercury,LB
+37055,0.1143779,Carbon Dioxide,TON
+37055,5.841361e-06,Nitrous Oxide,TON
+37055,0.0002101444,Volatile Organic Compounds,TON
+37055,0.0007611248,"Benzo[g,h,i,]Perylene",LB
+37055,0.0007982168,Fluorene,LB
+37055,0.0004508347,PM10 Primary (Filt + Cond),TON
+37049,4.382866e-05,Acrolein,LB
+37049,2.152894e-06,Anthracene,LB
+37049,1.1228508e-05,Acenaphthylene,LB
+37049,0.0014412448,"2,2,4-Trimethylpentane",LB
+37049,4.970738e-06,Fluorene,LB
+37049,3.422387e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37045,13.202604,Styrene,LB
+37045,1.0389006,Chrysene,LB
+37045,0.18455184,Nickel,LB
+37039,0.04626498,Benzo[b]Fluoranthene,LB
+37039,0.006335778,Benzo[k]Fluoranthene,LB
+37039,3.977038e-05,Mercury,LB
+37039,21.42684,Naphthalene,LB
+37039,0.003697218,Nitrous Oxide,TON
+37039,0.002668353,Nitrate portion of PM2.5-PRI,TON
+37039,20.94567,Nitrogen Oxides,TON
+37039,0.2181456,Organic Carbon portion of PM2.5-PRI,TON
+37045,6.205832,Hexane,LB
+37045,0.19285078,Benzo[a]Pyrene,LB
+37045,107.22704,Acetaldehyde,LB
+37045,0.8083486,Acenaphthene,LB
+37045,3.073524,Phenanthrene,LB
+37033,0.2141376,"2,2,4-Trimethylpentane",LB
+37033,0.0033346,Manganese,LB
+37033,0.00878237,Organic Carbon portion of PM2.5-PRI,TON
+37033,2.985078e-06,Chromium (VI),LB
+37033,0.04740808,Acenaphthylene,LB
+37033,0.0002472704,"Dibenzo[a,h]Anthracene",LB
+37033,0.05596964,PM10 Primary (Filt + Cond),TON
+37033,0.02563104,Arsenic,LB
+37033,4.46046,Fluorene,LB
+37033,4.568738,Volatile Organic Compounds,TON
+37031,1.37665e-05,Anthracene,LB
+37031,0.0003244152,Propionaldehyde,LB
+37031,2.684614e-05,Pyrene,LB
+37031,1.7841622e-08,Mercury,LB
+37031,3.411436e-07,Arsenic,LB
+37031,8.7399e-05,Phenanthrene,LB
+37031,1.245599e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.0002718469,Volatile Organic Compounds,TON
+37195,0.0019788058,Benzo[k]Fluoranthene,LB
+37195,5.098144,Toluene,LB
+37195,0.010910676,Nickel,LB
+37195,0.1844876,PM2.5 Primary (Filt + Cond),TON
+37195,0.03187815,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,1.5223866,Anthracene,LB
+37195,4.339816,Pyrene,LB
+37195,0.09423064,Benzo[b]Fluoranthene,LB
+37195,10.38898,"2,2,4-Trimethylpentane",LB
+37195,1.0416152,Benz[a]Anthracene,LB
+37195,39.65162,Benzene,LB
+37195,46.14802,Naphthalene,LB
+37195,12.19197,Carbon Monoxide,TON
+37195,0.451507,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.04346578,Acenaphthylene,LB
+37189,0.7371118,Benzene,LB
+37189,0.02585232,Acenaphthene,LB
+37189,0.09313272,Phenanthrene,LB
+37189,0.00596134,Elemental Carbon portion of PM2.5-PRI,TON
+37183,19.26763,Phenanthrene,LB
+37183,0.8117777,Organic Carbon portion of PM2.5-PRI,TON
+37183,1.486239,PM2.5 Primary (Filt + Cond),TON
+37183,109.1741,Volatile Organic Compounds,TON
+37183,1.0209116,Chrysene,LB
+37183,1333.3186,Formaldehyde,LB
+37183,1.4603384,Benzo[a]Pyrene,LB
+37183,0.2586016,Arsenic,LB
+37021,0.10800012,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,2.692812,Chrysene,LB
+37021,2.20762,Organic Carbon portion of PM2.5-PRI,TON
+37021,1.463424,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.0333022,Arsenic,LB
+37017,0.178165,Methane,TON
+37017,57.73358,Acrolein,LB
+37017,0.2287858,Chrysene,LB
+37017,17.3497,"2,2,4-Trimethylpentane",LB
+37015,0.6498792,Ethyl Benzene,LB
+37015,1.4080432,Toluene,LB
+37015,0.00097489,"Benzo[g,h,i,]Perylene",LB
+37015,0.0012497194,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.15758932,Fluoranthene,LB
+37015,8.438346,Acetaldehyde,LB
+37015,0.06135782,Acenaphthene,LB
+37015,2.123762,Naphthalene,LB
+37015,0.02321485,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.0555671,PM2.5 Primary (Filt + Cond),TON
+37015,0.89636,Styrene,LB
+37015,0.04967016,Chrysene,LB
+37015,5.51546,Benzene,LB
+37015,525.0512,Carbon Dioxide,TON
+37015,0.03218711,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.1340245,PM2.5 Primary (Filt + Cond),TON
+37013,0.16758474,Anthracene,LB
+37013,3.254382,Propionaldehyde,LB
+37013,0.05455066,Chrysene,LB
+37013,0.001718702,"Dibenzo[a,h]Anthracene",LB
+37013,0.04145222,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.002908316,Acenaphthylene,LB
+37003,6.981558e-06,"Dibenzo[a,h]Anthracene",LB
+37003,0.5881816,Benzene,LB
+37003,0.03313608,Naphthalene,LB
+37003,7.361689e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,7.317191e-05,Sulfur Dioxide,TON
+37067,0.7361868,"1,3-Butadiene",LB
+37067,0.007424214,Benzo[b]Fluoranthene,LB
+37067,0.014221734,Benzo[a]Pyrene,LB
+37067,0.006354014,Benz[a]Anthracene,LB
+37067,0.015707412,Arsenic,LB
+37067,0.1006463,PM10 Primary (Filt + Cond),TON
+37027,10.36231,Acetaldehyde,LB
+37027,0.01727207,PM10 Primary (Filt + Cond),TON
+37027,0.001724855,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.0016661334,Pyrene,LB
+37027,1.9349892,Xylenes (Mixed Isomers),LB
+37133,0.02707838,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.02091138,Benzo[k]Fluoranthene,LB
+37133,33.19166,Formaldehyde,LB
+37133,20.04158,"2,2,4-Trimethylpentane",LB
+37069,0.5698558,Propionaldehyde,LB
+37069,0.11322842,Xylenes (Mixed Isomers),LB
+37069,0.0005741037,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.0002329665,Sulfur Dioxide,TON
+37053,1.9924832,Ethyl Benzene,LB
+37053,0.6384408,Styrene,LB
+37053,5.442908,Toluene,LB
+37053,0.1891159,Fluoranthene,LB
+37053,0.02686648,Benz[a]Anthracene,LB
+37053,5.247356,Benzene,LB
+37053,6.217638,Naphthalene,LB
+37053,6.32908,Anthracene,LB
+37053,3.268324,Nitrous Oxide,TON
+37051,0.5300776,Benzo[a]Pyrene,LB
+37051,0.012136136,"Dibenzo[a,h]Anthracene",LB
+37051,0.3869176,Benz[a]Anthracene,LB
+37051,68.71332,Naphthalene,LB
+37051,8354.573,Carbon Dioxide,TON
+37051,0.09415081,Nitrous Oxide,TON
+37051,0.2952421,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.171806,Sulfur Dioxide,TON
+37051,1.132762,Anthracene,LB
+37051,49.23687,Volatile Organic Compounds,TON
+37047,1.9349626,Xylenes (Mixed Isomers),LB
+37047,0.19589228,Fluoranthene,LB
+37047,2.502716,Benzene,LB
+37047,9.70986e-06,Mercury,LB
+37047,11.603696,Acetaldehyde,LB
+37047,0.02723432,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.006447753,Sulfur Dioxide,TON
+37041,3.832508,Toluene,LB
+37041,1.4878178,Hexane,LB
+37041,3.714544,Xylenes (Mixed Isomers),LB
+37041,0.013138668,Benzo[b]Fluoranthene,LB
+37041,25.98514,Acetaldehyde,LB
+37041,0.01422753,Ammonia,TON
+37041,0.06243305,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.02751799,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.008709185,Sulfur Dioxide,TON
+37031,0.008292302,Pyrene,LB
+37031,11.821298,Xylenes (Mixed Isomers),LB
+37031,5.517056,Benzene,LB
+37031,0.0003637688,Nickel,LB
+37031,0.003564718,Methane,TON
+37031,108.0739,Carbon Dioxide,TON
+37031,0.01185206,PM10 Primary (Filt + Cond),TON
+37031,0.09669353,Volatile Organic Compounds,TON
+37017,0.0004429528,"Dibenzo[a,h]Anthracene",LB
+37017,10.874832,Benzene,LB
+37017,0.1179906,PM25-Primary from certain diesel engines,TON
+37017,0.0002195036,Nitrate portion of PM2.5-PRI,TON
+37017,0.1217672,PM2.5 Primary (Filt + Cond),TON
+37017,0.006950236,Sulfur Dioxide,TON
+37017,0.6687159,Volatile Organic Compounds,TON
+37017,0.6374228,Acenaphthylene,LB
+37019,0.02297314,Manganese,LB
+37015,27.80706,Acetaldehyde,LB
+37015,36.10659,Carbon Monoxide,TON
+37015,2.401658,Acrolein,LB
+37015,0.03879194,Benzo[k]Fluoranthene,LB
+37167,0.2223544,Xylenes (Mixed Isomers),LB
+37167,2.936444e-08,Chromium (VI),LB
+37167,80.72659,Carbon Dioxide,TON
+37167,0.01381437,Nitrous Oxide,TON
+37021,5.028334e-05,Mercury,LB
+37021,0.018683862,Nickel,LB
+37021,1.1493188,Fluorene,LB
+37021,15.53774,Xylenes (Mixed Isomers),LB
+37021,0.13119528,Benzo[a]Pyrene,LB
+37017,3.453324,Acrolein,LB
+37017,3.864074,Xylenes (Mixed Isomers),LB
+37017,0.0004652448,"Benzo[g,h,i,]Perylene",LB
+37017,0.0005773584,Benzo[b]Fluoranthene,LB
+37017,0.009466558,Manganese,LB
+37017,4.87389,Naphthalene,LB
+37017,0.007397736,Ammonia,TON
+37017,0.3987321,Nitrogen Oxides,TON
+37021,0.02569798,Benzo[b]Fluoranthene,LB
+37021,0.02569798,Benzo[k]Fluoranthene,LB
+37021,0.007333233,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.03156935,Sulfur Dioxide,TON
+37011,0.1233768,PM25-Primary from certain diesel engines,TON
+37011,0.05199154,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.412088,Fluoranthene,LB
+37011,0.343747,Volatile Organic Compounds,TON
+37081,4.48849,Ethyl Benzene,LB
+37081,1.7732716,Propionaldehyde,LB
+37081,0.02073678,Benzo[a]Pyrene,LB
+37081,84.92576,Acetaldehyde,LB
+37081,0.00735665,Acenaphthene,LB
+37081,0.014901326,Fluorene,LB
+37081,0.0197563,Nitrous Oxide,TON
+37081,8.54311e-05,Nitrate portion of PM2.5-PRI,TON
+37043,0.999329,Ethyl Benzene,LB
+37043,0.002646246,Benzo[a]Pyrene,LB
+37043,1.7433636,"2,2,4-Trimethylpentane",LB
+37043,0.00178933,Arsenic,LB
+37043,0.00176818,Acenaphthene,LB
+37043,0.0128249,Methane,TON
+37043,0.002984612,Nitrous Oxide,TON
+37043,0.001598034,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.009242655,PM10 Primary (Filt + Cond),TON
+37031,1.3918698,Formaldehyde,LB
+37031,2.663168,Toluene,LB
+37031,0.005640636,"Benzo[g,h,i,]Perylene",LB
+37031,0.002119298,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.0011044424,Benzo[b]Fluoranthene,LB
+37031,0.0015615954,Fluoranthene,LB
+37031,0.007740126,Methane,TON
+37031,0.02194656,PM10 Primary (Filt + Cond),TON
+37031,0.005643099,Sulfur Dioxide,TON
+37031,0.0001368091,Sulfate Portion of PM2.5-PRI,TON
+37037,0.001070296,Benzo[k]Fluoranthene,LB
+37037,4.706446e-05,"Dibenzo[a,h]Anthracene",LB
+37037,0.0014641718,Nickel,LB
+37037,0.001385819,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.003189519,PM2.5 Primary (Filt + Cond),TON
+37135,0.3960574,Naphthalene,LB
+37135,0.02913273,PM2.5 Primary (Filt + Cond),TON
+37135,0.007974062,Chrysene,LB
+37135,8.089266,"2,2,4-Trimethylpentane",LB
+37129,5.014418,Ethyl Benzene,LB
+37129,4.17854,Benzene,LB
+37103,0.004382158,Pyrene,LB
+37175,0.8709812,Chrysene,LB
+37175,0.3376189,Elemental Carbon portion of PM2.5-PRI,TON
+37175,64.54226,Nitrogen Oxides,TON
+37167,7.205124,"Benzo[g,h,i,]Perylene",LB
+37167,2.706994,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,2.70247,Benzo[a]Pyrene,LB
+37167,1.9624446,Manganese,LB
+37167,1.575689,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.08950704,Sulfate Portion of PM2.5-PRI,TON
+37155,0.13765616,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.668827,Acenaphthylene,LB
+37155,0.06781898,Chrysene,LB
+37155,0.1041237,Methane,TON
+37155,0.12846728,Anthracene,LB
+37155,0.2568794,Pyrene,LB
+37155,337.3522,Xylenes (Mixed Isomers),LB
+37155,8.54771e-05,Chromium (VI),LB
+37149,0.6000192,Anthracene,LB
+37149,1.1955828,Fluorene,LB
+37149,18.35192,Naphthalene,LB
+37149,3031.445,Carbon Dioxide,TON
+37149,0.006990704,"Benzo[g,h,i,]Perylene",LB
+37153,25.74278,"1,3-Butadiene",LB
+37153,45.70222,Xylenes (Mixed Isomers),LB
+37153,84.42264,Naphthalene,LB
+37143,9.360912,Formaldehyde,LB
+37143,0.001454592,Nickel,LB
+37143,0.2244204,Carbon Monoxide,TON
+37143,0.001106638,Sulfate Portion of PM2.5-PRI,TON
+37143,0.05045863,Volatile Organic Compounds,TON
+37137,0.9349624,Styrene,LB
+37137,3.664798,Propionaldehyde,LB
+37137,0.621658,Pyrene,LB
+37137,3.254664e-05,Chromium (VI),LB
+37137,0.003200228,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.0017545736,Benzo[k]Fluoranthene,LB
+37137,0.04206084,Benzo[a]Pyrene,LB
+37137,6.955222,Benzene,LB
+37137,0.03049716,Manganese,LB
+37137,3.717992e-05,Mercury,LB
+37137,0.019727,Sulfate Portion of PM2.5-PRI,TON
+37131,1.375991,Acrolein,LB
+37131,0.8801358,Propionaldehyde,LB
+37131,0.004751726,Chrysene,LB
+37131,18.565898,Formaldehyde,LB
+37131,1.0392444e-05,Mercury,LB
+37131,7.752206,Acetaldehyde,LB
+37131,2.025338,Carbon Monoxide,TON
+37131,0.003652469,Ammonia,TON
+37119,0.014527432,Benzo[b]Fluoranthene,LB
+37119,117.44602,Naphthalene,LB
+37119,0.2060939,PM25-Primary from certain diesel engines,TON
+37119,0.001315806,Nitrate portion of PM2.5-PRI,TON
+37119,0.09897753,Sulfur Dioxide,TON
+37119,0.2255082,Xylenes (Mixed Isomers),LB
+37119,7.887798e-05,Chrysene,LB
+37119,0.0001782299,Benzo[a]Pyrene,LB
+37119,4.13586e-06,"Dibenzo[a,h]Anthracene",LB
+37119,6.305607e-07,Nitrate portion of PM2.5-PRI,TON
+37107,0.01842021,PM10-Primary from certain diesel engines,TON
+37107,9.558364e-05,Nitrate portion of PM2.5-PRI,TON
+37103,7.519914e-07,Chromium (VI),LB
+37103,0.000633018,Benzo[b]Fluoranthene,LB
+37103,0.002123258,Benzo[a]Pyrene,LB
+37103,0.007061848,Benz[a]Anthracene,LB
+37103,1.2862262,Acetaldehyde,LB
+37103,0.00296302,Organic Carbon portion of PM2.5-PRI,TON
+37099,6.732822,Acrolein,LB
+37099,4.5885,Propionaldehyde,LB
+37099,0.003175246,Arsenic,LB
+37099,0.8856574,Phenanthrene,LB
+37099,0.1759607,PM25-Primary from certain diesel engines,TON
+37099,0.1088898,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.005657984,Sulfate Portion of PM2.5-PRI,TON
+37097,0.4583348,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.1235025,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.00691983,Benzo[b]Fluoranthene,LB
+37095,0.4961318,Phenanthrene,LB
+37095,5.071078,Naphthalene,LB
+37095,0.03742215,Ammonia,TON
+37095,0.0004134072,Nitrate portion of PM2.5-PRI,TON
+37095,0.4058684,Benzo[k]Fluoranthene,LB
+37095,544.485,Formaldehyde,LB
+37095,0.011128068,"Dibenzo[a,h]Anthracene",LB
+37095,35.5265,Propionaldehyde,LB
+37095,0.000910002,Chromium (VI),LB
+37095,1.141235,PM10 Primary (Filt + Cond),TON
+37095,0.1404324,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.17804284,Styrene,LB
+37085,0.8793108,"1,3-Butadiene",LB
+37085,7.352024,Hexane,LB
+37085,0.006709188,Anthracene,LB
+37085,2.506392,Formaldehyde,LB
+37085,0.005135944,Benzo[a]Pyrene,LB
+37085,0.00404033,Manganese,LB
+37085,0.000778798,Nickel,LB
+37085,0.005382109,Methane,TON
+37085,221.2626,Carbon Dioxide,TON
+37085,0.02057054,PM10 Primary (Filt + Cond),TON
+37085,0.002462315,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,57.09218,Acetaldehyde,LB
+37083,68.2176,Carbon Monoxide,TON
+37083,0.003475465,Sulfate Portion of PM2.5-PRI,TON
+37081,969.9206,"1,3-Butadiene",LB
+37081,11.495712,Pyrene,LB
+37081,0.008178234,Chromium (VI),LB
+37081,8.422672,"Benzo[g,h,i,]Perylene",LB
+37081,0.0726493,"Dibenzo[a,h]Anthracene",LB
+37081,6969.8,Benzene,LB
+37081,2.776052,Manganese,LB
+37081,5.196204,Methane,TON
+37081,146979.5,Carbon Dioxide,TON
+37081,4.098196,Nitrous Oxide,TON
+37081,4.227181,PM2.5 Primary (Filt + Cond),TON
+37081,0.1158609,Sulfate Portion of PM2.5-PRI,TON
+37077,112.02626,Acrolein,LB
+37077,0.0004005582,Chromium (VI),LB
+37077,5.26082,Fluoranthene,LB
+37077,0.015346138,Benzo[k]Fluoranthene,LB
+37077,4.9216,Acenaphthylene,LB
+37077,0.355521,Benzo[a]Pyrene,LB
+37077,0.008523172,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.11218208,Benzo[a]Pyrene,LB
+37077,140.01174,Benzene,LB
+37077,0.2837568,Ammonia,TON
+37077,0.07289652,Sulfur Dioxide,TON
+37077,8.753954,Volatile Organic Compounds,TON
+37071,0.005263136,Fluorene,LB
+37071,0.0002375738,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.0002784337,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,2.739299e-05,Sulfate Portion of PM2.5-PRI,TON
+37071,0.0631818,Styrene,LB
+37071,0.0409385,Acrolein,LB
+37071,0.002820698,"Benzo[g,h,i,]Perylene",LB
+37071,2.433148e-05,"Dibenzo[a,h]Anthracene",LB
+37071,227.2522,Carbon Monoxide,TON
+37071,0.01187713,Sulfate Portion of PM2.5-PRI,TON
+37071,1451.797,Benzene,LB
+37069,44.771,Ethyl Benzene,LB
+37069,165.88612,Xylenes (Mixed Isomers),LB
+37069,0.09602718,Fluoranthene,LB
+37067,26.7711,Styrene,LB
+37067,62.08724,"1,3-Butadiene",LB
+37067,19.460338,Pyrene,LB
+37067,0.10852118,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,6.244618,Acenaphthene,LB
+37067,5.474833,PM10-Primary from certain diesel engines,TON
+37067,2.069414,Organic Carbon portion of PM2.5-PRI,TON
+37061,11.83284,Nitrogen Oxides,TON
+37061,0.3180496,PM2.5 Primary (Filt + Cond),TON
+37061,0.00532803,Sulfate Portion of PM2.5-PRI,TON
+37061,0.003732832,"Benzo[g,h,i,]Perylene",LB
+37043,3.558392e-05,Pyrene,LB
+37043,6.42664e-06,Benzo[b]Fluoranthene,LB
+37043,0.006548962,Formaldehyde,LB
+37043,0.00729382,Acetaldehyde,LB
+37043,4.30871e-05,Fluorene,LB
+37043,1.730599e-05,Methane,TON
+37043,1.286465e-05,Nitrous Oxide,TON
+37043,9.011908e-06,PM2.5 Primary (Filt + Cond),TON
+37065,0.008784708,"Benzo[g,h,i,]Perylene",LB
+37065,0.0017044986,Benzo[k]Fluoranthene,LB
+37065,0.06390756,Naphthalene,LB
+37065,0.01563392,Ammonia,TON
+37065,0.005871756,PM2.5 Primary (Filt + Cond),TON
+37065,0.0001743983,Sulfate Portion of PM2.5-PRI,TON
+37065,0.09970706,Volatile Organic Compounds,TON
+37111,1.4986276,Formaldehyde,LB
+37111,0.003190352,PM2.5 Primary (Filt + Cond),TON
+37177,164.97208,Ethyl Benzene,LB
+37169,0.05213154,Chrysene,LB
+37169,44.78728,Acetaldehyde,LB
+37163,50.43874,Acrolein,LB
+37163,0.13045192,Nickel,LB
+37163,1.926633,Elemental Carbon portion of PM2.5-PRI,TON
+37149,1.1505656,Ethyl Benzene,LB
+37149,0.002121146,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.008328838,Benzo[b]Fluoranthene,LB
+37149,0.18393576,Acenaphthylene,LB
+37149,0.08999188,Benz[a]Anthracene,LB
+37149,1.2788004e-05,Mercury,LB
+37149,0.04750906,Elemental Carbon portion of PM2.5-PRI,TON
+37149,1.768585,Nitrogen Oxides,TON
+37149,7.513306,Naphthalene,LB
+37149,3.71786,Nitrogen Oxides,TON
+37149,0.6557632,Pyrene,LB
+37149,2.233322,"1,3-Butadiene",LB
+37145,6.666508,Xylenes (Mixed Isomers),LB
+37145,0.002557194,Benzo[k]Fluoranthene,LB
+37145,92.68874,Formaldehyde,LB
+37145,1.1460586e-05,Mercury,LB
+37145,4.041842,Carbon Monoxide,TON
+37145,0.2081919,PM10-Primary from certain diesel engines,TON
+37199,313.6794,Carbon Monoxide,TON
+37199,2.084598,"Benzo[g,h,i,]Perylene",LB
+37199,8.003208,Acenaphthylene,LB
+37187,11.210394,Acetaldehyde,LB
+37187,0.17007492,Fluorene,LB
+37187,0.07628713,PM10 Primary (Filt + Cond),TON
+37187,0.398373,Styrene,LB
+37187,0.1996799,Pyrene,LB
+37187,0.000710736,"Benzo[g,h,i,]Perylene",LB
+37185,1216.1874,"2,2,4-Trimethylpentane",LB
+37181,0.07395758,Styrene,LB
+37181,0.4085432,Acrolein,LB
+37181,0.0002244862,"Benzo[g,h,i,]Perylene",LB
+37181,5.176066,Formaldehyde,LB
+37181,51.45602,Carbon Dioxide,TON
+37181,59.13422,Hexane,LB
+37181,0.03067168,Benzo[k]Fluoranthene,LB
+37181,0.302377,Acenaphthylene,LB
+37181,53.158,"2,2,4-Trimethylpentane",LB
+37181,1289.607,Carbon Dioxide,TON
+37181,0.02703314,Sulfur Dioxide,TON
+37179,6281.682,Hexane,LB
+37169,7.42395e-05,Anthracene,LB
+37169,0.7465552,Propionaldehyde,LB
+37169,1.8297934e-08,Chromium (VI),LB
+37169,0.09738456,Benzene,LB
+37169,0.0002926108,Sulfur Dioxide,TON
+37169,0.0306325,Volatile Organic Compounds,TON
+37169,0.12882652,Styrene,LB
+37169,0.05015676,Acenaphthylene,LB
+37169,0.012343232,Chrysene,LB
+37169,1.074387,Naphthalene,LB
+37169,278.2489,Carbon Dioxide,TON
+37169,0.0281181,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.0001134029,Nitrate portion of PM2.5-PRI,TON
+37169,1.024099,Nitrogen Oxides,TON
+37169,0.0521674,Mercury,LB
+37169,2397.13,Carbon Monoxide,TON
+37169,8.023123,Ammonia,TON
+37169,9.705632,PM10 Primary (Filt + Cond),TON
+37169,10.551196,"Benzo[g,h,i,]Perylene",LB
+37169,2.19141,Sulfur Dioxide,TON
+37165,1.0442442e-06,Nickel,LB
+37165,2.321666,Acetaldehyde,LB
+37165,0.0006121642,Naphthalene,LB
+37165,21380.14,Toluene,LB
+37165,0.5157383,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.07810709,Sulfate Portion of PM2.5-PRI,TON
+37155,23.55384,Benzene,LB
+37155,0.03760366,Manganese,LB
+37155,2155.127,Carbon Dioxide,TON
+37155,6.108429,Nitrogen Oxides,TON
+37155,6.342368,Hexane,LB
+37161,60155.58,Toluene,LB
+37161,4.504082,Benzo[k]Fluoranthene,LB
+37161,5.728016,Benzo[a]Pyrene,LB
+37143,2.189668e-08,Mercury,LB
+37143,0.009875486,Acetaldehyde,LB
+37143,0.01158599,Carbon Monoxide,TON
+37143,0.1455677,Carbon Dioxide,TON
+37143,1.786867e-05,Nitrous Oxide,TON
+37141,0.04610124,Arsenic,LB
+37139,43.34602,Hexane,LB
+37139,0.038923,Anthracene,LB
+37139,0.8644964,Propionaldehyde,LB
+37139,0.07589242,Pyrene,LB
+37139,6.01446e-05,Nitrate portion of PM2.5-PRI,TON
+37139,0.01528495,Sulfur Dioxide,TON
+37137,0.00011885422,"Benzo[g,h,i,]Perylene",LB
+37137,0.0005790032,Benzo[b]Fluoranthene,LB
+37137,7.983224e-05,"Dibenzo[a,h]Anthracene",LB
+37137,0.07292444,Hexane,LB
+37137,0.07591574,"2,2,4-Trimethylpentane",LB
+37137,0.1021675,Carbon Monoxide,TON
+37137,0.01218842,PM25-Primary from certain diesel engines,TON
+37133,23.66494,Acenaphthene,LB
+37133,558.0318,Styrene,LB
+37133,52822.6,Xylenes (Mixed Isomers),LB
+37129,0.03717516,Anthracene,LB
+37129,0.00015339648,Mercury,LB
+37129,0.0019125474,Nickel,LB
+37129,0.0009288921,Sulfate Portion of PM2.5-PRI,TON
+37127,9.153414,Pyrene,LB
+37127,0.0002971248,Chromium (VI),LB
+37127,0.06981224,Arsenic,LB
+37127,41.6314,Nitrogen Oxides,TON
+37127,0.4604923,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.1208843,Sulfur Dioxide,TON
+37127,0.1254429,Sulfate Portion of PM2.5-PRI,TON
+37125,1969.5654,Formaldehyde,LB
+37125,17.480978,Phenanthrene,LB
+37125,11.255454,Fluorene,LB
+37125,1.471631,PM25-Primary from certain diesel engines,TON
+37125,0.03755125,Nitrous Oxide,TON
+37007,2.941826,Styrene,LB
+37007,0.0521592,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.03833694,Benzo[b]Fluoranthene,LB
+37007,219.7282,"2,2,4-Trimethylpentane",LB
+37007,1.723808,Nitrogen Oxides,TON
+37007,0.05152197,PM2.5 Primary (Filt + Cond),TON
+37007,0.01342865,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.001582238,Sulfate Portion of PM2.5-PRI,TON
+37077,1.003136,Nitrogen Oxides,TON
+37077,0.8389128,"1,3-Butadiene",LB
+37053,3.500786e-05,Chromium (VI),LB
+37053,0.007440238,Fluoranthene,LB
+37053,4.597158,"2,2,4-Trimethylpentane",LB
+37053,0.008754432,Nitrous Oxide,TON
+37029,2.190192e-06,Chromium (VI),LB
+37029,0.01674562,Nitrogen Oxides,TON
+37029,0.0008929081,Sulfur Dioxide,TON
+37015,1.1535314,Ethyl Benzene,LB
+37141,0.00249454,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.0006341914,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.01258139,Ammonia,TON
+37117,0.09263982,Volatile Organic Compounds,TON
+37093,73.52534,Acetaldehyde,LB
+37093,0.011942408,Fluorene,LB
+37093,0.5836934,Nitrogen Oxides,TON
+37093,0.005641131,Organic Carbon portion of PM2.5-PRI,TON
+37093,3.413536,Ethyl Benzene,LB
+37093,13.79323,Toluene,LB
+37093,0.02712314,Acenaphthylene,LB
+37093,0.0002023328,"Dibenzo[a,h]Anthracene",LB
+37091,0.0009751066,"Benzo[g,h,i,]Perylene",LB
+37091,0.00014953934,Chrysene,LB
+37091,0.00016882714,Benz[a]Anthracene,LB
+37091,2.203234,Acetaldehyde,LB
+37091,0.001684317,Methane,TON
+37077,0.05616066,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.001404232,Nitrous Oxide,TON
+37077,0.0006358293,Nitrate portion of PM2.5-PRI,TON
+37077,0.2597557,Volatile Organic Compounds,TON
+37077,1.5577968,Ethyl Benzene,LB
+37077,0.16159586,Anthracene,LB
+37077,0.0015096698,Benzo[k]Fluoranthene,LB
+37077,1.2328652,"2,2,4-Trimethylpentane",LB
+37077,0.06091552,Benzo[a]Pyrene,LB
+37077,0.0014098402,"Dibenzo[a,h]Anthracene",LB
+37077,69.24124,Benzene,LB
+37077,0.01940915,Manganese,LB
+37077,20.6337,Acetaldehyde,LB
+37077,0.3633186,Phenanthrene,LB
+37077,0.04902447,Methane,TON
+37059,43.93086,Ethyl Benzene,LB
+37059,8.961592,Styrene,LB
+37059,128.64716,Naphthalene,LB
+37059,24.26454,Carbon Monoxide,TON
+37059,2.865126,PM2.5 Primary (Filt + Cond),TON
+37059,4.201524,Fluoranthene,LB
+37059,0.013119484,Benzo[k]Fluoranthene,LB
+37059,1.1077278,Benz[a]Anthracene,LB
+37059,106.34274,Benzene,LB
+37059,114.23542,Formaldehyde,LB
+37059,0.012305856,Nickel,LB
+37059,4.48942,Carbon Monoxide,TON
+37059,712.7336,Carbon Dioxide,TON
+37059,0.2958907,PM10-Primary from certain diesel engines,TON
+37059,0.3526488,PM10 Primary (Filt + Cond),TON
+37057,0.14171138,"1,3-Butadiene",LB
+37057,0.02285598,Propionaldehyde,LB
+37057,0.0003297446,Benzo[b]Fluoranthene,LB
+37057,0.0015586414,Fluoranthene,LB
+37057,0.0003297446,Benzo[k]Fluoranthene,LB
+37057,0.4844735,Carbon Monoxide,TON
+37057,1.277908e-06,Nitrate portion of PM2.5-PRI,TON
+37057,0.02030214,Nitrogen Oxides,TON
+37057,9.378058e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.2540754,"1,3-Butadiene",LB
+37055,0.4871564,Toluene,LB
+37055,0.02785928,Anthracene,LB
+37055,0.4144838,Propionaldehyde,LB
+37055,0.0004260614,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.7233996,Benzene,LB
+37055,1.0083606e-06,Mercury,LB
+37055,0.8406428,Naphthalene,LB
+37055,9.711815e-05,Nitrate portion of PM2.5-PRI,TON
+37055,0.01734064,PM2.5 Primary (Filt + Cond),TON
+37051,0.4756714,Pyrene,LB
+37051,0.003638554,"Dibenzo[a,h]Anthracene",LB
+37051,14.566118,Naphthalene,LB
+37051,0.1617582,Sulfur Dioxide,TON
+37043,0.004490962,Pyrene,LB
+37043,0.00393551,Fluoranthene,LB
+37043,0.0505316,Acrolein,LB
+37043,19.08441,Carbon Dioxide,TON
+37043,0.0002127205,Elemental Carbon portion of PM2.5-PRI,TON
+37043,2.79459e-05,Sulfate Portion of PM2.5-PRI,TON
+37039,6.095372,Hexane,LB
+37039,19.424812,Xylenes (Mixed Isomers),LB
+37039,1.1901344,Acenaphthylene,LB
+37039,0.0460206,Nickel,LB
+37039,2.638136,Phenanthrene,LB
+37039,1.4974846,Fluorene,LB
+37039,0.9660698,PM25-Primary from certain diesel engines,TON
+37039,0.008564314,Nitrous Oxide,TON
+37039,1.357534,PM10 Primary (Filt + Cond),TON
+37039,0.001036796,"Dibenzo[a,h]Anthracene",LB
+37039,0.00199578,Arsenic,LB
+37039,0.7013046,Phenanthrene,LB
+37039,0.4395956,Fluorene,LB
+37039,5.314968,Acrolein,LB
+37039,3.694972,Propionaldehyde,LB
+37039,0.522533,Pyrene,LB
+37025,2.306254e-05,Benzo[a]Pyrene,LB
+37025,8.613366e-05,Fluorene,LB
+37025,1.046188e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,4.839522e-08,Chromium (VI),LB
+37171,8.557334,Acetaldehyde,LB
+37171,0.0014931548,Phenanthrene,LB
+37171,0.0006774466,Fluorene,LB
+37171,0.003042719,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.008969403,PM2.5 Primary (Filt + Cond),TON
+37171,0.0008001766,Sulfur Dioxide,TON
+37171,0.0824964,Volatile Organic Compounds,TON
+37167,266.4936,Formaldehyde,LB
+37167,0.114031,Arsenic,LB
+37167,10979.91,Carbon Dioxide,TON
+37167,0.07640841,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.1617423,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.9479948,PM10 Primary (Filt + Cond),TON
+37167,0.008811457,Sulfate Portion of PM2.5-PRI,TON
+37161,1.385268e-08,Sulfate Portion of PM2.5-PRI,TON
+37161,7.685523e-06,Volatile Organic Compounds,TON
+37161,5.561168e-05,"1,3-Butadiene",LB
+37161,0.0004946316,Benzene,LB
+37161,9.387194e-10,Mercury,LB
+37161,1.287289e-09,Nitrate portion of PM2.5-PRI,TON
+37141,5.153086,Acenaphthene,LB
+37141,115658.1,Carbon Dioxide,TON
+37141,1.622331,Organic Carbon portion of PM2.5-PRI,TON
+37141,13209.914,Xylenes (Mixed Isomers),LB
+37141,2.693412,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,1.6746774,Chrysene,LB
+37127,2.074246,Anthracene,LB
+37127,6.047268,Pyrene,LB
+37127,0.018725132,Benzo[k]Fluoranthene,LB
+37127,7.127526,Phenanthrene,LB
+37127,4.114928,Fluorene,LB
+37127,2.546838,PM25-Primary from certain diesel engines,TON
+37127,0.6511965,Organic Carbon portion of PM2.5-PRI,TON
+37127,2.642604,PM2.5 Primary (Filt + Cond),TON
+37121,0.276448,Fluoranthene,LB
+37121,0.08335238,Benz[a]Anthracene,LB
+37121,0.00632329,Manganese,LB
+37121,0.00389236,Nickel,LB
+37121,4.385366,Naphthalene,LB
+37121,203.9529,Carbon Dioxide,TON
+37111,0.11711472,Acetaldehyde,LB
+37111,0.0004835929,PM2.5 Primary (Filt + Cond),TON
+37111,0.0001275852,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.007950512,Fluoranthene,LB
+37113,2.818644,"2,2,4-Trimethylpentane",LB
+37113,1.8160128,Acetaldehyde,LB
+37113,14.31636,Toluene,LB
+37113,0.01106617,Fluorene,LB
+37113,0.003026955,Methane,TON
+37113,0.001930828,Sulfur Dioxide,TON
+37101,3.80354,"1,3-Butadiene",LB
+37101,1.2562866,Pyrene,LB
+37101,136.78314,Formaldehyde,LB
+37101,56.93332,Acetaldehyde,LB
+37101,6.120726,Nitrogen Oxides,TON
+37101,43.3661,"1,3-Butadiene",LB
+37101,116.06154,Acrolein,LB
+37101,73.47496,Propionaldehyde,LB
+37101,0.9812578,Benzo[a]Pyrene,LB
+37101,0.13250902,Arsenic,LB
+37101,3.963821,PM10-Primary from certain diesel engines,TON
+37101,0.6287668,Ammonia,TON
+37101,0.02935207,Sulfate Portion of PM2.5-PRI,TON
+37101,18.296256,Ethyl Benzene,LB
+37101,0.004083034,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.016016072,Benzo[b]Fluoranthene,LB
+37101,0.00224838,Benzo[k]Fluoranthene,LB
+37101,103.4127,Carbon Monoxide,TON
+37101,0.03071457,Elemental Carbon portion of PM2.5-PRI,TON
+37101,4.14103,Acrolein,LB
+37101,0.16838546,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.003864352,"Dibenzo[a,h]Anthracene",LB
+37099,2.65079,Xylenes (Mixed Isomers),LB
+37099,0.0019524692,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.16672832,Acenaphthylene,LB
+37099,33.64052,Formaldehyde,LB
+37099,0.002369298,Arsenic,LB
+37099,0.089883,PM10-Primary from certain diesel engines,TON
+37099,0.03658787,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.08777289,PM2.5 Primary (Filt + Cond),TON
+37099,0.003341593,Sulfur Dioxide,TON
+37099,0.1818915,Volatile Organic Compounds,TON
+37015,0.0009436588,Sulfur Dioxide,TON
+37015,0.17695732,"2,2,4-Trimethylpentane",LB
+37015,1.8851866,Acetaldehyde,LB
+37015,0.3839636,Toluene,LB
+37163,1.1043816,Formaldehyde,LB
+37163,5.575598e-05,Mercury,LB
+37163,0.002878084,Sulfur Dioxide,TON
+37163,0.0006735006,Benzo[k]Fluoranthene,LB
+37163,4.500216,Toluene,LB
+37163,2.105062,"2,2,4-Trimethylpentane",LB
+37163,0.00959832,Phenanthrene,LB
+37163,0.01509362,Methane,TON
+37163,280.4636,Carbon Dioxide,TON
+37151,31.5053,Toluene,LB
+37149,17.42461,Carbon Dioxide,TON
+37149,0.01438936,Nitrogen Oxides,TON
+37149,9.403295e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,6.719062,"2,2,4-Trimethylpentane",LB
+37105,0.017737598,Manganese,LB
+37105,0.05404463,Methane,TON
+37017,0.006719462,Benzo[b]Fluoranthene,LB
+37017,0.14150248,Acenaphthylene,LB
+37017,0.0009196132,"Dibenzo[a,h]Anthracene",LB
+37017,0.008046124,Manganese,LB
+37017,0.009093236,Ammonia,TON
+37007,1.3937504,Ethyl Benzene,LB
+37007,0.6581038,Styrene,LB
+37007,2.378216,Propionaldehyde,LB
+37007,0.2673636,Fluoranthene,LB
+37007,0.0007033402,Benzo[k]Fluoranthene,LB
+37007,0.9835708,"2,2,4-Trimethylpentane",LB
+37007,0.455901,Phenanthrene,LB
+37007,1.6578,Carbon Monoxide,TON
+37007,0.003247784,Sulfur Dioxide,TON
+37017,9.296688e-05,Benzo[b]Fluoranthene,LB
+37017,9.005874e-05,Benz[a]Anthracene,LB
+37017,7.908698e-07,Mercury,LB
+37017,1.5121108e-05,Arsenic,LB
+37017,0.0002613486,Acenaphthene,LB
+37017,0.004442875,Volatile Organic Compounds,TON
+37003,0.4427874,Acenaphthene,LB
+37003,0.8968902,Fluorene,LB
+37003,0.1918365,Ammonia,TON
+37003,63.59004,"1,3-Butadiene",LB
+37003,9.098856,Propionaldehyde,LB
+37003,0.6370242,Fluoranthene,LB
+37003,0.002412644,"Dibenzo[a,h]Anthracene",LB
+37059,0.7236852,"1,3-Butadiene",LB
+37059,0.0307888,"Benzo[g,h,i,]Perylene",LB
+37059,0.00618728,Benzo[b]Fluoranthene,LB
+37059,0.00480997,Chrysene,LB
+37059,0.0002655328,"Dibenzo[a,h]Anthracene",LB
+37059,7.905258,Carbon Monoxide,TON
+37059,0.01523287,PM2.5 Primary (Filt + Cond),TON
+37059,0.0004306428,Sulfate Portion of PM2.5-PRI,TON
+37047,1.0097292,Acrolein,LB
+37047,7.671474e-05,Chromium (VI),LB
+37047,122.01882,Acetaldehyde,LB
+37047,6.795033e-05,Nitrate portion of PM2.5-PRI,TON
+37047,0.0126175,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.02675457,PM2.5 Primary (Filt + Cond),TON
+37029,0.3691372,Hexane,LB
+37125,205.3975,Carbon Dioxide,TON
+37125,0.01812906,PM10 Primary (Filt + Cond),TON
+37125,0.001796757,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.00014338348,Mercury,LB
+37125,2.906992,Xylenes (Mixed Isomers),LB
+37125,0.001374317,Benzo[k]Fluoranthene,LB
+37199,2116.514,Formaldehyde,LB
+37199,0.0477706,"Dibenzo[a,h]Anthracene",LB
+37199,3907.916,Ethyl Benzene,LB
+37199,5.832856,Anthracene,LB
+37199,11.321486,Pyrene,LB
+37199,1.684362,Benzo[b]Fluoranthene,LB
+37199,0.04985554,Sulfate Portion of PM2.5-PRI,TON
+37199,1.744024,Benz[a]Anthracene,LB
+37199,37.11012,Phenanthrene,LB
+37199,2.929374,Nitrous Oxide,TON
+37199,2.218543,PM2.5 Primary (Filt + Cond),TON
+37197,96.0461,Propionaldehyde,LB
+37197,0.0004521122,Chromium (VI),LB
+37197,0.008854162,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,1.45428,PM25-Primary from certain diesel engines,TON
+37197,0.002438472,Nitrate portion of PM2.5-PRI,TON
+37195,0.004678664,Benzo[a]Pyrene,LB
+37195,8.782491,Carbon Monoxide,TON
+37195,2.373846,"1,3-Butadiene",LB
+37193,0.00011695932,Chromium (VI),LB
+37193,651.6622,Hexane,LB
+37193,0.014619832,Nickel,LB
+37193,0.2412762,Ammonia,TON
+37187,5.134866e-06,Chromium (VI),LB
+37187,0.06258822,Acenaphthylene,LB
+37187,12.691374,"2,2,4-Trimethylpentane",LB
+37187,0.004693992,Benz[a]Anthracene,LB
+37187,0.01116376,Nitrous Oxide,TON
+37187,0.004065032,Sulfur Dioxide,TON
+37187,0.0002118044,Sulfate Portion of PM2.5-PRI,TON
+37187,0.2805725,Volatile Organic Compounds,TON
+37181,0.0003567612,"Benzo[g,h,i,]Perylene",LB
+37181,2.300127e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.00013308322,Benzo[a]Pyrene,LB
+37181,0.17660954,Benzene,LB
+37189,0.12171464,Manganese,LB
+37189,0.04475846,Nickel,LB
+37189,2.477998,Fluorene,LB
+37189,0.03476226,Sulfur Dioxide,TON
+37189,29.76486,Acrolein,LB
+37189,33.48002,Xylenes (Mixed Isomers),LB
+37185,2.266746,Styrene,LB
+37185,0.15072104,Fluoranthene,LB
+37185,0.0467425,Methane,TON
+37179,173.55364,Acenaphthylene,LB
+37179,9.947446,Benz[a]Anthracene,LB
+37179,21.04683,Nitrous Oxide,TON
+37179,34.95401,Ammonia,TON
+37179,903.6696,Styrene,LB
+37193,3.57781,Ethyl Benzene,LB
+37193,1.6133896,Styrene,LB
+37193,0.0016819842,Benzo[k]Fluoranthene,LB
+37193,0.6202002,Acenaphthylene,LB
+37193,106.9976,Formaldehyde,LB
+37193,0.1425288,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.2083034,"Benzo[g,h,i,]Perylene",LB
+37183,321.7848,Xylenes (Mixed Isomers),LB
+37183,0.07831754,Benzo[a]Pyrene,LB
+37183,0.0017958878,"Dibenzo[a,h]Anthracene",LB
+37183,83.61892,"2,2,4-Trimethylpentane",LB
+37183,0.1043208,Manganese,LB
+37183,0.0744616,Methane,TON
+37183,0.05106383,Organic Carbon portion of PM2.5-PRI,TON
+37085,6.450858,Toluene,LB
+37085,0.2142972,PM10-Primary from certain diesel engines,TON
+37085,0.01898176,Ammonia,TON
+37085,7.390143,Nitrogen Oxides,TON
+37085,0.3021636,Anthracene,LB
+37085,5.2086,Propionaldehyde,LB
+37085,32.64528,Styrene,LB
+37085,0.015885026,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,12.812702,Fluorene,LB
+37085,14379.89,Carbon Dioxide,TON
+37085,2.569344,PM10 Primary (Filt + Cond),TON
+37085,0.1634893,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.1243083,Sulfur Dioxide,TON
+37085,13.10339,Volatile Organic Compounds,TON
+37067,0.534513,Anthracene,LB
+37067,0.06200802,Manganese,LB
+37067,0.4781852,Acenaphthene,LB
+37063,0.000812962,Fluorene,LB
+37063,180.4323,Carbon Dioxide,TON
+37063,0.4965806,Xylenes (Mixed Isomers),LB
+37063,0.003054341,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.0010808602,Pyrene,LB
+37063,0.005268578,Manganese,LB
+37053,1.106957,PM10 Primary (Filt + Cond),TON
+37053,0.8552724,PM2.5 Primary (Filt + Cond),TON
+37053,9.948838,Propionaldehyde,LB
+37053,0.1459698,Benzo[a]Pyrene,LB
+37053,0.011082264,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,1.0440088,Acenaphthylene,LB
+37053,0.001814541,Benzo[a]Pyrene,LB
+37053,1.8105324,Acetaldehyde,LB
+37053,0.0299493,Phenanthrene,LB
+37053,0.002139153,Ammonia,TON
+37053,15.275016,Xylenes (Mixed Isomers),LB
+37053,0.0018032878,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,23.99486,"1,3-Butadiene",LB
+37045,74.85836,Benzene,LB
+37045,0.2832882,Manganese,LB
+37045,87.81272,Naphthalene,LB
+37045,2.11732,PM10-Primary from certain diesel engines,TON
+37045,1.947882,PM25-Primary from certain diesel engines,TON
+37045,35.48679,Nitrogen Oxides,TON
+37045,5.76685,Fluoranthene,LB
+37045,833.1984,Formaldehyde,LB
+37045,0.02298772,"Dibenzo[a,h]Anthracene",LB
+37045,21.94712,"2,2,4-Trimethylpentane",LB
+37047,30568.19,Carbon Dioxide,TON
+37047,3.429332,Pyrene,LB
+37047,3.005358,Fluoranthene,LB
+37047,0.7490068,Benzo[a]Pyrene,LB
+37047,2.062076,Acenaphthene,LB
+37047,4.176658,Fluorene,LB
+37045,13.894758,"1,3-Butadiene",LB
+37045,0.09055585,Methane,TON
+37045,1835.163,Carbon Dioxide,TON
+37045,0.07190214,PM2.5 Primary (Filt + Cond),TON
+37033,0.003886998,Fluoranthene,LB
+37033,6.200944,Xylenes (Mixed Isomers),LB
+37033,0.8283854,Formaldehyde,LB
+37033,0.0018275484,Benzo[a]Pyrene,LB
+37033,2.187288,"2,2,4-Trimethylpentane",LB
+37033,0.0010702648,Benz[a]Anthracene,LB
+37033,2.692774,Benzene,LB
+37033,0.821238,Acetaldehyde,LB
+37033,0.001572399,Nitrous Oxide,TON
+37033,0.001029857,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.001024649,Sulfur Dioxide,TON
+37025,2.478658e-06,Pyrene,LB
+37025,2.811118e-06,Fluorene,LB
+37025,3.557602e-06,Methane,TON
+37025,0.1444041,Carbon Dioxide,TON
+37025,0.0001193702,Nitrogen Oxides,TON
+37029,0.0002524328,Benzo[b]Fluoranthene,LB
+37029,0.2798234,Formaldehyde,LB
+37029,0.0003452516,Manganese,LB
+37175,7.6069e-06,"Dibenzo[a,h]Anthracene",LB
+37175,0.0010265872,Phenanthrene,LB
+37175,0.0006971644,Sulfur Dioxide,TON
+37175,0.01217685,Volatile Organic Compounds,TON
+37175,0.16599932,Hexane,LB
+37175,0.0003457794,Pyrene,LB
+37175,0.0008817138,"Benzo[g,h,i,]Perylene",LB
+37155,0.00326948,Chrysene,LB
+37155,3.531276,"2,2,4-Trimethylpentane",LB
+37155,0.005949054,Nickel,LB
+37105,1.7696022,Hexane,LB
+37105,6.442208,Xylenes (Mixed Isomers),LB
+37177,0.0012933066,Nickel,LB
+37177,0.535379,Styrene,LB
+37177,0.02073628,Anthracene,LB
+37177,0.0355212,Fluoranthene,LB
+37169,3.39984e-05,Benzo[a]Pyrene,LB
+37169,1.750229e-05,Organic Carbon portion of PM2.5-PRI,TON
+37165,1.832708,Ethyl Benzene,LB
+37165,0.8344536,Styrene,LB
+37165,0.00660483,Benzo[b]Fluoranthene,LB
+37165,0.3205372,Acenaphthylene,LB
+37165,0.5898168,Phenanthrene,LB
+37163,12.550306,Xylenes (Mixed Isomers),LB
+37163,4.727804,"2,2,4-Trimethylpentane",LB
+37163,0.4555728,Benz[a]Anthracene,LB
+37163,0.0362163,Manganese,LB
+37163,0.00552637,Arsenic,LB
+37163,0.02378581,Ammonia,TON
+37161,4.6267,"1,3-Butadiene",LB
+37161,10.44876,Toluene,LB
+37161,3.721058e-05,Chromium (VI),LB
+37161,148.41086,Formaldehyde,LB
+37161,0.1454322,PM25-Primary from certain diesel engines,TON
+37161,0.01969689,Ammonia,TON
+37161,0.6522499,Volatile Organic Compounds,TON
+37161,0.06372908,Fluoranthene,LB
+37161,0.012014336,Chrysene,LB
+37161,51.05594,Benzene,LB
+37161,0.0884714,Fluorene,LB
+37159,32.63398,"1,3-Butadiene",LB
+37159,6434.23,Toluene,LB
+37159,0.683134,Anthracene,LB
+37159,3321.43,Xylenes (Mixed Isomers),LB
+37159,0.0002960262,Chromium (VI),LB
+37159,0.05673732,Arsenic,LB
+37159,0.798397,Acenaphthene,LB
+37159,190.7092,Carbon Monoxide,TON
+37159,9.275679,Nitrogen Oxides,TON
+37151,4.636426,Anthracene,LB
+37151,9.109036,Fluoranthene,LB
+37151,2926.36,Formaldehyde,LB
+37151,0.6748778,Benzo[a]Pyrene,LB
+37151,90.2912,"2,2,4-Trimethylpentane",LB
+37151,4.814494,Acenaphthene,LB
+37151,266.4812,Naphthalene,LB
+37151,53.63084,Carbon Monoxide,TON
+37151,0.02628774,Acrolein,LB
+37151,1.5138684,Hexane,LB
+37151,0.0011084288,Benzo[a]Pyrene,LB
+37151,1.537515,Benzene,LB
+37151,0.0016670004,Acenaphthene,LB
+37151,0.009126922,Phenanthrene,LB
+37151,0.9764515,Carbon Monoxide,TON
+37151,3.125302e-06,Nitrate portion of PM2.5-PRI,TON
+37139,10.485642,Propionaldehyde,LB
+37139,11.784124,Xylenes (Mixed Isomers),LB
+37139,1.6429878,Fluoranthene,LB
+37139,0.006864896,Benzo[k]Fluoranthene,LB
+37139,0.006854688,"Dibenzo[a,h]Anthracene",LB
+37139,4.66583,"2,2,4-Trimethylpentane",LB
+37139,0.02716042,Nickel,LB
+37139,2.524098,Phenanthrene,LB
+37139,0.9469949,PM10-Primary from certain diesel engines,TON
+37191,0.04095639,PM2.5 Primary (Filt + Cond),TON
+37191,0.8634651,Volatile Organic Compounds,TON
+37159,4832.582,"1,3-Butadiene",LB
+37159,639.1868,Acrolein,LB
+37159,35.31588,Acenaphthene,LB
+37159,426985.8,Carbon Dioxide,TON
+37159,606.0255,Volatile Organic Compounds,TON
+37159,0.02165624,Chromium (VI),LB
+37159,11141.468,Formaldehyde,LB
+37153,0.06378914,Anthracene,LB
+37153,5.208932e-05,Benzo[k]Fluoranthene,LB
+37153,0.13306384,Acenaphthylene,LB
+37153,1.268011e-05,Mercury,LB
+37153,0.002651374,Arsenic,LB
+37153,0.01944825,Methane,TON
+37153,0.004747596,PM10-Primary from certain diesel engines,TON
+37153,0.0003175112,Nitrous Oxide,TON
+37147,69.9372,Acrolein,LB
+37147,2.105818,Benz[a]Anthracene,LB
+37147,20.32706,Carbon Monoxide,TON
+37147,0.03772121,Nitrous Oxide,TON
+37145,33.62184,"1,3-Butadiene",LB
+37145,5.442766,Pyrene,LB
+37145,4.456296,Fluoranthene,LB
+37145,0.3195034,Chrysene,LB
+37145,110.95786,Naphthalene,LB
+37145,0.2747254,Methane,TON
+37145,0.01530545,Nitrous Oxide,TON
+37145,0.9331318,PM10 Primary (Filt + Cond),TON
+37145,0.7105233,PM2.5 Primary (Filt + Cond),TON
+37145,1.3904528,Styrene,LB
+37145,0.0502313,Anthracene,LB
+37145,1.1704322,Propionaldehyde,LB
+37145,1.49128e-05,Chromium (VI),LB
+37145,0.0449751,"Benzo[g,h,i,]Perylene",LB
+37145,0.016897774,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.2685396,Acenaphthylene,LB
+37145,0.0003882618,"Dibenzo[a,h]Anthracene",LB
+37145,54.77892,"2,2,4-Trimethylpentane",LB
+37145,0.014627638,Benz[a]Anthracene,LB
+37145,61.78088,Benzene,LB
+37145,1.8077,Nitrogen Oxides,TON
+37145,0.02160441,PM2.5 Primary (Filt + Cond),TON
+37145,0.04364442,Acenaphthylene,LB
+37145,8.818954,Benzene,LB
+37145,4.084458e-05,Nickel,LB
+37145,0.01186217,Methane,TON
+37145,0.002609913,PM2.5 Primary (Filt + Cond),TON
+37145,0.0002407748,Sulfur Dioxide,TON
+37141,0.2089262,Toluene,LB
+37141,0.0002044054,Anthracene,LB
+37141,0.0009936818,Pyrene,LB
+37141,81.33898,Formaldehyde,LB
+37141,0.2401268,Benzene,LB
+37141,0.003740336,Manganese,LB
+37135,0.2022642,PM25-Primary from certain diesel engines,TON
+37135,0.133373,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.0005228894,Nitrate portion of PM2.5-PRI,TON
+37135,3.290836,Toluene,LB
+37135,3.467472,Xylenes (Mixed Isomers),LB
+37135,0.05693174,Chrysene,LB
+37135,0.0012268508,"Dibenzo[a,h]Anthracene",LB
+37135,3.877576,Benzene,LB
+37135,18.137258,Acetaldehyde,LB
+37135,1.0667734,Hexane,LB
+37135,9.759294e-08,Chromium (VI),LB
+37135,1.087778,"2,2,4-Trimethylpentane",LB
+37135,0.0014553042,Acenaphthene,LB
+37135,0.0004349393,Nitrous Oxide,TON
+37093,6092.446,Toluene,LB
+37093,2729.612,Xylenes (Mixed Isomers),LB
+37091,9.74095e-06,Anthracene,LB
+37091,6.081232e-06,Nitrous Oxide,TON
+37091,9.82202e-06,PM10 Primary (Filt + Cond),TON
+37083,0.03053866,Manganese,LB
+37083,2.09559,Phenanthrene,LB
+37083,0.05909421,Ammonia,TON
+37083,0.2565383,PM2.5 Primary (Filt + Cond),TON
+37083,0.01466041,Sulfur Dioxide,TON
+37083,0.001731867,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,76.07108,Pyrene,LB
+37081,15.741816,Arsenic,LB
+37081,44.42754,Acenaphthene,LB
+37081,243.1956,Phenanthrene,LB
+37081,1250.832,Nitrogen Oxides,TON
+37081,13.66478,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,2.31846,Styrene,LB
+37079,3.840512,"1,3-Butadiene",LB
+37079,698.995,Toluene,LB
+37079,169.06698,Hexane,LB
+37079,375.0464,Xylenes (Mixed Isomers),LB
+37079,0.1536721,Fluoranthene,LB
+37079,39.76346,Formaldehyde,LB
+37079,0.5694174,Phenanthrene,LB
+37077,9.176246e-05,Chromium (VI),LB
+37077,0.010471982,"Dibenzo[a,h]Anthracene",LB
+37077,2.3496,Fluorene,LB
+37077,0.04881037,Sulfur Dioxide,TON
+37073,1.671185,Ammonia,TON
+37073,0.001698657,Nitrate portion of PM2.5-PRI,TON
+37073,0.6527784,PM2.5 Primary (Filt + Cond),TON
+37073,25.60708,Acrolein,LB
+37073,1.4434804,"Benzo[g,h,i,]Perylene",LB
+37073,1.2191308,Acenaphthene,LB
+37073,0.5824186,Methane,TON
+37069,0.08698082,Styrene,LB
+37069,0.4086538,Toluene,LB
+37069,0.06695934,Pyrene,LB
+37069,0.009829822,Chrysene,LB
+37069,0.1514824,"2,2,4-Trimethylpentane",LB
+37069,0.07806004,Phenanthrene,LB
+37069,0.0207491,PM10 Primary (Filt + Cond),TON
+37059,0.03507842,Ethyl Benzene,LB
+37059,0.00011212948,Chrysene,LB
+37059,0.0003248182,Arsenic,LB
+37059,0.0010982438,Phenanthrene,LB
+37059,0.0005040164,Fluorene,LB
+37049,1.039547,Pyrene,LB
+37049,0.02668168,Ammonia,TON
+37049,0.07724074,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.3029624,PM2.5 Primary (Filt + Cond),TON
+37049,0.7965753,Volatile Organic Compounds,TON
+37047,2.07964e-06,Benzo[k]Fluoranthene,LB
+37047,3.631384e-06,Benzo[a]Pyrene,LB
+37047,0.0018214212,"2,2,4-Trimethylpentane",LB
+37047,8.391931e-07,Nitrous Oxide,TON
+37047,5.523118e-05,Acrolein,LB
+37047,0.006227536,Xylenes (Mixed Isomers),LB
+37047,2.07964e-06,Benzo[b]Fluoranthene,LB
+37047,5.051368e-06,Fluoranthene,LB
+37043,2.76993,Xylenes (Mixed Isomers),LB
+37043,0.0004392306,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.0003208702,Benzo[b]Fluoranthene,LB
+37043,0.5093959,Carbon Monoxide,TON
+37043,0.05548758,Nitrogen Oxides,TON
+37043,0.000192037,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,7.718717,Carbon Dioxide,TON
+37047,0.06969663,Nitrogen Oxides,TON
+37047,3.10348e-05,Sulfate Portion of PM2.5-PRI,TON
+37047,0.4016412,"1,3-Butadiene",LB
+37047,0.0008894896,Benzo[b]Fluoranthene,LB
+37047,2.8356e-05,"Dibenzo[a,h]Anthracene",LB
+37047,5.569024,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,4.359616,Benzo[k]Fluoranthene,LB
+37047,2.590924,Manganese,LB
+37047,5507.256,Acetaldehyde,LB
+37047,203035,Carbon Dioxide,TON
+37041,0.0007112828,Benz[a]Anthracene,LB
+37041,6.63964e-06,Mercury,LB
+37041,0.005705582,Fluorene,LB
+37041,0.00151063,Methane,TON
+37041,0.0009405911,Ammonia,TON
+37041,0.0004025072,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.04347138,Volatile Organic Compounds,TON
+37041,0.000685382,Benzo[k]Fluoranthene,LB
+37041,0.000705584,Chrysene,LB
+37037,2383.354,Hexane,LB
+37037,3152.152,"2,2,4-Trimethylpentane",LB
+37033,0.05235496,"1,3-Butadiene",LB
+37033,0.00039291,Acenaphthene,LB
+37033,5.927131e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.006471998,Volatile Organic Compounds,TON
+37141,10.386488,Ethyl Benzene,LB
+37141,70.8021,Toluene,LB
+37141,0.286925,Propionaldehyde,LB
+37141,0.006419754,Benzo[b]Fluoranthene,LB
+37141,0.01029221,Benzo[a]Pyrene,LB
+37141,0.0005031328,Nickel,LB
+37141,0.0060645,Ammonia,TON
+37141,0.003590328,Sulfur Dioxide,TON
+37141,0.14569906,Styrene,LB
+37141,0.11760154,Propionaldehyde,LB
+37141,0.00105103,Arsenic,LB
+37137,3.031728,Benzene,LB
+37125,0.0839603,Organic Carbon portion of PM2.5-PRI,TON
+37125,2.335434,Styrene,LB
+37125,1.1788746,Pyrene,LB
+37125,0.004214362,"Benzo[g,h,i,]Perylene",LB
+37125,0.904303,Acenaphthylene,LB
+37125,0.0500492,Manganese,LB
+37125,73.55214,Acetaldehyde,LB
+37125,1.0209072,Fluorene,LB
+37107,34.50754,Benzene,LB
+37107,12.066714,Ethyl Benzene,LB
+37107,12.06984,"1,3-Butadiene",LB
+37107,1.226283,Acenaphthene,LB
+37107,10.29397,Carbon Monoxide,TON
+37107,5810.338,Carbon Dioxide,TON
+37107,0.04027338,Sulfate Portion of PM2.5-PRI,TON
+37107,14.634452,Ethyl Benzene,LB
+37107,2.907274,"1,3-Butadiene",LB
+37107,0.0472325,Pyrene,LB
+37107,0.02555372,"Benzo[g,h,i,]Perylene",LB
+37107,9.125354,Formaldehyde,LB
+37107,0.009653632,Benzo[a]Pyrene,LB
+37107,0.0002203262,"Dibenzo[a,h]Anthracene",LB
+37107,14.911604,"2,2,4-Trimethylpentane",LB
+37107,33.4093,Benzene,LB
+37107,0.06809316,PM10 Primary (Filt + Cond),TON
+37107,0.0005035795,Sulfate Portion of PM2.5-PRI,TON
+37087,10.15991,Styrene,LB
+37087,0.03362228,"Benzo[g,h,i,]Perylene",LB
+37087,0.5536424,Benzo[a]Pyrene,LB
+37087,0.1058384,Nickel,LB
+37087,9.279078,Phenanthrene,LB
+37087,10821.08,Carbon Dioxide,TON
+37087,0.7907931,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.2665996,Ammonia,TON
+37073,0.002311058,"Dibenzo[a,h]Anthracene",LB
+37073,4.215776e-05,Mercury,LB
+37073,0.2842798,Acenaphthene,LB
+37073,0.3798367,PM25-Primary from certain diesel engines,TON
+37073,10.22906,Nitrogen Oxides,TON
+37081,8.334718,Styrene,LB
+37081,0.0002000604,Chromium (VI),LB
+37081,0.15584132,Benzo[k]Fluoranthene,LB
+37081,0.03834454,Arsenic,LB
+37081,171.7954,Carbon Monoxide,TON
+37081,8238.5,Carbon Dioxide,TON
+37053,0.1706928,Benzo[a]Pyrene,LB
+37053,0.05590552,Nickel,LB
+37053,1.7764442,Fluorene,LB
+37053,1.3479384,Acenaphthylene,LB
+37067,1.231541,Acenaphthylene,LB
+37067,0.004328766,"Dibenzo[a,h]Anthracene",LB
+37067,0.001661041,Mercury,LB
+37067,0.5461632,Fluorene,LB
+37067,6617.198,Carbon Dioxide,TON
+37067,0.2329496,PM2.5 Primary (Filt + Cond),TON
+37061,2.956042,Naphthalene,LB
+37061,777.9441,Carbon Dioxide,TON
+37061,0.1402291,PM10-Primary from certain diesel engines,TON
+37061,0.09001,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.006684744,Sulfur Dioxide,TON
+37061,0.6866596,Hexane,LB
+37061,0.0010962884,"Benzo[g,h,i,]Perylene",LB
+37061,0.0013324404,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.017530266,Benzo[a]Pyrene,LB
+37043,3.038034,Ethyl Benzene,LB
+37043,0.494533,Fluoranthene,LB
+37043,94.91726,Formaldehyde,LB
+37039,2.98122,Carbon Monoxide,TON
+37039,0.00288672,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.006950811,PM2.5 Primary (Filt + Cond),TON
+37039,0.002232078,Sulfur Dioxide,TON
+37039,0.0009831596,Sulfate Portion of PM2.5-PRI,TON
+37039,3.201348,Xylenes (Mixed Isomers),LB
+37039,0.00011326642,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.1756194,Acenaphthylene,LB
+37039,0.008329846,Chrysene,LB
+37039,37.6677,Formaldehyde,LB
+37039,0.01886434,Benz[a]Anthracene,LB
+37047,4.362588,Ethyl Benzene,LB
+37047,0.16286188,Styrene,LB
+37047,0.01633162,"Benzo[g,h,i,]Perylene",LB
+37047,0.010741616,Fluoranthene,LB
+37047,7.43483,Benzene,LB
+37047,5.417964e-05,Mercury,LB
+37047,2.132964,Acetaldehyde,LB
+37047,0.014170216,Fluorene,LB
+37047,0.3637278,Naphthalene,LB
+37039,10.905598,Toluene,LB
+37039,1.715548e-07,Chromium (VI),LB
+37039,0.9808046,Formaldehyde,LB
+37039,0.0008911908,Benz[a]Anthracene,LB
+37039,0.0012242,PM2.5 Primary (Filt + Cond),TON
+37039,0.000272698,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,2.65572e-05,Sulfate Portion of PM2.5-PRI,TON
+37039,6.084159,Volatile Organic Compounds,TON
+37039,213.8952,Ethyl Benzene,LB
+37039,53.16186,"1,3-Butadiene",LB
+37039,250.7648,"2,2,4-Trimethylpentane",LB
+37039,0.3715532,Acenaphthene,LB
+37037,0.2630464,Acrolein,LB
+37037,0.0760857,Acenaphthylene,LB
+37037,0.00016972248,Arsenic,LB
+37037,5.38527,Acetaldehyde,LB
+37037,5.568108,Carbon Monoxide,TON
+37037,35.76798,Carbon Dioxide,TON
+37035,0.7152724,Ethyl Benzene,LB
+37035,0.701163,"1,3-Butadiene",LB
+37035,0.5358196,"2,2,4-Trimethylpentane",LB
+37035,2.032038,Benzene,LB
+37035,0.004738432,Manganese,LB
+37035,0.07116036,Acenaphthene,LB
+37035,0.007678922,Methane,TON
+37035,0.008973319,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,1.501471,"1,3-Butadiene",LB
+37031,0.002523438,Chrysene,LB
+37031,0.02341288,Fluorene,LB
+37025,1568.444,Carbon Dioxide,TON
+37025,0.05868747,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.2710098,PM2.5 Primary (Filt + Cond),TON
+37025,0.07216602,Chrysene,LB
+37199,1.2242952,Pyrene,LB
+37193,3.240637,Carbon Dioxide,TON
+37193,1.873094e-06,Nitrate portion of PM2.5-PRI,TON
+37193,0.03173428,Nitrogen Oxides,TON
+37193,0.0017989392,"Benzo[g,h,i,]Perylene",LB
+37195,8.990796,"2,2,4-Trimethylpentane",LB
+37195,31.86084,Benzene,LB
+37195,0.00010283724,Chromium (VI),LB
+37195,0.09816681,Ammonia,TON
+37195,1.8625982,Styrene,LB
+37195,1.6204358,Acrolein,LB
+37195,0.13994424,Pyrene,LB
+37195,4.18282,Naphthalene,LB
+37195,0.04064504,Sulfur Dioxide,TON
+37195,0.00219968,Sulfate Portion of PM2.5-PRI,TON
+37189,0.00658209,Ethyl Benzene,LB
+37189,1.7666726e-05,"Benzo[g,h,i,]Perylene",LB
+37189,0.003567018,Formaldehyde,LB
+37189,0.011382548,Benzene,LB
+37189,0.09388997,Carbon Dioxide,TON
+37189,5.570783e-06,Nitrous Oxide,TON
+37189,2.497844e-06,Ammonia,TON
+37189,1.822194e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,1.917772e-07,Sulfate Portion of PM2.5-PRI,TON
+37019,2708.022,Xylenes (Mixed Isomers),LB
+37019,0.2466539,PM2.5 Primary (Filt + Cond),TON
+37015,3.715776e-05,Mercury,LB
+37015,0.6200642,Acenaphthene,LB
+37015,2.71538,Styrene,LB
+37015,9.901842,Propionaldehyde,LB
+37015,0.005918802,Benzo[k]Fluoranthene,LB
+37003,0.012975512,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,2539.846,Carbon Dioxide,TON
+37003,0.02228433,Sulfur Dioxide,TON
+37023,43.93262,Styrene,LB
+37023,1.1251804,Chrysene,LB
+37023,320.4362,Naphthalene,LB
+37023,1.741867,Elemental Carbon portion of PM2.5-PRI,TON
+37023,2.554312,PM2.5 Primary (Filt + Cond),TON
+37023,0.2375787,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.07130611,Sulfate Portion of PM2.5-PRI,TON
+37003,12.56844,"2,2,4-Trimethylpentane",LB
+37003,0.002171736,Benz[a]Anthracene,LB
+37003,0.0006225932,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.1692478,Acrolein,LB
+37003,55.71084,Toluene,LB
+37003,14.9372,Hexane,LB
+37003,0.002401908,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.013087788,Fluoranthene,LB
+37003,0.0009574213,Sulfur Dioxide,TON
+37001,96.37246,Hexane,LB
+37039,0.0002967254,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.08487092,Ethyl Benzene,LB
+37039,0.00106805,Ammonia,TON
+37039,1.108629e-05,Sulfate Portion of PM2.5-PRI,TON
+37035,0.00011222028,Mercury,LB
+37035,0.002084534,Fluorene,LB
+37035,0.002853451,Nitrous Oxide,TON
+37035,1.00471e-05,Nitrate portion of PM2.5-PRI,TON
+37037,0.0005248184,Mercury,LB
+37037,4.727798e-05,Nitrate portion of PM2.5-PRI,TON
+37037,0.7937215,Nitrogen Oxides,TON
+37037,0.008631634,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.012363914,Pyrene,LB
+37037,13.026858,Xylenes (Mixed Isomers),LB
+37037,0.013853644,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,12.72394,Formaldehyde,LB
+37165,0.0005029486,Pyrene,LB
+37165,0.0006363744,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.0002488412,Chrysene,LB
+37165,0.001459091,Sulfur Dioxide,TON
+37147,32.95356,Xylenes (Mixed Isomers),LB
+37147,0.02700614,Fluoranthene,LB
+37147,0.07387348,Sulfur Dioxide,TON
+37147,0.001666322,Sulfate Portion of PM2.5-PRI,TON
+37147,0.03308282,Benzo[a]Pyrene,LB
+37147,17.48508,"2,2,4-Trimethylpentane",LB
+37147,0.03167784,Fluorene,LB
+37147,0.02252726,Organic Carbon portion of PM2.5-PRI,TON
+37119,7.546448,"1,3-Butadiene",LB
+37119,68.3581,Hexane,LB
+37119,0.06280776,Anthracene,LB
+37119,0.18981398,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,75.0722,"2,2,4-Trimethylpentane",LB
+37119,193.5835,Benzene,LB
+37119,0.378739,Phenanthrene,LB
+37119,3.407618,Naphthalene,LB
+37119,0.1810565,Nitrous Oxide,TON
+37119,8.685289,Nitrogen Oxides,TON
+37119,0.155803,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.0013935854,Manganese,LB
+37091,87.44008,Carbon Dioxide,TON
+37091,0.0003089249,Elemental Carbon portion of PM2.5-PRI,TON
+37091,4.614178e-05,Sulfate Portion of PM2.5-PRI,TON
+37091,0.721852,Hexane,LB
+37091,0.0011987946,Pyrene,LB
+37091,0.000614573,Benzo[k]Fluoranthene,LB
+37173,3.373548,Hexane,LB
+37173,0.004297418,"Dibenzo[a,h]Anthracene",LB
+37173,2.847198e-05,Mercury,LB
+37173,0.4231923,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.001811964,Nitrate portion of PM2.5-PRI,TON
+37173,0.1482486,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.0185758,Sulfur Dioxide,TON
+37173,0.01206374,Sulfate Portion of PM2.5-PRI,TON
+37193,0.018608672,"Benzo[g,h,i,]Perylene",LB
+37193,0.08416656,Benzo[b]Fluoranthene,LB
+37193,0.012029706,Benzo[k]Fluoranthene,LB
+37193,901.5688,Formaldehyde,LB
+37193,73.1309,Nitrogen Oxides,TON
+37193,0.2361595,Sulfur Dioxide,TON
+37185,2.45539,Pyrene,LB
+37185,651.8048,Formaldehyde,LB
+37185,20.123,"2,2,4-Trimethylpentane",LB
+37195,0.00455511,Naphthalene,LB
+37195,5.924469e-05,Methane,TON
+37195,6.405137,Carbon Dioxide,TON
+37195,2.2323e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.0011836976,Propionaldehyde,LB
+37195,9.510658e-08,Chromium (VI),LB
+37195,7.58979e-05,Benzo[k]Fluoranthene,LB
+37195,0.03123874,Formaldehyde,LB
+37189,0.965586,Ethyl Benzene,LB
+37189,0.0016121386,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.14333966,Acenaphthylene,LB
+37189,8.9915e-06,Mercury,LB
+37189,0.009425858,Ammonia,TON
+37189,0.1068389,PM10 Primary (Filt + Cond),TON
+37187,0.001278462,PM10 Primary (Filt + Cond),TON
+37187,9.513232e-05,Sulfur Dioxide,TON
+37187,0.0006463926,Benzo[b]Fluoranthene,LB
+37187,1.8944446,"2,2,4-Trimethylpentane",LB
+37179,99.08494,Acrolein,LB
+37179,11.518972,Pyrene,LB
+37179,0.0003235206,Chromium (VI),LB
+37179,0.5413422,Manganese,LB
+37179,3.652118,Acenaphthene,LB
+37179,0.9308999,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.4077611,Ammonia,TON
+37023,0.2468958,Pyrene,LB
+37023,5.580694e-05,Chromium (VI),LB
+37023,0.05305926,Chrysene,LB
+37023,0.01069661,Arsenic,LB
+37023,0.1138517,Methane,TON
+37023,61.33213,Carbon Monoxide,TON
+37199,24.83236,Hexane,LB
+37199,0.02206006,Anthracene,LB
+37199,0.5143268,Propionaldehyde,LB
+37199,0.1176446,Acenaphthylene,LB
+37199,0.1402202,Phenanthrene,LB
+37199,1.3415512,Naphthalene,LB
+37199,0.02490001,Methane,TON
+37199,10.65489,Carbon Monoxide,TON
+37199,0.8108602,Nitrogen Oxides,TON
+37197,0.0844343,Benzo[b]Fluoranthene,LB
+37197,561.6494,Formaldehyde,LB
+37197,42.43422,Toluene,LB
+37197,14.09692,Hexane,LB
+37197,4.448234,Pyrene,LB
+37197,0.0002487922,Chromium (VI),LB
+37197,0.18145506,Manganese,LB
+37197,1.6488492,Acenaphthene,LB
+37197,1.755884,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.201238,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.7723948,"2,2,4-Trimethylpentane",LB
+37195,0.014602676,Manganese,LB
+37195,0.002737886,Arsenic,LB
+37195,0.08531712,Acenaphthene,LB
+37195,0.1332074,PM25-Primary from certain diesel engines,TON
+37193,0.2066796,Styrene,LB
+37193,0.8568902,"1,3-Butadiene",LB
+37193,0.03293204,Acenaphthylene,LB
+37193,92.52342,Acetaldehyde,LB
+37193,715.0548,Carbon Dioxide,TON
+37193,0.05453676,PM10 Primary (Filt + Cond),TON
+37193,0.02173848,Sulfur Dioxide,TON
+37185,15.881618,Ethyl Benzene,LB
+37185,0.4786498,Acrolein,LB
+37185,0.04410738,Pyrene,LB
+37185,58.66004,Xylenes (Mixed Isomers),LB
+37185,0.013454052,Benzo[b]Fluoranthene,LB
+37185,0.002878968,Arsenic,LB
+37185,11.98877,Carbon Monoxide,TON
+37185,0.01266042,Organic Carbon portion of PM2.5-PRI,TON
+37197,1.4513966,"1,3-Butadiene",LB
+37197,0.009556308,Anthracene,LB
+37197,3.97049e-06,Chromium (VI),LB
+37197,0.0001409243,"Dibenzo[a,h]Anthracene",LB
+37197,0.06046014,Phenanthrene,LB
+37197,0.02243834,Fluorene,LB
+37197,0.575464,Naphthalene,LB
+37183,0.12767568,"Benzo[g,h,i,]Perylene",LB
+37183,0.04797118,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.02928532,Benz[a]Anthracene,LB
+37183,0.02244436,Manganese,LB
+37183,0.004334164,Arsenic,LB
+37183,25.06358,Acetaldehyde,LB
+37183,0.05492091,Methane,TON
+37183,0.01828409,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,53.66436,Ethyl Benzene,LB
+37017,0.1460772,Acrolein,LB
+37017,0.2756603,Nitrogen Oxides,TON
+37017,0.001611238,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.002967513,Sulfur Dioxide,TON
+37015,0.0085326,Manganese,LB
+37015,1.319395,Nitrogen Oxides,TON
+37015,0.04330631,PM10 Primary (Filt + Cond),TON
+37015,0.004896163,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,1.423237,Nitrogen Oxides,TON
+37003,0.007221528,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.004544782,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,8.313056,"1,3-Butadiene",LB
+37003,0.013816208,Chrysene,LB
+37003,0.0003379682,"Dibenzo[a,h]Anthracene",LB
+37003,57.30446,"2,2,4-Trimethylpentane",LB
+37003,21.14877,Carbon Monoxide,TON
+37003,9.51096e-06,Nitrate portion of PM2.5-PRI,TON
+37003,0.001970288,Sulfur Dioxide,TON
+37003,0.0001082415,Sulfate Portion of PM2.5-PRI,TON
+37057,1.4424054,Formaldehyde,LB
+37057,0.787056,"2,2,4-Trimethylpentane",LB
+37057,0.0012495326,Arsenic,LB
+37057,0.4235928,Ethyl Benzene,LB
+37057,0.0014607466,Pyrene,LB
+37057,113.512,Carbon Dioxide,TON
+37007,0.000354825,Manganese,LB
+37007,0.0002241726,Arsenic,LB
+37007,0.06098418,Ethyl Benzene,LB
+37007,0.00020828,Pyrene,LB
+37007,0.0006576668,"Benzo[g,h,i,]Perylene",LB
+37007,0.0001289189,Benzo[b]Fluoranthene,LB
+37165,1.2354566,"2,2,4-Trimethylpentane",LB
+37165,0.009418463,Methane,TON
+37165,0.07725862,Volatile Organic Compounds,TON
+37159,2.084792,Xylenes (Mixed Isomers),LB
+37159,0.002515626,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,12.164116,Acetaldehyde,LB
+37159,0.008956631,Methane,TON
+37159,1.342276,Carbon Monoxide,TON
+37139,0.03453442,"1,3-Butadiene",LB
+37139,0.02752258,Acrolein,LB
+37139,0.0002011704,Chrysene,LB
+37139,0.0007879425,PM2.5 Primary (Filt + Cond),TON
+37175,2.105806,Hexane,LB
+37175,0.04646068,Propionaldehyde,LB
+37175,0.0008074322,Benzo[a]Pyrene,LB
+37175,1.583266,Carbon Monoxide,TON
+37175,3.236185e-06,Nitrate portion of PM2.5-PRI,TON
+37175,0.001408194,PM2.5 Primary (Filt + Cond),TON
+37173,0.4081776,Toluene,LB
+37173,0.08630538,"2,2,4-Trimethylpentane",LB
+37173,5.311546e-06,Nickel,LB
+37173,0.0002690904,Fluorene,LB
+37173,0.00690518,Naphthalene,LB
+37173,8.800981e-05,Methane,TON
+37173,7.21077e-05,Ammonia,TON
+37173,0.00684821,Nitrogen Oxides,TON
+37171,0.4101342,Ethyl Benzene,LB
+37171,0.9649756,Acrolein,LB
+37171,0.311693,Hexane,LB
+37171,0.8789946,Xylenes (Mixed Isomers),LB
+37171,0.08381946,Fluoranthene,LB
+37171,2.29211e-06,Mercury,LB
+37171,0.0015768622,Nickel,LB
+37171,0.08183192,Fluorene,LB
+37171,0.005578518,Methane,TON
+37171,0.02732075,PM25-Primary from certain diesel engines,TON
+37171,0.5781837,Nitrogen Oxides,TON
+37171,0.004204698,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,1.7333088,Naphthalene,LB
+37159,0.007312324,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.001238873,Sulfur Dioxide,TON
+37159,0.00375976,Benzo[b]Fluoranthene,LB
+37159,0.0870555,Acenaphthylene,LB
+37159,15.81847,Formaldehyde,LB
+37161,0.11233948,Propionaldehyde,LB
+37161,0.003666064,Benzo[a]Pyrene,LB
+37151,0.16540112,Styrene,LB
+37151,3.379656e-07,Chromium (VI),LB
+37151,0.008220188,"Benzo[g,h,i,]Perylene",LB
+37151,6.26671,Benzene,LB
+37151,0.3539924,Naphthalene,LB
+37143,0.002761056,"Dibenzo[a,h]Anthracene",LB
+37143,1.4016532,Phenanthrene,LB
+37143,0.8875542,PM10 Primary (Filt + Cond),TON
+37143,0.6881437,Volatile Organic Compounds,TON
+37143,11.559638,Acetaldehyde,LB
+37143,0.007815897,Methane,TON
+37143,306.8383,Carbon Dioxide,TON
+37143,0.000690946,Nitrous Oxide,TON
+37143,0.006753849,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,2.112344,Acrolein,LB
+37143,0.08327906,Anthracene,LB
+37143,10.401928,"1,3-Butadiene",LB
+37143,1.665728,Pyrene,LB
+37143,19.70156,Xylenes (Mixed Isomers),LB
+37143,0.0008707754,Benzo[k]Fluoranthene,LB
+37143,0.0209297,Benzo[a]Pyrene,LB
+37141,68.53364,Naphthalene,LB
+37141,2.905778,PM10-Primary from certain diesel engines,TON
+37141,0.3649707,Ammonia,TON
+37141,0.006333385,Nitrate portion of PM2.5-PRI,TON
+37141,0.2127924,Sulfur Dioxide,TON
+37141,18.266048,"1,3-Butadiene",LB
+37139,47.04788,Toluene,LB
+37139,0.003044014,"Dibenzo[a,h]Anthracene",LB
+37139,0.09042668,Manganese,LB
+37139,2.458104,Acenaphthene,LB
+37139,0.5974775,PM2.5 Primary (Filt + Cond),TON
+37135,0.0413894,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,1.7633468,Benz[a]Anthracene,LB
+37135,0.03297118,Arsenic,LB
+37135,4.842688,Fluorene,LB
+37135,71.65618,Naphthalene,LB
+37135,0.7778587,Organic Carbon portion of PM2.5-PRI,TON
+37143,1913.7618,Ethyl Benzene,LB
+37143,462.6698,"1,3-Butadiene",LB
+37143,7046.114,Xylenes (Mixed Isomers),LB
+37143,0.9742974,Benzo[a]Pyrene,LB
+37143,0.0206738,Mercury,LB
+37117,2.998996,Pyrene,LB
+37117,0.003384412,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,3.136844,Acenaphthylene,LB
+37117,0.04453484,Benzo[a]Pyrene,LB
+37117,0.1144822,Ammonia,TON
+37117,0.0008934915,Nitrate portion of PM2.5-PRI,TON
+37117,0.01497273,Sulfate Portion of PM2.5-PRI,TON
+37117,7.763766e-05,Acenaphthylene,LB
+37117,9.297748e-05,Phenanthrene,LB
+37117,3.604331e-06,Sulfur Dioxide,TON
+37119,2.275808,Styrene,LB
+37119,1.359488,Fluoranthene,LB
+37119,0.00589567,Benzo[k]Fluoranthene,LB
+37119,0.9013726,Acenaphthylene,LB
+37119,218.5018,Formaldehyde,LB
+37119,6.10752,"2,2,4-Trimethylpentane",LB
+37119,0.2265576,Manganese,LB
+37119,0.02962942,Nickel,LB
+37119,88.08018,Acetaldehyde,LB
+37119,7739.85,Carbon Dioxide,TON
+37119,0.2273777,Organic Carbon portion of PM2.5-PRI,TON
+37119,0.1609991,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,6.392846,Xylenes (Mixed Isomers),LB
+37113,0.5032856,Acenaphthylene,LB
+37113,0.2132288,Benz[a]Anthracene,LB
+37113,1.1028576,Phenanthrene,LB
+37113,0.01023706,Ammonia,TON
+37105,0.00013078594,Anthracene,LB
+37105,1.6836902e-05,"Benzo[g,h,i,]Perylene",LB
+37105,46.70128,Formaldehyde,LB
+37105,0.001734196,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.005361608,PM2.5 Primary (Filt + Cond),TON
+37105,0.003098945,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,6.827712e-05,Sulfate Portion of PM2.5-PRI,TON
+37105,1.8009386e-06,Chromium (VI),LB
+37105,0.0019250604,Benzo[b]Fluoranthene,LB
+37105,0.05398768,Acenaphthylene,LB
+37105,0.11362076,Phenanthrene,LB
+37105,0.009371978,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.4076493,Nitrogen Oxides,TON
+37105,0.3086348,Ethyl Benzene,LB
+37105,1.5829372,"1,3-Butadiene",LB
+37105,0.02788192,Pyrene,LB
+37105,5.7071e-06,Chromium (VI),LB
+37105,0.007375058,Benzo[a]Pyrene,LB
+37105,0.0007133868,Nickel,LB
+37105,0.004630459,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.04327114,Phenanthrene,LB
+37093,0.08834916,Hexane,LB
+37093,0.0005223799,Ammonia,TON
+37089,0.008904294,Propionaldehyde,LB
+37089,0.0001764974,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,1.8773496e-07,Mercury,LB
+37089,0.007771174,Nitrogen Oxides,TON
+37089,68.70646,Xylenes (Mixed Isomers),LB
+37073,0.06864935,Ammonia,TON
+37073,0.01771993,Sulfur Dioxide,TON
+37073,0.009199711,Sulfate Portion of PM2.5-PRI,TON
+37073,5.504854,Styrene,LB
+37073,0.004854432,"Benzo[g,h,i,]Perylene",LB
+37073,0.0011313532,"Dibenzo[a,h]Anthracene",LB
+37073,8.9078,"2,2,4-Trimethylpentane",LB
+37073,6.92874e-05,Mercury,LB
+37085,11.69219,Propionaldehyde,LB
+37085,16.221752,Xylenes (Mixed Isomers),LB
+37085,1.204338,Acenaphthylene,LB
+37085,227.0012,Formaldehyde,LB
+37085,0.5349956,Benz[a]Anthracene,LB
+37085,3.582256e-05,Mercury,LB
+37085,0.1061499,Methane,TON
+37085,0.03261195,Ammonia,TON
+37085,0.01395352,Sulfur Dioxide,TON
+37079,0.0012257378,Phenanthrene,LB
+37079,1.668916e-05,Ammonia,TON
+37079,0.00019298702,Anthracene,LB
+37079,1.2206658e-08,Chromium (VI),LB
+37079,0.000228932,"Benzo[g,h,i,]Perylene",LB
+37079,8.600892e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,6.388252e-05,Benzo[b]Fluoranthene,LB
+37079,6.388252e-05,Benzo[k]Fluoranthene,LB
+37079,0.18601982,"2,2,4-Trimethylpentane",LB
+37079,0.2076034,Benzene,LB
+37079,1.0616734e-05,Manganese,LB
+37067,0.0002279356,Pyrene,LB
+37067,1.248513e-08,Chromium (VI),LB
+37067,0.0004085036,Phenanthrene,LB
+37067,0.001058203,Ammonia,TON
+37063,0.006121904,Nitrate portion of PM2.5-PRI,TON
+37063,0.4913538,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.2196939,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,14.815118,Ethyl Benzene,LB
+37063,4.66062,Pyrene,LB
+37063,0.0266034,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,3.517774,Fluoranthene,LB
+37063,8.13995e-05,Mercury,LB
+37063,108.04306,Xylenes (Mixed Isomers),LB
+37063,0.0004317976,Chromium (VI),LB
+37063,7.906614,Fluoranthene,LB
+37063,1.3224174,Benz[a]Anthracene,LB
+37063,0.247802,Nickel,LB
+37063,15.598404,Phenanthrene,LB
+37063,11110.93,Carbon Dioxide,TON
+37063,36.71607,Nitrogen Oxides,TON
+37063,1.585613,PM2.5 Primary (Filt + Cond),TON
+37063,10.23106,Volatile Organic Compounds,TON
+37063,0.012217132,Chrysene,LB
+37063,2.74164,"1,3-Butadiene",LB
+37063,27.953,Hexane,LB
+37063,0.02633954,Acenaphthene,LB
+37063,7.519534e-05,Nitrate portion of PM2.5-PRI,TON
+37067,5.02438,"1,3-Butadiene",LB
+37067,0.8863446,Acrolein,LB
+37067,0.03894714,Anthracene,LB
+37067,0.02869192,Benzo[a]Pyrene,LB
+37067,0.0006616,"Dibenzo[a,h]Anthracene",LB
+37067,0.02107004,Ammonia,TON
+37067,0.08473907,PM10 Primary (Filt + Cond),TON
+37065,0.02153677,Sulfate Portion of PM2.5-PRI,TON
+37065,28.0892,"1,3-Butadiene",LB
+37065,0.02977116,Benzo[b]Fluoranthene,LB
+37065,0.00408796,"Dibenzo[a,h]Anthracene",LB
+37065,78.59986,Benzene,LB
+37065,0.00014633538,Mercury,LB
+37065,0.1699742,Methane,TON
+37063,1625.9672,Ethyl Benzene,LB
+37063,4.076376,Fluoranthene,LB
+37063,0.8328218,Chrysene,LB
+37063,1949.949,"2,2,4-Trimethylpentane",LB
+37063,0.863805,Benz[a]Anthracene,LB
+37063,15.083624,Phenanthrene,LB
+37063,5.614382,Fluorene,LB
+37063,4.754473,PM10 Primary (Filt + Cond),TON
+37059,2545.39,"2,2,4-Trimethylpentane",LB
+37047,0.1980436,Styrene,LB
+37047,0.0007330258,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.009656518,Benzo[a]Pyrene,LB
+37047,0.0003936898,"Dibenzo[a,h]Anthracene",LB
+37047,0.04540908,Acenaphthene,LB
+37047,0.2726331,Carbon Monoxide,TON
+37047,0.001226222,Sulfur Dioxide,TON
+37047,0.001030337,Sulfate Portion of PM2.5-PRI,TON
+37199,14.142964,Xylenes (Mixed Isomers),LB
+37199,0.03311826,Benzo[b]Fluoranthene,LB
+37199,0.1094041,Methane,TON
+37199,0.4052476,PM10-Primary from certain diesel engines,TON
+37199,0.01445888,Sulfur Dioxide,TON
+37195,10.888616,Ethyl Benzene,LB
+37195,0.7744092,Naphthalene,LB
+37195,7.352858,Carbon Monoxide,TON
+37195,183.4242,Carbon Dioxide,TON
+37195,0.006191157,Ammonia,TON
+37195,3.964597e-05,Nitrate portion of PM2.5-PRI,TON
+37195,0.007436093,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.3502841,Volatile Organic Compounds,TON
+37183,0.04962982,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.02719518,Benzo[k]Fluoranthene,LB
+37183,0.02698934,"Dibenzo[a,h]Anthracene",LB
+37183,4.526658,Benz[a]Anthracene,LB
+37183,53.85496,Phenanthrene,LB
+37181,0.1280329,Volatile Organic Compounds,TON
+37181,7.71009e-05,"Dibenzo[a,h]Anthracene",LB
+37181,5.66786,"2,2,4-Trimethylpentane",LB
+37181,0.002297002,Benz[a]Anthracene,LB
+37179,14.195952,Propionaldehyde,LB
+37179,0.1490358,Benz[a]Anthracene,LB
+37179,0.05117724,Nickel,LB
+37179,126.10014,Acetaldehyde,LB
+37179,0.2237207,Methane,TON
+37179,0.02065129,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,1.583976,Volatile Organic Compounds,TON
+37019,0.017742072,"Dibenzo[a,h]Anthracene",LB
+37019,21.60726,"2,2,4-Trimethylpentane",LB
+37019,1.434874,Benz[a]Anthracene,LB
+37019,19.909256,Hexane,LB
+37019,0.03394525,Nitrous Oxide,TON
+37019,3.143069,PM2.5 Primary (Filt + Cond),TON
+37019,4.032201,Volatile Organic Compounds,TON
+37013,9.106594,Hexane,LB
+37013,0.07394504,Benzo[b]Fluoranthene,LB
+37013,0.1067908,Manganese,LB
+37013,0.0443161,Nickel,LB
+37019,37.69534,Fluoranthene,LB
+37019,8099.87,Formaldehyde,LB
+37019,19583.32,"2,2,4-Trimethylpentane",LB
+37019,15782.96,Ethyl Benzene,LB
+37019,486.0318,Acrolein,LB
+37019,25.95294,Acenaphthene,LB
+37019,52.57,Fluorene,LB
+37019,1347.3764,Naphthalene,LB
+37011,0.00018395866,Benzo[k]Fluoranthene,LB
+37011,6.709806,Formaldehyde,LB
+37011,0.2026822,"1,3-Butadiene",LB
+37011,0.513252,Acrolein,LB
+37011,151.3346,Carbon Dioxide,TON
+37011,0.02772623,PM25-Primary from certain diesel engines,TON
+37011,0.006599092,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.1060362,Acrolein,LB
+37011,0.1146616,Propionaldehyde,LB
+37011,0.02545172,Acenaphthylene,LB
+37011,0.002110348,Benzo[a]Pyrene,LB
+37011,0.0001666194,Arsenic,LB
+37011,1.894548,Acetaldehyde,LB
+37011,6.214852e-06,Nitrate portion of PM2.5-PRI,TON
+37011,0.00477076,PM10 Primary (Filt + Cond),TON
+37011,0.1375403,Volatile Organic Compounds,TON
+37019,3.154008,Formaldehyde,LB
+37019,0.005867328,Arsenic,LB
+37019,0.10363636,Naphthalene,LB
+37019,0.001369645,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.0252738,Ammonia,TON
+37019,0.05741044,Styrene,LB
+37019,0.478414,Propionaldehyde,LB
+37019,4.677148,Xylenes (Mixed Isomers),LB
+37019,0.01298361,Sulfur Dioxide,TON
+37151,1.753307e-05,Nitrate portion of PM2.5-PRI,TON
+37135,0.0014744924,Benz[a]Anthracene,LB
+37135,0.0011568464,Acenaphthene,LB
+37135,1.453904,Hexane,LB
+37135,0.003356978,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.005389082,Acenaphthylene,LB
+37135,0.0012891856,Chrysene,LB
+37135,0.005534153,PM2.5 Primary (Filt + Cond),TON
+37159,34.77541,Carbon Monoxide,TON
+37159,0.0298708,Nitrous Oxide,TON
+37159,31.24918,Ethyl Benzene,LB
+37159,1.3327726,Styrene,LB
+37159,114.60222,Xylenes (Mixed Isomers),LB
+37159,1.9680586e-05,Chromium (VI),LB
+37159,70.97206,Benzene,LB
+37159,0.00019729958,Mercury,LB
+37141,70.59688,Acenaphthylene,LB
+37141,4884.484,Formaldehyde,LB
+37141,10804.608,"2,2,4-Trimethylpentane",LB
+37141,15428.754,Benzene,LB
+37141,2.229668,Arsenic,LB
+37141,0.01600386,Nitrate portion of PM2.5-PRI,TON
+37141,6.073208,PM2.5 Primary (Filt + Cond),TON
+37141,367.908,Styrene,LB
+37137,0.0005226962,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.003445748,PM10 Primary (Filt + Cond),TON
+37137,1.687118e-05,Sulfate Portion of PM2.5-PRI,TON
+37137,0.0001372371,Pyrene,LB
+37137,2.379234e-05,Chrysene,LB
+37137,0.0333307,Benzene,LB
+37137,5.432052e-06,Mercury,LB
+37137,4.51538e-07,Nickel,LB
+37123,0.27913,Toluene,LB
+37123,0.000207665,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.02279774,Acenaphthylene,LB
+37123,0.00062438,Nickel,LB
+37123,8.43435e-05,Nitrous Oxide,TON
+37121,1.6892754e-05,Benz[a]Anthracene,LB
+37121,5.319006e-06,Mercury,LB
+37121,0.001015224,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,3.091136e-05,Chrysene,LB
+37199,0.10042716,Ethyl Benzene,LB
+37199,0.0002385044,"Benzo[g,h,i,]Perylene",LB
+37199,0.0551714,Formaldehyde,LB
+37199,2.057242e-06,"Dibenzo[a,h]Anthracene",LB
+37199,1.9525128e-05,Manganese,LB
+37199,0.008891234,Naphthalene,LB
+37199,6.55454e-05,Ammonia,TON
+37199,0.006757022,Nitrogen Oxides,TON
+37199,5.055525e-05,Sulfur Dioxide,TON
+37199,2.41183e-06,Sulfate Portion of PM2.5-PRI,TON
+37193,48.37584,Xylenes (Mixed Isomers),LB
+37191,0.09475984,Chrysene,LB
+37191,2.35749,Phenanthrene,LB
+37191,0.1505866,Methane,TON
+37191,0.06730729,Ammonia,TON
+37191,9.09137,Ethyl Benzene,LB
+37191,20.219,Toluene,LB
+37191,20.89,Xylenes (Mixed Isomers),LB
+37187,12.083068,Xylenes (Mixed Isomers),LB
+37187,9.630856,"2,2,4-Trimethylpentane",LB
+37181,5.832662,Styrene,LB
+37181,3.487108,Pyrene,LB
+37181,2.730832,Fluoranthene,LB
+37181,0.01968863,Nitrous Oxide,TON
+37161,0.2050336,Xylenes (Mixed Isomers),LB
+37161,1.5753406e-05,"Benzo[g,h,i,]Perylene",LB
+37161,7.96699e-05,Chrysene,LB
+37161,0.000913698,Phenanthrene,LB
+37157,3027.406,Toluene,LB
+37157,653.365,"2,2,4-Trimethylpentane",LB
+37157,0.18690224,Manganese,LB
+37157,0.0736692,Nickel,LB
+37157,0.11296114,Arsenic,LB
+37157,318.7116,Acetaldehyde,LB
+37151,0.01363107,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.0007615743,Sulfate Portion of PM2.5-PRI,TON
+37151,0.8075126,Styrene,LB
+37151,47.98788,Hexane,LB
+37151,0.015429626,Benzo[b]Fluoranthene,LB
+37151,0.02490254,Benzo[a]Pyrene,LB
+37151,0.014450688,Benz[a]Anthracene,LB
+37151,0.06897156,Fluorene,LB
+37149,4618.422,Ethyl Benzene,LB
+37149,13.554872,Pyrene,LB
+37149,5348.63,"2,2,4-Trimethylpentane",LB
+37149,2.436936,Benz[a]Anthracene,LB
+37149,0.8850846,Manganese,LB
+37149,44.06304,Phenanthrene,LB
+37149,16.413298,Fluorene,LB
+37149,2309.611,Carbon Monoxide,TON
+37145,0.2891272,Pyrene,LB
+37145,852.4194,Xylenes (Mixed Isomers),LB
+37145,0.06527858,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.01214687,Nitrous Oxide,TON
+37145,0.0167898,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.00196533,Sulfate Portion of PM2.5-PRI,TON
+37135,2.813328,"1,3-Butadiene",LB
+37135,96.30494,Toluene,LB
+37135,0.015836952,Benzo[k]Fluoranthene,LB
+37135,0.11443712,Acenaphthylene,LB
+37135,8.303754,Formaldehyde,LB
+37135,7.914904e-05,Mercury,LB
+37135,0.0009868746,Nickel,LB
+37135,339.9502,Carbon Dioxide,TON
+37135,8.228673e-05,Nitrate portion of PM2.5-PRI,TON
+37135,0.008235073,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.4806196,Volatile Organic Compounds,TON
+37133,218.8956,Acrolein,LB
+37133,181.8827,Propionaldehyde,LB
+37133,26422.5,Xylenes (Mixed Isomers),LB
+37133,5.153244,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.19221418,Mercury,LB
+37133,9.843882,Acenaphthene,LB
+37133,53.67992,Phenanthrene,LB
+37133,27.07827,PM10 Primary (Filt + Cond),TON
+37125,50.62758,Toluene,LB
+37125,597.7254,Formaldehyde,LB
+37125,0.011902956,"Dibenzo[a,h]Anthracene",LB
+37125,0.0002633144,Mercury,LB
+37125,0.05505678,Arsenic,LB
+37125,5.95318,Phenanthrene,LB
+37125,0.4533901,Organic Carbon portion of PM2.5-PRI,TON
+37125,2.105847,PM2.5 Primary (Filt + Cond),TON
+37125,0.1709441,Sulfur Dioxide,TON
+37125,19.232386,Ethyl Benzene,LB
+37117,0.05155586,Propionaldehyde,LB
+37117,1.7254248e-06,Chromium (VI),LB
+37117,0.002884492,"Benzo[g,h,i,]Perylene",LB
+37117,0.012119572,Acenaphthylene,LB
+37117,0.0010856256,Benzo[a]Pyrene,LB
+37117,0.01446146,Phenanthrene,LB
+37117,0.13814688,Naphthalene,LB
+37117,0.0002640148,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.002733391,Ammonia,TON
+37123,0.02811115,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.4080922,Volatile Organic Compounds,TON
+37123,4.62003,Xylenes (Mixed Isomers),LB
+37123,0.16457424,Benz[a]Anthracene,LB
+37123,7.709304,Naphthalene,LB
+37123,2.63545,Carbon Monoxide,TON
+37123,0.1803758,PM25-Primary from certain diesel engines,TON
+37123,13.61422,Xylenes (Mixed Isomers),LB
+37123,0.02665034,Acenaphthylene,LB
+37123,0.0017254148,Chrysene,LB
+37123,0.0002462772,Manganese,LB
+37123,3.850228e-05,Nickel,LB
+37123,0.0006037074,Elemental Carbon portion of PM2.5-PRI,TON
+37123,27741.68,Toluene,LB
+37123,0.06366494,"Dibenzo[a,h]Anthracene",LB
+37123,0.8957206,Manganese,LB
+37123,8.671084,Acenaphthene,LB
+37123,0.6318851,Elemental Carbon portion of PM2.5-PRI,TON
+37123,6.982853,Ammonia,TON
+37123,0.008122005,Nitrate portion of PM2.5-PRI,TON
+37123,1.781595,Sulfur Dioxide,TON
+37123,143.4137,Volatile Organic Compounds,TON
+37115,0.5389944,Manganese,LB
+37115,51.49218,Styrene,LB
+37115,0.7034366,Chrysene,LB
+37099,3.866704e-06,Chromium (VI),LB
+37099,9.703728e-05,"Dibenzo[a,h]Anthracene",LB
+37099,3.632888,Acetaldehyde,LB
+37099,5.546711,Carbon Monoxide,TON
+37095,1.4336312,Ethyl Benzene,LB
+37095,1.1555396,"2,2,4-Trimethylpentane",LB
+37095,0.08177926,Benz[a]Anthracene,LB
+37095,0.2690078,Fluorene,LB
+37095,0.02798179,Methane,TON
+37095,0.02654055,PM2.5 Primary (Filt + Cond),TON
+37095,0.6537874,Xylenes (Mixed Isomers),LB
+37095,0.000335121,"Benzo[g,h,i,]Perylene",LB
+37095,0.0003390922,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.544049,Carbon Monoxide,TON
+37095,0.02791289,PM10-Primary from certain diesel engines,TON
+37095,0.0015316,Ammonia,TON
+37091,1.843042,Pyrene,LB
+37091,0.006691414,Benzo[b]Fluoranthene,LB
+37091,0.0009248282,"Dibenzo[a,h]Anthracene",LB
+37091,0.005065288,Nitrous Oxide,TON
+37091,4.90198e-06,Chromium (VI),LB
+37091,3.180258e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,1.7617568e-05,Benzo[k]Fluoranthene,LB
+37089,0.4099366,"1,3-Butadiene",LB
+37089,0.8486544,Toluene,LB
+37089,0.8399512,Xylenes (Mixed Isomers),LB
+37089,0.0003525942,Benzo[k]Fluoranthene,LB
+37089,0.008643566,Benzo[a]Pyrene,LB
+37089,1.190525,Benzene,LB
+37089,1.6756234,Phenanthrene,LB
+37089,0.0002287739,Nitrate portion of PM2.5-PRI,TON
+37089,0.1682345,PM10 Primary (Filt + Cond),TON
+37089,0.04930952,PM2.5 Primary (Filt + Cond),TON
+37089,0.0127291,Sulfur Dioxide,TON
+37089,7.109088,Ethyl Benzene,LB
+37089,0.00250468,Benzo[b]Fluoranthene,LB
+37089,0.0083866,Benzo[a]Pyrene,LB
+37087,1.5208476,Fluoranthene,LB
+37087,0.14257762,Benzo[a]Pyrene,LB
+37087,0.04267542,Manganese,LB
+37087,2.450208,Phenanthrene,LB
+37087,1.4246652,Fluorene,LB
+37087,22.4397,Naphthalene,LB
+37087,6.296115,Carbon Monoxide,TON
+37087,0.00574709,Nitrous Oxide,TON
+37087,0.00252216,Nitrate portion of PM2.5-PRI,TON
+37087,0.01203839,Sulfur Dioxide,TON
+37073,1.717027e-05,Sulfate Portion of PM2.5-PRI,TON
+37073,0.0003615684,Benzo[k]Fluoranthene,LB
+37065,339.3977,Carbon Dioxide,TON
+37065,0.02853685,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.765072,"1,3-Butadiene",LB
+37065,1.277198,Propionaldehyde,LB
+37065,0.2588114,Pyrene,LB
+37065,0.0015222264,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.02004556,Benzo[a]Pyrene,LB
+37063,0.4341056,Fluoranthene,LB
+37063,0.0018366984,Benzo[k]Fluoranthene,LB
+37063,0.010154992,Nickel,LB
+37063,25.62004,Acetaldehyde,LB
+37063,0.02606232,Ammonia,TON
+37059,4.54705,Propionaldehyde,LB
+37059,0.004431904,Benzo[a]Pyrene,LB
+37059,3.150732,Ethyl Benzene,LB
+37059,2.692358,"1,3-Butadiene",LB
+37059,4.12345e-05,Mercury,LB
+37059,40.3032,Acetaldehyde,LB
+37059,0.2711378,Acenaphthene,LB
+37059,691.1968,Carbon Dioxide,TON
+37059,0.0009661473,Nitrous Oxide,TON
+37053,0.7352954,Fluoranthene,LB
+37053,0.02300862,Manganese,LB
+37053,0.0384931,Ammonia,TON
+37053,0.00588747,Sulfate Portion of PM2.5-PRI,TON
+37053,0.9483702,Volatile Organic Compounds,TON
+37041,2.463458e-05,Chrysene,LB
+37041,0.0004515888,Manganese,LB
+37041,0.00010052756,Arsenic,LB
+37041,4.694348e-05,Acenaphthene,LB
+37041,0.00010060832,Fluorene,LB
+37041,0.07828965,Nitrogen Oxides,TON
+37041,50.67984,Ethyl Benzene,LB
+37041,87.194,Hexane,LB
+37041,0.7954138,Propionaldehyde,LB
+37041,0.05993022,"Benzo[g,h,i,]Perylene",LB
+37041,0.01574366,Benzo[b]Fluoranthene,LB
+37041,0.0005165886,"Dibenzo[a,h]Anthracene",LB
+37041,0.015520718,Benz[a]Anthracene,LB
+37041,0.2684778,Phenanthrene,LB
+37041,0.09990768,Fluorene,LB
+37041,0.04964457,Ammonia,TON
+37035,1.5551092,"1,3-Butadiene",LB
+37035,0.003683576,Arsenic,LB
+37035,22.41398,Acetaldehyde,LB
+37035,0.6253536,Phenanthrene,LB
+37035,0.3504376,Fluorene,LB
+37035,0.03196271,Methane,TON
+37035,0.002031778,Nitrous Oxide,TON
+37035,0.3781861,PM10 Primary (Filt + Cond),TON
+37033,4.04175,Formaldehyde,LB
+37033,0.0006473309,Ammonia,TON
+37033,5.979902e-05,Nitrate portion of PM2.5-PRI,TON
+37033,0.001899428,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.0002192248,Sulfate Portion of PM2.5-PRI,TON
+37033,1.9154538,Ethyl Benzene,LB
+37033,1.402916,"2,2,4-Trimethylpentane",LB
+37033,0.006900436,Nickel,LB
+37029,0.8249906,"2,2,4-Trimethylpentane",LB
+37029,0.0002987266,Benz[a]Anthracene,LB
+37029,0.000848121,Anthracene,LB
+37029,7.608926e-06,Mercury,LB
+37029,0.002004424,Fluorene,LB
+37125,2.243802,Chrysene,LB
+37125,158.74868,Acrolein,LB
+37125,6.233112,Anthracene,LB
+37125,7807.21,Benzene,LB
+37125,3.169578,Manganese,LB
+37125,3.784833,Methane,TON
+37125,4.009891,Nitrous Oxide,TON
+37125,3.050925,Sulfur Dioxide,TON
+37121,2.045264e-05,Nickel,LB
+37121,3.136066e-05,Arsenic,LB
+37121,0.00719299,Pyrene,LB
+37121,0.0017110518,Benzo[a]Pyrene,LB
+37111,2463.218,Hexane,LB
+37101,0.0617288,PM10-Primary from certain diesel engines,TON
+37101,0.03041109,Organic Carbon portion of PM2.5-PRI,TON
+37101,1.62548,Volatile Organic Compounds,TON
+37101,0.00069649,"Dibenzo[a,h]Anthracene",LB
+37103,0.00481531,Styrene,LB
+37103,0.02118598,"1,3-Butadiene",LB
+37103,0.0003687628,Pyrene,LB
+37103,2.537088e-06,"Dibenzo[a,h]Anthracene",LB
+37103,0.06591598,Acetaldehyde,LB
+37103,0.0004428654,Fluorene,LB
+37103,0.011356096,Naphthalene,LB
+37103,0.000154234,Ammonia,TON
+37101,2.04274,Styrene,LB
+37101,0.15694628,Pyrene,LB
+37101,0.03017576,Benz[a]Anthracene,LB
+37101,27.40268,Acetaldehyde,LB
+37099,1.1950874e-05,"Dibenzo[a,h]Anthracene",LB
+37099,6.916238e-06,Nickel,LB
+37099,0.1655204,Acetaldehyde,LB
+37099,0.02736128,Naphthalene,LB
+37099,0.0006256797,Methane,TON
+37099,1.434705e-05,Sulfate Portion of PM2.5-PRI,TON
+37099,0.0005207324,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.0008167658,Fluoranthene,LB
+37099,0.002409334,Acenaphthylene,LB
+37095,1.3891632e-05,Chrysene,LB
+37095,9.011758e-08,Mercury,LB
+37095,1.7229732e-06,Arsenic,LB
+37095,0.016645402,Acetaldehyde,LB
+37095,0.00264033,Naphthalene,LB
+37095,0.01984694,Carbon Monoxide,TON
+37095,4.146748e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37091,6175.962,Xylenes (Mixed Isomers),LB
+37091,0.7722598,Benzo[k]Fluoranthene,LB
+37091,50.96706,Acrolein,LB
+37091,10302.744,Toluene,LB
+37091,2512.356,Hexane,LB
+37091,2.082622,Anthracene,LB
+37091,4.071922,Pyrene,LB
+37091,125.99664,Naphthalene,LB
+37091,1.039445,Nitrous Oxide,TON
+37091,1.277831,PM2.5 Primary (Filt + Cond),TON
+37073,3.35304,Benzene,LB
+37075,0.00252706,"Benzo[g,h,i,]Perylene",LB
+37075,0.012316852,Benzo[b]Fluoranthene,LB
+37075,0.0016869452,Benzo[k]Fluoranthene,LB
+37075,5.12384,Benzene,LB
+37075,0.01500991,Methane,TON
+37075,0.001126994,Nitrous Oxide,TON
+37075,5.615497,Nitrogen Oxides,TON
+37071,679.334,Toluene,LB
+37071,0.12099472,Benzo[a]Pyrene,LB
+37071,0.07515226,Benz[a]Anthracene,LB
+37071,0.0012738306,Mercury,LB
+37071,0.202713,Acenaphthene,LB
+37071,0.1441982,Nitrous Oxide,TON
+37071,0.004962378,Sulfate Portion of PM2.5-PRI,TON
+37071,3.521113,Volatile Organic Compounds,TON
+37059,82.31292,Formaldehyde,LB
+37055,0.1993274,Acenaphthylene,LB
+37055,0.010498884,Benz[a]Anthracene,LB
+37055,0.0204373,Manganese,LB
+37055,0.04381066,Acenaphthene,LB
+37055,18.93545,Carbon Monoxide,TON
+37055,825.4937,Carbon Dioxide,TON
+37055,0.02092287,PM2.5 Primary (Filt + Cond),TON
+37055,38.64197,Volatile Organic Compounds,TON
+37051,4.34135e-08,Chromium (VI),LB
+37051,8.419046e-05,Acenaphthylene,LB
+37051,6.152982e-06,Benz[a]Anthracene,LB
+37051,2.486998e-05,Mercury,LB
+37051,3.03353e-05,Acenaphthene,LB
+37051,0.4017104,Carbon Monoxide,TON
+37051,0.0004712089,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.002445429,PM2.5 Primary (Filt + Cond),TON
+37051,0.00175211,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.02787024,Anthracene,LB
+37039,0.0311143,"Benzo[g,h,i,]Perylene",LB
+37039,0.00887863,Benzo[k]Fluoranthene,LB
+37039,0.0660812,Fluorene,LB
+37039,0.003290499,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.01992377,Ammonia,TON
+37039,3.749813e-05,Nitrate portion of PM2.5-PRI,TON
+37039,0.04218114,PM10 Primary (Filt + Cond),TON
+37039,0.004782241,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,1.7877548,Acrolein,LB
+37037,0.2100882,Pyrene,LB
+37037,0.0009278994,"Benzo[g,h,i,]Perylene",LB
+37037,0.0691828,Acenaphthene,LB
+37037,0.15085026,Fluorene,LB
+37037,0.1039103,PM25-Primary from certain diesel engines,TON
+37037,0.1103221,PM2.5 Primary (Filt + Cond),TON
+37029,0.0907027,Pyrene,LB
+37029,1.3208448e-05,Chromium (VI),LB
+37029,0.000254639,Benzo[b]Fluoranthene,LB
+37029,0.701159,"2,2,4-Trimethylpentane",LB
+37029,0.010689074,Benz[a]Anthracene,LB
+37029,0.005404342,Manganese,LB
+37029,0.006036764,Nickel,LB
+37029,2.246387,Carbon Monoxide,TON
+37029,0.001927339,Sulfur Dioxide,TON
+37057,6275.502,Hexane,LB
+37053,41.91864,Ethyl Benzene,LB
+37053,0.1938451,Nickel,LB
+37053,4.27028,Acenaphthene,LB
+37053,1.121684,PM25-Primary from certain diesel engines,TON
+37053,0.180208,Organic Carbon portion of PM2.5-PRI,TON
+37053,78.9115,Xylenes (Mixed Isomers),LB
+37045,21.38352,"1,3-Butadiene",LB
+37045,66.56946,Xylenes (Mixed Isomers),LB
+37045,0.12631138,Benzo[b]Fluoranthene,LB
+37045,2.151984,Acenaphthene,LB
+37045,80.8455,Naphthalene,LB
+37045,0.3386922,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.11015344,Ethyl Benzene,LB
+37043,0.1693224,Propionaldehyde,LB
+37043,1.1089596e-06,Chromium (VI),LB
+37043,0.007631588,Benz[a]Anthracene,LB
+37043,0.3074068,Benzene,LB
+37043,0.02252736,Fluorene,LB
+37043,0.001201215,Ammonia,TON
+37043,0.02127783,PM10 Primary (Filt + Cond),TON
+37039,7.581311,Ammonia,TON
+37039,1.614482,Organic Carbon portion of PM2.5-PRI,TON
+37039,1.936603,Sulfur Dioxide,TON
+37039,7.912186,"Benzo[g,h,i,]Perylene",LB
+37039,2.478148,Chrysene,LB
+37037,57.12954,"2,2,4-Trimethylpentane",LB
+37027,19.230986,Ethyl Benzene,LB
+37027,14.157774,"1,3-Butadiene",LB
+37027,53.84332,Toluene,LB
+37027,24.77796,Propionaldehyde,LB
+37027,3.45559,Fluoranthene,LB
+37027,0.3457092,Benzo[a]Pyrene,LB
+37027,0.08593724,Nickel,LB
+37027,0.6194951,Methane,TON
+37027,0.3841317,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.2409647,Sulfate Portion of PM2.5-PRI,TON
+37027,2.839663,Volatile Organic Compounds,TON
+37011,0.003062268,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.06593828,Manganese,LB
+37011,0.4793053,PM25-Primary from certain diesel engines,TON
+37011,0.01526079,Sulfate Portion of PM2.5-PRI,TON
+37005,516.9136,Formaldehyde,LB
+37005,8.019652e-05,Mercury,LB
+37005,8.471406,Nitrogen Oxides,TON
+37005,0.2076598,Styrene,LB
+37005,1.307532,Acrolein,LB
+37005,5.5539e-06,Chromium (VI),LB
+37005,5.241002e-06,Mercury,LB
+37005,0.002933094,Nickel,LB
+37005,0.04850096,Acenaphthene,LB
+37005,0.08299204,Fluorene,LB
+37005,1.8553638,Naphthalene,LB
+37005,0.01468165,Methane,TON
+37005,0.005816186,PM10 Primary (Filt + Cond),TON
+37003,0.0004520838,Pyrene,LB
+37003,1.3781092e-08,Chromium (VI),LB
+37003,0.00015285996,Acenaphthene,LB
+37003,0.0003364892,Fluorene,LB
+37003,0.0003515803,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.009857063,Nitrous Oxide,TON
+37003,0.2394823,Nitrogen Oxides,TON
+37003,0.04216795,Volatile Organic Compounds,TON
+37003,15.963768,Hexane,LB
+37001,3.765564,Phenanthrene,LB
+37001,16.299192,Propionaldehyde,LB
+37001,5.455282e-05,Chromium (VI),LB
+37001,0.009156532,Benzo[k]Fluoranthene,LB
+37001,10.43578,Ethyl Benzene,LB
+37177,0.7672532,Styrene,LB
+37177,1.7511002,"1,3-Butadiene",LB
+37177,2.909314,Propionaldehyde,LB
+37177,0.04074504,Benzo[a]Pyrene,LB
+37177,0.6810108,Phenanthrene,LB
+37177,0.3886432,Fluorene,LB
+37177,0.05787413,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.2072672,PM10 Primary (Filt + Cond),TON
+37177,0.1506377,PM2.5 Primary (Filt + Cond),TON
+37177,0.006007807,Sulfur Dioxide,TON
+37193,0.2932042,Styrene,LB
+37193,0.02985644,Chrysene,LB
+37193,0.006604996,Ammonia,TON
+37185,0.0011082368,Pyrene,LB
+37185,0.0009792842,Fluoranthene,LB
+37185,0.0004955302,Chrysene,LB
+37185,6.448936,Acetaldehyde,LB
+37185,0.001664207,PM2.5 Primary (Filt + Cond),TON
+37185,0.000927091,Sulfate Portion of PM2.5-PRI,TON
+37185,1.219465,Ethyl Benzene,LB
+37185,1.7453206,Propionaldehyde,LB
+37185,3.203904,Xylenes (Mixed Isomers),LB
+37185,0.13071194,Fluoranthene,LB
+37185,0.1206154,Acrolein,LB
+37185,6.559586,"2,2,4-Trimethylpentane",LB
+37185,0.0010918666,Manganese,LB
+37185,0.000362862,Arsenic,LB
+37185,0.006861158,Acenaphthene,LB
+37185,78.5998,Carbon Dioxide,TON
+37185,0.004173594,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.4181546,Benzo[a]Pyrene,LB
+37191,0.017100748,"Dibenzo[a,h]Anthracene",LB
+37191,0.477518,Methane,TON
+37191,8824.885,Carbon Dioxide,TON
+37191,1.427155,PM25-Primary from certain diesel engines,TON
+37191,0.5550703,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.6033794,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.5189742,Propionaldehyde,LB
+37187,0.0004892558,"Benzo[g,h,i,]Perylene",LB
+37187,0.002448014,Benzo[b]Fluoranthene,LB
+37187,0.05326794,Acenaphthylene,LB
+37187,0.2614452,"2,2,4-Trimethylpentane",LB
+37187,0.002962568,Manganese,LB
+37187,0.03065519,PM10-Primary from certain diesel engines,TON
+37187,0.01160431,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.04005334,PM10 Primary (Filt + Cond),TON
+37183,64.24706,"2,2,4-Trimethylpentane",LB
+37179,2.658842e-08,Chromium (VI),LB
+37179,2.65978e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,1.8197736e-05,Benzo[k]Fluoranthene,LB
+37179,6.105532e-07,"Dibenzo[a,h]Anthracene",LB
+37179,0.03435732,"2,2,4-Trimethylpentane",LB
+37179,0.0002957144,Phenanthrene,LB
+37179,5.294516e-05,Nitrous Oxide,TON
+37019,52.75172,Xylenes (Mixed Isomers),LB
+37019,0.017113444,"Benzo[g,h,i,]Perylene",LB
+37019,0.0888375,Acenaphthylene,LB
+37019,0.00509104,Chrysene,LB
+37019,21.28564,"2,2,4-Trimethylpentane",LB
+37019,4.855594e-05,Mercury,LB
+37019,0.000928358,Arsenic,LB
+37019,0.4595571,Volatile Organic Compounds,TON
+37015,1.808444,Xylenes (Mixed Isomers),LB
+37015,0.0797586,Fluoranthene,LB
+37015,4.695998e-05,Benzo[k]Fluoranthene,LB
+37015,21.92752,Formaldehyde,LB
+37015,0.0118813,Benz[a]Anthracene,LB
+37015,0.005048756,PM2.5 Primary (Filt + Cond),TON
+37015,0.001314468,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.1159534,Volatile Organic Compounds,TON
+37009,8.15908e-05,Nitrous Oxide,TON
+37009,0.007584099,PM2.5 Primary (Filt + Cond),TON
+37009,0.001308374,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.0002295849,Sulfur Dioxide,TON
+37009,0.0002289482,Sulfate Portion of PM2.5-PRI,TON
+37009,0.011512554,Anthracene,LB
+37009,0.1781372,Propionaldehyde,LB
+37009,0.02435774,Fluoranthene,LB
+37001,14.561424,"1,3-Butadiene",LB
+37001,2.072698,Fluoranthene,LB
+37001,0.5078732,PM2.5 Primary (Filt + Cond),TON
+37063,0.0656556,Naphthalene,LB
+37063,2.031043,Carbon Monoxide,TON
+37063,0.1550339,Nitrogen Oxides,TON
+37063,1.449861,"2,2,4-Trimethylpentane",LB
+37063,1.6248762e-05,Chromium (VI),LB
+37063,0.0019508782,Benzo[k]Fluoranthene,LB
+37063,2.30782,Formaldehyde,LB
+37025,0.08750831,Sulfur Dioxide,TON
+37025,0.001569027,Mercury,LB
+37025,0.08492076,Acenaphthylene,LB
+37017,9.8089e-05,Mercury,LB
+37017,0.0205096,Arsenic,LB
+37017,36.50782,Naphthalene,LB
+37017,7.977452,Carbon Monoxide,TON
+37017,0.01137021,Nitrous Oxide,TON
+37009,3.222406,Xylenes (Mixed Isomers),LB
+37009,1.28761e-05,Chromium (VI),LB
+37009,0.1223608,Fluoranthene,LB
+37009,0.005370426,Manganese,LB
+37009,0.0984526,Acenaphthene,LB
+37009,0.1870378,Volatile Organic Compounds,TON
+37005,4.044896e-06,Chromium (VI),LB
+37005,0.0012001576,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.000644127,"Dibenzo[a,h]Anthracene",LB
+37005,0.0006272574,Arsenic,LB
+37005,0.2012798,Fluorene,LB
+37005,0.001352771,Nitrous Oxide,TON
+37005,0.001232559,Sulfur Dioxide,TON
+37005,0.1815151,Volatile Organic Compounds,TON
+37059,0.3720368,Ethyl Benzene,LB
+37059,0.0006713458,Benzo[b]Fluoranthene,LB
+37059,0.0016978076,Manganese,LB
+37059,0.0012102906,Arsenic,LB
+37013,0.03115156,Styrene,LB
+37013,2.90457,Toluene,LB
+37013,0.0007656788,Chrysene,LB
+37013,9.621708e-05,Mercury,LB
+37013,0.006060008,Phenanthrene,LB
+37013,0.001236632,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.0001279101,Anthracene,LB
+37169,0.00011091324,Chrysene,LB
+37169,0.0007857466,Phenanthrene,LB
+37169,0.0001683928,Organic Carbon portion of PM2.5-PRI,TON
+37115,37.88768,Acetaldehyde,LB
+37115,0.006158508,Fluorene,LB
+37115,0.333494,Nitrogen Oxides,TON
+37115,0.3098826,Acrolein,LB
+37115,0.00278776,Benzo[b]Fluoranthene,LB
+37109,8.23628,"2,2,4-Trimethylpentane",LB
+37109,0.2103221,Volatile Organic Compounds,TON
+37177,8.009834e-05,Acenaphthylene,LB
+37177,15.15865,Carbon Dioxide,TON
+37177,2.385444e-07,Nickel,LB
+37177,0.0003544294,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.001019778,PM2.5 Primary (Filt + Cond),TON
+37195,9.192232,Styrene,LB
+37195,58.2849,Acrolein,LB
+37195,82.79158,Naphthalene,LB
+37195,0.2443102,Sulfate Portion of PM2.5-PRI,TON
+37195,0.025311,"Benzo[g,h,i,]Perylene",LB
+37195,0.11780756,Benzo[b]Fluoranthene,LB
+37189,1.1009248,Benzene,LB
+37189,0.02501772,Volatile Organic Compounds,TON
+37189,0.0006702542,Pyrene,LB
+37185,0.012656462,"1,3-Butadiene",LB
+37185,0.0003328355,Elemental Carbon portion of PM2.5-PRI,TON
+37185,6.317866e-07,Nitrate portion of PM2.5-PRI,TON
+37185,0.001283928,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.006767867,PM10 Primary (Filt + Cond),TON
+37185,0.11115124,Xylenes (Mixed Isomers),LB
+37185,1.327719e-05,"Benzo[g,h,i,]Perylene",LB
+37185,0.00019624626,Fluoranthene,LB
+37185,6.20778e-05,Chrysene,LB
+37185,0.10063718,Benzene,LB
+37185,0.0002753444,Fluorene,LB
+37191,1.231604,Carbon Monoxide,TON
+37191,0.1287589,PM25-Primary from certain diesel engines,TON
+37191,0.04874332,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.006169344,Sulfur Dioxide,TON
+37191,4.097916,Toluene,LB
+37181,4.383868,Styrene,LB
+37181,0.014249636,"Benzo[g,h,i,]Perylene",LB
+37181,30.22082,Benzene,LB
+37181,9.721894e-05,Mercury,LB
+37181,0.9065008,PM10-Primary from certain diesel engines,TON
+37181,0.09688061,Ammonia,TON
+37057,4.709678,Hexane,LB
+37057,17.144622,Xylenes (Mixed Isomers),LB
+37039,2.834914,"2,2,4-Trimethylpentane",LB
+37157,0.6798348,Formaldehyde,LB
+37157,0.018260282,Naphthalene,LB
+37157,0.003985371,PM10 Primary (Filt + Cond),TON
+37157,3.117421e-05,Sulfate Portion of PM2.5-PRI,TON
+37161,1.7931632,Ethyl Benzene,LB
+37153,5.791616,Xylenes (Mixed Isomers),LB
+37153,1.4237544,Benzene,LB
+37145,1.0574312,Hexane,LB
+37145,0.0008941792,Nickel,LB
+37145,0.005226338,Phenanthrene,LB
+37145,0.00200561,Nitrous Oxide,TON
+37145,0.06548813,Nitrogen Oxides,TON
+37145,0.002244868,PM2.5 Primary (Filt + Cond),TON
+37177,0.04307531,Nitrous Oxide,TON
+37175,0.006789774,Acenaphthene,LB
+37175,0.1958564,Nitrogen Oxides,TON
+37175,0.001037361,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.1672857,Volatile Organic Compounds,TON
+37163,53.5177,Xylenes (Mixed Isomers),LB
+37163,0.10515008,Nickel,LB
+37163,31.27558,Nitrogen Oxides,TON
+37163,0.3706502,Benzo[a]Pyrene,LB
+37163,5.918076,Phenanthrene,LB
+37163,7271.383,Carbon Dioxide,TON
+37163,46.61422,"1,3-Butadiene",LB
+37163,4.740172,Acenaphthene,LB
+37163,8785.737,Carbon Dioxide,TON
+37163,1.314279,PM10-Primary from certain diesel engines,TON
+37163,0.2990765,Ammonia,TON
+37173,4.485542,Acrolein,LB
+37173,0.011138296,Manganese,LB
+37173,503.3688,Carbon Dioxide,TON
+37185,3461.726,Ethyl Benzene,LB
+37185,122.72702,Propionaldehyde,LB
+37185,27.27022,Acenaphthylene,LB
+37185,5.989088,Acenaphthene,LB
+37185,1.14855,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.05824622,Sulfate Portion of PM2.5-PRI,TON
+37181,0.2100446,"Benzo[g,h,i,]Perylene",LB
+37181,0.05634042,Benzo[b]Fluoranthene,LB
+37181,0.2706244,Fluoranthene,LB
+37181,0.07898534,Benzo[a]Pyrene,LB
+37181,9.576458,Naphthalene,LB
+37181,0.08422462,Methane,TON
+37181,0.0002274677,Nitrate portion of PM2.5-PRI,TON
+37001,35.56818,Toluene,LB
+37001,0.03382176,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.017771028,Benzo[k]Fluoranthene,LB
+37001,32.66182,Formaldehyde,LB
+37001,16.350752,"2,2,4-Trimethylpentane",LB
+37001,0.0010673528,Mercury,LB
+37001,0.008097276,Elemental Carbon portion of PM2.5-PRI,TON
+37127,5.232288e-05,"Dibenzo[a,h]Anthracene",LB
+37127,0.03831362,Naphthalene,LB
+37127,8.469576e-06,Nitrate portion of PM2.5-PRI,TON
+37127,0.08959207,Nitrogen Oxides,TON
+37101,0.461041,"1,3-Butadiene",LB
+37101,0.014793996,Acenaphthylene,LB
+37101,5.085178,Formaldehyde,LB
+37101,10.431868,Benzene,LB
+37101,0.3026835,Nitrogen Oxides,TON
+37177,0.19070872,Toluene,LB
+37177,0.00010349728,Pyrene,LB
+37177,2.032892e-08,Chromium (VI),LB
+37177,2.699042e-05,Benzo[b]Fluoranthene,LB
+37177,2.36147e-05,Chrysene,LB
+37177,2.398708e-05,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.0007684419,Sulfur Dioxide,TON
+37161,12.251054,Ethyl Benzene,LB
+37161,0.02776014,Fluoranthene,LB
+37161,0.005659356,Benz[a]Anthracene,LB
+37151,0.21888,Styrene,LB
+37151,0.15855572,Pyrene,LB
+37151,0.0116954,Benzo[a]Pyrene,LB
+37151,1.6778608,Naphthalene,LB
+37151,0.04123886,PM25-Primary from certain diesel engines,TON
+37151,0.0002037089,Nitrate portion of PM2.5-PRI,TON
+37151,0.006746823,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.2188684,Nitrogen Oxides,TON
+37139,0.11816802,Pyrene,LB
+37141,0.9719618,Pyrene,LB
+37141,125.09758,Formaldehyde,LB
+37141,0.01846249,Nickel,LB
+37141,55.24472,Acetaldehyde,LB
+37141,0.8217342,Fluorene,LB
+37141,0.00295275,Nitrous Oxide,TON
+37141,0.06881884,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.05327842,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,173.3116,"2,2,4-Trimethylpentane",LB
+37131,0.009413776,Arsenic,LB
+37131,0.11822414,Acenaphthene,LB
+37131,0.6433862,Phenanthrene,LB
+37131,6.139474,Naphthalene,LB
+37131,0.0001523749,Nitrate portion of PM2.5-PRI,TON
+37131,1.628166,Nitrogen Oxides,TON
+37131,0.05175961,PM2.5 Primary (Filt + Cond),TON
+37131,0.01311504,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.1857543,PM10 Primary (Filt + Cond),TON
+37125,22.17086,Acetaldehyde,LB
+37125,3.909148,Acrolein,LB
+37125,4.328492,Toluene,LB
+37125,4.672988,Xylenes (Mixed Isomers),LB
+37125,0.3520544,Fluoranthene,LB
+37125,0.017793658,Manganese,LB
+37121,6.853154,Toluene,LB
+37121,0.03212424,Propionaldehyde,LB
+37121,0.0004840268,Benzo[b]Fluoranthene,LB
+37121,0.0004840268,Benzo[k]Fluoranthene,LB
+37121,0.5059372,Formaldehyde,LB
+37121,0.0004838226,Benz[a]Anthracene,LB
+37121,0.0016413706,Acenaphthene,LB
+37111,53.94134,Ethyl Benzene,LB
+37111,1.259349,Benz[a]Anthracene,LB
+37111,0.6286959,Organic Carbon portion of PM2.5-PRI,TON
+37157,4.004576,Toluene,LB
+37157,0.16852984,Anthracene,LB
+37157,2.484196,Propionaldehyde,LB
+37157,1.7067566e-05,Chromium (VI),LB
+37157,1.3749136,"2,2,4-Trimethylpentane",LB
+37157,0.0006700963,Nitrate portion of PM2.5-PRI,TON
+37157,0.005854654,Sulfur Dioxide,TON
+37157,3.400442e-05,Chromium (VI),LB
+37157,10.20402,Benzene,LB
+37157,0.018111548,Nickel,LB
+37157,0.0066364,Arsenic,LB
+37157,0.01733775,PM25-Primary from certain diesel engines,TON
+37157,0.004110136,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.009515214,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.0016133064,Benz[a]Anthracene,LB
+37157,12.724472,Xylenes (Mixed Isomers),LB
+37157,0.02433198,Acenaphthylene,LB
+37157,0.02904262,Phenanthrene,LB
+37157,0.001734563,Nitrous Oxide,TON
+37157,0.000463435,Ammonia,TON
+37157,0.001120648,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.0001194513,Chromium (VI),LB
+37153,0.018208782,"Benzo[g,h,i,]Perylene",LB
+37153,0.08982344,Benzo[b]Fluoranthene,LB
+37153,4.873538,Phenanthrene,LB
+37153,0.1201695,Ammonia,TON
+37153,2.258034,Volatile Organic Compounds,TON
+37153,0.011929422,Benzo[a]Pyrene,LB
+37153,0.0011804566,Arsenic,LB
+37153,0.05225436,Acenaphthene,LB
+37153,0.5490234,Ethyl Benzene,LB
+37153,0.417773,Hexane,LB
+37153,0.0007283682,"Benzo[g,h,i,]Perylene",LB
+37153,0.007903074,Methane,TON
+37153,0.0791088,PM25-Primary from certain diesel engines,TON
+37153,0.05302301,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.09275781,Methane,TON
+37151,0.3472826,PM10-Primary from certain diesel engines,TON
+37151,12.79371,Nitrogen Oxides,TON
+37151,0.5042588,Anthracene,LB
+37151,1.1804312,Pyrene,LB
+37149,0.002814128,"Benzo[g,h,i,]Perylene",LB
+37149,0.0006844196,Benzo[b]Fluoranthene,LB
+37149,0.002642272,Fluoranthene,LB
+37149,0.0006844196,Benzo[k]Fluoranthene,LB
+37149,0.0010530558,Benzo[a]Pyrene,LB
+37149,0.0006547864,Benz[a]Anthracene,LB
+37149,1.0460636e-06,Mercury,LB
+37149,4.588262,Carbon Dioxide,TON
+37149,2.941261e-06,Nitrate portion of PM2.5-PRI,TON
+37147,1795.1856,Formaldehyde,LB
+37147,0.008758498,"Dibenzo[a,h]Anthracene",LB
+37147,0.2618758,Manganese,LB
+37147,0.223767,Nickel,LB
+37147,16.2697,Phenanthrene,LB
+37147,0.0383529,Nitrous Oxide,TON
+37147,36.38073,Nitrogen Oxides,TON
+37147,0.3278457,Organic Carbon portion of PM2.5-PRI,TON
+37147,4045.416,Acetaldehyde,LB
+37147,5.995036,Methane,TON
+37147,0.017435338,Chromium (VI),LB
+37147,50.19216,Acenaphthylene,LB
+37147,254.7496,Styrene,LB
+37139,11.655534,Toluene,LB
+37139,5.105212,Benzene,LB
+37139,64.74894,Carbon Dioxide,TON
+37139,5.223929e-06,Nitrate portion of PM2.5-PRI,TON
+37139,0.06442942,Volatile Organic Compounds,TON
+37135,2.636812,Pyrene,LB
+37135,3393.516,Xylenes (Mixed Isomers),LB
+37135,0.5045154,Benzo[b]Fluoranthene,LB
+37135,1100.4666,"2,2,4-Trimethylpentane",LB
+37135,1.929269,Ammonia,TON
+37135,49.1703,Nitrogen Oxides,TON
+37131,0.006186328,Chrysene,LB
+37131,0.0009998056,Manganese,LB
+37131,0.09273467,Carbon Monoxide,TON
+37131,0.01280809,PM10-Primary from certain diesel engines,TON
+37131,9.169801e-05,Nitrous Oxide,TON
+37131,0.42874,Xylenes (Mixed Isomers),LB
+37131,0.0009492864,Acenaphthylene,LB
+37131,0.00018437632,Benzo[a]Pyrene,LB
+37131,0.2181392,Benzene,LB
+37131,3.005512e-05,Manganese,LB
+37131,0.06177286,Acetaldehyde,LB
+37131,9.655857e-05,Nitrous Oxide,TON
+37131,4.888925e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,9.638305e-05,Sulfur Dioxide,TON
+37123,44.23334,Toluene,LB
+37123,0.004285276,Benzo[b]Fluoranthene,LB
+37123,8.890894,Benzene,LB
+37123,0.01708422,Fluorene,LB
+37123,3.838905,Carbon Monoxide,TON
+37123,0.000217723,Sulfate Portion of PM2.5-PRI,TON
+37115,0.015330838,Fluorene,LB
+37115,9.050096e-06,Nitrate portion of PM2.5-PRI,TON
+37115,43.48352,Phenanthrene,LB
+37115,1563.234,Carbon Monoxide,TON
+37115,11.649368,Fluoranthene,LB
+37115,2498.148,Formaldehyde,LB
+37113,2.512658,"1,3-Butadiene",LB
+37113,0.4246644,Acenaphthylene,LB
+37113,0.018775644,Chrysene,LB
+37113,0.7103136,Phenanthrene,LB
+37109,1.0100234,Fluoranthene,LB
+37109,1.2514004,Acenaphthylene,LB
+37109,0.2339759,PM25-Primary from certain diesel engines,TON
+37109,0.005005492,Nitrous Oxide,TON
+37109,0.000488154,Nitrate portion of PM2.5-PRI,TON
+37109,36.77354,Pyrene,LB
+37109,32.22084,Fluoranthene,LB
+37109,21587.74,Benzene,LB
+37109,7475.896,Acetaldehyde,LB
+37109,1152.1538,Naphthalene,LB
+37109,11.67769,Methane,TON
+37109,4545.936,Carbon Monoxide,TON
+37099,3.109462,Benz[a]Anthracene,LB
+37099,2.632268,Manganese,LB
+37099,1521.9204,"1,3-Butadiene",LB
+37099,211.0568,Acrolein,LB
+37099,34003.36,Toluene,LB
+37099,18.529798,Pyrene,LB
+37099,60.46894,Phenanthrene,LB
+37089,0.06581392,Benz[a]Anthracene,LB
+37089,0.9020341,Carbon Monoxide,TON
+37089,796.883,Carbon Dioxide,TON
+37089,0.2108018,PM10 Primary (Filt + Cond),TON
+37081,41.26114,Styrene,LB
+37081,88.66864,Hexane,LB
+37081,0.6593316,Benzo[b]Fluoranthene,LB
+37081,22.78578,Fluoranthene,LB
+37081,0.09078536,Benzo[k]Fluoranthene,LB
+37081,4.248796,Chrysene,LB
+37081,310.2514,Benzene,LB
+37081,38.50234,Phenanthrene,LB
+37081,1.577187,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,221.2668,Acetaldehyde,LB
+37077,1.314838,Fluorene,LB
+37077,0.6539215,Ammonia,TON
+37077,0.1506787,Organic Carbon portion of PM2.5-PRI,TON
+37077,1.0854036,Pyrene,LB
+37077,0.0005122946,Chromium (VI),LB
+37077,0.1948033,Benzo[k]Fluoranthene,LB
+37077,0.18811882,Chrysene,LB
+37077,0.27082,Benzo[a]Pyrene,LB
+37077,456.7794,"2,2,4-Trimethylpentane",LB
+37069,1.433396,Styrene,LB
+37069,8.092688,Xylenes (Mixed Isomers),LB
+37069,108.11466,Formaldehyde,LB
+37069,0.2343666,PM25-Primary from certain diesel engines,TON
+37069,0.3361055,PM10 Primary (Filt + Cond),TON
+37069,0.2448494,PM2.5 Primary (Filt + Cond),TON
+37065,65.5717,Formaldehyde,LB
+37065,8.308056,Acetaldehyde,LB
+37065,0.0013285044,Phenanthrene,LB
+37065,0.01167624,Nitrous Oxide,TON
+37067,1.2726648,Ethyl Benzene,LB
+37067,0.03323478,Acrolein,LB
+37067,1.4966432,Hexane,LB
+37067,0.00257154,"Benzo[g,h,i,]Perylene",LB
+37067,0.0006748642,Benzo[k]Fluoranthene,LB
+37067,0.000640261,Chrysene,LB
+37067,2.218112e-05,"Dibenzo[a,h]Anthracene",LB
+37067,0.002376703,Methane,TON
+37067,5.877099,Carbon Dioxide,TON
+37067,0.0002063898,Ammonia,TON
+37067,0.03584063,Volatile Organic Compounds,TON
+37051,44.19126,Hexane,LB
+37051,0.02245178,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.013025774,Chrysene,LB
+37051,12.049356,Formaldehyde,LB
+37051,0.02235556,Benzo[a]Pyrene,LB
+37051,1.911526,Naphthalene,LB
+37143,8.730274,Volatile Organic Compounds,TON
+37117,6.29762,Xylenes (Mixed Isomers),LB
+37117,0.0013276394,"Benzo[g,h,i,]Perylene",LB
+37117,0.0003961628,"Dibenzo[a,h]Anthracene",LB
+37117,0.004933824,Arsenic,LB
+37117,0.0357975,Methane,TON
+37117,0.02200401,Ammonia,TON
+37111,0.8486968,Naphthalene,LB
+37111,0.01112834,Methane,TON
+37111,0.3364338,Propionaldehyde,LB
+37111,0.02929734,Pyrene,LB
+37121,1.5504476,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,1.330306,Benz[a]Anthracene,LB
+37121,3.035769,PM10 Primary (Filt + Cond),TON
+37115,4.703222,Acrolein,LB
+37115,0.19967832,Anthracene,LB
+37115,3.119204,Propionaldehyde,LB
+37115,0.00233728,"Benzo[g,h,i,]Perylene",LB
+37115,0.416996,Fluoranthene,LB
+37115,0.3210912,Acenaphthylene,LB
+37115,26.0634,Acetaldehyde,LB
+37115,6.56284,Naphthalene,LB
+37115,0.131452,PM25-Primary from certain diesel engines,TON
+37115,0.002003533,Nitrous Oxide,TON
+37115,0.004117496,"Dibenzo[a,h]Anthracene",LB
+37115,0.02160854,Nickel,LB
+37115,57.76216,Acetaldehyde,LB
+37113,0.19697584,Toluene,LB
+37113,0.0005196906,Pyrene,LB
+37113,0.001945815,Ammonia,TON
+37113,0.3181006,Nitrogen Oxides,TON
+37099,3.549978,Hexane,LB
+37099,0.006810508,Pyrene,LB
+37099,0.004042872,Acenaphthene,LB
+37099,0.2099926,Naphthalene,LB
+37099,1.973489,Carbon Monoxide,TON
+37099,0.0004659106,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.2561343,Nitrogen Oxides,TON
+37095,0.007753696,Chrysene,LB
+37095,0.00011441984,Mercury,LB
+37095,0.14432188,Phenanthrene,LB
+37095,0.006199588,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.002769379,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.0003368546,Sulfate Portion of PM2.5-PRI,TON
+37079,4.026202,Ethyl Benzene,LB
+37079,0.0019051854,Benzo[k]Fluoranthene,LB
+37079,0.02824582,Phenanthrene,LB
+37079,0.2688222,Naphthalene,LB
+37079,0.0009742651,Sulfur Dioxide,TON
+37081,38.00632,Ethyl Benzene,LB
+37081,28.94106,Hexane,LB
+37081,6.04661,Acenaphthylene,LB
+37081,3.597152,Acenaphthene,LB
+37081,124.26764,Naphthalene,LB
+37081,0.0381335,Nitrous Oxide,TON
+37081,0.1690388,Ammonia,TON
+37081,0.01449161,Nitrate portion of PM2.5-PRI,TON
+37081,0.07545624,Sulfate Portion of PM2.5-PRI,TON
+37057,0.9307713,Volatile Organic Compounds,TON
+37057,1.4126362e-06,Chromium (VI),LB
+37057,0.2127382,Acenaphthylene,LB
+37057,1.4161536e-05,Mercury,LB
+37057,0.008765556,Organic Carbon portion of PM2.5-PRI,TON
+37055,3.386076,"1,3-Butadiene",LB
+37055,1.7185214e-05,Mercury,LB
+37049,0.007401648,Phenanthrene,LB
+37049,0.003427776,Fluorene,LB
+37049,3.3498,Carbon Monoxide,TON
+37049,0.00392758,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.01556664,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.02354713,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.18659256,"1,3-Butadiene",LB
+37049,0.0009908622,Anthracene,LB
+37049,12.404378,Propionaldehyde,LB
+37049,7.459468,Styrene,LB
+37049,12.846664,Hexane,LB
+37049,27.55562,Propionaldehyde,LB
+37049,1.395038,Benz[a]Anthracene,LB
+37049,1.7093306,Acenaphthene,LB
+37049,2.473964,PM10-Primary from certain diesel engines,TON
+37049,0.2992349,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.07870246,Sulfur Dioxide,TON
+37035,92.69506,Acrolein,LB
+37035,31.82268,Hexane,LB
+37035,0.05349038,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,3.47408,Acenaphthene,LB
+37035,5.013384,PM25-Primary from certain diesel engines,TON
+37035,0.05267681,Nitrous Oxide,TON
+37013,424.124,Formaldehyde,LB
+37013,0.6065518,Benz[a]Anthracene,LB
+37013,0.2174674,Manganese,LB
+37013,0.06115142,Nickel,LB
+37013,1.433745,PM25-Primary from certain diesel engines,TON
+37013,0.3038794,Organic Carbon portion of PM2.5-PRI,TON
+37013,2.475887,PM10 Primary (Filt + Cond),TON
+37013,0.178492,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.1467068,Sulfur Dioxide,TON
+37013,1.931817,Volatile Organic Compounds,TON
+37013,3.91957,Styrene,LB
+37013,0.06762952,Benzo[b]Fluoranthene,LB
+37013,0.009258598,Benzo[k]Fluoranthene,LB
+37013,25.19708,Benzene,LB
+37013,0.010167398,Arsenic,LB
+37013,0.9086344,Acenaphthene,LB
+37013,3839.004,Carbon Dioxide,TON
+37013,1.216326,PM25-Primary from certain diesel engines,TON
+37013,1.646946,PM10 Primary (Filt + Cond),TON
+37021,1401.1622,Ethyl Benzene,LB
+37021,49.51496,"1,3-Butadiene",LB
+37021,2.093718,Pyrene,LB
+37021,1.3350226,"Benzo[g,h,i,]Perylene",LB
+37021,0.50158,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,1.8353392,Fluoranthene,LB
+37021,0.05411404,Nickel,LB
+37021,0.8154939,Ammonia,TON
+37005,9.917568,Acetaldehyde,LB
+37005,0.08448302,Fluorene,LB
+37005,0.002502929,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.01642393,PM2.5 Primary (Filt + Cond),TON
+37005,0.6958934,Propionaldehyde,LB
+37005,0.06966986,Pyrene,LB
+37049,0.012203402,Benzo[k]Fluoranthene,LB
+37049,0.009358092,Chrysene,LB
+37049,0.09126825,Methane,TON
+37049,0.1129087,PM10 Primary (Filt + Cond),TON
+37113,81.53714,"1,3-Butadiene",LB
+37113,1762.6074,Toluene,LB
+37113,405.7302,Hexane,LB
+37113,11.267514,Propionaldehyde,LB
+37113,0.9328584,Pyrene,LB
+37113,0.817337,Fluoranthene,LB
+37113,195.0028,Acetaldehyde,LB
+37113,0.0005533784,Nitrate portion of PM2.5-PRI,TON
+37099,0.013497324,"Benzo[g,h,i,]Perylene",LB
+37099,0.016314804,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,2.385056,Fluoranthene,LB
+37099,1.610131,PM10-Primary from certain diesel engines,TON
+37099,1.481329,PM25-Primary from certain diesel engines,TON
+37099,0.3303403,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.3356924,Phenanthrene,LB
+37095,0.0303998,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.0007279645,Nitrous Oxide,TON
+37095,0.009192721,Ammonia,TON
+37095,3.00647,Acrolein,LB
+37083,2.345764e-05,PM2.5 Primary (Filt + Cond),TON
+37083,0.0002952857,Volatile Organic Compounds,TON
+37073,0.00574584,Manganese,LB
+37073,0.2952668,Phenanthrene,LB
+37073,0.9144012,Ethyl Benzene,LB
+37073,0.02345146,Chrysene,LB
+37073,27.15882,Formaldehyde,LB
+37073,0.0004337666,"Dibenzo[a,h]Anthracene",LB
+37065,4.148578,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,3.187512,Benz[a]Anthracene,LB
+37065,0.0670186,Mercury,LB
+37065,0.8356412,Nickel,LB
+37065,3808.42,Acetaldehyde,LB
+37065,62.4752,Phenanthrene,LB
+37065,597.4988,Naphthalene,LB
+37065,5.906198,Methane,TON
+37065,2687.995,Carbon Monoxide,TON
+37065,5.48534,Nitrous Oxide,TON
+37061,0.3309444,"1,3-Butadiene",LB
+37061,0.03358248,Acenaphthene,LB
+37061,0.0001193259,Nitrate portion of PM2.5-PRI,TON
+37061,0.02655899,PM2.5 Primary (Filt + Cond),TON
+37061,0.003987083,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.2087206,Arsenic,LB
+37051,20.49432,Phenanthrene,LB
+37051,0.09521338,Nitrous Oxide,TON
+37051,11.498466,Fluoranthene,LB
+37049,425.9044,Styrene,LB
+37049,61547.3,Toluene,LB
+37049,0.013319956,Chromium (VI),LB
+37049,0.13955072,"Dibenzo[a,h]Anthracene",LB
+37049,1.495121,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.01928987,Nitrate portion of PM2.5-PRI,TON
+37049,5.278276,Sulfur Dioxide,TON
+37035,46.07318,Naphthalene,LB
+37035,1019.8438,Ethyl Benzene,LB
+37035,1759.5748,Hexane,LB
+37035,1.48019,Pyrene,LB
+37035,0.0003338188,Chromium (VI),LB
+37035,0.05102877,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.1098769,Sulfur Dioxide,TON
+37027,2.339236,Acetaldehyde,LB
+37027,0.03890532,Phenanthrene,LB
+37027,0.03267462,Acenaphthylene,LB
+37027,2.27044,Formaldehyde,LB
+37027,0.0017970866,Benz[a]Anthracene,LB
+37027,8.635786e-05,Sulfate Portion of PM2.5-PRI,TON
+37027,0.02570566,Propionaldehyde,LB
+37027,0.002056048,Pyrene,LB
+37027,0.0005406162,Benzo[b]Fluoranthene,LB
+37027,2.400184e-05,Sulfate Portion of PM2.5-PRI,TON
+37027,5.202994e-07,Mercury,LB
+37047,3295.142,Hexane,LB
+37045,0.2417302,Fluoranthene,LB
+37045,0.16673898,Acenaphthylene,LB
+37045,33.31504,Formaldehyde,LB
+37045,0.0009892366,"Dibenzo[a,h]Anthracene",LB
+37045,0.02082888,Manganese,LB
+37045,1.2068502e-05,Mercury,LB
+37045,0.00565831,Nickel,LB
+37043,7.910383,Volatile Organic Compounds,TON
+37039,0.002985084,Anthracene,LB
+37039,1.7992754,"2,2,4-Trimethylpentane",LB
+37039,0.001489424,Sulfur Dioxide,TON
+37027,3.895984,Nitrogen Oxides,TON
+37027,0.07356458,Organic Carbon portion of PM2.5-PRI,TON
+37027,7.758704,Acrolein,LB
+37027,0.3455562,Anthracene,LB
+37027,558.1996,Benzene,LB
+37027,0.016168138,Nickel,LB
+37007,1.5505338e-08,Chromium (VI),LB
+37007,0.0002467818,Fluorene,LB
+37007,0.006387649,Nitrous Oxide,TON
+37007,0.2047915,Nitrogen Oxides,TON
+37007,0.006719282,PM10 Primary (Filt + Cond),TON
+37007,0.009814862,Benz[a]Anthracene,LB
+37007,7.511846e-07,Mercury,LB
+37007,0.049007,Phenanthrene,LB
+37007,0.001508174,Methane,TON
+37007,0.2115474,Propionaldehyde,LB
+37007,0.005746542,Chrysene,LB
+37007,0.06926768,Styrene,LB
+37007,2.967288,Hexane,LB
+37007,0.00082878,Chrysene,LB
+37007,0.0003584424,Arsenic,LB
+37007,0.1540339,Naphthalene,LB
+37007,1.379159,Carbon Monoxide,TON
+37007,63.15736,Carbon Dioxide,TON
+37007,0.00297446,Ammonia,TON
+37007,0.005601419,PM10 Primary (Filt + Cond),TON
+37007,0.001323633,Sulfur Dioxide,TON
+37007,4.539367e-05,Sulfate Portion of PM2.5-PRI,TON
+37019,0.02010122,Arsenic,LB
+37019,1.7906706,Fluorene,LB
+37019,35.44,Naphthalene,LB
+37019,17.0037,Carbon Monoxide,TON
+37019,23.55416,Toluene,LB
+37019,0.0016485874,Benzo[k]Fluoranthene,LB
+37019,0.03969634,Benzo[a]Pyrene,LB
+37011,2.267668,Styrene,LB
+37011,0.004464476,Benzo[k]Fluoranthene,LB
+37011,0.1437127,Elemental Carbon portion of PM2.5-PRI,TON
+37009,5.598636,Hexane,LB
+37009,0.5466816,Anthracene,LB
+37009,1.1286996,Fluoranthene,LB
+37009,0.00013727714,Mercury,LB
+37009,0.0287034,Arsenic,LB
+37009,89.37352,Acetaldehyde,LB
+37009,0.2255152,Methane,TON
+37009,0.008388364,"Benzo[g,h,i,]Perylene",LB
+37009,0.000900562,Manganese,LB
+37009,0.4721618,Naphthalene,LB
+37009,0.2586496,Nitrogen Oxides,TON
+37009,0.003414894,PM2.5 Primary (Filt + Cond),TON
+37009,1.3065934,"1,3-Butadiene",LB
+37009,0.007764568,Anthracene,LB
+37009,0.01510248,Pyrene,LB
+37005,1.915215,"1,3-Butadiene",LB
+37005,3.698448e-05,Chromium (VI),LB
+37005,0.0014741128,Benzo[k]Fluoranthene,LB
+37005,0.03457282,Benzo[a]Pyrene,LB
+37005,0.000620669,Nitrate portion of PM2.5-PRI,TON
+37005,0.311117,PM2.5 Primary (Filt + Cond),TON
+37005,0.01726408,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.127686,PM10 Primary (Filt + Cond),TON
+37005,3.094601,Volatile Organic Compounds,TON
+37005,28.63784,"1,3-Butadiene",LB
+37005,0.0582476,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.0001491868,Ethyl Benzene,LB
+37003,2.762748e-05,"1,3-Butadiene",LB
+37003,4.828666e-10,Mercury,LB
+37003,0.003277288,Carbon Dioxide,TON
+37003,4.377079e-07,PM10 Primary (Filt + Cond),TON
+37003,1.557585e-07,PM2.5 Primary (Filt + Cond),TON
+37003,6.872372e-08,Sulfur Dioxide,TON
+37001,35277.9,Benzene,LB
+37001,2.48454,Nickel,LB
+37001,19.27289,Methane,TON
+37001,3.176862,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.013243124,"1,3-Butadiene",LB
+37185,0.0005182232,Acenaphthylene,LB
+37185,0.2161524,Formaldehyde,LB
+37185,6.155604e-06,"Dibenzo[a,h]Anthracene",LB
+37185,0.000136976,Nickel,LB
+37185,0.0006406802,Phenanthrene,LB
+37185,0.0002455682,Nitrous Oxide,TON
+37055,0.3856502,Ethyl Benzene,LB
+37055,0.019000042,Styrene,LB
+37055,0.08066208,"1,3-Butadiene",LB
+37055,0.6700952,Hexane,LB
+37055,0.0006150086,Anthracene,LB
+37055,0.0006568386,Acenaphthene,LB
+37055,0.0013305428,Fluorene,LB
+37043,0.006777678,Nitrogen Oxides,TON
+37043,4.537414e-06,Sulfate Portion of PM2.5-PRI,TON
+37043,0.00426355,Volatile Organic Compounds,TON
+37043,0.03711362,Ethyl Benzene,LB
+37043,0.05733832,Hexane,LB
+37043,0.00010944196,Fluoranthene,LB
+37043,0.0002984746,Acenaphthylene,LB
+37043,6.348392e-05,Nickel,LB
+37043,9.73442e-05,Arsenic,LB
+37167,3.292756e-06,Chromium (VI),LB
+37167,0.0003097082,Chrysene,LB
+37167,0.0007653682,Benzo[a]Pyrene,LB
+37167,1.7804292e-05,"Dibenzo[a,h]Anthracene",LB
+37167,0.386148,"2,2,4-Trimethylpentane",LB
+37167,0.04980102,Ammonia,TON
+37167,0.5069299,Volatile Organic Compounds,TON
+37167,1.839271,Propionaldehyde,LB
+37167,0.0364872,"Benzo[g,h,i,]Perylene",LB
+37167,0.0003147034,"Dibenzo[a,h]Anthracene",LB
+37175,0.001649023,Ammonia,TON
+37175,1.386883e-06,Nitrate portion of PM2.5-PRI,TON
+37175,0.04529433,Volatile Organic Compounds,TON
+37175,0.14443952,Benzene,LB
+37173,1.6285752,Propionaldehyde,LB
+37173,0.1638526,Pyrene,LB
+37165,0.002575432,PM2.5 Primary (Filt + Cond),TON
+37165,0.03903149,Volatile Organic Compounds,TON
+37165,0.0012202606,Benzo[k]Fluoranthene,LB
+37173,0.001043511,Sulfur Dioxide,TON
+37173,1.85444e-05,Sulfate Portion of PM2.5-PRI,TON
+37173,0.006150712,Styrene,LB
+37173,0.02601834,"1,3-Butadiene",LB
+37173,0.0013253782,"Benzo[g,h,i,]Perylene",LB
+37173,0.4051256,Formaldehyde,LB
+37173,0.6125344,Benzene,LB
+37153,0.001395729,"Benzo[g,h,i,]Perylene",LB
+37153,0.0004053038,Fluoranthene,LB
+37153,1.2036996e-05,"Dibenzo[a,h]Anthracene",LB
+37153,0.0004250602,Arsenic,LB
+37153,0.0004707324,Fluorene,LB
+37153,0.001914948,Ammonia,TON
+37153,0.01619237,Volatile Organic Compounds,TON
+37123,0.02060064,Acrolein,LB
+37123,0.0003490546,Fluoranthene,LB
+37123,0.0004451876,Benzo[a]Pyrene,LB
+37123,2.326368,Acetaldehyde,LB
+37123,0.000278947,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.0001836069,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.01345226,Volatile Organic Compounds,TON
+37109,21.76474,Formaldehyde,LB
+37109,0.0004557054,"Dibenzo[a,h]Anthracene",LB
+37109,11.59418,Carbon Monoxide,TON
+37109,6.017148,Ethyl Benzene,LB
+37109,0.3022364,Styrene,LB
+37093,3.478362,"2,2,4-Trimethylpentane",LB
+37175,0.0002650552,Elemental Carbon portion of PM2.5-PRI,TON
+37175,3.220989e-06,Nitrate portion of PM2.5-PRI,TON
+37175,6.975104,Xylenes (Mixed Isomers),LB
+37175,7298.8,Hexane,LB
+37175,7.386676,"Benzo[g,h,i,]Perylene",LB
+37175,15.005308,Fluoranthene,LB
+37175,47.3065,Acenaphthylene,LB
+37175,2.806564,Benzo[a]Pyrene,LB
+37175,0.06373746,"Dibenzo[a,h]Anthracene",LB
+37175,1.6693986,Manganese,LB
+37175,5.450201,Methane,TON
+37175,238.3279,Nitrogen Oxides,TON
+37175,1.747689,Sulfur Dioxide,TON
+37167,0.0011018886,"Dibenzo[a,h]Anthracene",LB
+37167,0.08626465,PM25-Primary from certain diesel engines,TON
+37167,0.01737921,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,2.848654,Xylenes (Mixed Isomers),LB
+37167,0.5600946,Ethyl Benzene,LB
+37167,0.429688,Hexane,LB
+37167,0.0011632096,Arsenic,LB
+37159,57.4573,Propionaldehyde,LB
+37159,0.2317904,Benzo[b]Fluoranthene,LB
+37159,1.495704,Chrysene,LB
+37159,33.30282,"2,2,4-Trimethylpentane",LB
+37159,513.523,Acetaldehyde,LB
+37159,16323.88,Carbon Dioxide,TON
+37159,49.28728,Nitrogen Oxides,TON
+37149,29.74902,Acrolein,LB
+37149,19.302136,Propionaldehyde,LB
+37149,2.407064,Fluoranthene,LB
+37149,15088.6,Carbon Dioxide,TON
+37149,0.1288296,Sulfur Dioxide,TON
+37151,260.4674,Toluene,LB
+37151,24.26972,Acenaphthylene,LB
+37151,0.015804308,"Dibenzo[a,h]Anthracene",LB
+37151,399.6856,Benzene,LB
+37151,0.7048754,Ammonia,TON
+37151,19.71637,Xylenes (Mixed Isomers),LB
+37151,0.004179252,Benzo[b]Fluoranthene,LB
+37151,1.0360064,Fluoranthene,LB
+37151,20.2629,Acrolein,LB
+37151,112.7435,Acetaldehyde,LB
+37151,1.3813764,Fluorene,LB
+37151,1312.636,Carbon Dioxide,TON
+37151,0.005480151,Sulfate Portion of PM2.5-PRI,TON
+37139,1.8278262,Hexane,LB
+37139,0.003676638,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,1.8606332,"2,2,4-Trimethylpentane",LB
+37139,457.4475,Carbon Dioxide,TON
+37199,0.18558544,Ethyl Benzene,LB
+37199,0.0003059932,Anthracene,LB
+37199,9.447978e-05,Benzo[b]Fluoranthene,LB
+37199,0.00010961328,Manganese,LB
+37199,0.000589192,PM10 Primary (Filt + Cond),TON
+37199,0.0001185584,Sulfur Dioxide,TON
+37195,0.708085,Hexane,LB
+37195,1.5183874,Xylenes (Mixed Isomers),LB
+37195,0.0013246238,Fluoranthene,LB
+37195,0.800769,"2,2,4-Trimethylpentane",LB
+37195,0.002414932,Manganese,LB
+37195,0.001308683,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.08085016,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.0018555644,"Dibenzo[a,h]Anthracene",LB
+37197,1632.05,Carbon Dioxide,TON
+37197,0.06246667,Nitrous Oxide,TON
+37197,0.1607579,PM10 Primary (Filt + Cond),TON
+37197,0.39564,Styrene,LB
+37197,13.208714,Hexane,LB
+37197,0.02742606,Pyrene,LB
+37197,0.008115662,Benzo[a]Pyrene,LB
+37197,0.0001866629,"Dibenzo[a,h]Anthracene",LB
+37197,0.0005367102,Manganese,LB
+37197,0.00014106588,Arsenic,LB
+37197,5.329302,Acetaldehyde,LB
+37197,0.0329566,Fluorene,LB
+37197,0.001004529,Ammonia,TON
+37197,0.004077661,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.1267069,Pyrene,LB
+37189,0.03080368,Benz[a]Anthracene,LB
+37189,4.247702e-06,Mercury,LB
+37189,0.03421578,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.0001678364,Nitrate portion of PM2.5-PRI,TON
+37187,14.575206,Xylenes (Mixed Isomers),LB
+37187,0.0011879044,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.0006450398,"Dibenzo[a,h]Anthracene",LB
+37187,5.029976e-05,Mercury,LB
+37187,0.03640486,Nickel,LB
+37187,0.01276459,Sulfur Dioxide,TON
+37179,0.238394,Fluorene,LB
+37179,0.008193322,Methane,TON
+37179,0.07094146,PM25-Primary from certain diesel engines,TON
+37179,0.0342631,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.00178735,Sulfate Portion of PM2.5-PRI,TON
+37179,2.586982,Acrolein,LB
+37179,0.805232,Hexane,LB
+37179,0.0010047034,Benzo[k]Fluoranthene,LB
+37179,0.04769778,Chrysene,LB
+37177,58.84615,Carbon Dioxide,TON
+37177,7.948255e-06,Nitrate portion of PM2.5-PRI,TON
+37177,1.5140008e-05,Benzo[k]Fluoranthene,LB
+37173,13.855682,Toluene,LB
+37173,0.6282762,Anthracene,LB
+37173,1.789021,Pyrene,LB
+37173,0.03885124,Benzo[b]Fluoranthene,LB
+37173,1.3558124,Fluoranthene,LB
+37173,0.9698482,Acenaphthylene,LB
+37173,2.209954,Phenanthrene,LB
+37173,0.4997964,PM10-Primary from certain diesel engines,TON
+37173,1.045757,Volatile Organic Compounds,TON
+37173,0.0003921698,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.2481386,Fluoranthene,LB
+37173,5.395858,Benzene,LB
+37173,0.18624726,Acenaphthene,LB
+37173,0.3200534,Fluorene,LB
+37041,7.13279,"1,3-Butadiene",LB
+37041,14.016536,Toluene,LB
+37041,1.2182056,Acenaphthylene,LB
+37041,4.0969e-05,Mercury,LB
+37041,0.008566036,Arsenic,LB
+37041,94.01918,Acetaldehyde,LB
+37041,0.005413149,Sulfate Portion of PM2.5-PRI,TON
+37033,409.8274,Xylenes (Mixed Isomers),LB
+37033,0.0302293,Benzo[b]Fluoranthene,LB
+37033,0.14548908,Fluoranthene,LB
+37033,0.04096045,PM2.5 Primary (Filt + Cond),TON
+37033,0.01379497,Sulfur Dioxide,TON
+37033,0.001253781,Sulfate Portion of PM2.5-PRI,TON
+37031,0.0002197316,Chromium (VI),LB
+37031,0.02416576,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,15.51409,"2,2,4-Trimethylpentane",LB
+37031,46.03422,Benzene,LB
+37031,15.70955,Carbon Monoxide,TON
+37025,76843.68,Xylenes (Mixed Isomers),LB
+37025,0.02726304,Chromium (VI),LB
+37025,10694.12,Formaldehyde,LB
+37025,3.407814,Nickel,LB
+37025,187.30218,Phenanthrene,LB
+37025,7855.168,Carbon Monoxide,TON
+37025,11.17546,Sulfur Dioxide,TON
+37025,11661.486,Ethyl Benzene,LB
+37025,4656.312,Formaldehyde,LB
+37025,5.659522,Organic Carbon portion of PM2.5-PRI,TON
+37025,8.160762,Sulfur Dioxide,TON
+37025,0.3692595,Sulfate Portion of PM2.5-PRI,TON
+37173,0.2190522,Styrene,LB
+37173,0.05728908,Anthracene,LB
+37173,0.0011246086,Arsenic,LB
+37173,0.201432,Phenanthrene,LB
+37173,0.0004379877,Nitrous Oxide,TON
+37173,0.04621151,PM2.5 Primary (Filt + Cond),TON
+37097,556.4952,Carbon Dioxide,TON
+37097,0.016787204,Anthracene,LB
+37097,0.08795548,Acenaphthylene,LB
+37097,0.007909898,Chrysene,LB
+37097,13.16433,"2,2,4-Trimethylpentane",LB
+37097,0.0001400365,Mercury,LB
+37097,0.0389767,Fluorene,LB
+37081,4.173805,Organic Carbon portion of PM2.5-PRI,TON
+37081,39.32584,Volatile Organic Compounds,TON
+37081,252.692,Hexane,LB
+37081,39.77984,Pyrene,LB
+37081,0.17623872,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.0317928,"1,3-Butadiene",LB
+37081,0.0017648506,Anthracene,LB
+37081,0.000977724,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.002702892,Manganese,LB
+37077,1.6225478,Acetaldehyde,LB
+37077,180.9057,Carbon Dioxide,TON
+37077,0.003976683,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.007799644,PM2.5 Primary (Filt + Cond),TON
+37075,0.7913888,"1,3-Butadiene",LB
+37075,0.6613936,Hexane,LB
+37075,0.08228414,Anthracene,LB
+37075,3.725014e-06,Chromium (VI),LB
+37075,0.1344788,Acenaphthylene,LB
+37075,0.014501066,Benzo[a]Pyrene,LB
+37075,0.0800122,Acenaphthene,LB
+37075,0.001042189,Sulfate Portion of PM2.5-PRI,TON
+37075,0.1451042,Volatile Organic Compounds,TON
+37071,113.23996,Acrolein,LB
+37071,14.157044,Pyrene,LB
+37071,0.3145922,Benzo[b]Fluoranthene,LB
+37071,10.705896,Fluoranthene,LB
+37071,2.021316,Chrysene,LB
+37071,159.04142,Naphthalene,LB
+37071,0.1609421,Sulfur Dioxide,TON
+37071,0.0025351,Fluoranthene,LB
+37071,0.0379101,Styrene,LB
+37071,0.17203042,"1,3-Butadiene",LB
+37071,0.002882682,Pyrene,LB
+37063,3.213436,Acrolein,LB
+37063,0.001834649,"Benzo[g,h,i,]Perylene",LB
+37063,0.008851762,Benzo[b]Fluoranthene,LB
+37063,0.13844428,Acenaphthene,LB
+37063,0.008605677,Methane,TON
+37063,0.005800796,Ammonia,TON
+37063,0.04111824,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.3005981,Sulfate Portion of PM2.5-PRI,TON
+37057,0.972265,Chrysene,LB
+37057,43355.79,Carbon Dioxide,TON
+37057,0.8948122,Anthracene,LB
+37057,0.006379436,Benzo[b]Fluoranthene,LB
+37057,1.8527094,Acenaphthylene,LB
+37057,0.09786414,Chrysene,LB
+37057,1.1022678,Acenaphthene,LB
+37057,2.995082,Phenanthrene,LB
+37057,0.1994953,Methane,TON
+37057,0.1595256,PM10 Primary (Filt + Cond),TON
+37055,3126.722,Benzene,LB
+37055,1.9188086,Manganese,LB
+37055,0.005451463,Nitrate portion of PM2.5-PRI,TON
+37055,2.27762,PM2.5 Primary (Filt + Cond),TON
+37055,3089,Hexane,LB
+37055,4.98569,Pyrene,LB
+37053,2.968268,Acrolein,LB
+37053,1211.5282,Toluene,LB
+37053,0.1320989,Anthracene,LB
+37053,625.041,Xylenes (Mixed Isomers),LB
+37053,0.04438296,Chrysene,LB
+37053,208.6838,Benzene,LB
+37053,0.03497649,Organic Carbon portion of PM2.5-PRI,TON
+37047,7.43275,Toluene,LB
+37047,0.4279872,Anthracene,LB
+37047,0.014879212,Benzo[b]Fluoranthene,LB
+37047,0.10986634,Chrysene,LB
+37047,125.6763,Formaldehyde,LB
+37047,0.01592067,Methane,TON
+37047,1222.438,Carbon Dioxide,TON
+37047,0.2977671,PM25-Primary from certain diesel engines,TON
+37047,0.01781671,Ammonia,TON
+37039,0.3280224,"1,3-Butadiene",LB
+37039,0.7613212,Toluene,LB
+37039,0.10383506,Pyrene,LB
+37039,3.6481e-06,Chromium (VI),LB
+37039,0.0003134286,Benzo[k]Fluoranthene,LB
+37039,0.12760428,Phenanthrene,LB
+37039,0.04720768,PM25-Primary from certain diesel engines,TON
+37037,1.792606,"1,3-Butadiene",LB
+37037,0.0002058914,"Dibenzo[a,h]Anthracene",LB
+37037,15.24722,Benzene,LB
+37037,0.07775404,Phenanthrene,LB
+37037,0.0002930527,Sulfate Portion of PM2.5-PRI,TON
+37029,5.681558e-06,Mercury,LB
+37029,0.0002521886,Naphthalene,LB
+37029,0.003555133,Nitrous Oxide,TON
+37027,12.143204,"1,3-Butadiene",LB
+37027,36.8938,Toluene,LB
+37027,39.65124,Benzene,LB
+37027,2.952857,PM10 Primary (Filt + Cond),TON
+37027,0.2521417,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.1143948,Sulfate Portion of PM2.5-PRI,TON
+37027,2.318598,Volatile Organic Compounds,TON
+37173,0.03354696,"1,3-Butadiene",LB
+37173,0.230982,Hexane,LB
+37173,0.00010714918,Benzo[b]Fluoranthene,LB
+37173,0.00010446998,Benz[a]Anthracene,LB
+37173,0.000635851,Fluorene,LB
+37173,8.357969e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.004575706,Volatile Organic Compounds,TON
+37171,569.541,Styrene,LB
+37171,490.6152,Propionaldehyde,LB
+37171,34.91036,Fluoranthene,LB
+37171,108.61702,Acenaphthylene,LB
+37171,0.2220248,"Dibenzo[a,h]Anthracene",LB
+37171,7.026552,Benz[a]Anthracene,LB
+37171,129.60352,Phenanthrene,LB
+37171,276168.2,Carbon Dioxide,TON
+37165,18.242524,Acrolein,LB
+37165,0.8750188,Anthracene,LB
+37165,5.92172e-05,Chromium (VI),LB
+37165,0.011615702,"Benzo[g,h,i,]Perylene",LB
+37165,0.05767004,Benzo[b]Fluoranthene,LB
+37165,4.635884e-05,Mercury,LB
+37163,18505.018,Toluene,LB
+37163,4329.466,"2,2,4-Trimethylpentane",LB
+37157,59.77036,Hexane,LB
+37157,48.30774,Phenanthrene,LB
+37157,4.406128,Nitrous Oxide,TON
+37157,3.111546,Benzo[b]Fluoranthene,LB
+37157,6323.436,Ethyl Benzene,LB
+37147,18.13342,Hexane,LB
+37147,721.3324,Formaldehyde,LB
+37147,0.3588218,Manganese,LB
+37147,0.00015050632,Mercury,LB
+37147,314.9298,Acetaldehyde,LB
+37147,2.405532,Acenaphthene,LB
+37147,9.408812,Phenanthrene,LB
+37147,0.01852461,Nitrous Oxide,TON
+37147,0.1747389,Ammonia,TON
+37147,0.8902482,Organic Carbon portion of PM2.5-PRI,TON
+37145,4.06428,Styrene,LB
+37145,9.314264,"1,3-Butadiene",LB
+37145,23.9513,Acrolein,LB
+37145,15.565,Propionaldehyde,LB
+37145,7.090684e-05,Chromium (VI),LB
+37145,0.008737208,"Dibenzo[a,h]Anthracene",LB
+37145,28.70966,Benzene,LB
+37145,0.08587038,Manganese,LB
+37145,33.63792,Naphthalene,LB
+37145,7.52562,Carbon Monoxide,TON
+37145,225.6202,Naphthalene,LB
+37145,801.5748,Carbon Monoxide,TON
+37145,0.4642481,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.9626839,Organic Carbon portion of PM2.5-PRI,TON
+37145,5.285492,PM10 Primary (Filt + Cond),TON
+37145,1.103833,Sulfur Dioxide,TON
+37145,692.6918,"1,3-Butadiene",LB
+37145,83.6048,Propionaldehyde,LB
+37145,0.003664794,Chromium (VI),LB
+37129,42.0105,"1,3-Butadiene",LB
+37129,194.7801,Toluene,LB
+37129,10.607032,Fluoranthene,LB
+37129,0.464553,Hexane,LB
+37129,161.8194,Carbon Dioxide,TON
+37129,0.05899789,PM10 Primary (Filt + Cond),TON
+37141,2.11136,Benzene,LB
+37141,0.0019230728,Arsenic,LB
+37141,2.471226,Naphthalene,LB
+37141,0.01024896,Ammonia,TON
+37141,0.7606636,Ethyl Benzene,LB
+37141,0.0009301844,"Benzo[g,h,i,]Perylene",LB
+37137,0.11301448,Propionaldehyde,LB
+37137,5.81568e-05,Benzo[k]Fluoranthene,LB
+37137,0.002793736,Chrysene,LB
+37137,0.05130592,"2,2,4-Trimethylpentane",LB
+37137,0.0002525178,Nickel,LB
+37137,0.014853984,Fluorene,LB
+37137,0.006107064,PM10 Primary (Filt + Cond),TON
+37137,0.0001240495,Sulfate Portion of PM2.5-PRI,TON
+37137,0.0006471456,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.0009669273,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,1.8393152,Toluene,LB
+37137,0.0001675468,"Benzo[g,h,i,]Perylene",LB
+37137,0.008454736,Benz[a]Anthracene,LB
+37137,0.00359431,Manganese,LB
+37137,0.05016408,Acenaphthene,LB
+37137,0.1501496,Phenanthrene,LB
+37131,1.6214298,Hexane,LB
+37131,4.23303,Xylenes (Mixed Isomers),LB
+37131,0.07563939,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.001904822,Nitrous Oxide,TON
+37131,0.1705436,PM2.5 Primary (Filt + Cond),TON
+37131,0.08014218,Nickel,LB
+37131,1.6637656,Acenaphthene,LB
+37131,0.000136668,Chromium (VI),LB
+37131,0.03981134,Benzo[a]Pyrene,LB
+37131,2.883654,Volatile Organic Compounds,TON
+37113,0.002414683,Sulfate Portion of PM2.5-PRI,TON
+37113,0.7095902,"1,3-Butadiene",LB
+37113,0.18097938,Fluoranthene,LB
+37113,2.147752,Benzene,LB
+37113,0.06463196,PM10-Primary from certain diesel engines,TON
+37113,0.0006847948,Nitrous Oxide,TON
+37109,568.9214,Ethyl Benzene,LB
+37109,743.581,Hexane,LB
+37109,0.821246,Anthracene,LB
+37109,19.29442,Propionaldehyde,LB
+37109,0.324566,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,4.38124,Acenaphthylene,LB
+37109,0.3263478,Benzo[a]Pyrene,LB
+37109,0.6086459,Methane,TON
+37109,0.08560328,Elemental Carbon portion of PM2.5-PRI,TON
+37109,25.63369,Nitrogen Oxides,TON
+37097,10.05513,Hexane,LB
+37097,1.8862564,Acenaphthylene,LB
+37097,0.02141784,Benzo[a]Pyrene,LB
+37097,0.07947594,PM10-Primary from certain diesel engines,TON
+37097,0.07311626,PM25-Primary from certain diesel engines,TON
+37097,2.098916,Volatile Organic Compounds,TON
+37091,4.670245,Carbon Monoxide,TON
+37091,2043.891,Carbon Dioxide,TON
+37091,5.785782,"1,3-Butadiene",LB
+37091,14.765772,Acrolein,LB
+37091,4.876902,Hexane,LB
+37091,1.8175828,Pyrene,LB
+37091,0.005427298,Benzo[k]Fluoranthene,LB
+37091,82.40624,Acetaldehyde,LB
+37105,0.1697328,Volatile Organic Compounds,TON
+37105,0.16908302,Styrene,LB
+37105,2.337892,Formaldehyde,LB
+37105,0.002861526,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.002372388,Propionaldehyde,LB
+37101,0.0002588934,Pyrene,LB
+37101,0.04858546,Formaldehyde,LB
+37101,0.15239588,Benzene,LB
+37101,0.0007811908,Phenanthrene,LB
+37101,0.0006065014,PM10 Primary (Filt + Cond),TON
+37099,0.3603677,PM10 Primary (Filt + Cond),TON
+37099,1.1083936,Pyrene,LB
+37099,0.00318979,"Dibenzo[a,h]Anthracene",LB
+37099,0.2615068,Benz[a]Anthracene,LB
+37099,50.57868,Acetaldehyde,LB
+37099,1.3714588,Phenanthrene,LB
+37099,0.7938436,Fluorene,LB
+37099,0.05671914,Methane,TON
+37129,1.634321,Nitrogen Oxides,TON
+37129,18.132066,Hexane,LB
+37129,0.018372396,Benzo[k]Fluoranthene,LB
+37129,0.0008039316,"Dibenzo[a,h]Anthracene",LB
+37129,21.04209,Carbon Monoxide,TON
+37131,1.6602976,Toluene,LB
+37131,6.755963e-05,Sulfate Portion of PM2.5-PRI,TON
+37177,927.6658,Hexane,LB
+37177,0.4793588,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,904.698,"2,2,4-Trimethylpentane",LB
+37177,1.410826,Ammonia,TON
+37177,1.08268,PM10 Primary (Filt + Cond),TON
+37177,0.139484,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,2.926832,Styrene,LB
+37175,2.557588,Acrolein,LB
+37175,286.1882,Hexane,LB
+37175,0.219204,Pyrene,LB
+37175,0.04580836,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.1920962,Fluoranthene,LB
+37175,48.83906,Formaldehyde,LB
+37175,733.0804,Carbon Dioxide,TON
+37175,0.001411664,Sulfate Portion of PM2.5-PRI,TON
+37169,0.03493144,Chrysene,LB
+37169,4.435346,Benzene,LB
+37169,0.003396644,Anthracene,LB
+37169,0.006445968,"Benzo[g,h,i,]Perylene",LB
+37169,0.0015548084,Benzo[b]Fluoranthene,LB
+37169,0.0002581978,Nickel,LB
+37169,0.0005284475,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.003214271,Ammonia,TON
+37169,7.429225e-06,Nitrate portion of PM2.5-PRI,TON
+37169,0.187137,Nitrogen Oxides,TON
+37169,0.001338754,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.006482128,PM10 Primary (Filt + Cond),TON
+37167,45.68718,Xylenes (Mixed Isomers),LB
+37167,36.41492,"2,2,4-Trimethylpentane",LB
+37153,19.378022,Propionaldehyde,LB
+37153,31.68444,Xylenes (Mixed Isomers),LB
+37153,0.00962463,"Dibenzo[a,h]Anthracene",LB
+37153,1.707699,PM25-Primary from certain diesel engines,TON
+37153,45.28092,Nitrogen Oxides,TON
+37135,72.9275,Ethyl Benzene,LB
+37135,0.0778508,Benzo[k]Fluoranthene,LB
+37135,0.003122698,"Dibenzo[a,h]Anthracene",LB
+37135,85.6503,"2,2,4-Trimethylpentane",LB
+37135,0.1537421,Ammonia,TON
+37135,8.024247,Nitrogen Oxides,TON
+37137,0.01562897,Sulfur Dioxide,TON
+37137,10.58002,Ethyl Benzene,LB
+37137,10.60552,"1,3-Butadiene",LB
+37137,25.43512,Acrolein,LB
+37137,17.31436,Propionaldehyde,LB
+37137,0.004102782,"Benzo[g,h,i,]Perylene",LB
+37137,0.0986266,Chrysene,LB
+37137,1.825358,Fluorene,LB
+37137,35.19184,Naphthalene,LB
+37129,0.3698214,Propionaldehyde,LB
+37129,0.03129864,Pyrene,LB
+37129,0.00447361,Benzo[b]Fluoranthene,LB
+37129,0.02741662,Fluoranthene,LB
+37129,0.00447361,Benzo[k]Fluoranthene,LB
+37129,0.00465301,Chrysene,LB
+37129,0.03841894,Fluorene,LB
+37065,0.15934526,Styrene,LB
+37065,0.5513228,Acrolein,LB
+37065,0.005139164,Anthracene,LB
+37065,11.329596,Xylenes (Mixed Isomers),LB
+37065,4.14462e-05,Chromium (VI),LB
+37065,0.03220984,"Benzo[g,h,i,]Perylene",LB
+37065,0.012101628,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.011158266,Fluorene,LB
+37065,0.04374736,Methane,TON
+37065,0.002880733,Elemental Carbon portion of PM2.5-PRI,TON
+37137,31.52308,Carbon Dioxide,TON
+37137,0.001916814,Ammonia,TON
+37137,0.002270206,PM10 Primary (Filt + Cond),TON
+37137,0.0006269827,PM2.5 Primary (Filt + Cond),TON
+37137,0.01934276,Volatile Organic Compounds,TON
+37137,0.03675,"1,3-Butadiene",LB
+37133,5.273062,Ethyl Benzene,LB
+37175,0.11340008,Fluorene,LB
+37175,159.7301,Carbon Dioxide,TON
+37175,0.01407307,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.00453915,Ammonia,TON
+37175,0.4942646,"1,3-Butadiene",LB
+37175,1.2354866,Xylenes (Mixed Isomers),LB
+37175,0.02480782,Chrysene,LB
+37175,1.5002484,Benzene,LB
+37175,4.281952e-06,Mercury,LB
+37175,0.003804156,Propionaldehyde,LB
+37175,0.010294516,Naphthalene,LB
+37175,0.0001435188,Methane,TON
+37165,0.09357874,Acrolein,LB
+37165,1.5082036e-06,Chromium (VI),LB
+37165,0.002235928,Benzo[b]Fluoranthene,LB
+37165,0.002009851,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.001216938,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.001994912,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.00463923,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.0003705529,Sulfate Portion of PM2.5-PRI,TON
+37159,0.07041854,Acenaphthylene,LB
+37159,0.009731794,Benzo[a]Pyrene,LB
+37159,16.666098,Benzene,LB
+37159,0.001119301,Nickel,LB
+37155,0.02535694,Anthracene,LB
+37155,0.05105856,Pyrene,LB
+37155,8.39304e-06,Chromium (VI),LB
+37155,0.08387116,"Benzo[g,h,i,]Perylene",LB
+37155,0.04491134,Fluoranthene,LB
+37155,0.01235131,Ammonia,TON
+37155,0.6024593,Volatile Organic Compounds,TON
+37147,14.095668,"1,3-Butadiene",LB
+37147,35.4852,Acrolein,LB
+37147,23.385,Propionaldehyde,LB
+37147,0.0210537,Benzo[b]Fluoranthene,LB
+37147,0.002917566,Benzo[k]Fluoranthene,LB
+37147,0.002902362,"Dibenzo[a,h]Anthracene",LB
+37147,0.3928462,Benz[a]Anthracene,LB
+37147,197.21644,Acetaldehyde,LB
+37147,2.533744,Fluorene,LB
+37147,49.61604,Naphthalene,LB
+37147,0.2357864,Methane,TON
+37147,0.4702864,PM25-Primary from certain diesel engines,TON
+37143,3.029062,"1,3-Butadiene",LB
+37143,8.08639,Acrolein,LB
+37143,8.762724,Toluene,LB
+37143,0.0205518,Nickel,LB
+37143,11.442886,Naphthalene,LB
+37143,0.08095773,Methane,TON
+37143,0.4356872,PM2.5 Primary (Filt + Cond),TON
+37141,1.2969144,Ethyl Benzene,LB
+37141,0.002139634,Anthracene,LB
+37141,0.0011167122,Manganese,LB
+37141,0.00019346964,Arsenic,LB
+37141,0.002489314,Acenaphthene,LB
+37141,0.001005232,Methane,TON
+37141,0.0002292401,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.2088382,Acrolein,LB
+37127,0.0215373,Fluorene,LB
+37127,0.006493509,Methane,TON
+37111,9.63018,Nitrogen Oxides,TON
+37111,0.00883839,Sulfur Dioxide,TON
+37111,8.69106,Acrolein,LB
+37111,0.01202368,Benzo[b]Fluoranthene,LB
+37111,0.02305678,Manganese,LB
+37111,0.01416279,Methane,TON
+37111,0.15605192,Anthracene,LB
+37111,0.000722114,"Benzo[g,h,i,]Perylene",LB
+37111,0.0011082098,Benzo[b]Fluoranthene,LB
+37111,0.03736468,Benz[a]Anthracene,LB
+37111,6.074982,Benzene,LB
+37111,0.019541436,Nickel,LB
+37111,0.3319816,Fluorene,LB
+37111,0.04975912,Methane,TON
+37111,6.898544,Carbon Monoxide,TON
+37111,0.01245502,PM25-Primary from certain diesel engines,TON
+37111,0.01662764,PM2.5 Primary (Filt + Cond),TON
+37001,35.23158,Toluene,LB
+37001,14.969112,Xylenes (Mixed Isomers),LB
+37177,0.08125478,Acrolein,LB
+37177,6.492544e-06,Chromium (VI),LB
+37177,1.8419076,Formaldehyde,LB
+37177,0.0016895966,Fluorene,LB
+37177,0.04349988,Naphthalene,LB
+37177,6.188018e-05,Sulfate Portion of PM2.5-PRI,TON
+37177,0.05225143,Volatile Organic Compounds,TON
+37079,0.2295748,Ethyl Benzene,LB
+37079,4.656766e-05,Mercury,LB
+37079,0.0005806258,Nickel,LB
+37079,0.0008115424,Nitrous Oxide,TON
+37079,0.001142047,PM2.5 Primary (Filt + Cond),TON
+37079,0.02937874,Volatile Organic Compounds,TON
+37079,0.0007985448,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.0017654094,Acenaphthylene,LB
+37171,152.9403,Toluene,LB
+37171,0.04814608,"Benzo[g,h,i,]Perylene",LB
+37171,0.02936454,Nitrous Oxide,TON
+37165,3.730452,Carbon Monoxide,TON
+37165,0.01552209,Ammonia,TON
+37165,2.24831,Ethyl Benzene,LB
+37165,4.5889,Toluene,LB
+37165,1.8225904e-05,Chromium (VI),LB
+37165,0.0003274248,Benzo[k]Fluoranthene,LB
+37165,0.0079241,Benzo[a]Pyrene,LB
+37165,6.369406,Benzene,LB
+37161,10.19503,Ethyl Benzene,LB
+37161,0.2645454,Propionaldehyde,LB
+37161,0.00473069,Benzo[k]Fluoranthene,LB
+37161,0.05917614,Acenaphthylene,LB
+37161,0.004339482,Chrysene,LB
+37161,4.13198,Formaldehyde,LB
+37161,0.00016415192,"Dibenzo[a,h]Anthracene",LB
+37161,0.001303823,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.003925365,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.0391663,Styrene,LB
+37149,0.0008269234,Benzo[k]Fluoranthene,LB
+37149,3.106744e-05,"Dibenzo[a,h]Anthracene",LB
+37149,0.0007717166,Benz[a]Anthracene,LB
+37149,0.00010566514,Nickel,LB
+37149,0.0009251667,Methane,TON
+37019,0.000292235,"Benzo[g,h,i,]Perylene",LB
+37019,0.0005375026,Acenaphthylene,LB
+37019,0.0006475878,Phenanthrene,LB
+37019,6.448976e-05,Organic Carbon portion of PM2.5-PRI,TON
+37017,2157.76,"2,2,4-Trimethylpentane",LB
+37015,0.01483316,Arsenic,LB
+37015,0.652261,PM10-Primary from certain diesel engines,TON
+37015,0.8824517,PM10 Primary (Filt + Cond),TON
+37007,7.403934,Acrolein,LB
+37007,7.935906,Propionaldehyde,LB
+37007,0.6529378,Pyrene,LB
+37007,853.9072,Xylenes (Mixed Isomers),LB
+37007,0.10186438,Chrysene,LB
+37007,0.12780052,Benzo[a]Pyrene,LB
+37007,132.73918,Acetaldehyde,LB
+37007,6.641186,Volatile Organic Compounds,TON
+37003,2.952178,Phenanthrene,LB
+37003,0.132895,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,6.183628,Hexane,LB
+37003,7.278124e-05,Chromium (VI),LB
+37003,0.01365904,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,1.2734528,Acenaphthylene,LB
+37001,26.84046,Ethyl Benzene,LB
+37001,0.02940402,Manganese,LB
+37001,1090.294,Carbon Dioxide,TON
+37001,2.074332,Nitrogen Oxides,TON
+37001,0.00120085,Sulfate Portion of PM2.5-PRI,TON
+37001,1468.9764,Ethyl Benzene,LB
+37001,8182.278,Toluene,LB
+37001,766.233,Formaldehyde,LB
+37001,0.7034638,Benz[a]Anthracene,LB
+37001,0.002998482,Nitrate portion of PM2.5-PRI,TON
+37001,3.228856,PM10 Primary (Filt + Cond),TON
+37041,0.016013778,Acrolein,LB
+37041,0.2798412,Formaldehyde,LB
+37041,0.0002343224,Manganese,LB
+37041,0.000371769,Nitrous Oxide,TON
+37041,8.757446e-07,Nitrate portion of PM2.5-PRI,TON
+37041,0.0103158,Volatile Organic Compounds,TON
+37035,5.291356,Ethyl Benzene,LB
+37149,0.003872696,Benzo[k]Fluoranthene,LB
+37149,0.015159152,Acenaphthylene,LB
+37149,0.00294993,Chrysene,LB
+37149,0.002887002,Nickel,LB
+37149,37.78104,Acetaldehyde,LB
+37149,0.02374882,Ammonia,TON
+37149,0.002280295,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.5695332,Toluene,LB
+37173,0.02678546,Anthracene,LB
+37173,2.898672e-06,Chromium (VI),LB
+37173,0.04198666,Acenaphthylene,LB
+37173,0.010305494,Chrysene,LB
+37173,0.003403402,Manganese,LB
+37173,0.003905653,Methane,TON
+37173,0.2575235,Carbon Monoxide,TON
+37173,0.001550158,Sulfate Portion of PM2.5-PRI,TON
+37193,6.794758,Styrene,LB
+37193,15.237044,"1,3-Butadiene",LB
+37193,0.02947272,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,194.95514,Acetaldehyde,LB
+37193,2.793671,PM10 Primary (Filt + Cond),TON
+37191,0.16398664,Fluorene,LB
+37191,743.1219,Carbon Dioxide,TON
+37191,0.0151827,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.0013496822,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,25.61094,Formaldehyde,LB
+37191,0.0007311648,"Dibenzo[a,h]Anthracene",LB
+37191,0.05758078,Benz[a]Anthracene,LB
+37191,0.0019554696,Arsenic,LB
+37191,0.8353452,Ethyl Benzene,LB
+37191,1.9812682,Toluene,LB
+37191,2.101174,Xylenes (Mixed Isomers),LB
+37189,9.303096,"1,3-Butadiene",LB
+37189,2.070498,Fluoranthene,LB
+37189,0.05656428,Nickel,LB
+37189,0.2629366,Methane,TON
+37189,1.324167,PM2.5 Primary (Filt + Cond),TON
+37187,0.96,Ethyl Benzene,LB
+37187,0.02849476,Propionaldehyde,LB
+37187,0.001154097,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.002238724,Fluoranthene,LB
+37187,0.4730576,Formaldehyde,LB
+37187,0.0011460738,Benzo[a]Pyrene,LB
+37187,0.0001837388,Arsenic,LB
+37187,0.0014714912,Acenaphthene,LB
+37187,0.001077075,Methane,TON
+37187,3.571035e-06,Nitrate portion of PM2.5-PRI,TON
+37187,0.0007007445,Sulfur Dioxide,TON
+37183,32.1916,"1,3-Butadiene",LB
+37183,30.90756,Hexane,LB
+37183,2.308736,PM25-Primary from certain diesel engines,TON
+37183,0.016000972,Anthracene,LB
+37183,0.08527752,Acenaphthylene,LB
+37183,0.0004275572,Nickel,LB
+37183,0.001716758,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.0009656296,Chrysene,LB
+37181,0.002348746,Benzo[a]Pyrene,LB
+37181,3.711304,Benzene,LB
+37181,3.016792,Toluene,LB
+37059,1.2925562e-06,Mercury,LB
+37059,0.12354812,Acetaldehyde,LB
+37059,0.02121488,Naphthalene,LB
+37059,8.451088,Carbon Dioxide,TON
+37059,0.0003114014,Benzo[b]Fluoranthene,LB
+37059,0.0003114014,Benzo[k]Fluoranthene,LB
+37059,0.0002971274,Chrysene,LB
+37059,0.000307951,Benz[a]Anthracene,LB
+37059,8.08663e-06,Arsenic,LB
+37059,0.3348447,Carbon Monoxide,TON
+37059,0.000406071,Nitrous Oxide,TON
+37057,0.6697444,Styrene,LB
+37057,0.001368119,"Dibenzo[a,h]Anthracene",LB
+37057,2.097806,Carbon Monoxide,TON
+37057,0.05074894,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.4762,Benzo[k]Fluoranthene,LB
+37057,983.4904,Ethyl Benzene,LB
+37057,239.0888,"1,3-Butadiene",LB
+37057,5468.6,Toluene,LB
+37057,0.642676,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,45.61759,Nitrogen Oxides,TON
+37057,0.3566835,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.7429377,PM2.5 Primary (Filt + Cond),TON
+37057,0.4540302,Sulfur Dioxide,TON
+37051,46.88178,Hexane,LB
+37051,0.09179478,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.8820686,Manganese,LB
+37051,0.2190666,Nickel,LB
+37051,768.9446,Acetaldehyde,LB
+37051,192.05174,Naphthalene,LB
+37051,4.432098,PM10-Primary from certain diesel engines,TON
+37051,0.077755,Nitrous Oxide,TON
+37051,1.759228,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.256944,Sulfur Dioxide,TON
+37051,0.2694231,Sulfate Portion of PM2.5-PRI,TON
+37049,0.2608532,Styrene,LB
+37049,0.19652884,Pyrene,LB
+37049,0.001130448,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.14850556,Fluoranthene,LB
+37049,0.04812334,Benz[a]Anthracene,LB
+37049,0.013981056,Manganese,LB
+37049,0.01387817,Methane,TON
+37049,0.6671375,Carbon Monoxide,TON
+37049,0.01271673,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,2.040094,"1,3-Butadiene",LB
+37047,0.01404626,Anthracene,LB
+37047,0.012050352,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,5.151228,Acetaldehyde,LB
+37045,0.16643126,Propionaldehyde,LB
+37045,0.01324348,Fluoranthene,LB
+37045,0.003727366,Benz[a]Anthracene,LB
+37045,0.001244966,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.004918054,Sulfur Dioxide,TON
+37045,0.0002385661,Sulfate Portion of PM2.5-PRI,TON
+37025,129.01898,"1,3-Butadiene",LB
+37025,0.03464382,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.13602128,Benzo[b]Fluoranthene,LB
+37025,22.04482,Acenaphthylene,LB
+37025,22.62448,Fluorene,LB
+37025,427.2378,Naphthalene,LB
+37025,23045.45,Carbon Dioxide,TON
+37025,3.277834,PM25-Primary from certain diesel engines,TON
+37025,0.07524348,Nitrous Oxide,TON
+37025,22.8231,Volatile Organic Compounds,TON
+37157,0.000483384,Acenaphthylene,LB
+37157,1.0257558e-06,"Dibenzo[a,h]Anthracene",LB
+37157,1.279195e-05,Ammonia,TON
+37157,0.002763146,Nitrogen Oxides,TON
+37157,0.002736328,Benz[a]Anthracene,LB
+37157,0.16453144,Styrene,LB
+37157,0.006145612,Anthracene,LB
+37157,0.01203635,"Benzo[g,h,i,]Perylene",LB
+37139,0.2418352,Styrene,LB
+37139,0.5551222,"1,3-Butadiene",LB
+37139,1.4362382,Acrolein,LB
+37139,0.18596622,Pyrene,LB
+37139,0.004269072,Benzo[b]Fluoranthene,LB
+37139,0.0005848872,"Dibenzo[a,h]Anthracene",LB
+37139,0.5014802,"2,2,4-Trimethylpentane",LB
+37139,2.019584,Naphthalene,LB
+37139,0.4468083,Carbon Monoxide,TON
+37139,0.02043873,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.1029508,Volatile Organic Compounds,TON
+37135,16248.26,Hexane,LB
+37135,0.1861468,Mercury,LB
+37135,21.57244,Acenaphthene,LB
+37135,43.69674,Fluorene,LB
+37135,1120.3378,Naphthalene,LB
+37135,2.136637,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.04354092,Phenanthrene,LB
+37133,0.016201018,Fluorene,LB
+37133,0.005191537,Methane,TON
+37133,0.0001817863,Sulfate Portion of PM2.5-PRI,TON
+37133,27.87488,Toluene,LB
+37133,0.0364531,Acenaphthylene,LB
+37133,0.002436802,Chrysene,LB
+37127,116.92936,Toluene,LB
+37127,4.120109,Volatile Organic Compounds,TON
+37125,3.688382,Ethyl Benzene,LB
+37125,0.11082676,Propionaldehyde,LB
+37125,0.011202056,Pyrene,LB
+37125,0.0016213104,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.004926422,Methane,TON
+37125,0.0004250987,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.1775983,Nitrogen Oxides,TON
+37125,0.001008471,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.007834124,"Dibenzo[a,h]Anthracene",LB
+37125,365.4866,Acetaldehyde,LB
+37125,0.7012044,Methane,TON
+37125,0.4429443,PM2.5 Primary (Filt + Cond),TON
+37125,0.1407032,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.01108552,Sulfate Portion of PM2.5-PRI,TON
+37125,2.116852,Phenanthrene,LB
+37125,0.0224469,Elemental Carbon portion of PM2.5-PRI,TON
+37121,237.8148,"1,3-Butadiene",LB
+37121,1.2662644,Anthracene,LB
+37121,0.6270278,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,28.33392,Volatile Organic Compounds,TON
+37121,2.16725,Fluoranthene,LB
+37119,60946.9,Xylenes (Mixed Isomers),LB
+37115,22.49752,Hexane,LB
+37115,2.49598,Anthracene,LB
+37115,0.011770578,"Benzo[g,h,i,]Perylene",LB
+37115,0.06636218,Benzo[a]Pyrene,LB
+37115,85.60424,Benzene,LB
+37115,393.3514,Acetaldehyde,LB
+37115,0.2552967,Methane,TON
+37115,0.0415945,Sulfur Dioxide,TON
+37115,5.316563,Volatile Organic Compounds,TON
+37113,0.003040054,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.03646356,Acenaphthylene,LB
+37113,2.519268,Formaldehyde,LB
+37113,0.016217096,Fluorene,LB
+37113,54.91688,Carbon Dioxide,TON
+37113,9.230421e-06,Nitrate portion of PM2.5-PRI,TON
+37109,53.1227,Nitrogen Oxides,TON
+37109,0.0002158916,Chromium (VI),LB
+37109,0.017154832,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,485.5282,Formaldehyde,LB
+37109,0.003311134,Manganese,LB
+37109,0.0378025,PM10-Primary from certain diesel engines,TON
+37109,0.0002043988,Nitrate portion of PM2.5-PRI,TON
+37089,1.5155044e-07,Chromium (VI),LB
+37089,0.2643104,Benzene,LB
+37089,0.01116226,Nitrogen Oxides,TON
+37089,8.145301e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,7.490296e-06,Sulfate Portion of PM2.5-PRI,TON
+37087,2.568704,Benz[a]Anthracene,LB
+37087,0.4327238,Manganese,LB
+37087,366.0344,Naphthalene,LB
+37087,0.0507466,Nitrous Oxide,TON
+37083,1.263652,Carbon Monoxide,TON
+37083,0.014291362,Benzo[b]Fluoranthene,LB
+37081,442.6782,Toluene,LB
+37081,381.22,Xylenes (Mixed Isomers),LB
+37049,0.0012664616,"Benzo[g,h,i,]Perylene",LB
+37049,0.1068139,Methane,TON
+37049,0.02194126,PM10-Primary from certain diesel engines,TON
+37049,0.01081189,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.0004695572,"Dibenzo[a,h]Anthracene",LB
+37043,96.8343,"2,2,4-Trimethylpentane",LB
+37043,0.003282342,Manganese,LB
+37043,0.002481638,Nickel,LB
+37043,330.3276,Carbon Dioxide,TON
+37043,1.110243,Styrene,LB
+37043,2.307456,"1,3-Butadiene",LB
+37043,103.2586,Hexane,LB
+37043,0.02046602,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.7013246,Nitrogen Oxides,TON
+37043,0.004983409,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,185.80238,Acrolein,LB
+37035,306.8286,Toluene,LB
+37035,5.166886,Anthracene,LB
+37035,1.6645822,Chrysene,LB
+37035,2979.14,Formaldehyde,LB
+37035,90.78078,"2,2,4-Trimethylpentane",LB
+37035,1120.998,Acetaldehyde,LB
+37035,0.69698,Sulfate Portion of PM2.5-PRI,TON
+37025,5.621852,Styrene,LB
+37025,0.0885995,Benzo[b]Fluoranthene,LB
+37025,2.352251,Volatile Organic Compounds,TON
+37167,0.002805468,Manganese,LB
+37167,0.001056263,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.002426059,Sulfur Dioxide,TON
+37167,0.00421947,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.00514794,Arsenic,LB
+37163,399.9712,Carbon Dioxide,TON
+37163,0.009015064,PM10-Primary from certain diesel engines,TON
+37163,0.000518282,Nitrous Oxide,TON
+37163,0.4514727,Nitrogen Oxides,TON
+37163,0.2628207,Volatile Organic Compounds,TON
+37163,0.013778528,Nickel,LB
+37163,3.689468,Acrolein,LB
+37163,0.002394084,Benzo[a]Pyrene,LB
+37157,0.3268068,Benzo[a]Pyrene,LB
+37157,0.013356256,"Dibenzo[a,h]Anthracene",LB
+37157,1.069202,Benz[a]Anthracene,LB
+37157,184.58892,Acetaldehyde,LB
+37157,1.821612,PM25-Primary from certain diesel engines,TON
+37157,14.11496,Ethyl Benzene,LB
+37157,33.51342,Acrolein,LB
+37139,4.882874,Ethyl Benzene,LB
+37139,0.12182528,Propionaldehyde,LB
+37139,0.002636122,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.001067566,Sulfur Dioxide,TON
+37139,8.364785e-05,Sulfate Portion of PM2.5-PRI,TON
+37135,0.000422086,Mercury,LB
+37135,0.2623322,Nickel,LB
+37135,16.271132,Phenanthrene,LB
+37135,98.17104,Propionaldehyde,LB
+37135,0.0004750472,Chromium (VI),LB
+37141,2616.212,Hexane,LB
+37141,6626.078,Xylenes (Mixed Isomers),LB
+37133,0.03351342,Ethyl Benzene,LB
+37133,5.372868e-05,Anthracene,LB
+37133,1.2749988e-06,"Dibenzo[a,h]Anthracene",LB
+37133,0.003182922,Naphthalene,LB
+37133,0.005046606,Nitrogen Oxides,TON
+37133,3.08315e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.3066278,Acenaphthene,LB
+37131,5.900537,Carbon Monoxide,TON
+37131,0.07659809,Elemental Carbon portion of PM2.5-PRI,TON
+37131,8.834484,Benzene,LB
+37131,1.3353376,Styrene,LB
+37131,6.40578,Toluene,LB
+37131,0.0003716416,Benzo[k]Fluoranthene,LB
+37127,0.0012873428,Acenaphthene,LB
+37125,1.0289272e-07,Chromium (VI),LB
+37125,0.005778456,Acenaphthylene,LB
+37125,0.01248299,Phenanthrene,LB
+37105,49.0832,Acetaldehyde,LB
+37105,0.1073767,Elemental Carbon portion of PM2.5-PRI,TON
+37105,4.437012,Nitrogen Oxides,TON
+37105,0.271679,PM2.5 Primary (Filt + Cond),TON
+37105,8.348892,Toluene,LB
+37105,8.59288,Xylenes (Mixed Isomers),LB
+37073,0.0012466148,Styrene,LB
+37073,0.04091656,Hexane,LB
+37073,3.99045e-05,Anthracene,LB
+37073,8.729716e-05,Fluorene,LB
+37073,0.0518082,Carbon Monoxide,TON
+37073,0.004673495,Nitrogen Oxides,TON
+37073,5.622484e-05,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.0896355,Xylenes (Mixed Isomers),LB
+37121,0.00012782896,Acenaphthene,LB
+37121,6.219946e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.0002884564,Nitrous Oxide,TON
+37121,0.0001258492,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.2577612,Xylenes (Mixed Isomers),LB
+37121,4.912452e-06,"Dibenzo[a,h]Anthracene",LB
+37095,0.06796592,Ethyl Benzene,LB
+37095,0.00337746,Styrene,LB
+37095,0.00010804548,Anthracene,LB
+37095,0.0006277986,"Benzo[g,h,i,]Perylene",LB
+37095,0.00019946182,Fluoranthene,LB
+37095,0.00010840736,Benz[a]Anthracene,LB
+37095,0.0002881074,Nitrous Oxide,TON
+37095,0.0009097027,Ammonia,TON
+37095,0.008073346,Volatile Organic Compounds,TON
+37095,0.005552884,Acenaphthylene,LB
+37095,2.570718,Formaldehyde,LB
+37095,1.0177616,Hexane,LB
+37095,0.002239522,Pyrene,LB
+37095,2.435994,Xylenes (Mixed Isomers),LB
+37095,0.0007440508,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.003850756,Sulfur Dioxide,TON
+37083,0.03448166,Acrolein,LB
+37083,0.0003222458,Anthracene,LB
+37083,0.0004509706,Benzo[b]Fluoranthene,LB
+37083,0.0003874912,Benz[a]Anthracene,LB
+37083,3.857636,Acetaldehyde,LB
+37083,0.04590495,Nitrogen Oxides,TON
+37083,0.02250963,Volatile Organic Compounds,TON
+37021,1.521017e-05,"Dibenzo[a,h]Anthracene",LB
+37021,0.17500052,"1,3-Butadiene",LB
+37021,0.0011262996,Anthracene,LB
+37021,2.966488,Xylenes (Mixed Isomers),LB
+37021,0.0019360074,Fluoranthene,LB
+37021,36.48542,Pyrene,LB
+37021,54698.32,Xylenes (Mixed Isomers),LB
+37021,8.738258,Benzo[b]Fluoranthene,LB
+37021,0.3159186,"Dibenzo[a,h]Anthracene",LB
+37021,14.01488,Manganese,LB
+37021,21.34314,Acenaphthene,LB
+37021,528.8162,Nitrogen Oxides,TON
+37021,8.406159,Organic Carbon portion of PM2.5-PRI,TON
+37021,438.6699,Volatile Organic Compounds,TON
+37017,0.006127788,Anthracene,LB
+37017,0.006407908,"Benzo[g,h,i,]Perylene",LB
+37017,0.00240741,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.002421104,Benzo[a]Pyrene,LB
+37017,5.98356,"2,2,4-Trimethylpentane",LB
+37017,7.620466e-05,Arsenic,LB
+37017,0.03895902,Phenanthrene,LB
+37017,0.003965846,PM10 Primary (Filt + Cond),TON
+37015,0.0514774,Sulfate Portion of PM2.5-PRI,TON
+37015,1.236691,Volatile Organic Compounds,TON
+37015,17.257992,Acrolein,LB
+37015,5.765452,Hexane,LB
+37015,0.12956896,Benzo[a]Pyrene,LB
+37011,1730.1814,Toluene,LB
+37011,397.4174,Hexane,LB
+37011,0.2082426,Benzo[a]Pyrene,LB
+37011,0.003401302,Mercury,LB
+37011,0.0424106,Nickel,LB
+37011,0.2792023,Nitrous Oxide,TON
+37009,7.01658e-05,Chromium (VI),LB
+37009,0.006223442,"Benzo[g,h,i,]Perylene",LB
+37009,5.126804,"2,2,4-Trimethylpentane",LB
+37009,7.60621e-05,Mercury,LB
+37009,80.69684,Acetaldehyde,LB
+37009,2.01681,Phenanthrene,LB
+37009,0.234294,Styrene,LB
+37009,1.3189192,"1,3-Butadiene",LB
+37009,7.479922,Hexane,LB
+37009,0.00824545,Anthracene,LB
+37009,0.014089272,Fluoranthene,LB
+37009,3.088548,Formaldehyde,LB
+37009,0.00963531,Acenaphthene,LB
+37009,1.022541e-05,Nitrate portion of PM2.5-PRI,TON
+37003,192.02506,Benzene,LB
+37189,2.861144,Ethyl Benzene,LB
+37189,0.1036327,Styrene,LB
+37189,10.563456,Xylenes (Mixed Isomers),LB
+37189,0.0013033176,Benz[a]Anthracene,LB
+37189,84.27834,Carbon Dioxide,TON
+37189,0.00311407,Nitrous Oxide,TON
+37189,0.003994756,Ammonia,TON
+37189,6.11799e-06,Nitrate portion of PM2.5-PRI,TON
+37189,0.2177533,Nitrogen Oxides,TON
+37189,0.0009213615,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.5244828,Pyrene,LB
+37177,3.346782,"2,2,4-Trimethylpentane",LB
+37177,0.009679234,Arsenic,LB
+37177,10.452824,Naphthalene,LB
+37177,0.1501555,Methane,TON
+37177,0.307124,PM10-Primary from certain diesel engines,TON
+37177,9.085082,Nitrogen Oxides,TON
+37177,0.4403083,PM10 Primary (Filt + Cond),TON
+37177,0.3005513,PM2.5 Primary (Filt + Cond),TON
+37177,0.02881241,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.0004509176,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.011477274,Chrysene,LB
+37167,0.05738816,Fluorene,LB
+37167,0.002877687,Methane,TON
+37167,0.006126442,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.008298474,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.01855731,PM2.5 Primary (Filt + Cond),TON
+37195,0.0004151064,Benzo[k]Fluoranthene,LB
+37195,1.5413226,Benzene,LB
+37195,0.0021614,Nickel,LB
+37195,7.10054,Acetaldehyde,LB
+37195,0.3107175,Carbon Monoxide,TON
+37195,0.003175025,Ammonia,TON
+37195,0.005900462,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,3.771964e-07,"Dibenzo[a,h]Anthracene",LB
+37193,1.0847418e-06,Manganese,LB
+37193,2.290008e-07,Nickel,LB
+37193,0.008198856,Acetaldehyde,LB
+37193,5.17853e-05,Fluorene,LB
+37193,4.61158e-08,Nitrate portion of PM2.5-PRI,TON
+37193,0.0008256243,Nitrogen Oxides,TON
+37053,0.000414486,Fluorene,LB
+37053,0.01067575,Naphthalene,LB
+37053,0.0005129381,Nitrous Oxide,TON
+37045,0.014237836,Styrene,LB
+37045,1.1793232,Toluene,LB
+37045,0.0004670116,Anthracene,LB
+37045,1.4276724,Benzene,LB
+37045,0.0257061,Naphthalene,LB
+37045,0.001904729,PM2.5 Primary (Filt + Cond),TON
+37045,1.466428,Nitrogen Oxides,TON
+37045,0.7513793,Volatile Organic Compounds,TON
+37045,8.509568e-05,Chromium (VI),LB
+37045,0.02376168,Benzo[a]Pyrene,LB
+37151,0.001777503,Nitrous Oxide,TON
+37151,0.007460187,PM10 Primary (Filt + Cond),TON
+37151,0.04586852,Volatile Organic Compounds,TON
+37151,0.388919,Ethyl Benzene,LB
+37151,5.56412e-06,Chromium (VI),LB
+37151,0.000695522,Nickel,LB
+37147,1.2049576e-05,Chromium (VI),LB
+37147,3.521322,Benzene,LB
+37147,0.00012079742,Mercury,LB
+37147,0.01090409,Methane,TON
+37147,1.60652,Carbon Monoxide,TON
+37147,226.7786,Carbon Dioxide,TON
+37143,1.3286216,"2,2,4-Trimethylpentane",LB
+37107,9.51987,Carbon Monoxide,TON
+37107,1088.376,Carbon Dioxide,TON
+37107,0.02143128,Manganese,LB
+37107,0.223766,Styrene,LB
+37093,0.0004345382,Fluorene,LB
+37093,0.0008380901,Sulfur Dioxide,TON
+37093,0.0517111,Propionaldehyde,LB
+37093,0.000368208,Benzo[a]Pyrene,LB
+37093,0.0005510436,Manganese,LB
+37019,111.88168,Toluene,LB
+37019,32.3271,Benzene,LB
+37017,2550.544,Ethyl Benzene,LB
+37017,15971.576,Toluene,LB
+37017,1.1711388,Benz[a]Anthracene,LB
+37017,3829.83,Benzene,LB
+37017,0.930186,Arsenic,LB
+37017,1300.2186,Acetaldehyde,LB
+37017,3.636898,Acenaphthene,LB
+37017,1.380609,Sulfur Dioxide,TON
+37009,30826.76,Toluene,LB
+37009,8.63287,Anthracene,LB
+37009,21167.16,Xylenes (Mixed Isomers),LB
+37009,8.331126,"Benzo[g,h,i,]Perylene",LB
+37009,2.517398,Benzo[k]Fluoranthene,LB
+37009,2.573992,Chrysene,LB
+37009,3.153558,Benzo[a]Pyrene,LB
+37009,0.500158,Nickel,LB
+37009,10.13031,Acenaphthene,LB
+37009,525.9138,Naphthalene,LB
+37009,1.585686,Sulfur Dioxide,TON
+37009,161.4762,Volatile Organic Compounds,TON
+37001,891.524,Benzene,LB
+37197,4.025762e-06,Chromium (VI),LB
+37197,0.0005032118,Nickel,LB
+37197,0.004724976,Nitrous Oxide,TON
+37197,0.01123488,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.01713442,Chrysene,LB
+37189,69.87732,Benzene,LB
+37189,0.004300982,Arsenic,LB
+37189,3.4183,Naphthalene,LB
+37189,0.009934503,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,8.99192,"1,3-Butadiene",LB
+37183,18.254318,Anthracene,LB
+37183,0.14690146,Benzo[k]Fluoranthene,LB
+37183,29.15254,Acenaphthylene,LB
+37183,3.45239,Benzo[a]Pyrene,LB
+37183,228.483,"2,2,4-Trimethylpentane",LB
+37183,17.364198,Acenaphthene,LB
+37183,8.931903,Methane,TON
+37185,0.1397424,"1,3-Butadiene",LB
+37185,0.0008470784,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.00630918,Acenaphthylene,LB
+37185,0.4242866,Acetaldehyde,LB
+37191,2.599974,Styrene,LB
+37191,107.61226,Hexane,LB
+37191,0.11208124,Acenaphthene,LB
+37191,0.001814648,Sulfate Portion of PM2.5-PRI,TON
+37191,66.8045,Volatile Organic Compounds,TON
+37179,0.04840796,Benzo[k]Fluoranthene,LB
+37179,0.010844492,Nickel,LB
+37179,0.212692,Acenaphthene,LB
+37179,1.151626,Phenanthrene,LB
+37179,11.040008,Naphthalene,LB
+37179,0.1441285,Ammonia,TON
+37179,0.002514937,Sulfate Portion of PM2.5-PRI,TON
+37067,0.02313497,Volatile Organic Compounds,TON
+37067,0.03538172,Styrene,LB
+37067,0.0014583584,Anthracene,LB
+37067,2.650656e-06,Chromium (VI),LB
+37067,0.6021034,Formaldehyde,LB
+37061,667.407,Ethyl Benzene,LB
+37061,1.1158452,"Benzo[g,h,i,]Perylene",LB
+37061,0.3160212,Benzo[b]Fluoranthene,LB
+37061,1.6712926,Fluoranthene,LB
+37061,358.3372,Formaldehyde,LB
+37061,0.4208274,Benzo[a]Pyrene,LB
+37061,0.17149602,Arsenic,LB
+37061,6.223372,Phenanthrene,LB
+37061,0.2367754,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.4754318,PM2.5 Primary (Filt + Cond),TON
+37053,1486.9378,"2,2,4-Trimethylpentane",LB
+37053,22.16628,Volatile Organic Compounds,TON
+37049,0.12103996,Acrolein,LB
+37049,0.005218054,Anthracene,LB
+37049,0.00904337,Fluoranthene,LB
+37049,0.003974104,Benzo[a]Pyrene,LB
+37049,6.575788,Benzene,LB
+37049,0.3126062,Naphthalene,LB
+37047,1.9498538,Propionaldehyde,LB
+37047,70.16302,Formaldehyde,LB
+37047,0.0013914018,Phenanthrene,LB
+37041,0.000780605,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.0005206068,Benzo[b]Fluoranthene,LB
+37041,0.4445354,Formaldehyde,LB
+37041,9.442472e-05,Nickel,LB
+37041,0.00014479042,Arsenic,LB
+37041,0.001185055,Methane,TON
+37041,0.0001724274,Elemental Carbon portion of PM2.5-PRI,TON
+37035,2.044612,"1,3-Butadiene",LB
+37035,0.007492444,Benzo[b]Fluoranthene,LB
+37035,41818.88,Toluene,LB
+37035,7397.76,Hexane,LB
+37035,1115.2834,Benzene,LB
+37031,0.0012122296,Acrolein,LB
+37031,0.09667374,Xylenes (Mixed Isomers),LB
+37031,2.294392e-05,Benzo[b]Fluoranthene,LB
+37031,2.073175e-05,Nitrous Oxide,TON
+37027,16.616406,Pyrene,LB
+37027,9.69997,Acenaphthene,LB
+37027,1.452997,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.04821642,Nitrous Oxide,TON
+37023,7.43692,Ethyl Benzene,LB
+37023,3.96597e-05,Chromium (VI),LB
+37023,1.7440932,Fluoranthene,LB
+37023,0.3261012,Chrysene,LB
+37023,0.16942106,Benzo[a]Pyrene,LB
+37023,1.602312,Fluorene,LB
+37023,9.316745,Nitrogen Oxides,TON
+37023,0.2365908,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.7708509,PM10 Primary (Filt + Cond),TON
+37023,0.5808215,PM2.5 Primary (Filt + Cond),TON
+37023,0.02200336,Acenaphthene,LB
+37023,0.005332889,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.10060652,Acenaphthylene,LB
+37023,7.131534,Formaldehyde,LB
+37023,0.00041092,"Dibenzo[a,h]Anthracene",LB
+37023,0.010010586,Benz[a]Anthracene,LB
+37023,9.789336,Benzo[a]Pyrene,LB
+37023,26.42706,Acenaphthene,LB
+37119,4631.758,Ethyl Benzene,LB
+37119,113.8298,Styrene,LB
+37119,1.4995398,Benzo[b]Fluoranthene,LB
+37119,28.43012,Phenanthrene,LB
+37119,0.2947546,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.2960511,Nitrous Oxide,TON
+37119,3.553842,Ammonia,TON
+37119,3.966127,PM10 Primary (Filt + Cond),TON
+37113,2.642837,Nitrogen Oxides,TON
+37113,0.02220371,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.01060325,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.7985958,Volatile Organic Compounds,TON
+37113,9.732236,Xylenes (Mixed Isomers),LB
+37113,3.233428e-05,Chromium (VI),LB
+37113,0.7551714,Acenaphthylene,LB
+37113,13.0606,Benzene,LB
+37113,0.016806484,Manganese,LB
+37113,0.006246874,Arsenic,LB
+37113,0.05983973,Methane,TON
+37107,42.14978,Xylenes (Mixed Isomers),LB
+37107,14.141816,Benzene,LB
+37105,1.0736018,Styrene,LB
+37105,0.2021418,Anthracene,LB
+37105,0.00465416,Benzo[a]Pyrene,LB
+37105,0.0001936783,"Dibenzo[a,h]Anthracene",LB
+37105,0.0079138,Arsenic,LB
+37105,0.0009565432,Nitrous Oxide,TON
+37105,0.466596,Volatile Organic Compounds,TON
+37091,3.303936,Ethyl Benzene,LB
+37091,1.408212,Styrene,LB
+37091,99.63734,Formaldehyde,LB
+37091,0.5549522,Fluorene,LB
+37091,0.001858043,Nitrous Oxide,TON
+37091,2.021676,Nitrogen Oxides,TON
+37091,0.5727371,Volatile Organic Compounds,TON
+37089,0.016832934,Chromium (VI),LB
+37089,24.27024,"Benzo[g,h,i,]Perylene",LB
+37089,7474.36,Formaldehyde,LB
+37089,7.235408,Manganese,LB
+37089,3.22634,Arsenic,LB
+37089,0.03011127,Nitrate portion of PM2.5-PRI,TON
+37089,35.49376,PM10 Primary (Filt + Cond),TON
+37089,79551.56,Toluene,LB
+37087,1.2800106,Acenaphthylene,LB
+37087,0.1981217,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.0005740646,Nitrate portion of PM2.5-PRI,TON
+37087,0.278648,PM2.5 Primary (Filt + Cond),TON
+37079,1.433171,Volatile Organic Compounds,TON
+37079,32.64278,Toluene,LB
+37079,0.655834,Anthracene,LB
+37079,0.10431744,Benzo[a]Pyrene,LB
+37079,0.10298568,Manganese,LB
+37079,0.00015236782,Mercury,LB
+37079,0.0419378,Nickel,LB
+37087,2012.624,Acetaldehyde,LB
+37087,2.527899,Nitrous Oxide,TON
+37087,164.3751,Nitrogen Oxides,TON
+37087,5.195007,PM2.5 Primary (Filt + Cond),TON
+37087,2.631951,Sulfur Dioxide,TON
+37087,4.353268,Benzo[a]Pyrene,LB
+37087,0.1006194,"Dibenzo[a,h]Anthracene",LB
+37075,0.2759986,Propionaldehyde,LB
+37075,3.345044e-06,Chromium (VI),LB
+37075,0.011738362,"Benzo[g,h,i,]Perylene",LB
+37075,0.00010134092,"Dibenzo[a,h]Anthracene",LB
+37075,0.002079554,Manganese,LB
+37075,0.00041813,Nickel,LB
+37075,0.01349233,Methane,TON
+37063,0.6643866,"Benzo[g,h,i,]Perylene",LB
+37063,0.2475046,Benzo[a]Pyrene,LB
+37059,0.223405,Benz[a]Anthracene,LB
+37059,1.7172078,Fluorene,LB
+37059,10.815412,Ethyl Benzene,LB
+37059,0.2956748,Propionaldehyde,LB
+37059,0.025355,Pyrene,LB
+37059,0.006898234,Chrysene,LB
+37059,0.002268442,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.02081729,Sulfate Portion of PM2.5-PRI,TON
+37057,13.043496,"1,3-Butadiene",LB
+37057,37.296,Toluene,LB
+37057,0.8098648,Benz[a]Anthracene,LB
+37057,4.825866,Phenanthrene,LB
+37055,5.147438,Ethyl Benzene,LB
+37055,0.00177016,Chrysene,LB
+37055,0.04062716,Phenanthrene,LB
+37055,0.001124955,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.002699945,PM2.5 Primary (Filt + Cond),TON
+37055,0.1684257,Volatile Organic Compounds,TON
+37051,474.6758,Acrolein,LB
+37051,5.603394,Nickel,LB
+37051,47.25763,Ammonia,TON
+37051,0.04889218,Nitrate portion of PM2.5-PRI,TON
+37051,76.66124,PM10 Primary (Filt + Cond),TON
+37051,13.91593,Sulfur Dioxide,TON
+37043,0.8654052,"1,3-Butadiene",LB
+37043,0.09333114,Anthracene,LB
+37043,11.814686,Acetaldehyde,LB
+37043,0.3208886,Phenanthrene,LB
+37043,0.1870422,Fluorene,LB
+37043,149.874,Carbon Dioxide,TON
+37043,0.06737131,PM10-Primary from certain diesel engines,TON
+37043,0.1560322,Volatile Organic Compounds,TON
+37045,0.5157712,Anthracene,LB
+37045,4.169518e-05,Chromium (VI),LB
+37045,0.002725652,Benzo[k]Fluoranthene,LB
+37045,1.7194924,Phenanthrene,LB
+37045,0.4035644,PM10-Primary from certain diesel engines,TON
+37025,0.470724,Acrolein,LB
+37025,0.006153436,Manganese,LB
+37025,0.01259085,PM2.5 Primary (Filt + Cond),TON
+37025,0.005217253,Sulfur Dioxide,TON
+37029,66.51356,Ethyl Benzene,LB
+37029,1.0572646,Acrolein,LB
+37029,494.788,Toluene,LB
+37029,2.32556e-05,Chromium (VI),LB
+37029,0.11051804,Fluorene,LB
+37029,0.02671649,Methane,TON
+37029,0.003373717,Elemental Carbon portion of PM2.5-PRI,TON
+37027,2.388564,"1,3-Butadiene",LB
+37027,26.5235,Hexane,LB
+37027,0.0825758,Acenaphthylene,LB
+37027,0.004283856,Chrysene,LB
+37027,0.018151468,Acenaphthene,LB
+37027,0.001147935,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.004482464,Ammonia,TON
+37027,0.002477249,Sulfur Dioxide,TON
+37147,0.08454272,"1,3-Butadiene",LB
+37147,0.2536416,Toluene,LB
+37147,0.0015548524,Acenaphthylene,LB
+37147,0.002285972,Manganese,LB
+37147,0.003331132,Phenanthrene,LB
+37147,0.006516806,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.0004879167,Sulfur Dioxide,TON
+37147,0.1837866,Volatile Organic Compounds,TON
+37145,2.246348e-05,Mercury,LB
+37145,0.1047669,PM10-Primary from certain diesel engines,TON
+37145,0.0002373034,Nitrate portion of PM2.5-PRI,TON
+37145,2.430988e-05,Chromium (VI),LB
+37145,0.6436358,Acenaphthylene,LB
+37145,0.0004592814,"Dibenzo[a,h]Anthracene",LB
+37139,11.733988,Toluene,LB
+37139,7.209322,Xylenes (Mixed Isomers),LB
+37139,0.001060523,Benzo[b]Fluoranthene,LB
+37139,2.528136,"2,2,4-Trimethylpentane",LB
+37139,0.003034024,Acenaphthene,LB
+37139,0.006189383,PM10 Primary (Filt + Cond),TON
+37139,0.0007342856,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,23.62846,Benzene,LB
+37135,2.22976,Phenanthrene,LB
+37135,0.201998,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.3944156,PM10 Primary (Filt + Cond),TON
+37135,0.01891765,Sulfur Dioxide,TON
+37127,15.032026,Ethyl Benzene,LB
+37127,76.75048,Toluene,LB
+37127,23.31696,Hexane,LB
+37127,0.03677936,"Benzo[g,h,i,]Perylene",LB
+37127,0.04435282,Fluoranthene,LB
+37127,0.002411928,Arsenic,LB
+37127,5.182044e-05,Nitrate portion of PM2.5-PRI,TON
+37127,1.181728,Nitrogen Oxides,TON
+37123,0.0006886936,Nitrous Oxide,TON
+37123,0.100082,PM10 Primary (Filt + Cond),TON
+37123,0.1404907,Volatile Organic Compounds,TON
+37123,1.791878,Toluene,LB
+37123,0.2613962,Pyrene,LB
+37123,8.585784e-06,Chromium (VI),LB
+37123,0.0012042138,"Benzo[g,h,i,]Perylene",LB
+37123,0.19682082,Fluoranthene,LB
+37123,0.06493236,Benz[a]Anthracene,LB
+37123,0.00430159,Nickel,LB
+37121,0.05426836,Ethyl Benzene,LB
+37121,0.1163218,Toluene,LB
+37121,3.499644e-07,Chromium (VI),LB
+37121,0.008682766,Acenaphthylene,LB
+37121,6.27254e-05,Arsenic,LB
+37121,0.01918987,Phenanthrene,LB
+37121,0.001408397,Elemental Carbon portion of PM2.5-PRI,TON
+37115,4.008558,Styrene,LB
+37115,34.35636,Acrolein,LB
+37115,55.59802,Toluene,LB
+37115,13.645458,Hexane,LB
+37115,2.221966,Fluoranthene,LB
+37115,0.291762,Manganese,LB
+37115,0.2255653,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,2.07761e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,2.173861e-07,Sulfate Portion of PM2.5-PRI,TON
+37113,0.006240188,Acetaldehyde,LB
+37107,0.09843774,Acrolein,LB
+37107,0.0002280618,Acenaphthylene,LB
+37107,3.959498e-05,Chrysene,LB
+37107,8.607094e-06,Mercury,LB
+37107,0.006695662,Nitrous Oxide,TON
+37105,1.1163926,Anthracene,LB
+37105,0.018282898,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,1.6936676,Acenaphthylene,LB
+37097,6.888266,Propionaldehyde,LB
+37097,0.006309724,"Benzo[g,h,i,]Perylene",LB
+37097,13.055188,Benzene,LB
+37097,0.010393172,Arsenic,LB
+37097,15.355362,Naphthalene,LB
+37097,0.001850427,Nitrate portion of PM2.5-PRI,TON
+37097,0.7692547,Volatile Organic Compounds,TON
+37103,0.002039032,Benzo[b]Fluoranthene,LB
+37103,0.007648402,Fluoranthene,LB
+37103,0.010348598,Fluorene,LB
+37103,0.003399956,PM2.5 Primary (Filt + Cond),TON
+37103,0.0009880452,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.0019395188,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.0010461784,Benzo[k]Fluoranthene,LB
+37093,60.3425,Formaldehyde,LB
+37093,1.476342,"2,2,4-Trimethylpentane",LB
+37093,0.0204656,Manganese,LB
+37093,0.002165968,Arsenic,LB
+37093,26.56106,Acetaldehyde,LB
+37093,4.401631,Nitrogen Oxides,TON
+37093,0.3595309,Volatile Organic Compounds,TON
+37083,0.0010924244,Pyrene,LB
+37083,1.911785e-06,Nitrate portion of PM2.5-PRI,TON
+37073,0.00010513888,"Dibenzo[a,h]Anthracene",LB
+37073,0.02095582,Benz[a]Anthracene,LB
+37073,0.003501598,Manganese,LB
+37073,13.107362,Acetaldehyde,LB
+37073,0.2636138,Phenanthrene,LB
+37073,0.01228964,Methane,TON
+37073,5.430189e-05,Nitrate portion of PM2.5-PRI,TON
+37073,0.1738221,Volatile Organic Compounds,TON
+37073,7.62219e-06,Chromium (VI),LB
+37073,0.0001057835,Benzo[k]Fluoranthene,LB
+37075,0.750257,Styrene,LB
+37075,7.419238,Xylenes (Mixed Isomers),LB
+37075,0.009751772,Benzo[b]Fluoranthene,LB
+37075,29.91938,Acetaldehyde,LB
+37075,0.17758294,Acenaphthene,LB
+37075,0.7168418,Phenanthrene,LB
+37075,0.293715,PM2.5 Primary (Filt + Cond),TON
+37067,1.1283482,Styrene,LB
+37067,7.286848,Toluene,LB
+37067,4.393376,Propionaldehyde,LB
+37067,0.6564842,Fluoranthene,LB
+37067,0.002776574,Benzo[k]Fluoranthene,LB
+37067,2.481476,"2,2,4-Trimethylpentane",LB
+37067,8.27121,Benzene,LB
+37067,0.06988616,Manganese,LB
+37067,0.3991144,PM25-Primary from certain diesel engines,TON
+37067,8.7965,Nitrogen Oxides,TON
+37067,0.4894232,Volatile Organic Compounds,TON
+37063,0.02421158,Anthracene,LB
+37063,0.009866514,Benzo[b]Fluoranthene,LB
+37063,0.01466405,Benzo[a]Pyrene,LB
+37063,0.00010796822,Mercury,LB
+37063,0.1532901,Phenanthrene,LB
+37063,0.002775455,Elemental Carbon portion of PM2.5-PRI,TON
+37063,51.2856,PM10 Primary (Filt + Cond),TON
+37063,203.3902,Phenanthrene,LB
+37043,0.8475288,Phenanthrene,LB
+37043,0.3048832,PM25-Primary from certain diesel engines,TON
+37043,0.002875057,Nitrous Oxide,TON
+37043,0.3178941,PM2.5 Primary (Filt + Cond),TON
+37043,0.01685645,Sulfate Portion of PM2.5-PRI,TON
+37043,0.001999942,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.001713175,Sulfur Dioxide,TON
+37043,0.1880186,Volatile Organic Compounds,TON
+37043,1.091838,Ethyl Benzene,LB
+37043,0.828776,Hexane,LB
+37043,32.9861,Formaldehyde,LB
+37043,0.1056946,Acenaphthene,LB
+37043,0.01423584,Methane,TON
+37043,1.726273,Carbon Monoxide,TON
+37033,3.402616,Hexane,LB
+37033,0.689137,PM10-Primary from certain diesel engines,TON
+37031,0.00334588,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.0018087916,Benzo[k]Fluoranthene,LB
+37031,104.51668,Formaldehyde,LB
+37031,0.004154426,Arsenic,LB
+37031,0.003392266,Nitrous Oxide,TON
+37031,0.3851347,PM10 Primary (Filt + Cond),TON
+37163,6.24985,Pyrene,LB
+37163,0.000399559,Chromium (VI),LB
+37163,0.02532034,"Benzo[g,h,i,]Perylene",LB
+37163,4.870734,Fluoranthene,LB
+37163,4.218672,Acenaphthylene,LB
+37163,0.371752,Benzo[a]Pyrene,LB
+37163,0.01560822,"Dibenzo[a,h]Anthracene",LB
+37163,1.3252106,Benz[a]Anthracene,LB
+37163,0.000527699,Mercury,LB
+37159,356.8974,Formaldehyde,LB
+37159,0.08474818,Manganese,LB
+37159,5.280618e-05,Mercury,LB
+37159,0.3183034,Elemental Carbon portion of PM2.5-PRI,TON
+37159,12.88599,Nitrogen Oxides,TON
+37159,1.131489,PM10 Primary (Filt + Cond),TON
+37159,0.1467576,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,34.02962,Naphthalene,LB
+37155,0.8462426,PM25-Primary from certain diesel engines,TON
+37155,0.02108073,Sulfur Dioxide,TON
+37155,0.01797071,Sulfate Portion of PM2.5-PRI,TON
+37151,0.00255558,"1,3-Butadiene",LB
+37151,7.85765e-05,Pyrene,LB
+37151,4.936126e-09,Chromium (VI),LB
+37151,0.02352696,Benzene,LB
+37147,0.02676392,Manganese,LB
+37147,0.177415,PM10-Primary from certain diesel engines,TON
+37147,0.008832168,Sulfate Portion of PM2.5-PRI,TON
+37145,7.268792e-07,Manganese,LB
+37145,7.479806e-10,Chromium (VI),LB
+37145,2.474876e-06,Benzo[k]Fluoranthene,LB
+37145,3.579606e-05,Acenaphthylene,LB
+37145,4.256189e-06,Nitrous Oxide,TON
+37145,6.905043e-06,PM10 Primary (Filt + Cond),TON
+37145,3.711302e-06,PM2.5 Primary (Filt + Cond),TON
+37133,0.14260834,Acenaphthylene,LB
+37133,2.235174,"1,3-Butadiene",LB
+37133,24.99962,Hexane,LB
+37133,54.20596,Xylenes (Mixed Isomers),LB
+37133,0.01146329,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,8.548936,Acetaldehyde,LB
+37133,1.290843,Nitrogen Oxides,TON
+37121,0.0834246,Styrene,LB
+37121,0.0008655754,Ammonia,TON
+37121,0.0003823151,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,1734.2898,Formaldehyde,LB
+37119,46.10828,"2,2,4-Trimethylpentane",LB
+37119,4.91987,Acenaphthene,LB
+37119,19.512062,Phenanthrene,LB
+37119,1.296446,Elemental Carbon portion of PM2.5-PRI,TON
+37119,48.82248,"1,3-Butadiene",LB
+37119,143.55086,Xylenes (Mixed Isomers),LB
+37119,0.0003716162,Chromium (VI),LB
+37119,0.08797178,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,24.9435,Acenaphthylene,LB
+37111,0.07178466,Mercury,LB
+37111,108.0958,Volatile Organic Compounds,TON
+37099,0.02307109,PM2.5 Primary (Filt + Cond),TON
+37099,0.4491038,Volatile Organic Compounds,TON
+37095,0.015734438,Acrolein,LB
+37095,3.605776,Toluene,LB
+37095,0.0001939522,Benzo[k]Fluoranthene,LB
+37095,0.0006719594,Methane,TON
+37095,0.000605372,Nitrous Oxide,TON
+37095,0.0001364804,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.0009545918,PM10 Primary (Filt + Cond),TON
+37095,0.0003175755,PM2.5 Primary (Filt + Cond),TON
+37095,0.01722654,Volatile Organic Compounds,TON
+37095,1.4992738,Toluene,LB
+37095,0.0004437818,Anthracene,LB
+37095,0.0007529136,Fluoranthene,LB
+37095,0.00011782586,Benzo[k]Fluoranthene,LB
+37095,0.00012439664,Chrysene,LB
+37095,0.3016786,"2,2,4-Trimethylpentane",LB
+37095,0.00012428832,Benz[a]Anthracene,LB
+37095,0.0010573708,Fluorene,LB
+37095,0.0001447424,Sulfur Dioxide,TON
+37091,17321.322,Toluene,LB
+37091,4.575212,Anthracene,LB
+37091,7.77316,Fluoranthene,LB
+37091,1684.622,Formaldehyde,LB
+37091,10.886868,Fluorene,LB
+37091,0.8407889,Organic Carbon portion of PM2.5-PRI,TON
+37083,23.6332,"1,3-Butadiene",LB
+37083,0.009458444,"Benzo[g,h,i,]Perylene",LB
+37083,0.0001515917,Mercury,LB
+37083,0.10971698,Nickel,LB
+37083,0.4879715,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.001126109,Nitrate portion of PM2.5-PRI,TON
+37083,0.08847724,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.03939831,Sulfur Dioxide,TON
+37083,0.02004287,Sulfate Portion of PM2.5-PRI,TON
+37083,4.166335,Volatile Organic Compounds,TON
+37079,5.864344,Acrolein,LB
+37079,1.6813818,Phenanthrene,LB
+37079,0.03312935,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.0840677,Sulfur Dioxide,TON
+37071,20.96218,Acrolein,LB
+37071,6.570106,Hexane,LB
+37071,2.021422,Pyrene,LB
+37071,6.258336e-05,Chromium (VI),LB
+37071,0.8881314,Acenaphthene,LB
+37071,8.740796,"1,3-Butadiene",LB
+37071,29.0033,Naphthalene,LB
+37071,0.9711651,PM10 Primary (Filt + Cond),TON
+37071,39.56064,Acrolein,LB
+37071,4347.604,Xylenes (Mixed Isomers),LB
+37071,0.0018128068,Chromium (VI),LB
+37071,1.367661,Methane,TON
+37071,2.109561,Ammonia,TON
+37071,0.4535953,Organic Carbon portion of PM2.5-PRI,TON
+37061,57.10284,Propionaldehyde,LB
+37061,6.925872,Pyrene,LB
+37061,214.4644,Xylenes (Mixed Isomers),LB
+37061,0.016584556,Benzo[k]Fluoranthene,LB
+37061,0.016177336,"Dibenzo[a,h]Anthracene",LB
+37061,2.407708,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.008971587,Nitrate portion of PM2.5-PRI,TON
+37061,178.2223,Nitrogen Oxides,TON
+37061,3.632234,PM2.5 Primary (Filt + Cond),TON
+37061,111.73648,Propionaldehyde,LB
+37061,9.780276,Pyrene,LB
+37061,5.771912,Acenaphthene,LB
+37061,299.8326,Naphthalene,LB
+37061,2.394389,Nitrous Oxide,TON
+37047,11.269508,Toluene,LB
+37047,0.004887892,Nitrous Oxide,TON
+37045,8.170015e-05,Sulfate Portion of PM2.5-PRI,TON
+37045,0.2532844,Acrolein,LB
+37045,0.00016845218,Anthracene,LB
+37045,0.2282256,Benzene,LB
+37045,0.000237582,Acenaphthene,LB
+37045,0.0005306956,Fluorene,LB
+37045,0.002785203,Ammonia,TON
+37043,0.010128838,Ethyl Benzene,LB
+37043,0.440086,Propionaldehyde,LB
+37043,0.0001002349,Fluoranthene,LB
+37043,0.00014702418,Acenaphthylene,LB
+37043,4.365412e-07,Nickel,LB
+37043,0.01737862,Volatile Organic Compounds,TON
+37043,1.271006,Acenaphthene,LB
+37043,0.2763465,PM25-Primary from certain diesel engines,TON
+37043,371.199,Formaldehyde,LB
+37045,4.837844,Fluorene,LB
+37045,0.07518366,Sulfate Portion of PM2.5-PRI,TON
+37045,9.445844,Styrene,LB
+37045,0.16542312,Benzo[b]Fluoranthene,LB
+37045,635.6592,Formaldehyde,LB
+37045,0.554786,Benzo[a]Pyrene,LB
+37045,15.616192,"2,2,4-Trimethylpentane",LB
+37045,15.806768,Pyrene,LB
+37045,24881.58,Xylenes (Mixed Isomers),LB
+37045,3.21328,Chrysene,LB
+37045,5.416098,Benzo[a]Pyrene,LB
+37045,9296.844,"2,2,4-Trimethylpentane",LB
+37045,2.56098,Arsenic,LB
+37045,18.36446,PM10 Primary (Filt + Cond),TON
+37039,2.67714,Acrolein,LB
+37039,269.1274,"2,2,4-Trimethylpentane",LB
+37039,0.009156202,Manganese,LB
+37039,0.0005552228,Mercury,LB
+37039,0.755882,Phenanthrene,LB
+37039,7.219998,Naphthalene,LB
+37039,0.03114459,Organic Carbon portion of PM2.5-PRI,TON
+37027,6.24097,Styrene,LB
+37027,40.78996,Toluene,LB
+37027,0.00011306052,Chromium (VI),LB
+37027,3.438448,Fluoranthene,LB
+37027,2.440082,Acenaphthylene,LB
+37027,518.4574,Formaldehyde,LB
+37027,0.00012366376,Mercury,LB
+37027,12.0212,Carbon Monoxide,TON
+37027,1.048276,PM25-Primary from certain diesel engines,TON
+37027,17.99843,Nitrogen Oxides,TON
+37175,0.0008839775,Nitrous Oxide,TON
+37175,0.05276314,PM10 Primary (Filt + Cond),TON
+37175,0.01527085,PM2.5 Primary (Filt + Cond),TON
+37175,2.711794,Ethyl Benzene,LB
+37175,3.055162e-05,Chromium (VI),LB
+37175,0.0007716238,"Benzo[g,h,i,]Perylene",LB
+37175,0.00010617348,Benzo[k]Fluoranthene,LB
+37175,0.00010486782,"Dibenzo[a,h]Anthracene",LB
+37175,0.03960958,Benz[a]Anthracene,LB
+37175,0.01613474,Nickel,LB
+37175,0.00970356,PM25-Primary from certain diesel engines,TON
+37159,0.2346124,Benz[a]Anthracene,LB
+37159,0.5483628,Acenaphthene,LB
+37159,1.047289,Fluorene,LB
+37159,0.0902489,Methane,TON
+37159,0.3747408,PM10-Primary from certain diesel engines,TON
+37153,0.16924022,Acrolein,LB
+37153,0.16460158,Xylenes (Mixed Isomers),LB
+37153,0.0002477628,Fluoranthene,LB
+37153,0.001447913,Manganese,LB
+37153,0.0003428714,Sulfur Dioxide,TON
+37153,0.04433261,Volatile Organic Compounds,TON
+37137,6.539482,Nitrogen Oxides,TON
+37137,0.006366225,Sulfate Portion of PM2.5-PRI,TON
+37137,0.9599084,Styrene,LB
+37137,4.0719,Toluene,LB
+37137,0.00206569,"Dibenzo[a,h]Anthracene",LB
+37137,28.1077,Acetaldehyde,LB
+37131,0.007414662,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,8.09018,"2,2,4-Trimethylpentane",LB
+37131,0.000354719,Arsenic,LB
+37131,0.4002704,Naphthalene,LB
+37127,9.665052,Fluorene,LB
+37127,0.01653759,Nitrate portion of PM2.5-PRI,TON
+37127,6.486201,PM2.5 Primary (Filt + Cond),TON
+37127,0.8103703,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.0577371,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,7.321264,Acenaphthylene,LB
+37121,2.293092e-05,Chromium (VI),LB
+37121,86.24472,Formaldehyde,LB
+37121,0.06783932,Benzo[a]Pyrene,LB
+37121,2.103576,"2,2,4-Trimethylpentane",LB
+37121,1291.755,Carbon Dioxide,TON
+37111,0.0001855668,Chromium (VI),LB
+37111,577.7866,Formaldehyde,LB
+37111,0.4083504,Benzo[a]Pyrene,LB
+37111,14.834184,"2,2,4-Trimethylpentane",LB
+37111,1.3422804,Benz[a]Anthracene,LB
+37111,53.14082,Benzene,LB
+37111,246.8894,Acetaldehyde,LB
+37117,0.4497726,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,1776.785,Ethyl Benzene,LB
+37117,11.695236,Acenaphthylene,LB
+37107,2.23984e-10,Chromium (VI),LB
+37107,0.0011103058,Formaldehyde,LB
+37107,7.327744e-06,Fluorene,LB
+37107,0.001427031,Carbon Monoxide,TON
+37107,0.01564296,Carbon Dioxide,TON
+37107,6.850658e-05,Volatile Organic Compounds,TON
+37107,0.016077176,Naphthalene,LB
+37107,0.005919003,Nitrogen Oxides,TON
+37107,1.989799e-06,Sulfate Portion of PM2.5-PRI,TON
+37103,29.0262,Styrene,LB
+37103,1.0718662,Anthracene,LB
+37103,24.14346,Propionaldehyde,LB
+37103,0.002080636,Chromium (VI),LB
+37103,1296.8154,Benzene,LB
+37103,0.398822,Arsenic,LB
+37097,21792.14,Ethyl Benzene,LB
+37097,691.7048,Acrolein,LB
+37097,31.3439,Anthracene,LB
+37097,11.298694,Benzo[b]Fluoranthene,LB
+37097,4.088166,Nickel,LB
+37097,18.49395,Nitrous Oxide,TON
+37097,42.44111,Ammonia,TON
+37097,6.377143,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.644979,"1,3-Butadiene",LB
+37053,0.221938,Pyrene,LB
+37053,6.860022e-06,Chromium (VI),LB
+37053,0.4940738,Carbon Monoxide,TON
+37053,0.01933928,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.01105489,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.00218192,Sulfur Dioxide,TON
+37015,0.2559534,PM2.5 Primary (Filt + Cond),TON
+37015,7.683374,"1,3-Butadiene",LB
+37015,16.10552,Toluene,LB
+37015,237.9838,Formaldehyde,LB
+37015,0.01315064,Arsenic,LB
+37015,14.18848,Carbon Monoxide,TON
+37011,335.888,Xylenes (Mixed Isomers),LB
+37011,0.02651852,Benzo[b]Fluoranthene,LB
+37011,0.02651852,Benzo[k]Fluoranthene,LB
+37011,140.56154,"2,2,4-Trimethylpentane",LB
+37011,0.1779608,Fluorene,LB
+37011,0.07406982,Ammonia,TON
+37009,0.006015918,Pyrene,LB
+37009,0.0010070688,Chrysene,LB
+37009,0.1874082,Naphthalene,LB
+37009,0.1390776,Nitrogen Oxides,TON
+37009,8.045226,"1,3-Butadiene",LB
+37009,0.09103028,Pyrene,LB
+37009,140.24018,Xylenes (Mixed Isomers),LB
+37009,1.084308e-05,Chromium (VI),LB
+37009,0.018296186,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.014618158,Benz[a]Anthracene,LB
+37009,0.04754937,Nitrous Oxide,TON
+37001,174.9059,Hexane,LB
+37001,0.2911296,Fluoranthene,LB
+37001,0.010058084,Nickel,LB
+37001,0.3926728,Fluorene,LB
+37001,10.072852,Naphthalene,LB
+37001,3326.596,Carbon Dioxide,TON
+37001,0.02568187,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.1260305,Ammonia,TON
+37001,0.04810923,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,5091.238,Hexane,LB
+37007,364.1116,Naphthalene,LB
+37007,1.177079,Organic Carbon portion of PM2.5-PRI,TON
+37007,2.458397,PM2.5 Primary (Filt + Cond),TON
+37057,0.00704182,Manganese,LB
+37057,0.13112652,Naphthalene,LB
+37057,0.01278363,Sulfur Dioxide,TON
+37057,3.98766,Formaldehyde,LB
+37013,0.0008053694,Fluoranthene,LB
+37013,3.520404e-05,Mercury,LB
+37013,0.000438974,Nickel,LB
+37013,5.849042,Acetaldehyde,LB
+37013,0.0250525,Naphthalene,LB
+37013,0.0005567672,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.05918238,Acrolein,LB
+37123,1.4195796,Toluene,LB
+37123,0.005292812,Ammonia,TON
+37123,0.0007176654,Organic Carbon portion of PM2.5-PRI,TON
+37017,3.674246,Hexane,LB
+37017,0.0698546,Propionaldehyde,LB
+37017,8.882094,Xylenes (Mixed Isomers),LB
+37017,0.0014542138,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.0003026928,Nickel,LB
+37017,0.007291458,Fluorene,LB
+37017,0.002022587,PM2.5 Primary (Filt + Cond),TON
+37073,0.03731266,Acrolein,LB
+37073,0.002780883,Methane,TON
+37073,46.25966,Carbon Dioxide,TON
+37073,0.0009337126,PM2.5 Primary (Filt + Cond),TON
+37073,2.619735e-05,Sulfate Portion of PM2.5-PRI,TON
+37071,0.08441168,Acrolein,LB
+37071,0.1904906,Propionaldehyde,LB
+37071,9.213198,Acetaldehyde,LB
+37071,0.000790255,Acenaphthene,LB
+37071,0.05732796,Volatile Organic Compounds,TON
+37045,0.001215082,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.0002195978,Sulfate Portion of PM2.5-PRI,TON
+37045,0.2650214,"1,3-Butadiene",LB
+37045,2.532242e-05,Chromium (VI),LB
+37045,0.003304472,Fluoranthene,LB
+37045,0.008605638,Acenaphthylene,LB
+37045,0.00010685158,"Dibenzo[a,h]Anthracene",LB
+37019,0.09193396,"1,3-Butadiene",LB
+37019,0.789359,Hexane,LB
+37019,8.30634e-06,Chromium (VI),LB
+37019,0.8548814,"2,2,4-Trimethylpentane",LB
+37019,0.0007891032,Benz[a]Anthracene,LB
+37019,0.0014729312,Fluorene,LB
+37019,0.004313743,Sulfur Dioxide,TON
+37019,14.237098,"2,2,4-Trimethylpentane",LB
+37019,3.96285,Benzene,LB
+37173,37.87022,Acetaldehyde,LB
+37173,0.42044,Nitrogen Oxides,TON
+37173,0.003573178,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.007350951,PM2.5 Primary (Filt + Cond),TON
+37173,0.005931136,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,239.1904,Ethyl Benzene,LB
+37065,0.3970076,Pyrene,LB
+37065,0.06882994,Benzo[k]Fluoranthene,LB
+37065,0.09397686,Benzo[a]Pyrene,LB
+37065,1.2930466,Phenanthrene,LB
+37065,57.18512,Carbon Monoxide,TON
+37065,2.699516,Nitrogen Oxides,TON
+37065,0.02984827,Sulfur Dioxide,TON
+37057,0.7460922,Benzo[a]Pyrene,LB
+37057,2.530106,Benz[a]Anthracene,LB
+37055,0.3470574,Fluorene,LB
+37055,0.01145845,PM25-Primary from certain diesel engines,TON
+37055,7.506568e-05,Nitrate portion of PM2.5-PRI,TON
+37055,3.457812,Propionaldehyde,LB
+37055,0.2495042,Fluoranthene,LB
+37045,19.993212,Benzene,LB
+37045,0.4562656,Styrene,LB
+37045,0.007212996,Benzo[b]Fluoranthene,LB
+37045,0.00656581,Chrysene,LB
+37043,0.000900933,"Dibenzo[a,h]Anthracene",LB
+37043,0.03219156,Benz[a]Anthracene,LB
+37043,0.01055243,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.790236,Propionaldehyde,LB
+37035,0.05858072,"Benzo[g,h,i,]Perylene",LB
+37035,12.33534,Formaldehyde,LB
+37035,0.02193546,Benzo[a]Pyrene,LB
+37031,3.95532,Hexane,LB
+37031,0.009525256,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.015810346,Nickel,LB
+37031,1043.74,Carbon Dioxide,TON
+37031,0.4025596,PM2.5 Primary (Filt + Cond),TON
+37031,0.9034609,Volatile Organic Compounds,TON
+37025,1090.519,Ethyl Benzene,LB
+37025,0.8169238,Anthracene,LB
+37025,0.0003619724,Chromium (VI),LB
+37025,210.9782,Acetaldehyde,LB
+37025,5.187752,Phenanthrene,LB
+37025,10.81435,Nitrogen Oxides,TON
+37025,0.6558267,PM10 Primary (Filt + Cond),TON
+37171,2.270466,Pyrene,LB
+37171,0.2899742,Chrysene,LB
+37171,3.035164,Phenanthrene,LB
+37171,9.194197,Nitrogen Oxides,TON
+37171,0.0862165,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,1.562454,Volatile Organic Compounds,TON
+37167,13.522142,Acetaldehyde,LB
+37167,0.01993797,Methane,TON
+37167,0.0902573,PM10 Primary (Filt + Cond),TON
+37167,0.01253603,Sulfur Dioxide,TON
+37167,0.6277013,Volatile Organic Compounds,TON
+37167,111.63564,Toluene,LB
+37157,11.530692,Ethyl Benzene,LB
+37157,0.364595,Styrene,LB
+37157,2.017914,"1,3-Butadiene",LB
+37157,20.29804,Hexane,LB
+37157,3.439474e-06,Chromium (VI),LB
+37157,17.459356,"2,2,4-Trimethylpentane",LB
+37157,16.329976,Benzene,LB
+37157,5.033956,Acetaldehyde,LB
+37157,6.558633,Carbon Monoxide,TON
+37157,0.001512577,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.002997063,Sulfur Dioxide,TON
+37157,0.0002615885,Sulfate Portion of PM2.5-PRI,TON
+37151,3.859979,Volatile Organic Compounds,TON
+37151,0.1646217,Anthracene,LB
+37151,0.1544575,Nitrous Oxide,TON
+37141,15.28632,Xylenes (Mixed Isomers),LB
+37141,0.00337814,"Benzo[g,h,i,]Perylene",LB
+37141,0.1959257,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.008591326,Sulfate Portion of PM2.5-PRI,TON
+37129,67.37632,Toluene,LB
+37129,1.6980736,Chrysene,LB
+37129,2.866104,Benz[a]Anthracene,LB
+37129,6.81692,PM10 Primary (Filt + Cond),TON
+37129,0.1417716,Sulfur Dioxide,TON
+37125,23.84266,"2,2,4-Trimethylpentane",LB
+37125,1.207082,Benz[a]Anthracene,LB
+37125,326.4518,Acetaldehyde,LB
+37125,1.839962,Acenaphthene,LB
+37125,81.30242,Nitrogen Oxides,TON
+37125,4.930262,PM10 Primary (Filt + Cond),TON
+37125,1.9253546,Anthracene,LB
+37125,32.7665,Propionaldehyde,LB
+37125,0.0003256646,Chromium (VI),LB
+37121,8.2826,Acrolein,LB
+37121,0.29618,Anthracene,LB
+37121,0.003399638,"Benzo[g,h,i,]Perylene",LB
+37121,47.87508,Acetaldehyde,LB
+37121,1.153807,Phenanthrene,LB
+37121,0.4850838,PM10-Primary from certain diesel engines,TON
+37121,0.00567006,Nitrous Oxide,TON
+37121,0.08920252,Organic Carbon portion of PM2.5-PRI,TON
+37111,1.6142056e-06,Manganese,LB
+37111,2.628838e-08,Mercury,LB
+37111,2.557216e-05,Pyrene,LB
+37111,4.128817e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.004406138,"Benzo[g,h,i,]Perylene",LB
+37017,0.002944032,"Dibenzo[a,h]Anthracene",LB
+37017,2.307504,"2,2,4-Trimethylpentane",LB
+37017,8.883514,Benzene,LB
+37017,1.389237e-05,Mercury,LB
+37019,0.000819909,Elemental Carbon portion of PM2.5-PRI,TON
+37019,1.390005e-05,Nitrate portion of PM2.5-PRI,TON
+37019,0.16506536,Styrene,LB
+37019,0.00387703,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.03270356,Acenaphthylene,LB
+37017,1.08826,"1,3-Butadiene",LB
+37017,0.15091,Acrolein,LB
+37017,47.04816,Toluene,LB
+37017,0.002109942,Benzo[k]Fluoranthene,LB
+37017,0.0374579,Acenaphthylene,LB
+37017,0.002135784,Chrysene,LB
+37017,0.000332481,Arsenic,LB
+37017,0.0005583338,Elemental Carbon portion of PM2.5-PRI,TON
+37017,8.382134e-06,Nitrate portion of PM2.5-PRI,TON
+37017,0.007890809,PM10 Primary (Filt + Cond),TON
+37013,0.0005850062,Sulfate Portion of PM2.5-PRI,TON
+37013,0.11162758,Pyrene,LB
+37013,173.59484,Xylenes (Mixed Isomers),LB
+37013,0.05411398,"Benzo[g,h,i,]Perylene",LB
+37013,0.3072982,Acenaphthylene,LB
+37013,0.016979658,Chrysene,LB
+37013,27.97867,Carbon Monoxide,TON
+37013,0.02822652,Ammonia,TON
+37115,0.0015160898,Benzo[b]Fluoranthene,LB
+37115,1.5463306e-05,Mercury,LB
+37115,0.0002956434,Arsenic,LB
+37115,0.002551041,Methane,TON
+37115,0.001346665,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.08821872,Styrene,LB
+37115,0.003287464,Anthracene,LB
+37115,0.07243032,Propionaldehyde,LB
+37115,0.4516766,Xylenes (Mixed Isomers),LB
+37115,9.718716e-05,Benzo[b]Fluoranthene,LB
+37115,6.93147e-06,Nickel,LB
+37115,0.06638864,Acetaldehyde,LB
+37115,0.009477662,Nitrogen Oxides,TON
+37115,0.0001595844,PM2.5 Primary (Filt + Cond),TON
+37101,0.6459752,Methane,TON
+37101,0.4456277,Nitrogen Oxides,TON
+37101,0.0006555164,Sulfur Dioxide,TON
+37101,0.05304954,Ethyl Benzene,LB
+37101,1.5898334,Propionaldehyde,LB
+37101,0.3017354,Xylenes (Mixed Isomers),LB
+37101,59.27952,Formaldehyde,LB
+37101,0.0013960294,Naphthalene,LB
+37101,180.20038,Propionaldehyde,LB
+37101,2.498502,Chrysene,LB
+37101,425.9426,Benzene,LB
+37101,0.4470948,Nickel,LB
+37101,6.744172,Carbon Monoxide,TON
+37101,0.001098729,Nitrate portion of PM2.5-PRI,TON
+37101,11.51922,Xylenes (Mixed Isomers),LB
+37101,0.004371288,"Benzo[g,h,i,]Perylene",LB
+37101,0.01771314,Benzo[b]Fluoranthene,LB
+37101,0.05938024,Benzo[a]Pyrene,LB
+37087,164.6053,Acrolein,LB
+37087,0.04550884,"Benzo[g,h,i,]Perylene",LB
+37087,0.05170602,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.0006497452,Mercury,LB
+37087,0.13585816,Arsenic,LB
+37087,4.308168,Acenaphthene,LB
+37087,1.190565,Organic Carbon portion of PM2.5-PRI,TON
+37087,8.623921,PM10 Primary (Filt + Cond),TON
+37087,6.560538e-06,Chromium (VI),LB
+37087,0.03191422,"Benzo[g,h,i,]Perylene",LB
+37087,0.006714008,Benzo[k]Fluoranthene,LB
+37087,3.272402,Formaldehyde,LB
+37087,0.005731025,Methane,TON
+37087,262.7154,Carbon Dioxide,TON
+37087,0.004915561,Nitrous Oxide,TON
+37087,0.006787944,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.03088406,PM10 Primary (Filt + Cond),TON
+37081,1.898059,Ethyl Benzene,LB
+37081,5.461014,Benzene,LB
+37081,0.9986782,Benzo[a]Pyrene,LB
+37081,3007.524,Benzene,LB
+37081,2.288638,Acenaphthene,LB
+37081,12.450576,Phenanthrene,LB
+37081,1.004134,PM2.5 Primary (Filt + Cond),TON
+37081,0.3008007,Sulfur Dioxide,TON
+37077,31.95458,Phenanthrene,LB
+37077,3.106367,Methane,TON
+37077,2.758678,Nitrous Oxide,TON
+37077,166.0534,Nitrogen Oxides,TON
+37077,136.31396,Styrene,LB
+37077,2.257188,Benz[a]Anthracene,LB
+37065,24.62326,Toluene,LB
+37065,26.38388,Xylenes (Mixed Isomers),LB
+37065,0.00656683,"Dibenzo[a,h]Anthracene",LB
+37065,129.09556,Acetaldehyde,LB
+37065,1.8225458,Fluorene,LB
+37065,0.01221853,Nitrous Oxide,TON
+37065,35.06826,Nitrogen Oxides,TON
+37065,0.08218959,Sulfate Portion of PM2.5-PRI,TON
+37051,0.002097288,Nitrate portion of PM2.5-PRI,TON
+37051,0.03000751,Sulfate Portion of PM2.5-PRI,TON
+37051,16.31278,Propionaldehyde,LB
+37051,2.304786,Pyrene,LB
+37051,0.03465574,Benzo[b]Fluoranthene,LB
+37051,0.03739868,Nickel,LB
+37051,1.0094298,Acenaphthene,LB
+37051,0.1102571,Methane,TON
+37051,3.316246,Carbon Dioxide,TON
+37051,4.602256e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.0001154064,Organic Carbon portion of PM2.5-PRI,TON
+37051,6.887655e-06,Sulfate Portion of PM2.5-PRI,TON
+37049,0.2057384,Styrene,LB
+37049,0.4645804,"1,3-Butadiene",LB
+37049,0.002940532,Benzo[b]Fluoranthene,LB
+37049,14.167596,Formaldehyde,LB
+37049,0.0015254088,Nickel,LB
+37049,0.0001714059,Nitrate portion of PM2.5-PRI,TON
+37049,0.0009449185,Sulfate Portion of PM2.5-PRI,TON
+37045,5.151998,Acrolein,LB
+37045,2.238476e-05,Chromium (VI),LB
+37045,0.015934434,Benzo[b]Fluoranthene,LB
+37045,0.5159374,Fluoranthene,LB
+37045,0.002182958,"Dibenzo[a,h]Anthracene",LB
+37045,883.0607,Carbon Dioxide,TON
+37047,0.4139304,Styrene,LB
+37047,0.4233246,Acrolein,LB
+37047,0.08577238,Acenaphthylene,LB
+37047,0.006449532,Benz[a]Anthracene,LB
+37047,0.009441268,Manganese,LB
+37047,0.0011425926,Nickel,LB
+37047,10.54976,Carbon Monoxide,TON
+37047,0.01308411,Ammonia,TON
+37047,0.01438397,PM2.5 Primary (Filt + Cond),TON
+37047,0.2754759,Volatile Organic Compounds,TON
+37041,3.551702e-06,Arsenic,LB
+37041,0.0011656742,Phenanthrene,LB
+37041,0.006458924,Nitrogen Oxides,TON
+37041,9.849493e-05,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.03943065,Ammonia,TON
+37031,178.82354,Xylenes (Mixed Isomers),LB
+37031,24.37414,Acetaldehyde,LB
+37029,0.3163698,Styrene,LB
+37029,0.002355248,Benzo[b]Fluoranthene,LB
+37029,0.8274809,Carbon Monoxide,TON
+37029,250.9117,Carbon Dioxide,TON
+37019,0.002775282,Fluorene,LB
+37019,0.01844762,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.000898576,Sulfur Dioxide,TON
+37019,0.0534323,Ethyl Benzene,LB
+37019,1.5696268,Acrolein,LB
+37019,0.4608714,Toluene,LB
+37019,10.21262,Propionaldehyde,LB
+37007,0.07759086,Anthracene,LB
+37007,0.0068538,Manganese,LB
+37007,9.312778,Acetaldehyde,LB
+37007,0.4883198,Carbon Monoxide,TON
+37007,0.06086575,PM2.5 Primary (Filt + Cond),TON
+37007,0.01122097,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.001254489,"Dibenzo[a,h]Anthracene",LB
+37003,381.0958,"2,2,4-Trimethylpentane",LB
+37003,0.14552906,"Benzo[g,h,i,]Perylene",LB
+37003,0.04198968,Benzo[k]Fluoranthene,LB
+37003,0.006662186,Nickel,LB
+37003,0.318418,Fluorene,LB
+37065,10.05077,"2,2,4-Trimethylpentane",LB
+37065,0.005251984,PM2.5 Primary (Filt + Cond),TON
+37065,0.0001547767,Sulfate Portion of PM2.5-PRI,TON
+37065,6.5872,Ethyl Benzene,LB
+37061,13.754182,Hexane,LB
+37061,0.00968823,Nitrous Oxide,TON
+37057,0.12367302,Phenanthrene,LB
+37057,0.02008708,Methane,TON
+37057,0.01686968,Nitrous Oxide,TON
+37057,0.9546159,Nitrogen Oxides,TON
+37057,0.007961207,Sulfur Dioxide,TON
+37057,0.4704681,Volatile Organic Compounds,TON
+37057,3.135046,"1,3-Butadiene",LB
+37055,11.17474,"1,3-Butadiene",LB
+37055,9.543562,Hexane,LB
+37055,3.70171,Pyrene,LB
+37055,4.504108,Phenanthrene,LB
+37055,40.34092,Naphthalene,LB
+37055,8.13948,Carbon Monoxide,TON
+37055,0.1939827,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,3.16153,Styrene,LB
+37051,7.878988,"1,3-Butadiene",LB
+37051,337.4394,Toluene,LB
+37051,0.04477694,Benzo[b]Fluoranthene,LB
+37051,0.04323174,Chrysene,LB
+37051,0.8106912,Phenanthrene,LB
+37051,0.01310132,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.01295682,Manganese,LB
+37047,0.00584455,Arsenic,LB
+37047,1.3559074,"1,3-Butadiene",LB
+37047,6.479566,Acrolein,LB
+37047,0.2948666,Anthracene,LB
+37047,0.00014337598,Chromium (VI),LB
+37047,130.8758,Formaldehyde,LB
+37047,94.43794,Carbon Monoxide,TON
+37047,0.02104665,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.01667306,Nitrous Oxide,TON
+37047,0.2087625,PM10 Primary (Filt + Cond),TON
+37033,0.2081226,"1,3-Butadiene",LB
+37033,0.002291294,Fluoranthene,LB
+37033,0.003145476,Fluorene,LB
+37033,0.002689752,Methane,TON
+37033,0.0001073357,Ammonia,TON
+37033,0.0001521066,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,13.93552,PM10 Primary (Filt + Cond),TON
+37031,3360.992,Ethyl Benzene,LB
+37031,97.44206,Acrolein,LB
+37031,5438.444,Hexane,LB
+37031,0.00707813,Chromium (VI),LB
+37031,5.92267,"Benzo[g,h,i,]Perylene",LB
+37031,20.7381,Acenaphthylene,LB
+37069,0.0009712264,Benzo[k]Fluoranthene,LB
+37069,1.2111586,"2,2,4-Trimethylpentane",LB
+37069,0.0008450616,Benz[a]Anthracene,LB
+37069,3.036378,Benzene,LB
+37069,0.003158768,Manganese,LB
+37069,11.231988,Acetaldehyde,LB
+37069,0.0018836332,Fluorene,LB
+37069,0.00248981,Nitrous Oxide,TON
+37069,0.01277276,PM10 Primary (Filt + Cond),TON
+37069,8.90346e-05,Sulfate Portion of PM2.5-PRI,TON
+37047,0.003556236,Benzo[a]Pyrene,LB
+37047,8.272714e-05,"Dibenzo[a,h]Anthracene",LB
+37047,0.001451539,Acenaphthene,LB
+37047,0.07579194,Naphthalene,LB
+37047,0.01858336,Ammonia,TON
+37047,0.001955072,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.008873803,Sulfur Dioxide,TON
+37047,0.1143772,Volatile Organic Compounds,TON
+37047,0.8795892,Ethyl Benzene,LB
+37047,0.1538999,Acrolein,LB
+37047,3.24012,Xylenes (Mixed Isomers),LB
+37047,0.0018731056,Benzo[b]Fluoranthene,LB
+37047,0.0018731056,Benzo[k]Fluoranthene,LB
+37171,2.8133,Ethyl Benzene,LB
+37171,0.215085,Volatile Organic Compounds,TON
+37105,59.19054,Carbon Dioxide,TON
+37105,0.002863108,Ammonia,TON
+37105,0.001798159,Sulfur Dioxide,TON
+37105,0.008068958,Styrene,LB
+37105,0.06724104,Propionaldehyde,LB
+37105,0.0004064772,Benzo[b]Fluoranthene,LB
+37105,0.0004064772,Benzo[k]Fluoranthene,LB
+37105,1.8129382e-05,"Dibenzo[a,h]Anthracene",LB
+37105,0.4388483,Carbon Monoxide,TON
+37105,0.02235364,Styrene,LB
+37105,1.0090652,Hexane,LB
+37105,0.0013924698,Fluoranthene,LB
+37105,1.235464,Formaldehyde,LB
+37105,0.002150878,Arsenic,LB
+37105,162.4496,Carbon Dioxide,TON
+37105,0.07243271,Nitrogen Oxides,TON
+37105,0.004936149,Sulfur Dioxide,TON
+37197,0.5209208,Ammonia,TON
+37197,0.1509465,Sulfur Dioxide,TON
+37197,1237.5956,Xylenes (Mixed Isomers),LB
+37191,8.957152e-05,Pyrene,LB
+37191,0.0002308406,Acenaphthylene,LB
+37191,0.06217558,Benzene,LB
+37191,0.0007426992,Volatile Organic Compounds,TON
+37191,2850.608,"1,3-Butadiene",LB
+37191,383.6222,Acrolein,LB
+37191,409.293,Propionaldehyde,LB
+37191,29.4567,Fluoranthene,LB
+37191,15119.42,"2,2,4-Trimethylpentane",LB
+37191,0.14196114,Mercury,LB
+37191,539.6488,Nitrogen Oxides,TON
+37189,1.582597,Styrene,LB
+37189,5.836216,Propionaldehyde,LB
+37189,0.04073742,Benzo[a]Pyrene,LB
+37189,0.01383328,Nickel,LB
+37189,0.2288848,PM2.5 Primary (Filt + Cond),TON
+37189,0.000675907,Benzo[a]Pyrene,LB
+37189,0.0003562155,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.00066152,PM2.5 Primary (Filt + Cond),TON
+37189,0.4588096,Ethyl Benzene,LB
+37189,0.09301754,"1,3-Butadiene",LB
+37189,0.015343054,Propionaldehyde,LB
+37189,0.0003994216,Benzo[b]Fluoranthene,LB
+37181,0.6326366,"1,3-Butadiene",LB
+37181,0.010567538,Pyrene,LB
+37181,0.02573574,Acenaphthylene,LB
+37181,0.00232923,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.0003767377,Sulfate Portion of PM2.5-PRI,TON
+37081,105.27126,Benzene,LB
+37081,445.6634,Acetaldehyde,LB
+37081,0.08439255,Nitrous Oxide,TON
+37081,0.06312665,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.1912566,Sulfur Dioxide,TON
+37011,1.6200844,"2,2,4-Trimethylpentane",LB
+37141,0.01781037,Nitrous Oxide,TON
+37141,0.07069106,Ammonia,TON
+37199,0.1056357,Nitrogen Oxides,TON
+37199,0.0005130448,Organic Carbon portion of PM2.5-PRI,TON
+37199,9.390982,Toluene,LB
+37199,2.051928,"2,2,4-Trimethylpentane",LB
+37199,2.384274,Benzene,LB
+37199,0.0006052498,Manganese,LB
+37199,0.7645128,Acetaldehyde,LB
+37199,0.012302608,Phenanthrene,LB
+37199,0.004583808,Fluorene,LB
+37199,0.001920852,Methane,TON
+37199,2.975423e-06,Nitrate portion of PM2.5-PRI,TON
+37197,9.08496,Propionaldehyde,LB
+37197,0.8969972,Pyrene,LB
+37197,75.1377,Acetaldehyde,LB
+37197,10.48261,Carbon Monoxide,TON
+37197,0.1777597,PM10-Primary from certain diesel engines,TON
+37197,0.9931667,Volatile Organic Compounds,TON
+37185,0.7131344,Ethyl Benzene,LB
+37187,3.097132e-08,Chromium (VI),LB
+37187,0.0004615814,Acenaphthylene,LB
+37187,0.0001250103,PM10 Primary (Filt + Cond),TON
+37187,2.165609e-06,Sulfate Portion of PM2.5-PRI,TON
+37183,0.015448816,Benz[a]Anthracene,LB
+37183,0.05703998,Manganese,LB
+37183,0.0014673246,Mercury,LB
+37183,0.664019,Naphthalene,LB
+37183,0.1385792,Methane,TON
+37183,18.50515,Carbon Monoxide,TON
+37183,0.009560072,Elemental Carbon portion of PM2.5-PRI,TON
+37183,14.021598,Hexane,LB
+37183,0.0001366156,Nitrate portion of PM2.5-PRI,TON
+37181,3.59398,Hexane,LB
+37181,0.010766422,"Benzo[g,h,i,]Perylene",LB
+37181,0.0016841322,Manganese,LB
+37181,0.0224577,Phenanthrene,LB
+37181,0.00436805,Ammonia,TON
+37179,0.003030906,Organic Carbon portion of PM2.5-PRI,TON
+37179,19.552046,Ethyl Benzene,LB
+37179,3.137568,"1,3-Butadiene",LB
+37179,0.01320374,"Benzo[g,h,i,]Perylene",LB
+37179,0.0006457982,Nickel,LB
+37179,0.13598174,Phenanthrene,LB
+37007,1.8859746,Formaldehyde,LB
+37007,0.0002201558,Arsenic,LB
+37007,0.000975653,Sulfur Dioxide,TON
+37007,0.14163426,Styrene,LB
+37007,33.47964,Toluene,LB
+37007,1.1486902e-06,Chromium (VI),LB
+37007,0.004875236,"Benzo[g,h,i,]Perylene",LB
+37007,0.008598808,Fluoranthene,LB
+37007,0.8654432,"1,3-Butadiene",LB
+37007,0.10337728,Acrolein,LB
+37007,23.70044,Toluene,LB
+37007,0.00542413,Anthracene,LB
+37007,0.03449586,Phenanthrene,LB
+37007,0.3302084,Naphthalene,LB
+37007,5.779027e-06,Nitrate portion of PM2.5-PRI,TON
+37007,4.459723e-05,Sulfate Portion of PM2.5-PRI,TON
+37013,344.2902,Styrene,LB
+37013,2.028573,Organic Carbon portion of PM2.5-PRI,TON
+37003,8.091208,Ethyl Benzene,LB
+37003,5.924136,"1,3-Butadiene",LB
+37003,0.006078208,Benzo[k]Fluoranthene,LB
+37003,253.8022,Formaldehyde,LB
+37003,0.4636104,Benz[a]Anthracene,LB
+37003,0.215464,Manganese,LB
+37003,0.002613007,Nitrate portion of PM2.5-PRI,TON
+37001,1.2656694,Ethyl Benzene,LB
+37001,1.3301224e-05,Chromium (VI),LB
+37001,3.471616,Benzene,LB
+37001,0.1802639,PM2.5 Primary (Filt + Cond),TON
+37043,2.56525,Toluene,LB
+37171,0.001538867,Benzo[k]Fluoranthene,LB
+37171,0.001321881,Benz[a]Anthracene,LB
+37145,0.05480576,Propionaldehyde,LB
+37145,0.0002081684,Benzo[b]Fluoranthene,LB
+37145,0.4106292,Formaldehyde,LB
+37145,0.011847482,Naphthalene,LB
+37145,0.001825699,Methane,TON
+37141,0.0003171896,Anthracene,LB
+37141,0.708542,Xylenes (Mixed Isomers),LB
+37141,0.0003624762,Benz[a]Anthracene,LB
+37141,0.0009951192,Manganese,LB
+37141,2.900001e-06,Nitrate portion of PM2.5-PRI,TON
+37141,0.0005275144,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.9545096,Hexane,LB
+37099,0.5895514,"1,3-Butadiene",LB
+37099,10.43604,Xylenes (Mixed Isomers),LB
+37099,10.634642,Formaldehyde,LB
+37099,0.010900024,Benzo[a]Pyrene,LB
+37099,0.008430786,Arsenic,LB
+37099,0.04616213,Methane,TON
+37099,0.02361753,Sulfur Dioxide,TON
+37097,0.1851196,Methane,TON
+37097,0.04726531,Nitrous Oxide,TON
+37097,0.1851993,Ammonia,TON
+37097,12.013962,Ethyl Benzene,LB
+37097,48.43368,Toluene,LB
+37097,5.00716,Propionaldehyde,LB
+37171,65.64584,Toluene,LB
+37171,0.0002965748,"Dibenzo[a,h]Anthracene",LB
+37171,17.041578,Benzene,LB
+37171,0.015966596,Acenaphthene,LB
+37169,0.7317473,Volatile Organic Compounds,TON
+37169,149.83948,Toluene,LB
+37169,0.06297478,Pyrene,LB
+37169,0.17117874,Acenaphthylene,LB
+37169,0.0002634578,Arsenic,LB
+37169,0.06833669,Methane,TON
+37169,12.67946,Carbon Monoxide,TON
+37149,1.0120504,Styrene,LB
+37149,0.05315256,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.19838856,Acenaphthylene,LB
+37149,14.13952,Formaldehyde,LB
+37149,0.00121969,"Dibenzo[a,h]Anthracene",LB
+37149,0.012269266,Manganese,LB
+37149,0.003477762,Nickel,LB
+37141,3.187188,Toluene,LB
+37141,0.001686866,Pyrene,LB
+37141,0.000571498,Benz[a]Anthracene,LB
+37141,0.000936142,Acenaphthene,LB
+37141,0.005200962,Phenanthrene,LB
+37141,0.04871532,Naphthalene,LB
+37141,0.0001728986,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.0002084117,Ammonia,TON
+37141,0.0371434,Nitrogen Oxides,TON
+37137,5.120946,Pyrene,LB
+37133,28.4974,Ethyl Benzene,LB
+37133,85.66602,"2,2,4-Trimethylpentane",LB
+37129,4.735766,Pyrene,LB
+37129,0.9436044,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.7390736,Benzo[k]Fluoranthene,LB
+37129,13.002916,Acenaphthylene,LB
+37129,5.785738,Fluorene,LB
+37121,7.907362,Acetaldehyde,LB
+37121,0.1230456,Phenanthrene,LB
+37117,0.14367084,Styrene,LB
+37117,0.558391,Propionaldehyde,LB
+37117,0.002789082,Manganese,LB
+37117,0.0012296502,Arsenic,LB
+37117,0.001844113,PM25-Primary from certain diesel engines,TON
+37117,1.29475e-05,Nitrate portion of PM2.5-PRI,TON
+37117,0.0003509178,Sulfate Portion of PM2.5-PRI,TON
+37117,0.01464412,Acenaphthylene,LB
+37117,0.0009216948,Chrysene,LB
+37117,0.0013117524,Benzo[a]Pyrene,LB
+37117,0.017473886,Phenanthrene,LB
+37117,6.347481e-05,Sulfate Portion of PM2.5-PRI,TON
+37117,4421.58,Ethyl Benzene,LB
+37117,137.18602,Acrolein,LB
+37117,24312.28,Toluene,LB
+37117,1.8360472,Benzo[b]Fluoranthene,LB
+37117,1.070611,Manganese,LB
+37117,0.06697019,Sulfate Portion of PM2.5-PRI,TON
+37101,56.98062,Styrene,LB
+37101,82.08418,Nitrogen Oxides,TON
+37101,0.4764514,Organic Carbon portion of PM2.5-PRI,TON
+37101,22.71777,Volatile Organic Compounds,TON
+37091,0.0544816,Manganese,LB
+37091,0.473882,Acenaphthene,LB
+37091,17.71169,Nitrogen Oxides,TON
+37091,0.665198,PM2.5 Primary (Filt + Cond),TON
+37091,2.043366,Styrene,LB
+37091,12.217714,Acrolein,LB
+37091,0.005660504,"Benzo[g,h,i,]Perylene",LB
+37091,14.660226,Benzene,LB
+37103,0.17072522,"1,3-Butadiene",LB
+37103,0.02876784,Propionaldehyde,LB
+37103,2.658698e-05,"Dibenzo[a,h]Anthracene",LB
+37103,0.001009346,Methane,TON
+37103,0.0009290046,Nitrous Oxide,TON
+37103,0.02827366,Volatile Organic Compounds,TON
+37095,0.01037642,PM2.5 Primary (Filt + Cond),TON
+37095,1.186102e-06,Chromium (VI),LB
+37095,0.000232438,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.02978704,Fluoranthene,LB
+37095,0.4128692,Naphthalene,LB
+37093,10.613744,Styrene,LB
+37093,39.03326,Propionaldehyde,LB
+37093,3.939978,Pyrene,LB
+37093,715.0016,Formaldehyde,LB
+37093,313.8596,Acetaldehyde,LB
+37093,4.143442,Fluorene,LB
+37093,0.3890697,Elemental Carbon portion of PM2.5-PRI,TON
+37093,13.2082,Nitrogen Oxides,TON
+37093,0.04822969,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,28.96036,Acrolein,LB
+37089,27.83594,Toluene,LB
+37089,0.005823714,"Benzo[g,h,i,]Perylene",LB
+37089,34.67318,Benzene,LB
+37089,40.5752,Naphthalene,LB
+37089,0.2089345,Methane,TON
+37089,0.3888534,PM2.5 Primary (Filt + Cond),TON
+37083,0.0010048006,"Benzo[g,h,i,]Perylene",LB
+37083,0.0012091964,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.0006582328,Benzo[k]Fluoranthene,LB
+37083,0.13732456,Acenaphthylene,LB
+37083,2.395092,Benzene,LB
+37083,0.005376166,Nickel,LB
+37083,11.099272,Acetaldehyde,LB
+37083,0.0007487057,Nitrous Oxide,TON
+37083,0.01092951,Ammonia,TON
+37083,0.9896428,"1,3-Butadiene",LB
+37083,0.8847338,Hexane,LB
+37083,0.16756126,Acenaphthylene,LB
+37083,0.008480806,Manganese,LB
+37083,3.685272,Naphthalene,LB
+37083,3.86559,Carbon Monoxide,TON
+37083,0.001450341,Elemental Carbon portion of PM2.5-PRI,TON
+37083,4.594466e-05,Nitrate portion of PM2.5-PRI,TON
+37077,0.008953856,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.000205459,"Dibenzo[a,h]Anthracene",LB
+37077,20.34124,Benzene,LB
+37077,0.001243856,Arsenic,LB
+37077,0.007356545,Methane,TON
+37077,0.6386115,Nitrogen Oxides,TON
+37053,0.7829778,Xylenes (Mixed Isomers),LB
+37053,0.0004251906,"Benzo[g,h,i,]Perylene",LB
+37053,10.093226,Formaldehyde,LB
+37053,272.9969,Carbon Dioxide,TON
+37053,0.0104576,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.06735983,PM10 Primary (Filt + Cond),TON
+37197,0.0002020318,Acenaphthene,LB
+37197,0.0006262935,PM2.5 Primary (Filt + Cond),TON
+37197,1.751132e-05,Sulfate Portion of PM2.5-PRI,TON
+37197,0.0002555846,Benzo[b]Fluoranthene,LB
+37197,1.1270786e-05,"Dibenzo[a,h]Anthracene",LB
+37193,3168.152,Toluene,LB
+37193,19.277138,Propionaldehyde,LB
+37193,0.0004953384,Chromium (VI),LB
+37193,325.6772,Acetaldehyde,LB
+37191,0.17181924,Propionaldehyde,LB
+37191,1.5121274,Xylenes (Mixed Isomers),LB
+37191,0.0006526856,Chrysene,LB
+37191,1.7443468,Toluene,LB
+37191,0.03720252,Naphthalene,LB
+37191,118.891,Carbon Dioxide,TON
+37191,0.005847034,Ammonia,TON
+37191,6.044139e-06,Nitrate portion of PM2.5-PRI,TON
+37187,888.3606,Ethyl Benzene,LB
+37187,0.1943742,Nickel,LB
+37187,0.298054,Arsenic,LB
+37187,0.3642855,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.01924784,Sulfate Portion of PM2.5-PRI,TON
+37179,0.2173116,Chrysene,LB
+37179,0.5929803,PM2.5 Primary (Filt + Cond),TON
+37179,0.02834734,Sulfate Portion of PM2.5-PRI,TON
+37179,1.476753,Volatile Organic Compounds,TON
+37171,160.8274,Acrolein,LB
+37171,284.2406,Toluene,LB
+37171,66.35678,Hexane,LB
+37171,83.3819,Propionaldehyde,LB
+37171,7.55997,Fluoranthene,LB
+37171,0.02161742,"Dibenzo[a,h]Anthracene",LB
+37171,240.061,Naphthalene,LB
+37171,4.814188,PM25-Primary from certain diesel engines,TON
+37171,0.5100936,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.00631544,Arsenic,LB
+37171,12.31696,Nitrogen Oxides,TON
+37171,0.3339796,PM2.5 Primary (Filt + Cond),TON
+37171,2.342906,Styrene,LB
+37171,13.161296,Acrolein,LB
+37171,11.740078,Toluene,LB
+37149,207.3124,Hexane,LB
+37137,0.03590747,Sulfur Dioxide,TON
+37137,0.1110442,"Benzo[g,h,i,]Perylene",LB
+37137,44.66484,Formaldehyde,LB
+37137,0.04212802,Benzo[a]Pyrene,LB
+37137,148.65392,Benzene,LB
+37137,0.0009409742,Mercury,LB
+37137,21.6227,"1,3-Butadiene",LB
+37135,0.005837926,Benzo[k]Fluoranthene,LB
+37135,0.005589878,Benz[a]Anthracene,LB
+37135,0.0013724186,Arsenic,LB
+37135,0.00790364,Sulfur Dioxide,TON
+37135,11298.93,Xylenes (Mixed Isomers),LB
+37133,19.66806,Carbon Monoxide,TON
+37133,0.6477227,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.0332008,"Benzo[g,h,i,]Perylene",LB
+37129,0.03165131,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.007962328,Benzo[a]Pyrene,LB
+37129,0.12138084,Benz[a]Anthracene,LB
+37129,9.7059,Ethyl Benzene,LB
+37129,0.05047936,Nickel,LB
+37129,0.04295288,PM10-Primary from certain diesel engines,TON
+37129,0.04823234,Ammonia,TON
+37125,0.9010122,Ethyl Benzene,LB
+37125,2.210066,Toluene,LB
+37125,2.325488,Nitrogen Oxides,TON
+37125,0.0339468,Chrysene,LB
+37125,0.0019007696,Arsenic,LB
+37125,0.0765129,Acenaphthene,LB
+37125,0.1051976,PM25-Primary from certain diesel engines,TON
+37123,0.8639494,Acrolein,LB
+37123,0.2802018,Hexane,LB
+37123,4.788808,Acetaldehyde,LB
+37123,0.03682814,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.07652778,Benzo[a]Pyrene,LB
+37121,3.01237e-05,Mercury,LB
+37121,0.01510142,Nickel,LB
+37121,4.040408,Ethyl Benzene,LB
+37121,3.594392,"1,3-Butadiene",LB
+37121,3.098328,Hexane,LB
+37121,0.004264151,Nitrous Oxide,TON
+37121,0.04781229,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.009971361,Sulfur Dioxide,TON
+37121,0.824346,Fluoranthene,LB
+37111,69.95918,Toluene,LB
+37123,0.08257778,Benz[a]Anthracene,LB
+37123,0.007911356,Nickel,LB
+37123,540.8933,Carbon Dioxide,TON
+37123,0.0287502,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.002196214,Sulfate Portion of PM2.5-PRI,TON
+37119,1.6771426,Propionaldehyde,LB
+37119,2.863016e-05,Chromium (VI),LB
+37119,0.03488088,Benzo[k]Fluoranthene,LB
+37119,0.18211644,Fluorene,LB
+37119,0.0002870324,Mercury,LB
+37113,0.970413,Benz[a]Anthracene,LB
+37113,129.4099,Benzene,LB
+37113,0.0002376544,Mercury,LB
+37105,1.3142154e-05,Mercury,LB
+37105,0.03294759,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.02277636,Benzo[a]Pyrene,LB
+37105,0.000932385,"Dibenzo[a,h]Anthracene",LB
+37091,1.1111862,"2,2,4-Trimethylpentane",LB
+37091,20.83638,Acetaldehyde,LB
+37091,0.16809258,Acenaphthene,LB
+37091,0.316731,Fluorene,LB
+37091,0.1036085,PM25-Primary from certain diesel engines,TON
+37091,0.0009745075,Nitrous Oxide,TON
+37093,6615.26,Hexane,LB
+37093,5.6421,"Benzo[g,h,i,]Perylene",LB
+37093,2.148416,Benzo[a]Pyrene,LB
+37079,11.011642,"2,2,4-Trimethylpentane",LB
+37079,0.0006597065,Nitrate portion of PM2.5-PRI,TON
+37073,0.07359306,Xylenes (Mixed Isomers),LB
+37073,0.00017620228,Acenaphthylene,LB
+37073,18.994548,Formaldehyde,LB
+37073,0.00012051768,Arsenic,LB
+37073,0.000426657,Naphthalene,LB
+37073,0.2608392,Carbon Monoxide,TON
+37073,3526.326,Benzene,LB
+37073,0.2172364,Nickel,LB
+37073,725.1883,Carbon Monoxide,TON
+37073,2.69714,"Benzo[g,h,i,]Perylene",LB
+37073,0.8851928,Chrysene,LB
+37073,66.59482,Acrolein,LB
+37073,1134.15,Formaldehyde,LB
+37073,1.149573,PM2.5 Primary (Filt + Cond),TON
+37079,2362.928,Xylenes (Mixed Isomers),LB
+37067,0.003026892,Sulfate Portion of PM2.5-PRI,TON
+37067,0.558252,Pyrene,LB
+37067,0.0016110924,Benzo[k]Fluoranthene,LB
+37067,0.010698132,Manganese,LB
+37067,1.7784492,Ethyl Benzene,LB
+37067,0.8098812,Styrene,LB
+37067,0.18501354,Acenaphthene,LB
+37067,0.9124529,Carbon Monoxide,TON
+37067,0.008550014,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.03147486,Fluoranthene,LB
+37067,0.05748964,"Benzo[g,h,i,]Perylene",LB
+37065,5.88666e-05,Mercury,LB
+37065,3.332094,Phenanthrene,LB
+37065,25.30828,Nitrogen Oxides,TON
+37065,0.1419394,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.016590092,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,792.7862,"1,3-Butadiene",LB
+37059,28.27074,Phenanthrene,LB
+37043,10.94498,Carbon Dioxide,TON
+37043,0.003036577,PM25-Primary from certain diesel engines,TON
+37043,0.0002777818,Manganese,LB
+37043,0.2913126,PM10 Primary (Filt + Cond),TON
+37043,1.0214878,Phenanthrene,LB
+37043,9.492962,Naphthalene,LB
+37037,51.44752,Xylenes (Mixed Isomers),LB
+37037,28.89834,Propionaldehyde,LB
+37037,0.04704544,Arsenic,LB
+37037,0.006924176,Nitrate portion of PM2.5-PRI,TON
+37037,0.07589421,Sulfate Portion of PM2.5-PRI,TON
+37035,17.29628,Styrene,LB
+37035,1.9546736,Chrysene,LB
+37035,0.04203234,"Dibenzo[a,h]Anthracene",LB
+37035,0.3603483,Methane,TON
+37035,5.728683,PM10-Primary from certain diesel engines,TON
+37035,5.270316,PM25-Primary from certain diesel engines,TON
+37035,3.209397,Elemental Carbon portion of PM2.5-PRI,TON
+37035,5.520407,PM2.5 Primary (Filt + Cond),TON
+37035,0.0002240448,Mercury,LB
+37027,0.01999532,Ammonia,TON
+37027,0.04071584,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,2.111652e-05,Mercury,LB
+37027,1.7354746,Styrene,LB
+37027,8.073654,Toluene,LB
+37027,0.003519694,"Benzo[g,h,i,]Perylene",LB
+37027,0.003746676,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.03749122,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,4.696436,Fluoranthene,LB
+37027,0.02014164,"Dibenzo[a,h]Anthracene",LB
+37027,0.2656514,Manganese,LB
+37027,0.06680398,Nickel,LB
+37027,7901.218,Carbon Dioxide,TON
+37027,0.01331057,Nitrous Oxide,TON
+37023,0.07701022,Nickel,LB
+37023,4.089608,Fluorene,LB
+37023,4.568522,Fluoranthene,LB
+37023,1.4974738,Benz[a]Anthracene,LB
+37023,0.6562727,Organic Carbon portion of PM2.5-PRI,TON
+37023,35.00702,Toluene,LB
+37159,0.00010710284,Mercury,LB
+37159,0.9620378,Acenaphthene,LB
+37159,0.1570283,Methane,TON
+37159,0.05872331,PM10-Primary from certain diesel engines,TON
+37159,0.1944787,PM10 Primary (Filt + Cond),TON
+37159,22.04052,Toluene,LB
+37159,15.744718,Propionaldehyde,LB
+37159,22.50782,Xylenes (Mixed Isomers),LB
+37159,0.0013062936,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.0007094784,"Dibenzo[a,h]Anthracene",LB
+37149,0.2819684,Acenaphthene,LB
+37149,0.09547601,PM25-Primary from certain diesel engines,TON
+37149,0.02433093,Ammonia,TON
+37149,0.09773107,PM2.5 Primary (Filt + Cond),TON
+37153,12.797782,Propionaldehyde,LB
+37153,629.513,Benzene,LB
+37147,4.732178,Fluorene,LB
+37147,0.2663616,Sulfur Dioxide,TON
+37147,20.63122,Hexane,LB
+37147,0.01894653,Benzo[k]Fluoranthene,LB
+37147,3.645342,Acenaphthylene,LB
+37147,0.018780112,"Dibenzo[a,h]Anthracene",LB
+37147,0.0004051534,Mercury,LB
+37147,0.000829491,"Benzo[g,h,i,]Perylene",LB
+37147,0.0005465864,Benzo[k]Fluoranthene,LB
+37147,18.92811,Formaldehyde,LB
+37147,2.084794,Naphthalene,LB
+37147,0.04540531,PM10-Primary from certain diesel engines,TON
+37135,108.11814,"2,2,4-Trimethylpentane",LB
+37135,5.550196,Volatile Organic Compounds,TON
+37015,0.0001333928,PM10 Primary (Filt + Cond),TON
+37015,0.002312306,Acrolein,LB
+37015,1.4737276e-06,"Dibenzo[a,h]Anthracene",LB
+37015,1.242427e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.003607644,Manganese,LB
+37199,130.5,Carbon Dioxide,TON
+37199,0.004077031,Ammonia,TON
+37199,0.006145685,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.0454796,Anthracene,LB
+37199,0.13291024,Pyrene,LB
+37199,1.0182008,Xylenes (Mixed Isomers),LB
+37199,0.3471602,"2,2,4-Trimethylpentane",LB
+37191,2.765652,Fluorene,LB
+37191,0.9233884,Methane,TON
+37191,20572.28,Carbon Dioxide,TON
+37191,0.8260284,Nitrous Oxide,TON
+37191,1.748509,PM10 Primary (Filt + Cond),TON
+37191,0.0011453728,Chromium (VI),LB
+37187,0.4869704,Hexane,LB
+37187,0.9269628,Xylenes (Mixed Isomers),LB
+37187,0.001948909,Acenaphthylene,LB
+37187,0.5147826,"2,2,4-Trimethylpentane",LB
+37187,0.0003855232,Benz[a]Anthracene,LB
+37187,0.0008833886,Arsenic,LB
+37187,0.00042179,Acenaphthene,LB
+37187,0.0002126692,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.001892261,Sulfur Dioxide,TON
+37187,12.67985,Naphthalene,LB
+37187,0.3506878,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.001117441,Nitrate portion of PM2.5-PRI,TON
+37187,0.02762755,Sulfate Portion of PM2.5-PRI,TON
+37187,0.974481,Pyrene,LB
+37187,0.7468224,Fluoranthene,LB
+37187,0.002637192,"Dibenzo[a,h]Anthracene",LB
+37195,1.0846638,Chrysene,LB
+37195,57.6945,Hexane,LB
+37195,175.25918,Benzene,LB
+37195,4.913366,PM25-Primary from certain diesel engines,TON
+37195,0.01220945,Nitrate portion of PM2.5-PRI,TON
+37187,1.570638e-07,Nickel,LB
+37187,1.54656e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.0004372453,Nitrogen Oxides,TON
+37187,0.004686184,Formaldehyde,LB
+37183,12.32436,Propionaldehyde,LB
+37183,0.00010966144,Chromium (VI),LB
+37183,29.94124,Naphthalene,LB
+37183,0.6544566,PM10-Primary from certain diesel engines,TON
+37183,0.6021067,PM25-Primary from certain diesel engines,TON
+37181,0.0017171856,"Benzo[g,h,i,]Perylene",LB
+37181,0.5330488,Fluoranthene,LB
+37181,4.019732,Ethyl Benzene,LB
+37181,9.522394,Acrolein,LB
+37181,6.380672,Propionaldehyde,LB
+37181,0.6795536,Fluorene,LB
+37181,0.0490019,Methane,TON
+37181,0.00234105,Nitrous Oxide,TON
+37181,0.0002553102,Nitrate portion of PM2.5-PRI,TON
+37181,0.01978395,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.121161,PM2.5 Primary (Filt + Cond),TON
+37179,3.627168,Benzene,LB
+37179,0.007155676,Sulfur Dioxide,TON
+37179,0.0001525954,Sulfate Portion of PM2.5-PRI,TON
+37179,0.08931928,Volatile Organic Compounds,TON
+37179,0.7120114,Ethyl Benzene,LB
+37179,0.03455642,Styrene,LB
+37179,0.002393976,Pyrene,LB
+37179,0.00211743,Fluoranthene,LB
+37181,362.605,Ethyl Benzene,LB
+37181,12.513066,Propionaldehyde,LB
+37181,0.4007157,Methane,TON
+37179,0.002264152,Chromium (VI),LB
+37179,10.696998,Acenaphthylene,LB
+37179,0.9200846,Manganese,LB
+37179,0.283054,Nickel,LB
+37179,0.4985561,Organic Carbon portion of PM2.5-PRI,TON
+37179,4.160322,PM10 Primary (Filt + Cond),TON
+37177,0.0004468386,Arsenic,LB
+37177,0.004952663,Methane,TON
+37177,0.209842,Styrene,LB
+37177,0.9554874,Toluene,LB
+37177,0.9382634,Xylenes (Mixed Isomers),LB
+37177,2.88135e-06,Chromium (VI),LB
+37043,0.3666834,Acenaphthylene,LB
+37043,62.85702,Formaldehyde,LB
+37043,0.05019834,Benzo[a]Pyrene,LB
+37043,958.685,Carbon Dioxide,TON
+37043,8.122028,Xylenes (Mixed Isomers),LB
+37043,1.4968978e-07,Chromium (VI),LB
+37043,0.0009522864,Chrysene,LB
+37037,0.00879948,Chrysene,LB
+37037,0.6840818,Acrolein,LB
+37037,0.013337484,Benzo[a]Pyrene,LB
+37037,0.009146046,Benz[a]Anthracene,LB
+37037,34.03904,Benzene,LB
+37037,0.013297152,Manganese,LB
+37037,672.2848,Carbon Dioxide,TON
+37037,355.4908,Ethyl Benzene,LB
+37037,0.099576,Benzo[k]Fluoranthene,LB
+37037,0.02032103,Elemental Carbon portion of PM2.5-PRI,TON
+37029,6.502018,Styrene,LB
+37029,23.9239,Propionaldehyde,LB
+37029,9.870242e-05,Mercury,LB
+37029,3.889082,Phenanthrene,LB
+37029,9.207736,Nitrogen Oxides,TON
+37025,0.1499542,Nickel,LB
+37025,567.1262,Acetaldehyde,LB
+37025,111.66208,Toluene,LB
+37025,4.072248,Anthracene,LB
+37025,0.03566046,Benzo[k]Fluoranthene,LB
+37069,32.9256,"2,2,4-Trimethylpentane",LB
+37069,1.03468,Benz[a]Anthracene,LB
+37069,0.7721649,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.02166811,Nitrous Oxide,TON
+37069,0.1995858,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.019571818,"Benzo[g,h,i,]Perylene",LB
+37067,5.594406,Anthracene,LB
+37067,57.8976,"2,2,4-Trimethylpentane",LB
+37067,0.8952286,Manganese,LB
+37067,228.4991,Nitrogen Oxides,TON
+37067,1.602513,Organic Carbon portion of PM2.5-PRI,TON
+37067,12.10226,PM10 Primary (Filt + Cond),TON
+37059,0.02186458,Acenaphthene,LB
+37059,72.7858,Carbon Dioxide,TON
+37059,7.598899e-05,Nitrate portion of PM2.5-PRI,TON
+37059,1.740609e-06,Chromium (VI),LB
+37059,0.0013012992,Benzo[b]Fluoranthene,LB
+37059,0.03675916,Acenaphthylene,LB
+37059,0.008566304,Chrysene,LB
+37065,4.338016,Anthracene,LB
+37065,3.057026,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.0701738,"Dibenzo[a,h]Anthracene",LB
+37065,1.4057318,Arsenic,LB
+37065,2.613454,Methane,TON
+37065,140.0465,Nitrogen Oxides,TON
+37049,59.47982,Hexane,LB
+37049,53.84162,"2,2,4-Trimethylpentane",LB
+37049,2.122104,Xylenes (Mixed Isomers),LB
+37049,0.0018507584,Fluorene,LB
+37049,2.064064,Carbon Dioxide,TON
+37049,0.0006195013,PM10 Primary (Filt + Cond),TON
+37049,8.975059e-06,Sulfate Portion of PM2.5-PRI,TON
+37045,0.3704768,Propionaldehyde,LB
+37045,0.011183652,Manganese,LB
+37045,7.618228e-05,Mercury,LB
+37045,0.11804134,Phenanthrene,LB
+37045,10.14404,Carbon Monoxide,TON
+37045,0.01415924,PM2.5 Primary (Filt + Cond),TON
+37045,0.006141166,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.001953542,Sulfate Portion of PM2.5-PRI,TON
+37041,0.4119272,Pyrene,LB
+37041,533.6512,Xylenes (Mixed Isomers),LB
+37041,0.197611,"Benzo[g,h,i,]Perylene",LB
+37041,87.7352,Acetaldehyde,LB
+37041,0.2492504,Acenaphthene,LB
+37041,0.1747545,Ammonia,TON
+37041,0.182973,PM10 Primary (Filt + Cond),TON
+37029,19.04757,Acrolein,LB
+37029,0.00976059,"Dibenzo[a,h]Anthracene",LB
+37029,4.806006,Phenanthrene,LB
+37029,0.3643796,Sulfur Dioxide,TON
+37023,0.0232474,Benzo[k]Fluoranthene,LB
+37023,1969.7614,Formaldehyde,LB
+37023,4.518857,PM10-Primary from certain diesel engines,TON
+37023,0.9583974,Organic Carbon portion of PM2.5-PRI,TON
+37023,7.760091,Volatile Organic Compounds,TON
+37023,0.0002018208,Mercury,LB
+37023,21.13674,Ethyl Benzene,LB
+37023,2.05082,Anthracene,LB
+37023,5.870948,Pyrene,LB
+37133,141.7069,Carbon Monoxide,TON
+37133,0.005498939,Nitrate portion of PM2.5-PRI,TON
+37133,58.96136,Nitrogen Oxides,TON
+37133,0.4453987,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.08202434,Benzo[b]Fluoranthene,LB
+37133,0.2748694,Benzo[a]Pyrene,LB
+37131,0.00012604112,Mercury,LB
+37131,0.02635302,Arsenic,LB
+37131,114.18012,Acetaldehyde,LB
+37131,28.64754,Naphthalene,LB
+37131,0.1675421,Methane,TON
+37131,32.23882,Nitrogen Oxides,TON
+37131,13.189436,Propionaldehyde,LB
+37131,0.011075676,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,4040.644,"1,3-Butadiene",LB
+37129,564.7966,Propionaldehyde,LB
+37129,0.02270182,Chromium (VI),LB
+37129,28.32636,Acenaphthene,LB
+37129,472697.9,Carbon Dioxide,TON
+37129,26.86007,Ammonia,TON
+37129,0.03393316,Nitrate portion of PM2.5-PRI,TON
+37127,1.1468156,Toluene,LB
+37127,0.0009346258,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.00367088,Benzo[b]Fluoranthene,LB
+37127,0.003295704,Manganese,LB
+37127,0.0003122403,Nitrous Oxide,TON
+37127,0.003242455,Ammonia,TON
+37127,0.001174884,Sulfate Portion of PM2.5-PRI,TON
+37113,0.0837563,Styrene,LB
+37113,0.00421148,"Benzo[g,h,i,]Perylene",LB
+37113,1.1319342,Formaldehyde,LB
+37113,0.0011961452,Manganese,LB
+37113,0.003582032,Acenaphthene,LB
+37113,0.019491376,Phenanthrene,LB
+37113,0.00725591,Fluorene,LB
+37113,0.18603084,Naphthalene,LB
+37113,5.213287e-06,Nitrate portion of PM2.5-PRI,TON
+37113,0.006162166,PM10 Primary (Filt + Cond),TON
+37107,0.007388224,Chromium (VI),LB
+37107,1.7798366,Benz[a]Anthracene,LB
+37107,0.009399678,Nitrate portion of PM2.5-PRI,TON
+37107,139.0093,Nitrogen Oxides,TON
+37091,5.305804,Naphthalene,LB
+37091,0.04198478,PM2.5 Primary (Filt + Cond),TON
+37091,94.82378,Ethyl Benzene,LB
+37091,0.03096476,Benzo[b]Fluoranthene,LB
+37091,141.83866,"2,2,4-Trimethylpentane",LB
+37071,21.46891,Nitrous Oxide,TON
+37071,32368.34,Hexane,LB
+37069,15.570214,Acrolein,LB
+37069,0.5329628,Anthracene,LB
+37069,10.379548,Propionaldehyde,LB
+37069,0.002923232,"Benzo[g,h,i,]Perylene",LB
+37069,0.0009636362,Benzo[k]Fluoranthene,LB
+37069,199.57582,Formaldehyde,LB
+37069,0.00928074,Arsenic,LB
+37069,0.1919691,PM25-Primary from certain diesel engines,TON
+37069,1.6350654,Chrysene,LB
+37069,5600.53,Benzene,LB
+37069,2.412378,Methane,TON
+37069,121.0919,Nitrogen Oxides,TON
+37069,6.655448,"Benzo[g,h,i,]Perylene",LB
+37055,0.06835996,Benz[a]Anthracene,LB
+37055,0.4956726,Fluorene,LB
+37055,1484.21,Carbon Dioxide,TON
+37055,0.02591654,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,3.9431,Propionaldehyde,LB
+37055,884.9348,Xylenes (Mixed Isomers),LB
+37047,2.692532,Acenaphthylene,LB
+37047,11.029706,"2,2,4-Trimethylpentane",LB
+37047,9.594254e-05,Mercury,LB
+37047,0.07714362,Nickel,LB
+37047,0.02006184,Arsenic,LB
+37047,1.6012538,Acenaphthene,LB
+37047,51.21706,Naphthalene,LB
+37047,7432.952,Carbon Dioxide,TON
+37047,0.006383821,Nitrate portion of PM2.5-PRI,TON
+37047,2.266803,PM2.5 Primary (Filt + Cond),TON
+37045,1.1265682,Toluene,LB
+37045,0.9287466,Propionaldehyde,LB
+37045,0.0005157572,Benzo[k]Fluoranthene,LB
+37045,0.012645248,Benzo[a]Pyrene,LB
+37045,0.003782108,Manganese,LB
+37045,7.507348,Acetaldehyde,LB
+37045,0.1241562,Fluorene,LB
+37045,23.9871,Acrolein,LB
+37045,0.004445528,"Benzo[g,h,i,]Perylene",LB
+37045,1.6439058,Acenaphthylene,LB
+37045,2.705176,Phenanthrene,LB
+37045,0.006857867,Nitrous Oxide,TON
+37045,0.3310862,PM2.5 Primary (Filt + Cond),TON
+37045,0.04345186,Nickel,LB
+37041,0.0013813902,"1,3-Butadiene",LB
+37041,0.008140798,Hexane,LB
+37041,1.622634e-05,Pyrene,LB
+37041,1.1704256e-05,"Benzo[g,h,i,]Perylene",LB
+37041,1.0968724e-07,Nickel,LB
+37041,5.262284e-05,Phenanthrene,LB
+37041,0.05861061,Carbon Dioxide,TON
+37041,4.354764,Fluoranthene,LB
+37041,0.015417372,Mercury,LB
+37041,156.4866,Naphthalene,LB
+37041,29006.74,Carbon Dioxide,TON
+37041,0.2150615,Elemental Carbon portion of PM2.5-PRI,TON
+37041,1.376825,Nitrous Oxide,TON
+37041,0.9159388,PM2.5 Primary (Filt + Cond),TON
+37037,3.617628,Acrolein,LB
+37037,0.15687786,Anthracene,LB
+37037,0.4608464,Pyrene,LB
+37037,0.02095741,Ammonia,TON
+37037,2.07725,Nitrogen Oxides,TON
+37037,0.2581024,Volatile Organic Compounds,TON
+37037,3.016256,Styrene,LB
+37037,17.601566,Xylenes (Mixed Isomers),LB
+37037,6.56714e-05,Chromium (VI),LB
+37037,1.1715056,Acenaphthylene,LB
+37037,0.15294444,Benz[a]Anthracene,LB
+37037,0.1289662,Methane,TON
+37037,0.005288243,Nitrous Oxide,TON
+37037,0.30004,PM10 Primary (Filt + Cond),TON
+37171,1.0336412,Styrene,LB
+37171,2.376544,"1,3-Butadiene",LB
+37171,2.077464,Hexane,LB
+37171,0.01710173,Benzo[b]Fluoranthene,LB
+37171,0.01220568,Nickel,LB
+37171,0.9508254,Phenanthrene,LB
+37171,0.08210839,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.03662762,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.4619362,Hexane,LB
+37161,18.402972,Formaldehyde,LB
+37161,0.05463298,Acenaphthene,LB
+37161,0.08016488,PM25-Primary from certain diesel engines,TON
+37161,0.004149809,Sulfate Portion of PM2.5-PRI,TON
+37145,315.8458,Formaldehyde,LB
+37145,0.7629663,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.2060565,Ammonia,TON
+37145,21.79756,Acrolein,LB
+37145,7.910018,Hexane,LB
+37145,0.3167548,Chrysene,LB
+37135,84.39338,Toluene,LB
+37135,52.63768,Propionaldehyde,LB
+37135,89.2533,Xylenes (Mixed Isomers),LB
+37135,1.424877,Chrysene,LB
+37135,3.159294,Acenaphthene,LB
+37135,7.009922,Fluorene,LB
+37135,115.33766,Naphthalene,LB
+37135,18024.65,Carbon Dioxide,TON
+37135,52.9026,Nitrogen Oxides,TON
+37135,1.068737,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.1535887,Sulfur Dioxide,TON
+37135,0.0003268446,"Dibenzo[a,h]Anthracene",LB
+37135,11.50797,Benzene,LB
+37135,0.007134562,Manganese,LB
+37135,0.0013369752,Nickel,LB
+37135,0.05866912,Phenanthrene,LB
+37135,5.197355,Carbon Monoxide,TON
+37135,0.005248034,Nitrous Oxide,TON
+37135,0.895412,"1,3-Butadiene",LB
+37135,0.0379151,"Benzo[g,h,i,]Perylene",LB
+37135,0.014245066,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.007882952,Benzo[b]Fluoranthene,LB
+37135,0.007882952,Benzo[k]Fluoranthene,LB
+37143,1.470333,Styrene,LB
+37143,0.02920852,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,25.35202,Formaldehyde,LB
+37143,14.801864,Acetaldehyde,LB
+37143,0.004215976,Elemental Carbon portion of PM2.5-PRI,TON
+37141,4.880502e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.01071299,Nitrogen Oxides,TON
+37141,2.572706e-08,Chromium (VI),LB
+37141,0.0001364147,Chrysene,LB
+37133,12.841728,Styrene,LB
+37133,70.83916,Acrolein,LB
+37133,4.953918,Acenaphthylene,LB
+37133,1.4194434,Chrysene,LB
+37133,0.12546226,Nickel,LB
+37133,16361.37,Carbon Dioxide,TON
+37133,6.1178,Toluene,LB
+37133,0.706448,Acetaldehyde,LB
+37133,0.0002411056,Ammonia,TON
+37133,0.0001929336,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.000266939,Manganese,LB
+37129,0.01268082,Naphthalene,LB
+37129,0.0001347708,Nitrous Oxide,TON
+37129,0.000523738,Ammonia,TON
+37129,0.0001426253,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,2.798242e-07,Chromium (VI),LB
+37117,10.76988,Nitrogen Oxides,TON
+37117,0.02633695,Sulfate Portion of PM2.5-PRI,TON
+37117,1.466985,Volatile Organic Compounds,TON
+37117,8.725996,Ethyl Benzene,LB
+37117,3.51197,Styrene,LB
+37117,20.29636,Acrolein,LB
+37117,0.8963576,Anthracene,LB
+37117,0.01466805,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.002378829,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.5998004,Styrene,LB
+37125,0.04071266,Pyrene,LB
+37125,0.00584705,Benzo[b]Fluoranthene,LB
+37119,8.137044,Ethyl Benzene,LB
+37119,0.02279338,Pyrene,LB
+37119,0.005433328,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.01998014,Fluoranthene,LB
+37119,0.003872668,Chrysene,LB
+37119,3.253218e-05,Mercury,LB
+37119,0.0006219826,Arsenic,LB
+37119,0.003199376,Organic Carbon portion of PM2.5-PRI,TON
+37119,0.003086765,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.0002195909,Sulfate Portion of PM2.5-PRI,TON
+37119,0.2364975,Volatile Organic Compounds,TON
+37107,5.24947,Toluene,LB
+37107,4.246946,Propionaldehyde,LB
+37107,0.009180996,Benzo[b]Fluoranthene,LB
+37107,0.0012635696,Benzo[k]Fluoranthene,LB
+37107,34.49446,Acetaldehyde,LB
+37107,0.1763413,PM10-Primary from certain diesel engines,TON
+37107,0.002412016,Nitrous Oxide,TON
+37107,0.02444241,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,754.7198,Ethyl Benzene,LB
+37089,186.16966,"1,3-Butadiene",LB
+37089,2.147816,Pyrene,LB
+37089,1.3241808,"Benzo[g,h,i,]Perylene",LB
+37089,0.3677994,Benzo[k]Fluoranthene,LB
+37089,5.867956,Acenaphthylene,LB
+37089,0.3603366,Chrysene,LB
+37089,0.4988778,Benzo[a]Pyrene,LB
+37089,0.452715,Manganese,LB
+37089,66.8957,Naphthalene,LB
+37089,0.8654632,Methane,TON
+37089,0.6800666,PM2.5 Primary (Filt + Cond),TON
+37083,3.4322,"2,2,4-Trimethylpentane",LB
+37083,0.017863902,Nickel,LB
+37083,4.338341,Carbon Monoxide,TON
+37079,0.006497078,Nickel,LB
+37079,2.699782,Toluene,LB
+37079,2.609836,Propionaldehyde,LB
+37079,0.3666464,Pyrene,LB
+37079,0.2868252,Fluoranthene,LB
+37079,0.2767272,Acenaphthylene,LB
+37087,0.00013016636,Manganese,LB
+37087,0.0003259933,Ammonia,TON
+37087,1.329807e-05,Nitrate portion of PM2.5-PRI,TON
+37085,28.02926,Formaldehyde,LB
+37085,0.3206558,Phenanthrene,LB
+37085,2.944026,Naphthalene,LB
+37085,0.0003330279,Nitrate portion of PM2.5-PRI,TON
+37085,2.786274,Nitrogen Oxides,TON
+37075,0.005512094,Acenaphthylene,LB
+37075,0.0003326386,Chrysene,LB
+37075,0.370044,Formaldehyde,LB
+37075,0.0002833468,Manganese,LB
+37075,5.042206e-06,Mercury,LB
+37075,16.56674,Carbon Dioxide,TON
+37075,1.2512146,Hexane,LB
+37075,0.02375006,Propionaldehyde,LB
+37071,0.05374064,Ethyl Benzene,LB
+37071,0.03296172,PM10 Primary (Filt + Cond),TON
+37071,0.007418725,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,35.12954,Ethyl Benzene,LB
+37067,0.2458608,Benzo[b]Fluoranthene,LB
+37067,1.5784628,Chrysene,LB
+37067,2.68626,Benz[a]Anthracene,LB
+37067,0.11047274,Nickel,LB
+37067,115.61456,Naphthalene,LB
+37067,7904.519,Carbon Dioxide,TON
+37067,2.806967,PM10-Primary from certain diesel engines,TON
+37067,0.5183953,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,2193.65,Hexane,LB
+37053,0.11590058,Styrene,LB
+37053,19.296018,Toluene,LB
+37053,0.007940552,Pyrene,LB
+37053,4.613454e-05,Arsenic,LB
+37053,1.5342098,Acetaldehyde,LB
+37053,0.247476,Naphthalene,LB
+37053,0.1055307,Nitrogen Oxides,TON
+37051,5.734722,Benzene,LB
+37051,0.01588009,Sulfur Dioxide,TON
+37051,0.3408938,Volatile Organic Compounds,TON
+37051,0.09252666,Benzo[b]Fluoranthene,LB
+37051,0.3100948,Benzo[a]Pyrene,LB
+37051,0.1265263,Sulfate Portion of PM2.5-PRI,TON
+37049,0.0003485102,Sulfate Portion of PM2.5-PRI,TON
+37049,7.693764,Ethyl Benzene,LB
+37049,0.2445276,Propionaldehyde,LB
+37049,0.004489726,Chrysene,LB
+37049,7.955028,Carbon Monoxide,TON
+37049,0.006761607,Nitrous Oxide,TON
+37049,0.01119105,PM2.5 Primary (Filt + Cond),TON
+37041,0.000539005,PM2.5 Primary (Filt + Cond),TON
+37041,3.996675e-05,Sulfur Dioxide,TON
+37041,0.9374684,Ethyl Benzene,LB
+37041,0.0004001634,Benzo[k]Fluoranthene,LB
+37041,4.277524e-07,Mercury,LB
+37041,5.333388e-06,Nickel,LB
+37041,0.007429138,Phenanthrene,LB
+37041,0.0001740603,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.10044714,Toluene,LB
+37033,5.67932e-05,Pyrene,LB
+37033,9.748378e-06,Chrysene,LB
+37033,0.04043634,Benzene,LB
+37033,0.001765354,Naphthalene,LB
+37033,7.698255e-06,Organic Carbon portion of PM2.5-PRI,TON
+37159,4.795906,Ethyl Benzene,LB
+37159,14.358284,"2,2,4-Trimethylpentane",LB
+37159,3.99651,Benzene,LB
+37091,0.7062058,Ethyl Benzene,LB
+37091,2.39398,Xylenes (Mixed Isomers),LB
+37091,2.11431,"2,2,4-Trimethylpentane",LB
+37091,0.5885064,Benzene,LB
+37083,15.871594,Toluene,LB
+37169,0.545907,Hexane,LB
+37169,0.07001646,Anthracene,LB
+37169,0.2030314,Pyrene,LB
+37169,0.0011595346,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.0006240008,"Dibenzo[a,h]Anthracene",LB
+37169,1.952754,Benzene,LB
+37169,9.13634,Acetaldehyde,LB
+37169,0.5425938,Carbon Monoxide,TON
+37169,263.7514,Carbon Dioxide,TON
+37165,15.377974,Hexane,LB
+37165,2.748708,Pyrene,LB
+37165,1.8250652,Acenaphthylene,LB
+37165,19.141722,Ethyl Benzene,LB
+37165,0.589922,Benz[a]Anthracene,LB
+37165,2.348206,Fluorene,LB
+37165,11.97161,Carbon Monoxide,TON
+37165,0.01615564,Nitrous Oxide,TON
+37165,0.2960968,Organic Carbon portion of PM2.5-PRI,TON
+37163,0.0003470792,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,1.8812684e-05,Nickel,LB
+37163,0.00284121,Phenanthrene,LB
+37163,0.0010511912,Fluorene,LB
+37163,0.0002564956,Ammonia,TON
+37163,0.0003571459,PM2.5 Primary (Filt + Cond),TON
+37163,9.501735e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,19.57352,Anthracene,LB
+37157,470.58,Propionaldehyde,LB
+37157,5.95851,Benzo[b]Fluoranthene,LB
+37157,17.77446,Ammonia,TON
+37157,2.359091,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,25.13074,Formaldehyde,LB
+37155,0.04875786,Benzo[a]Pyrene,LB
+37155,0.001124365,"Dibenzo[a,h]Anthracene",LB
+37155,89.0841,Benzene,LB
+37155,0.00441531,Nickel,LB
+37155,3.933012,Naphthalene,LB
+37155,0.2037914,PM10 Primary (Filt + Cond),TON
+37155,0.06559934,Anthracene,LB
+37155,1.6914566,Styrene,LB
+37153,0.009926444,Acetaldehyde,LB
+37153,1.555409e-05,PM2.5 Primary (Filt + Cond),TON
+37153,0.03029338,"1,3-Butadiene",LB
+37153,0.2461552,Hexane,LB
+37153,0.0005654514,Pyrene,LB
+37153,1.1335088e-07,Chromium (VI),LB
+37153,0.0007075592,"Benzo[g,h,i,]Perylene",LB
+37153,0.0001792327,Methane,TON
+37153,4.31506e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37153,7.830581e-07,Nitrate portion of PM2.5-PRI,TON
+37175,0.016644942,"Benzo[g,h,i,]Perylene",LB
+37175,28.0694,"2,2,4-Trimethylpentane",LB
+37175,0.5785417,Elemental Carbon portion of PM2.5-PRI,TON
+37175,19.90054,Nitrogen Oxides,TON
+37175,0.02856705,Sulfate Portion of PM2.5-PRI,TON
+37173,0.035637,Propionaldehyde,LB
+37173,0.002110148,"Benzo[g,h,i,]Perylene",LB
+37173,0.540608,Acetaldehyde,LB
+37173,2.20554e-06,Nitrate portion of PM2.5-PRI,TON
+37173,0.03753862,Nitrogen Oxides,TON
+37155,3.156156e-05,Chromium (VI),LB
+37155,0.003349838,"Benzo[g,h,i,]Perylene",LB
+37155,0.013164742,Benzo[b]Fluoranthene,LB
+37155,0.04414052,Benzo[a]Pyrene,LB
+37155,2.740446e-05,Mercury,LB
+37155,0.03628196,Methane,TON
+37155,0.0007966871,Nitrate portion of PM2.5-PRI,TON
+37155,4.19445,Ethyl Benzene,LB
+37155,8.112748,Toluene,LB
+37155,3.159136,Hexane,LB
+37149,64.80704,Formaldehyde,LB
+37149,0.0004480372,Sulfate Portion of PM2.5-PRI,TON
+37149,0.0003389404,"Dibenzo[a,h]Anthracene",LB
+37157,0.04546998,Acenaphthene,LB
+37157,0.10064256,Fluorene,LB
+37157,0.002719962,Ammonia,TON
+37157,0.01547373,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.03792403,PM2.5 Primary (Filt + Cond),TON
+37157,0.006409685,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.3449812,Hexane,LB
+37155,39044.8,Toluene,LB
+37153,45.68584,Toluene,LB
+37153,0.016595778,Pyrene,LB
+37153,0.004394278,Benzo[k]Fluoranthene,LB
+37153,9.980896,Benzene,LB
+37153,0.05276214,Phenanthrene,LB
+37153,4.055844,Carbon Monoxide,TON
+37153,0.003316613,Ammonia,TON
+37147,1066.5438,Hexane,LB
+37147,0.1689654,Chrysene,LB
+37147,0.00529476,"Dibenzo[a,h]Anthracene",LB
+37147,0.06208598,Manganese,LB
+37147,1.234806,Fluorene,LB
+37147,0.03622815,Nitrous Oxide,TON
+37129,0.0012153564,"Dibenzo[a,h]Anthracene",LB
+37129,0.4450578,Phenanthrene,LB
+37129,0.1704434,PM10-Primary from certain diesel engines,TON
+37129,0.9237432,Hexane,LB
+37129,9.92458e-06,Chromium (VI),LB
+37141,0.08718058,Chrysene,LB
+37141,0.015781872,Nickel,LB
+37141,0.2924484,Acenaphthene,LB
+37141,15.186634,Naphthalene,LB
+37137,0.00372177,Nitrous Oxide,TON
+37137,3.523258,Nitrogen Oxides,TON
+37137,39.17992,Acetaldehyde,LB
+37133,58.44526,Propionaldehyde,LB
+37133,7.431408,Fluoranthene,LB
+37133,2.277214,Benz[a]Anthracene,LB
+37133,120.7979,Benzene,LB
+37133,3.288362,Acenaphthene,LB
+37133,143.72806,Naphthalene,LB
+37133,1.616328,Methane,TON
+37133,58961.21,Carbon Dioxide,TON
+37133,0.06418475,Nitrous Oxide,TON
+37133,0.6829396,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.0011834606,Styrene,LB
+37125,0.1953196,Toluene,LB
+37125,8.141698e-05,Pyrene,LB
+37125,2.845372e-07,Arsenic,LB
+37125,2.242567e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,413.4842,Benzene,LB
+37125,54.07649,Volatile Organic Compounds,TON
+37115,0.2699462,Ethyl Benzene,LB
+37115,0.2504524,"1,3-Butadiene",LB
+37115,0.02692136,Anthracene,LB
+37115,0.60384,Xylenes (Mixed Isomers),LB
+37115,0.017431452,Benz[a]Anthracene,LB
+37115,0.09434996,Phenanthrene,LB
+37115,0.02481631,Elemental Carbon portion of PM2.5-PRI,TON
+37115,244.165,Benzene,LB
+37115,0.099145,PM2.5 Primary (Filt + Cond),TON
+37115,36.00846,"1,3-Butadiene",LB
+37115,0.06715958,Benzo[b]Fluoranthene,LB
+37107,5.287464e-06,Chromium (VI),LB
+37107,0.0005140364,Benzo[k]Fluoranthene,LB
+37107,0.4405986,"2,2,4-Trimethylpentane",LB
+37107,0.010536132,Manganese,LB
+37107,0.1189752,PM10 Primary (Filt + Cond),TON
+37103,0.0005479886,Anthracene,LB
+37103,0.0010696928,Pyrene,LB
+37103,0.0002691654,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.0009377464,Fluoranthene,LB
+37103,0.5848304,Benzene,LB
+37103,6.781413e-06,Sulfate Portion of PM2.5-PRI,TON
+37103,0.01154267,Volatile Organic Compounds,TON
+37099,82.35768,Propionaldehyde,LB
+37099,663.9294,Acetaldehyde,LB
+37097,10934.516,Ethyl Benzene,LB
+37097,358.3054,Styrene,LB
+37097,4500.486,Formaldehyde,LB
+37097,9.187554,Manganese,LB
+37097,0.03447674,Nitrate portion of PM2.5-PRI,TON
+37097,4.662392,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.3868655,Sulfate Portion of PM2.5-PRI,TON
+37093,0.10720256,Acenaphthene,LB
+37093,3.924664,Toluene,LB
+37093,0.0003547422,"Benzo[g,h,i,]Perylene",LB
+37085,6.622774,Pyrene,LB
+37085,0.7040438,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.7067262,PM10 Primary (Filt + Cond),TON
+37079,9.94177,Propionaldehyde,LB
+37079,0.04180794,Benzo[b]Fluoranthene,LB
+37079,1.0170398,Acenaphthylene,LB
+37079,0.005724686,"Dibenzo[a,h]Anthracene",LB
+37079,0.02966026,Nickel,LB
+37079,0.012372086,Arsenic,LB
+37073,0.00643375,Anthracene,LB
+37073,0.12341042,Xylenes (Mixed Isomers),LB
+37073,0.04564176,"2,2,4-Trimethylpentane",LB
+37073,3.596418e-07,Mercury,LB
+37073,0.0002373876,Nickel,LB
+37073,15.65269,Carbon Dioxide,TON
+37073,0.0003701123,Ammonia,TON
+37073,0.00184067,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.00389943,Elemental Carbon portion of PM2.5-PRI,TON
+37087,5.120832e-05,Mercury,LB
+37087,20.82292,Hexane,LB
+37087,0.011487304,Chrysene,LB
+37085,19.78292,Volatile Organic Compounds,TON
+37071,0.005458266,Arsenic,LB
+37071,1456.419,Carbon Dioxide,TON
+37071,0.02219917,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.2509493,PM10 Primary (Filt + Cond),TON
+37071,0.03052828,Sulfur Dioxide,TON
+37059,0.02929972,Hexane,LB
+37059,0.08533632,Xylenes (Mixed Isomers),LB
+37059,3.156966e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.012491794,Formaldehyde,LB
+37059,0.02815842,"2,2,4-Trimethylpentane",LB
+37059,4.75614e-08,Mercury,LB
+37059,5.44598e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37059,1.810084e-05,Nitrous Oxide,TON
+37059,9.096259e-08,Nitrate portion of PM2.5-PRI,TON
+37059,0.001477488,Nitrogen Oxides,TON
+37007,0.0002471918,Mercury,LB
+37007,4.564659,Carbon Monoxide,TON
+37007,0.03033245,PM10 Primary (Filt + Cond),TON
+37007,0.00328597,Benzo[b]Fluoranthene,LB
+37007,0.005844282,Fluoranthene,LB
+37007,0.006047932,Benzo[a]Pyrene,LB
+37001,5.828384,Xylenes (Mixed Isomers),LB
+37001,0.016849264,"Benzo[g,h,i,]Perylene",LB
+37001,0.004592042,Fluoranthene,LB
+37001,0.006246006,Benzo[a]Pyrene,LB
+37001,0.00014531788,"Dibenzo[a,h]Anthracene",LB
+37001,8.438132,Benzene,LB
+37001,0.014872544,Phenanthrene,LB
+37001,464.8377,Carbon Dioxide,TON
+37001,2.49052e-05,Nitrate portion of PM2.5-PRI,TON
+37001,0.004351623,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.0012775962,"Benzo[g,h,i,]Perylene",LB
+37113,0.0011487314,Acenaphthylene,LB
+37113,1.102163e-05,"Dibenzo[a,h]Anthracene",LB
+37113,0.14268156,Ethyl Benzene,LB
+37113,0.01296763,Naphthalene,LB
+37113,0.0005865269,Nitrous Oxide,TON
+37113,0.02471884,Nitrogen Oxides,TON
+37113,0.0007101549,PM2.5 Primary (Filt + Cond),TON
+37097,1.1117282,Hexane,LB
+37097,0.002258994,Pyrene,LB
+37097,2.268418,Xylenes (Mixed Isomers),LB
+37097,0.0017329872,Benzo[k]Fluoranthene,LB
+37097,0.004960732,Acenaphthylene,LB
+37097,0.002886514,Arsenic,LB
+37097,0.002151366,Fluorene,LB
+37097,0.01190029,Methane,TON
+37097,0.134524,Nitrogen Oxides,TON
+37021,5.637848,Anthracene,LB
+37021,0.09068788,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.0490007,Benzo[k]Fluoranthene,LB
+37021,2.29162,Chrysene,LB
+37021,7.235309,PM10 Primary (Filt + Cond),TON
+37017,150.73126,Acetaldehyde,LB
+37017,1.9761698,Fluorene,LB
+37017,0.3574136,Methane,TON
+37017,0.1569678,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,1.807892,Volatile Organic Compounds,TON
+37021,0.0002965244,Pyrene,LB
+37021,9.515478e-05,Benzo[b]Fluoranthene,LB
+37021,9.515478e-05,Benzo[k]Fluoranthene,LB
+37021,0.00016187958,Benzo[a]Pyrene,LB
+37021,3.01988e-05,Arsenic,LB
+37021,0.05644801,Carbon Monoxide,TON
+37021,3.031545e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.0002244995,Sulfur Dioxide,TON
+37021,0.002645638,Volatile Organic Compounds,TON
+37009,0.2667328,Chrysene,LB
+37009,0.0266374,Nickel,LB
+37009,0.01111006,Arsenic,LB
+37009,5.834012,Carbon Monoxide,TON
+37005,0.1462522,Propionaldehyde,LB
+37005,0.019815204,Fluoranthene,LB
+37005,0.2691546,Benzene,LB
+37005,0.00885176,Acenaphthene,LB
+37005,0.3152354,Naphthalene,LB
+37005,5.954026,"2,2,4-Trimethylpentane",LB
+37003,11.36427,Anthracene,LB
+37003,79916.22,Carbon Dioxide,TON
+37003,1.020295,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.08457593,Sulfate Portion of PM2.5-PRI,TON
+37003,228.0875,Volatile Organic Compounds,TON
+37001,0.05401208,"Benzo[g,h,i,]Perylene",LB
+37001,0.1689212,Arsenic,LB
+37001,1095.8872,Acetaldehyde,LB
+37001,6.691818,PM10-Primary from certain diesel engines,TON
+37001,6.791481,PM2.5 Primary (Filt + Cond),TON
+37001,0.5664439,Sulfur Dioxide,TON
+37197,0.006169116,Anthracene,LB
+37197,0.00431188,Benz[a]Anthracene,LB
+37197,3.404679,Carbon Monoxide,TON
+37197,0.009125567,PM2.5 Primary (Filt + Cond),TON
+37191,0.01094221,Acenaphthylene,LB
+37191,0.005639258,Arsenic,LB
+37191,0.004784478,Fluorene,LB
+37191,0.02070208,Methane,TON
+37191,0.006627021,Nitrous Oxide,TON
+37181,0.00205362,Arsenic,LB
+37181,0.0008295188,Nitrous Oxide,TON
+37181,0.08907855,PM2.5 Primary (Filt + Cond),TON
+37197,0.0007658628,"Benzo[g,h,i,]Perylene",LB
+37197,0.000907761,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.0004916634,"Dibenzo[a,h]Anthracene",LB
+37197,0.0016866984,Arsenic,LB
+37185,0.0003067288,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.2114506,Fluoranthene,LB
+37185,21.42178,Acetaldehyde,LB
+37185,0.1602626,Acenaphthene,LB
+37185,3.07116,Carbon Monoxide,TON
+37185,344.1193,Carbon Dioxide,TON
+37185,0.0008915928,Nitrous Oxide,TON
+37185,0.012187,Ammonia,TON
+37185,8.428232e-05,Nitrate portion of PM2.5-PRI,TON
+37185,1.060134,Nitrogen Oxides,TON
+37185,0.06414958,PM10 Primary (Filt + Cond),TON
+37179,0.6208166,Xylenes (Mixed Isomers),LB
+37179,0.4248148,Benzene,LB
+37179,0.0006650041,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.00425249,Ammonia,TON
+37177,0.00016488542,Benzo[k]Fluoranthene,LB
+37177,0.1256723,"2,2,4-Trimethylpentane",LB
+37177,0.06127758,Phenanthrene,LB
+37177,0.001689707,Ammonia,TON
+37173,0.00018772558,Acenaphthylene,LB
+37173,2.607146e-05,Benzo[a]Pyrene,LB
+37173,0.04107228,Benzene,LB
+37173,4.287032e-08,Mercury,LB
+37173,8.329736e-05,Fluorene,LB
+37173,0.01824801,Carbon Monoxide,TON
+37027,23504.46,Benzene,LB
+37027,4527.015,Carbon Monoxide,TON
+37027,235563.4,Carbon Dioxide,TON
+37055,1.738517,PM10-Primary from certain diesel engines,TON
+37055,0.007815907,Nitrous Oxide,TON
+37055,4.13538,Pyrene,LB
+37055,7.79941e-05,Chromium (VI),LB
+37055,0.013309524,"Dibenzo[a,h]Anthracene",LB
+37055,33.2821,Benzene,LB
+37039,6080.854,Xylenes (Mixed Isomers),LB
+37039,0.002772814,Chromium (VI),LB
+37039,0.593769,Manganese,LB
+37039,126.69598,Naphthalene,LB
+37039,48.69528,Volatile Organic Compounds,TON
+37175,209.0404,Formaldehyde,LB
+37175,0.14248436,Benzo[a]Pyrene,LB
+37175,0.4679294,Benz[a]Anthracene,LB
+37175,22.19522,Naphthalene,LB
+37175,4.734182,Carbon Monoxide,TON
+37175,0.09376937,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.01691014,Sulfur Dioxide,TON
+37175,1.136445,Volatile Organic Compounds,TON
+37169,1.9376572,Fluoranthene,LB
+37169,10.446952,"1,3-Butadiene",LB
+37169,0.1300578,Manganese,LB
+37169,0.04598582,Arsenic,LB
+37161,1.2687864,Ethyl Benzene,LB
+37161,0.19232216,Acenaphthylene,LB
+37161,0.05616184,Chrysene,LB
+37161,0.02335995,Methane,TON
+37161,0.888927,Carbon Monoxide,TON
+37159,278.7234,Toluene,LB
+37159,91.8635,Propionaldehyde,LB
+37159,0.000648493,Chromium (VI),LB
+37159,0.06580992,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.2581542,Benzo[b]Fluoranthene,LB
+37159,8.07124,Acenaphthylene,LB
+37159,1.705078,Chrysene,LB
+37159,82.63488,"2,2,4-Trimethylpentane",LB
+37159,0.1790722,Arsenic,LB
+37155,76.08304,"1,3-Butadiene",LB
+37155,0.2636026,Benzo[b]Fluoranthene,LB
+37155,4705.886,Formaldehyde,LB
+37155,3.309708,Benz[a]Anthracene,LB
+37155,0.8622368,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.02487086,Nickel,LB
+37149,0.009292544,Arsenic,LB
+37149,0.3785354,Fluorene,LB
+37149,0.0001114522,Nitrate portion of PM2.5-PRI,TON
+37149,0.4067276,Volatile Organic Compounds,TON
+37149,0.1782728,Anthracene,LB
+37149,0.2860372,Fluoranthene,LB
+37149,2.059034,"2,2,4-Trimethylpentane",LB
+37163,0.17126172,Pyrene,LB
+37163,3.965382e-05,Chromium (VI),LB
+37163,0.4629032,Acenaphthylene,LB
+37163,0.0003975284,Mercury,LB
+37163,33.49042,Acetaldehyde,LB
+37163,0.10152052,Acenaphthene,LB
+37157,24.43386,Formaldehyde,LB
+37157,0.01598194,Benzo[a]Pyrene,LB
+37157,0.0019638176,Arsenic,LB
+37157,0.006017732,Sulfate Portion of PM2.5-PRI,TON
+37157,0.613161,Hexane,LB
+37157,1.9861056,Xylenes (Mixed Isomers),LB
+37155,233.2034,Acrolein,LB
+37155,31155.42,Xylenes (Mixed Isomers),LB
+37155,5.15024,Benzo[k]Fluoranthene,LB
+37155,5.498172,Nitrous Oxide,TON
+37155,4.883011,Organic Carbon portion of PM2.5-PRI,TON
+37155,6.218994,Sulfur Dioxide,TON
+37155,0.2825056,Sulfate Portion of PM2.5-PRI,TON
+37155,11661.184,"2,2,4-Trimethylpentane",LB
+37155,4.838146,Benz[a]Anthracene,LB
+37155,12222.408,Benzene,LB
+37155,5.071202,Manganese,LB
+37137,0.0004343504,Acrolein,LB
+37137,0.0810929,Toluene,LB
+37137,0.0004458344,Propionaldehyde,LB
+37137,5.569046e-06,Benzo[b]Fluoranthene,LB
+37137,5.569046e-06,Benzo[k]Fluoranthene,LB
+37137,9.963484e-05,Acenaphthylene,LB
+37137,1.6150012e-07,"Dibenzo[a,h]Anthracene",LB
+37137,1.712898e-08,Mercury,LB
+37137,3.693718e-06,Organic Carbon portion of PM2.5-PRI,TON
+37121,184.89862,Hexane,LB
+37121,0.4291082,Pyrene,LB
+37121,0.3759588,Fluoranthene,LB
+37121,0.2592784,Acenaphthene,LB
+37121,13.459994,Naphthalene,LB
+37121,0.08929616,PM2.5 Primary (Filt + Cond),TON
+37105,4.185918,Styrene,LB
+37105,1.0300824,Anthracene,LB
+37105,16.847142,Propionaldehyde,LB
+37105,0.6470924,Benz[a]Anthracene,LB
+37105,0.003419286,Nitrate portion of PM2.5-PRI,TON
+37105,0.3077094,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.009783006,Propionaldehyde,LB
+37101,0.0001435311,Benzo[k]Fluoranthene,LB
+37101,3.320056e-06,Nickel,LB
+37101,0.0004537728,Acenaphthene,LB
+37101,0.0235661,Naphthalene,LB
+37101,0.0006148785,Methane,TON
+37101,4.824268e-06,Sulfate Portion of PM2.5-PRI,TON
+37085,282877.9,Carbon Dioxide,TON
+37085,10.7713,Nitrous Oxide,TON
+37085,3.991837,Organic Carbon portion of PM2.5-PRI,TON
+37085,12343.316,Ethyl Benzene,LB
+37085,6345.45,Formaldehyde,LB
+37085,0.15976828,"Dibenzo[a,h]Anthracene",LB
+37085,0.2271948,Sulfate Portion of PM2.5-PRI,TON
+37085,355.9002,Volatile Organic Compounds,TON
+37079,1.0131744,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,1.0113712,Benzo[a]Pyrene,LB
+37079,504.4219,Carbon Monoxide,TON
+37079,0.03146652,Sulfate Portion of PM2.5-PRI,TON
+37077,0.0006209182,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.000333375,"Dibenzo[a,h]Anthracene",LB
+37077,0.0005068744,Arsenic,LB
+37077,0.03092842,PM10-Primary from certain diesel engines,TON
+37077,0.004687401,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.0008067595,Sulfate Portion of PM2.5-PRI,TON
+37067,0.0015246712,Chromium (VI),LB
+37067,4204.274,Formaldehyde,LB
+37067,4.889952,Benz[a]Anthracene,LB
+37067,5.228445,Methane,TON
+37067,154248.8,Carbon Dioxide,TON
+37067,8.304911,Elemental Carbon portion of PM2.5-PRI,TON
+37067,13.35069,PM2.5 Primary (Filt + Cond),TON
+37067,1.304447,Sulfur Dioxide,TON
+37057,0.6716346,Acrolein,LB
+37057,0.0013423488,Arsenic,LB
+37057,0.003385686,Phenanthrene,LB
+37057,0.003842474,Naphthalene,LB
+37057,1.757768,Methane,TON
+37057,0.006423624,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.01985101,PM2.5 Primary (Filt + Cond),TON
+37057,0.00203583,Sulfur Dioxide,TON
+37051,0.0920135,Anthracene,LB
+37051,0.002080484,Sulfate Portion of PM2.5-PRI,TON
+37051,0.8800902,Ethyl Benzene,LB
+37049,0.02272631,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,45.74996,Formaldehyde,LB
+37049,1.751251e-05,Mercury,LB
+37049,0.006925994,Nickel,LB
+37047,0.0493496,Benzo[a]Pyrene,LB
+37047,0.00201448,"Dibenzo[a,h]Anthracene",LB
+37047,6.391412,Naphthalene,LB
+37047,0.02833366,Methane,TON
+37043,0.002977902,Manganese,LB
+37043,0.01334057,Methane,TON
+37043,105.9886,Carbon Dioxide,TON
+37043,0.001201924,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.0007284905,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.0016336676,Benz[a]Anthracene,LB
+37143,0.001731272,Nickel,LB
+37143,24.21612,Acetaldehyde,LB
+37143,0.0008665118,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.0021305,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.007324547,Sulfur Dioxide,TON
+37143,0.1314631,Volatile Organic Compounds,TON
+37107,1.750156,Carbon Monoxide,TON
+37107,3.229526,Toluene,LB
+37107,0.005434142,Manganese,LB
+37095,0.2380216,Benzene,LB
+37163,129.38704,Propionaldehyde,LB
+37163,3.351998,Benzo[a]Pyrene,LB
+37163,6346.256,"2,2,4-Trimethylpentane",LB
+37151,7.391234,Benzo[a]Pyrene,LB
+37151,14096.542,Benzene,LB
+37151,0.1558334,Mercury,LB
+37151,27.14448,Fluorene,LB
+37151,0.02338203,Nitrate portion of PM2.5-PRI,TON
+37151,4.801062,Sulfur Dioxide,TON
+37151,0.236966,Sulfate Portion of PM2.5-PRI,TON
+37147,0.0008516068,Nickel,LB
+37147,0.02353377,PM10 Primary (Filt + Cond),TON
+37147,0.002698812,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.0002018104,Sulfate Portion of PM2.5-PRI,TON
+37147,0.2025774,Styrene,LB
+37147,0.003188292,Benzo[b]Fluoranthene,LB
+37143,3.177258,Hexane,LB
+37143,0.02449728,Benzo[b]Fluoranthene,LB
+37143,11.347476,Benzene,LB
+37143,1.476348e-06,Chromium (VI),LB
+37143,0.00017179624,"Benzo[g,h,i,]Perylene",LB
+37143,0.000213214,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.13761198,Ethyl Benzene,LB
+37143,0.01133683,Elemental Carbon portion of PM2.5-PRI,TON
+37143,4.967096e-05,Nitrate portion of PM2.5-PRI,TON
+37143,0.017663746,Acrolein,LB
+37143,0.02416968,Propionaldehyde,LB
+37143,0.363204,Formaldehyde,LB
+37143,0.0004281684,Benzo[a]Pyrene,LB
+37143,9.80881e-06,"Dibenzo[a,h]Anthracene",LB
+37143,0.000319449,Benz[a]Anthracene,LB
+37143,1.0320538,Benzene,LB
+37143,0.3607972,Acetaldehyde,LB
+37143,0.378409,Carbon Monoxide,TON
+37137,0.05544387,PM2.5 Primary (Filt + Cond),TON
+37137,0.7892446,Ethyl Benzene,LB
+37137,0.32555,Styrene,LB
+37137,1.2255056,Propionaldehyde,LB
+37137,0.0011826494,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.004909776,Manganese,LB
+37137,3.782804e-06,Mercury,LB
+37137,0.2765962,Phenanthrene,LB
+37137,2.582814,Naphthalene,LB
+37137,1.078762,Carbon Monoxide,TON
+37137,0.05820285,PM10-Primary from certain diesel engines,TON
+37137,0.00519064,Acrolein,LB
+37137,0.00017399486,Anthracene,LB
+37137,5.16486e-05,Chrysene,LB
+37137,1.195754e-05,Arsenic,LB
+37137,0.001106929,Phenanthrene,LB
+37137,0.01060107,Naphthalene,LB
+37137,0.1155501,Carbon Monoxide,TON
+37137,3.952658e-05,Organic Carbon portion of PM2.5-PRI,TON
+37137,2.770427e-06,Sulfate Portion of PM2.5-PRI,TON
+37129,5.113395,Carbon Monoxide,TON
+37129,0.010282078,Anthracene,LB
+37129,0.010697152,"Benzo[g,h,i,]Perylene",LB
+37129,0.004018956,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,4.09976,Formaldehyde,LB
+37129,0.004042184,Benzo[a]Pyrene,LB
+37129,9.224126e-05,"Dibenzo[a,h]Anthracene",LB
+37129,0.0012622376,Arsenic,LB
+37117,2.089934,Ethyl Benzene,LB
+37117,0.007654112,Benzo[b]Fluoranthene,LB
+37117,0.0010462918,"Dibenzo[a,h]Anthracene",LB
+37117,0.008237859,Methane,TON
+37117,0.00852697,Ammonia,TON
+37121,14.75247,Toluene,LB
+37121,0.00475615,Anthracene,LB
+37121,0.001970017,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.0015033872,Benzo[b]Fluoranthene,LB
+37121,0.0014976478,Chrysene,LB
+37121,0.03022556,Phenanthrene,LB
+37121,3.501998,Carbon Monoxide,TON
+37121,6.966266e-06,Nitrate portion of PM2.5-PRI,TON
+37113,0.11852736,Ethyl Benzene,LB
+37113,7.45145e-07,Chromium (VI),LB
+37113,0.004938446,Chrysene,LB
+37113,0.3340274,Benzene,LB
+37113,6.387744e-07,Mercury,LB
+37113,1.5458354,Acetaldehyde,LB
+37113,0.0081606,PM25-Primary from certain diesel engines,TON
+37113,4.460641e-05,Nitrate portion of PM2.5-PRI,TON
+37113,0.008464346,PM2.5 Primary (Filt + Cond),TON
+37113,0.001504853,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,3.334024,Acenaphthylene,LB
+37193,1.457123,Benz[a]Anthracene,LB
+37193,0.00014445582,Mercury,LB
+37193,46.68336,Xylenes (Mixed Isomers),LB
+37193,0.2740191,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,9.97133e-08,Chromium (VI),LB
+37197,9.996626e-07,Mercury,LB
+37197,0.09455634,Acetaldehyde,LB
+37197,0.015935672,Naphthalene,LB
+37197,0.0002137731,Methane,TON
+37197,0.0001640451,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.002585884,Benzo[b]Fluoranthene,LB
+37189,0.1892194,Acrolein,LB
+37189,12.856204,Hexane,LB
+37189,0.2296548,Styrene,LB
+37189,1.8069604e-05,Mercury,LB
+37189,0.0001006105,Sulfate Portion of PM2.5-PRI,TON
+37187,0.7591744,"2,2,4-Trimethylpentane",LB
+37187,0.07147212,Benz[a]Anthracene,LB
+37187,0.003642012,Nickel,LB
+37187,1.327668,Nitrogen Oxides,TON
+37181,0.16160668,Ethyl Benzene,LB
+37181,0.0345343,"1,3-Butadiene",LB
+37181,2.492326e-06,Chromium (VI),LB
+37181,0.0002537662,Chrysene,LB
+37181,0.014610826,Naphthalene,LB
+37181,2.252484e-06,Nitrate portion of PM2.5-PRI,TON
+37181,2.603192e-05,Sulfate Portion of PM2.5-PRI,TON
+37181,0.01880799,Volatile Organic Compounds,TON
+37093,6.783726,Pyrene,LB
+37093,1.5328552,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.03519934,"Dibenzo[a,h]Anthracene",LB
+37083,0.0017917294,Acenaphthene,LB
+37083,0.003629328,Fluorene,LB
+37083,0.09308374,Naphthalene,LB
+37083,0.0001630915,Ammonia,TON
+37083,0.00149282,PM10 Primary (Filt + Cond),TON
+37083,0.001028383,PM2.5 Primary (Filt + Cond),TON
+37077,4.653608,Benz[a]Anthracene,LB
+37077,829.9288,Naphthalene,LB
+37077,0.01874371,Nitrate portion of PM2.5-PRI,TON
+37077,6.339078,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,4.643054,Benzo[b]Fluoranthene,LB
+37077,3.785453,Sulfur Dioxide,TON
+37057,371.8536,Styrene,LB
+37057,16753.572,Benzene,LB
+37057,87.14274,Phenanthrene,LB
+37057,25.65342,Ammonia,TON
+37057,0.02892957,Nitrate portion of PM2.5-PRI,TON
+37057,5.935719,Sulfur Dioxide,TON
+37057,339.5347,Volatile Organic Compounds,TON
+37051,54.37226,Toluene,LB
+37051,0.08105376,Acenaphthylene,LB
+37051,0.00017011232,Mercury,LB
+37051,0.09741874,Phenanthrene,LB
+37051,0.03591508,Fluorene,LB
+37051,0.01045773,Nitrous Oxide,TON
+37035,36.03624,Ethyl Benzene,LB
+37035,119.67556,Hexane,LB
+37035,108.33092,"2,2,4-Trimethylpentane",LB
+37177,0.3398836,Hexane,LB
+37177,0.7772218,Propionaldehyde,LB
+37177,0.0002115388,Benzo[k]Fluoranthene,LB
+37177,0.08241672,Acenaphthylene,LB
+37177,0.0002112694,"Dibenzo[a,h]Anthracene",LB
+37177,0.002787482,Manganese,LB
+37177,0.04155464,PM10 Primary (Filt + Cond),TON
+37173,0.03031976,Styrene,LB
+37173,0.11284094,Propionaldehyde,LB
+37173,0.0014646158,Benzo[a]Pyrene,LB
+37173,0.02549932,Phenanthrene,LB
+37173,0.0008341653,Methane,TON
+37173,20.24309,Carbon Dioxide,TON
+37173,0.000175194,Sulfur Dioxide,TON
+37173,1.9712632,Anthracene,LB
+37173,4.065664,Acenaphthylene,LB
+37173,17.243006,"2,2,4-Trimethylpentane",LB
+37173,67.5648,Benzene,LB
+37173,0.4948971,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.001014692,Nitrate portion of PM2.5-PRI,TON
+37167,0.3138972,Manganese,LB
+37167,2.087366,PM25-Primary from certain diesel engines,TON
+37167,1.349865,Elemental Carbon portion of PM2.5-PRI,TON
+37167,5.501892,Styrene,LB
+37167,22.65652,Propionaldehyde,LB
+37167,0.0002491334,Chromium (VI),LB
+37167,2.183974,Acenaphthylene,LB
+37167,15.205468,"2,2,4-Trimethylpentane",LB
+37199,109.8547,Benzene,LB
+37199,0.006208958,Arsenic,LB
+37199,0.08258304,Acenaphthene,LB
+37199,0.00830073,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.001009893,Sulfate Portion of PM2.5-PRI,TON
+37199,646.5314,Toluene,LB
+37199,0.13806552,Pyrene,LB
+37199,0.12102864,Fluoranthene,LB
+37197,3.928094,Ethyl Benzene,LB
+37197,1.6612976,Styrene,LB
+37197,8.206618,Xylenes (Mixed Isomers),LB
+37197,0.14423606,Chrysene,LB
+37197,1.3626848,Phenanthrene,LB
+37197,0.2919501,PM2.5 Primary (Filt + Cond),TON
+37197,0.006906146,Sulfur Dioxide,TON
+37193,0.00069478,Fluorene,LB
+37193,0.0017588164,Naphthalene,LB
+37193,0.01936207,Nitrous Oxide,TON
+37193,0.008644361,PM2.5 Primary (Filt + Cond),TON
+37185,0.000191956,Arsenic,LB
+37185,0.01087746,PM10-Primary from certain diesel engines,TON
+37185,0.004817372,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.003634166,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.05004072,Benzo[b]Fluoranthene,LB
+37185,0.006854,"Dibenzo[a,h]Anthracene",LB
+37185,3188.168,Carbon Dioxide,TON
+37185,1.322423,Volatile Organic Compounds,TON
+37185,5.823126e-09,Chromium (VI),LB
+37185,9.415048e-05,"Benzo[g,h,i,]Perylene",LB
+37185,3.510418e-05,Benzo[a]Pyrene,LB
+37185,1.9546474e-05,Benz[a]Anthracene,LB
+37185,5.837564e-08,Mercury,LB
+37185,0.013648412,Acetaldehyde,LB
+37185,2.030887e-05,Nitrous Oxide,TON
+37185,8.482094e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,6.171002,Benzo[a]Pyrene,LB
+37195,1.539354,Nickel,LB
+37195,4833.634,Acetaldehyde,LB
+37195,14.491438,Acenaphthene,LB
+37195,1.371503,Elemental Carbon portion of PM2.5-PRI,TON
+37195,3.535713,Organic Carbon portion of PM2.5-PRI,TON
+37189,2.030958,"2,2,4-Trimethylpentane",LB
+37189,0.1652125,Acenaphthene,LB
+37187,0.4917306,Hexane,LB
+37187,26.24057,Carbon Dioxide,TON
+37187,0.001135841,Organic Carbon portion of PM2.5-PRI,TON
+37187,6.289462e-05,Sulfate Portion of PM2.5-PRI,TON
+37187,0.005380544,Pyrene,LB
+37187,0.002079598,Benzo[a]Pyrene,LB
+37187,3.99233,"2,2,4-Trimethylpentane",LB
+37183,0.6816256,Propionaldehyde,LB
+37183,0.09585482,"Benzo[g,h,i,]Perylene",LB
+37183,0.03601338,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.1829233,Acenaphthylene,LB
+37183,0.018008052,Chrysene,LB
+37183,0.08097636,Fluorene,LB
+37183,0.06791933,Ammonia,TON
+37183,0.1533966,PM10 Primary (Filt + Cond),TON
+37183,0.03359678,Sulfur Dioxide,TON
+37181,3.130276,"1,3-Butadiene",LB
+37181,0.3466422,Anthracene,LB
+37181,0.005459524,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,1.2939326e-05,Mercury,LB
+37181,0.04163168,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.2822688,Anthracene,LB
+37181,0.03373924,Benzo[a]Pyrene,LB
+37181,0.0013752764,"Dibenzo[a,h]Anthracene",LB
+37181,0.1335139,Benz[a]Anthracene,LB
+37181,0.0006036823,Nitrate portion of PM2.5-PRI,TON
+37181,50.8624,Acrolein,LB
+37181,40.14002,Toluene,LB
+37181,0.2187692,Chrysene,LB
+37181,0.01015057,Nitrous Oxide,TON
+37181,0.08832201,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.3283388,Volatile Organic Compounds,TON
+37185,0.4229664,Pyrene,LB
+37185,23.72734,Acetaldehyde,LB
+37185,0.3607554,Fluorene,LB
+37185,6.021762,Naphthalene,LB
+37195,0.007262118,"Benzo[g,h,i,]Perylene",LB
+37195,0.008874644,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,178.6985,Formaldehyde,LB
+37195,4.574228,"2,2,4-Trimethylpentane",LB
+37195,2.413486,Styrene,LB
+37195,2.063952,Phenanthrene,LB
+37195,6.851656,Carbon Monoxide,TON
+37195,0.1906021,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.07031368,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,6.26208e-05,Anthracene,LB
+37187,0.0003879886,"Benzo[g,h,i,]Perylene",LB
+37187,0.09584057,Carbon Monoxide,TON
+37187,6.140136e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.004546197,Volatile Organic Compounds,TON
+37187,0.06360474,"1,3-Butadiene",LB
+37187,0.15583622,Acrolein,LB
+37187,5.4272e-05,Benzo[k]Fluoranthene,LB
+37187,9.020944e-05,Arsenic,LB
+37187,0.01372655,Fluorene,LB
+37187,0.2166332,Naphthalene,LB
+37187,0.0007761174,Methane,TON
+37187,0.005001017,PM2.5 Primary (Filt + Cond),TON
+37187,0.0001453049,Sulfate Portion of PM2.5-PRI,TON
+37067,4921.018,"1,3-Butadiene",LB
+37067,34028.04,Hexane,LB
+37067,599.6244,Propionaldehyde,LB
+37067,145.25626,Acenaphthylene,LB
+37067,20.66722,Benzo[a]Pyrene,LB
+37067,8825.874,Carbon Monoxide,TON
+37067,66.78981,Ammonia,TON
+37073,0.001903502,Volatile Organic Compounds,TON
+37021,0.7613564,Acrolein,LB
+37021,0.02742456,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.01691396,Benzo[k]Fluoranthene,LB
+37021,0.014791124,Chrysene,LB
+37021,0.01629074,Ammonia,TON
+37021,8.356988e-05,Nitrate portion of PM2.5-PRI,TON
+37041,8.702364,Carbon Monoxide,TON
+37041,0.004683168,Sulfur Dioxide,TON
+37041,0.0001981075,Sulfate Portion of PM2.5-PRI,TON
+37041,0.015708488,Anthracene,LB
+37041,5.88428e-06,Chromium (VI),LB
+37041,0.0268309,Fluoranthene,LB
+37041,0.005240588,Benzo[k]Fluoranthene,LB
+37041,0.005134572,Chrysene,LB
+37041,0.00526964,Benz[a]Anthracene,LB
+37059,0.0329924,"1,3-Butadiene",LB
+37059,0.2426974,Hexane,LB
+37059,0.0003113708,Benzo[b]Fluoranthene,LB
+37059,0.0012239984,Acenaphthylene,LB
+37059,0.5013564,Formaldehyde,LB
+37059,0.0006635894,Manganese,LB
+37059,3.114222,Acetaldehyde,LB
+37081,0.2092334,Chrysene,LB
+37081,0.0003837374,Mercury,LB
+37081,6.745344,Phenanthrene,LB
+37081,88.89698,Naphthalene,LB
+37081,6319.041,Carbon Dioxide,TON
+37081,0.1547194,PM25-Primary from certain diesel engines,TON
+37139,0.0010345694,Manganese,LB
+37139,0.001647003,Methane,TON
+37139,0.1010236,Carbon Monoxide,TON
+37139,0.00449958,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.004974372,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.01556913,PM10 Primary (Filt + Cond),TON
+37139,0.17370772,"1,3-Butadiene",LB
+37139,0.00014536938,Benzo[k]Fluoranthene,LB
+37139,0.003565436,Benzo[a]Pyrene,LB
+37139,0.12933674,"2,2,4-Trimethylpentane",LB
+37163,0.8966794,Acenaphthene,LB
+37163,3.906882,Styrene,LB
+37163,0.2020714,Benz[a]Anthracene,LB
+37099,6.0702e-08,Mercury,LB
+37099,0.02263686,Acetaldehyde,LB
+37099,0.003444702,Naphthalene,LB
+37099,8.676457e-08,Nitrate portion of PM2.5-PRI,TON
+37099,0.0015770496,Styrene,LB
+37099,0.0013480602,Propionaldehyde,LB
+37099,0.14903546,Xylenes (Mixed Isomers),LB
+37099,2.114562e-05,Benzo[b]Fluoranthene,LB
+37099,1.592144e-05,Organic Carbon portion of PM2.5-PRI,TON
+37099,3.112648e-05,PM2.5 Primary (Filt + Cond),TON
+37099,7.613411e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.001154365,Volatile Organic Compounds,TON
+37197,1.8703934,Anthracene,LB
+37197,28.6058,Propionaldehyde,LB
+37197,0.14886528,Manganese,LB
+37197,6.566176,Phenanthrene,LB
+37197,13.26029,Carbon Monoxide,TON
+37197,1.573952,PM10-Primary from certain diesel engines,TON
+37197,0.6780229,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.1769214,Ammonia,TON
+37197,1978.0478,Hexane,LB
+37189,12.215134,Benzene,LB
+37189,1.489641,Volatile Organic Compounds,TON
+37187,0.13327196,Anthracene,LB
+37187,334.8544,Xylenes (Mixed Isomers),LB
+37187,0.0232322,Manganese,LB
+37187,0.01288056,Nickel,LB
+37187,0.1561953,Acenaphthene,LB
+37187,35.93184,Carbon Monoxide,TON
+37187,0.07856243,Nitrous Oxide,TON
+37187,0.02887239,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.8471426,Benzo[b]Fluoranthene,LB
+37187,15.455988,Acenaphthylene,LB
+37187,0.8650596,Chrysene,LB
+37187,1070.5074,Formaldehyde,LB
+37187,0.3363778,Arsenic,LB
+37187,1.415179,Nitrous Oxide,TON
+37187,0.5772971,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.6990729,Sulfur Dioxide,TON
+37187,56.31089,Volatile Organic Compounds,TON
+37197,0.0012064786,"1,3-Butadiene",LB
+37197,6.761842e-06,Benzo[a]Pyrene,LB
+37193,0.0002024708,Nitrous Oxide,TON
+37193,2.096418e-06,Chromium (VI),LB
+37193,0.000343523,Arsenic,LB
+37193,0.2045465,Carbon Monoxide,TON
+37185,0.02996126,Anthracene,LB
+37185,0.2890245,Carbon Monoxide,TON
+37185,0.004002862,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.05076245,Volatile Organic Compounds,TON
+37067,53.28522,Propionaldehyde,LB
+37067,5.476624,Pyrene,LB
+37067,1088.3204,Formaldehyde,LB
+37067,0.784054,Benz[a]Anthracene,LB
+37135,46.03394,Toluene,LB
+37135,0.005889556,"Benzo[g,h,i,]Perylene",LB
+37135,569.4532,Formaldehyde,LB
+37135,0.0002835068,Mercury,LB
+37135,4701.474,Carbon Dioxide,TON
+37135,0.02415072,Elemental Carbon portion of PM2.5-PRI,TON
+37111,4.003164,Ethyl Benzene,LB
+37111,3.033012,Hexane,LB
+37111,0.0005272624,Benzo[k]Fluoranthene,LB
+37111,0.6601482,Acenaphthylene,LB
+37111,13.197222,Naphthalene,LB
+37111,0.1372393,PM10-Primary from certain diesel engines,TON
+37111,0.0965524,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.02906077,Ammonia,TON
+37111,0.1693524,PM10 Primary (Filt + Cond),TON
+37111,0.1305938,PM2.5 Primary (Filt + Cond),TON
+37005,0.00805613,Ammonia,TON
+37005,0.002416144,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.002032573,Sulfur Dioxide,TON
+37005,0.001270205,Sulfate Portion of PM2.5-PRI,TON
+37005,1.5508612,"1,3-Butadiene",LB
+37007,0.5485526,Propionaldehyde,LB
+37007,0.002414528,Benzo[b]Fluoranthene,LB
+37007,10.7596,Formaldehyde,LB
+37007,0.9924712,Benzene,LB
+37007,4.607344,Acetaldehyde,LB
+37007,0.005312825,Methane,TON
+37007,259.4638,Carbon Dioxide,TON
+37007,0.003872557,Ammonia,TON
+37089,22.89528,Acetaldehyde,LB
+37089,2.926834,Carbon Monoxide,TON
+37089,3.87031e-06,Nitrate portion of PM2.5-PRI,TON
+37089,0.004184366,Pyrene,LB
+37089,0.6161318,Xylenes (Mixed Isomers),LB
+37089,388.3378,Formaldehyde,LB
+37177,6.577136,"2,2,4-Trimethylpentane",LB
+37177,8.071474,Benzene,LB
+37177,3.544505,Carbon Monoxide,TON
+37177,153.1833,Carbon Dioxide,TON
+37197,23.73734,Pyrene,LB
+37197,30205.54,Xylenes (Mixed Isomers),LB
+37197,2.863733,Organic Carbon portion of PM2.5-PRI,TON
+37197,3.007229,Sulfur Dioxide,TON
+37197,1.5417738,Manganese,LB
+37197,0.9322,Nickel,LB
+37197,1.4293428,Arsenic,LB
+37197,8215.578,Ethyl Benzene,LB
+37189,0.242554,"1,3-Butadiene",LB
+37189,0.00347981,Pyrene,LB
+37189,0.009532072,Acenaphthylene,LB
+37189,34.13225,Carbon Dioxide,TON
+37189,0.004491397,PM10 Primary (Filt + Cond),TON
+37189,0.0011762,PM2.5 Primary (Filt + Cond),TON
+37189,0.03036236,Volatile Organic Compounds,TON
+37181,6.23966e-05,Chromium (VI),LB
+37181,27.32358,Naphthalene,LB
+37181,0.003574693,Nitrate portion of PM2.5-PRI,TON
+37181,0.1319461,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.00735091,Arsenic,LB
+37179,1.1933462,Phenanthrene,LB
+37179,1361.765,Carbon Dioxide,TON
+37179,0.001308058,Nitrate portion of PM2.5-PRI,TON
+37179,2.639956,Hexane,LB
+37179,0.14088558,Chrysene,LB
+37179,0.2385052,Benz[a]Anthracene,LB
+37173,6.78092e-05,Chrysene,LB
+37173,34.50896,Formaldehyde,LB
+37173,0.11654648,Benzene,LB
+37173,1.1413294e-05,Mercury,LB
+37173,0.00014236024,Acenaphthene,LB
+37193,299.792,Xylenes (Mixed Isomers),LB
+37193,0.12336682,"Benzo[g,h,i,]Perylene",LB
+37193,0.5240504,Acenaphthylene,LB
+37193,110.96838,"2,2,4-Trimethylpentane",LB
+37193,0.01266583,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.0908547,Nitrous Oxide,TON
+37193,0.01334902,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,17.390864,Acrolein,LB
+37185,17.393258,Toluene,LB
+37185,20.85178,Benzene,LB
+37185,0.0477812,Nickel,LB
+37185,1.420728,Fluorene,LB
+37185,0.9987509,PM25-Primary from certain diesel engines,TON
+37185,0.00775119,Nitrous Oxide,TON
+37185,1.36386,PM10 Primary (Filt + Cond),TON
+37185,1.247722,Volatile Organic Compounds,TON
+37195,110.44624,Toluene,LB
+37195,75.81096,"2,2,4-Trimethylpentane",LB
+37191,21.74742,Benzene,LB
+37191,0.0073984,Arsenic,LB
+37189,19.909876,Propionaldehyde,LB
+37189,2104.298,Xylenes (Mixed Isomers),LB
+37189,0.0007013548,Chromium (VI),LB
+37189,1.4816158,Fluoranthene,LB
+37189,52.74722,Naphthalene,LB
+37189,0.5047838,Nitrous Oxide,TON
+37187,0.002295302,"Dibenzo[a,h]Anthracene",LB
+37187,1.7643132,"2,2,4-Trimethylpentane",LB
+37187,0.18649444,Benz[a]Anthracene,LB
+37187,0.3464972,PM25-Primary from certain diesel engines,TON
+37187,0.2343371,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.3555603,PM2.5 Primary (Filt + Cond),TON
+37187,0.006563456,Sulfate Portion of PM2.5-PRI,TON
+37183,28.41224,Ethyl Benzene,LB
+37183,64.50352,Acrolein,LB
+37183,41.16982,Propionaldehyde,LB
+37183,3.584928,PM10 Primary (Filt + Cond),TON
+37183,0.3257979,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,1940.9838,"1,3-Butadiene",LB
+37183,5.579952,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,8871.854,"2,2,4-Trimethylpentane",LB
+37183,13475.242,Benzene,LB
+37183,6.297578,Manganese,LB
+37183,3.093622,Arsenic,LB
+37183,12.653418,Acenaphthene,LB
+37183,11.04203,Methane,TON
+37183,295505.3,Carbon Dioxide,TON
+37183,333.3351,Nitrogen Oxides,TON
+37179,5.504652,Hexane,LB
+37173,0.0018522664,Anthracene,LB
+37173,0.0017551342,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.1395685,Nitrogen Oxides,TON
+37095,0.356485,Hexane,LB
+37095,0.09658242,Fluorene,LB
+37095,0.0001760472,Nitrate portion of PM2.5-PRI,TON
+37089,0.05976064,Benzo[a]Pyrene,LB
+37089,17.025068,Naphthalene,LB
+37079,4.540668,Ethyl Benzene,LB
+37079,3.408634,Hexane,LB
+37079,0.04189058,Manganese,LB
+37079,4.025978,Carbon Monoxide,TON
+37079,0.001858649,Nitrate portion of PM2.5-PRI,TON
+37073,2.47392,Acrolein,LB
+37073,0.11105542,Anthracene,LB
+37073,0.0017070892,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.006706952,Benzo[b]Fluoranthene,LB
+37073,0.003584968,Nickel,LB
+37073,0.0009020682,Arsenic,LB
+37073,0.10283688,Acenaphthene,LB
+37073,0.3798026,Phenanthrene,LB
+37073,0.01192958,Methane,TON
+37073,0.001622251,Sulfur Dioxide,TON
+37073,0.181385,Volatile Organic Compounds,TON
+37059,0.016713702,"Benzo[g,h,i,]Perylene",LB
+37059,0.00992529,Fluoranthene,LB
+37059,0.02929932,Acenaphthylene,LB
+37059,5.039008,"2,2,4-Trimethylpentane",LB
+37059,0.003331776,Benz[a]Anthracene,LB
+37059,1.9732612,Acetaldehyde,LB
+37059,140.2278,Carbon Dioxide,TON
+37059,1.924728e-05,Nitrate portion of PM2.5-PRI,TON
+37059,0.007021244,PM2.5 Primary (Filt + Cond),TON
+37059,0.002939788,Sulfur Dioxide,TON
+37049,90.98814,Acetaldehyde,LB
+37049,1.8247374,Phenanthrene,LB
+37049,0.2026465,PM25-Primary from certain diesel engines,TON
+37049,0.1499248,Elemental Carbon portion of PM2.5-PRI,TON
+37049,4.434234,Nitrogen Oxides,TON
+37037,0.6188428,Chrysene,LB
+37037,0.4360347,Ammonia,TON
+37037,28.45708,Styrene,LB
+37037,5.33542,Anthracene,LB
+37037,10.422182,Pyrene,LB
+37033,653.762,Ethyl Benzene,LB
+37025,96.23474,Ethyl Benzene,LB
+37025,0.3392792,Benzo[b]Fluoranthene,LB
+37025,92.97604,"2,2,4-Trimethylpentane",LB
+37025,63.21437,Carbon Monoxide,TON
+37025,15.77551,PM10 Primary (Filt + Cond),TON
+37025,2.759624,Fluoranthene,LB
+37025,0.0866626,Nickel,LB
+37025,30.86158,Carbon Monoxide,TON
+37025,1.02009,PM10 Primary (Filt + Cond),TON
+37025,0.6922687,PM2.5 Primary (Filt + Cond),TON
+37025,0.07384509,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.03407246,Sulfate Portion of PM2.5-PRI,TON
+37013,0.18117042,"1,3-Butadiene",LB
+37013,0.4483002,Acrolein,LB
+37013,0.0428206,Fluoranthene,LB
+37013,0.0012561524,Manganese,LB
+37013,0.01421375,PM10-Primary from certain diesel engines,TON
+37013,0.01307636,PM25-Primary from certain diesel engines,TON
+37015,0.03852858,Hexane,LB
+37015,5.487916e-05,"Benzo[g,h,i,]Perylene",LB
+37015,9.18903e-05,Fluorene,LB
+37005,1.9199706,Acrolein,LB
+37005,0.176843,Pyrene,LB
+37005,0.007861764,Benzo[a]Pyrene,LB
+37005,10.45018,Acetaldehyde,LB
+37005,0.1539036,Fluorene,LB
+37005,0.00160756,Sulfur Dioxide,TON
+37067,0.01818191,Sulfur Dioxide,TON
+37067,0.0003535102,Sulfate Portion of PM2.5-PRI,TON
+37067,0.07272936,Styrene,LB
+37067,2.55612,Hexane,LB
+37067,0.005327806,Pyrene,LB
+37067,0.0210614,"Benzo[g,h,i,]Perylene",LB
+37067,0.00404465,Benzo[k]Fluoranthene,LB
+37067,0.003446824,Benz[a]Anthracene,LB
+37067,0.00450564,Nickel,LB
+37067,0.02865395,Methane,TON
+37067,0.04445837,PM10 Primary (Filt + Cond),TON
+37049,0.000212986,Mercury,LB
+37049,0.08267006,Naphthalene,LB
+37049,0.001914552,Benzo[b]Fluoranthene,LB
+37017,0.0002078188,Anthracene,LB
+37017,1.1225552e-05,"Dibenzo[a,h]Anthracene",LB
+37017,0.000122632,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.002301159,PM10 Primary (Filt + Cond),TON
+37017,0.01540673,Volatile Organic Compounds,TON
+37003,2.279582,"2,2,4-Trimethylpentane",LB
+37017,0.1206651,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,19.530588,Acrolein,LB
+37017,6.642608e-05,Chromium (VI),LB
+37017,0.011927596,"Benzo[g,h,i,]Perylene",LB
+37017,0.008008356,"Dibenzo[a,h]Anthracene",LB
+37017,5.033268e-05,Mercury,LB
+37017,3806.7,Carbon Dioxide,TON
+37013,2.871064e-08,Chromium (VI),LB
+37013,6.056422,Acetaldehyde,LB
+37011,6.525738,"1,3-Butadiene",LB
+37011,0.07697168,Pyrene,LB
+37011,1.260422e-05,Chromium (VI),LB
+37011,0.012713716,Benzo[k]Fluoranthene,LB
+37011,41.21216,"2,2,4-Trimethylpentane",LB
+37011,0.9142233,Volatile Organic Compounds,TON
+37027,0.5465624,Volatile Organic Compounds,TON
+37027,0.007385172,Anthracene,LB
+37027,1.9432598,Propionaldehyde,LB
+37027,0.01435448,Benzo[a]Pyrene,LB
+37027,8.682898,"2,2,4-Trimethylpentane",LB
+37027,0.016329934,Fluorene,LB
+37189,0.02378451,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,3.659138,Styrene,LB
+37189,6.479398e-05,Chromium (VI),LB
+37189,1.1663806,Fluoranthene,LB
+37189,0.0013210946,"Dibenzo[a,h]Anthracene",LB
+37189,0.03609706,Manganese,LB
+37073,353.4978,Toluene,LB
+37073,0.092602,Anthracene,LB
+37073,0.008468562,Nickel,LB
+37073,0.01794855,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.02464343,Sulfur Dioxide,TON
+37063,0.2821574,Nickel,LB
+37063,0.1828401,Arsenic,LB
+37063,4.128004,Acenaphthene,LB
+37063,44.25541,Carbon Monoxide,TON
+37063,41.16506,"1,3-Butadiene",LB
+37063,146.8856,Xylenes (Mixed Isomers),LB
+37145,0.2381398,Acrolein,LB
+37145,0.2683436,Xylenes (Mixed Isomers),LB
+37145,0.0012867474,Naphthalene,LB
+37145,0.6673458,Carbon Monoxide,TON
+37189,0.012372012,Ethyl Benzene,LB
+37189,0.14080138,Acrolein,LB
+37189,0.00012510722,Acenaphthene,LB
+37189,0.0002726438,Fluorene,LB
+37189,0.01055548,Nitrous Oxide,TON
+37189,0.002007392,Ammonia,TON
+37183,48.21674,Acetaldehyde,LB
+37183,11.98666,Naphthalene,LB
+37183,0.005811628,Nitrous Oxide,TON
+37057,0.014634964,Nickel,LB
+37057,1357.2,Carbon Dioxide,TON
+37057,0.3588649,PM10 Primary (Filt + Cond),TON
+37057,8.27557,Toluene,LB
+37057,4.832916,Propionaldehyde,LB
+37191,0.01762385,PM25-Primary from certain diesel engines,TON
+37191,0.0001264331,Nitrate portion of PM2.5-PRI,TON
+37191,0.006966914,Sulfur Dioxide,TON
+37191,8.65678,Acrolein,LB
+37191,0.2580898,Anthracene,LB
+37191,10.471792,Xylenes (Mixed Isomers),LB
+37191,0.0011320554,"Benzo[g,h,i,]Perylene",LB
+37191,0.00035552,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,119.25222,Formaldehyde,LB
+37191,0.9159342,Phenanthrene,LB
+37153,0.7091654,Pyrene,LB
+37153,0.2802542,PM10 Primary (Filt + Cond),TON
+37153,0.526653,Volatile Organic Compounds,TON
+37075,0.008308999,PM10 Primary (Filt + Cond),TON
+37075,8.107546e-05,Sulfate Portion of PM2.5-PRI,TON
+37075,0.3879448,Propionaldehyde,LB
+37075,0.002981422,Pyrene,LB
+37075,20.19448,Acetaldehyde,LB
+37075,0.01162665,Methane,TON
+37075,1.575003,Carbon Monoxide,TON
+37075,146.2317,Carbon Dioxide,TON
+37075,0.002669604,Nitrous Oxide,TON
+37075,0.00822906,Ammonia,TON
+37069,0.012644738,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.006810892,Benzo[k]Fluoranthene,LB
+37069,0.2164002,Styrene,LB
+37069,0.7740294,Acrolein,LB
+37019,0.4190622,Styrene,LB
+37019,0.016455308,Benzo[b]Fluoranthene,LB
+37019,0.0250567,Fluoranthene,LB
+37019,0.000718508,"Dibenzo[a,h]Anthracene",LB
+37019,41.07948,Benzene,LB
+37019,0.03697939,Nitrous Oxide,TON
+37019,0.005095472,Fluorene,LB
+37019,0.00260329,Methane,TON
+37019,0.0002573805,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,31.74928,Toluene,LB
+37015,0.0016148068,Benzo[k]Fluoranthene,LB
+37015,0.02713544,Acenaphthylene,LB
+37015,1.940466,Acetaldehyde,LB
+37015,0.0120713,Fluorene,LB
+37015,0.004567183,Methane,TON
+37015,51.88529,Carbon Dioxide,TON
+37015,0.0004343374,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.001185418,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.006093809,PM10 Primary (Filt + Cond),TON
+37015,0.1481128,Volatile Organic Compounds,TON
+37015,0.0002198058,Nickel,LB
+37015,0.002425276,Acenaphthene,LB
+37015,0.0006371373,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.0005433894,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.046919,Acrolein,LB
+37015,0.0007531372,Benzo[k]Fluoranthene,LB
+37015,0.7818386,Formaldehyde,LB
+37015,2.440832e-05,"Dibenzo[a,h]Anthracene",LB
+37011,5364.412,Toluene,LB
+37011,2.113432,Fluoranthene,LB
+37011,0.016476236,"Dibenzo[a,h]Anthracene",LB
+37005,0.002454876,Acrolein,LB
+37005,0.00018352676,Fluoranthene,LB
+37005,1.1995742e-06,"Dibenzo[a,h]Anthracene",LB
+37005,0.0001096166,Methane,TON
+37005,1.196108,Carbon Dioxide,TON
+37005,7.953036e-05,Nitrous Oxide,TON
+37003,0.0442117,PM10-Primary from certain diesel engines,TON
+37003,0.04067514,PM25-Primary from certain diesel engines,TON
+37003,0.0002979293,Nitrous Oxide,TON
+37003,0.12965026,Styrene,LB
+37003,0.03307298,Anthracene,LB
+37003,0.004491947,Ammonia,TON
+37003,0.001854462,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.005703166,PM2.5 Primary (Filt + Cond),TON
+37003,3.413606,Xylenes (Mixed Isomers),LB
+37003,1.0547606,"2,2,4-Trimethylpentane",LB
+37003,1.2979064e-05,Mercury,LB
+37003,0.10516552,Acenaphthene,LB
+37051,0.03272347,PM2.5 Primary (Filt + Cond),TON
+37051,0.005467902,Anthracene,LB
+37051,9.611878e-05,Chromium (VI),LB
+37051,0.0427841,"Benzo[g,h,i,]Perylene",LB
+37051,0.008275202,Benzo[b]Fluoranthene,LB
+37051,0.03799136,Manganese,LB
+37033,0.6347128,Ethyl Benzene,LB
+37033,5.064124,Toluene,LB
+37017,2.093652,Xylenes (Mixed Isomers),LB
+37017,0.00433394,Acenaphthylene,LB
+37017,1.546962,Formaldehyde,LB
+37017,157.3057,Carbon Dioxide,TON
+37017,0.002079874,Nitrous Oxide,TON
+37009,0.07595098,Propionaldehyde,LB
+37009,0.0005847674,Pyrene,LB
+37009,0.0002882376,Nickel,LB
+37009,0.00044194,Arsenic,LB
+37009,0.0017660606,Phenanthrene,LB
+37009,0.0006620689,PM2.5 Primary (Filt + Cond),TON
+37145,0.02051016,"Benzo[g,h,i,]Perylene",LB
+37145,11.748682,Formaldehyde,LB
+37145,0.003799132,Benz[a]Anthracene,LB
+37145,464.4814,Carbon Dioxide,TON
+37145,0.01030334,Nitrous Oxide,TON
+37145,0.0106249,PM2.5 Primary (Filt + Cond),TON
+37017,0.00013897752,Mercury,LB
+37017,0.0598478,Nickel,LB
+37017,0.1937,Methane,TON
+37017,10442.83,Carbon Dioxide,TON
+37017,0.1567978,Ammonia,TON
+37017,34.4676,Nitrogen Oxides,TON
+37017,1.765456,PM10 Primary (Filt + Cond),TON
+37017,2.592234,Pyrene,LB
+37017,0.000128203,Chromium (VI),LB
+37017,0.007260268,Benzo[k]Fluoranthene,LB
+37017,0.007211364,"Dibenzo[a,h]Anthracene",LB
+37013,8.749478,Benzene,LB
+37013,39.95424,Acetaldehyde,LB
+37013,0.6130486,Fluorene,LB
+37013,771.5196,Carbon Dioxide,TON
+37021,1828.6834,Ethyl Benzene,LB
+37021,63.85946,Acrolein,LB
+37021,2144.698,"2,2,4-Trimethylpentane",LB
+37021,1.4137702,Manganese,LB
+37021,0.05408507,Sulfate Portion of PM2.5-PRI,TON
+37019,27.69092,Ethyl Benzene,LB
+37019,10.415936,Styrene,LB
+37019,7.88606,Pyrene,LB
+37019,0.03603368,"Benzo[g,h,i,]Perylene",LB
+37019,0.04551016,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.1787189,Benzo[b]Fluoranthene,LB
+37019,0.0245637,Benzo[k]Fluoranthene,LB
+37019,0.02450068,"Dibenzo[a,h]Anthracene",LB
+37019,75.7519,Benzene,LB
+37019,0.4100489,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.000785398,Benzo[k]Fluoranthene,LB
+37011,2.36743e-05,"Dibenzo[a,h]Anthracene",LB
+37011,0.000113006,Nickel,LB
+37011,0.0002466617,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.0006283974,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.001469609,PM2.5 Primary (Filt + Cond),TON
+37011,4.148682e-05,Sulfate Portion of PM2.5-PRI,TON
+37011,0.04318324,Volatile Organic Compounds,TON
+37005,1744.3028,Toluene,LB
+37003,1.2069452,Propionaldehyde,LB
+37003,0.005971944,Benzo[b]Fluoranthene,LB
+37003,0.5778458,"2,2,4-Trimethylpentane",LB
+37003,0.06398746,Benz[a]Anthracene,LB
+37003,0.006911438,Manganese,LB
+37003,2.507594,Naphthalene,LB
+37003,0.06433028,PM10-Primary from certain diesel engines,TON
+37179,0.008606114,Fluoranthene,LB
+37179,0.012069514,Fluorene,LB
+37179,0.0008123542,Organic Carbon portion of PM2.5-PRI,TON
+37179,3.548909e-05,Sulfate Portion of PM2.5-PRI,TON
+37179,0.14489162,Styrene,LB
+37197,0.15651434,Styrene,LB
+37197,0.004993752,Anthracene,LB
+37197,0.009196678,Fluoranthene,LB
+37197,0.010488078,Benzo[a]Pyrene,LB
+37193,2.227922,"1,3-Butadiene",LB
+37193,0.004665587,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.0003139753,Sulfate Portion of PM2.5-PRI,TON
+37183,1505.7756,Formaldehyde,LB
+37183,598.2128,Acetaldehyde,LB
+37183,0.01925969,Nitrous Oxide,TON
+37183,9.738072,Nitrogen Oxides,TON
+37183,0.1156811,Organic Carbon portion of PM2.5-PRI,TON
+37183,1.216678,PM10 Primary (Filt + Cond),TON
+37199,0.282844,Fluorene,LB
+37199,297.9951,Carbon Dioxide,TON
+37199,0.2948246,Volatile Organic Compounds,TON
+37199,0.7168396,Styrene,LB
+37199,1.3099642,Hexane,LB
+37199,0.0003067454,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.00016651394,"Dibenzo[a,h]Anthracene",LB
+37197,0.00011316834,Anthracene,LB
+37197,1.194481,Propionaldehyde,LB
+37197,0.0005445362,Pyrene,LB
+37197,0.0002637544,Arsenic,LB
+37197,0.0008475804,Phenanthrene,LB
+37197,76.82948,Carbon Dioxide,TON
+37195,0.012676404,Benzo[b]Fluoranthene,LB
+37195,0.4945644,Naphthalene,LB
+37195,0.0118612,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.6364002,Volatile Organic Compounds,TON
+37195,3.597278e-08,Chromium (VI),LB
+37195,0.0005319528,Chrysene,LB
+37195,0.002784076,Elemental Carbon portion of PM2.5-PRI,TON
+37195,1.240936,Nitrogen Oxides,TON
+37189,0.08071535,Volatile Organic Compounds,TON
+37183,64.1162,Hexane,LB
+37183,0.9076742,Chrysene,LB
+37183,21.00464,Phenanthrene,LB
+37183,142.92878,Ethyl Benzene,LB
+37183,474.6652,Hexane,LB
+37141,54.9487,"1,3-Butadiene",LB
+37141,131.41346,Acrolein,LB
+37141,105.17776,Toluene,LB
+37141,0.01084469,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.14267494,Benzo[a]Pyrene,LB
+37141,1.164683,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.02929034,Nitrous Oxide,TON
+37129,25.22222,Styrene,LB
+37129,0.018947318,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,169.3884,Benzene,LB
+37129,0.0004018418,Mercury,LB
+37129,0.05249077,Nitrous Oxide,TON
+37123,0.002571938,Propionaldehyde,LB
+37123,0.0002036324,Fluoranthene,LB
+37123,5.231016e-06,Nickel,LB
+37123,0.04104004,Acetaldehyde,LB
+37123,0.0007342348,Phenanthrene,LB
+37123,0.000270675,Fluorene,LB
+37123,2.748002e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,74.18794,Toluene,LB
+37109,4.645904,Pyrene,LB
+37109,800.2806,Formaldehyde,LB
+37109,0.01233064,"Dibenzo[a,h]Anthracene",LB
+37109,0.903275,Methane,TON
+37107,0.1461177,Formaldehyde,LB
+37107,8.219044e-06,"Dibenzo[a,h]Anthracene",LB
+37107,0.1580751,Carbon Monoxide,TON
+37107,9.94191e-06,Sulfate Portion of PM2.5-PRI,TON
+37107,0.0007815596,Pyrene,LB
+37097,21.46138,Ethyl Benzene,LB
+37097,49.5852,Acrolein,LB
+37097,1.6510782,Anthracene,LB
+37097,0.003539044,Benzo[k]Fluoranthene,LB
+37097,3.287524,Acenaphthylene,LB
+37097,59.41008,Benzene,LB
+37097,0.000213715,Mercury,LB
+37097,0.0446845,Arsenic,LB
+37097,1.9559952,Acenaphthene,LB
+37097,5995.198,Carbon Dioxide,TON
+37097,0.01849624,Nitrous Oxide,TON
+37091,0.643648,Phenanthrene,LB
+37103,12831.926,Toluene,LB
+37103,1.385294,Benzo[a]Pyrene,LB
+37103,1.0857284,Benz[a]Anthracene,LB
+37103,21.81868,Phenanthrene,LB
+37103,1.088483,Sulfur Dioxide,TON
+37095,108.43436,"2,2,4-Trimethylpentane",LB
+37095,2.9254,Acrolein,LB
+37095,502.193,Toluene,LB
+37095,0.1313284,Anthracene,LB
+37095,3.098982,Propionaldehyde,LB
+37095,0.03780346,Benzo[k]Fluoranthene,LB
+37095,0.312277,Fluorene,LB
+37095,0.0001434051,Nitrate portion of PM2.5-PRI,TON
+37095,0.05467342,PM2.5 Primary (Filt + Cond),TON
+37093,0.11127954,Toluene,LB
+37093,0.1095796,Xylenes (Mixed Isomers),LB
+37093,6.99677e-05,Chrysene,LB
+37093,1.6912772e-05,Mercury,LB
+37093,0.0004491051,Sulfur Dioxide,TON
+37093,6.552131e-05,Sulfate Portion of PM2.5-PRI,TON
+37093,0.04139791,Volatile Organic Compounds,TON
+37093,3.062018,Ethyl Benzene,LB
+37093,0.11320572,Styrene,LB
+37093,0.0733506,Acrolein,LB
+37093,4.212782,Hexane,LB
+37093,11.35277,Xylenes (Mixed Isomers),LB
+37093,0.0012125136,Chrysene,LB
+37093,4.135198,"2,2,4-Trimethylpentane",LB
+37093,0.0012304524,Benz[a]Anthracene,LB
+37093,1.4989062,Acetaldehyde,LB
+37093,0.004655622,Acenaphthene,LB
+37093,0.007574684,Methane,TON
+37087,0.002839092,Arsenic,LB
+37087,0.001798909,Nitrous Oxide,TON
+37087,0.4086361,Volatile Organic Compounds,TON
+37083,0.002024168,Benzo[k]Fluoranthene,LB
+37083,0.8206332,Acenaphthylene,LB
+37083,133.96276,Formaldehyde,LB
+37083,2.017246e-05,Mercury,LB
+37083,1.4469846,Phenanthrene,LB
+37083,15.241276,Naphthalene,LB
+37083,5.246571,Carbon Monoxide,TON
+37083,0.002233746,Nitrous Oxide,TON
+37083,0.01929499,Ammonia,TON
+37083,0.005472676,Sulfate Portion of PM2.5-PRI,TON
+37079,0.3882836,Propionaldehyde,LB
+37079,0.00518054,Benzo[a]Pyrene,LB
+37079,2.638532e-06,Mercury,LB
+37079,0.0014234944,Nickel,LB
+37079,3.253324,Acetaldehyde,LB
+37079,0.0514383,Fluorene,LB
+37079,0.2521125,Carbon Monoxide,TON
+37079,0.00018015974,"Benzo[g,h,i,]Perylene",LB
+37079,0.000251365,Benzo[b]Fluoranthene,LB
+37079,0.06306798,Fluoranthene,LB
+37079,0.004991886,Nickel,LB
+37079,0.0018649764,Arsenic,LB
+37087,2.099372,Hexane,LB
+37087,0.005356558,"Benzo[g,h,i,]Perylene",LB
+37087,0.0020125,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.0012421764,Benzo[k]Fluoranthene,LB
+37083,301.5192,Propionaldehyde,LB
+37083,5.483108,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,66.96928,Acenaphthylene,LB
+37083,4.047926,Chrysene,LB
+37083,0.1258663,"Dibenzo[a,h]Anthracene",LB
+37083,4.144546,Benz[a]Anthracene,LB
+37083,763.5224,Naphthalene,LB
+37083,13.05253,Ammonia,TON
+37083,0.0162975,Nitrate portion of PM2.5-PRI,TON
+37075,0.270879,Toluene,LB
+37075,0.00011481644,Fluoranthene,LB
+37075,3.509296e-05,Benzo[a]Pyrene,LB
+37075,0.02548104,Acetaldehyde,LB
+37075,0.00015812572,Fluorene,LB
+37075,8.130303e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37071,5186.442,Formaldehyde,LB
+37071,19034.576,Benzene,LB
+37071,910.4658,Naphthalene,LB
+37071,9.673015,Methane,TON
+37071,9.208142,Nitrous Oxide,TON
+37071,451.3283,Nitrogen Oxides,TON
+37071,406.7786,Styrene,LB
+37069,13.071952,Ethyl Benzene,LB
+37069,31.95812,Toluene,LB
+37069,18.725094,Propionaldehyde,LB
+37069,0.2635886,Benzo[a]Pyrene,LB
+37069,0.04615748,Sulfate Portion of PM2.5-PRI,TON
+37069,0.12675972,"1,3-Butadiene",LB
+37069,0.02188364,"1,3-Butadiene",LB
+37069,0.002602026,Acrolein,LB
+37069,1.1799224e-06,"Dibenzo[a,h]Anthracene",LB
+37069,1.8343042e-06,Arsenic,LB
+37069,6.909192e-06,Sulfur Dioxide,TON
+37063,3466.62,Formaldehyde,LB
+37063,0.2993774,Arsenic,LB
+37063,1328.2796,Acetaldehyde,LB
+37063,6.69884,Acenaphthene,LB
+37063,10.49121,PM10-Primary from certain diesel engines,TON
+37063,0.02356296,Nitrate portion of PM2.5-PRI,TON
+37063,0.9600316,Sulfur Dioxide,TON
+37063,11.240064,Acenaphthylene,LB
+37059,56.7683,"1,3-Butadiene",LB
+37059,9.30927,Pyrene,LB
+37059,0.02305552,"Benzo[g,h,i,]Perylene",LB
+37059,0.06497302,Arsenic,LB
+37059,1.3419,PM25-Primary from certain diesel engines,TON
+37059,1.2162528,Benz[a]Anthracene,LB
+37059,0.014270368,"Benzo[g,h,i,]Perylene",LB
+37059,0.00535613,Benzo[a]Pyrene,LB
+37059,0.5788996,Naphthalene,LB
+37059,0.001073934,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.007077085,PM2.5 Primary (Filt + Cond),TON
+37055,0.0900408,Mercury,LB
+37055,1.721362,Arsenic,LB
+37055,12.285466,Acenaphthene,LB
+37055,0.9101508,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.01310076,Nitrate portion of PM2.5-PRI,TON
+37055,5.339613,PM2.5 Primary (Filt + Cond),TON
+37047,474.7448,Formaldehyde,LB
+37047,0.4034003,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.001842334,Nitrous Oxide,TON
+37039,1.8093816,Ethyl Benzene,LB
+37041,25.59628,Acrolein,LB
+37041,0.0012133762,Chromium (VI),LB
+37041,0.3429732,Benzo[b]Fluoranthene,LB
+37041,0.3429732,Benzo[k]Fluoranthene,LB
+37041,1065.7484,"2,2,4-Trimethylpentane",LB
+37041,0.342698,Benz[a]Anthracene,LB
+37041,1240.718,Benzene,LB
+37041,16705.59,Carbon Dioxide,TON
+37041,0.1223484,Elemental Carbon portion of PM2.5-PRI,TON
+37041,1.412406,Ammonia,TON
+37035,108.60892,Xylenes (Mixed Isomers),LB
+37035,0.05184524,"Benzo[g,h,i,]Perylene",LB
+37035,0.06424436,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,1.6313904,Chrysene,LB
+37035,0.8459776,Benzo[a]Pyrene,LB
+37035,35.0323,"2,2,4-Trimethylpentane",LB
+37035,3.764214,Acenaphthene,LB
+37035,0.01504908,Nitrate portion of PM2.5-PRI,TON
+37035,53.86271,Nitrogen Oxides,TON
+37035,1.21577,Organic Carbon portion of PM2.5-PRI,TON
+37035,6.990213,Volatile Organic Compounds,TON
+37027,0.09241904,Pyrene,LB
+37027,1.4734144e-06,Chromium (VI),LB
+37027,0.00200581,Benzo[b]Fluoranthene,LB
+37027,0.012983302,Chrysene,LB
+37027,0.00672785,Benzo[a]Pyrene,LB
+37027,1.231811e-06,Mercury,LB
+37027,0.1109705,Phenanthrene,LB
+37027,0.9907976,Naphthalene,LB
+37027,0.003283869,Methane,TON
+37027,0.001376959,Ammonia,TON
+37027,0.0001174979,Nitrate portion of PM2.5-PRI,TON
+37027,0.0005596289,Sulfur Dioxide,TON
+37027,0.6394426,Fluorene,LB
+37027,0.0784852,Methane,TON
+37027,0.01514786,Ammonia,TON
+37027,0.0003518478,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.0013809932,Benzo[b]Fluoranthene,LB
+37027,0.4710966,Fluoranthene,LB
+37027,11.494966,Benzene,LB
+37027,9.497766,Toluene,LB
+37027,3.186652,Hexane,LB
+37027,41.44808,Hexane,LB
+37023,144.4865,Formaldehyde,LB
+37023,6.01796e-05,Mercury,LB
+37023,0.012583038,Arsenic,LB
+37023,0.7346148,Fluorene,LB
+37023,0.02710533,PM10-Primary from certain diesel engines,TON
+37023,0.7853926,Volatile Organic Compounds,TON
+37013,4579.32,Xylenes (Mixed Isomers),LB
+37011,1.169706e-06,Chromium (VI),LB
+37011,0.8341976,Acetaldehyde,LB
+37011,0.002467908,Acenaphthene,LB
+37011,0.002100024,Methane,TON
+37011,0.003575336,PM10 Primary (Filt + Cond),TON
+37011,0.001311519,PM2.5 Primary (Filt + Cond),TON
+37011,0.0004080545,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.3545774,Manganese,LB
+37001,0.838206,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.09700541,Sulfate Portion of PM2.5-PRI,TON
+37001,0.00018284358,Chromium (VI),LB
+37055,0.014491854,Styrene,LB
+37055,0.07113802,"1,3-Butadiene",LB
+37055,0.6541322,Hexane,LB
+37055,0.0011880106,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,2.726802e-05,"Dibenzo[a,h]Anthracene",LB
+37055,0.002862588,Manganese,LB
+37055,0.0010148596,Fluorene,LB
+37055,0.002449242,PM2.5 Primary (Filt + Cond),TON
+37003,0.0003665222,Benz[a]Anthracene,LB
+37003,0.0004899872,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.02425714,Acrolein,LB
+37161,0.0014464176,"Benzo[g,h,i,]Perylene",LB
+37161,0.0002836918,Benzo[k]Fluoranthene,LB
+37161,0.2582186,"2,2,4-Trimethylpentane",LB
+37161,0.0002447182,Benz[a]Anthracene,LB
+37161,2.214198e-05,Mercury,LB
+37161,0.0013268066,Phenanthrene,LB
+37161,0.2999848,Carbon Monoxide,TON
+37161,0.001180032,Sulfur Dioxide,TON
+37161,2.363121e-05,Sulfate Portion of PM2.5-PRI,TON
+37157,7.600088,Xylenes (Mixed Isomers),LB
+37157,0.1714037,Volatile Organic Compounds,TON
+37141,7.493462,"2,2,4-Trimethylpentane",LB
+37139,0.5798868,"1,3-Butadiene",LB
+37139,0.02068174,"Benzo[g,h,i,]Perylene",LB
+37139,0.0215885,Acenaphthylene,LB
+37139,0.00017839494,"Dibenzo[a,h]Anthracene",LB
+37139,0.00368504,Benz[a]Anthracene,LB
+37139,5.43721,Carbon Monoxide,TON
+37139,0.0003412188,Sulfate Portion of PM2.5-PRI,TON
+37099,1.2182558,Hexane,LB
+37099,4.434956,Xylenes (Mixed Isomers),LB
+37087,0.02831572,Acrolein,LB
+37087,0.000522198,Fluoranthene,LB
+37087,0.000459615,Benzo[k]Fluoranthene,LB
+37087,0.0003911304,Benz[a]Anthracene,LB
+37087,0.0016132822,Phenanthrene,LB
+37087,0.014393282,Naphthalene,LB
+37087,0.0002155236,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.03524633,Nitrogen Oxides,TON
+37087,0.004438584,PM10 Primary (Filt + Cond),TON
+37087,0.01824195,Volatile Organic Compounds,TON
+37021,0.3763812,Benzo[b]Fluoranthene,LB
+37021,2.402848,Chrysene,LB
+37021,142.62926,Benzene,LB
+37021,0.20242,Nickel,LB
+37021,19.393926,Phenanthrene,LB
+37021,11.168788,Fluorene,LB
+37021,0.5364867,Methane,TON
+37021,39.82096,Propionaldehyde,LB
+37021,64.08192,Xylenes (Mixed Isomers),LB
+37021,0.01263868,"Benzo[g,h,i,]Perylene",LB
+37021,0.03605276,Benzo[b]Fluoranthene,LB
+37021,0.12083588,Benzo[a]Pyrene,LB
+37021,0.10452202,Nickel,LB
+37021,4.295226,Fluorene,LB
+37021,0.4935525,Methane,TON
+37021,10774.572,"2,2,4-Trimethylpentane",LB
+37015,23.25264,Xylenes (Mixed Isomers),LB
+37015,0.1078156,Styrene,LB
+37015,0.002209684,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.0015507136,Benzo[k]Fluoranthene,LB
+37015,1.4658818,Acetaldehyde,LB
+37015,2.763283,Carbon Monoxide,TON
+37015,0.0004612328,Elemental Carbon portion of PM2.5-PRI,TON
+37009,10.799058,Propionaldehyde,LB
+37009,163.77734,Formaldehyde,LB
+37009,0.0655988,Manganese,LB
+37009,0.5425712,Acenaphthene,LB
+37009,28.16988,Naphthalene,LB
+37009,0.3424349,Methane,TON
+37001,6.47584,Fluoranthene,LB
+37001,0.01113036,Nitrate portion of PM2.5-PRI,TON
+37001,41.25675,Nitrogen Oxides,TON
+37001,0.9064612,Organic Carbon portion of PM2.5-PRI,TON
+37001,5.126225,Volatile Organic Compounds,TON
+37085,0.2223384,Acrolein,LB
+37085,0.003989402,Pyrene,LB
+37085,6.633606,Benzene,LB
+37085,23.74078,Acetaldehyde,LB
+37085,1.837814e-05,Nitrate portion of PM2.5-PRI,TON
+37071,2.615536,"1,3-Butadiene",LB
+37071,0.02095442,Anthracene,LB
+37071,0.12971142,"Benzo[g,h,i,]Perylene",LB
+37071,0.02561274,Benzo[b]Fluoranthene,LB
+37071,0.10409434,Acenaphthylene,LB
+37071,0.0011186412,"Dibenzo[a,h]Anthracene",LB
+37071,0.02249218,Acenaphthene,LB
+37063,0.4640184,Styrene,LB
+37063,0.0322577,Pyrene,LB
+37063,0.10616904,"Benzo[g,h,i,]Perylene",LB
+37063,0.03614709,Nitrous Oxide,TON
+37063,0.1290407,Ammonia,TON
+37063,0.001657884,Sulfate Portion of PM2.5-PRI,TON
+37063,1.084596,Volatile Organic Compounds,TON
+37005,0.17205102,"1,3-Butadiene",LB
+37005,0.004728812,"Benzo[g,h,i,]Perylene",LB
+37005,0.00745954,Phenanthrene,LB
+37005,93.37696,Carbon Dioxide,TON
+37005,0.0004894769,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.005182293,Ammonia,TON
+37005,0.002160641,PM2.5 Primary (Filt + Cond),TON
+37005,0.002840823,Sulfur Dioxide,TON
+37159,0.03242506,Nitrous Oxide,TON
+37159,0.02180531,Organic Carbon portion of PM2.5-PRI,TON
+37159,8.657128,Ethyl Benzene,LB
+37159,13.705876,Hexane,LB
+37159,30.90698,Xylenes (Mixed Isomers),LB
+37159,15.964278,"2,2,4-Trimethylpentane",LB
+37159,0.015317324,Benz[a]Anthracene,LB
+37159,0.0011889038,Mercury,LB
+37159,0.01482426,Nickel,LB
+37159,184.53072,Acetaldehyde,LB
+37159,0.015010762,Acenaphthene,LB
+37159,0.1194693,Methane,TON
+37177,0.007002884,Nitrogen Oxides,TON
+37177,0.00317723,Volatile Organic Compounds,TON
+37177,0.02728758,Ethyl Benzene,LB
+37177,2.869224e-06,"Dibenzo[a,h]Anthracene",LB
+37177,0.0001332993,Manganese,LB
+37177,7.25118e-05,Nickel,LB
+37161,0.001494767,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.11270548,Acrolein,LB
+37161,2.793576,Toluene,LB
+37161,0.001197106,Benzo[b]Fluoranthene,LB
+37161,0.0014944684,Nickel,LB
+37161,0.0010247922,Acenaphthene,LB
+37161,0.008435275,Methane,TON
+37133,0.4018274,Ethyl Benzene,LB
+37133,1.7206372,Toluene,LB
+37133,0.0016483708,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.003133234,Acenaphthylene,LB
+37133,2.01172,Benzene,LB
+37133,0.000675338,Acenaphthene,LB
+37133,0.006364929,Methane,TON
+37131,3.64398,"2,2,4-Trimethylpentane",LB
+37131,0.007501506,Fluorene,LB
+37131,0.005712198,Nitrous Oxide,TON
+37131,2.484602e-05,Nitrate portion of PM2.5-PRI,TON
+37131,0.383869,"1,3-Butadiene",LB
+37131,7.985136,Toluene,LB
+37131,2.928,Hexane,LB
+37117,0.0010562914,Nickel,LB
+37117,0.03584488,Naphthalene,LB
+37159,50.60978,Propionaldehyde,LB
+37159,0.01178495,Nitrate portion of PM2.5-PRI,TON
+37163,1.88675e-05,Nitrate portion of PM2.5-PRI,TON
+37163,8.603042,Hexane,LB
+37153,28.78988,Ethyl Benzene,LB
+37153,57.62874,Acrolein,LB
+37153,0.016252798,"Benzo[g,h,i,]Perylene",LB
+37153,0.010238102,Benzo[k]Fluoranthene,LB
+37153,0.4858388,Chrysene,LB
+37153,85.34558,Naphthalene,LB
+37151,0.011124086,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.006690948,Benzo[k]Fluoranthene,LB
+37151,4.322504,Formaldehyde,LB
+37151,14.581322,Benzene,LB
+37151,0.002120111,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.03202692,PM10 Primary (Filt + Cond),TON
+37145,0.2890276,Acrolein,LB
+37145,0.2625346,Toluene,LB
+37145,0.005140726,Chrysene,LB
+37145,3.725624,Formaldehyde,LB
+37145,0.04448686,Phenanthrene,LB
+37145,0.001724833,Methane,TON
+37145,0.07991418,Carbon Monoxide,TON
+37145,8.615924e-05,Nitrous Oxide,TON
+37145,0.0002507675,Sulfate Portion of PM2.5-PRI,TON
+37145,1.176814,"1,3-Butadiene",LB
+37145,0.00211802,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,2.61186,Formaldehyde,LB
+37145,0.002828263,Nitrous Oxide,TON
+37145,0.000723394,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,5.788684e-05,Sulfate Portion of PM2.5-PRI,TON
+37167,0.005628746,Pyrene,LB
+37167,1.4425576e-07,Chromium (VI),LB
+37167,0.0003608243,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.06058709,Nitrogen Oxides,TON
+37167,0.001926979,PM10 Primary (Filt + Cond),TON
+37003,0.04488284,Sulfur Dioxide,TON
+37003,3.697514,Anthracene,LB
+37003,71.54652,Propionaldehyde,LB
+37003,0.1200553,Benzo[a]Pyrene,LB
+37003,0.9720744,Benz[a]Anthracene,LB
+37003,7.63447,Fluorene,LB
+37003,0.8891459,PM25-Primary from certain diesel engines,TON
+37077,0.05093,Ethyl Benzene,LB
+37077,0.0001056257,Chrysene,LB
+37077,7.84313,Acetaldehyde,LB
+37077,0.6509186,Methane,TON
+37077,0.002082135,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.0006080667,Sulfur Dioxide,TON
+37067,0.19680972,"Benzo[g,h,i,]Perylene",LB
+37067,0.02892138,Chrysene,LB
+37067,0.03294638,Benz[a]Anthracene,LB
+37067,0.0586136,Fluorene,LB
+37067,0.01743099,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.2507533,Ammonia,TON
+37067,0.1085864,PM2.5 Primary (Filt + Cond),TON
+37067,0.1463326,Sulfur Dioxide,TON
+37079,0.09537842,Ethyl Benzene,LB
+37079,0.3854964,Toluene,LB
+37079,0.0003254436,Pyrene,LB
+37079,0.3413918,Xylenes (Mixed Isomers),LB
+37079,0.000941287,Phenanthrene,LB
+37079,0.2445848,Carbon Monoxide,TON
+37079,0.0005167357,PM2.5 Primary (Filt + Cond),TON
+37079,1.460198e-05,Sulfate Portion of PM2.5-PRI,TON
+37121,0.7118128,Acrolein,LB
+37121,0.0001226567,Nitrate portion of PM2.5-PRI,TON
+37127,0.5876424,Benzo[a]Pyrene,LB
+37127,0.000478605,Mercury,LB
+37127,34766.1,Carbon Dioxide,TON
+37127,4.214588,PM10-Primary from certain diesel engines,TON
+37127,0.04167568,Nitrous Oxide,TON
+37127,31.52042,Ethyl Benzene,LB
+37127,0.0003958438,Chromium (VI),LB
+37179,190.3596,Xylenes (Mixed Isomers),LB
+37179,0.292635,Benzo[b]Fluoranthene,LB
+37179,0.04145224,Benzo[k]Fluoranthene,LB
+37179,0.9798446,Benzo[a]Pyrene,LB
+37179,0.0009588602,Mercury,LB
+37179,0.2639208,Nickel,LB
+37179,18.499182,Phenanthrene,LB
+37179,1.982644,Methane,TON
+37179,6.923779,PM25-Primary from certain diesel engines,TON
+37179,0.01797002,Nitrate portion of PM2.5-PRI,TON
+37081,0.0003206284,"1,3-Butadiene",LB
+37081,5.011706e-06,Fluoranthene,LB
+37081,7.983726e-06,Acenaphthylene,LB
+37033,16.335608,Hexane,LB
+37033,14.786994,"2,2,4-Trimethylpentane",LB
+37035,53.24684,Benzene,LB
+37035,0.03094312,Arsenic,LB
+37035,1.8174442,Acenaphthene,LB
+37035,12.3534,Nitrogen Oxides,TON
+37035,0.008492386,"Benzo[g,h,i,]Perylene",LB
+37161,0.006580932,Acenaphthene,LB
+37161,0.06162412,PM10 Primary (Filt + Cond),TON
+37161,3.78301,Ethyl Benzene,LB
+37161,0.00667099,Benzo[k]Fluoranthene,LB
+37099,0.2084392,Ethyl Benzene,LB
+37099,0.0007257076,Pyrene,LB
+37099,0.0004556638,Benzo[b]Fluoranthene,LB
+37099,0.001684616,Acenaphthylene,LB
+37099,0.0007377408,Arsenic,LB
+37099,0.000363208,Acenaphthene,LB
+37099,0.0008478918,Nitrous Oxide,TON
+37099,0.005066182,PM10 Primary (Filt + Cond),TON
+37099,0.02390534,Volatile Organic Compounds,TON
+37165,17.414772,Acrolein,LB
+37165,11.35472,Propionaldehyde,LB
+37165,0.009967526,"Benzo[g,h,i,]Perylene",LB
+37165,0.8912621,PM10 Primary (Filt + Cond),TON
+37165,97.26732,Acetaldehyde,LB
+37165,0.6877784,Acenaphthene,LB
+37159,0.5817478,Ethyl Benzene,LB
+37159,0.0015024722,Pyrene,LB
+37159,0.0003176274,Chrysene,LB
+37159,3.873286,Carbon Dioxide,TON
+37159,9.867773e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.0002345282,Nitrous Oxide,TON
+37159,0.0007424659,PM10 Primary (Filt + Cond),TON
+37159,0.0001289862,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.01702512,Volatile Organic Compounds,TON
+37151,397.247,Acetaldehyde,LB
+37151,9.928996,Phenanthrene,LB
+37151,31.3107,Ethyl Benzene,LB
+37151,99.14894,Naphthalene,LB
+37151,29.98457,Carbon Monoxide,TON
+37135,3.10659e-05,Mercury,LB
+37135,22.38534,Acetaldehyde,LB
+37135,0.01267566,Nitrous Oxide,TON
+37135,0.00407127,Ammonia,TON
+37171,6.747e-05,Sulfate Portion of PM2.5-PRI,TON
+37171,0.0013587232,Benzo[b]Fluoranthene,LB
+37171,0.7243884,Carbon Monoxide,TON
+37171,0.03952176,Propionaldehyde,LB
+37169,99.55222,Toluene,LB
+37169,94.58576,Xylenes (Mixed Isomers),LB
+37169,0.0002225432,Mercury,LB
+37169,0.04653222,Arsenic,LB
+37169,0.05996272,Sulfur Dioxide,TON
+37159,39.04126,Hexane,LB
+37159,0.00995303,Benzo[b]Fluoranthene,LB
+37159,0.0270204,Acenaphthene,LB
+37159,0.002784299,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.0004641669,Sulfate Portion of PM2.5-PRI,TON
+37149,6.727863e-06,Sulfur Dioxide,TON
+37149,0.013735188,Ethyl Benzene,LB
+37149,0.00285642,"1,3-Butadiene",LB
+37149,7.35516e-07,"Dibenzo[a,h]Anthracene",LB
+37149,2.43212e-05,Acenaphthene,LB
+37149,8.198167e-06,Ammonia,TON
+37149,2.47426,Ethyl Benzene,LB
+37149,3.42654,Hexane,LB
+37149,3.483608e-06,Chromium (VI),LB
+37149,0.006539542,Benzo[a]Pyrene,LB
+37149,2.977232,"2,2,4-Trimethylpentane",LB
+37149,0.0002153155,Sulfate Portion of PM2.5-PRI,TON
+37151,2.99576,Toluene,LB
+37151,16.289478,Acetaldehyde,LB
+37151,0.11164798,Acenaphthene,LB
+37151,4.082838,Naphthalene,LB
+37151,0.1660948,PM25-Primary from certain diesel engines,TON
+37147,31.54266,"1,3-Butadiene",LB
+37147,147.40422,Toluene,LB
+37147,0.0447113,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,5.232816,Acenaphthylene,LB
+37147,1.152345,Chrysene,LB
+37147,6.85219,Fluorene,LB
+37147,1.893241,Methane,TON
+37147,0.8013562,Ammonia,TON
+37147,8.158928,PM10 Primary (Filt + Cond),TON
+37147,0.6089213,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.4614727,Sulfate Portion of PM2.5-PRI,TON
+37147,57018.8,Xylenes (Mixed Isomers),LB
+37147,5745.068,Carbon Monoxide,TON
+37145,1.4077492e-05,Chromium (VI),LB
+37145,0.0003740182,"Benzo[g,h,i,]Perylene",LB
+37145,0.0003552528,Benzo[b]Fluoranthene,LB
+37145,40.71732,Formaldehyde,LB
+37145,1.328352e-05,Mercury,LB
+37145,4.224178,Naphthalene,LB
+37145,220.5227,Carbon Dioxide,TON
+37145,0.004629957,PM25-Primary from certain diesel engines,TON
+37145,0.01870584,PM10 Primary (Filt + Cond),TON
+37145,0.001902951,Sulfur Dioxide,TON
+37145,0.2113545,Volatile Organic Compounds,TON
+37143,2.63574,Acrolein,LB
+37143,2.472936,Toluene,LB
+37143,2.537702,Xylenes (Mixed Isomers),LB
+37143,0.0013401948,"Benzo[g,h,i,]Perylene",LB
+37143,0.0008723714,Benzo[k]Fluoranthene,LB
+37143,5.196154e-06,Mercury,LB
+37143,0.3892016,Phenanthrene,LB
+37143,0.225202,Fluorene,LB
+37143,0.01771149,Methane,TON
+37143,1.490887,Carbon Monoxide,TON
+37143,0.001305642,Nitrous Oxide,TON
+37133,0.006344294,"Dibenzo[a,h]Anthracene",LB
+37133,0.05494392,Arsenic,LB
+37133,35.7731,Naphthalene,LB
+37133,0.008485981,Sulfate Portion of PM2.5-PRI,TON
+37133,29.83476,Volatile Organic Compounds,TON
+37133,950.6216,Ethyl Benzene,LB
+37133,13.577608,Acrolein,LB
+37133,7213.36,Toluene,LB
+37133,0.5898204,Anthracene,LB
+37131,0.000449377,"Benzo[g,h,i,]Perylene",LB
+37131,0.004436822,Ammonia,TON
+37095,0.06584576,Hexane,LB
+37095,0.1245004,Propionaldehyde,LB
+37095,0.217149,Xylenes (Mixed Isomers),LB
+37095,0.001376854,Benz[a]Anthracene,LB
+37095,0.01276645,Fluorene,LB
+37095,0.0004507101,PM10-Primary from certain diesel engines,TON
+37093,0.0009375472,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.00368153,Benzo[b]Fluoranthene,LB
+37093,0.458693,Fluoranthene,LB
+37093,0.0045078,Arsenic,LB
+37093,44.18454,Acetaldehyde,LB
+37093,615.7397,Carbon Dioxide,TON
+37093,0.09691812,PM25-Primary from certain diesel engines,TON
+37093,0.06933894,Elemental Carbon portion of PM2.5-PRI,TON
+37089,526.222,Benzene,LB
+37073,0.414587,Nitrogen Oxides,TON
+37073,0.2910956,Toluene,LB
+37073,0.00017584904,"Benzo[g,h,i,]Perylene",LB
+37073,0.000218738,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.0008586496,Benzo[b]Fluoranthene,LB
+37073,1.3293548e-06,Mercury,LB
+37073,0.000717174,Nickel,LB
+37073,0.04850482,Phenanthrene,LB
+37001,0.2481202,Acrolein,LB
+37001,0.00631636,Benzo[b]Fluoranthene,LB
+37001,0.0582742,Acenaphthylene,LB
+37001,0.0010317836,Nickel,LB
+37001,0.007484461,Nitrous Oxide,TON
+37055,0.212913,Styrene,LB
+37055,1.7742412,Propionaldehyde,LB
+37055,15.213122,Formaldehyde,LB
+37033,0.00011325374,Manganese,LB
+37033,0.09287918,Carbon Monoxide,TON
+37033,0.0003849608,"Benzo[g,h,i,]Perylene",LB
+37033,0.0004305798,Acenaphthylene,LB
+37033,0.0002574066,Sulfur Dioxide,TON
+37011,0.0936162,Styrene,LB
+37011,0.3945954,"1,3-Butadiene",LB
+37011,0.7801426,Propionaldehyde,LB
+37011,1.672486e-05,Chromium (VI),LB
+37011,0.00280793,Benzo[b]Fluoranthene,LB
+37011,0.00280793,Benzo[k]Fluoranthene,LB
+37011,6.658128,Formaldehyde,LB
+37011,0.003040576,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.01697316,PM10 Primary (Filt + Cond),TON
+37011,0.01223044,Nitrogen Oxides,TON
+37011,0.01105911,Volatile Organic Compounds,TON
+37011,1.436014e-06,Chromium (VI),LB
+37011,0.0002806614,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,1.4395582e-05,Mercury,LB
+37173,0.0002952298,Anthracene,LB
+37173,0.0018344,"Benzo[g,h,i,]Perylene",LB
+37173,0.0007828624,Manganese,LB
+37173,0.0018056908,Phenanthrene,LB
+37173,0.002825466,Methane,TON
+37173,0.0001761646,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.6245952,Ethyl Benzene,LB
+37155,1.007446,Carbon Monoxide,TON
+37155,0.003787137,Sulfur Dioxide,TON
+37155,0.0011714376,Pyrene,LB
+37155,1.161183,Xylenes (Mixed Isomers),LB
+37155,0.004610848,"Benzo[g,h,i,]Perylene",LB
+37155,0.0008857434,Benzo[b]Fluoranthene,LB
+37155,0.000658707,Chrysene,LB
+37155,0.001708082,Benzo[a]Pyrene,LB
+37149,2.546172,"2,2,4-Trimethylpentane",LB
+37149,0.06502103,Volatile Organic Compounds,TON
+37119,19.140576,Hexane,LB
+37119,0.02176316,Benzo[b]Fluoranthene,LB
+37119,0.016206082,Chrysene,LB
+37119,0.0009756776,"Dibenzo[a,h]Anthracene",LB
+37119,0.7250678,Naphthalene,LB
+37087,0.00382029,Acenaphthylene,LB
+37087,0.0010496174,Benz[a]Anthracene,LB
+37087,2.079244,Toluene,LB
+37087,0.08029944,Nitrogen Oxides,TON
+37087,0.001381233,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,14187.59,Carbon Dioxide,TON
+37007,0.2112836,Ammonia,TON
+37007,0.1199795,Sulfur Dioxide,TON
+37007,0.05067448,Nickel,LB
+37007,0.03849512,Arsenic,LB
+37007,12.369758,Propionaldehyde,LB
+37007,0.00013939966,Chromium (VI),LB
+37007,0.0060615,Benzo[k]Fluoranthene,LB
+37177,4.262748,Toluene,LB
+37177,0.03061142,Benzo[a]Pyrene,LB
+37177,5.96135,Naphthalene,LB
+37177,0.1630317,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.3039294,Volatile Organic Compounds,TON
+37175,0.8841074,Acrolein,LB
+37175,0.03391898,"Benzo[g,h,i,]Perylene",LB
+37175,0.06510066,Fluoranthene,LB
+37175,39.90666,"2,2,4-Trimethylpentane",LB
+37175,14.975518,Acetaldehyde,LB
+37175,0.03992831,Methane,TON
+37175,4.21409e-05,Nitrate portion of PM2.5-PRI,TON
+37175,1.360646,Nitrogen Oxides,TON
+37175,0.005941581,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.009607576,Sulfur Dioxide,TON
+37163,4.802105,Carbon Monoxide,TON
+37163,0.2869336,PM10-Primary from certain diesel engines,TON
+37163,9.869215,Nitrogen Oxides,TON
+37163,0.009484305,Sulfur Dioxide,TON
+37163,2.738268,"2,2,4-Trimethylpentane",LB
+37163,0.02485106,Manganese,LB
+37163,0.00350644,Arsenic,LB
+37161,0.4929908,Propionaldehyde,LB
+37161,0.06936208,Fluoranthene,LB
+37161,0.008731601,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.001680742,Ammonia,TON
+37159,0.0936742,Nickel,LB
+37159,0.145809,Ammonia,TON
+37159,20.2519,Ethyl Benzene,LB
+37159,2.792772,Fluoranthene,LB
+37159,0.2554758,Chrysene,LB
+37159,0.51341,Benz[a]Anthracene,LB
+37159,0.00015640976,Mercury,LB
+37155,6.311494,Fluoranthene,LB
+37155,1.1656588,Chrysene,LB
+37155,786.756,Formaldehyde,LB
+37155,75.35682,Benzene,LB
+37155,0.01712287,Nitrous Oxide,TON
+37155,85.65175,Nitrogen Oxides,TON
+37159,4.945496,Fluorene,LB
+37159,1.35407,Nitrous Oxide,TON
+37159,0.5386441,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.7448641,Sulfur Dioxide,TON
+37159,41.38713,Volatile Organic Compounds,TON
+37159,0.931345,Benzo[a]Pyrene,LB
+37159,0.0213186,"Dibenzo[a,h]Anthracene",LB
+37159,49.02,Propionaldehyde,LB
+37159,2.576014,Nickel,LB
+37159,5.143807,Organic Carbon portion of PM2.5-PRI,TON
+37159,311.0946,Volatile Organic Compounds,TON
+37153,47.74658,Hexane,LB
+37153,0.02165162,Benzo[k]Fluoranthene,LB
+37153,0.005070672,Arsenic,LB
+37153,0.05230186,Acenaphthene,LB
+37153,1044.912,Carbon Dioxide,TON
+37153,0.03545053,Nitrous Oxide,TON
+37153,0.0001079902,Nitrate portion of PM2.5-PRI,TON
+37153,2.519213,Nitrogen Oxides,TON
+37153,0.001174368,Sulfate Portion of PM2.5-PRI,TON
+37147,1974.749,Carbon Dioxide,TON
+37147,0.009639128,Nitrous Oxide,TON
+37147,0.04015818,Ammonia,TON
+37147,9.501816,Ethyl Benzene,LB
+37147,5.250472e-05,Chromium (VI),LB
+37147,2.213136,Fluoranthene,LB
+37139,5.606142,"Benzo[g,h,i,]Perylene",LB
+37139,7.594584,Acenaphthene,LB
+37139,394.227,Naphthalene,LB
+37139,82064.41,Carbon Dioxide,TON
+37137,0.3889352,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,4.488062,Acenaphthylene,LB
+37137,0.283042,Manganese,LB
+37137,57.14908,Benzene,LB
+37133,2.355718,Phenanthrene,LB
+37133,3000.561,Carbon Dioxide,TON
+37133,0.001532608,Nitrate portion of PM2.5-PRI,TON
+37133,0.07254841,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,1.321122,Volatile Organic Compounds,TON
+37133,15.21533,Toluene,LB
+37133,15.030282,Xylenes (Mixed Isomers),LB
+37133,0.006427718,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,227.145,Formaldehyde,LB
+37131,0.09908244,Benz[a]Anthracene,LB
+37131,87.16315,Carbon Monoxide,TON
+37131,0.0431181,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.004155902,Sulfate Portion of PM2.5-PRI,TON
+37131,5.528954,Volatile Organic Compounds,TON
+37123,0.0009686702,Manganese,LB
+37123,1.0137012e-06,Nickel,LB
+37123,9.830416e-05,Anthracene,LB
+37123,0.1371252,Xylenes (Mixed Isomers),LB
+37117,0.13344894,Benzo[a]Pyrene,LB
+37117,0.4496068,Benz[a]Anthracene,LB
+37117,0.14301336,Manganese,LB
+37117,0.7204772,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.13215548,Benz[a]Anthracene,LB
+37111,2.414491,Nitrogen Oxides,TON
+37111,0.5308246,Pyrene,LB
+37111,0.011104002,Pyrene,LB
+37111,13.590162,Xylenes (Mixed Isomers),LB
+37111,4.717088e-06,Chromium (VI),LB
+37111,0.007694954,Benzo[a]Pyrene,LB
+37111,0.004377162,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.1071781,Volatile Organic Compounds,TON
+37119,0.003981404,Chromium (VI),LB
+37119,0.4169734,"Benzo[g,h,i,]Perylene",LB
+37119,19971.224,Formaldehyde,LB
+37119,452492.2,Carbon Dioxide,TON
+37119,6.741149,Ammonia,TON
+37119,7.804253,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,62.8115,Anthracene,LB
+37119,124.02898,Pyrene,LB
+37119,108.86928,Fluoranthene,LB
+37119,330.6568,Acenaphthylene,LB
+37119,3762.772,Naphthalene,LB
+37119,1947.517,Nitrogen Oxides,TON
+37119,33.99412,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,5.244466e-06,Benzo[k]Fluoranthene,LB
+37019,5.005784e-06,Benz[a]Anthracene,LB
+37017,0.9772086,Fluorene,LB
+37017,25.04508,Naphthalene,LB
+37017,14.05562,Nitrogen Oxides,TON
+37017,0.05025546,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,9.702852,Propionaldehyde,LB
+37017,0.0003475302,Chromium (VI),LB
+37017,0.4031686,"Benzo[g,h,i,]Perylene",LB
+37195,480.5926,Acetaldehyde,LB
+37195,121.4121,Naphthalene,LB
+37195,1.063439,PM10-Primary from certain diesel engines,TON
+37195,0.9783444,PM25-Primary from certain diesel engines,TON
+37195,0.0409188,Sulfate Portion of PM2.5-PRI,TON
+37195,0.03070964,Benzo[b]Fluoranthene,LB
+37195,0.004274956,Benzo[k]Fluoranthene,LB
+37195,36.26762,"1,3-Butadiene",LB
+37195,3.038364,Anthracene,LB
+37195,0.8070732,Benz[a]Anthracene,LB
+37187,0.4397952,Anthracene,LB
+37187,0.7651356,Acenaphthylene,LB
+37187,0.06336,Benzo[a]Pyrene,LB
+37187,19.77573,Benzene,LB
+37187,0.06147706,Manganese,LB
+37187,1.043823,Volatile Organic Compounds,TON
+37167,148.72806,Toluene,LB
+37167,11.107646,Fluoranthene,LB
+37167,2392.768,Formaldehyde,LB
+37167,57.8182,"2,2,4-Trimethylpentane",LB
+37167,0.5206847,Methane,TON
+37167,0.1063226,Sulfur Dioxide,TON
+37161,10.531826,Benzene,LB
+37161,0.0211957,Manganese,LB
+37161,0.5831658,Fluorene,LB
+37161,0.0628403,PM10 Primary (Filt + Cond),TON
+37161,0.002652245,Sulfate Portion of PM2.5-PRI,TON
+37161,8.856252,Toluene,LB
+37161,0.52195,Pyrene,LB
+37161,0.4310248,Fluoranthene,LB
+37159,35080.82,Toluene,LB
+37159,6205.806,Hexane,LB
+37157,6.559512,Propionaldehyde,LB
+37157,0.6602744,Pyrene,LB
+37157,723.9982,"2,2,4-Trimethylpentane",LB
+37157,2546.281,Carbon Dioxide,TON
+37157,5.13114,Nitrogen Oxides,TON
+37157,0.2395651,PM10 Primary (Filt + Cond),TON
+37135,4.572526,Hexane,LB
+37135,0.5766536,Anthracene,LB
+37135,0.02626578,Nickel,LB
+37135,0.4478065,PM10-Primary from certain diesel engines,TON
+37135,0.6825995,PM10 Primary (Filt + Cond),TON
+37135,0.4421795,PM2.5 Primary (Filt + Cond),TON
+37137,0.0007902192,Sulfate Portion of PM2.5-PRI,TON
+37137,0.5034736,Acrolein,LB
+37137,0.005024356,Benzo[a]Pyrene,LB
+37137,0.1757486,"2,2,4-Trimethylpentane",LB
+37137,2.282976e-06,Mercury,LB
+37131,0.01252868,Ethyl Benzene,LB
+37131,34.8118,Carbon Dioxide,TON
+37131,0.004072645,Nitrous Oxide,TON
+37131,4.595196e-07,Nitrate portion of PM2.5-PRI,TON
+37131,0.001332605,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,2.363635e-05,Sulfate Portion of PM2.5-PRI,TON
+37129,0.09134903,PM2.5 Primary (Filt + Cond),TON
+37129,0.00266758,Sulfate Portion of PM2.5-PRI,TON
+37129,3.182399,Volatile Organic Compounds,TON
+37129,0.30556,Pyrene,LB
+37129,1.0052318,Phenanthrene,LB
+37129,9.63959,Naphthalene,LB
+37129,3252.857,Carbon Dioxide,TON
+37123,21.96424,Acrolein,LB
+37123,0.529296,Benz[a]Anthracene,LB
+37123,123.07608,Acetaldehyde,LB
+37123,10510.68,Carbon Dioxide,TON
+37123,1.352536,PM10-Primary from certain diesel engines,TON
+37123,0.01009881,Nitrous Oxide,TON
+37123,1.702471,PM10 Primary (Filt + Cond),TON
+37123,0.1082328,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,182.32316,Formaldehyde,LB
+37117,0.8610274,PM25-Primary from certain diesel engines,TON
+37123,24.60054,Volatile Organic Compounds,TON
+37105,11.50861,PM10 Primary (Filt + Cond),TON
+37105,103.3497,Volatile Organic Compounds,TON
+37105,2.794616,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,21.743,Acenaphthylene,LB
+37105,1379.216,Formaldehyde,LB
+37105,0.06415344,"Dibenzo[a,h]Anthracene",LB
+37105,5105.38,Benzene,LB
+37105,247.5476,Naphthalene,LB
+37103,0.06018064,Manganese,LB
+37103,192.54314,Acetaldehyde,LB
+37103,3062.887,Carbon Dioxide,TON
+37103,0.0007577492,Nitrate portion of PM2.5-PRI,TON
+37103,0.02836121,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,1.957968e-06,Sulfur Dioxide,TON
+37095,0.000494862,Acrolein,LB
+37095,4.20975e-05,Pyrene,LB
+37095,1.373486e-09,Chromium (VI),LB
+37095,6.22165e-06,Chrysene,LB
+37093,0.3091796,"1,3-Butadiene",LB
+37093,0.04978938,Propionaldehyde,LB
+37089,22.78362,Ethyl Benzene,LB
+37087,2.260954,"1,3-Butadiene",LB
+37087,5.931914,Xylenes (Mixed Isomers),LB
+37087,0.11595832,Chrysene,LB
+37087,1.9937672,"2,2,4-Trimethylpentane",LB
+37083,19.76096,Propionaldehyde,LB
+37083,3.801528,Pyrene,LB
+37083,0.08151318,Benzo[b]Fluoranthene,LB
+37083,2.661578,Fluorene,LB
+37083,0.3850149,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.169977,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,2.134226,Volatile Organic Compounds,TON
+37083,20.51338,Acetaldehyde,LB
+37083,0.13410822,Fluorene,LB
+37083,0.07629309,PM2.5 Primary (Filt + Cond),TON
+37085,7.324358e-05,Pyrene,LB
+37085,0.00010619862,"Benzo[g,h,i,]Perylene",LB
+37085,1.9542832e-05,Chrysene,LB
+37085,3.95547e-05,Benzo[a]Pyrene,LB
+37085,0.01353409,Carbon Monoxide,TON
+37085,4.524744e-05,PM2.5 Primary (Filt + Cond),TON
+37075,2.654118,Toluene,LB
+37075,0.00434357,Manganese,LB
+37075,236.6439,Carbon Dioxide,TON
+37075,0.0006973159,Nitrous Oxide,TON
+37075,0.7423813,Nitrogen Oxides,TON
+37075,0.001238618,Sulfate Portion of PM2.5-PRI,TON
+37075,0.218213,Volatile Organic Compounds,TON
+37075,0.03261754,Fluoranthene,LB
+37075,0.000763382,Arsenic,LB
+37075,3.941688,Acetaldehyde,LB
+37075,0.001221269,PM25-Primary from certain diesel engines,TON
+37075,0.04919371,Volatile Organic Compounds,TON
+37069,0.00772042,"Dibenzo[a,h]Anthracene",LB
+37069,0.6118554,Benz[a]Anthracene,LB
+37069,0.7599044,Acenaphthene,LB
+37069,2.94867,Phenanthrene,LB
+37069,0.6312868,Elemental Carbon portion of PM2.5-PRI,TON
+37069,1.344215,Volatile Organic Compounds,TON
+37067,240.9822,Hexane,LB
+37053,0.0600158,Phenanthrene,LB
+37053,5.966745e-05,Nitrate portion of PM2.5-PRI,TON
+37053,0.001971005,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.16457118,"1,3-Butadiene",LB
+37053,0.0494136,Pyrene,LB
+37053,0.00016771916,Arsenic,LB
+37053,0.016720074,Acenaphthene,LB
+37153,0.02296459,Sulfur Dioxide,TON
+37153,3.768346,Ethyl Benzene,LB
+37153,0.006103266,Benzo[b]Fluoranthene,LB
+37153,0.010964488,Fluoranthene,LB
+37153,0.004766432,Chrysene,LB
+37153,0.005350322,Benz[a]Anthracene,LB
+37153,0.007683072,Arsenic,LB
+37153,0.343508,Naphthalene,LB
+37153,0.002705806,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.02812942,Acenaphthylene,LB
+37113,0.004419516,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.6257636,Acrolein,LB
+37113,1.4732922,Propionaldehyde,LB
+37083,4.225182,Ethyl Benzene,LB
+37083,0.04056684,"Benzo[g,h,i,]Perylene",LB
+37083,0.015241234,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.006093092,Nickel,LB
+37083,10.80076,Carbon Monoxide,TON
+37083,0.003303123,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.01155051,Nitrous Oxide,TON
+37083,0.4650391,Volatile Organic Compounds,TON
+37169,1.1110626,Styrene,LB
+37169,0.002902486,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.00358733,Sulfur Dioxide,TON
+37169,2.589794e-05,Chromium (VI),LB
+37169,89.67628,Formaldehyde,LB
+37169,0.003119682,Benzo[a]Pyrene,LB
+37157,6.504044,Xylenes (Mixed Isomers),LB
+37157,0.4711506,Acenaphthylene,LB
+37157,8.28253,Benzene,LB
+37157,0.04317602,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.01099011,Sulfur Dioxide,TON
+37145,290.976,Styrene,LB
+37145,26424.98,Xylenes (Mixed Isomers),LB
+37145,0.004637348,Chromium (VI),LB
+37145,3.192578,Benzo[a]Pyrene,LB
+37145,5.524311,Nitrous Oxide,TON
+37145,3.593575,PM2.5 Primary (Filt + Cond),TON
+37145,0.9512742,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.03234074,Benzo[a]Pyrene,LB
+37199,0.001316612,"Dibenzo[a,h]Anthracene",LB
+37199,5.018584,Benzene,LB
+37199,0.0012932184,Arsenic,LB
+37199,0.14853632,Anthracene,LB
+37199,0.03674914,Chrysene,LB
+37199,44.95588,Formaldehyde,LB
+37199,0.016449304,Benzo[a]Pyrene,LB
+37193,2.794582,Toluene,LB
+37193,1.2388318,Hexane,LB
+37193,9.673174e-06,Chromium (VI),LB
+37193,0.0012091584,Nickel,LB
+37193,0.0226435,Manganese,LB
+37193,3.657624e-05,Mercury,LB
+37193,0.5771616,Acenaphthene,LB
+37193,3.460114,Nitrogen Oxides,TON
+37193,5.824302,Ethyl Benzene,LB
+37193,0.4807424,Anthracene,LB
+37193,11.68071,Xylenes (Mixed Isomers),LB
+37193,4.244448e-05,Chromium (VI),LB
+37193,20.1154,Ethyl Benzene,LB
+37193,0.5931818,Styrene,LB
+37193,32.17998,"2,2,4-Trimethylpentane",LB
+37193,0.00826902,Benz[a]Anthracene,LB
+37193,9.893675,Carbon Monoxide,TON
+37193,3.665994e-05,Nitrate portion of PM2.5-PRI,TON
+37193,0.006710324,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.003580559,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.8134754,Formaldehyde,LB
+37185,0.00139888,Benzo[a]Pyrene,LB
+37185,0.00014386218,Manganese,LB
+37185,0.013796448,Phenanthrene,LB
+37185,8.830022,Toluene,LB
+37185,1.9238576,Hexane,LB
+37185,0.002180702,Anthracene,LB
+37185,0.00428382,Pyrene,LB
+37185,0.0002960769,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.0009023526,Nitrous Oxide,TON
+37189,0.889539,Benz[a]Anthracene,LB
+37189,0.12620386,Manganese,LB
+37189,20.08462,Xylenes (Mixed Isomers),LB
+37189,7.9485e-05,Chromium (VI),LB
+37189,0.02084614,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,2.723326,Fluoranthene,LB
+37189,0.01121538,Benzo[k]Fluoranthene,LB
+37189,0.2745838,Benzo[a]Pyrene,LB
+37189,0.004740845,Nitrate portion of PM2.5-PRI,TON
+37189,0.03247921,Sulfate Portion of PM2.5-PRI,TON
+37181,1.9071478,Benzo[b]Fluoranthene,LB
+37181,1.773717,Chrysene,LB
+37181,1622.9494,Formaldehyde,LB
+37181,0.0611385,Mercury,LB
+37181,0.762313,Nickel,LB
+37181,11.192656,Fluorene,LB
+37181,88277.42,Carbon Dioxide,TON
+37181,0.008865712,Nitrate portion of PM2.5-PRI,TON
+37181,1.006886,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,1.3767136,Hexane,LB
+37051,0.009425958,"Benzo[g,h,i,]Perylene",LB
+37051,0.0015590706,Benz[a]Anthracene,LB
+37051,3.729636,Benzene,LB
+37051,0.002525356,Fluorene,LB
+37051,0.006514152,PM2.5 Primary (Filt + Cond),TON
+37041,1.2156012,Ethyl Benzene,LB
+37041,1.8599404,Hexane,LB
+37031,0.691559,Hexane,LB
+37031,0.0028908,Manganese,LB
+37031,5.940396e-06,Nitrate portion of PM2.5-PRI,TON
+37031,0.003467956,Sulfur Dioxide,TON
+37031,10.428434,Xylenes (Mixed Isomers),LB
+37097,0.00350913,Benzo[b]Fluoranthene,LB
+37097,0.001807802,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.03255518,Ammonia,TON
+37097,0.2308446,Nitrogen Oxides,TON
+37097,0.004925048,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.009482338,Nickel,LB
+37089,0.014539364,Arsenic,LB
+37089,1419.15,Carbon Dioxide,TON
+37089,2.339724,Propionaldehyde,LB
+37089,19.371604,Formaldehyde,LB
+37089,0.010020516,Benz[a]Anthracene,LB
+37169,6.48534,"2,2,4-Trimethylpentane",LB
+37169,0.07534598,Manganese,LB
+37169,0.00012040482,Mercury,LB
+37169,0.02517462,Arsenic,LB
+37169,0.00010308546,Chromium (VI),LB
+37169,0.1821388,Methane,TON
+37169,26.10885,Nitrogen Oxides,TON
+37165,3.733772,"1,3-Butadiene",LB
+37165,0.684977,Propionaldehyde,LB
+37165,25.9089,"2,2,4-Trimethylpentane",LB
+37165,40.26058,Benzene,LB
+37165,0.00540545,Arsenic,LB
+37165,0.03703596,Acenaphthene,LB
+37165,0.02323485,Sulfur Dioxide,TON
+37165,0.001042151,Sulfate Portion of PM2.5-PRI,TON
+37163,0.3550414,Ethyl Benzene,LB
+37163,2.615556e-06,Chromium (VI),LB
+37163,0.000458918,"Benzo[g,h,i,]Perylene",LB
+37163,0.267981,"2,2,4-Trimethylpentane",LB
+37163,0.07481306,Fluorene,LB
+37163,0.004125831,Methane,TON
+37163,0.2229218,Carbon Monoxide,TON
+37155,51.95484,Benzene,LB
+37157,2.65199,Styrene,LB
+37157,6.019892,"1,3-Butadiene",LB
+37157,0.8363902,Fluoranthene,LB
+37157,0.00088595,"Dibenzo[a,h]Anthracene",LB
+37157,0.08443226,Methane,TON
+37157,1028.4928,Acetaldehyde,LB
+37157,0.02933286,Benz[a]Anthracene,LB
+37157,99.0184,Benzene,LB
+37157,0.09435494,Acenaphthene,LB
+37157,3.578972,Nitrogen Oxides,TON
+37157,1.871703,Volatile Organic Compounds,TON
+37147,1.0469928,Ethyl Benzene,LB
+37147,0.15435022,Acenaphthylene,LB
+37147,0.04448396,Chrysene,LB
+37147,0.08423833,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.01312265,Ammonia,TON
+37135,23.98934,Benzene,LB
+37135,7.26982,Carbon Monoxide,TON
+37135,0.672763,PM25-Primary from certain diesel engines,TON
+37135,3.639548,Styrene,LB
+37135,0.00833921,"Dibenzo[a,h]Anthracene",LB
+37119,14178.79,"1,3-Butadiene",LB
+37119,48.77358,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,1.2936002,Mercury,LB
+37119,34159.26,Acetaldehyde,LB
+37119,100.89998,Acenaphthene,LB
+37119,204.3834,Fluorene,LB
+37119,58.63094,Nitrous Oxide,TON
+37119,75.54031,PM2.5 Primary (Filt + Cond),TON
+37119,30.45007,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.0001186696,PM10 Primary (Filt + Cond),TON
+37117,1.660538e-06,Sulfate Portion of PM2.5-PRI,TON
+37117,0.382345,Toluene,LB
+37117,5.624192e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,3.845964e-05,Benzo[b]Fluoranthene,LB
+37117,0.03769308,Formaldehyde,LB
+37117,2.90577e-07,Mercury,LB
+37107,1.7181622,Propionaldehyde,LB
+37107,0.0011272628,Benzo[k]Fluoranthene,LB
+37107,0.1743583,Acenaphthylene,LB
+37107,0.09483053,PM10-Primary from certain diesel engines,TON
+37107,0.03112974,Elemental Carbon portion of PM2.5-PRI,TON
+37107,1.351996,Nitrogen Oxides,TON
+37107,0.004141053,Sulfate Portion of PM2.5-PRI,TON
+37097,0.16880956,Phenanthrene,LB
+37097,0.00973869,Nitrous Oxide,TON
+37097,0.01288404,Ammonia,TON
+37097,0.02228414,PM2.5 Primary (Filt + Cond),TON
+37097,0.008046077,Sulfur Dioxide,TON
+37085,0.0006520664,"Benzo[g,h,i,]Perylene",LB
+37085,0.003115172,Benzo[b]Fluoranthene,LB
+37085,0.11435974,Fluoranthene,LB
+37085,0.0005587966,Arsenic,LB
+37143,24.57774,Acrolein,LB
+37143,5.1443,Acenaphthylene,LB
+37143,1202.73,Benzene,LB
+37143,0.1687164,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.4181386,Sulfur Dioxide,TON
+37137,0.00535516,Styrene,LB
+37137,0.00019305312,Anthracene,LB
+37137,0.0003828634,Pyrene,LB
+37137,0.0001682613,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,2.75479e-06,Nickel,LB
+37137,0.1046028,Carbon Monoxide,TON
+37133,21.72532,Hexane,LB
+37133,2.305736,Anthracene,LB
+37133,6.455362,Pyrene,LB
+37133,867.114,Formaldehyde,LB
+37133,4.744026,Fluorene,LB
+37133,3.022325,PM25-Primary from certain diesel engines,TON
+37133,80.88969,Nitrogen Oxides,TON
+37127,0.03380326,Manganese,LB
+37127,0.0004948736,Mercury,LB
+37127,0.09284002,Acenaphthene,LB
+37127,0.06909184,Methane,TON
+37127,1984.74,Carbon Dioxide,TON
+37117,21.83906,Benzene,LB
+37117,0.00010664874,Mercury,LB
+37117,0.1513982,Methane,TON
+37117,7.346755,Carbon Monoxide,TON
+37117,0.984053,PM25-Primary from certain diesel engines,TON
+37115,0.0014205102,"Benzo[g,h,i,]Perylene",LB
+37115,7.14047e-06,Mercury,LB
+37115,0.006797534,Nickel,LB
+37115,0.0014929252,Arsenic,LB
+37115,22.99638,Acetaldehyde,LB
+37097,0.9294134,Ammonia,TON
+37097,0.01840763,Nitrate portion of PM2.5-PRI,TON
+37097,11.95007,PM10 Primary (Filt + Cond),TON
+37097,8.764341,Volatile Organic Compounds,TON
+37097,166.27468,Xylenes (Mixed Isomers),LB
+37097,1777.7188,Formaldehyde,LB
+37097,1.0277796,Benzo[a]Pyrene,LB
+37105,335.158,Ethyl Benzene,LB
+37105,11.037772,Propionaldehyde,LB
+37105,0.1695344,Benz[a]Anthracene,LB
+37105,0.11486594,Arsenic,LB
+37105,3.097676,Phenanthrene,LB
+37105,148.6986,Carbon Monoxide,TON
+37105,0.1044299,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.11885104,Styrene,LB
+37073,0.449612,Propionaldehyde,LB
+37073,0.0005536972,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.008507432,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.4988514,Ethyl Benzene,LB
+37073,0.3844442,Hexane,LB
+37073,0.05410972,Fluoranthene,LB
+37073,0.003247688,Manganese,LB
+37073,6.776368e-06,Mercury,LB
+37073,0.1201578,Phenanthrene,LB
+37073,0.08039703,Volatile Organic Compounds,TON
+37077,25.57706,Propionaldehyde,LB
+37077,0.017687808,"Benzo[g,h,i,]Perylene",LB
+37077,0.5457008,Chrysene,LB
+37077,0.2109643,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.1513713,Sulfate Portion of PM2.5-PRI,TON
+37053,0.0007365066,"Dibenzo[a,h]Anthracene",LB
+37053,0.0019081106,Arsenic,LB
+37053,0.004879007,Sulfur Dioxide,TON
+37053,0.2850908,Volatile Organic Compounds,TON
+37053,3.078014,Toluene,LB
+37053,0.0013368432,"Benzo[g,h,i,]Perylene",LB
+37061,15.65387,Anthracene,LB
+37061,0.01091223,Chromium (VI),LB
+37061,0.10939284,Mercury,LB
+37061,0.01829307,Nitrate portion of PM2.5-PRI,TON
+37061,302.9927,Volatile Organic Compounds,TON
+37049,0.11170694,Acenaphthene,LB
+37049,0.0554478,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.03779116,Benzo[b]Fluoranthene,LB
+37049,35.48652,Formaldehyde,LB
+37047,52.97552,Toluene,LB
+37047,0.2328882,Ammonia,TON
+37039,0.00012262644,Anthracene,LB
+37039,0.0005537634,Pyrene,LB
+37039,0.178341,Xylenes (Mixed Isomers),LB
+37039,46.09864,Formaldehyde,LB
+37039,0.0009119308,Phenanthrene,LB
+37039,0.0010344124,Naphthalene,LB
+37039,0.6095323,Carbon Monoxide,TON
+37039,0.0004630851,Elemental Carbon portion of PM2.5-PRI,TON
+37043,140.72714,"1,3-Butadiene",LB
+37043,4.08387,Acenaphthylene,LB
+37043,934.975,Benzene,LB
+37043,1.158404,Ammonia,TON
+37043,1.031387,PM10 Primary (Filt + Cond),TON
+37033,0.00013045518,Anthracene,LB
+37033,0.00010192022,Chrysene,LB
+37033,5.523894e-05,Benz[a]Anthracene,LB
+37033,0.3507142,Nitrogen Oxides,TON
+37033,5.114796e-05,Sulfate Portion of PM2.5-PRI,TON
+37033,0.14270052,Fluorene,LB
+37033,1.294571,Toluene,LB
+37033,1.0233592,Propionaldehyde,LB
+37033,0.03143722,Chrysene,LB
+37029,0.006686126,Arsenic,LB
+37029,0.0647709,Methane,TON
+37029,1250.635,Carbon Dioxide,TON
+37029,4.188181,Nitrogen Oxides,TON
+37027,107.21182,Hexane,LB
+37027,0.02369582,Benzo[k]Fluoranthene,LB
+37027,0.4826984,Acenaphthylene,LB
+37027,0.02754624,Benzo[a]Pyrene,LB
+37027,35.88552,Acetaldehyde,LB
+37027,0.09810779,Methane,TON
+37129,3501.12,Formaldehyde,LB
+37129,13090.3,"2,2,4-Trimethylpentane",LB
+37129,10.310592,Manganese,LB
+37129,67.46542,Phenanthrene,LB
+37129,0.02412989,Nitrate portion of PM2.5-PRI,TON
+37129,4.561092,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,1.6751098,Propionaldehyde,LB
+37021,0.308645,Pyrene,LB
+37021,1.8506768,Xylenes (Mixed Isomers),LB
+37021,0.1758299,Acenaphthylene,LB
+37021,0.007803304,Methane,TON
+37021,0.0003711247,Nitrate portion of PM2.5-PRI,TON
+37021,0.072533,PM2.5 Primary (Filt + Cond),TON
+37021,0.001698308,Sulfate Portion of PM2.5-PRI,TON
+37055,0.5488986,Methane,TON
+37055,138.6887,Carbon Dioxide,TON
+37055,0.0001121359,Sulfate Portion of PM2.5-PRI,TON
+37055,0.06996257,Volatile Organic Compounds,TON
+37055,4.869052e-08,Chromium (VI),LB
+37055,6.23874e-05,Benz[a]Anthracene,LB
+37151,20.14413,Methane,TON
+37139,0.507349,"Benzo[g,h,i,]Perylene",LB
+37139,192.94896,Formaldehyde,LB
+37139,221.725,Acetaldehyde,LB
+37101,0.6823418,Volatile Organic Compounds,TON
+37101,21.5584,Ethyl Benzene,LB
+37101,80.47218,Xylenes (Mixed Isomers),LB
+37101,0.0757597,"Benzo[g,h,i,]Perylene",LB
+37101,0.13740738,Acenaphthylene,LB
+37101,31.28098,"2,2,4-Trimethylpentane",LB
+37101,0.007736674,Manganese,LB
+37117,0.0003310692,Chromium (VI),LB
+37117,0.15129292,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,2.116682,Acenaphthylene,LB
+37117,0.15224666,Benzo[a]Pyrene,LB
+37117,9.344718,Propionaldehyde,LB
+37117,0.2325073,Nitrous Oxide,TON
+37189,0.017782616,Styrene,LB
+37189,0.06491118,Acrolein,LB
+37189,0.0012750572,Benzo[a]Pyrene,LB
+37189,5.11371e-05,Mercury,LB
+37189,0.000637634,Nickel,LB
+37189,7.428656,Acetaldehyde,LB
+37189,88.42937,Carbon Dioxide,TON
+37185,0.2077714,Anthracene,LB
+37185,0.14060276,Benz[a]Anthracene,LB
+37185,8.994586e-06,Mercury,LB
+37185,0.1916674,Acenaphthene,LB
+37169,0.03983934,Methane,TON
+37169,0.01464888,Ammonia,TON
+37169,0.0001547333,Nitrate portion of PM2.5-PRI,TON
+37169,2.389516,"1,3-Butadiene",LB
+37169,3.963774,Propionaldehyde,LB
+37169,78.21054,Formaldehyde,LB
+37169,0.0003040122,"Dibenzo[a,h]Anthracene",LB
+37169,0.008889556,Manganese,LB
+37169,1.5925106e-05,Mercury,LB
+37169,33.42024,Acetaldehyde,LB
+37127,0.0002090146,Chromium (VI),LB
+37127,0.1574595,Benz[a]Anthracene,LB
+37127,643.9896,Benzene,LB
+37127,0.03360126,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.02620737,Nitrous Oxide,TON
+37133,0.0003671106,Phenanthrene,LB
+37133,0.0003222368,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.005096949,PM2.5 Primary (Filt + Cond),TON
+37133,0.02114115,Volatile Organic Compounds,TON
+37133,0.002804596,"1,3-Butadiene",LB
+37133,0.00017885486,Acenaphthylene,LB
+37133,22.04942,Propionaldehyde,LB
+37133,1.100906,"Benzo[g,h,i,]Perylene",LB
+37133,0.3124688,Benzo[b]Fluoranthene,LB
+37133,835.1348,"2,2,4-Trimethylpentane",LB
+37133,0.012193514,Mercury,LB
+37133,1.325168,Ammonia,TON
+37133,0.001418451,Nitrate portion of PM2.5-PRI,TON
+37127,0.00502759,"Benzo[g,h,i,]Perylene",LB
+37127,0.00311418,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,1.8181416,Acenaphthylene,LB
+37127,0.2644808,Benz[a]Anthracene,LB
+37127,1.0816536,Acenaphthene,LB
+37127,0.1793258,Methane,TON
+37127,0.02593521,Sulfur Dioxide,TON
+37127,12.843942,Ethyl Benzene,LB
+37127,23.23878,Hexane,LB
+37127,0.03015566,Pyrene,LB
+37127,0.017450288,Acenaphthene,LB
+37127,0.03534746,Fluorene,LB
+37127,0.9069766,Naphthalene,LB
+37127,7.889363,Carbon Monoxide,TON
+37127,3.939624e-05,Nitrate portion of PM2.5-PRI,TON
+37127,0.007328272,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.00010895648,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.000394597,Fluoranthene,LB
+37127,7.928714e-05,Benz[a]Anthracene,LB
+37127,0.013996354,Naphthalene,LB
+37127,3.060074e-07,Nitrate portion of PM2.5-PRI,TON
+37127,0.005248694,Nitrogen Oxides,TON
+37127,0.0001740378,PM10 Primary (Filt + Cond),TON
+37127,0.1685543,Ethyl Benzene,LB
+37127,0.0360017,"1,3-Butadiene",LB
+37121,0.1334252,"1,3-Butadiene",LB
+37121,0.3208672,Toluene,LB
+37121,0.11080518,Hexane,LB
+37121,0.014576294,Anthracene,LB
+37121,0.005707526,Chrysene,LB
+37121,0.00976925,Benz[a]Anthracene,LB
+37121,0.013494986,Acenaphthene,LB
+37121,100.2499,Carbon Dioxide,TON
+37121,0.01190112,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.4340731,Nitrogen Oxides,TON
+37117,0.0003006304,Fluoranthene,LB
+37117,0.4510196,Methane,TON
+37117,0.6146192,Carbon Monoxide,TON
+37117,81.02235,Carbon Dioxide,TON
+37117,0.0201213,"1,3-Butadiene",LB
+37111,0.4931696,"1,3-Butadiene",LB
+37111,2.701624,Hexane,LB
+37111,2.224746e-07,Chromium (VI),LB
+37111,0.0052892,"Benzo[g,h,i,]Perylene",LB
+37111,0.00198724,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.0012112022,Chrysene,LB
+37111,0.019866964,Phenanthrene,LB
+37111,4.937595e-05,Sulfate Portion of PM2.5-PRI,TON
+37125,0.00347348,Benz[a]Anthracene,LB
+37125,0.0017033836,Manganese,LB
+37125,1.7945476e-05,Mercury,LB
+37125,0.001825666,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.01027801,PM10 Primary (Filt + Cond),TON
+37125,0.004139121,PM2.5 Primary (Filt + Cond),TON
+37125,0.318282,Acrolein,LB
+37125,0.003491238,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.003511176,Chrysene,LB
+37123,455.9922,"1,3-Butadiene",LB
+37123,5.063438,Pyrene,LB
+37123,884.6154,Formaldehyde,LB
+37107,0.2801954,Acenaphthylene,LB
+37107,3.196468,Naphthalene,LB
+37107,41.95594,Ethyl Benzene,LB
+37107,0.04679482,"Benzo[g,h,i,]Perylene",LB
+37107,0.009641919,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.0005477351,Sulfate Portion of PM2.5-PRI,TON
+37103,0.1070684,Xylenes (Mixed Isomers),LB
+37103,0.000260996,Acenaphthylene,LB
+37103,0.09536408,Benzene,LB
+37103,7.782008e-07,Nickel,LB
+37103,0.001133584,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.6315424,Acrolein,LB
+37091,0.002222856,Mercury,LB
+37091,0.7229948,Fluorene,LB
+37091,0.03406607,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,5.554918,Fluoranthene,LB
+37089,23.88452,"2,2,4-Trimethylpentane",LB
+37089,2.255536,Acenaphthene,LB
+37089,9.48118,Phenanthrene,LB
+37089,2.52246,Anthracene,LB
+37089,0.16691302,Benzo[b]Fluoranthene,LB
+37089,5.742434,PM10 Primary (Filt + Cond),TON
+37089,3.325418,PM2.5 Primary (Filt + Cond),TON
+37089,0.2285474,Sulfate Portion of PM2.5-PRI,TON
+37087,0.16313718,Benzo[b]Fluoranthene,LB
+37087,9.615476,Phenanthrene,LB
+37087,0.6538082,Methane,TON
+37087,0.03608168,Nitrous Oxide,TON
+37073,0.2888752,Anthracene,LB
+37073,0.9747744,Phenanthrene,LB
+37073,0.572116,Fluorene,LB
+37073,0.01805975,Methane,TON
+37073,0.01704594,Ammonia,TON
+37073,63.65908,Toluene,LB
+37073,0.003959864,Benz[a]Anthracene,LB
+37073,0.000706468,Nickel,LB
+37073,0.009123339,Ammonia,TON
+37073,0.002678333,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.004310209,Sulfur Dioxide,TON
+37067,1.7784754,Acenaphthene,LB
+37067,4784.847,Carbon Dioxide,TON
+37067,46.9036,Acrolein,LB
+37067,0.15726048,Chrysene,LB
+37067,0.13296454,Nickel,LB
+37059,2.665115,Volatile Organic Compounds,TON
+37059,14.335882,"1,3-Butadiene",LB
+37059,37.82454,Toluene,LB
+37059,24.03792,Propionaldehyde,LB
+37059,0.01201366,"Dibenzo[a,h]Anthracene",LB
+37059,0.2224464,Manganese,LB
+37059,0.09126878,Nickel,LB
+37059,0.3149789,Methane,TON
+37059,1.454059,Elemental Carbon portion of PM2.5-PRI,TON
+37059,3.15468,PM10 Primary (Filt + Cond),TON
+37057,4.583902e-05,Chromium (VI),LB
+37057,0.2735436,Benz[a]Anthracene,LB
+37057,21.03768,Benzene,LB
+37057,4.467816e-05,Mercury,LB
+37057,0.02358784,Nickel,LB
+37057,2.18426,Phenanthrene,LB
+37057,2928.309,Carbon Dioxide,TON
+37057,0.02515336,Sulfur Dioxide,TON
+37057,0.02059297,Sulfate Portion of PM2.5-PRI,TON
+37051,1.155451,Sulfur Dioxide,TON
+37051,0.498633,Benzo[b]Fluoranthene,LB
+37051,410.0734,Benzene,LB
+37051,7.673804,Methane,TON
+37051,100.8385,Carbon Monoxide,TON
+37051,13.58341,PM10-Primary from certain diesel engines,TON
+37051,2.037205,Ammonia,TON
+37051,0.03590099,Nitrate portion of PM2.5-PRI,TON
+37049,17.46764,Ethyl Benzene,LB
+37049,47.63298,Benzene,LB
+37049,3.354744,Fluorene,LB
+37049,0.3761715,Methane,TON
+37049,0.5115566,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.9376742,PM10 Primary (Filt + Cond),TON
+37039,0.7442346,PM2.5 Primary (Filt + Cond),TON
+37039,30.55132,Ethyl Benzene,LB
+37039,13.72242,Styrene,LB
+37039,0.018145148,Benzo[b]Fluoranthene,LB
+37039,22.35478,"2,2,4-Trimethylpentane",LB
+37039,0.1319442,Nickel,LB
+37039,0.0381156,Arsenic,LB
+37039,29.35386,Toluene,LB
+37031,0.002558906,"Dibenzo[a,h]Anthracene",LB
+37031,0.0881605,Benz[a]Anthracene,LB
+37031,0.1165189,PM2.5 Primary (Filt + Cond),TON
+37031,0.1115311,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.47639,Fluoranthene,LB
+37031,1.4913724,Acenaphthylene,LB
+37025,0.6823452,Anthracene,LB
+37025,0.03010002,Nickel,LB
+37085,8.981016,Ethyl Benzene,LB
+37085,3.606452,Styrene,LB
+37085,6.857846,Hexane,LB
+37085,1.3996164,Acenaphthylene,LB
+37085,0.03036216,Benzo[a]Pyrene,LB
+37085,7.053694,"2,2,4-Trimethylpentane",LB
+37085,24.98504,Benzene,LB
+37085,116.26046,Acetaldehyde,LB
+37085,0.1472219,Methane,TON
+37085,0.006741037,Nitrous Oxide,TON
+37085,0.0006056037,Nitrate portion of PM2.5-PRI,TON
+37085,0.04823401,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.02441763,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,67.73073,Volatile Organic Compounds,TON
+37075,0.0008553074,Nitrous Oxide,TON
+37075,0.00011896,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,1.212152,Ethyl Benzene,LB
+37075,0.2626144,"1,3-Butadiene",LB
+37075,5.576652e-08,Chromium (VI),LB
+37075,0.0017316984,"Benzo[g,h,i,]Perylene",LB
+37075,0.6291994,Acetaldehyde,LB
+37075,0.01039697,Phenanthrene,LB
+37075,0.6408371,Carbon Monoxide,TON
+37063,0.005315064,Benzo[k]Fluoranthene,LB
+37063,8.65541,"2,2,4-Trimethylpentane",LB
+37063,0.5059536,Benz[a]Anthracene,LB
+37063,150.2223,Acetaldehyde,LB
+37063,0.1938095,Organic Carbon portion of PM2.5-PRI,TON
+37063,1.33735,PM10 Primary (Filt + Cond),TON
+37059,0.3453598,Fluoranthene,LB
+37059,0.228977,Acenaphthylene,LB
+37059,0.01387059,Ammonia,TON
+37059,0.05044583,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.004614757,Sulfur Dioxide,TON
+37059,3.380204,Acrolein,LB
+37061,0.00013700212,Anthracene,LB
+37061,2.26463e-05,"Benzo[g,h,i,]Perylene",LB
+37061,0.0004750168,Acenaphthylene,LB
+37061,5.752676e-05,Benz[a]Anthracene,LB
+37061,5.36479,Acetaldehyde,LB
+37061,0.01168824,Nitrous Oxide,TON
+37061,0.01171897,PM10 Primary (Filt + Cond),TON
+37061,0.0004844493,Sulfur Dioxide,TON
+37055,1.526358e-07,Chromium (VI),LB
+37055,0.00275931,Acenaphthene,LB
+37055,0.003990791,Methane,TON
+37055,0.0005936788,Nitrous Oxide,TON
+37055,0.0009164642,PM2.5 Primary (Filt + Cond),TON
+37053,0.3123684,Hexane,LB
+37053,0.000327927,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,4.30592e-07,Mercury,LB
+37053,8.232602e-06,Arsenic,LB
+37053,0.002069698,Phenanthrene,LB
+37053,9.268702e-06,Sulfate Portion of PM2.5-PRI,TON
+37047,71.18512,Xylenes (Mixed Isomers),LB
+37039,1.628076e-06,Chromium (VI),LB
+37039,2.29278,Formaldehyde,LB
+37039,0.00717413,Acenaphthene,LB
+37033,0.002090818,Anthracene,LB
+37033,4.629492,Xylenes (Mixed Isomers),LB
+37033,0.003558416,Fluoranthene,LB
+37033,1.2832552,"2,2,4-Trimethylpentane",LB
+37033,0.0004640176,Manganese,LB
+37033,4.880346e-06,Mercury,LB
+37033,6.085366e-05,Nickel,LB
+37033,1.2650798,Ethyl Benzene,LB
+37033,0.3398896,"1,3-Butadiene",LB
+37033,6.403592,Toluene,LB
+37023,13.647034,Toluene,LB
+37023,5.004554e-05,Chromium (VI),LB
+37023,4.929226,"2,2,4-Trimethylpentane",LB
+37023,4.822342e-05,Mercury,LB
+37023,0.611408,Acenaphthene,LB
+37023,0.09005777,Methane,TON
+37023,1297.808,"1,3-Butadiene",LB
+37023,38.76194,Acenaphthylene,LB
+37023,0.11793822,"Dibenzo[a,h]Anthracene",LB
+37023,0.11537376,Mercury,LB
+37023,1.4386,Nickel,LB
+37173,0.363253,Arsenic,LB
+37173,27.80873,Volatile Organic Compounds,TON
+37173,0.5388588,Benzo[k]Fluoranthene,LB
+37173,0.5179862,Benz[a]Anthracene,LB
+37167,306.9454,Acrolein,LB
+37167,28.00732,Pyrene,LB
+37167,37885.4,Xylenes (Mixed Isomers),LB
+37167,0.00873343,Chromium (VI),LB
+37167,34.29616,Fluorene,LB
+37167,170959.9,Carbon Dioxide,TON
+37167,1.726926,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,1.6162112e-05,Mercury,LB
+37159,0.01743953,Ammonia,TON
+37159,0.0011316058,Benzo[k]Fluoranthene,LB
+37159,0.001123909,"Dibenzo[a,h]Anthracene",LB
+37159,1.116928,"2,2,4-Trimethylpentane",LB
+37159,0.01105015,Sulfate Portion of PM2.5-PRI,TON
+37155,0.2091946,Acrolein,LB
+37155,1.899605e-05,Mercury,LB
+37155,0.0002074532,Acenaphthene,LB
+37155,0.4069883,Nitrogen Oxides,TON
+37149,39.69818,"1,3-Butadiene",LB
+37149,6.325098,Pyrene,LB
+37149,0.0002829796,Mercury,LB
+37149,10.415276,Phenanthrene,LB
+37149,8232.029,Carbon Dioxide,TON
+37149,1.182413,PM10-Primary from certain diesel engines,TON
+37149,0.03433378,Sulfate Portion of PM2.5-PRI,TON
+37161,1.2010678,Fluoranthene,LB
+37161,159.9223,Formaldehyde,LB
+37161,0.11479226,Benzo[a]Pyrene,LB
+37161,2.211826e-05,Mercury,LB
+37161,0.06854716,Methane,TON
+37161,0.380494,PM25-Primary from certain diesel engines,TON
+37161,6.243456,Nitrogen Oxides,TON
+37161,0.1608753,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.5202711,PM10 Primary (Filt + Cond),TON
+37161,0.3942195,PM2.5 Primary (Filt + Cond),TON
+37137,0.02436096,Styrene,LB
+37137,0.139052,"1,3-Butadiene",LB
+37137,6.23344e-07,Chromium (VI),LB
+37137,6.248972e-06,Mercury,LB
+37137,0.0004402519,Sulfur Dioxide,TON
+37131,99.69502,Xylenes (Mixed Isomers),LB
+37131,13.844616,Formaldehyde,LB
+37131,906.2741,Carbon Dioxide,TON
+37131,0.01986573,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.001144122,Sulfate Portion of PM2.5-PRI,TON
+37117,0.05241368,Benzo[a]Pyrene,LB
+37117,120.15988,Ethyl Benzene,LB
+37117,0.13927342,"Benzo[g,h,i,]Perylene",LB
+37117,0.05232596,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.0001504016,Nitrate portion of PM2.5-PRI,TON
+37107,3.103986,Anthracene,LB
+37107,6.234492,Pyrene,LB
+37107,61.69,Xylenes (Mixed Isomers),LB
+37107,1058.5748,Formaldehyde,LB
+37107,0.11978352,Benzo[a]Pyrene,LB
+37107,0.004906152,"Dibenzo[a,h]Anthracene",LB
+37107,0.13744776,Manganese,LB
+37107,0.0504739,Sulfur Dioxide,TON
+37107,0.007987762,Fluoranthene,LB
+37107,1.739155,Formaldehyde,LB
+37107,0.00227189,Manganese,LB
+37105,38.55797,Volatile Organic Compounds,TON
+37099,1.0635852,Acenaphthylene,LB
+37099,5.02451e-05,Mercury,LB
+37099,4.271579,Nitrogen Oxides,TON
+37099,0.3011342,PM10 Primary (Filt + Cond),TON
+37099,0.01209497,Sulfur Dioxide,TON
+37099,0.002983982,"Benzo[g,h,i,]Perylene",LB
+37093,0.0005374176,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.007071234,Benzo[a]Pyrene,LB
+37093,0.0002904278,"Dibenzo[a,h]Anthracene",LB
+37093,2.838576e-06,Mercury,LB
+37093,0.975596,Naphthalene,LB
+37093,0.04987092,Volatile Organic Compounds,TON
+37087,7723.852,Acetaldehyde,LB
+37087,6.332242,Organic Carbon portion of PM2.5-PRI,TON
+37087,6.170426,Sulfur Dioxide,TON
+37087,0.3444379,Sulfate Portion of PM2.5-PRI,TON
+37087,39.2519,Pyrene,LB
+37087,0.01540935,Chromium (VI),LB
+37087,30.37624,"Benzo[g,h,i,]Perylene",LB
+37087,15991.188,"2,2,4-Trimethylpentane",LB
+37085,1.9305158,Acrolein,LB
+37085,356.9118,Toluene,LB
+37085,76.75824,"2,2,4-Trimethylpentane",LB
+37085,0.01031077,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.02131722,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.04016164,Sulfur Dioxide,TON
+37085,1.79103,Volatile Organic Compounds,TON
+37081,0.5901128,Acrolein,LB
+37081,132.16714,Toluene,LB
+37081,0.17071808,Acenaphthylene,LB
+37081,2.127444e-05,Mercury,LB
+37081,0.000406744,Arsenic,LB
+37081,0.00400968,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.001910833,Sulfur Dioxide,TON
+37075,0.04955148,Benzene,LB
+37075,0.000575284,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.003382391,PM10 Primary (Filt + Cond),TON
+37075,0.01593994,Volatile Organic Compounds,TON
+37075,0.0248401,Ethyl Benzene,LB
+37075,0.05438336,Toluene,LB
+37075,0.006908594,Pyrene,LB
+37075,0.003910538,Acenaphthylene,LB
+37075,0.019385566,"2,2,4-Trimethylpentane",LB
+37075,0.002326544,Acenaphthene,LB
+37075,0.0810248,Naphthalene,LB
+37075,0.001729809,PM10-Primary from certain diesel engines,TON
+37075,0.00159143,PM25-Primary from certain diesel engines,TON
+37075,0.0006218415,Elemental Carbon portion of PM2.5-PRI,TON
+37047,11.020414,Xylenes (Mixed Isomers),LB
+37049,0.001570477,Manganese,LB
+37049,0.0006707378,Nickel,LB
+37049,0.0010858084,Fluorene,LB
+37049,0.02797394,Naphthalene,LB
+37049,4.446663e-06,Nitrate portion of PM2.5-PRI,TON
+37049,0.5576936,Hexane,LB
+37049,0.002763065,Sulfur Dioxide,TON
+37035,2.012184,"1,3-Butadiene",LB
+37035,0.10099514,"Benzo[g,h,i,]Perylene",LB
+37035,217.3878,Acetaldehyde,LB
+37035,0.017580868,Acenaphthene,LB
+37035,0.0001368454,Nitrate portion of PM2.5-PRI,TON
+37035,0.02423236,Organic Carbon portion of PM2.5-PRI,TON
+37035,1.161313,Volatile Organic Compounds,TON
+37115,0.4139718,Formaldehyde,LB
+37115,1.0882544e-05,"Dibenzo[a,h]Anthracene",LB
+37115,3.110332,Acetaldehyde,LB
+37115,31.71649,Carbon Dioxide,TON
+37115,1.674803e-06,Nitrate portion of PM2.5-PRI,TON
+37115,0.02037474,Nitrogen Oxides,TON
+37115,0.15408222,Ethyl Benzene,LB
+37115,0.00756832,Styrene,LB
+37115,0.06307004,Propionaldehyde,LB
+37169,0.16363438,"1,3-Butadiene",LB
+37169,0.4772784,Benzene,LB
+37169,43.67366,Carbon Dioxide,TON
+37169,0.004705477,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.0003786257,Sulfur Dioxide,TON
+37167,7.800506,Toluene,LB
+37167,0.3761254,Fluoranthene,LB
+37167,0.821161,Phenanthrene,LB
+37021,0.006142782,"1,3-Butadiene",LB
+37021,0.00018392166,Pyrene,LB
+37021,0.08110888,Xylenes (Mixed Isomers),LB
+37021,0.00032008,Phenanthrene,LB
+37021,0.00169232,PM2.5 Primary (Filt + Cond),TON
+37011,7.775074,Propionaldehyde,LB
+37011,13.229228,Xylenes (Mixed Isomers),LB
+37011,0.0251272,Benzo[b]Fluoranthene,LB
+37011,0.9776186,Fluorene,LB
+37011,17.049508,Naphthalene,LB
+37011,0.4088058,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.07544835,Ammonia,TON
+37011,0.6313118,PM2.5 Primary (Filt + Cond),TON
+37009,0.008835537,PM10 Primary (Filt + Cond),TON
+37005,0.4037866,Propionaldehyde,LB
+37005,3.575163e-07,Nitrate portion of PM2.5-PRI,TON
+37005,0.01600219,Volatile Organic Compounds,TON
+37069,1.7795184,Ethyl Benzene,LB
+37069,5.327666,"2,2,4-Trimethylpentane",LB
+37155,1.6770456,"1,3-Butadiene",LB
+37155,3.983238,Propionaldehyde,LB
+37155,0.11211614,"Benzo[g,h,i,]Perylene",LB
+37155,0.018774286,Benz[a]Anthracene,LB
+37155,0.02814046,Arsenic,LB
+37155,0.0001406997,Nitrate portion of PM2.5-PRI,TON
+37155,2.563606,Nitrogen Oxides,TON
+37155,0.1611183,PM10 Primary (Filt + Cond),TON
+37135,0.002101626,Fluorene,LB
+37135,0.1330836,Nitrogen Oxides,TON
+37135,0.0721063,Volatile Organic Compounds,TON
+37135,0.0019278646,Fluoranthene,LB
+37127,3.17033,Benzene,LB
+37121,0.001229174,Ammonia,TON
+37007,4.78358,Xylenes (Mixed Isomers),LB
+37007,438.3001,Carbon Dioxide,TON
+37007,0.2026686,PM10-Primary from certain diesel engines,TON
+37007,0.07888804,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.003832979,Sulfur Dioxide,TON
+37189,2640.448,"2,2,4-Trimethylpentane",LB
+37189,3399.198,Benzene,LB
+37189,1.2835018,Manganese,LB
+37189,675.0042,Carbon Monoxide,TON
+37189,4.632573,Ammonia,TON
+37189,12294.344,Toluene,LB
+37189,2983.262,Hexane,LB
+37189,61.2201,Volatile Organic Compounds,TON
+37179,12.385668,Ethyl Benzene,LB
+37179,0.6131456,Styrene,LB
+37179,51.06518,Toluene,LB
+37179,0.0411878,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.0359644,Fluoranthene,LB
+37179,1.1051866,Naphthalene,LB
+37179,10.482132,Styrene,LB
+37179,819.0766,Formaldehyde,LB
+37179,7.000518,Phenanthrene,LB
+37179,4.292894,Fluorene,LB
+37179,6362.837,Carbon Dioxide,TON
+37179,0.02318671,Nitrous Oxide,TON
+37087,0.006293659,PM2.5 Primary (Filt + Cond),TON
+37075,678.4098,Toluene,LB
+37075,0.056125,Benzo[b]Fluoranthene,LB
+37075,0.0567286,Chrysene,LB
+37075,0.2178706,Acenaphthene,LB
+37075,43.04567,Carbon Monoxide,TON
+37075,0.0002137454,Nitrate portion of PM2.5-PRI,TON
+37075,5.601076,Nitrogen Oxides,TON
+37075,0.0207665,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.001890332,Sulfate Portion of PM2.5-PRI,TON
+37069,5.84431e-08,Arsenic,LB
+37069,3.630561e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37069,4.334009e-09,Nitrate portion of PM2.5-PRI,TON
+37069,1.57443e-06,PM2.5 Primary (Filt + Cond),TON
+37069,0.00010132184,Styrene,LB
+37069,8.236508e-05,Acrolein,LB
+37069,1.9325302e-05,Acenaphthylene,LB
+37065,12.874232,"1,3-Butadiene",LB
+37065,67.62558,Toluene,LB
+37065,16.876264,Hexane,LB
+37065,1.240075,Anthracene,LB
+37065,0.19251282,Manganese,LB
+37065,1.2650934,Acenaphthene,LB
+37063,1.5278648,Styrene,LB
+37063,9.327864,Acrolein,LB
+37063,0.4005008,Anthracene,LB
+37063,0.5971002,Acenaphthylene,LB
+37063,0.003707704,"Dibenzo[a,h]Anthracene",LB
+37063,5.167606e-05,Mercury,LB
+37063,0.355328,Acenaphthene,LB
+37063,2.659809,Carbon Monoxide,TON
+37063,0.5307296,PM10 Primary (Filt + Cond),TON
+37055,25.15824,Acrolein,LB
+37055,1.0359374,Anthracene,LB
+37055,15.9437,Propionaldehyde,LB
+37055,29.33448,Xylenes (Mixed Isomers),LB
+37055,0.2165478,Benzo[a]Pyrene,LB
+37055,0.0553302,Nickel,LB
+37049,0.003212856,Manganese,LB
+37049,11.43224,Ethyl Benzene,LB
+37049,0.004675658,Benzo[b]Fluoranthene,LB
+37049,0.06836058,Acenaphthylene,LB
+37049,0.01928948,PM10 Primary (Filt + Cond),TON
+37035,1.8975884e-05,Anthracene,LB
+37035,6.869936,Formaldehyde,LB
+37035,0.0716738,Methane,TON
+37035,0.0007313016,PM2.5 Primary (Filt + Cond),TON
+37033,1.014243,PM10-Primary from certain diesel engines,TON
+37033,0.08169404,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,1.208547,Volatile Organic Compounds,TON
+37033,0.6981088,Anthracene,LB
+37033,0.007944978,"Benzo[g,h,i,]Perylene",LB
+37033,1.1344752,Acenaphthylene,LB
+37033,5.467848,"2,2,4-Trimethylpentane",LB
+37033,0.6749046,Acenaphthene,LB
+37027,1.0391638,Hexane,LB
+37027,2.00513,Propionaldehyde,LB
+37027,0.12069736,Acenaphthene,LB
+37027,0.09752207,PM25-Primary from certain diesel engines,TON
+37027,0.1639472,PM10 Primary (Filt + Cond),TON
+37027,0.1050043,PM2.5 Primary (Filt + Cond),TON
+37027,0.02175644,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.3281376,"2,2,4-Trimethylpentane",LB
+37023,0.0002582752,Nitrous Oxide,TON
+37077,0.12420146,Acrolein,LB
+37077,6.740026e-05,"Dibenzo[a,h]Anthracene",LB
+37077,0.0013080856,Benz[a]Anthracene,LB
+37077,13.33759,Acetaldehyde,LB
+37077,0.00660618,Phenanthrene,LB
+37077,1.858821,Carbon Monoxide,TON
+37077,0.08848282,Volatile Organic Compounds,TON
+37175,0.0010934552,Manganese,LB
+37175,0.0005501164,Arsenic,LB
+37175,0.0003628322,Acenaphthene,LB
+37175,0.002804743,Methane,TON
+37167,0.006781132,Methane,TON
+37167,137.5385,Carbon Dioxide,TON
+37167,0.004733208,"Benzo[g,h,i,]Perylene",LB
+37167,0.0009363728,Benzo[b]Fluoranthene,LB
+37167,0.0017554134,Benzo[a]Pyrene,LB
+37167,1.0753646,"2,2,4-Trimethylpentane",LB
+37137,7.022622e-07,Chromium (VI),LB
+37137,6.836006e-05,Chrysene,LB
+37137,3.7753e-06,"Dibenzo[a,h]Anthracene",LB
+37137,11.97344,Carbon Dioxide,TON
+37137,5.791677e-07,Nitrate portion of PM2.5-PRI,TON
+37137,0.00638815,Volatile Organic Compounds,TON
+37123,1.1506552,Propionaldehyde,LB
+37123,0.008225958,Benzo[a]Pyrene,LB
+37123,58.02486,Acetaldehyde,LB
+37123,505.8752,Carbon Dioxide,TON
+37123,0.004969839,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.00123448,Nickel,LB
+37121,0.1212612,Naphthalene,LB
+37121,0.001865379,Organic Carbon portion of PM2.5-PRI,TON
+37121,9.87732e-06,Chromium (VI),LB
+37121,0.0017864134,Benzo[b]Fluoranthene,LB
+37079,2.911212,Xylenes (Mixed Isomers),LB
+37175,14.474442,Acrolein,LB
+37175,4.497058,Hexane,LB
+37175,0.07338996,Manganese,LB
+37175,0.02409416,Nickel,LB
+37175,19.983566,Naphthalene,LB
+37175,0.0002413278,Chromium (VI),LB
+37175,2.231398,Acenaphthylene,LB
+37175,10.90663,Nitrogen Oxides,TON
+37171,0.003645566,Arsenic,LB
+37171,108.9464,Hexane,LB
+37169,0.09635664,Manganese,LB
+37169,131.4753,Acetaldehyde,LB
+37169,32.9054,Naphthalene,LB
+37169,0.00343561,Nitrate portion of PM2.5-PRI,TON
+37169,1.65189,Volatile Organic Compounds,TON
+37169,23.27794,Acrolein,LB
+37169,7.790524e-05,Chromium (VI),LB
+37167,0.660643,Phenanthrene,LB
+37167,0.0018819408,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.3493816,Acenaphthylene,LB
+37167,63.49538,Formaldehyde,LB
+37167,2.683026,Carbon Monoxide,TON
+37167,0.0004649149,Nitrate portion of PM2.5-PRI,TON
+37167,1.6634246,Fluorene,LB
+37167,0.2115907,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.05123413,Organic Carbon portion of PM2.5-PRI,TON
+37167,9.454516,"1,3-Butadiene",LB
+37167,7.487376e-05,Chromium (VI),LB
+37167,0.002476416,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,162.57482,Toluene,LB
+37149,37.04256,Hexane,LB
+37149,194.82454,Xylenes (Mixed Isomers),LB
+37149,0.2198162,Benzo[a]Pyrene,LB
+37149,46.72648,"2,2,4-Trimethylpentane",LB
+37149,0.07431476,Arsenic,LB
+37149,4.572218,Fluorene,LB
+37149,0.2323222,Sulfate Portion of PM2.5-PRI,TON
+37149,5.504542,Volatile Organic Compounds,TON
+37045,3.556938,Ethyl Benzene,LB
+37045,5.325112,Propionaldehyde,LB
+37045,45.85992,Acetaldehyde,LB
+37041,1.4361286,Styrene,LB
+37041,3.571102,"1,3-Butadiene",LB
+37041,11.95997,Acrolein,LB
+37041,4.254315,Carbon Monoxide,TON
+37041,0.09147714,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.7269639,PM10 Primary (Filt + Cond),TON
+37041,0.05009649,Sulfur Dioxide,TON
+37041,0.7829065,Volatile Organic Compounds,TON
+37035,14.61111,Phenanthrene,LB
+37035,378.2216,"1,3-Butadiene",LB
+37035,2.737596,"Benzo[g,h,i,]Perylene",LB
+37035,1.0285332,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,16.09147,Xylenes (Mixed Isomers),LB
+37033,2402.777,Carbon Dioxide,TON
+37029,0.004411988,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.017327586,Benzo[b]Fluoranthene,LB
+37029,0.02441192,Manganese,LB
+37029,8.083006,Naphthalene,LB
+37029,0.3337714,PM25-Primary from certain diesel engines,TON
+37029,0.01753633,Ammonia,TON
+37029,0.3442835,PM2.5 Primary (Filt + Cond),TON
+37029,0.4332702,Volatile Organic Compounds,TON
+37019,1.095007,Chrysene,LB
+37019,0.5560932,Benzo[a]Pyrene,LB
+37019,128.6091,Toluene,LB
+37019,0.1978651,Nickel,LB
+37019,2.988584,Acenaphthene,LB
+37009,0.5794316,Toluene,LB
+37009,0.003262878,Manganese,LB
+37009,0.0896853,Phenanthrene,LB
+37009,0.8391204,Naphthalene,LB
+37009,0.03106152,PM25-Primary from certain diesel engines,TON
+37009,0.04315529,Volatile Organic Compounds,TON
+37009,2.831628,Styrene,LB
+37009,6.142174,"1,3-Butadiene",LB
+37009,2.470792,Acrolein,LB
+37009,513.022,Xylenes (Mixed Isomers),LB
+37009,0.0369796,Chrysene,LB
+37009,0.12765422,Acenaphthene,LB
+37005,6.961273e-06,Methane,TON
+37005,0.003578082,Carbon Monoxide,TON
+37005,0.000205316,Styrene,LB
+37005,0.0315341,Toluene,LB
+37005,0.007058038,Hexane,LB
+37005,1.064915e-05,"Benzo[g,h,i,]Perylene",LB
+37005,0.006920996,"2,2,4-Trimethylpentane",LB
+37005,5.67954e-08,Chromium (VI),LB
+37005,7.561028e-05,Benzo[a]Pyrene,LB
+37005,0.156044,"2,2,4-Trimethylpentane",LB
+37005,5.785104e-05,Manganese,LB
+37005,0.0001019803,PM2.5 Primary (Filt + Cond),TON
+37005,2.655603e-06,Sulfate Portion of PM2.5-PRI,TON
+37033,0.006148728,Pyrene,LB
+37033,0.005415612,Fluoranthene,LB
+37033,3.278468,"2,2,4-Trimethylpentane",LB
+37033,0.018740572,Phenanthrene,LB
+37009,0.00115929,Ammonia,TON
+37009,0.00145964,PM10 Primary (Filt + Cond),TON
+37009,0.12024804,Ethyl Benzene,LB
+37009,0.02270032,Acrolein,LB
+37143,0.2855719,Volatile Organic Compounds,TON
+37143,0.3011684,Acrolein,LB
+37143,0.001267224,Arsenic,LB
+37143,4.948206,Acetaldehyde,LB
+37143,0.002686741,Organic Carbon portion of PM2.5-PRI,TON
+37125,48.86284,Acrolein,LB
+37125,0.19975826,Manganese,LB
+37125,3.833962,Fluorene,LB
+37125,18.67374,Carbon Monoxide,TON
+37125,1.304826,PM10-Primary from certain diesel engines,TON
+37125,0.03436574,Nitrous Oxide,TON
+37125,22.58932,Nitrogen Oxides,TON
+37125,0.06567577,Sulfate Portion of PM2.5-PRI,TON
+37125,7.108592,PM2.5 Primary (Filt + Cond),TON
+37125,15.510886,Anthracene,LB
+37121,24.17386,Formaldehyde,LB
+37121,0.06561996,Acenaphthene,LB
+37121,0.3566978,Phenanthrene,LB
+37121,17.29694,Carbon Monoxide,TON
+37121,0.01463219,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.006473077,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.0007867089,Sulfate Portion of PM2.5-PRI,TON
+37119,152.2143,Carbon Monoxide,TON
+37119,1.482995,Ammonia,TON
+37119,3.993338,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.0013950876,Chromium (VI),LB
+37119,83.74206,Hexane,LB
+37119,0.02272044,Benzo[k]Fluoranthene,LB
+37119,0.5461818,Benzo[a]Pyrene,LB
+37119,0.02255788,"Dibenzo[a,h]Anthracene",LB
+37119,2.254947,Methane,TON
+37119,2.305461,Elemental Carbon portion of PM2.5-PRI,TON
+37119,17.67371,Volatile Organic Compounds,TON
+37099,0.02126126,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.9170378,Benz[a]Anthracene,LB
+37099,0.133846,Manganese,LB
+37099,0.3508365,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.3994775,Organic Carbon portion of PM2.5-PRI,TON
+37091,3.337471e-05,Sulfate Portion of PM2.5-PRI,TON
+37091,0.0013600108,Chrysene,LB
+37071,0.01951545,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.04932588,Fluoranthene,LB
+37071,0.03305852,Acenaphthene,LB
+37071,0.18060136,Phenanthrene,LB
+37071,0.02012803,Methane,TON
+37071,5.964836e-05,Nitrate portion of PM2.5-PRI,TON
+37071,0.006208072,Sulfur Dioxide,TON
+37063,28.4118,Xylenes (Mixed Isomers),LB
+37063,0.009720938,Benzo[b]Fluoranthene,LB
+37063,8.783672,"2,2,4-Trimethylpentane",LB
+37063,0.02795916,Fluorene,LB
+37063,5.588819e-05,Nitrate portion of PM2.5-PRI,TON
+37063,0.01015677,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.05497286,PM10 Primary (Filt + Cond),TON
+37065,12.727378,Toluene,LB
+37065,0.005777656,Pyrene,LB
+37065,92.89568,Carbon Dioxide,TON
+37065,0.0004973926,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.010446706,Nickel,LB
+37061,0.18955874,Acenaphthene,LB
+37061,0.02952403,Methane,TON
+37061,2.002532,Ethyl Benzene,LB
+37061,1.5248338,Hexane,LB
+37061,0.2153698,Anthracene,LB
+37061,0.003752476,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.00167523,Nitrous Oxide,TON
+37061,0.0064676,Sulfur Dioxide,TON
+37061,0.3403268,Volatile Organic Compounds,TON
+37049,56.9109,Ethyl Benzene,LB
+37049,0.02299076,"Benzo[g,h,i,]Perylene",LB
+37049,0.010869894,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,1708.528,Formaldehyde,LB
+37049,96.17927,Carbon Monoxide,TON
+37049,33.74294,Nitrogen Oxides,TON
+37047,0.2541942,Hexane,LB
+37047,0.006099208,Propionaldehyde,LB
+37047,0.6615368,Xylenes (Mixed Isomers),LB
+37047,0.0006504612,Fluorene,LB
+37047,0.0001942337,Ammonia,TON
+37045,1.9402922,Nickel,LB
+37045,2.975072,Arsenic,LB
+37045,26.7959,Acenaphthene,LB
+37045,6105.073,Carbon Monoxide,TON
+37045,458.5121,Volatile Organic Compounds,TON
+37035,493.7164,Formaldehyde,LB
+37035,213.4176,Acetaldehyde,LB
+37035,1.168107,PM25-Primary from certain diesel engines,TON
+37025,0.09128018,Anthracene,LB
+37025,1.4857176,Xylenes (Mixed Isomers),LB
+37025,0.0013814284,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,24.5224,Formaldehyde,LB
+37025,0.06072014,Benz[a]Anthracene,LB
+37025,0.004949016,Manganese,LB
+37025,0.4507102,Carbon Monoxide,TON
+37025,0.0003159319,Nitrate portion of PM2.5-PRI,TON
+37027,15.672988,Xylenes (Mixed Isomers),LB
+37027,0.1843969,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.007571557,Nitrous Oxide,TON
+37027,0.7266717,PM10 Primary (Filt + Cond),TON
+37027,0.01071735,Sulfur Dioxide,TON
+37027,0.01199589,Sulfate Portion of PM2.5-PRI,TON
+37023,0.00016078644,Anthracene,LB
+37023,0.2145832,Benzene,LB
+37023,0.002836724,Manganese,LB
+37023,0.000521796,Fluorene,LB
+37023,0.0005516755,Elemental Carbon portion of PM2.5-PRI,TON
+37023,2.258544e-06,Nitrate portion of PM2.5-PRI,TON
+37023,0.006465368,PM2.5 Primary (Filt + Cond),TON
+37023,18.967688,"1,3-Butadiene",LB
+37023,8.713104,Acrolein,LB
+37023,0.763087,Pyrene,LB
+37023,0.00016486522,Chromium (VI),LB
+37023,0.18147268,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.04185832,Manganese,LB
+37023,0.0016527812,Mercury,LB
+37023,0.3166596,Ammonia,TON
+37023,0.3049569,PM10 Primary (Filt + Cond),TON
+37171,30.2298,"2,2,4-Trimethylpentane",LB
+37171,0.0003365992,Mercury,LB
+37171,0.8856385,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.1133633,Sulfate Portion of PM2.5-PRI,TON
+37165,0.00213357,Benzo[b]Fluoranthene,LB
+37165,1.9514718,Formaldehyde,LB
+37165,0.0949219,Acrolein,LB
+37165,5.402308,Benzene,LB
+37165,0.006024544,Acenaphthene,LB
+37165,0.001153098,Nitrous Oxide,TON
+37165,0.0006079757,Ammonia,TON
+37165,0.1079778,Volatile Organic Compounds,TON
+37163,0.0011223458,"Benzo[g,h,i,]Perylene",LB
+37163,0.0013817752,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.1294118,PM2.5 Primary (Filt + Cond),TON
+37159,117.8851,"2,2,4-Trimethylpentane",LB
+37159,17.016558,Acenaphthene,LB
+37159,0.01065151,Nitrate portion of PM2.5-PRI,TON
+37159,0.2424962,Sulfur Dioxide,TON
+37145,0.2584272,Pyrene,LB
+37145,0.12823978,Acenaphthylene,LB
+37145,25.03748,Formaldehyde,LB
+37145,0.06458574,Benz[a]Anthracene,LB
+37145,0.06210386,PM25-Primary from certain diesel engines,TON
+37145,0.0003528213,Nitrate portion of PM2.5-PRI,TON
+37131,1.0530702,Hexane,LB
+37131,0.0006400246,Benzo[k]Fluoranthene,LB
+37131,0.254999,Acenaphthylene,LB
+37131,0.9946278,"2,2,4-Trimethylpentane",LB
+37131,4.103578,Benzene,LB
+37131,0.1056032,PM10-Primary from certain diesel engines,TON
+37131,0.09715426,PM25-Primary from certain diesel engines,TON
+37131,0.1291941,PM10 Primary (Filt + Cond),TON
+37131,0.01014104,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.003545636,Sulfur Dioxide,TON
+37131,0.9271878,"1,3-Butadiene",LB
+37131,24.60678,Toluene,LB
+37131,5.455324,Hexane,LB
+37131,3.702366e-06,Mercury,LB
+37131,4.616416e-05,Nickel,LB
+37131,0.013815528,Fluorene,LB
+37131,0.007970797,Methane,TON
+37131,2.293649,Carbon Monoxide,TON
+37131,0.0007506917,Elemental Carbon portion of PM2.5-PRI,TON
+37121,2.16255,Pyrene,LB
+37121,45.58728,Naphthalene,LB
+37121,6.988199,Nitrogen Oxides,TON
+37121,0.01690438,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.01234593,PM2.5 Primary (Filt + Cond),TON
+37117,0.00216299,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.07164918,Styrene,LB
+37111,4.83612,Anthracene,LB
+37111,9.539776,Pyrene,LB
+37111,0.011596938,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,7.78818,Fluoranthene,LB
+37123,0.010313762,Pyrene,LB
+37123,2.563984e-06,Chromium (VI),LB
+37123,0.009045954,Fluoranthene,LB
+37123,0.002123038,Benzo[k]Fluoranthene,LB
+37177,7.796332e-06,Mercury,LB
+37177,0.006268656,Nickel,LB
+37177,0.12678958,Acenaphthene,LB
+37177,0.1879003,PM10-Primary from certain diesel engines,TON
+37177,0.13823474,Anthracene,LB
+37177,2.148374,Xylenes (Mixed Isomers),LB
+37177,0.2132084,Acenaphthylene,LB
+37177,0.04043898,Volatile Organic Compounds,TON
+37177,0.0010479698,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.000671358,Benzo[b]Fluoranthene,LB
+37177,0.007686894,Acenaphthylene,LB
+37177,0.0002512374,Manganese,LB
+37177,0.0016840994,Acenaphthene,LB
+37171,2.841892,Toluene,LB
+37171,0.11497694,Anthracene,LB
+37171,1.4082224e-05,Mercury,LB
+37171,0.2331954,Fluorene,LB
+37171,0.1729342,PM10-Primary from certain diesel engines,TON
+37171,0.1100958,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.001392677,Nitrous Oxide,TON
+37165,4.910508,Toluene,LB
+37165,1.875491,Hexane,LB
+37165,74.6021,Formaldehyde,LB
+37165,0.009392702,Nickel,LB
+37165,0.2115067,PM10-Primary from certain diesel engines,TON
+37163,0.2066888,Anthracene,LB
+37163,0.09003002,Chrysene,LB
+37163,0.00953912,Nickel,LB
+37163,0.004003616,Arsenic,LB
+37163,25.05232,Acetaldehyde,LB
+37163,6.304396,Naphthalene,LB
+37163,0.01956796,Ammonia,TON
+37163,0.0008239744,Nitrate portion of PM2.5-PRI,TON
+37163,0.06715978,Organic Carbon portion of PM2.5-PRI,TON
+37163,54.21292,"2,2,4-Trimethylpentane",LB
+37163,2.783032,Volatile Organic Compounds,TON
+37153,9.572826,Xylenes (Mixed Isomers),LB
+37153,0.003749764,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.005507116,Styrene,LB
+37149,0.02327262,"1,3-Butadiene",LB
+37149,0.0003117114,Benzo[a]Pyrene,LB
+37149,1.068135e-06,Mercury,LB
+37149,0.0161448,Nitrogen Oxides,TON
+37149,9.445654e-06,Sulfate Portion of PM2.5-PRI,TON
+37135,0.002866914,Styrene,LB
+37135,0.00012488516,Anthracene,LB
+37135,0.00011792082,Benzo[k]Fluoranthene,LB
+37135,7.4459e-05,Manganese,LB
+37135,0.03044684,Acetaldehyde,LB
+37135,0.007177108,Naphthalene,LB
+37135,6.031153e-05,Methane,TON
+37127,314129.3,Carbon Dioxide,TON
+37127,577.1727,Nitrogen Oxides,TON
+37127,4.936347,Organic Carbon portion of PM2.5-PRI,TON
+37127,40677.46,Xylenes (Mixed Isomers),LB
+37127,13372.25,"2,2,4-Trimethylpentane",LB
+37127,0.1780827,Mercury,LB
+37111,4.51023,Ethyl Benzene,LB
+37111,1.9809748,Styrene,LB
+37111,4.469594,"1,3-Butadiene",LB
+37111,0.007535656,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,1.6662336,Phenanthrene,LB
+37111,0.4640681,PM10 Primary (Filt + Cond),TON
+37087,15.777352,Acetaldehyde,LB
+37087,0.02320522,Sulfur Dioxide,TON
+37087,0.750017,Volatile Organic Compounds,TON
+37087,0.888628,Propionaldehyde,LB
+37087,95.97758,Xylenes (Mixed Isomers),LB
+37087,0.02082506,Benzo[k]Fluoranthene,LB
+37087,25.98144,"2,2,4-Trimethylpentane",LB
+37071,0.0208699,"Benzo[g,h,i,]Perylene",LB
+37071,0.6604654,Chrysene,LB
+37071,2989.628,Carbon Dioxide,TON
+37071,0.4025858,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.02597338,Sulfur Dioxide,TON
+37063,56.61721,Carbon Monoxide,TON
+37063,0.120568,PM10-Primary from certain diesel engines,TON
+37063,0.1109259,PM25-Primary from certain diesel engines,TON
+37063,47.25722,Toluene,LB
+37063,0.002489354,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.03271996,Benzo[a]Pyrene,LB
+37063,0.0013608696,"Dibenzo[a,h]Anthracene",LB
+37051,2.796428,Chrysene,LB
+37051,0.0003657632,Mercury,LB
+37051,189.06094,Naphthalene,LB
+37051,2.109177,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.00619939,Ammonia,TON
+37033,0.1111141,Anthracene,LB
+37033,0.003604656,Benzo[b]Fluoranthene,LB
+37033,0.008379172,Manganese,LB
+37033,0.004943878,Nickel,LB
+37031,0.01480958,Styrene,LB
+37031,0.013129952,Propionaldehyde,LB
+37031,1.4404482,Xylenes (Mixed Isomers),LB
+37031,0.5156306,"2,2,4-Trimethylpentane",LB
+37031,0.00015091772,Benz[a]Anthracene,LB
+37031,1.115274,Carbon Dioxide,TON
+37031,5.027717e-07,Nitrate portion of PM2.5-PRI,TON
+37177,3.564804,Hexane,LB
+37177,4.348052e-05,Chromium (VI),LB
+37177,0.0004573718,Benzo[k]Fluoranthene,LB
+37177,0.10061538,Benz[a]Anthracene,LB
+37177,13.642536,Benzene,LB
+37177,0.01876784,Manganese,LB
+37177,3.522826e-05,Mercury,LB
+37177,0.4911538,Acenaphthene,LB
+37177,0.1493808,PM10-Primary from certain diesel engines,TON
+37173,3.192546,Benzene,LB
+37173,0.010345616,Nickel,LB
+37173,0.006047534,PM25-Primary from certain diesel engines,TON
+37173,0.001111527,Sulfate Portion of PM2.5-PRI,TON
+37173,7.382164e-05,"Dibenzo[a,h]Anthracene",LB
+37015,4.45893,Xylenes (Mixed Isomers),LB
+37015,1.4213964e-05,Chromium (VI),LB
+37015,0.004159978,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.5635072,Fluoranthene,LB
+37015,0.002232522,Benzo[k]Fluoranthene,LB
+37015,0.3978786,Acenaphthylene,LB
+37015,0.014229584,Manganese,LB
+37015,7.760734,Naphthalene,LB
+37015,0.2019656,PM10-Primary from certain diesel engines,TON
+37015,0.1858111,PM25-Primary from certain diesel engines,TON
+37149,0.4704022,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.05216846,Sulfate Portion of PM2.5-PRI,TON
+37149,1.0834514,Benzo[k]Fluoranthene,LB
+37061,19.106194,Xylenes (Mixed Isomers),LB
+37061,0.007411268,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.016374344,Fluorene,LB
+37061,0.420329,Naphthalene,LB
+37061,0.0002496874,Sulfate Portion of PM2.5-PRI,TON
+37173,2.675884,Styrene,LB
+37173,0.19814578,Chrysene,LB
+37173,0.0300404,Arsenic,LB
+37173,10957.25,Carbon Dioxide,TON
+37173,0.5810141,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.9325492,PM2.5 Primary (Filt + Cond),TON
+37173,1.451671,Volatile Organic Compounds,TON
+37173,0.07113606,Acrolein,LB
+37173,8.84316e-06,Mercury,LB
+37173,0.00011026272,Nickel,LB
+37173,0.02147034,Phenanthrene,LB
+37173,35.38321,Carbon Dioxide,TON
+37173,0.0007425383,Sulfur Dioxide,TON
+37173,6.547168e-05,"Dibenzo[a,h]Anthracene",LB
+37173,0.001650331,Benz[a]Anthracene,LB
+37199,1.36897,"2,2,4-Trimethylpentane",LB
+37199,0.3810378,Benzene,LB
+37195,0.3645866,Propionaldehyde,LB
+37195,4.966552,Benzene,LB
+37195,0.00278327,Fluoranthene,LB
+37195,0.00010039592,"Dibenzo[a,h]Anthracene",LB
+37195,0.006610954,Manganese,LB
+37195,0.0002417376,Mercury,LB
+37057,37.21058,Acrolein,LB
+37057,33.3725,Toluene,LB
+37057,12.004804,Hexane,LB
+37057,0.00011761256,Mercury,LB
+37057,23.08504,Carbon Monoxide,TON
+37051,1.8216456,Acenaphthene,LB
+37051,0.007627697,Nitrate portion of PM2.5-PRI,TON
+37051,17.986402,"1,3-Butadiene",LB
+37051,2.015604,Anthracene,LB
+37049,3.3889,Fluoranthene,LB
+37049,0.012871812,Benzo[k]Fluoranthene,LB
+37049,0.6001876,Chrysene,LB
+37049,1.0310244,Benz[a]Anthracene,LB
+37049,0.06294442,Arsenic,LB
+37049,16.93613,Carbon Monoxide,TON
+37049,0.3381457,Ammonia,TON
+37049,6.822338,Ethyl Benzene,LB
+37049,0.15885166,Benzo[a]Pyrene,LB
+37049,5.166098,"2,2,4-Trimethylpentane",LB
+37049,3.352204e-05,Mercury,LB
+37049,2.545092,Phenanthrene,LB
+37049,0.03084069,Ammonia,TON
+37045,7.443914,Anthracene,LB
+37045,62.01376,"2,2,4-Trimethylpentane",LB
+37045,1.9654624,Benz[a]Anthracene,LB
+37045,0.3140856,Manganese,LB
+37045,0.5539901,Methane,TON
+37045,2.94674,PM10 Primary (Filt + Cond),TON
+37045,0.1747724,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.1247615,Sulfur Dioxide,TON
+37045,8.625576e-06,Mercury,LB
+37045,0.015679538,Acenaphthene,LB
+37045,0.03176042,Fluorene,LB
+37045,4.705537,Carbon Monoxide,TON
+37045,0.003609825,Nitrous Oxide,TON
+37045,0.006734032,PM2.5 Primary (Filt + Cond),TON
+37045,0.001555777,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,27.2662,Acrolein,LB
+37035,18.444874,Propionaldehyde,LB
+37035,2.056784,Fluoranthene,LB
+37035,0.03468237,Sulfur Dioxide,TON
+37033,20.57442,Acetaldehyde,LB
+37033,0.01036012,Ammonia,TON
+37033,0.04327256,PM2.5 Primary (Filt + Cond),TON
+37033,0.2005706,Fluoranthene,LB
+37033,47.612,Formaldehyde,LB
+37027,0.8513122,Anthracene,LB
+37027,23.51352,Xylenes (Mixed Isomers),LB
+37027,0.011416124,Benzo[b]Fluoranthene,LB
+37027,0.0382715,Benzo[a]Pyrene,LB
+37027,0.2483396,Benz[a]Anthracene,LB
+37027,0.014419034,Arsenic,LB
+37027,2.836462,Phenanthrene,LB
+37027,35.0787,Naphthalene,LB
+37027,1951.416,Carbon Dioxide,TON
+37027,0.4187847,PM10 Primary (Filt + Cond),TON
+37027,0.01679951,Sulfur Dioxide,TON
+37027,0.01153086,Sulfate Portion of PM2.5-PRI,TON
+37023,0.02976084,Acrolein,LB
+37023,1.2517944,Hexane,LB
+37023,0.00233356,Benzo[a]Pyrene,LB
+37023,0.6050284,Acetaldehyde,LB
+37023,0.001912702,Methane,TON
+37023,0.0002029058,Ammonia,TON
+37023,0.002876986,PM10 Primary (Filt + Cond),TON
+37023,6.828874e-05,Sulfate Portion of PM2.5-PRI,TON
+37157,51.16366,Benzene,LB
+37157,0.1936742,Sulfur Dioxide,TON
+37157,6.65507,Styrene,LB
+37157,15.509384,"1,3-Butadiene",LB
+37153,13.260224,Benzene,LB
+37135,4.92778e-05,Chrysene,LB
+37135,3.161644e-06,Arsenic,LB
+37135,0.05111593,Carbon Monoxide,TON
+37135,1.119875,Carbon Dioxide,TON
+37135,0.004751422,Nitrogen Oxides,TON
+37137,0.001721334,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.003097764,Benz[a]Anthracene,LB
+37137,4.661012e-05,Mercury,LB
+37137,0.6637366,Naphthalene,LB
+37137,0.0111315,Methane,TON
+37137,0.002951374,Benzo[k]Fluoranthene,LB
+37137,7.99076e-05,"Dibenzo[a,h]Anthracene",LB
+37137,1.0537824,Acrolein,LB
+37137,0.09141552,Pyrene,LB
+37137,0.015799122,Chrysene,LB
+37137,0.004285856,Manganese,LB
+37131,6.504928,"Benzo[g,h,i,]Perylene",LB
+37131,4547.074,Hexane,LB
+37131,4444.716,"2,2,4-Trimethylpentane",LB
+37131,75970.95,Carbon Dioxide,TON
+37129,13.792536,Propionaldehyde,LB
+37129,259.3366,Formaldehyde,LB
+37129,0.004355298,"Dibenzo[a,h]Anthracene",LB
+37123,9.6452e-05,Chromium (VI),LB
+37123,2.168586,Fluoranthene,LB
+37123,0.2077044,Benzo[a]Pyrene,LB
+37123,0.685157,Benz[a]Anthracene,LB
+37123,128.71608,Acetaldehyde,LB
+37123,3.531136,Phenanthrene,LB
+37123,0.09446319,Ammonia,TON
+37123,0.03123911,Sulfate Portion of PM2.5-PRI,TON
+37117,0.0002480426,Benzo[k]Fluoranthene,LB
+37117,0.04302996,Acenaphthylene,LB
+37117,0.0003654562,"Benzo[g,h,i,]Perylene",LB
+37117,0.06143996,Fluoranthene,LB
+37117,0.000247007,"Dibenzo[a,h]Anthracene",LB
+37117,0.02559872,Acenaphthene,LB
+37117,0.2681153,Carbon Monoxide,TON
+37117,0.03983906,PM10-Primary from certain diesel engines,TON
+37117,0.03665143,PM25-Primary from certain diesel engines,TON
+37117,0.0002684058,Nitrous Oxide,TON
+37117,0.0459962,Volatile Organic Compounds,TON
+37115,3.531024,Formaldehyde,LB
+37115,0.0891645,"2,2,4-Trimethylpentane",LB
+37115,0.00909985,PM10-Primary from certain diesel engines,TON
+37115,0.008371764,PM25-Primary from certain diesel engines,TON
+37115,1.564166,"1,3-Butadiene",LB
+37115,2.371744e-05,Chromium (VI),LB
+37115,57.36044,Formaldehyde,LB
+37115,0.007978163,PM25-Primary from certain diesel engines,TON
+37113,0.00617319,"Dibenzo[a,h]Anthracene",LB
+37113,0.3670198,Methane,TON
+37113,10.780228,Ethyl Benzene,LB
+37113,0.01122483,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,1.667771,Fluoranthene,LB
+37113,1.288379,Acenaphthylene,LB
+37107,0.3814764,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.019358426,"Benzo[g,h,i,]Perylene",LB
+37107,1.0819118,Hexane,LB
+37107,3.319576,Xylenes (Mixed Isomers),LB
+37107,8.37633e-05,"Dibenzo[a,h]Anthracene",LB
+37107,0.02392484,Benz[a]Anthracene,LB
+37107,5.177627e-05,Nitrate portion of PM2.5-PRI,TON
+37107,0.003194885,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,8707.638,Ethyl Benzene,LB
+37107,255.3904,Acrolein,LB
+37107,10966.704,Hexane,LB
+37107,0.1030935,"Dibenzo[a,h]Anthracene",LB
+37107,3135.933,Carbon Monoxide,TON
+37107,1.778739,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,90.49474,Carbon Monoxide,TON
+37097,6.54739,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.1341212,Nitrous Oxide,TON
+37097,0.0329673,Nitrate portion of PM2.5-PRI,TON
+37091,0.0007001942,"Benzo[g,h,i,]Perylene",LB
+37091,0.11417026,Fluoranthene,LB
+37091,0.07597418,Acenaphthylene,LB
+37091,0.3780472,"2,2,4-Trimethylpentane",LB
+37091,0.0452001,Acenaphthene,LB
+37091,0.0166167,Organic Carbon portion of PM2.5-PRI,TON
+37099,114.2711,Xylenes (Mixed Isomers),LB
+37099,2.871986e-05,Chromium (VI),LB
+37099,0.0002879168,Mercury,LB
+37099,1069.211,Carbon Dioxide,TON
+37099,0.02965548,PM2.5 Primary (Filt + Cond),TON
+37099,0.0007918158,Sulfate Portion of PM2.5-PRI,TON
+37099,0.9023026,Volatile Organic Compounds,TON
+37095,2.046772,Benzene,LB
+37095,4.98182e-05,Arsenic,LB
+37095,0.009974094,Phenanthrene,LB
+37095,0.7606447,Carbon Monoxide,TON
+37095,0.0001222164,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.0002619681,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.0002199299,Sulfur Dioxide,TON
+37095,0.05448556,Volatile Organic Compounds,TON
+37095,0.002658244,Fluoranthene,LB
+37095,0.04395986,Styrene,LB
+37095,0.2616418,"1,3-Butadiene",LB
+37095,2.377396,Ethyl Benzene,LB
+37095,0.0008341446,Benzo[k]Fluoranthene,LB
+37095,1.1388106e-06,Mercury,LB
+37095,0.003637234,Acenaphthene,LB
+37095,0.0004655121,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.07072192,Volatile Organic Compounds,TON
+37091,0.012309194,Phenanthrene,LB
+37091,0.001829966,Methane,TON
+37091,1.05907,Carbon Monoxide,TON
+37091,0.0002278171,Elemental Carbon portion of PM2.5-PRI,TON
+37091,3.002204e-05,Sulfate Portion of PM2.5-PRI,TON
+37089,0.2171644,Pyrene,LB
+37089,0.08060747,Ammonia,TON
+37075,0.002446377,PM10 Primary (Filt + Cond),TON
+37075,0.02608901,Volatile Organic Compounds,TON
+37075,0.0014572904,Anthracene,LB
+37075,0.02861136,Propionaldehyde,LB
+37075,0.000514417,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.0004183512,Benzo[b]Fluoranthene,LB
+37075,0.0004299566,Chrysene,LB
+37075,0.000452999,Manganese,LB
+37071,1.8113056e-05,Chromium (VI),LB
+37071,0.001708881,Benzo[k]Fluoranthene,LB
+37071,0.2734312,Acenaphthylene,LB
+37071,1.722497,Carbon Monoxide,TON
+37071,0.02012979,Ammonia,TON
+37071,0.01286597,Sulfur Dioxide,TON
+37071,1.8596268,Anthracene,LB
+37071,0.003654358,"Dibenzo[a,h]Anthracene",LB
+37071,0.001728876,Nitrate portion of PM2.5-PRI,TON
+37059,8359.684,Ethyl Benzene,LB
+37059,45718.88,Toluene,LB
+37059,0.006850318,Chromium (VI),LB
+37059,4.760474,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.8563118,Nickel,LB
+37059,1.3129864,Arsenic,LB
+37059,3201.895,Carbon Monoxide,TON
+37051,0.1229774,Benz[a]Anthracene,LB
+37051,114.83176,Acetaldehyde,LB
+37051,2.850064,Styrene,LB
+37051,28.96658,Carbon Monoxide,TON
+37051,0.02525203,Sulfur Dioxide,TON
+37051,1.35736,Volatile Organic Compounds,TON
+37049,18.764896,Propionaldehyde,LB
+37049,0.0008354038,Chromium (VI),LB
+37049,0.2556526,Chrysene,LB
+37049,0.3367378,Benzo[a]Pyrene,LB
+37049,0.2448422,Manganese,LB
+37037,290.3422,Propionaldehyde,LB
+37037,10464.882,"2,2,4-Trimethylpentane",LB
+37037,3312.639,Carbon Monoxide,TON
+37037,1.277156,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.1598365,Sulfate Portion of PM2.5-PRI,TON
+37035,2435.27,"1,3-Butadiene",LB
+37035,5735.026,Acetaldehyde,LB
+37035,433.2457,Nitrogen Oxides,TON
+37035,5.615925,Organic Carbon portion of PM2.5-PRI,TON
+37171,3.871098,"1,3-Butadiene",LB
+37171,3.351854,Hexane,LB
+37171,0.002229766,Benzo[b]Fluoranthene,LB
+37171,0.6704376,Fluorene,LB
+37171,14.104696,Naphthalene,LB
+37171,0.001214411,Nitrous Oxide,TON
+37171,0.01333696,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.007727548,Sulfur Dioxide,TON
+37149,1.3936876e-06,Mercury,LB
+37149,0.0002914102,Arsenic,LB
+37149,0.13436368,Hexane,LB
+37149,0.0005862608,Sulfur Dioxide,TON
+37157,0.05115918,Pyrene,LB
+37157,1.1609074e-05,Chromium (VI),LB
+37157,0.04485156,Fluoranthene,LB
+37157,0.1392584,Acenaphthylene,LB
+37157,0.009269554,Benz[a]Anthracene,LB
+37157,0.014523576,Manganese,LB
+37157,0.01558899,Nitrous Oxide,TON
+37157,0.4633021,Volatile Organic Compounds,TON
+37155,4.173888e-07,Nitrate portion of PM2.5-PRI,TON
+37155,0.006622654,Nitrogen Oxides,TON
+37155,7.689971e-05,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.0001462375,PM2.5 Primary (Filt + Cond),TON
+37155,0.1531527,Ethyl Benzene,LB
+37155,0.005916164,Styrene,LB
+37155,0.0324237,"1,3-Butadiene",LB
+37155,0.0002104538,Anthracene,LB
+37155,0.0011103226,Acenaphthylene,LB
+37155,0.0001478213,Benzo[a]Pyrene,LB
+37153,9.971428,"1,3-Butadiene",LB
+37153,23.55498,Acrolein,LB
+37153,1.1396984,Anthracene,LB
+37153,0.015208148,"Benzo[g,h,i,]Perylene",LB
+37153,0.8218424,Benz[a]Anthracene,LB
+37153,0.11017092,Manganese,LB
+37153,1.0144678,Acenaphthene,LB
+37153,2.249708,Fluorene,LB
+37147,0.1435212,Acenaphthene,LB
+37147,0.1060857,Methane,TON
+37147,2.648144,Volatile Organic Compounds,TON
+37147,329.2096,Xylenes (Mixed Isomers),LB
+37147,155.6007,Benzene,LB
+37147,0.012100232,Arsenic,LB
+37147,0.07465096,Ethyl Benzene,LB
+37147,0.19823214,Benzene,LB
+37147,0.03798626,Acetaldehyde,LB
+37147,8.9444e-05,Methane,TON
+37147,4.873221e-07,Nitrate portion of PM2.5-PRI,TON
+37141,0.6972456,Styrene,LB
+37141,4.08021,Acrolein,LB
+37141,0.5426704,Pyrene,LB
+37141,53.77028,Formaldehyde,LB
+37141,0.04217944,Benzo[a]Pyrene,LB
+37141,0.1352288,Benz[a]Anthracene,LB
+37141,0.02048106,Ammonia,TON
+37141,2.648086,"1,3-Butadiene",LB
+37141,0.4449526,Acenaphthylene,LB
+37141,107.23506,Formaldehyde,LB
+37141,9.099832,Benzene,LB
+37141,11.42461,Carbon Monoxide,TON
+37141,0.01816741,PM25-Primary from certain diesel engines,TON
+37133,8.88643,Propionaldehyde,LB
+37133,0.001756056,"Benzo[g,h,i,]Perylene",LB
+37133,0.8475384,Acenaphthylene,LB
+37133,0.0002871406,"Dibenzo[a,h]Anthracene",LB
+37133,0.0884647,Benz[a]Anthracene,LB
+37133,0.05469784,Manganese,LB
+37133,86.73052,Acetaldehyde,LB
+37133,1938.781,Carbon Dioxide,TON
+37133,0.003124704,Nitrous Oxide,TON
+37121,0.6075674,"2,2,4-Trimethylpentane",LB
+37121,1.9615496,Benzene,LB
+37121,0.0009786303,Sulfur Dioxide,TON
+37121,0.6018066,"1,3-Butadiene",LB
+37123,152.02214,Toluene,LB
+37123,36.62946,Hexane,LB
+37123,0.06922842,"Benzo[g,h,i,]Perylene",LB
+37123,0.016259138,Benzo[b]Fluoranthene,LB
+37123,0.005222704,Elemental Carbon portion of PM2.5-PRI,TON
+37123,7.81428e-05,Nitrate portion of PM2.5-PRI,TON
+37111,11.301802,Benzene,LB
+37111,0.004335173,Methane,TON
+37111,0.15737346,Propionaldehyde,LB
+37111,4.455022e-06,Chromium (VI),LB
+37111,0.016027974,"Benzo[g,h,i,]Perylene",LB
+37111,0.006021904,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,1.3832054,Anthracene,LB
+37107,0.08053496,Benzo[b]Fluoranthene,LB
+37107,16.158902,"2,2,4-Trimethylpentane",LB
+37107,0.0003096298,Mercury,LB
+37107,5.480834,Phenanthrene,LB
+37085,1.6001642,"1,3-Butadiene",LB
+37085,14.56995,"2,2,4-Trimethylpentane",LB
+37085,37.35096,Benzene,LB
+37085,17.23841,Carbon Monoxide,TON
+37085,1932.525,Carbon Dioxide,TON
+37085,0.9164253,Volatile Organic Compounds,TON
+37063,0.011729778,Arsenic,LB
+37063,0.002922493,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.3882436,Nitrogen Oxides,TON
+37063,0.011194696,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.007433052,Fluoranthene,LB
+37033,0.3906638,Ethyl Benzene,LB
+37033,0.0963313,"1,3-Butadiene",LB
+37033,0.7115884,Hexane,LB
+37033,1.419809,Xylenes (Mixed Isomers),LB
+37033,0.002794428,"Benzo[g,h,i,]Perylene",LB
+37033,0.002091954,Sulfur Dioxide,TON
+37033,0.03432212,Naphthalene,LB
+37033,68.80568,Carbon Dioxide,TON
+37021,5.300652,Ethyl Benzene,LB
+37017,1.5192456,Ethyl Benzene,LB
+37017,1.4147642,Hexane,LB
+37001,0.002537732,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,1.343691,Carbon Monoxide,TON
+37001,0.0001131917,Sulfate Portion of PM2.5-PRI,TON
+37149,0.00222512,"Benzo[g,h,i,]Perylene",LB
+37149,0.0004325758,Benzo[k]Fluoranthene,LB
+37149,1.0133178,Benzene,LB
+37149,0.01662136,Naphthalene,LB
+37157,80.4089,Acrolein,LB
+37157,4.07778,Acenaphthylene,LB
+37157,5.254296,Fluorene,LB
+37157,2.237666,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.04057446,Nitrous Oxide,TON
+37157,6.520502,Ethyl Benzene,LB
+37157,6.076694,"1,3-Butadiene",LB
+37157,197.78176,Formaldehyde,LB
+37157,7.20415,Carbon Monoxide,TON
+37157,0.4490125,PM25-Primary from certain diesel engines,TON
+37157,0.006664198,Nitrous Oxide,TON
+37155,0.02124355,Sulfate Portion of PM2.5-PRI,TON
+37155,198.0088,"1,3-Butadiene",LB
+37155,3194.348,Xylenes (Mixed Isomers),LB
+37155,1.7350804,"Benzo[g,h,i,]Perylene",LB
+37155,460.4886,Formaldehyde,LB
+37155,0.3681708,Manganese,LB
+37155,7.967482,Phenanthrene,LB
+37147,53.26518,Styrene,LB
+37147,1827.7548,Hexane,LB
+37147,2.126164,"Benzo[g,h,i,]Perylene",LB
+37147,1655.285,"2,2,4-Trimethylpentane",LB
+37147,0.019131996,Mercury,LB
+37147,0.2385512,Nickel,LB
+37147,778.8276,Acetaldehyde,LB
+37147,4.588766,Fluorene,LB
+37147,59.72532,Nitrogen Oxides,TON
+37147,0.4823367,Organic Carbon portion of PM2.5-PRI,TON
+37147,3.910296,PM10 Primary (Filt + Cond),TON
+37147,0.7970632,Sulfur Dioxide,TON
+37143,0.002058247,PM10-Primary from certain diesel engines,TON
+37143,0.0001551362,Nitrous Oxide,TON
+37143,0.0009554469,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.0004988427,Sulfate Portion of PM2.5-PRI,TON
+37143,0.1482058,Styrene,LB
+37143,0.3691096,Hexane,LB
+37143,0.00012813188,Benzo[b]Fluoranthene,LB
+37143,0.4159604,"2,2,4-Trimethylpentane",LB
+37177,5.215864,Hexane,LB
+37173,22.22798,Toluene,LB
+37197,0.013269788,Benzo[k]Fluoranthene,LB
+37197,57.06284,Ethyl Benzene,LB
+37197,0.2920704,Manganese,LB
+37197,110.2439,Nitrogen Oxides,TON
+37197,16.62798,Toluene,LB
+37197,0.011685894,"Benzo[g,h,i,]Perylene",LB
+37197,0.3661402,Chrysene,LB
+37197,0.00762824,"Dibenzo[a,h]Anthracene",LB
+37197,6.415032,"2,2,4-Trimethylpentane",LB
+37197,0.9189312,Acenaphthene,LB
+37197,0.003229306,Nitrate portion of PM2.5-PRI,TON
+37197,1.58887,Volatile Organic Compounds,TON
+37153,1.0822736,"1,3-Butadiene",LB
+37153,2.706032,Acrolein,LB
+37153,0.12564494,Anthracene,LB
+37153,0.28161,Fluoranthene,LB
+37153,35.0006,Formaldehyde,LB
+37153,0.01681555,Methane,TON
+37153,427.3376,Carbon Dioxide,TON
+37153,0.1075947,PM10-Primary from certain diesel engines,TON
+37147,0.07877568,Benz[a]Anthracene,LB
+37147,13.964966,Benzene,LB
+37147,16.437432,Naphthalene,LB
+37147,14.14089,Carbon Monoxide,TON
+37147,0.02379011,Ammonia,TON
+37147,0.01361725,Organic Carbon portion of PM2.5-PRI,TON
+37147,12.751096,Toluene,LB
+37147,0.5476186,Fluoranthene,LB
+37147,0.005268383,Sulfate Portion of PM2.5-PRI,TON
+37145,8.009568,"1,3-Butadiene",LB
+37145,0.0001062867,Mercury,LB
+37145,0.04576938,Nickel,LB
+37145,0.2282986,Xylenes (Mixed Isomers),LB
+37145,0.000455167,Acenaphthylene,LB
+37145,3.761106e-05,PM2.5 Primary (Filt + Cond),TON
+37145,0.06164978,Ethyl Benzene,LB
+37145,0.002345354,Styrene,LB
+37145,7.267042,Ethyl Benzene,LB
+37145,3.469206e-06,Chromium (VI),LB
+37145,0.003002738,Benzo[k]Fluoranthene,LB
+37143,0.0002210598,Anthracene,LB
+37143,0.304372,Benzene,LB
+37143,0.013455608,Naphthalene,LB
+37143,0.009405,Nitrogen Oxides,TON
+37143,4.886989e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.2184046,Acenaphthene,LB
+37115,0.08248229,PM10 Primary (Filt + Cond),TON
+37115,0.3891122,Volatile Organic Compounds,TON
+37115,2.264612,Ethyl Benzene,LB
+37115,5.337286,Acrolein,LB
+37113,1371.7236,Toluene,LB
+37113,0.14102712,Anthracene,LB
+37113,0.2409402,Fluoranthene,LB
+37113,222.0092,Benzene,LB
+37113,0.011784376,Arsenic,LB
+37113,0.009459245,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.1265701,Ammonia,TON
+37113,5.836366,Volatile Organic Compounds,TON
+37095,243.0824,Ethyl Benzene,LB
+37095,0.302624,Anthracene,LB
+37095,0.4291936,"Benzo[g,h,i,]Perylene",LB
+37095,0.0543292,Nickel,LB
+37095,0.09305989,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.05278948,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,1.8210442e-05,Benzo[a]Pyrene,LB
+37079,0.0008592798,Propionaldehyde,LB
+37079,3.345068e-09,Chromium (VI),LB
+37079,1.2353624e-05,Chrysene,LB
+37079,0.04202974,Benzene,LB
+37079,4.181474e-07,Nickel,LB
+37079,5.144953e-08,Nitrate portion of PM2.5-PRI,TON
+37081,4.645488,Ethyl Benzene,LB
+37081,6.73456,Propionaldehyde,LB
+37081,0.00745735,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,142.65388,Formaldehyde,LB
+37081,0.6651173,PM10-Primary from certain diesel engines,TON
+37081,0.06118643,Ammonia,TON
+37081,0.03867661,Sulfate Portion of PM2.5-PRI,TON
+37077,0.3515096,Acenaphthylene,LB
+37077,5.934244,Benzene,LB
+37077,0.912325,Styrene,LB
+37077,4.981114,Acrolein,LB
+37077,0.0018442448,"Benzo[g,h,i,]Perylene",LB
+37077,0.007702392,Benzo[b]Fluoranthene,LB
+37077,0.01136398,Ammonia,TON
+37077,0.03810669,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.3665265,Volatile Organic Compounds,TON
+37077,2.16316,"1,3-Butadiene",LB
+37077,0.17725304,Anthracene,LB
+37077,3.622328,Propionaldehyde,LB
+37077,5.91467,Xylenes (Mixed Isomers),LB
+37077,0.0003305336,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.00018132498,Benzo[k]Fluoranthene,LB
+37077,1.954804,"2,2,4-Trimethylpentane",LB
+37075,0.1122274,Carbon Monoxide,TON
+37075,0.008295177,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.0783872,Hexane,LB
+37075,0.00015617114,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.0006130172,Benzo[b]Fluoranthene,LB
+37075,3.121752,Formaldehyde,LB
+37075,0.00205518,Benzo[a]Pyrene,LB
+37075,8.433646e-05,"Dibenzo[a,h]Anthracene",LB
+37075,0.0005111368,Nickel,LB
+37063,4.684242,Anthracene,LB
+37063,0.06353592,"Benzo[g,h,i,]Perylene",LB
+37063,9.271556,Fluorene,LB
+37063,136.30968,Naphthalene,LB
+37063,0.01842863,Nitrate portion of PM2.5-PRI,TON
+37063,1.523761,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.1949847,Sulfur Dioxide,TON
+37063,0.0019250032,Benzene,LB
+37063,7.02077e-07,Arsenic,LB
+37063,3.625108e-05,Acrolein,LB
+37063,2.618568e-06,Fluoranthene,LB
+37063,1.5549532e-06,Benzo[k]Fluoranthene,LB
+37063,1.451159e-07,Sulfate Portion of PM2.5-PRI,TON
+37053,0.01142954,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.1324902,Ammonia,TON
+37053,24.91796,Nitrogen Oxides,TON
+37065,0.000873079,Anthracene,LB
+37065,0.000506168,Chrysene,LB
+37065,0.6639162,"2,2,4-Trimethylpentane",LB
+37065,0.0002521572,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,4.080158e-05,Benzo[a]Pyrene,LB
+37063,0.01735817,"2,2,4-Trimethylpentane",LB
+37063,6.958288e-06,Arsenic,LB
+37063,0.00017846028,Phenanthrene,LB
+37063,6.493076e-05,Fluorene,LB
+37063,2.429485e-05,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.000109765,"Benzo[g,h,i,]Perylene",LB
+37043,0.84025,"1,3-Butadiene",LB
+37043,0.5986894,Hexane,LB
+37043,3.401018e-06,Mercury,LB
+37043,0.003783489,Methane,TON
+37043,0.07024494,PM10 Primary (Filt + Cond),TON
+37031,0.0001905558,"Dibenzo[a,h]Anthracene",LB
+37031,3.412544,"2,2,4-Trimethylpentane",LB
+37031,52.79042,Acetaldehyde,LB
+37031,0.01950931,PM10-Primary from certain diesel engines,TON
+37031,0.01824374,Ammonia,TON
+37031,0.01117795,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,0.00407883,Sulfate Portion of PM2.5-PRI,TON
+37025,0.359111,Anthracene,LB
+37025,0.15603856,Chrysene,LB
+37025,0.04367846,PM10-Primary from certain diesel engines,TON
+37025,0.03549352,Ammonia,TON
+37025,8.434984,Ethyl Benzene,LB
+37025,6.501312,Hexane,LB
+37025,0.0004677892,Benzo[k]Fluoranthene,LB
+37025,0.0592227,Chrysene,LB
+37021,184.26132,Ethyl Benzene,LB
+37021,40.76742,Styrene,LB
+37021,148.44622,Hexane,LB
+37021,10.58448,Anthracene,LB
+37021,0.0013884956,Mercury,LB
+37021,103.2239,Carbon Monoxide,TON
+37019,72.81268,"1,3-Butadiene",LB
+37019,55.12424,Hexane,LB
+37019,0.016384856,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.008930104,Benzo[k]Fluoranthene,LB
+37019,2192.53,Formaldehyde,LB
+37019,0.2155724,Benzo[a]Pyrene,LB
+37019,121.0492,Carbon Monoxide,TON
+37019,44.15918,Nitrogen Oxides,TON
+37019,2.637945,PM10 Primary (Filt + Cond),TON
+37019,1.906579,PM2.5 Primary (Filt + Cond),TON
+37019,0.169953,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,12.92258,Volatile Organic Compounds,TON
+37019,0.0010312914,"Dibenzo[a,h]Anthracene",LB
+37019,37.93658,Acetaldehyde,LB
+37019,6.247382,Naphthalene,LB
+37019,0.0001643692,Nitrate portion of PM2.5-PRI,TON
+37019,0.001941746,Sulfate Portion of PM2.5-PRI,TON
+37019,1.0167348,Styrene,LB
+37019,0.013535868,Chrysene,LB
+37019,21.64144,"2,2,4-Trimethylpentane",LB
+37019,0.04674326,Acenaphthene,LB
+37019,2.427452,Naphthalene,LB
+37019,2.054207,Nitrogen Oxides,TON
+37019,0.17343822,Nickel,LB
+37019,25125.12,Carbon Dioxide,TON
+37019,34.07224,Styrene,LB
+37019,28.32048,Acrolein,LB
+37019,25.33887,Volatile Organic Compounds,TON
+37015,0.001725534,Methane,TON
+37015,0.0001407873,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.0855265,Manganese,LB
+37009,102.1222,Naphthalene,LB
+37009,44.63943,Carbon Monoxide,TON
+37009,4514.133,Carbon Dioxide,TON
+37009,0.000193167,Chromium (VI),LB
+37009,0.00400584,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,3.250301,Carbon Monoxide,TON
+37009,0.002954279,Nitrous Oxide,TON
+37009,0.001410067,Sulfur Dioxide,TON
+37001,4.850016,Ethyl Benzene,LB
+37001,4.562084,"1,3-Butadiene",LB
+37001,0.1977323,Benz[a]Anthracene,LB
+37001,10.6812,Nitrogen Oxides,TON
+37001,0.4906981,PM10 Primary (Filt + Cond),TON
+37001,0.01771897,Sulfur Dioxide,TON
+37175,2.892152,Hexane,LB
+37175,0.00220031,Chrysene,LB
+37175,0.00011552654,"Dibenzo[a,h]Anthracene",LB
+37175,0.002059174,Nickel,LB
+37175,1.85923e-05,Nitrate portion of PM2.5-PRI,TON
+37175,0.009554698,Sulfur Dioxide,TON
+37163,0.02392776,Pyrene,LB
+37163,0.05841764,Acenaphthylene,LB
+37163,0.010362534,Benz[a]Anthracene,LB
+37163,0.02566694,Fluorene,LB
+37163,7.371703e-05,Nitrate portion of PM2.5-PRI,TON
+37163,0.0008286205,Sulfate Portion of PM2.5-PRI,TON
+37193,0.0001306182,Ammonia,TON
+37193,1.368875e-06,Nitrate portion of PM2.5-PRI,TON
+37193,0.02196517,Nitrogen Oxides,TON
+37193,0.0001055975,Sulfur Dioxide,TON
+37193,0.01125841,Volatile Organic Compounds,TON
+37193,0.014508186,Propionaldehyde,LB
+37193,0.000262071,Chrysene,LB
+37189,14.59426,Benzene,LB
+37189,0.005480705,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.3334855,Volatile Organic Compounds,TON
+37191,0.8709392,Ethyl Benzene,LB
+37191,0.002295824,Pyrene,LB
+37191,3.22573,Xylenes (Mixed Isomers),LB
+37191,0.0003936562,Benzo[b]Fluoranthene,LB
+37191,8.176802e-06,Nickel,LB
+37191,0.4441926,Acetaldehyde,LB
+37191,0.001650018,Methane,TON
+37191,2.709407,Carbon Dioxide,TON
+37191,9.21888e-05,Ammonia,TON
+37191,1.503778e-06,Nitrate portion of PM2.5-PRI,TON
+37191,0.0269588,Nitrogen Oxides,TON
+37191,0.0005415914,PM2.5 Primary (Filt + Cond),TON
+37187,0.0001331242,Mercury,LB
+37187,0.007191213,Sulfur Dioxide,TON
+37187,0.0001298288,Sulfate Portion of PM2.5-PRI,TON
+37187,0.00205058,Benzo[k]Fluoranthene,LB
+37187,0.003758316,Benzo[a]Pyrene,LB
+37187,0.001800427,Benz[a]Anthracene,LB
+37187,6.042104,Benzene,LB
+37183,6.658836,Hexane,LB
+37183,0.010556394,Manganese,LB
+37183,0.00365054,Nitrous Oxide,TON
+37183,0.8949977,Nitrogen Oxides,TON
+37183,0.01809285,PM2.5 Primary (Filt + Cond),TON
+37183,0.00672504,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,36.12178,Hexane,LB
+37179,0.09893762,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.3885138,Benzo[b]Fluoranthene,LB
+37179,8.013544,Acenaphthylene,LB
+37179,125.7751,Nitrogen Oxides,TON
+37179,1.863365,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.01237325,Acrolein,LB
+37177,0.000458573,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.6816978,Benzene,LB
+37019,0.2431274,Pyrene,LB
+37019,4.437566e-06,Chromium (VI),LB
+37019,0.5891696,"2,2,4-Trimethylpentane",LB
+37019,0.007634709,Methane,TON
+37019,0.4293868,Carbon Monoxide,TON
+37019,0.0002995346,Nitrate portion of PM2.5-PRI,TON
+37011,2.645538,Xylenes (Mixed Isomers),LB
+37011,0.2789158,Acenaphthylene,LB
+37011,0.0378898,Chrysene,LB
+37011,0.016947194,Benzo[a]Pyrene,LB
+37011,0.009129724,Manganese,LB
+37011,6.330548e-06,Mercury,LB
+37011,0.310749,Fluorene,LB
+37011,0.1310019,PM10 Primary (Filt + Cond),TON
+37011,0.01099828,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,6.825192,Propionaldehyde,LB
+37011,0.00590841,"Benzo[g,h,i,]Perylene",LB
+37011,0.09674154,Benzo[a]Pyrene,LB
+37011,0.003944552,"Dibenzo[a,h]Anthracene",LB
+37011,2.477738e-05,Mercury,LB
+37011,1.573876,Phenanthrene,LB
+37011,0.001672364,Nitrate portion of PM2.5-PRI,TON
+37011,13.23736,Nitrogen Oxides,TON
+37011,0.01081922,Sulfate Portion of PM2.5-PRI,TON
+37023,2.195356,Propionaldehyde,LB
+37023,18.649238,Xylenes (Mixed Isomers),LB
+37023,0.00824632,Chrysene,LB
+37023,19.407714,Formaldehyde,LB
+37023,0.0004749744,"Dibenzo[a,h]Anthracene",LB
+37023,0.012838552,Arsenic,LB
+37023,0.07083309,Methane,TON
+37023,1266.181,Carbon Dioxide,TON
+37003,0.3191306,Toluene,LB
+37003,0.000255601,Pyrene,LB
+37003,0.0004861088,"Benzo[g,h,i,]Perylene",LB
+37003,0.00010165552,Benzo[k]Fluoranthene,LB
+37003,7.55247e-05,Nickel,LB
+37003,0.0008783894,Methane,TON
+37003,0.01094408,Nitrogen Oxides,TON
+37003,0.009238895,Volatile Organic Compounds,TON
+37079,0.010912066,Benzo[a]Pyrene,LB
+37079,3.194692,"2,2,4-Trimethylpentane",LB
+37079,11.950874,Benzene,LB
+37079,1.1128256,Phenanthrene,LB
+37079,0.1349475,PM10-Primary from certain diesel engines,TON
+37079,2.634059,Nitrogen Oxides,TON
+37081,12.086826,Anthracene,LB
+37081,5.193478,Chrysene,LB
+37081,353.8678,Naphthalene,LB
+37081,54187.23,Carbon Dioxide,TON
+37081,8.435396,Elemental Carbon portion of PM2.5-PRI,TON
+37071,1.5635592,Xylenes (Mixed Isomers),LB
+37071,0.001014793,"Benzo[g,h,i,]Perylene",LB
+37071,0.03216312,Chrysene,LB
+37071,0.002721882,Nickel,LB
+37071,0.2685902,Phenanthrene,LB
+37071,0.1119626,Sulfate Portion of PM2.5-PRI,TON
+37071,24.76752,Pyrene,LB
+37071,1.6734542,Chrysene,LB
+37071,0.4993046,Benzo[a]Pyrene,LB
+37071,0.02045392,"Dibenzo[a,h]Anthracene",LB
+37071,0.0007735364,Mercury,LB
+37069,11594.518,Hexane,LB
+37069,12.657336,Anthracene,LB
+37069,24.55624,Pyrene,LB
+37069,11.637414,"Benzo[g,h,i,]Perylene",LB
+37069,14.863856,Acenaphthene,LB
+37069,80.54748,Phenanthrene,LB
+37069,10.74453,Ammonia,TON
+37069,2.415124,Organic Carbon portion of PM2.5-PRI,TON
+37069,259.3968,Volatile Organic Compounds,TON
+37063,5.486368,PM10 Primary (Filt + Cond),TON
+37063,0.6470336,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.1920022,Sulfur Dioxide,TON
+37063,9.236184,Fluoranthene,LB
+37063,0.03723266,Benzo[k]Fluoranthene,LB
+37063,0.906511,Benzo[a]Pyrene,LB
+37063,15.42882,Phenanthrene,LB
+37059,0.5628122,"1,3-Butadiene",LB
+37059,1.4068502,Acrolein,LB
+37059,0.09341563,PM10-Primary from certain diesel engines,TON
+37059,0.0604672,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.0002001161,Nitrate portion of PM2.5-PRI,TON
+37065,0.13701876,Pyrene,LB
+37065,0.00011884158,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.3813626,Styrene,LB
+37065,0.2410814,Phenanthrene,LB
+37065,0.01767088,Methane,TON
+37065,0.0003358702,Nitrous Oxide,TON
+37065,0.02225086,PM10 Primary (Filt + Cond),TON
+37065,0.007342125,PM2.5 Primary (Filt + Cond),TON
+37065,1.596985,Styrene,LB
+37065,7.932876,"1,3-Butadiene",LB
+37065,1.3094136,Acrolein,LB
+37065,1.3274438,Propionaldehyde,LB
+37065,0.09002516,"Benzo[g,h,i,]Perylene",LB
+37065,0.311273,Acenaphthylene,LB
+37065,0.02157018,Chrysene,LB
+37065,0.003457302,Nickel,LB
+37065,28.23258,Carbon Monoxide,TON
+37065,0.04616276,Nitrous Oxide,TON
+37065,0.04430356,Ammonia,TON
+37061,2.2906,Ethyl Benzene,LB
+37061,1.7626892,Hexane,LB
+37061,1.8647554,"2,2,4-Trimethylpentane",LB
+37061,0.2001368,Acenaphthene,LB
+37061,7.617538,Carbon Monoxide,TON
+37061,0.002868809,Elemental Carbon portion of PM2.5-PRI,TON
+37061,8.9255e-05,Nitrate portion of PM2.5-PRI,TON
+37045,0.0553491,Ethyl Benzene,LB
+37045,0.0016784878,Acrolein,LB
+37045,0.07119708,"2,2,4-Trimethylpentane",LB
+37045,8.736856e-05,Acenaphthene,LB
+37045,8.517471e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37045,9.662835e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,4.720384e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.175544,"2,2,4-Trimethylpentane",LB
+37039,0.0803386,Acetaldehyde,LB
+37039,0.0001731331,Methane,TON
+37039,5.274212,Carbon Dioxide,TON
+37037,0.00264315,Acrolein,LB
+37037,0.05478338,"2,2,4-Trimethylpentane",LB
+37037,0.0302818,Acetaldehyde,LB
+37037,8.220732e-05,Methane,TON
+37035,4.880348,"1,3-Butadiene",LB
+37035,121.65458,Toluene,LB
+37035,0.798182,Propionaldehyde,LB
+37035,87.48882,Xylenes (Mixed Isomers),LB
+37035,1.3588978e-05,Chromium (VI),LB
+37035,0.04618022,"Benzo[g,h,i,]Perylene",LB
+37035,0.012806472,Chrysene,LB
+37035,0.02251148,Manganese,LB
+37035,1.552231,Nitrogen Oxides,TON
+37035,0.6865951,Volatile Organic Compounds,TON
+37025,115.82474,Toluene,LB
+37025,34.08542,Hexane,LB
+37025,5.761272,Acenaphthylene,LB
+37025,0.9842464,Manganese,LB
+37025,0.1921858,Nickel,LB
+37025,7.704464,Fluorene,LB
+37025,37.74399,Carbon Monoxide,TON
+37025,4.860128,PM25-Primary from certain diesel engines,TON
+37025,5.367536,PM2.5 Primary (Filt + Cond),TON
+37025,17.16993,Benzene,LB
+37025,0.8073318,Naphthalene,LB
+37025,7.206456,Carbon Monoxide,TON
+37025,3.223305e-05,Nitrate portion of PM2.5-PRI,TON
+37025,0.7960593,Nitrogen Oxides,TON
+37025,0.04691547,PM10 Primary (Filt + Cond),TON
+37025,0.2733989,Volatile Organic Compounds,TON
+37025,2.160096,Styrene,LB
+37025,8.054544,"1,3-Butadiene",LB
+37025,33.16776,Formaldehyde,LB
+37025,118.31362,Benzene,LB
+37025,0.0002865076,Mercury,LB
+37025,0.03429536,Ammonia,TON
+37025,2.870999,Nitrogen Oxides,TON
+37025,0.0284235,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.3335516,Styrene,LB
+37007,0.02511612,Pyrene,LB
+37007,4.781954,Formaldehyde,LB
+37007,0.008058775,Ammonia,TON
+37007,0.003513877,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.2253812,Volatile Organic Compounds,TON
+37001,13.79624,Ethyl Benzene,LB
+37001,21.23024,Propionaldehyde,LB
+37001,0.2491034,Benz[a]Anthracene,LB
+37001,0.07784458,Manganese,LB
+37001,0.02801404,Arsenic,LB
+37001,3.492056,Phenanthrene,LB
+37001,0.02759559,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.009496662,Sulfate Portion of PM2.5-PRI,TON
+37001,1.8431412e-05,Nickel,LB
+37001,2.826144e-05,Arsenic,LB
+37001,0.003866452,Fluorene,LB
+37001,1.172053,Carbon Monoxide,TON
+37001,0.001974303,PM10 Primary (Filt + Cond),TON
+37001,0.0003515195,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,17.843922,Propionaldehyde,LB
+37189,428.3914,Formaldehyde,LB
+37189,0.05274228,Arsenic,LB
+37189,0.003791056,Nitrate portion of PM2.5-PRI,TON
+37189,1.783595,PM2.5 Primary (Filt + Cond),TON
+37183,0.13637198,"Benzo[g,h,i,]Perylene",LB
+37183,0.16849532,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.454057,Nickel,LB
+37183,30.45666,Pyrene,LB
+37183,9.957612,Acenaphthene,LB
+37183,0.2199134,Nitrous Oxide,TON
+37183,0.03997869,Nitrate portion of PM2.5-PRI,TON
+37199,22.23106,Ethyl Benzene,LB
+37199,1.834148,Anthracene,LB
+37199,2.894462,Fluoranthene,LB
+37199,666.2188,Formaldehyde,LB
+37199,0.000115481,Mercury,LB
+37199,0.08358,Nickel,LB
+37199,3.813808,Fluorene,LB
+37199,1565.9168,Xylenes (Mixed Isomers),LB
+37199,92.27106,Benzene,LB
+37115,0.218483,Ethyl Benzene,LB
+37115,0.009355434,Styrene,LB
+37115,0.05570616,"1,3-Butadiene",LB
+37115,0.0003620028,Anthracene,LB
+37115,1.3394388e-07,Chromium (VI),LB
+37115,0.0004769036,"Benzo[g,h,i,]Perylene",LB
+37115,0.00017917934,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.00012828808,Benzo[b]Fluoranthene,LB
+37115,0.00012828808,Benzo[k]Fluoranthene,LB
+37115,0.0019243536,Acenaphthylene,LB
+37115,0.12499924,Formaldehyde,LB
+37115,0.00012755584,Benz[a]Anthracene,LB
+37115,0.4852706,Benzene,LB
+37115,0.2685423,Carbon Monoxide,TON
+37115,6.068299e-07,Nitrate portion of PM2.5-PRI,TON
+37115,0.0001530292,Sulfur Dioxide,TON
+37109,0.05949365,Methane,TON
+37109,0.2615884,PM10-Primary from certain diesel engines,TON
+37109,0.004316426,Nitrous Oxide,TON
+37109,0.02238948,Ammonia,TON
+37109,0.003178972,"Benzo[g,h,i,]Perylene",LB
+37109,16.28144,Ethyl Benzene,LB
+37109,8274.692,Xylenes (Mixed Isomers),LB
+37109,64.41487,Volatile Organic Compounds,TON
+37101,0.002366346,Sulfur Dioxide,TON
+37101,0.2232391,Volatile Organic Compounds,TON
+37101,0.007898366,Benzo[b]Fluoranthene,LB
+37101,16.381,Acetaldehyde,LB
+37101,0.4598022,Phenanthrene,LB
+37101,4.147778,Naphthalene,LB
+37101,0.674823,Carbon Monoxide,TON
+37095,3.641754,Naphthalene,LB
+37095,1.041257,Carbon Monoxide,TON
+37095,0.0007011861,Nitrous Oxide,TON
+37095,0.1960187,PM10 Primary (Filt + Cond),TON
+37083,0.18970652,"1,3-Butadiene",LB
+37083,1.5467018,Hexane,LB
+37083,0.0018221038,Anthracene,LB
+37083,0.0001322971,Nickel,LB
+37083,59.56641,Carbon Dioxide,TON
+37083,5.974319e-05,Sulfate Portion of PM2.5-PRI,TON
+37053,1.933605,Fluoranthene,LB
+37053,0.007813112,Benzo[k]Fluoranthene,LB
+37053,0.8019242,Acenaphthene,LB
+37053,3.160918,Phenanthrene,LB
+37053,3178.831,Carbon Dioxide,TON
+37053,10.162984,Acenaphthylene,LB
+37053,0.7063512,Chrysene,LB
+37053,0.6597138,Arsenic,LB
+37053,115.78046,Naphthalene,LB
+37053,1.008662,Nitrous Oxide,TON
+37053,1.1106558,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,47.74616,Acrolein,LB
+37053,1.9176554,Anthracene,LB
+37053,5567.682,Xylenes (Mixed Isomers),LB
+37051,351.5106,"1,3-Butadiene",LB
+37051,0.7229696,Chrysene,LB
+37051,0.02372088,"Dibenzo[a,h]Anthracene",LB
+37029,3.697146,Naphthalene,LB
+37029,6.503461e-05,Nitrate portion of PM2.5-PRI,TON
+37029,0.03513682,PM2.5 Primary (Filt + Cond),TON
+37029,0.8506432,Hexane,LB
+37029,0.0004609332,"Benzo[g,h,i,]Perylene",LB
+37029,0.00013004278,"Dibenzo[a,h]Anthracene",LB
+37023,5.381188e-05,Mercury,LB
+37023,2.322977e-05,Nitrate portion of PM2.5-PRI,TON
+37023,0.004155815,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.00026428,Sulfate Portion of PM2.5-PRI,TON
+37171,0.00912187,Methane,TON
+37171,1.637552,Carbon Monoxide,TON
+37171,5.826229,Carbon Dioxide,TON
+37171,0.000123647,Sulfur Dioxide,TON
+37171,3.507515e-05,Sulfate Portion of PM2.5-PRI,TON
+37171,0.627704,"1,3-Butadiene",LB
+37171,1.2037014e-07,Chromium (VI),LB
+37171,1.5240296,Formaldehyde,LB
+37171,6.509826,Anthracene,LB
+37171,0.10894936,Mercury,LB
+37171,153887.2,Carbon Dioxide,TON
+37171,3.512647,Nitrous Oxide,TON
+37167,0.4871046,Organic Carbon portion of PM2.5-PRI,TON
+37167,2.640379,PM10 Primary (Filt + Cond),TON
+37167,0.2286637,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.0462143,Sulfate Portion of PM2.5-PRI,TON
+37167,5.788564,Styrene,LB
+37167,25.59662,Toluene,LB
+37167,1.1045762,Benz[a]Anthracene,LB
+37165,0.7453408,Anthracene,LB
+37165,1.1865428,Acenaphthylene,LB
+37165,0.2763874,Chrysene,LB
+37165,1.5170788,Fluorene,LB
+37165,0.002478293,Nitrate portion of PM2.5-PRI,TON
+37165,0.2185118,Organic Carbon portion of PM2.5-PRI,TON
+37165,1.089032,PM2.5 Primary (Filt + Cond),TON
+37165,0.03891998,Fluorene,LB
+37165,0.005218814,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.03193481,Volatile Organic Compounds,TON
+37165,0.17859858,Ethyl Benzene,LB
+37165,0.18110802,"1,3-Butadiene",LB
+37165,5.340736,Formaldehyde,LB
+37165,0.003758474,Benzo[a]Pyrene,LB
+37165,0.0006614422,Nickel,LB
+37165,0.00368951,"1,3-Butadiene",LB
+37165,2.562786e-05,Anthracene,LB
+37165,5.242526e-05,"Benzo[g,h,i,]Perylene",LB
+37165,1.9697e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,1.2406214e-05,Benzo[k]Fluoranthene,LB
+37165,1.101295e-05,Chrysene,LB
+37165,0.03014318,Benzene,LB
+37165,5.759521e-08,Nitrate portion of PM2.5-PRI,TON
+37165,1.082046e-05,Organic Carbon portion of PM2.5-PRI,TON
+37165,6.036424e-06,Sulfur Dioxide,TON
+37165,0.0004951892,Volatile Organic Compounds,TON
+37153,3.677648,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,3.114194,Chrysene,LB
+37153,648.7036,Naphthalene,LB
+37153,126917.7,Carbon Dioxide,TON
+37135,2.791084,"1,3-Butadiene",LB
+37135,7.393486,Toluene,LB
+37135,0.3203424,Anthracene,LB
+37135,0.004395118,"Benzo[g,h,i,]Perylene",LB
+37135,0.00561204,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.002056199,Methane,TON
+37131,0.0005540899,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.1992237,Nitrogen Oxides,TON
+37131,0.001798117,Organic Carbon portion of PM2.5-PRI,TON
+37131,1.910932,Ethyl Benzene,LB
+37131,0.05884118,Propionaldehyde,LB
+37131,0.0018368778,Benzo[k]Fluoranthene,LB
+37131,0.014024156,Acenaphthylene,LB
+37131,1.0055874,Formaldehyde,LB
+37131,0.0011931504,Manganese,LB
+37131,11129.758,Toluene,LB
+37131,140.53822,Naphthalene,LB
+37117,1.329224,Nitrogen Oxides,TON
+37117,0.006243611,Organic Carbon portion of PM2.5-PRI,TON
+37117,142.15084,Toluene,LB
+37117,36.12128,Benzene,LB
+37125,0.005830146,Nitrogen Oxides,TON
+37123,0.01178111,Organic Carbon portion of PM2.5-PRI,TON
+37123,6.052326,Toluene,LB
+37123,2.474312e-05,Chromium (VI),LB
+37123,0.000301172,"Dibenzo[a,h]Anthracene",LB
+37123,0.7725872,Phenanthrene,LB
+37123,0.09640271,PM10-Primary from certain diesel engines,TON
+37123,0.08868803,PM25-Primary from certain diesel engines,TON
+37109,1.178943,"1,3-Butadiene",LB
+37109,0.00887251,Benzo[b]Fluoranthene,LB
+37109,1.1087686,"2,2,4-Trimethylpentane",LB
+37109,17.452138,Acetaldehyde,LB
+37109,4.372158,Naphthalene,LB
+37109,0.1062045,PM2.5 Primary (Filt + Cond),TON
+37103,1.0343344,"2,2,4-Trimethylpentane",LB
+37103,0.5395834,Phenanthrene,LB
+37103,0.001130618,Nitrous Oxide,TON
+37103,1.4120864,Ethyl Benzene,LB
+37093,7.371034e-06,Benzo[b]Fluoranthene,LB
+37093,0.00917465,Formaldehyde,LB
+37093,4.01328e-07,Arsenic,LB
+37091,0.005048974,Benzo[a]Pyrene,LB
+37091,0.01422817,Methane,TON
+37091,190.9108,Carbon Dioxide,TON
+37091,0.0001430718,Sulfate Portion of PM2.5-PRI,TON
+37091,0.367454,Styrene,LB
+37091,39.67146,Xylenes (Mixed Isomers),LB
+37089,0.3934898,Acrolein,LB
+37089,0.007120028,Chrysene,LB
+37089,192.5994,Carbon Dioxide,TON
+37089,3.660545e-05,Nitrate portion of PM2.5-PRI,TON
+37087,66.99096,"2,2,4-Trimethylpentane",LB
+37073,3.010436,Ethyl Benzene,LB
+37073,0.0900362,Styrene,LB
+37073,0.5039222,"1,3-Butadiene",LB
+37073,0.0695734,Acrolein,LB
+37073,9.45956e-05,Nickel,LB
+37073,0.003770664,Acenaphthene,LB
+37073,29.83417,Carbon Dioxide,TON
+37081,87.98914,Styrene,LB
+37081,198.14494,"1,3-Butadiene",LB
+37081,27.3333,Fluoranthene,LB
+37081,0.02677364,"Dibenzo[a,h]Anthracene",LB
+37081,565.0436,Benzene,LB
+37081,0.0012804546,Mercury,LB
+37081,38966.48,Carbon Dioxide,TON
+37081,35.06742,Volatile Organic Compounds,TON
+37075,0.2030424,Ethyl Benzene,LB
+37075,0.000883802,Nickel,LB
+37075,0.04152618,Fluorene,LB
+37075,0.1508316,Carbon Monoxide,TON
+37075,0.01602816,PM10-Primary from certain diesel engines,TON
+37075,0.001833246,Ammonia,TON
+37069,572.4952,Hexane,LB
+37069,0.3826516,Fluoranthene,LB
+37069,0.07200028,Chrysene,LB
+37069,0.002229676,"Dibenzo[a,h]Anthracene",LB
+37069,0.0002821085,Nitrate portion of PM2.5-PRI,TON
+37069,0.02584868,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.03243273,Sulfur Dioxide,TON
+37059,1.22886,PM25-Primary from certain diesel engines,TON
+37059,0.0576706,Ammonia,TON
+37059,0.2836143,Organic Carbon portion of PM2.5-PRI,TON
+37059,6.453046,Hexane,LB
+37059,2.770768,Pyrene,LB
+37119,21.65812,Benzene,LB
+37115,0.00014871196,Manganese,LB
+37083,0.0015500144,Benz[a]Anthracene,LB
+37083,0.0748102,Naphthalene,LB
+37079,7.535458,Toluene,LB
+37079,0.00647236,Pyrene,LB
+37079,0.005708652,Fluoranthene,LB
+37079,0.00583026,Benzo[a]Pyrene,LB
+37079,0.004237734,Arsenic,LB
+37079,0.003602836,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.14714114,Propionaldehyde,LB
+37175,0.07174276,"2,2,4-Trimethylpentane",LB
+37175,21.47019,Carbon Dioxide,TON
+37175,0.1139312,Nitrogen Oxides,TON
+37175,0.002916945,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.00659227,PM2.5 Primary (Filt + Cond),TON
+37175,0.01610133,Volatile Organic Compounds,TON
+37175,0.05422632,Fluorene,LB
+37175,0.03678399,PM10-Primary from certain diesel engines,TON
+37175,0.02070874,Elemental Carbon portion of PM2.5-PRI,TON
+37169,1.6968392,Styrene,LB
+37169,0.06163478,Anthracene,LB
+37169,1.6840008e-05,Chromium (VI),LB
+37169,0.0210094,Benzo[k]Fluoranthene,LB
+37169,0.02104064,Benz[a]Anthracene,LB
+37169,0.012401302,Manganese,LB
+37169,0.06690302,Methane,TON
+37169,0.009465615,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.4832862,Nitrogen Oxides,TON
+37169,0.002777506,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,2.01875,"1,3-Butadiene",LB
+37169,41.06836,Toluene,LB
+37169,0.0004881604,Nickel,LB
+37167,6.279278,Acrolein,LB
+37167,3057.964,Toluene,LB
+37167,0.0003657502,Nitrate portion of PM2.5-PRI,TON
+37163,0.3493776,Acrolein,LB
+37163,3.722102e-06,Chromium (VI),LB
+37163,24.4847,"2,2,4-Trimethylpentane",LB
+37163,0.002594098,Manganese,LB
+37163,0.018998882,Acenaphthene,LB
+37163,0.002003264,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.003288195,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,3.280292,Propionaldehyde,LB
+37161,0.02270898,Benzo[a]Pyrene,LB
+37161,2.44413,Carbon Monoxide,TON
+37161,0.00177301,Nitrous Oxide,TON
+37161,0.006423449,Sulfur Dioxide,TON
+37161,0.004758965,Sulfate Portion of PM2.5-PRI,TON
+37157,1.9223718e-05,Nickel,LB
+37157,2.947744e-05,Arsenic,LB
+37157,0.09234252,Naphthalene,LB
+37157,1.14348,Carbon Monoxide,TON
+37157,3.480159e-06,Nitrate portion of PM2.5-PRI,TON
+37157,1.3279778,Hexane,LB
+37157,0.0012270836,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.0012201092,Benzo[a]Pyrene,LB
+37139,54.15242,Formaldehyde,LB
+37139,0.0682739,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.008664086,Ammonia,TON
+37125,4.545318,Hexane,LB
+37125,0.9259628,Pyrene,LB
+37125,0.00248633,"Benzo[g,h,i,]Perylene",LB
+37125,4.684244,"2,2,4-Trimethylpentane",LB
+37125,0.02498866,Manganese,LB
+37125,19.34514,Naphthalene,LB
+37125,8.790352,Carbon Monoxide,TON
+37125,1305.023,Carbon Dioxide,TON
+37125,0.1174674,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.03089254,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.714765,Toluene,LB
+37069,0.0005725044,Pyrene,LB
+37069,0.0004430136,Arsenic,LB
+37069,0.002360224,Methane,TON
+37069,0.3045419,Carbon Monoxide,TON
+37069,0.003327504,PM10 Primary (Filt + Cond),TON
+37069,0.0003391443,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.001224862,Sulfur Dioxide,TON
+37065,0.5934268,Formaldehyde,LB
+37065,0.000808501,Benzo[a]Pyrene,LB
+37065,61.42063,Carbon Dioxide,TON
+37061,0.06338282,Acrolein,LB
+37061,0.5843794,Hexane,LB
+37061,0.00125394,Pyrene,LB
+37061,0.004080914,"Benzo[g,h,i,]Perylene",LB
+37061,0.001512775,Benzo[a]Pyrene,LB
+37061,0.001475044,Manganese,LB
+37061,6.695674e-05,Mercury,LB
+37061,1.027462,Carbon Monoxide,TON
+37061,0.08575376,Nitrogen Oxides,TON
+37049,0.2411097,Volatile Organic Compounds,TON
+37171,8.038556,Hexane,LB
+37171,0.009020754,Anthracene,LB
+37171,0.019076656,Pyrene,LB
+37171,0.05950782,"Benzo[g,h,i,]Perylene",LB
+37171,0.07897984,Methane,TON
+37171,0.009770618,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.04012376,Sulfur Dioxide,TON
+37171,0.6149436,Volatile Organic Compounds,TON
+37165,2.190264,Ethyl Benzene,LB
+37165,0.408095,"1,3-Butadiene",LB
+37165,0.007465412,Pyrene,LB
+37165,0.008279866,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.017632882,Acenaphthylene,LB
+37165,0.008172552,Benzo[a]Pyrene,LB
+37165,0.00191395,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.007366832,Nitrous Oxide,TON
+37165,0.01206387,PM2.5 Primary (Filt + Cond),TON
+37171,98.55454,Ethyl Benzene,LB
+37171,183.2872,Toluene,LB
+37171,26.79924,Phenanthrene,LB
+37169,0.0013407548,Benzo[a]Pyrene,LB
+37169,0.8973194,"2,2,4-Trimethylpentane",LB
+37169,0.018338016,Acrolein,LB
+37169,0.001285418,PM2.5 Primary (Filt + Cond),TON
+37165,0.1841195,Styrene,LB
+37165,14.949278,Xylenes (Mixed Isomers),LB
+37165,0.00010018828,"Dibenzo[a,h]Anthracene",LB
+37165,4.073022,"2,2,4-Trimethylpentane",LB
+37165,0.008099248,Acenaphthene,LB
+37165,3.589273,Carbon Monoxide,TON
+37165,0.0002079702,Sulfate Portion of PM2.5-PRI,TON
+37165,340.389,Hexane,LB
+37165,0.6494924,Fluoranthene,LB
+37165,0.2086946,PM2.5 Primary (Filt + Cond),TON
+37165,0.1498616,Sulfur Dioxide,TON
+37165,5.144403,Volatile Organic Compounds,TON
+37165,0.0726786,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.0727051,Benzo[a]Pyrene,LB
+37165,0.014271816,Manganese,LB
+37165,0.0006951706,Mercury,LB
+37165,8.563138,Naphthalene,LB
+37165,43.32368,Carbon Monoxide,TON
+37165,0.008969666,Nitrous Oxide,TON
+37155,0.02408744,Pyrene,LB
+37155,28.65044,Xylenes (Mixed Isomers),LB
+37155,0.0016313442,Nickel,LB
+37059,0.1054916,Volatile Organic Compounds,TON
+37005,0.004629166,Styrene,LB
+37005,0.3386486,Xylenes (Mixed Isomers),LB
+37005,0.2440754,Formaldehyde,LB
+37005,0.0002158158,Manganese,LB
+37005,0.0003118666,Nitrous Oxide,TON
+37005,8.966657e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.000240908,Mercury,LB
+37169,0.03243501,Methane,TON
+37169,0.02399048,Ammonia,TON
+37169,0.004743408,Organic Carbon portion of PM2.5-PRI,TON
+37169,9.742354,Formaldehyde,LB
+37169,0.01074451,PM2.5 Primary (Filt + Cond),TON
+37129,0.0019865634,Anthracene,LB
+37129,0.0019561584,Chrysene,LB
+37129,0.004287616,Fluorene,LB
+37129,0.1596749,Nitrogen Oxides,TON
+37129,0.003900632,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.0002506803,PM10 Primary (Filt + Cond),TON
+37007,0.0001212837,PM2.5 Primary (Filt + Cond),TON
+37007,7.54173e-05,Benzo[b]Fluoranthene,LB
+37007,7.54173e-05,Benzo[k]Fluoranthene,LB
+37007,0.0009979,Acenaphthylene,LB
+37007,2.559148e-06,"Dibenzo[a,h]Anthracene",LB
+37019,3.17078,Benz[a]Anthracene,LB
+37019,18.56007,Ammonia,TON
+37019,208.095,Volatile Organic Compounds,TON
+37019,213.7424,Styrene,LB
+37019,15.600692,Pyrene,LB
+37019,3.27153,Benzo[b]Fluoranthene,LB
+37019,13.68405,Fluoranthene,LB
+37005,0.0953806,Xylenes (Mixed Isomers),LB
+37005,2.358626e-07,Chromium (VI),LB
+37005,1.2369664,Formaldehyde,LB
+37005,0.013736076,Phenanthrene,LB
+37005,0.00789375,Fluorene,LB
+37005,0.006755968,Volatile Organic Compounds,TON
+37005,0.04610304,Fluoranthene,LB
+37005,0.008539092,Chrysene,LB
+37005,6.709548,Formaldehyde,LB
+37005,0.6046452,Benzene,LB
+37005,0.04307152,Fluorene,LB
+37005,0.7089614,Naphthalene,LB
+37005,0.01440045,PM25-Primary from certain diesel engines,TON
+37005,7.929261e-05,Nitrate portion of PM2.5-PRI,TON
+37005,0.0005872726,Sulfate Portion of PM2.5-PRI,TON
+37081,0.014407988,Manganese,LB
+37081,4.958109,Carbon Monoxide,TON
+37081,3.651901e-05,Nitrate portion of PM2.5-PRI,TON
+37081,1.7978356,Ethyl Benzene,LB
+37081,3.168062,Hexane,LB
+37081,0.02551652,"Benzo[g,h,i,]Perylene",LB
+37039,0.06818934,"1,3-Butadiene",LB
+37039,0.0004262968,Anthracene,LB
+37039,4.82328e-06,Chromium (VI),LB
+37039,0.002142402,Acenaphthylene,LB
+37039,0.0003562652,Chrysene,LB
+37039,5.469066,Acetaldehyde,LB
+37039,0.03436618,Volatile Organic Compounds,TON
+37029,0.00013397578,Manganese,LB
+37029,2.987811e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.006441013,Nitrogen Oxides,TON
+37029,0.0005540953,PM10 Primary (Filt + Cond),TON
+37029,0.0309025,Ethyl Benzene,LB
+37029,0.1106134,Xylenes (Mixed Isomers),LB
+37029,9.25373e-05,Fluoranthene,LB
+37029,4.697637e-06,Sulfate Portion of PM2.5-PRI,TON
+37025,16.882614,"2,2,4-Trimethylpentane",LB
+37011,0.182727,Hexane,LB
+37011,0.0002357766,Benzo[b]Fluoranthene,LB
+37011,0.0001885729,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.3125854,Ethyl Benzene,LB
+37113,1.3240918,Toluene,LB
+37113,0.00241747,"Benzo[g,h,i,]Perylene",LB
+37113,0.000488307,Benzo[b]Fluoranthene,LB
+37113,0.0003814152,Chrysene,LB
+37113,0.830227,Formaldehyde,LB
+37113,0.02751998,Naphthalene,LB
+37113,0.001087127,Nitrous Oxide,TON
+37101,0.03695383,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.002227626,Sulfate Portion of PM2.5-PRI,TON
+37101,14.776128,Ethyl Benzene,LB
+37101,0.02383108,Chrysene,LB
+37101,52.59014,Formaldehyde,LB
+37127,2582.794,Ethyl Benzene,LB
+37117,11.601314,Hexane,LB
+37117,0.002025056,Benzo[k]Fluoranthene,LB
+37117,0.007858632,Acenaphthene,LB
+37117,61.59144,Carbon Dioxide,TON
+37117,0.0009537964,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.2932352,Ammonia,TON
+37111,42.80918,Acrolein,LB
+37111,3.578814,Fluoranthene,LB
+37111,2.809612,Acenaphthylene,LB
+37111,0.11437094,Nickel,LB
+37111,1.671765,Acenaphthene,LB
+37111,6.177018,Phenanthrene,LB
+37119,0.13277594,Benz[a]Anthracene,LB
+37113,26.8064,Xylenes (Mixed Isomers),LB
+37113,0.017046672,Fluoranthene,LB
+37113,10.65976,Benzene,LB
+37113,0.001235808,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.002179382,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.0004437112,Sulfur Dioxide,TON
+37109,1.3689864,Benz[a]Anthracene,LB
+37109,1.6122996,Acenaphthene,LB
+37109,7.022278,Styrene,LB
+37109,1.8430754,Anthracene,LB
+37109,14.23487,Carbon Monoxide,TON
+37109,0.3074772,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,2.849474,Volatile Organic Compounds,TON
+37091,6.100748,Ethyl Benzene,LB
+37091,13.272994,Acrolein,LB
+37091,0.7757796,Acenaphthylene,LB
+37091,0.17093464,Chrysene,LB
+37091,190.57188,Formaldehyde,LB
+37091,76.58326,Acetaldehyde,LB
+37091,0.1850368,Methane,TON
+37091,1.172353,PM10 Primary (Filt + Cond),TON
+37103,1.8409332,Toluene,LB
+37103,0.6032264,Hexane,LB
+37103,2.155588,Benzene,LB
+37103,0.004753225,PM25-Primary from certain diesel engines,TON
+37103,0.001045342,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.002115313,Sulfur Dioxide,TON
+37095,0.0507619,Xylenes (Mixed Isomers),LB
+37095,3.758032e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,2.0182e-05,"Dibenzo[a,h]Anthracene",LB
+37095,0.002196386,PM10 Primary (Filt + Cond),TON
+37089,0.02132474,"Dibenzo[a,h]Anthracene",LB
+37089,0.04513336,Arsenic,LB
+37089,2.23721,Acenaphthene,LB
+37089,4.97092,Fluorene,LB
+37089,0.7518666,Organic Carbon portion of PM2.5-PRI,TON
+37089,3.009091,PM10 Primary (Filt + Cond),TON
+37089,1.860093,PM2.5 Primary (Filt + Cond),TON
+37087,1.079596,PM10 Primary (Filt + Cond),TON
+37087,0.2502387,Sulfur Dioxide,TON
+37087,430.7568,Ethyl Benzene,LB
+37087,2334.992,Toluene,LB
+37087,0.2545272,Benzo[k]Fluoranthene,LB
+37087,0.2024012,Manganese,LB
+37061,9.98806,Styrene,LB
+37061,0.02153054,Benzo[k]Fluoranthene,LB
+37061,0.02148572,"Dibenzo[a,h]Anthracene",LB
+37061,1.7296746,Benz[a]Anthracene,LB
+37061,0.2075852,Manganese,LB
+37061,5.04505,Fluorene,LB
+37061,0.856311,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.3239987,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.036404,Manganese,LB
+37061,0.016385044,Arsenic,LB
+37061,0.9633032,Acenaphthene,LB
+37061,0.1132883,Methane,TON
+37061,0.01817417,Sulfur Dioxide,TON
+37055,0.0005330772,Nitrous Oxide,TON
+37055,0.06532143,PM2.5 Primary (Filt + Cond),TON
+37055,0.4055868,"1,3-Butadiene",LB
+37055,0.1058259,Fluoranthene,LB
+37055,0.0209324,Chrysene,LB
+37055,0.3590666,"2,2,4-Trimethylpentane",LB
+37055,0.03534944,Benz[a]Anthracene,LB
+37039,0.6768966,"1,3-Butadiene",LB
+37039,1.7020266,Acrolein,LB
+37039,0.03429792,Chrysene,LB
+37039,22.11948,Formaldehyde,LB
+37039,0.018124938,Benzo[a]Pyrene,LB
+37039,0.0684985,Acenaphthene,LB
+37039,0.2750792,Phenanthrene,LB
+37039,0.007315057,Ammonia,TON
+37039,0.01098735,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,2.536436,"1,3-Butadiene",LB
+37037,0.2379276,Anthracene,LB
+37037,0.0019981132,"Benzo[g,h,i,]Perylene",LB
+37037,0.4328472,Acenaphthylene,LB
+37037,1.9321514,"2,2,4-Trimethylpentane",LB
+37037,1.6877374e-05,Mercury,LB
+37037,0.156991,PM25-Primary from certain diesel engines,TON
+37037,0.01579728,Ammonia,TON
+37037,6.162631,Nitrogen Oxides,TON
+37037,0.2416531,PM10 Primary (Filt + Cond),TON
+37037,0.0201881,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.009192092,Sulfur Dioxide,TON
+37025,0.11403152,Ethyl Benzene,LB
+37025,0.6316116,Xylenes (Mixed Isomers),LB
+37025,0.0074011,Manganese,LB
+37025,16.048172,Acetaldehyde,LB
+37025,0.1300001,Volatile Organic Compounds,TON
+37029,0.00016973922,Anthracene,LB
+37029,0.00410107,Propionaldehyde,LB
+37029,0.0003385594,Pyrene,LB
+37029,2.19837e-08,Chromium (VI),LB
+37029,0.00017148022,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.000297495,Fluoranthene,LB
+37029,0.0001701045,Benzo[a]Pyrene,LB
+37029,1.3616214e-05,Manganese,LB
+37029,4.213664e-06,Arsenic,LB
+37029,3.849473e-05,Nitrous Oxide,TON
+37029,2.97985e-05,Sulfur Dioxide,TON
+37131,0.03258262,Propionaldehyde,LB
+37131,0.00015597512,Benz[a]Anthracene,LB
+37131,0.0003576794,Manganese,LB
+37131,0.00018321854,Nickel,LB
+37131,0.0007789662,Phenanthrene,LB
+37131,0.013679026,Acrolein,LB
+37131,0.3095858,Toluene,LB
+37131,0.2230271,Carbon Monoxide,TON
+37131,24.69411,Carbon Dioxide,TON
+37131,8.247638e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.0002982099,Nitrous Oxide,TON
+37169,1.1270878,Acenaphthylene,LB
+37169,4.366968e-05,Mercury,LB
+37169,0.06545561,Methane,TON
+37169,3377.346,Carbon Dioxide,TON
+37169,1.213178,PM10 Primary (Filt + Cond),TON
+37155,0.003488248,Nitrous Oxide,TON
+37155,0.01510045,Sulfur Dioxide,TON
+37155,1768.798,Carbon Dioxide,TON
+37163,0.009273088,"Dibenzo[a,h]Anthracene",LB
+37163,852.0918,"2,2,4-Trimethylpentane",LB
+37163,0.781723,Methane,TON
+37153,5234.338,Benzene,LB
+37153,1780.952,Acetaldehyde,LB
+37153,1257.72,Carbon Monoxide,TON
+37153,8.778153,PM10 Primary (Filt + Cond),TON
+37153,13024.324,Xylenes (Mixed Isomers),LB
+37153,4814.712,"2,2,4-Trimethylpentane",LB
+37153,1.6188224,Benz[a]Anthracene,LB
+37145,0.003567837,Nitrate portion of PM2.5-PRI,TON
+37145,0.06161704,Benzo[b]Fluoranthene,LB
+37145,1.9766334,Fluoranthene,LB
+37145,0.390644,Chrysene,LB
+37145,222.2354,Formaldehyde,LB
+37129,0.00012102342,Pyrene,LB
+37129,4.05196e-05,Acenaphthene,LB
+37129,0.1664273,Nitrogen Oxides,TON
+37139,0.010598536,Propionaldehyde,LB
+37139,1.1937242,Xylenes (Mixed Isomers),LB
+37139,4.538708e-08,Chromium (VI),LB
+37139,0.0004264482,PM2.5 Primary (Filt + Cond),TON
+37139,0.204187,Fluoranthene,LB
+37139,0.03988782,Benzo[k]Fluoranthene,LB
+37139,0.636485,Acenaphthylene,LB
+37139,0.05409638,Benzo[a]Pyrene,LB
+37139,0.0012377168,"Dibenzo[a,h]Anthracene",LB
+37139,0.13974216,Acenaphthene,LB
+37139,0.009420798,Nitrous Oxide,TON
+37139,0.001665159,Sulfate Portion of PM2.5-PRI,TON
+37139,5.201137,Volatile Organic Compounds,TON
+37127,4.56473,Ethyl Benzene,LB
+37127,9.251806,Toluene,LB
+37127,0.002305218,Benzo[k]Fluoranthene,LB
+37127,0.7601582,Acenaphthylene,LB
+37127,3.430286,"2,2,4-Trimethylpentane",LB
+37127,0.2142718,Benz[a]Anthracene,LB
+37013,1.6096754,Styrene,LB
+37013,113.27452,Formaldehyde,LB
+37013,1.4015104e-05,Mercury,LB
+37013,638.1845,Carbon Dioxide,TON
+37013,0.291238,PM10-Primary from certain diesel engines,TON
+37013,0.005580957,Sulfur Dioxide,TON
+37007,18.47823,Acrolein,LB
+37007,1.2071162,Acenaphthylene,LB
+37007,0.2828606,Chrysene,LB
+37007,0.7182804,Acenaphthene,LB
+37007,0.1556826,Methane,TON
+37007,0.002537526,Nitrate portion of PM2.5-PRI,TON
+37005,1.2332932,Formaldehyde,LB
+37005,0.0003309778,Manganese,LB
+37005,5.43758e-05,Nickel,LB
+37005,0.003470328,Anthracene,LB
+37073,0.003149664,Fluoranthene,LB
+37073,0.002848338,Manganese,LB
+37073,0.001365806,Nickel,LB
+37073,0.001926786,Acenaphthene,LB
+37073,0.0007450329,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.2176422,Nitrogen Oxides,TON
+37073,0.000110421,Sulfate Portion of PM2.5-PRI,TON
+37021,12.067804,Styrene,LB
+37021,85.95916,Xylenes (Mixed Isomers),LB
+37021,4.721862,Acenaphthylene,LB
+37021,0.08483558,Arsenic,LB
+37021,84.63668,Carbon Monoxide,TON
+37021,0.1660683,PM25-Primary from certain diesel engines,TON
+37013,0.002727424,Benzo[b]Fluoranthene,LB
+37013,0.0003765898,Benzo[k]Fluoranthene,LB
+37013,0.0001620777,Nitrate portion of PM2.5-PRI,TON
+37013,0.05753146,PM2.5 Primary (Filt + Cond),TON
+37019,4829.554,Hexane,LB
+37019,725.2562,Benzene,LB
+37017,3.802026e-06,Nitrous Oxide,TON
+37017,0.004600332,Ethyl Benzene,LB
+37017,0.0001804992,Styrene,LB
+37017,0.0009848438,"1,3-Butadiene",LB
+37017,6.514226e-06,Anthracene,LB
+37013,0.008285596,Pyrene,LB
+37013,12.67679,Xylenes (Mixed Isomers),LB
+37013,0.004998214,"Benzo[g,h,i,]Perylene",LB
+37013,0.0018779088,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.00145681,Manganese,LB
+37013,1.6525546,Acetaldehyde,LB
+37013,6.212122e-06,Nitrate portion of PM2.5-PRI,TON
+37013,0.00085492,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.0002913028,Benzo[b]Fluoranthene,LB
+37011,0.008805276,Anthracene,LB
+37011,0.013842344,Acenaphthylene,LB
+37011,0.003384506,Chrysene,LB
+37011,0.0003133206,Nickel,LB
+37011,0.017678004,Fluorene,LB
+37011,20.4585,Carbon Dioxide,TON
+37011,0.0001770628,Sulfur Dioxide,TON
+37011,1.2933586e-06,Fluoranthene,LB
+37011,3.870448e-07,Chrysene,LB
+37011,7.772862e-07,Benzo[a]Pyrene,LB
+37011,1.7989136e-08,"Dibenzo[a,h]Anthracene",LB
+37011,8.374654e-07,Acenaphthene,LB
+37011,0.0004578013,Carbon Monoxide,TON
+37065,1.8919666,Ethyl Benzene,LB
+37065,15.095348,Toluene,LB
+37027,0.5861662,Toluene,LB
+37027,0.000506213,Benzo[a]Pyrene,LB
+37027,0.0002342024,Benz[a]Anthracene,LB
+37027,0.0001482078,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.001143392,Sulfur Dioxide,TON
+37165,4.067716,Xylenes (Mixed Isomers),LB
+37153,0.03106192,Styrene,LB
+37153,0.258847,Propionaldehyde,LB
+37153,0.0009194974,Chrysene,LB
+37153,1.365945,"2,2,4-Trimethylpentane",LB
+37153,0.0015476482,Nickel,LB
+37153,0.00237305,Arsenic,LB
+37153,0.05601726,Naphthalene,LB
+37153,0.002436135,Nitrous Oxide,TON
+37153,8.959915e-06,Nitrate portion of PM2.5-PRI,TON
+37181,0.002366472,Benzo[b]Fluoranthene,LB
+37181,0.002366472,Benzo[k]Fluoranthene,LB
+37181,0.00228869,Benz[a]Anthracene,LB
+37197,0.011178854,Chrysene,LB
+37197,0.8598464,Benzene,LB
+37197,0.06243998,Fluorene,LB
+37197,0.00208348,Ammonia,TON
+37197,0.02412053,PM2.5 Primary (Filt + Cond),TON
+37197,0.07253416,Chrysene,LB
+37197,20.85102,Acetaldehyde,LB
+37185,1.441896,Toluene,LB
+37185,20.30774,Formaldehyde,LB
+37185,0.006024782,Manganese,LB
+37185,7.149284e-06,Mercury,LB
+37185,0.007214706,Ammonia,TON
+37185,0.06102922,PM2.5 Primary (Filt + Cond),TON
+37189,306.9374,Styrene,LB
+37189,3.505524,Benz[a]Anthracene,LB
+37189,10.78058,Ammonia,TON
+37189,0.01401832,Nitrate portion of PM2.5-PRI,TON
+37183,45909.28,Xylenes (Mixed Isomers),LB
+37183,357.3804,Volatile Organic Compounds,TON
+37199,0.005888246,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.15223454,Chrysene,LB
+37199,173.20834,Formaldehyde,LB
+37199,0.0772016,Benzo[a]Pyrene,LB
+37199,0.4154448,Acenaphthene,LB
+37199,0.8945154,Fluorene,LB
+37199,4.769674,Ethyl Benzene,LB
+37199,11.895534,Xylenes (Mixed Isomers),LB
+37199,0.00313899,"Dibenzo[a,h]Anthracene",LB
+37199,4.634434,Carbon Monoxide,TON
+37199,0.7683868,PM10 Primary (Filt + Cond),TON
+37199,0.05394908,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,2.732894,Formaldehyde,LB
+37193,0.0030538,Benz[a]Anthracene,LB
+37193,0.005320474,Ammonia,TON
+37193,0.002624776,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.1780097,Volatile Organic Compounds,TON
+37193,0.2039588,Styrene,LB
+37187,9.761594e-05,"Benzo[g,h,i,]Perylene",LB
+37187,0.04509694,Acenaphthylene,LB
+37187,0.994437,Naphthalene,LB
+37187,0.0002830829,Sulfate Portion of PM2.5-PRI,TON
+37183,34.35782,Styrene,LB
+37183,23.81252,Pyrene,LB
+37183,0.001797733,Chromium (VI),LB
+37183,18.260364,Fluoranthene,LB
+37183,3947.74,Formaldehyde,LB
+37183,18.33966,Fluorene,LB
+37183,110.4652,Carbon Monoxide,TON
+37183,7.441404,Elemental Carbon portion of PM2.5-PRI,TON
+37183,16.27152,PM10-Primary from certain diesel engines,TON
+37183,34.66788,Pyrene,LB
+37183,250.8922,Xylenes (Mixed Isomers),LB
+37183,0.15845648,"Benzo[g,h,i,]Perylene",LB
+37183,0.7879284,Benzo[b]Fluoranthene,LB
+37181,0.06819806,Toluene,LB
+37181,0.04530644,Xylenes (Mixed Isomers),LB
+37181,3.191058e-05,Fluoranthene,LB
+37181,0.01000031,Carbon Monoxide,TON
+37181,1.777432e-05,PM2.5 Primary (Filt + Cond),TON
+37179,1.792949,PM10 Primary (Filt + Cond),TON
+37179,39.12712,Acrolein,LB
+37179,12.82609,Hexane,LB
+37179,4.979822,Pyrene,LB
+37179,3.764716,Fluoranthene,LB
+37179,54.7552,Naphthalene,LB
+37179,1.121691,PM25-Primary from certain diesel engines,TON
+37177,0.17147816,Acrolein,LB
+37177,0.05652434,"2,2,4-Trimethylpentane",LB
+37177,7.867832e-07,Mercury,LB
+37013,1.6389738,Pyrene,LB
+37013,0.1761291,Manganese,LB
+37013,0.005341528,Mercury,LB
+37013,0.10212094,Arsenic,LB
+37013,51.5801,Naphthalene,LB
+37013,0.1542232,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.0002912113,Sulfate Portion of PM2.5-PRI,TON
+37001,0.0001988189,Nickel,LB
+37001,67.80855,Carbon Dioxide,TON
+37001,0.007658148,Nitrous Oxide,TON
+37001,0.002276606,Ammonia,TON
+37001,3.516149e-05,Nitrate portion of PM2.5-PRI,TON
+37001,0.5401992,Propionaldehyde,LB
+37001,0.0331149,"Benzo[g,h,i,]Perylene",LB
+37073,1.423837,Xylenes (Mixed Isomers),LB
+37045,27.98624,Toluene,LB
+37045,3.266306,Hexane,LB
+37045,11.890696,Xylenes (Mixed Isomers),LB
+37045,10.501554,"2,2,4-Trimethylpentane",LB
+37031,10.480156,Hexane,LB
+37031,0.010582084,Benzo[k]Fluoranthene,LB
+37031,0.0004593178,"Dibenzo[a,h]Anthracene",LB
+37031,0.009194972,Benz[a]Anthracene,LB
+37031,28.14016,Benzene,LB
+37031,0.5160616,Naphthalene,LB
+37031,0.07519197,Ammonia,TON
+37037,0.4000586,Hexane,LB
+37037,0.000397478,Chrysene,LB
+37037,0.0009970986,Benzo[a]Pyrene,LB
+37037,0.0010944822,Manganese,LB
+37037,4.970208,Acetaldehyde,LB
+37037,3.497938e-06,Nitrate portion of PM2.5-PRI,TON
+37037,0.004574192,PM10 Primary (Filt + Cond),TON
+37037,0.02847092,Volatile Organic Compounds,TON
+37127,1.2217036,"1,3-Butadiene",LB
+37127,2.563238,Propionaldehyde,LB
+37127,0.08190594,"Benzo[g,h,i,]Perylene",LB
+37127,0.09274765,Methane,TON
+37127,0.09970266,Ammonia,TON
+37091,0.005122442,Fluoranthene,LB
+37091,0.00473346,Benzo[a]Pyrene,LB
+37091,0.003367576,Arsenic,LB
+37089,7.633054,"2,2,4-Trimethylpentane",LB
+37179,12.70833,Nitrogen Oxides,TON
+37179,23.75152,Styrene,LB
+37179,1.8006922,Pyrene,LB
+37179,0.08052542,Arsenic,LB
+37179,5.873774,Phenanthrene,LB
+37179,2.190876,Fluorene,LB
+37197,0.018531312,Styrene,LB
+37197,0.0005967976,Anthracene,LB
+37197,0.0012545316,Pyrene,LB
+37197,0.005541994,PM10 Primary (Filt + Cond),TON
+37197,0.001854171,PM2.5 Primary (Filt + Cond),TON
+37193,1.5993944,Ethyl Benzene,LB
+37193,1.5289694,"1,3-Butadiene",LB
+37193,1.2139212,Hexane,LB
+37193,0.3927558,Fluoranthene,LB
+37193,0.0016548658,Benzo[k]Fluoranthene,LB
+37193,0.07683496,Chrysene,LB
+37193,0.1434304,PM10-Primary from certain diesel engines,TON
+37191,40060.62,Toluene,LB
+37191,14.62951,Pyrene,LB
+37191,4.51704,Manganese,LB
+37191,0.13082052,Mercury,LB
+37191,2.763129,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.213421,Phenanthrene,LB
+37075,0.0660351,Anthracene,LB
+37075,1.150754,Xylenes (Mixed Isomers),LB
+37071,354.038,Xylenes (Mixed Isomers),LB
+37071,3004.51,Formaldehyde,LB
+37071,4.769657,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.9545311,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.7464544,Sulfur Dioxide,TON
+37071,0.7559307,Sulfate Portion of PM2.5-PRI,TON
+37069,25.02172,Acrolein,LB
+37069,0.00013832358,Chromium (VI),LB
+37069,1.9983432,Fluorene,LB
+37069,33.63268,Nitrogen Oxides,TON
+37069,0.09606373,Sulfate Portion of PM2.5-PRI,TON
+37069,3.90821,Styrene,LB
+37067,63.4859,"1,3-Butadiene",LB
+37067,2461.824,Benzene,LB
+37067,0.007562098,Mercury,LB
+37067,462.0196,Carbon Monoxide,TON
+37067,0.1162263,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.1034867,Nitrous Oxide,TON
+37067,0.4466339,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.02484123,Sulfate Portion of PM2.5-PRI,TON
+37067,55.84821,Volatile Organic Compounds,TON
+37059,238.322,Ethyl Benzene,LB
+37059,8.691428,"1,3-Butadiene",LB
+37059,0.229343,"Benzo[g,h,i,]Perylene",LB
+37059,0.01251155,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.01262115,Nitrous Oxide,TON
+37059,0.000248083,Nitrate portion of PM2.5-PRI,TON
+37059,2.507087,Nitrogen Oxides,TON
+37059,0.1281996,PM10 Primary (Filt + Cond),TON
+37059,7.403118,Volatile Organic Compounds,TON
+37053,0.0008132825,Nitrogen Oxides,TON
+37053,3.39062e-05,Pyrene,LB
+37053,0.7919486,"1,3-Butadiene",LB
+37053,0.010725136,Pyrene,LB
+37053,2.233992e-06,Chromium (VI),LB
+37053,0.002225122,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.009398384,Fluoranthene,LB
+37053,0.003149557,Ammonia,TON
+37043,0.01591508,Methane,TON
+37043,1.7164e-05,Nitrate portion of PM2.5-PRI,TON
+37043,0.5726163,Nitrogen Oxides,TON
+37043,0.002917915,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.014746702,"Benzo[g,h,i,]Perylene",LB
+37043,5.219772,Formaldehyde,LB
+37043,0.00012729082,"Dibenzo[a,h]Anthracene",LB
+37043,0.003136982,Manganese,LB
+37037,0.02550526,"Benzo[g,h,i,]Perylene",LB
+37037,0.0005657126,Mercury,LB
+37037,0.15570138,Nickel,LB
+37037,43096.04,Carbon Dioxide,TON
+37037,0.3295848,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.528657,Anthracene,LB
+37037,0.008064822,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.004333002,Benzo[k]Fluoranthene,LB
+37037,4.031978,"2,2,4-Trimethylpentane",LB
+37037,0.03426054,Manganese,LB
+37037,2.626928e-05,Mercury,LB
+37037,1.8379168,Phenanthrene,LB
+37037,5.858876,Carbon Monoxide,TON
+37037,11.42312,PM10 Primary (Filt + Cond),TON
+37033,19.879444,Ethyl Benzene,LB
+37033,0.0500138,Pyrene,LB
+37033,0.04386786,Fluoranthene,LB
+37033,0.010447324,Benzo[k]Fluoranthene,LB
+37033,26.4266,"2,2,4-Trimethylpentane",LB
+37033,0.010132124,Benz[a]Anthracene,LB
+37033,30.32662,Benzene,LB
+37033,0.0011301866,Nickel,LB
+37033,0.0017329642,Arsenic,LB
+37031,0.001542077,Ammonia,TON
+37031,0.3592863,Nitrogen Oxides,TON
+37031,0.0005742082,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.02507126,Benz[a]Anthracene,LB
+37031,4.510976,Acetaldehyde,LB
+37029,0.002584572,Anthracene,LB
+37029,0.06510748,Propionaldehyde,LB
+37029,0.00015020092,Manganese,LB
+37119,11.083648,"1,3-Butadiene",LB
+37119,1.2432522,Anthracene,LB
+37119,2.75695,Fluoranthene,LB
+37119,0.011638756,Benzo[k]Fluoranthene,LB
+37119,1.856911,Acenaphthylene,LB
+37119,469.314,Formaldehyde,LB
+37119,0.011580292,"Dibenzo[a,h]Anthracene",LB
+37119,39.20804,Benzene,LB
+37119,4.82127,Phenanthrene,LB
+37119,19.29634,Nitrogen Oxides,TON
+37109,2.917768,Styrene,LB
+37109,10.976524,Propionaldehyde,LB
+37109,0.00956962,"Benzo[g,h,i,]Perylene",LB
+37109,0.04698674,Benzo[b]Fluoranthene,LB
+37109,1.6090684,Fluoranthene,LB
+37109,19.78752,Benzene,LB
+37109,0.05895188,Manganese,LB
+37109,2.571386,Phenanthrene,LB
+37109,1.4776084,Fluorene,LB
+37109,0.002815071,Nitrate portion of PM2.5-PRI,TON
+37109,0.09798622,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.304874,Propionaldehyde,LB
+37109,0.0003178188,Nickel,LB
+37109,0.000487333,Arsenic,LB
+37109,0.01165674,Methane,TON
+37109,0.005456584,PM2.5 Primary (Filt + Cond),TON
+37105,8.013496,Styrene,LB
+37105,0.08632294,Benzo[b]Fluoranthene,LB
+37105,1.9933748,Acenaphthene,LB
+37105,1.792768,Methane,TON
+37105,28944.7,Carbon Dioxide,TON
+37105,2.666939,PM2.5 Primary (Filt + Cond),TON
+37097,0.7190052,Nickel,LB
+37097,161.53946,Ethyl Benzene,LB
+37097,72.04842,Styrene,LB
+37097,312.73,Toluene,LB
+37097,264.7646,Propionaldehyde,LB
+37097,27.52788,Pyrene,LB
+37097,302.73,Xylenes (Mixed Isomers),LB
+37097,0.1604588,Sulfate Portion of PM2.5-PRI,TON
+37091,1.608802e-08,Chromium (VI),LB
+37091,5.312678e-05,Chrysene,LB
+37091,2.904474e-05,Benz[a]Anthracene,LB
+37091,0.11687856,Toluene,LB
+37091,0.10758186,Xylenes (Mixed Isomers),LB
+37091,0.006431827,PM10 Primary (Filt + Cond),TON
+37105,0.4416418,"1,3-Butadiene",LB
+37105,0.08380688,Acrolein,LB
+37105,14.228962,Toluene,LB
+37105,0.004142364,Acenaphthene,LB
+37105,0.008390926,Fluorene,LB
+37103,0.12536932,Anthracene,LB
+37103,0.01585102,Chrysene,LB
+37103,0.03348544,Benz[a]Anthracene,LB
+37103,0.006326962,Manganese,LB
+37103,0.2606756,Fluorene,LB
+37103,5.05229,Naphthalene,LB
+37103,2.89098,Carbon Monoxide,TON
+37103,352.9152,Carbon Dioxide,TON
+37103,0.2672456,Volatile Organic Compounds,TON
+37101,21153,Ethyl Benzene,LB
+37101,4936.788,"1,3-Butadiene",LB
+37101,38.59008,"Benzo[g,h,i,]Perylene",LB
+37101,0.297499,Mercury,LB
+37101,12058.408,Acetaldehyde,LB
+37101,4.609337,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.0009086514,Phenanthrene,LB
+37099,0.3853492,Methane,TON
+37099,107.1055,Carbon Dioxide,TON
+37099,0.3164131,Nitrogen Oxides,TON
+37099,7.507957e-05,Sulfate Portion of PM2.5-PRI,TON
+37099,0.000421907,Acenaphthylene,LB
+37093,1.4431954,Fluorene,LB
+37093,0.1754393,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.7921919,PM10 Primary (Filt + Cond),TON
+37093,0.1029922,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,5.563296,Hexane,LB
+37093,17.69655,Xylenes (Mixed Isomers),LB
+37093,0.845969,Styrene,LB
+37093,0.05269426,Fluoranthene,LB
+37093,11.414344,Formaldehyde,LB
+37093,0.03647362,Acenaphthene,LB
+37093,0.1975596,Phenanthrene,LB
+37093,0.07388188,Fluorene,LB
+37093,0.002958138,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.006011925,Organic Carbon portion of PM2.5-PRI,TON
+37089,17.899928,Fluorene,LB
+37089,192506.4,Carbon Dioxide,TON
+37089,183.5363,Volatile Organic Compounds,TON
+37089,22729.26,Xylenes (Mixed Isomers),LB
+37089,13.29995,"Benzo[g,h,i,]Perylene",LB
+37089,8242.256,"2,2,4-Trimethylpentane",LB
+37079,6.091302,Ethyl Benzene,LB
+37079,0.01775001,Arsenic,LB
+37079,0.1158325,Methane,TON
+37079,0.5276438,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.07176845,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,1.002248,Volatile Organic Compounds,TON
+37073,0.02361244,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.000541744,"Dibenzo[a,h]Anthracene",LB
+37073,0.004365786,Manganese,LB
+37073,13.491332,Acetaldehyde,LB
+37073,385.1019,Carbon Dioxide,TON
+37073,0.7867726,Nitrogen Oxides,TON
+37069,12.420226,Benzene,LB
+37067,44.92262,Styrene,LB
+37067,101.39462,"1,3-Butadiene",LB
+37067,77.46234,Hexane,LB
+37067,0.3925046,Nickel,LB
+37067,13.42846,PM25-Primary from certain diesel engines,TON
+37067,7.918866,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.7073356,Ammonia,TON
+37067,0.11172948,Benzo[k]Fluoranthene,LB
+37063,47.23202,Benzene,LB
+37063,0.0739927,Nickel,LB
+37063,220.4826,Acetaldehyde,LB
+37063,2.721898,Fluorene,LB
+37063,0.3133266,Methane,TON
+37063,4541.931,Carbon Dioxide,TON
+37063,0.5307706,PM25-Primary from certain diesel engines,TON
+37063,0.09720191,Organic Carbon portion of PM2.5-PRI,TON
+37063,27397.14,Hexane,LB
+37063,24046.72,"2,2,4-Trimethylpentane",LB
+37063,6.859456,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,4.392742e-05,Nitrate portion of PM2.5-PRI,TON
+37057,0.8302279,Volatile Organic Compounds,TON
+37057,0.0404502,"Benzo[g,h,i,]Perylene",LB
+37057,0.0101817,Benzo[b]Fluoranthene,LB
+37055,37.83018,Hexane,LB
+37055,4.331396,Anthracene,LB
+37055,93.32644,Xylenes (Mixed Isomers),LB
+37055,1.2947392,Benz[a]Anthracene,LB
+37055,0.2368716,Manganese,LB
+37055,0.4232876,Methane,TON
+37055,2.108543,PM10 Primary (Filt + Cond),TON
+37055,0.0524044,Sulfate Portion of PM2.5-PRI,TON
+37047,3.874286,PM10-Primary from certain diesel engines,TON
+37047,3.564155,PM25-Primary from certain diesel engines,TON
+37047,0.6773155,Ammonia,TON
+37047,0.3600535,Sulfate Portion of PM2.5-PRI,TON
+37047,98.48588,Acrolein,LB
+37047,39.39276,Hexane,LB
+37047,0.02716662,"Benzo[g,h,i,]Perylene",LB
+37047,0.03004238,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,1.4182878,Benz[a]Anthracene,LB
+37039,0.007982412,"Dibenzo[a,h]Anthracene",LB
+37039,7.71924e-05,Mercury,LB
+37039,0.8362076,Acenaphthene,LB
+37039,0.2772098,Organic Carbon portion of PM2.5-PRI,TON
+37041,10.30604,Xylenes (Mixed Isomers),LB
+37033,2.43168,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,12.125122,Fluoranthene,LB
+37033,0.3788224,Nickel,LB
+37029,0.017029474,Benzo[b]Fluoranthene,LB
+37029,0.1929005,Benz[a]Anthracene,LB
+37029,10.33054,Benzene,LB
+37029,12.236318,Naphthalene,LB
+37029,0.5179557,PM10-Primary from certain diesel engines,TON
+37121,0.06904382,Ethyl Benzene,LB
+37121,0.014371628,"1,3-Butadiene",LB
+37121,0.00017262272,Fluoranthene,LB
+37121,3.064596e-06,Nickel,LB
+37121,0.03753838,Acetaldehyde,LB
+37121,1.549184e-06,Sulfate Portion of PM2.5-PRI,TON
+37113,7.061474,Ethyl Benzene,LB
+37113,30.92696,Toluene,LB
+37113,26.63332,Xylenes (Mixed Isomers),LB
+37105,0.02158398,Nitrous Oxide,TON
+37105,0.2393396,Ammonia,TON
+37105,0.06418779,Sulfur Dioxide,TON
+37105,0.03704273,Sulfate Portion of PM2.5-PRI,TON
+37105,63.12006,Propionaldehyde,LB
+37105,5.317698,Fluoranthene,LB
+37089,0.8748946,Acenaphthene,LB
+37089,3.326878,Phenanthrene,LB
+37089,1.911412,Fluorene,LB
+37089,0.9544002,Anthracene,LB
+37089,0.01638588,Sulfate Portion of PM2.5-PRI,TON
+37085,0.0376778,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.5954462,Manganese,LB
+37085,0.17182876,Nickel,LB
+37085,6.474078,Fluorene,LB
+37085,148.88824,Naphthalene,LB
+37083,0.705419,"1,3-Butadiene",LB
+37083,0.009973328,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.005476358,Benzo[b]Fluoranthene,LB
+37083,0.006939414,Acenaphthene,LB
+37083,0.004076326,Methane,TON
+37083,0.001587261,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.003171361,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.000332335,Pyrene,LB
+37079,2.964202e-06,"Dibenzo[a,h]Anthracene",LB
+37079,0.2041868,Benzene,LB
+37079,0.000392994,Fluorene,LB
+37079,0.009551584,Nitrogen Oxides,TON
+37075,10.41248,Ethyl Benzene,LB
+37075,4.662066,Styrene,LB
+37075,20.04452,Toluene,LB
+37075,7.51846e-05,Chromium (VI),LB
+37075,311.7224,Formaldehyde,LB
+37075,0.02034086,Benzo[a]Pyrene,LB
+37075,6.091628e-05,Mercury,LB
+37075,0.2419502,PM25-Primary from certain diesel engines,TON
+37075,0.1930817,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.01523665,Sulfur Dioxide,TON
+37075,0.00247869,Fluoranthene,LB
+37075,0.000138902,Elemental Carbon portion of PM2.5-PRI,TON
+37075,1.331071e-05,Sulfate Portion of PM2.5-PRI,TON
+37075,5945.374,Xylenes (Mixed Isomers),LB
+37075,0.001307658,Chromium (VI),LB
+37075,1887.9562,"2,2,4-Trimethylpentane",LB
+37075,0.2175416,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.6642604,Manganese,LB
+37071,0.0006386876,Mercury,LB
+37071,5.616865,PM10-Primary from certain diesel engines,TON
+37071,0.4180517,Sulfur Dioxide,TON
+37069,0.00666506,Benzo[b]Fluoranthene,LB
+37069,0.2935616,Acenaphthylene,LB
+37069,5.241252,Benzene,LB
+37069,0.00834837,Nickel,LB
+37069,0.1368829,PM10-Primary from certain diesel engines,TON
+37069,2.635334,Ethyl Benzene,LB
+37069,0.375835,Pyrene,LB
+37069,0.04441886,Benz[a]Anthracene,LB
+37069,0.013239372,Manganese,LB
+37069,0.013417042,Nickel,LB
+37069,8.593508,Naphthalene,LB
+37069,0.04274586,Methane,TON
+37069,393.0539,Carbon Dioxide,TON
+37069,0.002840288,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,6.521288e-05,"Dibenzo[a,h]Anthracene",LB
+37069,12.971032,"2,2,4-Trimethylpentane",LB
+37069,57.89748,Toluene,LB
+37069,0.0016254236,Manganese,LB
+37069,2.114886e-05,Mercury,LB
+37069,0.0004043628,Arsenic,LB
+37069,0.02085284,Fluorene,LB
+37069,0.008348634,Methane,TON
+37069,9.021832e-06,Nitrate portion of PM2.5-PRI,TON
+37069,0.3505688,Nitrogen Oxides,TON
+37069,0.009344228,PM10 Primary (Filt + Cond),TON
+37061,58.43816,Xylenes (Mixed Isomers),LB
+37061,0.09383066,Acenaphthylene,LB
+37061,0.002881426,Manganese,LB
+37061,1.0668288,Naphthalene,LB
+37061,0.007093158,Ammonia,TON
+37061,0.02823932,PM10 Primary (Filt + Cond),TON
+37057,76.5705,Nitrogen Oxides,TON
+37057,6.404814,Fluoranthene,LB
+37057,0.02558014,"Dibenzo[a,h]Anthracene",LB
+37057,10.262366,Phenanthrene,LB
+37057,0.3897655,Methane,TON
+37057,0.03237286,Benzo[a]Pyrene,LB
+37057,0.000739041,"Dibenzo[a,h]Anthracene",LB
+37057,0.02560732,Benz[a]Anthracene,LB
+37057,0.02876898,Manganese,LB
+37057,0.0002058888,Mercury,LB
+37057,0.007505632,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.04541503,PM2.5 Primary (Filt + Cond),TON
+37057,1.527562,Volatile Organic Compounds,TON
+37055,0.005971394,"Benzo[g,h,i,]Perylene",LB
+37055,0.004256822,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.002305798,Benzo[k]Fluoranthene,LB
+37055,8.010774e-05,Mercury,LB
+37055,0.04874426,Nickel,LB
+37055,0.4220772,PM10-Primary from certain diesel engines,TON
+37055,0.4070145,PM2.5 Primary (Filt + Cond),TON
+37053,6.38388,Xylenes (Mixed Isomers),LB
+37053,0.014766722,Phenanthrene,LB
+37053,0.003310355,Ammonia,TON
+37039,2.24682,Hexane,LB
+37039,2.196886e-05,Chromium (VI),LB
+37039,38.6108,Acetaldehyde,LB
+37041,0.6052352,Toluene,LB
+37041,0.05568372,Fluoranthene,LB
+37041,0.03849258,Acenaphthylene,LB
+37041,0.2087138,"2,2,4-Trimethylpentane",LB
+37041,0.018000752,Benz[a]Anthracene,LB
+37041,0.09117546,Phenanthrene,LB
+37035,0.04035802,Naphthalene,LB
+37035,0.0001295673,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.0001364978,Nitrous Oxide,TON
+37035,0.018873604,Styrene,LB
+37035,0.6795528,Hexane,LB
+37035,0.0018931454,"Benzo[g,h,i,]Perylene",LB
+37035,0.000353641,Chrysene,LB
+37035,0.0003843652,Benz[a]Anthracene,LB
+37031,1.6665776,Acrolein,LB
+37031,0.00376959,Pyrene,LB
+37031,0.5815386,Xylenes (Mixed Isomers),LB
+37031,2.77898e-05,Mercury,LB
+37031,21.60992,Acetaldehyde,LB
+37031,0.01690333,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.017393064,Phenanthrene,LB
+37025,0.001106197,Nitrous Oxide,TON
+37025,0.0005634115,Organic Carbon portion of PM2.5-PRI,TON
+37135,127.6164,Nitrogen Oxides,TON
+37135,9.250272,Pyrene,LB
+37135,105.08702,Xylenes (Mixed Isomers),LB
+37135,0.04029504,"Benzo[g,h,i,]Perylene",LB
+37135,7.059064,Fluoranthene,LB
+37135,5.293992,Acenaphthylene,LB
+37135,0.2147528,Nickel,LB
+37129,2.83844,Ethyl Benzene,LB
+37129,0.3965078,Acenaphthylene,LB
+37129,0.0516118,Manganese,LB
+37129,0.207318,PM10-Primary from certain diesel engines,TON
+37129,0.01265757,Sulfate Portion of PM2.5-PRI,TON
+37135,9.707424,Anthracene,LB
+37135,4.811088,Benzo[b]Fluoranthene,LB
+37135,4.811088,Benzo[k]Fluoranthene,LB
+37135,10663.01,"2,2,4-Trimethylpentane",LB
+37135,6.275508,Manganese,LB
+37135,2.628996,Nickel,LB
+37135,4.03104,Arsenic,LB
+37135,11.17842,Acenaphthene,LB
+37135,300762.5,Carbon Dioxide,TON
+37135,1.747214,Elemental Carbon portion of PM2.5-PRI,TON
+37135,29.08199,PM10 Primary (Filt + Cond),TON
+37135,9.979068,PM2.5 Primary (Filt + Cond),TON
+37133,2.91107,Styrene,LB
+37133,15.109616,"1,3-Butadiene",LB
+37133,0.04214948,Benzo[a]Pyrene,LB
+37133,0.1282585,Acenaphthene,LB
+37133,6.658796,Naphthalene,LB
+37133,0.2679472,PM10 Primary (Filt + Cond),TON
+37123,0.1218688,Chrysene,LB
+37123,0.05812902,Arsenic,LB
+37113,1.1002,PM10-Primary from certain diesel engines,TON
+37113,1.2619314,Acenaphthylene,LB
+37113,6.868436,"2,2,4-Trimethylpentane",LB
+37113,2035.35,Ethyl Benzene,LB
+37113,58.62246,Propionaldehyde,LB
+37113,7524.772,Xylenes (Mixed Isomers),LB
+37113,4.482768,Fluoranthene,LB
+37113,2659.3,"2,2,4-Trimethylpentane",LB
+37113,0.0298641,Mercury,LB
+37113,1.284695,Nitrous Oxide,TON
+37113,1.677643,PM2.5 Primary (Filt + Cond),TON
+37111,77.097,"1,3-Butadiene",LB
+37111,10.546068,Acrolein,LB
+37111,0.9304378,Pyrene,LB
+37111,0.2224664,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.1625937,Benzo[b]Fluoranthene,LB
+37111,0.8155772,Fluoranthene,LB
+37111,135.3418,Carbon Monoxide,TON
+37111,7404.626,Carbon Dioxide,TON
+37103,159.7157,Carbon Dioxide,TON
+37103,0.01532793,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.4178462,"1,3-Butadiene",LB
+37091,0.144035,Toluene,LB
+37091,0.007246454,Anthracene,LB
+37091,9.037546e-05,"Benzo[g,h,i,]Perylene",LB
+37091,0.011280264,Acenaphthylene,LB
+37091,0.00487084,Benz[a]Anthracene,LB
+37091,0.006710038,Acenaphthene,LB
+37091,0.02496998,Phenanthrene,LB
+37091,0.004802293,PM25-Primary from certain diesel engines,TON
+37091,0.0004124762,Ammonia,TON
+37091,0.0008574137,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.0001519996,Sulfur Dioxide,TON
+37105,505.8164,Hexane,LB
+37105,0.2811446,"Benzo[g,h,i,]Perylene",LB
+37105,0.07559602,Benzo[b]Fluoranthene,LB
+37105,0.1223992,Methane,TON
+37105,1613.586,Carbon Dioxide,TON
+37105,0.01588298,Nitrous Oxide,TON
+37105,0.204818,Ammonia,TON
+37105,0.0282115,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,8.984765,Volatile Organic Compounds,TON
+37099,1.2487414,Pyrene,LB
+37099,1568.6524,Xylenes (Mixed Isomers),LB
+37099,0.2161966,Benzo[b]Fluoranthene,LB
+37099,3.409446,Acenaphthylene,LB
+37099,0.006756352,"Dibenzo[a,h]Anthracene",LB
+37099,0.7485138,Acenaphthene,LB
+37099,175.9423,Carbon Monoxide,TON
+37095,607.092,Xylenes (Mixed Isomers),LB
+37095,36.0373,Benzene,LB
+37093,1.3347854e-06,Nickel,LB
+37093,0.04076294,Acetaldehyde,LB
+37093,0.006726376,Naphthalene,LB
+37091,7.24779,Propionaldehyde,LB
+37091,0.10473196,Benzo[a]Pyrene,LB
+37091,2.682654e-05,Mercury,LB
+37091,57.60594,Acetaldehyde,LB
+37091,1.6794912,Phenanthrene,LB
+37091,14.583554,Naphthalene,LB
+37091,0.1473673,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.6221827,PM2.5 Primary (Filt + Cond),TON
+37091,0.7837027,Volatile Organic Compounds,TON
+37085,4.007184,Fluorene,LB
+37085,2.850411,PM2.5 Primary (Filt + Cond),TON
+37085,0.3130247,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,7.9396,Styrene,LB
+37085,17.63266,Hexane,LB
+37085,0.7216212,Chrysene,LB
+37085,0.0003644356,Mercury,LB
+37083,0.02740912,Fluoranthene,LB
+37083,0.07872072,Acenaphthylene,LB
+37083,17.351338,Benzene,LB
+37083,0.0005740606,Nickel,LB
+37083,8.145521,Carbon Monoxide,TON
+37083,0.006672272,Ammonia,TON
+37077,1.5946524,Toluene,LB
+37077,0.19735144,Pyrene,LB
+37077,0.01213859,Methane,TON
+37077,0.0007087854,Nitrous Oxide,TON
+37077,2.417581,Nitrogen Oxides,TON
+37077,0.1078357,PM2.5 Primary (Filt + Cond),TON
+37065,1.369506,PM10 Primary (Filt + Cond),TON
+37065,0.8901068,PM2.5 Primary (Filt + Cond),TON
+37065,17.232782,Propionaldehyde,LB
+37065,0.07427106,Benzo[b]Fluoranthene,LB
+37065,0.249079,Benzo[a]Pyrene,LB
+37065,0.1334817,Manganese,LB
+37065,4646.684,Carbon Dioxide,TON
+37049,6.08498,Anthracene,LB
+37049,132.93236,Propionaldehyde,LB
+37049,11.937108,Pyrene,LB
+37049,2.180536,Arsenic,LB
+37049,159266.6,Carbon Dioxide,TON
+37049,156.3206,Volatile Organic Compounds,TON
+37047,0.005561242,Arsenic,LB
+37047,19.437386,Acetaldehyde,LB
+37047,27.50572,Carbon Monoxide,TON
+37047,1108.607,Carbon Dioxide,TON
+37047,0.04395876,Ammonia,TON
+37047,0.0001128163,Nitrate portion of PM2.5-PRI,TON
+37047,0.1006321,PM10 Primary (Filt + Cond),TON
+37047,0.001184742,Sulfate Portion of PM2.5-PRI,TON
+37041,0.08754208,Fluorene,LB
+37041,0.2119808,Styrene,LB
+37041,1.4680644,Acrolein,LB
+37041,0.8795894,Propionaldehyde,LB
+37041,8.888814e-06,Mercury,LB
+37031,0.7074404,Propionaldehyde,LB
+37031,0.003520846,Benzo[b]Fluoranthene,LB
+37031,0.02217774,Chrysene,LB
+37031,4.5586e-06,Mercury,LB
+37031,6.222966,Acetaldehyde,LB
+37031,0.04233418,Acenaphthene,LB
+37031,0.06891118,PM2.5 Primary (Filt + Cond),TON
+37031,0.01057822,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,3207.998,Hexane,LB
+37027,63.24869,Volatile Organic Compounds,TON
+37109,0.7129038,Ethyl Benzene,LB
+37109,0.001175583,Benz[a]Anthracene,LB
+37109,0.0001473916,Mercury,LB
+37175,21.1674,Toluene,LB
+37171,21743.66,Toluene,LB
+37171,75.83596,Volatile Organic Compounds,TON
+37169,0.2758982,Acenaphthene,LB
+37169,9.683034,Naphthalene,LB
+37169,3.196427,Nitrogen Oxides,TON
+37169,0.1961736,PM2.5 Primary (Filt + Cond),TON
+37169,0.290688,Anthracene,LB
+37167,73.06498,Ethyl Benzene,LB
+37167,0.4888724,Acenaphthylene,LB
+37167,0.02383666,Manganese,LB
+37167,0.2175992,Fluorene,LB
+37167,5.576458,Naphthalene,LB
+37167,0.009589833,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.05027582,Ammonia,TON
+37167,0.04168081,PM2.5 Primary (Filt + Cond),TON
+37159,25.7291,"1,3-Butadiene",LB
+37159,54.42894,Xylenes (Mixed Isomers),LB
+37159,77.23439,Nitrogen Oxides,TON
+37159,0.4555023,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.1318565,Sulfur Dioxide,TON
+37155,0.871395,Styrene,LB
+37155,0.0014840648,Benzo[b]Fluoranthene,LB
+37155,0.00497282,Benzo[a]Pyrene,LB
+37155,0.04214842,Benz[a]Anthracene,LB
+37155,0.01660666,PM10-Primary from certain diesel engines,TON
+37155,0.008599196,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.005053313,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.7879322,Ethyl Benzene,LB
+37133,4.91596e-06,Chromium (VI),LB
+37133,0.0166385,Benzo[a]Pyrene,LB
+37133,17.108278,Benzene,LB
+37133,0.0007884804,Arsenic,LB
+37133,177.3847,Carbon Dioxide,TON
+37133,0.006607766,PM2.5 Primary (Filt + Cond),TON
+37133,0.003828386,Benzo[k]Fluoranthene,LB
+37133,17.481898,"2,2,4-Trimethylpentane",LB
+37125,0.5372304,Anthracene,LB
+37125,0.018696656,Arsenic,LB
+37125,0.03360471,PM25-Primary from certain diesel engines,TON
+37125,0.01291095,Sulfur Dioxide,TON
+37125,0.006695392,Sulfate Portion of PM2.5-PRI,TON
+37121,0.0011897898,Benzo[b]Fluoranthene,LB
+37121,0.00016560156,Benzo[k]Fluoranthene,LB
+37121,0.03514396,Benz[a]Anthracene,LB
+37121,0.2914898,Fluorene,LB
+37121,5.842696,Naphthalene,LB
+37121,0.002990206,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.0007831707,Nitrate portion of PM2.5-PRI,TON
+37021,0.5889118,Pyrene,LB
+37021,0.0101366,Nickel,LB
+37021,0.300847,PM10-Primary from certain diesel engines,TON
+37019,0.416606,Manganese,LB
+37019,0.00018412318,Mercury,LB
+37019,0.01275728,Nitrate portion of PM2.5-PRI,TON
+37019,77.20466,Nitrogen Oxides,TON
+37019,0.5131677,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,46.01234,Propionaldehyde,LB
+37019,0.0560661,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,6.81851,Hexane,LB
+37015,1.8824728,Pyrene,LB
+37015,1.4437496,Fluoranthene,LB
+37015,0.6664472,Acenaphthene,LB
+37015,13617.98,Carbon Dioxide,TON
+37015,0.329568,Acrolein,LB
+37015,0.014901144,Anthracene,LB
+37015,0.04235446,Pyrene,LB
+37015,0.2789614,Xylenes (Mixed Isomers),LB
+37015,8.396138e-07,Mercury,LB
+37015,0.000554234,Nickel,LB
+37015,0.0297083,Fluorene,LB
+37015,0.001554335,Methane,TON
+37015,0.0008637277,Ammonia,TON
+37015,0.004283021,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.10975558,Toluene,LB
+37011,0.3635574,Carbon Monoxide,TON
+37011,0.001203379,Ammonia,TON
+37011,0.1995061,Nitrogen Oxides,TON
+37011,0.001011776,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.002938009,PM2.5 Primary (Filt + Cond),TON
+37001,2.260724,Hexane,LB
+37001,0.87783,Pyrene,LB
+37001,2.93747e-05,Mercury,LB
+37001,3.847795,Nitrogen Oxides,TON
+37001,0.04756974,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,2.941476,Ethyl Benzene,LB
+37001,6.722242,Acrolein,LB
+37075,0.3855334,Benzene,LB
+37075,0.0007590694,Phenanthrene,LB
+37157,0.003304974,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.001506465,Benz[a]Anthracene,LB
+37157,0.002156472,Nickel,LB
+37157,0.007414851,Sulfur Dioxide,TON
+37125,0.01321011,Styrene,LB
+37125,0.4696132,Hexane,LB
+37125,0.0008904096,Pyrene,LB
+37125,0.000965058,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.0005083394,Benzo[b]Fluoranthene,LB
+37125,0.8675868,Formaldehyde,LB
+37125,0.5198992,"2,2,4-Trimethylpentane",LB
+37125,5.668646,Acetaldehyde,LB
+37125,0.5467911,Carbon Monoxide,TON
+37125,70.92771,Carbon Dioxide,TON
+37119,0.2161962,Styrene,LB
+37119,0.797244,Acrolein,LB
+37119,1.80158,Propionaldehyde,LB
+37119,0.011216184,Benz[a]Anthracene,LB
+37119,23.65742,Benzene,LB
+37119,0.04405832,Phenanthrene,LB
+37119,0.3912912,Naphthalene,LB
+37119,2147.41,Carbon Dioxide,TON
+37119,0.02787534,Nitrous Oxide,TON
+37119,0.9203388,Nitrogen Oxides,TON
+37013,2.04655,Xylenes (Mixed Isomers),LB
+37013,7.885026e-06,Chromium (VI),LB
+37013,0.2125388,Fluoranthene,LB
+37013,0.0219161,Benzo[a]Pyrene,LB
+37013,0.07032824,Benz[a]Anthracene,LB
+37013,0.0310294,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.07370939,PM2.5 Primary (Filt + Cond),TON
+37019,0.8790046,"1,3-Butadiene",LB
+37019,2.492812,Xylenes (Mixed Isomers),LB
+37019,0.0013590958,"Benzo[g,h,i,]Perylene",LB
+37019,0.8119954,"2,2,4-Trimethylpentane",LB
+37019,0.07307788,Benz[a]Anthracene,LB
+37019,2.75418,Benzene,LB
+37019,0.002328698,Arsenic,LB
+37019,0.08865092,Acenaphthene,LB
+37019,0.001257853,Nitrous Oxide,TON
+37019,0.0129464,Ammonia,TON
+37019,0.16391,Volatile Organic Compounds,TON
+37015,0.012519746,"1,3-Butadiene",LB
+37015,0.1256365,Toluene,LB
+37015,0.00018839992,Fluoranthene,LB
+37015,0.275891,Methane,TON
+37015,0.3902571,Carbon Monoxide,TON
+37015,0.006895872,PM10 Primary (Filt + Cond),TON
+37015,0.003346741,PM2.5 Primary (Filt + Cond),TON
+37013,0.09935802,Hexane,LB
+37013,0.0001507643,Fluoranthene,LB
+37013,0.005376632,Naphthalene,LB
+37013,3.832301e-05,PM2.5 Primary (Filt + Cond),TON
+37009,1.3284514,Toluene,LB
+37009,0.0009438476,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,17.778402,Formaldehyde,LB
+37009,1.610592,Benzene,LB
+37009,0.04381271,PM10-Primary from certain diesel engines,TON
+37009,0.001639319,Sulfate Portion of PM2.5-PRI,TON
+37009,46.75178,Propionaldehyde,LB
+37009,5813.996,Xylenes (Mixed Isomers),LB
+37009,0.002057656,Chromium (VI),LB
+37009,1.0975012,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.7347008,Chrysene,LB
+37009,911.1,Acetaldehyde,LB
+37009,4.952446,Fluorene,LB
+37009,0.2933123,Elemental Carbon portion of PM2.5-PRI,TON
+37009,2.59414,Ammonia,TON
+37005,175.48616,"1,3-Butadiene",LB
+37005,1.809468,Pyrene,LB
+37005,0.437312,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,4.935888,Acenaphthylene,LB
+37005,0.3093252,Chrysene,LB
+37005,915.3438,"2,2,4-Trimethylpentane",LB
+37005,0.1212046,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.4493201,Nitrous Oxide,TON
+37005,0.2321783,Sulfur Dioxide,TON
+37005,20.91929,Volatile Organic Compounds,TON
+37003,0.03114138,Acenaphthylene,LB
+37003,0.00468962,Benzo[a]Pyrene,LB
+37003,0.00019083804,"Dibenzo[a,h]Anthracene",LB
+37003,0.12918796,"2,2,4-Trimethylpentane",LB
+37003,6.689696e-07,Mercury,LB
+37003,2.352598,Acetaldehyde,LB
+37003,0.018520944,Acenaphthene,LB
+37003,0.0002826508,Sulfate Portion of PM2.5-PRI,TON
+37003,102.1604,Styrene,LB
+37003,0.002869276,Chromium (VI),LB
+37003,1.2333474,Benzo[b]Fluoranthene,LB
+37003,1.6668692,Benzo[a]Pyrene,LB
+37003,0.02876692,Mercury,LB
+37003,0.549998,Arsenic,LB
+37003,0.921443,Organic Carbon portion of PM2.5-PRI,TON
+37003,2.040511,PM2.5 Primary (Filt + Cond),TON
+37075,0.8905288,"2,2,4-Trimethylpentane",LB
+37199,1.541976e-08,Chromium (VI),LB
+37199,0.0008196636,Manganese,LB
+37199,45.19133,Carbon Dioxide,TON
+37199,0.0002392639,Sulfur Dioxide,TON
+37187,1.218678,Styrene,LB
+37187,0.250748,Acenaphthylene,LB
+37187,0.000235896,Mercury,LB
+37183,0.0002800204,"1,3-Butadiene",LB
+37183,2.308526e-06,Anthracene,LB
+37183,5.067409e-05,Ammonia,TON
+37177,0.8875574,Ethyl Benzene,LB
+37177,1.4262136,Propionaldehyde,LB
+37177,0.11885702,Fluoranthene,LB
+37177,2.935428,Naphthalene,LB
+37177,214.1039,Carbon Dioxide,TON
+37045,11304.502,Xylenes (Mixed Isomers),LB
+37041,8.41176e-05,Benzo[k]Fluoranthene,LB
+37041,3.629591e-05,Nitrate portion of PM2.5-PRI,TON
+37041,0.0008145488,Sulfur Dioxide,TON
+37041,0.25452,Acrolein,LB
+37041,0.0001269572,"Benzo[g,h,i,]Perylene",LB
+37037,0.0004767114,Arsenic,LB
+37037,0.003098502,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.04649023,PM10 Primary (Filt + Cond),TON
+37033,0.1040882,Acenaphthylene,LB
+37033,2.008146,Benzene,LB
+37033,0.004246426,Manganese,LB
+37033,0.17445308,Phenanthrene,LB
+37033,2.365546,Naphthalene,LB
+37033,0.002532312,PM10-Primary from certain diesel engines,TON
+37033,0.001205248,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.0005770801,Sulfate Portion of PM2.5-PRI,TON
+37027,92.70524,Formaldehyde,LB
+37027,7.90457e-05,Benz[a]Anthracene,LB
+37027,0.0007945526,Fluorene,LB
+37027,162.3184,Carbon Dioxide,TON
+37155,0.03779098,Acrolein,LB
+37155,1.415702,Hexane,LB
+37155,0.004457534,Pyrene,LB
+37155,0.003729682,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,1.523701,"2,2,4-Trimethylpentane",LB
+37155,2.12226,Benzene,LB
+37155,2.408674e-05,Nickel,LB
+37155,0.002103109,Methane,TON
+37155,12.70989,Carbon Dioxide,TON
+37155,0.0001850709,Nitrous Oxide,TON
+37155,0.1100041,Nitrogen Oxides,TON
+37155,0.0008521161,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.1653834,Ammonia,TON
+37151,8.656328,Styrene,LB
+37151,15.407894,Hexane,LB
+37151,41.9229,Xylenes (Mixed Isomers),LB
+37151,0.8819532,Chrysene,LB
+37151,57.4555,Benzene,LB
+37151,0.2638104,Manganese,LB
+37151,11701.99,Carbon Dioxide,TON
+37151,0.01630475,Nitrous Oxide,TON
+37143,0.005638834,Pyrene,LB
+37143,7.52252e-07,Chromium (VI),LB
+37143,0.0010736554,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.01550334,Acenaphthylene,LB
+37143,2.464942e-05,"Dibenzo[a,h]Anthracene",LB
+37143,0.0001441776,Arsenic,LB
+37143,1.138594,Acetaldehyde,LB
+37143,0.01846808,Phenanthrene,LB
+37143,0.002903342,Anthracene,LB
+37139,15.032224,Acenaphthylene,LB
+37139,3079.922,"2,2,4-Trimethylpentane",LB
+37139,1.301238,Manganese,LB
+37139,17.94105,Phenanthrene,LB
+37139,54920.87,Carbon Dioxide,TON
+37139,0.6498348,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.05011304,Manganese,LB
+37123,1.2725624,Fluorene,LB
+37123,0.02493346,Sulfur Dioxide,TON
+37119,42.32378,"1,3-Butadiene",LB
+37119,9.628258,Pyrene,LB
+37119,0.0004280256,Mercury,LB
+37119,92.96977,Nitrogen Oxides,TON
+37119,0.767151,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.005130014,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,4.923816,Ethyl Benzene,LB
+37115,0.00011772928,"Dibenzo[a,h]Anthracene",LB
+37115,0.0008209294,Manganese,LB
+37115,0.0002382522,Arsenic,LB
+37101,0.07661132,Chrysene,LB
+37101,26.32698,Acetaldehyde,LB
+37101,0.2997884,PM10-Primary from certain diesel engines,TON
+37101,0.2758096,PM25-Primary from certain diesel engines,TON
+37101,2.053092,Ethyl Benzene,LB
+37101,4.677018,Acrolein,LB
+37101,0.19456636,Anthracene,LB
+37073,3.30365e-05,"Dibenzo[a,h]Anthracene",LB
+37073,0.0001767238,Manganese,LB
+37073,0.001726772,Nitrous Oxide,TON
+37073,0.00026659,Ammonia,TON
+37073,0.002221902,PM10 Primary (Filt + Cond),TON
+37085,98.11652,Toluene,LB
+37081,64.9479,Benzene,LB
+37081,0.01903419,Nitrous Oxide,TON
+37081,0.01541607,Sulfur Dioxide,TON
+37081,1.6127658e-05,Chromium (VI),LB
+37081,0.03963504,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.265099,Acenaphthylene,LB
+37081,309.7186,Toluene,LB
+37081,94.44842,Hexane,LB
+37081,0.07816962,Manganese,LB
+37081,0.0004528562,Mercury,LB
+37081,0.0002240244,Nitrate portion of PM2.5-PRI,TON
+37081,58591.72,Hexane,LB
+37081,130.12666,Pyrene,LB
+37081,23.9187,Benz[a]Anthracene,LB
+37081,24.1138,Manganese,LB
+37081,0.6898508,Mercury,LB
+37081,1317816,Carbon Dioxide,TON
+37081,7.811297,Elemental Carbon portion of PM2.5-PRI,TON
+37081,19.92162,Organic Carbon portion of PM2.5-PRI,TON
+37081,1314.973,Volatile Organic Compounds,TON
+37067,0.0816908,Benzo[a]Pyrene,LB
+37067,0.1920682,Acenaphthene,LB
+37067,9.974072,Naphthalene,LB
+37067,45529.1,Hexane,LB
+37067,18870.092,Formaldehyde,LB
+37067,6.65985,Nickel,LB
+37067,122.483,Fluorene,LB
+37065,0.028075,Benz[a]Anthracene,LB
+37065,5.092524,Acetaldehyde,LB
+37065,0.03587462,Acenaphthene,LB
+37065,0.002895352,Sulfur Dioxide,TON
+37065,0.3946722,Ethyl Benzene,LB
+37065,0.3551356,"1,3-Butadiene",LB
+37065,0.03983802,Anthracene,LB
+37043,0.09452676,Styrene,LB
+37043,0.00559614,Benzo[a]Pyrene,LB
+37043,0.0002283716,"Dibenzo[a,h]Anthracene",LB
+37043,0.653129,Benzene,LB
+37043,0.0002099666,Nitrous Oxide,TON
+37037,0.11393428,Pyrene,LB
+37037,0.04039016,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.0004143118,Mercury,LB
+37037,0.04906647,PM2.5 Primary (Filt + Cond),TON
+37035,138.93288,Ethyl Benzene,LB
+37035,63.80836,Styrene,LB
+37035,232.4474,Propionaldehyde,LB
+37035,4143.138,Formaldehyde,LB
+37035,0.017916512,"Dibenzo[a,h]Anthracene",LB
+37035,0.0007350296,Mercury,LB
+37035,0.8952459,Methane,TON
+37035,236.4792,Carbon Monoxide,TON
+37035,25.09689,Volatile Organic Compounds,TON
+37035,0.003193646,"1,3-Butadiene",LB
+37035,9.714448e-06,Benzo[b]Fluoranthene,LB
+37035,4.388493e-08,Nitrate portion of PM2.5-PRI,TON
+37031,0.05358059,Sulfate Portion of PM2.5-PRI,TON
+37031,14.929356,Ethyl Benzene,LB
+37031,5.525526,Styrene,LB
+37031,0.6055576,Chrysene,LB
+37031,0.3178142,Benzo[a]Pyrene,LB
+37025,0.05469108,Benzo[b]Fluoranthene,LB
+37025,0.0008116498,Mercury,LB
+37025,0.003140668,Sulfate Portion of PM2.5-PRI,TON
+37027,2.844904,"1,3-Butadiene",LB
+37027,12.5087,Carbon Monoxide,TON
+37027,349.7704,Carbon Dioxide,TON
+37027,0.01179443,Nitrous Oxide,TON
+37027,0.05751767,PM10 Primary (Filt + Cond),TON
+37027,48.72734,Xylenes (Mixed Isomers),LB
+37027,0.00016032394,"Dibenzo[a,h]Anthracene",LB
+37027,13.582094,"2,2,4-Trimethylpentane",LB
+37159,4.75116,Propionaldehyde,LB
+37159,0.9601534,Pyrene,LB
+37159,2.21187,Carbon Monoxide,TON
+37159,0.2425591,PM25-Primary from certain diesel engines,TON
+37159,0.08854491,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.01116792,Sulfur Dioxide,TON
+37151,1239.4956,Hexane,LB
+37151,1.518604,"Benzo[g,h,i,]Perylene",LB
+37151,0.4347236,Benzo[b]Fluoranthene,LB
+37151,2.339056,Fluoranthene,LB
+37151,491.7792,Formaldehyde,LB
+37151,0.5730674,Benzo[a]Pyrene,LB
+37151,0.4415328,Benz[a]Anthracene,LB
+37151,1.023488,Methane,TON
+37151,0.3182139,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.03812807,Sulfur Dioxide,TON
+37141,0.00173753,Sulfate Portion of PM2.5-PRI,TON
+37141,4.702098e-05,Chromium (VI),LB
+37141,0.02625606,Chrysene,LB
+37141,21.75616,Formaldehyde,LB
+37141,20.88344,Acetaldehyde,LB
+37137,4.626786e-06,Chromium (VI),LB
+37137,0.000532849,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.1096298,Acenaphthylene,LB
+37137,0.000286978,"Dibenzo[a,h]Anthracene",LB
+37137,0.02810828,Benz[a]Anthracene,LB
+37137,3.643324e-06,Mercury,LB
+37137,0.0007617944,Arsenic,LB
+37137,0.005506874,Methane,TON
+37137,0.8153493,Carbon Monoxide,TON
+37123,4.527602e-06,Benz[a]Anthracene,LB
+37109,0.5774538,"1,3-Butadiene",LB
+37109,2.604224e-07,Chromium (VI),LB
+37109,1.395466,Formaldehyde,LB
+37109,0.0011630686,Benz[a]Anthracene,LB
+37109,0.006459754,Methane,TON
+37109,9.558151,Carbon Dioxide,TON
+37109,0.0002903616,Ammonia,TON
+37109,0.001577867,PM2.5 Primary (Filt + Cond),TON
+37105,164.57684,Acetaldehyde,LB
+37105,0.05279296,Sulfur Dioxide,TON
+37105,2.048984,Volatile Organic Compounds,TON
+37105,4.643092,Styrene,LB
+37105,0.2438514,Benzo[a]Pyrene,LB
+37103,30.1253,Toluene,LB
+37103,0.006700992,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.08788868,Benzo[a]Pyrene,LB
+37103,0.037894,Nickel,LB
+37103,28.8159,Naphthalene,LB
+37103,1.204581,PM10 Primary (Filt + Cond),TON
+37103,11.957378,Acrolein,LB
+37103,0.00647067,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,4.155222,"2,2,4-Trimethylpentane",LB
+37103,0.2927846,Benz[a]Anthracene,LB
+37103,14.337334,Benzene,LB
+37103,5.613974,Ethyl Benzene,LB
+37103,2.292344,Styrene,LB
+37103,12.209968,Toluene,LB
+37103,0.5867302,Anthracene,LB
+37103,15.687788,Benzene,LB
+37103,0.04793952,Manganese,LB
+37103,0.1806207,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.4617653,PM2.5 Primary (Filt + Cond),TON
+37101,9.340272,"2,2,4-Trimethylpentane",LB
+37101,33.18408,Benzene,LB
+37101,4.218912,Phenanthrene,LB
+37101,11.916576,Ethyl Benzene,LB
+37101,27.1123,Xylenes (Mixed Isomers),LB
+37101,12.706778,Propionaldehyde,LB
+37101,0.959589,"Benzo[g,h,i,]Perylene",LB
+37101,1538.8686,"2,2,4-Trimethylpentane",LB
+37101,0.00338449,Mercury,LB
+37101,10.94853,Nitrogen Oxides,TON
+37101,0.3517957,PM2.5 Primary (Filt + Cond),TON
+37097,4.596322e-05,Mercury,LB
+37097,0.0005731318,Nickel,LB
+37097,0.0056944,PM2.5 Primary (Filt + Cond),TON
+37097,0.04186561,Volatile Organic Compounds,TON
+37093,31.94298,Acetaldehyde,LB
+37093,0.8928678,Phenanthrene,LB
+37093,0.1696924,PM25-Primary from certain diesel engines,TON
+37093,0.0009617268,Nitrate portion of PM2.5-PRI,TON
+37093,0.1772425,PM2.5 Primary (Filt + Cond),TON
+37093,0.0327537,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,1.0318772,Styrene,LB
+37093,0.2586994,Anthracene,LB
+37093,0.7377704,Pyrene,LB
+37093,0.004082042,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,2.439878e-05,Acenaphthylene,LB
+37089,8.743044e-09,Mercury,LB
+37089,2.511431e-06,Organic Carbon portion of PM2.5-PRI,TON
+37089,1.115426e-05,PM10 Primary (Filt + Cond),TON
+37087,7.542952e-06,Pyrene,LB
+37087,8.677156e-10,Chromium (VI),LB
+37087,6.642264e-06,Fluoranthene,LB
+37087,1.559204e-06,Ammonia,TON
+37087,1.631223e-08,Nitrate portion of PM2.5-PRI,TON
+37087,3.090456e-06,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.0002233612,Acenaphthene,LB
+37081,7.677345e-07,Nitrate portion of PM2.5-PRI,TON
+37081,0.01579447,Nitrogen Oxides,TON
+37081,0.18292228,Hexane,LB
+37059,1.6167292,Styrene,LB
+37059,21.82764,Formaldehyde,LB
+37059,0.02865346,Benz[a]Anthracene,LB
+37059,0.05368102,PM2.5 Primary (Filt + Cond),TON
+37061,0.089557,Ethyl Benzene,LB
+37061,0.0002075384,Fluoranthene,LB
+37061,5.796276e-05,Benzo[a]Pyrene,LB
+37061,5.678697e-05,Nitrous Oxide,TON
+37061,1.044432e-05,Ammonia,TON
+37061,1.616093e-07,Nitrate portion of PM2.5-PRI,TON
+37055,0.005268838,Phenanthrene,LB
+37055,0.0002984729,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.0003790555,Sulfur Dioxide,TON
+37055,0.0008284692,Anthracene,LB
+37055,0.017482996,Propionaldehyde,LB
+37055,0.0003122814,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.02411716,"Benzo[g,h,i,]Perylene",LB
+37047,4.336428,Fluoranthene,LB
+37047,2.024028,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.1607647,Sulfate Portion of PM2.5-PRI,TON
+37047,0.2646935,Ammonia,TON
+37047,90.74642,Acrolein,LB
+37047,0.004063718,Benzo[k]Fluoranthene,LB
+37047,0.004040622,"Dibenzo[a,h]Anthracene",LB
+37047,107.89464,Benzene,LB
+37177,53.81424,"1,3-Butadiene",LB
+37177,0.3203154,Anthracene,LB
+37177,8203.163,Carbon Dioxide,TON
+37177,0.04792074,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.737317,Pyrene,LB
+37175,0.559058,Fluoranthene,LB
+37175,0.4052464,Acenaphthylene,LB
+37175,0.17570386,Benz[a]Anthracene,LB
+37175,0.520672,Fluorene,LB
+37175,0.0630598,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.003266847,Sulfur Dioxide,TON
+37161,0.2133497,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.05378312,Sulfate Portion of PM2.5-PRI,TON
+37161,13.947622,"1,3-Butadiene",LB
+37161,0.00013476634,Chromium (VI),LB
+37161,43.92212,Benzene,LB
+37161,0.00014740426,Mercury,LB
+37161,205.7974,Acetaldehyde,LB
+37161,5.495374,Phenanthrene,LB
+37161,51.57068,Naphthalene,LB
+37161,0.1498023,Ammonia,TON
+37155,0.6997566,Benzo[a]Pyrene,LB
+37155,8.081648,Fluorene,LB
+37155,5.788276,PM25-Primary from certain diesel engines,TON
+37155,8.378482,PM10 Primary (Filt + Cond),TON
+37155,71.50624,Ethyl Benzene,LB
+37155,173.98068,Acrolein,LB
+37155,0.008332052,Benzo[k]Fluoranthene,LB
+37155,12.646822,Acenaphthylene,LB
+37155,152.0967,Carbon Monoxide,TON
+37155,2.278495,PM10-Primary from certain diesel engines,TON
+37155,2.096167,PM25-Primary from certain diesel engines,TON
+37155,1.645715,Elemental Carbon portion of PM2.5-PRI,TON
+37155,2.724409,PM10 Primary (Filt + Cond),TON
+37161,0.02479576,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,2.486205,PM10 Primary (Filt + Cond),TON
+37161,2.311352,Volatile Organic Compounds,TON
+37143,2.053806,Hexane,LB
+37143,0.4714286,Acenaphthylene,LB
+37143,0.211814,Benz[a]Anthracene,LB
+37143,7.830816,Benzene,LB
+37143,0.2433834,Elemental Carbon portion of PM2.5-PRI,TON
+37143,78.17828,Ethyl Benzene,LB
+37143,0.034253,Benzo[k]Fluoranthene,LB
+37143,0.0009922106,"Dibenzo[a,h]Anthracene",LB
+37143,30.45272,Carbon Monoxide,TON
+37131,3.907232,"2,2,4-Trimethylpentane",LB
+37131,0.02751596,Nickel,LB
+37131,0.03753438,Methane,TON
+37131,18.34352,Nitrogen Oxides,TON
+37129,1.1465346,Anthracene,LB
+37129,1.9637128,Fluoranthene,LB
+37129,0.003077502,Benzo[k]Fluoranthene,LB
+37129,0.8342492,PM10 Primary (Filt + Cond),TON
+37129,0.03271812,Sulfate Portion of PM2.5-PRI,TON
+37129,2.75718,Ethyl Benzene,LB
+37129,3.132182,Hexane,LB
+37129,0.0007421212,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,3.287024,"2,2,4-Trimethylpentane",LB
+37129,0.002521725,Methane,TON
+37129,0.00293138,PM10 Primary (Filt + Cond),TON
+37129,0.0002884936,Sulfur Dioxide,TON
+37121,0.10610434,Chrysene,LB
+37121,10.807632,Naphthalene,LB
+37121,0.539053,PM10 Primary (Filt + Cond),TON
+37121,0.02670747,Sulfur Dioxide,TON
+37111,0.0002677466,"Dibenzo[a,h]Anthracene",LB
+37111,0.240922,"2,2,4-Trimethylpentane",LB
+37111,1.0661728,Naphthalene,LB
+37111,4.727076,Benz[a]Anthracene,LB
+37111,0.094467,Mercury,LB
+37111,1.1778764,Nickel,LB
+37111,871.4572,Naphthalene,LB
+37111,333.503,Benzene,LB
+37111,0.1131594,Methane,TON
+37111,0.01568139,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.2004566,Ammonia,TON
+37111,4.748196,Acrolein,LB
+37111,9.62978e-05,Chromium (VI),LB
+37109,2.56038,Benzo[k]Fluoranthene,LB
+37109,33.28102,Acenaphthylene,LB
+37109,2130.966,Formaldehyde,LB
+37109,1.184753,Nickel,LB
+37109,2.765524,Sulfur Dioxide,TON
+37103,0.005283574,Ethyl Benzene,LB
+37103,0.0002144126,Styrene,LB
+37103,0.029311,Toluene,LB
+37103,7.074676e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,4.292384e-06,Benzo[b]Fluoranthene,LB
+37103,0.00896015,Benzene,LB
+37103,3.885545e-06,Organic Carbon portion of PM2.5-PRI,TON
+37103,7.075589e-06,PM2.5 Primary (Filt + Cond),TON
+37101,3.142347,PM10 Primary (Filt + Cond),TON
+37101,0.9399208,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,2237.39,Benzene,LB
+37091,0.003177418,Acrolein,LB
+37091,0.00014320702,Anthracene,LB
+37091,8.28467e-05,Benzo[a]Pyrene,LB
+37091,0.11993586,"2,2,4-Trimethylpentane",LB
+37091,1.684509e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.03201542,"Dibenzo[a,h]Anthracene",LB
+37089,8.417462,Fluorene,LB
+37089,1.8675492,Hexane,LB
+37089,6.171398,Xylenes (Mixed Isomers),LB
+37089,0.03392548,Manganese,LB
+37089,0.1747593,PM25-Primary from certain diesel engines,TON
+37089,0.009479074,Sulfate Portion of PM2.5-PRI,TON
+37117,0.4662666,Acrolein,LB
+37117,0.003320018,Chrysene,LB
+37117,0.0003077794,Mercury,LB
+37117,0.02625644,Phenanthrene,LB
+37175,0.006850184,"Benzo[g,h,i,]Perylene",LB
+37175,0.11115156,Benzo[a]Pyrene,LB
+37175,6.014348,"2,2,4-Trimethylpentane",LB
+37175,85.02184,Acetaldehyde,LB
+37175,1.1260056,Fluorene,LB
+37175,21.11468,Naphthalene,LB
+37175,0.9014409,PM2.5 Primary (Filt + Cond),TON
+37175,2.36884e-05,Chromium (VI),LB
+37175,0.0010584018,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.04465822,Chrysene,LB
+37175,0.01393456,Benzo[a]Pyrene,LB
+37175,0.02142605,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.1062676,PM2.5 Primary (Filt + Cond),TON
+37165,11.507694,Ethyl Benzene,LB
+37165,0.04881172,Manganese,LB
+37165,38.31212,Naphthalene,LB
+37165,0.2430294,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.08046731,Ammonia,TON
+37165,0.01161683,Sulfate Portion of PM2.5-PRI,TON
+37161,16.80193,Styrene,LB
+37161,101.47216,"1,3-Butadiene",LB
+37161,0.19175018,Benz[a]Anthracene,LB
+37161,36.885,Naphthalene,LB
+37161,9033.517,Carbon Dioxide,TON
+37161,0.3013584,PM2.5 Primary (Filt + Cond),TON
+37157,0.02267982,"1,3-Butadiene",LB
+37157,0.000678085,Pyrene,LB
+37157,0.0003552296,Fluoranthene,LB
+37157,0.002972958,Manganese,LB
+37157,7.127874,Acetaldehyde,LB
+37157,0.01744935,Nitrous Oxide,TON
+37157,0.003702036,Ammonia,TON
+37151,0.2740858,Anthracene,LB
+37151,1.996856,Carbon Monoxide,TON
+37151,0.08531204,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.01111875,Sulfate Portion of PM2.5-PRI,TON
+37149,48.29114,Formaldehyde,LB
+37149,5.421422,"1,3-Butadiene",LB
+37149,0.1199111,Ammonia,TON
+37149,0.0014618264,"Dibenzo[a,h]Anthracene",LB
+37141,11.80516,Styrene,LB
+37141,178.98074,Toluene,LB
+37141,0.02893154,"Benzo[g,h,i,]Perylene",LB
+37141,1718.5748,Formaldehyde,LB
+37141,0.4214842,Benzo[a]Pyrene,LB
+37141,52.67408,"2,2,4-Trimethylpentane",LB
+37141,12.859204,Phenanthrene,LB
+37141,0.6763121,Ammonia,TON
+37141,0.009586606,Nitrate portion of PM2.5-PRI,TON
+37003,0.1378579,Methane,TON
+37003,0.7009312,PM10-Primary from certain diesel engines,TON
+37003,0.05665645,Ammonia,TON
+37075,0.0006416868,Acenaphthylene,LB
+37075,0.0005262675,Sulfur Dioxide,TON
+37075,0.00011431944,Benz[a]Anthracene,LB
+37075,1.6555076,Acetaldehyde,LB
+37075,8.418588e-07,Nitrate portion of PM2.5-PRI,TON
+37075,0.000156293,Organic Carbon portion of PM2.5-PRI,TON
+37021,4.414758,Propionaldehyde,LB
+37021,37.72468,Xylenes (Mixed Isomers),LB
+37021,0.03284908,Fluoranthene,LB
+37021,0.0850821,Acenaphthylene,LB
+37021,19.49504,"2,2,4-Trimethylpentane",LB
+37021,0.04256547,Nitrous Oxide,TON
+37021,0.0309015,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.07619625,PM2.5 Primary (Filt + Cond),TON
+37147,1.4640516,Ethyl Benzene,LB
+37147,0.2608274,Acrolein,LB
+37147,0.004726254,Pyrene,LB
+37147,0.010954642,Acenaphthylene,LB
+37147,0.002571874,Benz[a]Anthracene,LB
+37147,0.2000558,Nitrogen Oxides,TON
+37147,0.004240638,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.01447884,Sulfur Dioxide,TON
+37127,0.00012194252,"Dibenzo[a,h]Anthracene",LB
+37127,0.00931388,Manganese,LB
+37127,0.09247662,Naphthalene,LB
+37127,0.003661476,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.003706274,Pyrene,LB
+37011,0.11046336,Ethyl Benzene,LB
+37011,0.6181378,Toluene,LB
+37011,6.765722e-05,Benzo[b]Fluoranthene,LB
+37011,6.765722e-05,Benzo[k]Fluoranthene,LB
+37011,0.1956605,Benzene,LB
+37011,2.673979e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.1720135,PM25-Primary from certain diesel engines,TON
+37005,3.267892,Ethyl Benzene,LB
+37005,2.799106,"1,3-Butadiene",LB
+37005,7.882536,Toluene,LB
+37005,4.724472,Propionaldehyde,LB
+37005,0.10096904,Chrysene,LB
+37005,0.004150812,Arsenic,LB
+37053,0.0004751848,Benzo[k]Fluoranthene,LB
+37053,0.0003632362,Chrysene,LB
+37053,0.6708388,Formaldehyde,LB
+37053,0.004601081,Ammonia,TON
+37053,0.005809303,PM10 Primary (Filt + Cond),TON
+37053,8.686504,Toluene,LB
+37053,1.0138354,Hexane,LB
+37039,2.645168,Ethyl Benzene,LB
+37039,9.31841,Xylenes (Mixed Isomers),LB
+37039,0.007686784,Fluoranthene,LB
+37039,9.847202,Formaldehyde,LB
+37039,12.396368,Benzene,LB
+37013,0.0007067166,Benzo[b]Fluoranthene,LB
+37013,9.999942e-05,Benzo[k]Fluoranthene,LB
+37013,0.014139606,Manganese,LB
+37013,0.538452,Phenanthrene,LB
+37011,18.664024,Toluene,LB
+37005,4.317728,Xylenes (Mixed Isomers),LB
+37005,0.0014825372,"Benzo[g,h,i,]Perylene",LB
+37005,0.002374906,Fluoranthene,LB
+37005,0.0005599104,Benzo[a]Pyrene,LB
+37005,4.674664e-06,Mercury,LB
+37005,5.82868e-05,Nickel,LB
+37177,3.640275,Carbon Dioxide,TON
+37177,0.0004839752,Benz[a]Anthracene,LB
+37177,1.7307784e-05,Arsenic,LB
+37177,0.0274951,Acrolein,LB
+37177,1.4301288,Hexane,LB
+37173,0.3342582,Anthracene,LB
+37173,11.7382,Nitrogen Oxides,TON
+37171,0.010284408,Benzo[k]Fluoranthene,LB
+37171,0.0004328122,Nickel,LB
+37171,0.005121234,Ammonia,TON
+37171,0.00867579,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.0004539211,Sulfate Portion of PM2.5-PRI,TON
+37169,99.47646,Styrene,LB
+37169,3.666606,Anthracene,LB
+37169,1.970506,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,1.3731548,Benzo[b]Fluoranthene,LB
+37169,1.9697482,Benzo[a]Pyrene,LB
+37169,4491.26,Benzene,LB
+37149,0.1668058,Toluene,LB
+37149,0.00011884568,Anthracene,LB
+37149,0.000279296,Arsenic,LB
+37149,0.0008921028,Phenanthrene,LB
+37149,0.0005592096,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.0002280566,Arsenic,LB
+37153,0.5823476,Naphthalene,LB
+37153,0.01335257,PM25-Primary from certain diesel engines,TON
+37153,0.002248168,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.003823412,Benzo[a]Pyrene,LB
+37153,0.0012178258,Manganese,LB
+37153,0.3530632,Toluene,LB
+37153,0.05345358,Pyrene,LB
+37147,2.041572,Phenanthrene,LB
+37147,0.4274212,PM2.5 Primary (Filt + Cond),TON
+37147,1.135156,Volatile Organic Compounds,TON
+37147,0.4665702,Styrene,LB
+37147,4.334332e-05,Mercury,LB
+37147,1.0322224,Naphthalene,LB
+37147,0.001498933,Elemental Carbon portion of PM2.5-PRI,TON
+37147,2.415976e-05,Nitrate portion of PM2.5-PRI,TON
+37147,0.003198082,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,1279.8298,Hexane,LB
+37139,0.7524226,Anthracene,LB
+37139,0.009578478,"Benzo[g,h,i,]Perylene",LB
+37139,0.301651,Chrysene,LB
+37139,239.2188,Formaldehyde,LB
+37139,0.006396932,"Dibenzo[a,h]Anthracene",LB
+37139,21.44302,Benzene,LB
+37139,0.02927462,Nickel,LB
+37139,25.16368,Naphthalene,LB
+37139,5.663894,Carbon Monoxide,TON
+37139,0.8416571,PM10 Primary (Filt + Cond),TON
+37143,5.566504,Toluene,LB
+37143,0.0001114274,Nickel,LB
+37143,0.0001708642,Arsenic,LB
+37141,1.4783636,Pyrene,LB
+37141,0.006512754,"Benzo[g,h,i,]Perylene",LB
+37141,0.0314937,Benzo[b]Fluoranthene,LB
+37141,1.794243,Phenanthrene,LB
+37141,5.349216,Carbon Monoxide,TON
+37141,0.162723,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.004886582,Nitrous Oxide,TON
+37141,0.001881058,Nitrate portion of PM2.5-PRI,TON
+37137,3.371158,Acrolein,LB
+37137,2.953456,Toluene,LB
+37137,2.256164,Propionaldehyde,LB
+37137,0.2261662,Pyrene,LB
+37137,0.0001549963,"Dibenzo[a,h]Anthracene",LB
+37137,0.005421036,Nickel,LB
+37137,0.001862662,Arsenic,LB
+37137,0.8028032,Nitrogen Oxides,TON
+37137,0.002808754,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.001288921,Sulfate Portion of PM2.5-PRI,TON
+37133,0.9744154,"2,2,4-Trimethylpentane",LB
+37133,2.732484,Acrolein,LB
+37133,2.843606,Toluene,LB
+37133,0.2686765,PM10 Primary (Filt + Cond),TON
+37127,140.777,Acrolein,LB
+37127,116.16286,Toluene,LB
+37127,0.2821582,Nickel,LB
+37127,0.576994,Methane,TON
+37127,0.0345333,Nitrous Oxide,TON
+37121,0.4186817,Volatile Organic Compounds,TON
+37121,6.65513e-06,Benzo[a]Pyrene,LB
+37121,1.5318266e-07,"Dibenzo[a,h]Anthracene",LB
+37121,0.012490942,Benzene,LB
+37121,2.389432e-07,Arsenic,LB
+37121,0.004223274,Acetaldehyde,LB
+37121,0.0006497144,Naphthalene,LB
+37121,0.005462209,Carbon Monoxide,TON
+37121,6.997104e-06,Nitrous Oxide,TON
+37121,2.16168e-06,Ammonia,TON
+37121,1.891101e-08,Nitrate portion of PM2.5-PRI,TON
+37121,0.0002366486,Acrolein,LB
+37117,0.6062048,"1,3-Butadiene",LB
+37117,0.496482,Hexane,LB
+37117,0.016413434,Benzo[a]Pyrene,LB
+37117,0.0006697982,"Dibenzo[a,h]Anthracene",LB
+37117,1.8206934,Benzene,LB
+37117,0.13978292,Fluorene,LB
+37117,0.0002841915,Nitrate portion of PM2.5-PRI,TON
+37117,0.000210725,Anthracene,LB
+37117,9.08181e-05,Benzo[a]Pyrene,LB
+37117,0.1988349,"2,2,4-Trimethylpentane",LB
+37117,1.427909e-05,Manganese,LB
+37117,1.8277444e-06,Nickel,LB
+37117,2.80244e-06,Arsenic,LB
+37117,0.0013387786,Phenanthrene,LB
+37117,0.012801778,Naphthalene,LB
+37117,0.5676222,Carbon Dioxide,TON
+37117,0.005355551,Nitrogen Oxides,TON
+37117,2.084087e-06,Sulfate Portion of PM2.5-PRI,TON
+37107,0.015531402,Nickel,LB
+37107,0.4875636,Acenaphthene,LB
+37107,1.840178,Phenanthrene,LB
+37107,2.121974,Styrene,LB
+37107,4.808812,"1,3-Butadiene",LB
+37107,3.788014,Hexane,LB
+37107,10.354326,Xylenes (Mixed Isomers),LB
+37107,2.60317e-05,Chromium (VI),LB
+37107,0.03353904,Benzo[b]Fluoranthene,LB
+37107,0.8196622,Acenaphthylene,LB
+37107,0.4997163,PM10 Primary (Filt + Cond),TON
+37107,0.8644718,Volatile Organic Compounds,TON
+37097,0.07816806,Manganese,LB
+37097,0.000985072,Mercury,LB
+37097,0.18283432,Acenaphthene,LB
+37097,4063.661,Carbon Dioxide,TON
+37097,0.0003770363,Nitrate portion of PM2.5-PRI,TON
+37097,0.0851784,Sulfur Dioxide,TON
+37097,0.004232356,Sulfate Portion of PM2.5-PRI,TON
+37097,0.8345828,Acenaphthylene,LB
+37097,4.190748,Styrene,LB
+37105,0.03859914,Styrene,LB
+37105,0.0013614996,Anthracene,LB
+37105,0.00233202,Fluoranthene,LB
+37105,0.003215278,Fluorene,LB
+37105,7.457907e-05,Sulfur Dioxide,TON
+37105,1.630273e-05,Sulfate Portion of PM2.5-PRI,TON
+37105,23574.48,Xylenes (Mixed Isomers),LB
+37105,10.662472,Acenaphthene,LB
+37105,57.92728,Phenanthrene,LB
+37105,553.6374,Naphthalene,LB
+37105,6.481069,Methane,TON
+37103,0.01854235,Nickel,LB
+37103,0.02350084,Methane,TON
+37103,0.5575204,PM10-Primary from certain diesel engines,TON
+37103,0.5128677,PM25-Primary from certain diesel engines,TON
+37103,0.02505977,Ammonia,TON
+37103,0.001467831,Nitrate portion of PM2.5-PRI,TON
+37103,0.6637616,PM10 Primary (Filt + Cond),TON
+37103,0.009772822,Sulfate Portion of PM2.5-PRI,TON
+37103,6.271514,Xylenes (Mixed Isomers),LB
+37103,0.2817836,Benz[a]Anthracene,LB
+37099,10.71498,"1,3-Butadiene",LB
+37099,0.2672288,Benzo[a]Pyrene,LB
+37099,0.8683234,Benz[a]Anthracene,LB
+37099,0.04295558,Sulfur Dioxide,TON
+37099,0.03214064,Sulfate Portion of PM2.5-PRI,TON
+37099,0.00209913,Benz[a]Anthracene,LB
+37099,0.00718321,Acenaphthene,LB
+37099,0.003447208,PM2.5 Primary (Filt + Cond),TON
+37083,62.5342,Ethyl Benzene,LB
+37083,0.3824428,Benzo[a]Pyrene,LB
+37083,151.44754,Benzene,LB
+37083,4.060399,PM10-Primary from certain diesel engines,TON
+37083,0.7083356,Ammonia,TON
+37083,5.736664,PM10 Primary (Filt + Cond),TON
+37083,3.961386,PM2.5 Primary (Filt + Cond),TON
+37017,0.00077506,Nickel,LB
+37017,0.000245499,Arsenic,LB
+37017,0.002171758,Methane,TON
+37017,0.14660516,Hexane,LB
+37017,0.0001749517,"Dibenzo[a,h]Anthracene",LB
+37021,17.253552,Manganese,LB
+37021,49.53216,Acenaphthene,LB
+37021,5.198376,Elemental Carbon portion of PM2.5-PRI,TON
+37021,1358.465,Nitrogen Oxides,TON
+37021,14.740202,Chrysene,LB
+37017,1365.4668,"1,3-Butadiene",LB
+37017,206.7232,Propionaldehyde,LB
+37017,16.59472,Pyrene,LB
+37017,0.0056442,Chromium (VI),LB
+37017,2.390366,Benzo[k]Fluoranthene,LB
+37017,0.06614954,"Dibenzo[a,h]Anthracene",LB
+37017,7137.926,"2,2,4-Trimethylpentane",LB
+37017,1.2560404,Manganese,LB
+37017,5.477123,Methane,TON
+37009,2.000748,Ethyl Benzene,LB
+37009,1.4992968,Hexane,LB
+37009,0.1212319,PM25-Primary from certain diesel engines,TON
+37009,0.007244485,Ammonia,TON
+37015,2.334716,Ethyl Benzene,LB
+37015,0.006882642,Fluoranthene,LB
+37015,0.00016853632,"Dibenzo[a,h]Anthracene",LB
+37021,0.0009810661,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.01253719,Ammonia,TON
+37021,0.008088392,Sulfur Dioxide,TON
+37021,0.0001892656,Sulfate Portion of PM2.5-PRI,TON
+37021,0.12861102,Acrolein,LB
+37021,1.2294804,Hexane,LB
+37021,2.573134,Xylenes (Mixed Isomers),LB
+37021,0.0016138644,Benz[a]Anthracene,LB
+37021,3.653318,Benzene,LB
+37009,2.437124,Ethyl Benzene,LB
+37009,0.003451944,Benzo[k]Fluoranthene,LB
+37009,0.002746378,Chrysene,LB
+37009,8.818478,Formaldehyde,LB
+37009,0.003058862,Benz[a]Anthracene,LB
+37009,0.00019128988,Mercury,LB
+37009,0.00238502,Nickel,LB
+37009,55.2854,Acetaldehyde,LB
+37009,1.979696e-05,Nitrate portion of PM2.5-PRI,TON
+37171,1.1594162,Toluene,LB
+37171,0.06194344,Nitrogen Oxides,TON
+37151,0.0007263692,"Dibenzo[a,h]Anthracene",LB
+37151,0.014532318,Benz[a]Anthracene,LB
+37151,0.0312019,Manganese,LB
+37103,0.14090086,Xylenes (Mixed Isomers),LB
+37103,0.0004816186,"Benzo[g,h,i,]Perylene",LB
+37103,0.15944672,Toluene,LB
+37103,8.868218e-06,Mercury,LB
+37103,14.3372,Carbon Dioxide,TON
+37103,6.296025e-07,Nitrate portion of PM2.5-PRI,TON
+37103,0.004628212,Volatile Organic Compounds,TON
+37089,0.00015122188,Mercury,LB
+37089,0.01073677,Methane,TON
+37089,0.006724771,Sulfur Dioxide,TON
+37089,0.0001617903,Sulfate Portion of PM2.5-PRI,TON
+37021,593.5328,Formaldehyde,LB
+37021,54.207,Benzene,LB
+37021,7.799012,Styrene,LB
+37021,43.47834,Toluene,LB
+37021,6.82877,Phenanthrene,LB
+37021,4145.439,Carbon Dioxide,TON
+37021,1.400015,PM10-Primary from certain diesel engines,TON
+37021,0.504398,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.08252176,Ammonia,TON
+37021,0.03670905,Sulfate Portion of PM2.5-PRI,TON
+37017,31.77438,Xylenes (Mixed Isomers),LB
+37017,1.300101,Volatile Organic Compounds,TON
+37017,0.3686252,Fluorene,LB
+37017,5.318758,Volatile Organic Compounds,TON
+37011,12.975832,Acrolein,LB
+37011,16.486236,Toluene,LB
+37011,0.9600724,Fluoranthene,LB
+37011,0.00354352,Benzo[k]Fluoranthene,LB
+37011,5.271654,"2,2,4-Trimethylpentane",LB
+37011,0.0323526,Nickel,LB
+37011,5.983182,Ethyl Benzene,LB
+37011,0.1343176,Ammonia,TON
+37011,1.12227,PM10 Primary (Filt + Cond),TON
+37011,0.07508887,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.616078,Arsenic,LB
+37011,2334.094,Acetaldehyde,LB
+37011,6.858484,Acenaphthene,LB
+37011,13.892018,Fluorene,LB
+37011,0.006728651,Nitrate portion of PM2.5-PRI,TON
+37011,183.467,Nitrogen Oxides,TON
+37011,1.25729,Sulfur Dioxide,TON
+37011,3884.878,Ethyl Benzene,LB
+37011,20654.78,Toluene,LB
+37011,4549.278,Hexane,LB
+37011,2.329498,Benzo[a]Pyrene,LB
+37011,0.4017704,Nickel,LB
+37003,1.2798854,Styrene,LB
+37003,0.3104126,Anthracene,LB
+37003,0.002414304,Benzo[k]Fluoranthene,LB
+37003,8.810068e-06,Mercury,LB
+37003,3.691041,Carbon Monoxide,TON
+37003,2.978954,Nitrogen Oxides,TON
+37003,0.03426455,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,5544.674,Toluene,LB
+37001,0.5733962,Anthracene,LB
+37001,11.11092,Propionaldehyde,LB
+37001,1.1184622,Pyrene,LB
+37001,0.0002456128,Chromium (VI),LB
+37001,0.006225648,"Dibenzo[a,h]Anthracene",LB
+37001,3.63983,Phenanthrene,LB
+37001,0.04147777,Nitrous Oxide,TON
+37001,0.0007894342,Nitrate portion of PM2.5-PRI,TON
+37199,0.09003128,Acrolein,LB
+37199,19.77004,Toluene,LB
+37199,0.1189578,Propionaldehyde,LB
+37199,0.009205276,Pyrene,LB
+37199,0.02513356,Acenaphthylene,LB
+37199,0.011176838,Fluorene,LB
+37199,0.007012204,Methane,TON
+37185,0.008360222,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.2136666,Chrysene,LB
+37185,1.833756,Phenanthrene,LB
+37185,16.172532,Naphthalene,LB
+37185,0.03204127,Methane,TON
+37185,0.7615591,PM10-Primary from certain diesel engines,TON
+37185,0.00266464,Nitrous Oxide,TON
+37185,0.0014476592,Benz[a]Anthracene,LB
+37185,1.9856436e-05,Mercury,LB
+37185,0.0009516255,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.001465933,Sulfur Dioxide,TON
+37185,9.625585e-05,Sulfate Portion of PM2.5-PRI,TON
+37189,1.6839676e-05,Mercury,LB
+37189,1.4607272,Phenanthrene,LB
+37189,0.1116557,Organic Carbon portion of PM2.5-PRI,TON
+37189,9.970686,Acrolein,LB
+37189,0.00601927,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,1313.0066,Formaldehyde,LB
+37189,124.64282,Benzene,LB
+37189,0.168095,Manganese,LB
+37193,0.02502326,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.01353162,"Dibenzo[a,h]Anthracene",LB
+37193,0.04120114,Arsenic,LB
+37193,58.17322,Naphthalene,LB
+37193,1.558583,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.01808993,Nitrous Oxide,TON
+37193,0.005786158,Nitrate portion of PM2.5-PRI,TON
+37193,59.53901,Nitrogen Oxides,TON
+37193,0.0982123,Benzo[b]Fluoranthene,LB
+37185,0.002692761,Sulfate Portion of PM2.5-PRI,TON
+37185,0.07165046,Benz[a]Anthracene,LB
+37185,1.1489274,Acenaphthylene,LB
+37185,0.2157278,Anthracene,LB
+37185,0.0001783352,Chromium (VI),LB
+37183,0.4201002,Anthracene,LB
+37183,8.097112,Propionaldehyde,LB
+37183,0.00113533,Nitrate portion of PM2.5-PRI,TON
+37183,0.04751786,Nickel,LB
+37183,0.4168272,Nitrous Oxide,TON
+37179,41.76732,Phenanthrene,LB
+37179,226.4304,Carbon Monoxide,TON
+37179,0.009904343,Nitrate portion of PM2.5-PRI,TON
+37179,3.854716,PM2.5 Primary (Filt + Cond),TON
+37179,21.26388,Fluoranthene,LB
+37179,26.15114,Pyrene,LB
+37179,26.36568,Acenaphthylene,LB
+37179,0.005126974,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.003971018,Benzo[b]Fluoranthene,LB
+37179,0.06863584,Acenaphthylene,LB
+37179,4.806432,Formaldehyde,LB
+37179,0.0012325592,Nickel,LB
+37179,0.08179516,Phenanthrene,LB
+37179,0.00134895,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.002899606,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.4088548,Fluoranthene,LB
+37173,1.3588048,"2,2,4-Trimethylpentane",LB
+37173,0.006348934,Nickel,LB
+37173,0.02065469,Methane,TON
+37173,0.1455088,PM10-Primary from certain diesel engines,TON
+37173,0.7781074,Styrene,LB
+37125,0.007852524,Arsenic,LB
+37125,0.02361459,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.1702167,PM10 Primary (Filt + Cond),TON
+37113,1.2725784,Styrene,LB
+37113,0.014488008,Benzo[k]Fluoranthene,LB
+37113,5.934985e-05,Nitrate portion of PM2.5-PRI,TON
+37113,0.01005087,Organic Carbon portion of PM2.5-PRI,TON
+37109,7.303242e-05,"Dibenzo[a,h]Anthracene",LB
+37109,6.768574,Benzene,LB
+37109,0.0008679166,Arsenic,LB
+37109,0.004143844,PM2.5 Primary (Filt + Cond),TON
+37109,0.001426713,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.14658272,Styrene,LB
+37109,0.1275901,Acrolein,LB
+37109,0.12082992,Propionaldehyde,LB
+37105,1.815235,Styrene,LB
+37105,3.57034,Hexane,LB
+37105,4.020214e-05,Chromium (VI),LB
+37105,0.10318986,Benz[a]Anthracene,LB
+37105,0.4202834,Acenaphthene,LB
+37101,0.00966019,Manganese,LB
+37101,0.08635096,Phenanthrene,LB
+37101,0.8101218,Naphthalene,LB
+37101,0.009222693,Methane,TON
+37101,0.01034632,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.01245762,Sulfur Dioxide,TON
+37101,9.060528,Ethyl Benzene,LB
+37101,0.2822596,Propionaldehyde,LB
+37101,33.41188,Xylenes (Mixed Isomers),LB
+37097,0.15017402,Pyrene,LB
+37097,0.09691906,"Benzo[g,h,i,]Perylene",LB
+37097,0.13163976,Fluoranthene,LB
+37097,30.08028,Formaldehyde,LB
+37097,41.55198,"2,2,4-Trimethylpentane",LB
+37097,0.48872,Phenanthrene,LB
+37097,39.68993,Carbon Monoxide,TON
+37097,0.02656843,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,1.276294,Volatile Organic Compounds,TON
+37089,9.866808,Styrene,LB
+37089,44.89406,Xylenes (Mixed Isomers),LB
+37089,0.0453159,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,1.1303414,Chrysene,LB
+37089,0.08869254,Nickel,LB
+37089,75.09478,Naphthalene,LB
+37087,0.7665004,"2,2,4-Trimethylpentane",LB
+37087,0.3827626,Styrene,LB
+37087,0.09453458,Anthracene,LB
+37087,1.4604268,Propionaldehyde,LB
+37087,2.681324,Benzene,LB
+37087,0.005441122,Nickel,LB
+37087,0.3357594,Phenanthrene,LB
+37079,1.1817152,Toluene,LB
+37079,0.414925,Hexane,LB
+37079,0.000552743,Benzo[k]Fluoranthene,LB
+37079,0.002730004,Nickel,LB
+37073,1.433072e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.000278326,Propionaldehyde,LB
+37073,2.291852e-05,Pyrene,LB
+37073,9.553852e-06,Methane,TON
+37085,535.3408,Acetaldehyde,LB
+37085,3.12434,Fluorene,LB
+37085,0.9284689,Nitrous Oxide,TON
+37085,0.001793316,Nitrate portion of PM2.5-PRI,TON
+37085,0.15950438,Nickel,LB
+37085,36.22502,Styrene,LB
+37085,7.023462,Acenaphthylene,LB
+37081,6.72828,Hexane,LB
+37081,0.011176668,"Benzo[g,h,i,]Perylene",LB
+37081,0.007646148,Benzo[k]Fluoranthene,LB
+37081,0.6482577,PM25-Primary from certain diesel engines,TON
+37081,0.03511542,Sulfur Dioxide,TON
+37071,1.0915052,Pyrene,LB
+37071,0.01682088,Nickel,LB
+37071,47.68584,Acetaldehyde,LB
+37071,0.06917446,Methane,TON
+37071,2.429076,Carbon Monoxide,TON
+37065,0.19410336,Hexane,LB
+37065,0.02798694,Anthracene,LB
+37065,0.05573716,Fluorene,LB
+37065,0.01876518,PM2.5 Primary (Filt + Cond),TON
+37063,6748.032,Toluene,LB
+37063,0.3197798,Benz[a]Anthracene,LB
+37063,1.0100494,Acenaphthene,LB
+37063,0.06677373,Elemental Carbon portion of PM2.5-PRI,TON
+37063,12.6644,Nitrogen Oxides,TON
+37057,4.87024,Anthracene,LB
+37057,102.68822,Propionaldehyde,LB
+37057,293.7586,Naphthalene,LB
+37057,5.954432,PM25-Primary from certain diesel engines,TON
+37057,9.120382,PM10 Primary (Filt + Cond),TON
+37057,0.6239811,Sulfur Dioxide,TON
+37057,0.6032426,Sulfate Portion of PM2.5-PRI,TON
+37055,37.35942,Xylenes (Mixed Isomers),LB
+37055,29.7773,"2,2,4-Trimethylpentane",LB
+37051,212.168,Acetaldehyde,LB
+37051,4.274524,Phenanthrene,LB
+37051,0.5115116,PM25-Primary from certain diesel engines,TON
+37051,14.074152,"1,3-Butadiene",LB
+37051,1.2083828,Anthracene,LB
+37051,0.007503122,"Benzo[g,h,i,]Perylene",LB
+37045,0.465271,Ethyl Benzene,LB
+37045,1.7136712,Xylenes (Mixed Isomers),LB
+37045,0.0012316182,Fluoranthene,LB
+37045,4.310524e-05,Manganese,LB
+37045,4.52568e-07,Mercury,LB
+37045,3.090319,Carbon Dioxide,TON
+37045,0.3973417,Sulfur Dioxide,TON
+37045,0.01583145,Sulfate Portion of PM2.5-PRI,TON
+37045,1.1296686,Anthracene,LB
+37045,1.319453,"Benzo[g,h,i,]Perylene",LB
+37045,0.4973652,Benzo[a]Pyrene,LB
+37045,0.19798228,Arsenic,LB
+37045,449.3596,Acetaldehyde,LB
+37045,7.175692,Phenanthrene,LB
+37045,0.7373558,Nitrous Oxide,TON
+37035,8.196734,Toluene,LB
+37035,0.107439,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.4379523,PM10 Primary (Filt + Cond),TON
+37035,11.374842,Ethyl Benzene,LB
+37035,10.185026,"1,3-Butadiene",LB
+37035,27.18802,Xylenes (Mixed Isomers),LB
+37035,0.0007251452,Benzo[k]Fluoranthene,LB
+37035,347.1684,Formaldehyde,LB
+37033,149.56722,Ethyl Benzene,LB
+37033,0.06111256,Benzo[b]Fluoranthene,LB
+37033,0.06111256,Benzo[k]Fluoranthene,LB
+37033,0.0009797292,Mercury,LB
+37033,1.3870908,Phenanthrene,LB
+37033,0.1468318,Methane,TON
+37033,47.3751,Carbon Monoxide,TON
+37033,1.500772,PM2.5 Primary (Filt + Cond),TON
+37033,0.7322636,Sulfur Dioxide,TON
+37033,2.569428,Anthracene,LB
+37033,5.024778,Pyrene,LB
+37033,0.9095346,Chrysene,LB
+37033,0.03155456,"Dibenzo[a,h]Anthracene",LB
+37033,2842.934,"2,2,4-Trimethylpentane",LB
+37033,0.3153244,Nickel,LB
+37029,0.1979975,Hexane,LB
+37029,2.634648e-06,Chromium (VI),LB
+37029,0.0003599414,"Benzo[g,h,i,]Perylene",LB
+37029,0.0018000568,Benzo[b]Fluoranthene,LB
+37029,0.011447422,Chrysene,LB
+37029,0.7133962,Benzene,LB
+37029,0.0233294,Acenaphthene,LB
+37029,0.02136544,PM10-Primary from certain diesel engines,TON
+37029,0.007303001,Elemental Carbon portion of PM2.5-PRI,TON
+37027,1.3107146,Xylenes (Mixed Isomers),LB
+37027,0.00014621568,Chrysene,LB
+37027,0.4673266,"2,2,4-Trimethylpentane",LB
+37027,0.001115873,Fluorene,LB
+37027,9.062647e-05,Organic Carbon portion of PM2.5-PRI,TON
+37027,1.961717e-05,Sulfur Dioxide,TON
+37175,0.0827832,Acrolein,LB
+37175,0.0016919442,Benzo[a]Pyrene,LB
+37175,3.763934e-05,Arsenic,LB
+37175,1.6653188,Acetaldehyde,LB
+37175,0.08538234,Nitrogen Oxides,TON
+37175,0.000817927,Organic Carbon portion of PM2.5-PRI,TON
+37171,91.7811,Naphthalene,LB
+37171,424.9868,Carbon Monoxide,TON
+37171,0.1800994,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.879118,PM2.5 Primary (Filt + Cond),TON
+37171,0.0014159008,Chromium (VI),LB
+37171,2.004796,"Benzo[g,h,i,]Perylene",LB
+37165,1.5730312,Toluene,LB
+37165,0.5337868,Hexane,LB
+37165,0.0318711,Chrysene,LB
+37165,0.0002987704,Benzo[k]Fluoranthene,LB
+37165,0.013841318,Chrysene,LB
+37165,0.007221754,Benzo[a]Pyrene,LB
+37161,0.12649172,Pyrene,LB
+37161,0.02325878,Benzo[b]Fluoranthene,LB
+37161,79.54114,Benzene,LB
+37161,0.03522943,Ammonia,TON
+37161,0.0001011461,Nitrate portion of PM2.5-PRI,TON
+37153,9.096484e-05,Chrysene,LB
+37153,0.10332014,Acetaldehyde,LB
+37153,0.000316811,Acenaphthene,LB
+37153,0.0006417204,Fluorene,LB
+37153,0.005668875,Volatile Organic Compounds,TON
+37145,0.3447662,"1,3-Butadiene",LB
+37145,0.8328194,Toluene,LB
+37145,0.0003613378,Benzo[k]Fluoranthene,LB
+37145,0.2950698,"2,2,4-Trimethylpentane",LB
+37145,0.006149989,Methane,TON
+37145,0.4052994,Carbon Monoxide,TON
+37145,254.1575,Carbon Dioxide,TON
+37145,0.05808115,PM10-Primary from certain diesel engines,TON
+37143,3.255412,Ethyl Benzene,LB
+37139,21.24022,Hexane,LB
+37129,2.638214,Acenaphthene,LB
+37129,102.52784,Naphthalene,LB
+37129,0.1207976,Sulfur Dioxide,TON
+37129,0.0268561,"Dibenzo[a,h]Anthracene",LB
+37129,27.38566,"2,2,4-Trimethylpentane",LB
+37141,0.00563355,Nitrate portion of PM2.5-PRI,TON
+37141,0.4619897,Organic Carbon portion of PM2.5-PRI,TON
+37141,9.830662,"2,2,4-Trimethylpentane",LB
+37141,0.1467678,Manganese,LB
+37133,1.0061304,Pyrene,LB
+37133,0.0017196824,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.14420312,Benz[a]Anthracene,LB
+37133,1.7560828,Phenanthrene,LB
+37129,0.010626662,Benzo[k]Fluoranthene,LB
+37129,0.2604996,Benzo[a]Pyrene,LB
+37129,0.004609623,Nitrate portion of PM2.5-PRI,TON
+37129,1.905636,Volatile Organic Compounds,TON
+37125,0.00019332852,Arsenic,LB
+37125,0.0009782542,Ammonia,TON
+37125,0.01763875,PM10 Primary (Filt + Cond),TON
+37125,0.05910402,Pyrene,LB
+37125,0.0012095222,Benzo[b]Fluoranthene,LB
+37125,0.0001655345,Benzo[k]Fluoranthene,LB
+37125,0.16659114,"2,2,4-Trimethylpentane",LB
+37125,0.013715048,Benz[a]Anthracene,LB
+37121,0.3851202,Styrene,LB
+37121,2.018546,Acrolein,LB
+37121,0.618642,Hexane,LB
+37121,0.0006855884,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.002693456,Benzo[b]Fluoranthene,LB
+37121,0.15111172,Fluoranthene,LB
+37121,0.0007053382,Arsenic,LB
+37121,0.16465592,Fluorene,LB
+37121,2.777484,Naphthalene,LB
+37121,0.004338948,Methane,TON
+37123,0.06553338,Propionaldehyde,LB
+37123,8.000412,Xylenes (Mixed Isomers),LB
+37123,0.003397124,Acenaphthene,LB
+37123,84.62925,Carbon Dioxide,TON
+37123,1.008027e-05,Nitrate portion of PM2.5-PRI,TON
+37119,24.14993,PM10 Primary (Filt + Cond),TON
+37119,57.2111,Styrene,LB
+37119,393.8234,Acrolein,LB
+37119,42.84014,Pyrene,LB
+37119,564.2774,Xylenes (Mixed Isomers),LB
+37119,0.9550196,Benzo[b]Fluoranthene,LB
+37119,32.47532,Fluoranthene,LB
+37119,6.120286,Chrysene,LB
+37119,160.79556,"2,2,4-Trimethylpentane",LB
+37119,3.275148,Manganese,LB
+37119,11.79642,PM10-Primary from certain diesel engines,TON
+37119,3.222978,Acenaphthylene,LB
+37119,0.685068,Manganese,LB
+37119,0.09328674,Elemental Carbon portion of PM2.5-PRI,TON
+37119,3.101158,PM10 Primary (Filt + Cond),TON
+37119,0.5800095,Sulfur Dioxide,TON
+37119,0.02368007,Sulfate Portion of PM2.5-PRI,TON
+37107,0.000943,Chromium (VI),LB
+37107,1.1057132,"Benzo[g,h,i,]Perylene",LB
+37107,0.3231944,Chrysene,LB
+37107,2.477184,Fluorene,LB
+37107,278.4723,Carbon Monoxide,TON
+37107,33.51971,Nitrogen Oxides,TON
+37097,0.3178252,Benzo[b]Fluoranthene,LB
+37097,10.99358,Fluoranthene,LB
+37097,2.048614,Chrysene,LB
+37097,177.33856,Naphthalene,LB
+37101,323.8016,Styrene,LB
+37101,8.505214,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,20.94832,Fluoranthene,LB
+37101,4051.452,Formaldehyde,LB
+37101,3.020624,Nickel,LB
+37101,5125.934,Acetaldehyde,LB
+37101,10.31372,PM2.5 Primary (Filt + Cond),TON
+37099,36.61124,Toluene,LB
+37099,0.00848527,Anthracene,LB
+37099,0.01205448,"Benzo[g,h,i,]Perylene",LB
+37099,0.003000658,Chrysene,LB
+37099,3.201492,Formaldehyde,LB
+37099,0.001280371,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.0007351264,Ammonia,TON
+37093,0.001339807,Nitrous Oxide,TON
+37093,0.0007082748,Organic Carbon portion of PM2.5-PRI,TON
+37093,1.702026,Ethyl Benzene,LB
+37093,0.05977682,Propionaldehyde,LB
+37093,1.0769628e-06,Chromium (VI),LB
+37093,2.371562e-05,"Dibenzo[a,h]Anthracene",LB
+37089,0.0006191466,Chromium (VI),LB
+37089,0.09404716,Benzo[b]Fluoranthene,LB
+37089,0.006151533,Nitrate portion of PM2.5-PRI,TON
+37089,54.32075,Nitrogen Oxides,TON
+37089,3.42304,PM10 Primary (Filt + Cond),TON
+37067,30626.7,Xylenes (Mixed Isomers),LB
+37065,0.2294436,Acenaphthene,LB
+37065,5.562421,Nitrogen Oxides,TON
+37065,0.04312507,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.2760582,PM10 Primary (Filt + Cond),TON
+37065,0.1817677,PM2.5 Primary (Filt + Cond),TON
+37065,1.0014006,Styrene,LB
+37065,1.722147,Hexane,LB
+37065,0.5451016,Pyrene,LB
+37065,0.008722404,Benzo[b]Fluoranthene,LB
+37063,7.002088,Toluene,LB
+37063,0.04545346,Propionaldehyde,LB
+37063,0.003569042,Pyrene,LB
+37063,2.630758e-05,"Dibenzo[a,h]Anthracene",LB
+37063,1.875608,Benzene,LB
+37063,1.4818936e-06,Mercury,LB
+37063,0.00237785,Methane,TON
+37063,0.03559817,Volatile Organic Compounds,TON
+37061,0.009555238,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.12591438,Benzo[a]Pyrene,LB
+37061,0.005125604,"Dibenzo[a,h]Anthracene",LB
+37061,0.03268226,Manganese,LB
+37061,1181.859,Carbon Dioxide,TON
+37061,8.00714,Nitrogen Oxides,TON
+37061,0.587125,PM10 Primary (Filt + Cond),TON
+37061,0.4689172,PM2.5 Primary (Filt + Cond),TON
+37057,0.05633434,Chrysene,LB
+37057,0.05820894,Benz[a]Anthracene,LB
+37057,0.02241604,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.04958464,Arsenic,LB
+37057,152.45898,Acetaldehyde,LB
+37057,0.4062032,PM10 Primary (Filt + Cond),TON
+37057,0.0881509,Sulfur Dioxide,TON
+37053,0.6843554,Acrolein,LB
+37053,36.45968,Benzene,LB
+37053,0.0001841337,Mercury,LB
+37053,0.003520454,Arsenic,LB
+37053,0.02767487,Nitrous Oxide,TON
+37053,4.056924e-05,Nitrate portion of PM2.5-PRI,TON
+37047,4109.958,Ethyl Benzene,LB
+37047,5.08236,Anthracene,LB
+37047,32.1501,Phenanthrene,LB
+37047,3.341823,Methane,TON
+37043,0.0002211366,Methane,TON
+37043,0.0001917577,Ammonia,TON
+37043,0.01516463,Nitrogen Oxides,TON
+37043,8.81668e-05,Organic Carbon portion of PM2.5-PRI,TON
+37043,6.060819e-06,Sulfate Portion of PM2.5-PRI,TON
+37037,0.9567786,Pyrene,LB
+37037,20.86514,Xylenes (Mixed Isomers),LB
+37037,0.000772693,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.010152044,Benzo[a]Pyrene,LB
+37037,0.11549812,Benz[a]Anthracene,LB
+37037,96.26206,Acetaldehyde,LB
+37037,0.008724202,Elemental Carbon portion of PM2.5-PRI,TON
+37037,1.78479,Nitrogen Oxides,TON
+37037,0.01967903,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.01295755,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,1.060832,Ethyl Benzene,LB
+37031,0.91881,"1,3-Butadiene",LB
+37031,0.8640206,"2,2,4-Trimethylpentane",LB
+37031,0.00403274,Nickel,LB
+37031,0.02204615,Methane,TON
+37031,0.003523444,Sulfur Dioxide,TON
+37029,0.0001385495,Sulfate Portion of PM2.5-PRI,TON
+37029,0.18540262,Acrolein,LB
+37029,0.14957704,Toluene,LB
+37029,0.02320876,Pyrene,LB
+37029,0.00012241538,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.05674828,"2,2,4-Trimethylpentane",LB
+37029,3.827012e-07,Mercury,LB
+37029,0.005355714,PM2.5 Primary (Filt + Cond),TON
+37029,0.04826172,Propionaldehyde,LB
+37029,0.0022261,"Benzo[g,h,i,]Perylene",LB
+37029,0.003566446,Fluoranthene,LB
+37029,0.0004853594,Manganese,LB
+37029,0.001991808,Methane,TON
+37149,0.259912,Benzo[a]Pyrene,LB
+37149,163.2296,Acetaldehyde,LB
+37149,4.472552,Phenanthrene,LB
+37149,0.1897106,Methane,TON
+37149,0.5139051,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.369254,Organic Carbon portion of PM2.5-PRI,TON
+37149,1.438697,PM10 Primary (Filt + Cond),TON
+37149,0.1578084,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,12.57442,Ethyl Benzene,LB
+37149,27.31254,Toluene,LB
+37149,9.580918,Hexane,LB
+37149,1.2805212,Anthracene,LB
+37149,19.406284,Propionaldehyde,LB
+37149,27.9342,Xylenes (Mixed Isomers),LB
+37149,1.9917968,Acenaphthylene,LB
+37157,1.569608,PM10-Primary from certain diesel engines,TON
+37157,0.5687548,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.02565609,Nitrous Oxide,TON
+37157,26.95218,Nitrogen Oxides,TON
+37157,1.543708,PM2.5 Primary (Filt + Cond),TON
+37151,22.6303,Toluene,LB
+37151,15.295208,Propionaldehyde,LB
+37151,0.011826282,"Benzo[g,h,i,]Perylene",LB
+37151,307.4182,Formaldehyde,LB
+37151,0.01612447,Sulfate Portion of PM2.5-PRI,TON
+37145,420.2562,"2,2,4-Trimethylpentane",LB
+37145,12.04416,Propionaldehyde,LB
+37145,592.5712,Benzene,LB
+37145,0.367401,Methane,TON
+37145,0.3218754,Nitrous Oxide,TON
+37145,0.3562382,Ammonia,TON
+37145,0.4958214,PM10 Primary (Filt + Cond),TON
+37145,0.004480551,Sulfate Portion of PM2.5-PRI,TON
+37143,0.950879,Hexane,LB
+37143,0.0001321022,Benzo[k]Fluoranthene,LB
+37143,1.2536544,Ethyl Benzene,LB
+37143,0.0007308951,Nitrous Oxide,TON
+37139,0.082374,Pyrene,LB
+37139,0.001833247,Benzo[b]Fluoranthene,LB
+37139,0.02580806,Acenaphthene,LB
+37139,0.9253606,Naphthalene,LB
+37139,0.2912791,Carbon Monoxide,TON
+37139,0.00333237,Ammonia,TON
+37139,0.009208852,Organic Carbon portion of PM2.5-PRI,TON
+37141,103.49304,"1,3-Butadiene",LB
+37141,522.244,"2,2,4-Trimethylpentane",LB
+37141,0.2043984,Benz[a]Anthracene,LB
+37141,751.843,Benzene,LB
+37141,0.3841092,Nitrous Oxide,TON
+37135,3.159056,Phenanthrene,LB
+37135,0.8542536,Fluoranthene,LB
+37135,0.18541334,Benzo[k]Fluoranthene,LB
+37135,0.1759764,Chrysene,LB
+37135,0.05325594,Manganese,LB
+37135,0.0002380848,Chromium (VI),LB
+37129,20.1747,"1,3-Butadiene",LB
+37129,154.7829,Carbon Monoxide,TON
+37129,0.5575678,PM10 Primary (Filt + Cond),TON
+37127,5.770952,Hexane,LB
+37127,1.2048908,Acenaphthylene,LB
+37127,3.955712e-05,Mercury,LB
+37127,0.7168122,Acenaphthene,LB
+37127,0.03033772,Ammonia,TON
+37127,0.01376944,Sulfate Portion of PM2.5-PRI,TON
+37127,1.287354,Volatile Organic Compounds,TON
+37127,7.57822,Ethyl Benzene,LB
+37127,0.00180292,"1,3-Butadiene",LB
+37127,4.280306e-06,Nickel,LB
+37127,3.418578e-05,Acenaphthene,LB
+37119,4.218366,Benz[a]Anthracene,LB
+37119,2.509912,Nickel,LB
+37119,11.44971,Methane,TON
+37119,0.02456888,Nitrate portion of PM2.5-PRI,TON
+37119,10771.954,Hexane,LB
+37119,16.920848,"Benzo[g,h,i,]Perylene",LB
+37119,4.32385,Benzo[b]Fluoranthene,LB
+37115,6.822006,Hexane,LB
+37115,0.3743756,Chrysene,LB
+37115,0.01800694,Arsenic,LB
+37115,0.7779774,Acenaphthene,LB
+37115,1.7615526,Fluorene,LB
+37115,0.1816743,Methane,TON
+37109,15.384896,"1,3-Butadiene",LB
+37109,0.02139496,"Benzo[g,h,i,]Perylene",LB
+37109,0.014325,Benzo[k]Fluoranthene,LB
+37109,0.6729486,Chrysene,LB
+37109,1.1486356,Benz[a]Anthracene,LB
+37109,0.4462926,Elemental Carbon portion of PM2.5-PRI,TON
+37109,1.255849,PM2.5 Primary (Filt + Cond),TON
+37109,0.2354108,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,1949.2086,Toluene,LB
+37107,0.07907932,Benzo[b]Fluoranthene,LB
+37107,0.07907932,Benzo[k]Fluoranthene,LB
+37107,0.002438232,"Dibenzo[a,h]Anthracene",LB
+37107,368.6296,Benzene,LB
+37107,0.015383,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.0003099063,Nitrate portion of PM2.5-PRI,TON
+37107,0.1070036,PM2.5 Primary (Filt + Cond),TON
+37107,0.02896108,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,51.16784,Volatile Organic Compounds,TON
+37097,1.0643056e-05,"Dibenzo[a,h]Anthracene",LB
+37097,0.00573592,Phenanthrene,LB
+37097,0.001385903,Methane,TON
+37097,0.0001119583,Elemental Carbon portion of PM2.5-PRI,TON
+37097,1.312963e-06,Nitrate portion of PM2.5-PRI,TON
+37097,0.0002354995,Organic Carbon portion of PM2.5-PRI,TON
+37097,5.354158e-08,Chromium (VI),LB
+37091,0.082926,Acrolein,LB
+37091,27.00184,Toluene,LB
+37091,0.006408956,Fluoranthene,LB
+37091,0.02010386,Acenaphthylene,LB
+37091,1.377822,Formaldehyde,LB
+37091,6.0911,"2,2,4-Trimethylpentane",LB
+37091,0.0001454008,Arsenic,LB
+37091,0.001192316,Ammonia,TON
+37091,0.000632787,Sulfur Dioxide,TON
+37079,0.04221004,Fluoranthene,LB
+37079,0.009258364,Benzo[k]Fluoranthene,LB
+37079,30.10836,Benzene,LB
+37079,0.007347083,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.03946863,PM10 Primary (Filt + Cond),TON
+37079,0.004854876,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,8624.926,Carbon Dioxide,TON
+37077,26.93806,Nitrogen Oxides,TON
+37025,0.0018003394,Pyrene,LB
+37025,1.120858e-05,Chromium (VI),LB
+37025,0.0012645606,Benzo[k]Fluoranthene,LB
+37025,0.000947097,Chrysene,LB
+37025,1.580268,Formaldehyde,LB
+37025,10.332188,Acetaldehyde,LB
+37025,0.00505339,Phenanthrene,LB
+37025,0.04556512,Naphthalene,LB
+37137,1.1095328,Ethyl Benzene,LB
+37137,0.01077139,Phenanthrene,LB
+37137,0.003890498,Fluorene,LB
+37137,0.004022811,Nitrous Oxide,TON
+37103,0.6711608,Hexane,LB
+37089,0.3216196,Ethyl Benzene,LB
+37089,0.07233384,"1,3-Butadiene",LB
+37089,0.000715142,Benzo[b]Fluoranthene,LB
+37089,0.000715142,Benzo[k]Fluoranthene,LB
+37167,1.3094646,Hexane,LB
+37167,0.04013784,Propionaldehyde,LB
+37167,0.09678748,Naphthalene,LB
+37021,35.17378,Benzene,LB
+37021,0.04420152,Nickel,LB
+37021,162.76478,Acetaldehyde,LB
+37021,0.4167565,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.1986875,Organic Carbon portion of PM2.5-PRI,TON
+37021,312.034,Benzene,LB
+37021,0.0012959896,Mercury,LB
+37021,612.627,Xylenes (Mixed Isomers),LB
+37021,0.0001292765,Chromium (VI),LB
+37021,0.4802784,"Benzo[g,h,i,]Perylene",LB
+37021,0.004141528,"Dibenzo[a,h]Anthracene",LB
+37021,0.10951972,Benz[a]Anthracene,LB
+37005,0.003229922,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,1.398436,"2,2,4-Trimethylpentane",LB
+37005,0.7080318,Phenanthrene,LB
+37005,6.297522,Naphthalene,LB
+37005,814.0122,Carbon Dioxide,TON
+37005,0.1611932,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.010735886,Acenaphthene,LB
+37061,0.004431825,Elemental Carbon portion of PM2.5-PRI,TON
+37061,6.491725e-05,Nitrate portion of PM2.5-PRI,TON
+37061,0.02485744,PM2.5 Primary (Filt + Cond),TON
+37035,0.005740382,Arsenic,LB
+37023,0.0010131922,Benzo[a]Pyrene,LB
+37023,2.358004e-05,"Dibenzo[a,h]Anthracene",LB
+37023,0.019515506,Naphthalene,LB
+37023,4.560806e-05,Sulfate Portion of PM2.5-PRI,TON
+37143,0.3389698,Hexane,LB
+37143,0.00057987,Arsenic,LB
+37143,0.0016297204,Phenanthrene,LB
+37143,1.848609e-06,Nitrate portion of PM2.5-PRI,TON
+37017,0.12547316,Pyrene,LB
+37017,0.9275954,Xylenes (Mixed Isomers),LB
+37017,0.002299418,Nickel,LB
+37017,0.03727042,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.07168406,Volatile Organic Compounds,TON
+37007,2.759552e-05,Chromium (VI),LB
+37007,0.0383046,Chrysene,LB
+37007,0.011710268,Benzo[a]Pyrene,LB
+37007,2.549904e-05,Mercury,LB
+37007,0.5716582,Fluorene,LB
+37007,0.07969561,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.0002282896,Nitrate portion of PM2.5-PRI,TON
+37017,0.0575658,Fluoranthene,LB
+37017,17.49201,Carbon Monoxide,TON
+37017,0.007520063,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.01761474,PM2.5 Primary (Filt + Cond),TON
+37015,0.04537076,"Dibenzo[a,h]Anthracene",LB
+37015,4275.11,"2,2,4-Trimethylpentane",LB
+37015,1.613854,Benz[a]Anthracene,LB
+37015,147.6974,Styrene,LB
+37015,1.568424,Benzo[b]Fluoranthene,LB
+37181,0.0003248546,Arsenic,LB
+37181,0.00823067,Acenaphthene,LB
+37181,73.09993,Carbon Dioxide,TON
+37181,0.00719966,Anthracene,LB
+37181,0.014328022,Pyrene,LB
+37181,22.71404,Xylenes (Mixed Isomers),LB
+37181,0.018314538,"Benzo[g,h,i,]Perylene",LB
+37195,0.0002239542,Benzo[k]Fluoranthene,LB
+37195,9.175529e-07,Nitrate portion of PM2.5-PRI,TON
+37195,2.962073e-05,Sulfur Dioxide,TON
+37191,0.501015,Ethyl Benzene,LB
+37191,0.991485,Xylenes (Mixed Isomers),LB
+37191,0.0007888414,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,2.456516e-06,Mercury,LB
+37191,0.0016114764,Nickel,LB
+37191,0.0001808161,Nitrate portion of PM2.5-PRI,TON
+37187,0.07373452,Toluene,LB
+37187,0.1649569,Methane,TON
+37187,4.038172e-07,Nitrate portion of PM2.5-PRI,TON
+37187,0.1451208,Nitrogen Oxides,TON
+37187,0.0001694743,Sulfur Dioxide,TON
+37181,34.33634,Xylenes (Mixed Isomers),LB
+37191,0.4088672,Styrene,LB
+37191,0.3320908,Acrolein,LB
+37191,0.341972,Propionaldehyde,LB
+37191,0.0292654,Pyrene,LB
+37191,0.02566102,Fluoranthene,LB
+37191,0.005639086,Benzo[k]Fluoranthene,LB
+37191,0.09483242,Phenanthrene,LB
+37191,0.004538445,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.2868268,Styrene,LB
+37181,0.6624008,"1,3-Butadiene",LB
+37181,0.596062,Hexane,LB
+37181,0.0002399554,"Benzo[g,h,i,]Perylene",LB
+37181,0.08466432,Fluoranthene,LB
+37181,2.191879,Carbon Monoxide,TON
+37181,0.0006994916,Sulfate Portion of PM2.5-PRI,TON
+37179,120.5496,Hexane,LB
+37179,136.90568,Xylenes (Mixed Isomers),LB
+37197,111.00322,Styrene,LB
+37197,1.6324928,Chrysene,LB
+37197,2.73541,Benzo[a]Pyrene,LB
+37197,4976.06,Benzene,LB
+37197,0.05750128,Mercury,LB
+37195,2333.864,Toluene,LB
+37195,1.8787086,Phenanthrene,LB
+37195,0.08718138,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.1557734,PM2.5 Primary (Filt + Cond),TON
+37183,0.010027432,Benzo[b]Fluoranthene,LB
+37183,0.2444874,Acenaphthylene,LB
+37183,0.0013752116,"Dibenzo[a,h]Anthracene",LB
+37183,1.4759468e-05,Mercury,LB
+37183,0.5852124,Phenanthrene,LB
+37183,5.575284,Naphthalene,LB
+37183,1.223492,Carbon Monoxide,TON
+37185,0.1156594,Methane,TON
+37185,0.3775851,PM25-Primary from certain diesel engines,TON
+37185,14.540294,Ethyl Benzene,LB
+37185,35.10018,Acrolein,LB
+37185,1.21861,Anthracene,LB
+37185,2.518186,Acenaphthylene,LB
+37185,434.8954,Formaldehyde,LB
+37185,10.61764,"2,2,4-Trimethylpentane",LB
+37185,1.4976564,Acenaphthene,LB
+37041,0.001125775,Nitrate portion of PM2.5-PRI,TON
+37041,0.329528,PM10 Primary (Filt + Cond),TON
+37041,8.268618,Toluene,LB
+37041,0.2075622,Benz[a]Anthracene,LB
+37031,0.8770812,"Benzo[g,h,i,]Perylene",LB
+37031,0.2631064,Benzo[b]Fluoranthene,LB
+37031,0.2631064,Benzo[k]Fluoranthene,LB
+37031,2.121448,Fluorene,LB
+37029,0.00014069434,Acrolein,LB
+37029,0.02447722,Toluene,LB
+37029,3.96428e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,3.782192,"2,2,4-Trimethylpentane",LB
+37087,38.3428,Acrolein,LB
+37087,1.787984,Anthracene,LB
+37087,5.142248,Pyrene,LB
+37087,0.01554295,Benzo[k]Fluoranthene,LB
+37087,0.19273172,Manganese,LB
+37087,6.090596,Phenanthrene,LB
+37087,13.50461,Carbon Monoxide,TON
+37087,1.282814,Nitrogen Oxides,TON
+37087,0.013946346,Arsenic,LB
+37087,0.4046698,Acenaphthene,LB
+37087,1.1252168,Phenanthrene,LB
+37087,12.89075,Carbon Monoxide,TON
+37087,0.3297444,Anthracene,LB
+37083,0.14938042,Styrene,LB
+37083,0.03601976,Anthracene,LB
+37083,0.9744494,Benzene,LB
+37083,2.487958e-06,Mercury,LB
+37083,0.0342457,Acenaphthene,LB
+37083,0.1223289,Phenanthrene,LB
+37083,0.003916052,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.0001597348,"Benzo[g,h,i,]Perylene",LB
+37079,0.0001963145,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.02759348,Fluoranthene,LB
+37079,1.5895898,Acetaldehyde,LB
+37071,0.02496442,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.01849241,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,1.195851,Pyrene,LB
+37071,9.223274e-05,Chromium (VI),LB
+37071,0.006876114,Benzo[k]Fluoranthene,LB
+37071,0.00635894,Benz[a]Anthracene,LB
+37071,412.0716,Carbon Dioxide,TON
+37071,0.008444197,Nitrous Oxide,TON
+37053,0.013308484,"1,3-Butadiene",LB
+37053,0.07953238,Toluene,LB
+37053,0.001385548,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.004121334,PM2.5 Primary (Filt + Cond),TON
+37063,155.8886,Volatile Organic Compounds,TON
+37041,0.001886413,Benzo[k]Fluoranthene,LB
+37041,0.0018694634,"Dibenzo[a,h]Anthracene",LB
+37041,38.53546,Acetaldehyde,LB
+37041,9.638332,Naphthalene,LB
+37041,3.073586,Carbon Monoxide,TON
+37041,0.02907632,Sulfur Dioxide,TON
+37041,10.714922,Xylenes (Mixed Isomers),LB
+37041,0.004863084,Fluoranthene,LB
+37041,0.0010241166,Benz[a]Anthracene,LB
+37041,0.006701868,Fluorene,LB
+37041,0.1718213,Naphthalene,LB
+37041,0.0003061927,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.16052238,Styrene,LB
+37037,0.5931218,Propionaldehyde,LB
+37037,0.0005588912,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.0003004868,Benzo[k]Fluoranthene,LB
+37037,0.1317098,Phenanthrene,LB
+37037,0.02771727,PM10-Primary from certain diesel engines,TON
+37029,0.2324728,Acrolein,LB
+37029,0.011298364,Acenaphthene,LB
+37029,0.5865948,Naphthalene,LB
+37029,0.001034801,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.0001318857,Sulfate Portion of PM2.5-PRI,TON
+37023,21.67702,Hexane,LB
+37023,0.05143308,Pyrene,LB
+37023,1.0555738e-05,Chromium (VI),LB
+37023,0.009414364,Chrysene,LB
+37023,10.005646,Formaldehyde,LB
+37023,15.537044,"2,2,4-Trimethylpentane",LB
+37023,0.009796576,Benz[a]Anthracene,LB
+37023,0.015842498,Manganese,LB
+37023,1.191548,Nitrogen Oxides,TON
+37023,0.02178302,PM2.5 Primary (Filt + Cond),TON
+37023,0.01232871,Sulfur Dioxide,TON
+37199,32.2379,Carbon Dioxide,TON
+37199,0.166665,Nitrogen Oxides,TON
+37199,6.755874,Hexane,LB
+37199,0.001396184,Benz[a]Anthracene,LB
+37185,1.614167,Ethyl Benzene,LB
+37185,2.24327,Hexane,LB
+37185,1.826854e-05,Chromium (VI),LB
+37185,0.003501016,Arsenic,LB
+37185,3.828503,Carbon Monoxide,TON
+37191,11.13076,Acrolein,LB
+37191,0.8263384,Fluoranthene,LB
+37191,0.04985734,Manganese,LB
+37191,15.442992,Naphthalene,LB
+37191,0.0009725677,Nitrate portion of PM2.5-PRI,TON
+37191,24.7967,Benzene,LB
+37191,2.532466,"1,3-Butadiene",LB
+37191,9.594046e-06,Chromium (VI),LB
+37191,0.0383373,Fluoranthene,LB
+37191,0.0018388346,Arsenic,LB
+37191,7.932992,Acetaldehyde,LB
+37191,0.02624296,Acenaphthene,LB
+37191,4.010479e-05,Nitrate portion of PM2.5-PRI,TON
+37189,0.018289908,Manganese,LB
+37189,0.437808,Fluorene,LB
+37189,0.01281857,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.0002522501,Nitrate portion of PM2.5-PRI,TON
+37189,0.08679659,PM2.5 Primary (Filt + Cond),TON
+37189,1554.5954,Toluene,LB
+37189,0.087079,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.9845858,Acenaphthylene,LB
+37189,286.393,Benzene,LB
+37181,207.3936,Acrolein,LB
+37181,24346.14,Xylenes (Mixed Isomers),LB
+37181,0.0054345,Chromium (VI),LB
+37181,7861.828,"2,2,4-Trimethylpentane",LB
+37181,2509.038,Carbon Monoxide,TON
+37181,8.47153,Ammonia,TON
+37181,9.218191,PM10 Primary (Filt + Cond),TON
+37023,58.65862,"2,2,4-Trimethylpentane",LB
+37023,0.002341696,Anthracene,LB
+37023,0.00459271,Pyrene,LB
+37023,1.4184276e-07,Chromium (VI),LB
+37023,0.0009505148,Benzo[k]Fluoranthene,LB
+37095,5.190412,Ethyl Benzene,LB
+37095,8.031612,Hexane,LB
+37095,4.438076e-05,"Dibenzo[a,h]Anthracene",LB
+37095,7.652826,Benzene,LB
+37095,0.000255898,Nickel,LB
+37095,0.0392553,Phenanthrene,LB
+37095,0.003192791,Ammonia,TON
+37095,0.2315582,Nitrogen Oxides,TON
+37095,0.0007657401,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.001585777,Sulfur Dioxide,TON
+37095,0.1575954,Volatile Organic Compounds,TON
+37093,0.1910918,Pyrene,LB
+37093,0.015057296,Benzo[a]Pyrene,LB
+37093,0.0011784118,Arsenic,LB
+37093,0.2288372,Phenanthrene,LB
+37093,216.761,Carbon Dioxide,TON
+37093,0.009953962,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.03004442,Manganese,LB
+37087,92.45164,Carbon Monoxide,TON
+37087,0.09419702,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.015346834,Benzo[b]Fluoranthene,LB
+37085,5.235216,"1,3-Butadiene",LB
+37085,0.0002063418,Mercury,LB
+37077,5.91715,"1,3-Butadiene",LB
+37077,13.45364,Toluene,LB
+37077,4.783274,Hexane,LB
+37077,0.06313558,Chrysene,LB
+37077,0.01252093,Sulfur Dioxide,TON
+37077,0.007923699,Sulfate Portion of PM2.5-PRI,TON
+37077,1.072847,Volatile Organic Compounds,TON
+37077,0.000555333,Manganese,LB
+37077,2.795019,Carbon Monoxide,TON
+37077,19.39718,Carbon Dioxide,TON
+37077,0.0005891098,Ammonia,TON
+37077,2.87559,Formaldehyde,LB
+37069,396.2602,Ethyl Benzene,LB
+37069,523.1358,Hexane,LB
+37069,1.1028096,Pyrene,LB
+37069,0.004677546,"Dibenzo[a,h]Anthracene",LB
+37069,0.2561191,PM2.5 Primary (Filt + Cond),TON
+37069,1355.1942,Ethyl Benzene,LB
+37045,0.0002071774,Chromium (VI),LB
+37045,0.15615602,Benzo[b]Fluoranthene,LB
+37045,0.5278306,Acenaphthene,LB
+37045,27.4082,Naphthalene,LB
+37045,0.4520226,Anthracene,LB
+37037,3.009382,Fluoranthene,LB
+37037,0.5582148,Chrysene,LB
+37037,0.953858,Benz[a]Anthracene,LB
+37037,0.06382044,Sulfur Dioxide,TON
+37037,5.572878,Styrene,LB
+37031,29.17234,Acrolein,LB
+37031,33.74856,Toluene,LB
+37031,1.1729462,Anthracene,LB
+37031,3.371572,Pyrene,LB
+37031,0.004495338,Nitrate portion of PM2.5-PRI,TON
+37031,36620.2,Xylenes (Mixed Isomers),LB
+37031,4.848862,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,23.47478,Fluoranthene,LB
+37031,4.065832,Chrysene,LB
+37031,5.56183,Manganese,LB
+37031,0.114016,Mercury,LB
+37031,1.26927,Elemental Carbon portion of PM2.5-PRI,TON
+37027,1.4975186,Acrolein,LB
+37027,0.0006414162,"Dibenzo[a,h]Anthracene",LB
+37027,0.002603576,Nickel,LB
+37027,2.107034,Naphthalene,LB
+37027,0.02326971,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.01326571,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.3289264,Acenaphthene,LB
+37169,1.7833334,Phenanthrene,LB
+37169,0.2055863,Methane,TON
+37169,0.1945295,Nitrous Oxide,TON
+37169,0.03405044,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.06670552,Sulfur Dioxide,TON
+37169,258.1644,Hexane,LB
+37169,0.10245222,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,7.934546,"1,3-Butadiene",LB
+37153,0.2028798,"Benzo[g,h,i,]Perylene",LB
+37153,0.8922764,Acenaphthylene,LB
+37153,0.0017488318,"Dibenzo[a,h]Anthracene",LB
+37153,0.014013224,Arsenic,LB
+37151,2.667718,Acenaphthylene,LB
+37151,0.002158968,Mercury,LB
+37151,3569.87,Carbon Dioxide,TON
+37151,0.0006873003,Nitrate portion of PM2.5-PRI,TON
+37151,1332.9492,Hexane,LB
+37143,0.4009132,Propionaldehyde,LB
+37143,0.0006214064,Manganese,LB
+37143,6.69678e-06,Mercury,LB
+37143,5.566708e-07,Nickel,LB
+37143,0.0002966394,Naphthalene,LB
+37141,0.428105,Ethyl Benzene,LB
+37141,0.7052362,Propionaldehyde,LB
+37141,0.0005375538,"Benzo[g,h,i,]Perylene",LB
+37141,0.0003467894,Benzo[k]Fluoranthene,LB
+37141,2.3277e-06,Mercury,LB
+37141,0.0004866954,Arsenic,LB
+37141,0.2435774,Carbon Monoxide,TON
+37139,0.0016483866,Manganese,LB
+37139,0.2223856,Methane,TON
+37139,0.0002918269,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.001689244,Ammonia,TON
+37139,0.009446688,PM10 Primary (Filt + Cond),TON
+37139,0.02852302,Volatile Organic Compounds,TON
+37135,5.47471e-06,Chromium (VI),LB
+37135,0.0011324712,"Benzo[g,h,i,]Perylene",LB
+37127,0.02743546,Manganese,LB
+37127,5.915302e-05,Mercury,LB
+37127,10.676434,Naphthalene,LB
+37127,0.08028039,Methane,TON
+37127,0.01867033,Ammonia,TON
+37127,2.588796,Hexane,LB
+37127,2.782676,"2,2,4-Trimethylpentane",LB
+37119,2436.09,Acetaldehyde,LB
+37119,7.499872,Methane,TON
+37119,21.30891,PM10-Primary from certain diesel engines,TON
+37119,10.92059,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.3738072,Nitrous Oxide,TON
+37119,2.533588,Sulfate Portion of PM2.5-PRI,TON
+37119,156.5441,Hexane,LB
+37119,14.439862,Anthracene,LB
+37119,237.3858,Propionaldehyde,LB
+37115,5.508896,Naphthalene,LB
+37115,0.0010157492,"Dibenzo[a,h]Anthracene",LB
+37097,0.16267526,Anthracene,LB
+37097,0.004256506,Arsenic,LB
+37097,0.2659017,PM10-Primary from certain diesel engines,TON
+37097,0.2446147,PM25-Primary from certain diesel engines,TON
+37097,0.4167149,PM10 Primary (Filt + Cond),TON
+37103,8.774996e-06,Chromium (VI),LB
+37103,0.0011535712,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.01519597,Benzo[a]Pyrene,LB
+37103,0.09078305,PM25-Primary from certain diesel engines,TON
+37103,0.06052416,Elemental Carbon portion of PM2.5-PRI,TON
+37103,3.422513,Nitrogen Oxides,TON
+37103,0.02156209,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.001591287,Sulfate Portion of PM2.5-PRI,TON
+37095,3.800542,Toluene,LB
+37095,0.4714264,Pyrene,LB
+37095,0.002096528,"Benzo[g,h,i,]Perylene",LB
+37095,0.002595074,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.03417934,Benzo[a]Pyrene,LB
+37095,4.645796,Benzene,LB
+37095,21.6647,Acetaldehyde,LB
+37095,0.004767894,Sulfate Portion of PM2.5-PRI,TON
+37079,0.002222098,Acenaphthene,LB
+37079,0.00106294,Sulfur Dioxide,TON
+37079,4.889645e-05,Sulfate Portion of PM2.5-PRI,TON
+37079,0.0437061,Volatile Organic Compounds,TON
+37079,0.010143354,Acenaphthylene,LB
+37079,3.226568e-05,"Dibenzo[a,h]Anthracene",LB
+37079,2.196816,Hexane,LB
+37073,11.91695,Xylenes (Mixed Isomers),LB
+37073,0.002476816,Benzo[k]Fluoranthene,LB
+37073,3.435644,"2,2,4-Trimethylpentane",LB
+37073,0.4639506,PM25-Primary from certain diesel engines,TON
+37073,0.09921048,Elemental Carbon portion of PM2.5-PRI,TON
+37073,4.268853,Nitrogen Oxides,TON
+37073,0.2755874,PM2.5 Primary (Filt + Cond),TON
+37073,2.935548,"2,2,4-Trimethylpentane",LB
+37073,0.263492,Benz[a]Anthracene,LB
+37073,5.641812,Propionaldehyde,LB
+37073,0.00489347,"Benzo[g,h,i,]Perylene",LB
+37085,0.007547348,Benzo[a]Pyrene,LB
+37085,18.128172,Naphthalene,LB
+37085,15.52415,Carbon Monoxide,TON
+37085,0.02774112,PM25-Primary from certain diesel engines,TON
+37085,0.03927145,PM2.5 Primary (Filt + Cond),TON
+37085,0.003491434,Manganese,LB
+37085,0.0005181376,Nickel,LB
+37085,0.03388692,Fluorene,LB
+37085,0.8689256,Naphthalene,LB
+37085,7.554973,Carbon Monoxide,TON
+37085,0.006487365,Ammonia,TON
+37085,0.0002805255,Sulfate Portion of PM2.5-PRI,TON
+37083,168.3889,Styrene,LB
+37083,29761.06,Toluene,LB
+37083,2.522336,Chrysene,LB
+37083,4.013931,Methane,TON
+37079,0.05123174,Styrene,LB
+37079,9.49999e-07,Chromium (VI),LB
+37079,0.003403316,Fluoranthene,LB
+37079,0.010565434,Acenaphthylene,LB
+37079,0.0001820908,Arsenic,LB
+37079,0.1007434,Nitrogen Oxides,TON
+37079,0.0006249848,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.0005523852,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,4.307739e-05,Sulfate Portion of PM2.5-PRI,TON
+37077,108.61032,Formaldehyde,LB
+37077,1215.4874,Xylenes (Mixed Isomers),LB
+37077,0.09148642,Benzo[k]Fluoranthene,LB
+37077,1.3180522,Acenaphthylene,LB
+37077,0.0003724893,Nitrate portion of PM2.5-PRI,TON
+37077,6.402266,Styrene,LB
+37053,0.2315496,Anthracene,LB
+37053,68.4739,Formaldehyde,LB
+37053,0.1529257,Benz[a]Anthracene,LB
+37053,0.007999412,Nickel,LB
+37061,0.01542948,Benzo[k]Fluoranthene,LB
+37061,1.2767734,Benz[a]Anthracene,LB
+37061,0.14220478,Nickel,LB
+37061,4.291836,Fluorene,LB
+37061,0.02430511,Nitrous Oxide,TON
+37061,0.3657706,Ammonia,TON
+37061,0.003742786,"Dibenzo[a,h]Anthracene",LB
+37051,136551.36,Toluene,LB
+37051,32056.68,Hexane,LB
+37051,42.04856,"Benzo[g,h,i,]Perylene",LB
+37051,58.1849,Fluoranthene,LB
+37051,11.56558,Benzo[k]Fluoranthene,LB
+37051,16.55481,Sulfur Dioxide,TON
+37051,0.6404889,Sulfate Portion of PM2.5-PRI,TON
+37043,2.767346,Benzene,LB
+37039,0.01421351,Nitrous Oxide,TON
+37039,0.2320133,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.1244057,Sulfur Dioxide,TON
+37039,0.1163607,Sulfate Portion of PM2.5-PRI,TON
+37039,299.778,Formaldehyde,LB
+37039,0.00019550132,Mercury,LB
+37039,3.096832,Styrene,LB
+37039,26.10946,Toluene,LB
+37039,7.50971,Hexane,LB
+37029,0.001551188,Anthracene,LB
+37029,0.003111166,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.002841678,Fluoranthene,LB
+37029,0.0016903312,Acenaphthene,LB
+37029,0.009550506,Phenanthrene,LB
+37029,0.01452968,Methane,TON
+37029,0.01254211,PM10 Primary (Filt + Cond),TON
+37023,8.133958,"2,2,4-Trimethylpentane",LB
+37017,0.008409436,Manganese,LB
+37017,0.04535999,Methane,TON
+37017,0.009809466,Nitrous Oxide,TON
+37017,0.0359012,PM10 Primary (Filt + Cond),TON
+37017,0.009425824,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.00012300502,Benzo[b]Fluoranthene,LB
+37177,0.15835076,Formaldehyde,LB
+37177,5.449818e-06,"Dibenzo[a,h]Anthracene",LB
+37177,0.112148,"2,2,4-Trimethylpentane",LB
+37177,0.00010564224,Benz[a]Anthracene,LB
+37177,0.0002928866,Manganese,LB
+37177,0.0009010578,Methane,TON
+37177,19.16838,Carbon Dioxide,TON
+37177,1.003209e-05,Sulfate Portion of PM2.5-PRI,TON
+37139,0.981322,Hexane,LB
+37129,0.05231736,Styrene,LB
+37129,0.2420708,"1,3-Butadiene",LB
+37129,0.19187634,Acrolein,LB
+37129,0.00359686,Pyrene,LB
+37129,22.19748,Acetaldehyde,LB
+37129,0.003663622,Fluorene,LB
+37129,0.0944067,Naphthalene,LB
+37129,0.1688497,Nitrogen Oxides,TON
+37129,0.1400777,Volatile Organic Compounds,TON
+37103,0.07962712,Propionaldehyde,LB
+37103,0.0006721572,Pyrene,LB
+37103,0.0005949174,Fluoranthene,LB
+37103,0.0008579016,Benzo[a]Pyrene,LB
+37103,0.000674123,Nickel,LB
+37103,0.0006691452,Fluorene,LB
+37103,0.6330816,Carbon Monoxide,TON
+37103,0.0006032408,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.06548258,"Benzo[g,h,i,]Perylene",LB
+37087,0.012686836,Benzo[k]Fluoranthene,LB
+37087,23.89182,Benzene,LB
+37087,0.07421565,Methane,TON
+37175,0.1684954,Organic Carbon portion of PM2.5-PRI,TON
+37175,2.242692,Styrene,LB
+37175,0.5596438,Anthracene,LB
+37175,14.853168,Xylenes (Mixed Isomers),LB
+37175,1.1943646,Fluoranthene,LB
+37175,16.239982,Benzene,LB
+37175,2.01918,Phenanthrene,LB
+37175,5118.824,Carbon Dioxide,TON
+37175,0.07653543,Ammonia,TON
+37171,0.02939038,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.11542102,Benzo[b]Fluoranthene,LB
+37171,0.7493258,Chrysene,LB
+37171,0.387069,Benzo[a]Pyrene,LB
+37171,0.02382054,Arsenic,LB
+37171,8976.72,Carbon Dioxide,TON
+37171,53.64867,Nitrogen Oxides,TON
+37171,3.143062,PM10 Primary (Filt + Cond),TON
+37171,0.001096222,Nitrate portion of PM2.5-PRI,TON
+37171,0.5748421,PM2.5 Primary (Filt + Cond),TON
+37171,0.04234303,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,17.219608,Ethyl Benzene,LB
+37171,26.83062,Propionaldehyde,LB
+37171,0.00231983,Benzo[k]Fluoranthene,LB
+37171,13.271828,"2,2,4-Trimethylpentane",LB
+37159,2.537376,Propionaldehyde,LB
+37159,0.5076352,Xylenes (Mixed Isomers),LB
+37159,0.00582883,Manganese,LB
+37159,0.000851545,Fluorene,LB
+37159,0.03129038,PM10 Primary (Filt + Cond),TON
+37159,0.006086518,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.0001470464,Sulfate Portion of PM2.5-PRI,TON
+37159,141.4783,Toluene,LB
+37155,0.8067152,Ethyl Benzene,LB
+37155,0.3594802,Styrene,LB
+37155,1.5638776,Toluene,LB
+37155,0.6077572,Hexane,LB
+37155,0.2374658,Pyrene,LB
+37155,0.05483628,Benz[a]Anthracene,LB
+37155,1.3836364,Hexane,LB
+37155,0.2817856,Acenaphthylene,LB
+37155,0.0660965,Chrysene,LB
+37155,1.4244958,"2,2,4-Trimethylpentane",LB
+37155,0.11372204,Benz[a]Anthracene,LB
+37155,0.02571774,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,3.411926e-06,Sulfate Portion of PM2.5-PRI,TON
+37009,0.2379832,Hexane,LB
+37009,0.0004236958,Fluoranthene,LB
+37001,81.7085,Hexane,LB
+37001,2.936959,PM10-Primary from certain diesel engines,TON
+37071,5.119206,Formaldehyde,LB
+37071,0.008983698,Arsenic,LB
+37071,0.02952576,Methane,TON
+37071,5.009732,Carbon Monoxide,TON
+37071,0.09227946,Styrene,LB
+37071,0.3572942,Acrolein,LB
+37071,4.116684,Hexane,LB
+37071,0.003028712,Anthracene,LB
+37013,5.02203,Ethyl Benzene,LB
+37013,0.2537692,Styrene,LB
+37013,17.839194,Xylenes (Mixed Isomers),LB
+37013,0.03276358,"Benzo[g,h,i,]Perylene",LB
+37013,0.0403283,Acenaphthylene,LB
+37013,0.0002826172,"Dibenzo[a,h]Anthracene",LB
+37013,0.000431473,Mercury,LB
+37013,0.017771446,Fluorene,LB
+37013,806.0873,Carbon Dioxide,TON
+37013,0.06043521,PM10 Primary (Filt + Cond),TON
+37005,4.892186e-05,Nickel,LB
+37005,0.000166333,Nitrous Oxide,TON
+37157,1.0712492,"1,3-Butadiene",LB
+37157,0.008948006,Benzo[k]Fluoranthene,LB
+37157,0.04101072,Acenaphthylene,LB
+37157,18.433028,Formaldehyde,LB
+37157,0.0003859228,"Dibenzo[a,h]Anthracene",LB
+37157,0.0005723958,Mercury,LB
+37157,0.0006378267,Sulfate Portion of PM2.5-PRI,TON
+37117,9.870506e-06,"Dibenzo[a,h]Anthracene",LB
+37117,0.5642324,Benzene,LB
+37117,0.0001098302,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.005588654,Styrene,LB
+37117,0.0011444518,"Benzo[g,h,i,]Perylene",LB
+37095,7.699523e-06,Sulfate Portion of PM2.5-PRI,TON
+37095,0.05720642,Ethyl Benzene,LB
+37095,0.013540066,"1,3-Butadiene",LB
+37095,0.1135424,Hexane,LB
+37095,0.2104352,Xylenes (Mixed Isomers),LB
+37013,89.61942,Acrolein,LB
+37013,70.36242,Toluene,LB
+37013,0.004048538,"Dibenzo[a,h]Anthracene",LB
+37013,27.01114,"2,2,4-Trimethylpentane",LB
+37013,106.58286,Benzene,LB
+37013,6.523202,Fluorene,LB
+37013,0.6217041,Elemental Carbon portion of PM2.5-PRI,TON
+37013,1.165933,PM10 Primary (Filt + Cond),TON
+37013,0.8779347,PM2.5 Primary (Filt + Cond),TON
+37013,6.639307,Volatile Organic Compounds,TON
+37021,0.00177443,Nickel,LB
+37021,0.003375543,Elemental Carbon portion of PM2.5-PRI,TON
+37021,1.171213,Nitrogen Oxides,TON
+37011,10.582106,Toluene,LB
+37011,0.000500186,"Dibenzo[a,h]Anthracene",LB
+37011,0.1009462,Benz[a]Anthracene,LB
+37011,0.1374806,PM2.5 Primary (Filt + Cond),TON
+37001,0.04672188,Pyrene,LB
+37001,0.04103132,Fluoranthene,LB
+37001,0.01179597,Benz[a]Anthracene,LB
+37001,0.006199959,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,15.42468,Ethyl Benzene,LB
+37051,65.10168,Toluene,LB
+37051,0.0249084,Anthracene,LB
+37051,0.000289375,Chromium (VI),LB
+37051,0.04725154,Fluoranthene,LB
+37051,0.1213929,Acenaphthylene,LB
+37051,51.4854,Formaldehyde,LB
+37051,77.02114,Benzene,LB
+37051,0.00290103,Mercury,LB
+37051,0.15083042,Phenanthrene,LB
+37047,0.0007635136,Anthracene,LB
+37047,0.0037333,Acenaphthylene,LB
+37047,161.4537,Carbon Dioxide,TON
+37047,0.008238094,Ammonia,TON
+37047,0.1159862,Nitrogen Oxides,TON
+37047,0.001060968,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.0326106,Styrene,LB
+37023,0.0011296586,Chrysene,LB
+37023,3.625262,Benzene,LB
+37023,0.00014683936,Mercury,LB
+37023,0.05887934,Naphthalene,LB
+37023,0.005128324,PM2.5 Primary (Filt + Cond),TON
+37159,2.832254,Hexane,LB
+37159,0.003965576,Fluoranthene,LB
+37159,0.003029308,Benzo[k]Fluoranthene,LB
+37159,0.002195024,Acenaphthene,LB
+37159,0.1146673,Naphthalene,LB
+37159,0.01961651,Methane,TON
+37159,0.00434817,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.2259484,Styrene,LB
+37111,0.00644741,Nickel,LB
+37111,10.6351,Carbon Monoxide,TON
+37111,0.009763349,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.02941264,Ethyl Benzene,LB
+37017,0.19412246,Toluene,LB
+37017,1.8170396e-05,"Benzo[g,h,i,]Perylene",LB
+37017,0.0004289502,Acenaphthylene,LB
+37017,1.279604e-06,Nickel,LB
+37017,0.0009151744,Phenanthrene,LB
+37017,0.000412236,Fluorene,LB
+37017,0.002160565,Ammonia,TON
+37007,6.601904,"1,3-Butadiene",LB
+37007,11.440562,Xylenes (Mixed Isomers),LB
+37007,1.6496468,Fluoranthene,LB
+37007,1.129239,Acenaphthylene,LB
+37007,0.06785768,Manganese,LB
+37007,85.09398,Acetaldehyde,LB
+37007,21.54476,Naphthalene,LB
+37007,0.1037409,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,5.58054,Toluene,LB
+37005,0.5368054,Pyrene,LB
+37005,2.472074e-05,Chromium (VI),LB
+37005,2.455351,Carbon Monoxide,TON
+37001,33.97458,PM10 Primary (Filt + Cond),TON
+37001,9.670134,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.222001,"Dibenzo[a,h]Anthracene",LB
+37007,1237.0262,Hexane,LB
+37007,24.38948,Volatile Organic Compounds,TON
+37043,1.388116e-06,Chromium (VI),LB
+37043,0.4747646,Benzene,LB
+37043,1.7899528,Acetaldehyde,LB
+37043,0.007835854,Naphthalene,LB
+37017,0.5405968,Fluorene,LB
+37017,0.6451666,Pyrene,LB
+37017,4.291864,Xylenes (Mixed Isomers),LB
+37015,0.12377326,Styrene,LB
+37015,0.2816962,"1,3-Butadiene",LB
+37015,3.16373e-06,Chromium (VI),LB
+37015,3.046968e-06,Mercury,LB
+37015,0.9844054,Naphthalene,LB
+37015,0.004436948,Methane,TON
+37015,0.04093419,PM25-Primary from certain diesel engines,TON
+37015,0.001957087,Sulfur Dioxide,TON
+37015,0.05118297,Volatile Organic Compounds,TON
+37011,0.4349796,"1,3-Butadiene",LB
+37011,0.3655184,Hexane,LB
+37011,1.1105288,Xylenes (Mixed Isomers),LB
+37011,0.0351667,Benz[a]Anthracene,LB
+37011,0.003871088,Manganese,LB
+37011,6.181202,Acetaldehyde,LB
+37011,139.6963,Carbon Dioxide,TON
+37011,0.03510481,PM25-Primary from certain diesel engines,TON
+37199,0.2575672,Hexane,LB
+37199,0.0011020174,"Benzo[g,h,i,]Perylene",LB
+37199,0.000224327,Benzo[b]Fluoranthene,LB
+37199,0.2887166,"2,2,4-Trimethylpentane",LB
+37199,0.8020646,Benzene,LB
+37199,0.0005226976,Fluorene,LB
+37199,0.013442872,Naphthalene,LB
+37199,0.2658303,Carbon Monoxide,TON
+37199,27.38986,Carbon Dioxide,TON
+37199,0.001780763,PM10 Primary (Filt + Cond),TON
+37193,6.593338,"1,3-Butadiene",LB
+37193,1.4345694,Fluorene,LB
+37193,22.05316,Naphthalene,LB
+37193,0.002610221,Nitrate portion of PM2.5-PRI,TON
+37193,2.168901,Sulfur Dioxide,TON
+37193,0.1141417,Sulfate Portion of PM2.5-PRI,TON
+37193,10.755426,Fluoranthene,LB
+37191,3.359774,Hexane,LB
+37191,0.2758457,Volatile Organic Compounds,TON
+37191,90.69616,Acrolein,LB
+37191,0.5060812,Manganese,LB
+37191,5.75404,Fluorene,LB
+37191,0.6493276,Ammonia,TON
+37181,0.008797939,Nitrous Oxide,TON
+37181,0.002277905,Ammonia,TON
+37199,0.00243169,Benzo[b]Fluoranthene,LB
+37199,0.004903936,Fluoranthene,LB
+37199,0.013875744,Acenaphthylene,LB
+37199,7.933598,Benzene,LB
+37199,0.003112006,Manganese,LB
+37199,0.1571036,Naphthalene,LB
+37197,0.01520639,PM10-Primary from certain diesel engines,TON
+37197,0.01399073,PM25-Primary from certain diesel engines,TON
+37197,2.630318,Ethyl Benzene,LB
+37197,5.949916,Acrolein,LB
+37197,2.029088,Hexane,LB
+37197,0.18217004,Anthracene,LB
+37195,68.22132,Xylenes (Mixed Isomers),LB
+37195,0.02129944,Benzo[k]Fluoranthene,LB
+37195,3.907786,Acenaphthylene,LB
+37195,0.000315904,Mercury,LB
+37195,13437.27,Carbon Dioxide,TON
+37195,39.21919,Nitrogen Oxides,TON
+37195,0.7487946,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.1145079,Sulfur Dioxide,TON
+37195,0.105785,Sulfate Portion of PM2.5-PRI,TON
+37069,0.16299396,Styrene,LB
+37069,0.04221524,Anthracene,LB
+37069,0.6319542,Propionaldehyde,LB
+37069,4.649156e-06,Chromium (VI),LB
+37069,0.02998662,Benz[a]Anthracene,LB
+37069,0.0850148,Fluorene,LB
+37069,0.06249937,PM10-Primary from certain diesel engines,TON
+37069,0.0005043932,Nitrous Oxide,TON
+37069,1.223909,Nitrogen Oxides,TON
+37069,0.007541139,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.07026413,Volatile Organic Compounds,TON
+37067,1.793001,Chrysene,LB
+37067,0.6769404,Manganese,LB
+37063,144.05498,"2,2,4-Trimethylpentane",LB
+37049,125.42806,Toluene,LB
+37049,6.23749,Pyrene,LB
+37049,0.016592552,"Dibenzo[a,h]Anthracene",LB
+37049,37.66258,"2,2,4-Trimethylpentane",LB
+37049,0.13698896,Nickel,LB
+37049,478.9614,Acetaldehyde,LB
+37049,1.686061,Methane,TON
+37037,0.11004836,Nickel,LB
+37037,0.0798438,Benzo[b]Fluoranthene,LB
+37037,25.49282,Propionaldehyde,LB
+37035,0.139861,Benzo[a]Pyrene,LB
+37035,245.074,"2,2,4-Trimethylpentane",LB
+37035,0.09266114,Benz[a]Anthracene,LB
+37035,14.440516,Naphthalene,LB
+37035,116.0705,Carbon Monoxide,TON
+37035,0.1375378,Ammonia,TON
+37035,10.04924,Nitrogen Oxides,TON
+37035,0.04973117,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.07452606,Sulfur Dioxide,TON
+37035,0.09506174,Benzo[b]Fluoranthene,LB
+37035,0.4112014,Fluoranthene,LB
+37035,1.267655,Acenaphthylene,LB
+37035,1122.1362,Toluene,LB
+37035,33478.8,Hexane,LB
+37035,23.15651,Methane,TON
+37035,16.227758,Benzo[a]Pyrene,LB
+37035,43559.22,Benzene,LB
+37033,1.513058,Volatile Organic Compounds,TON
+37033,28.22258,Benzene,LB
+37033,0.04166592,Nickel,LB
+37033,1.003283,PM10-Primary from certain diesel engines,TON
+37033,1.3327568,Fluoranthene,LB
+37033,1.145442,Acenaphthylene,LB
+37023,0.00049594,Formaldehyde,LB
+37023,2.518252e-09,Mercury,LB
+37023,4.814388e-08,Arsenic,LB
+37023,1.4619522e-06,Acenaphthene,LB
+37023,2.961354e-06,Fluorene,LB
+37023,0.0006921307,Carbon Monoxide,TON
+37023,0.01730042,Carbon Dioxide,TON
+37023,1.491717e-06,PM2.5 Primary (Filt + Cond),TON
+37023,3.627712e-07,Sulfur Dioxide,TON
+37023,0.009048604,"Dibenzo[a,h]Anthracene",LB
+37023,994.0728,Benzene,LB
+37023,0.6481121,Methane,TON
+37023,0.2249897,Organic Carbon portion of PM2.5-PRI,TON
+37023,4.579298,Acenaphthylene,LB
+37159,0.5671118,Propionaldehyde,LB
+37159,62.89754,Xylenes (Mixed Isomers),LB
+37159,0.011080602,Benzo[a]Pyrene,LB
+37159,0.0017817142,Manganese,LB
+37159,1.4873632e-05,Mercury,LB
+37159,0.0113374,PM2.5 Primary (Filt + Cond),TON
+37159,0.001235724,Sulfur Dioxide,TON
+37159,3.54315,"1,3-Butadiene",LB
+37157,18064.328,Toluene,LB
+37157,63.00335,Volatile Organic Compounds,TON
+37145,0.02454168,Phenanthrene,LB
+37145,0.09002414,Acrolein,LB
+37145,0.02059818,Acenaphthylene,LB
+37145,0.002048064,PM2.5 Primary (Filt + Cond),TON
+37145,5.019711e-05,Sulfate Portion of PM2.5-PRI,TON
+37143,0.08864296,"1,3-Butadiene",LB
+37143,0.06711984,Hexane,LB
+37143,0.001824181,Benzo[a]Pyrene,LB
+37143,0.0008296646,Methane,TON
+37143,0.006418806,PM10-Primary from certain diesel engines,TON
+37143,0.005904804,PM25-Primary from certain diesel engines,TON
+37143,0.002543686,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.007809108,PM10 Primary (Filt + Cond),TON
+37139,1.7549366e-05,Acenaphthylene,LB
+37139,0.00117182,Formaldehyde,LB
+37139,1.3937578e-06,Benzo[a]Pyrene,LB
+37139,2.318134e-07,Manganese,LB
+37139,3.116632e-08,Nickel,LB
+37139,3.980058e-09,Nitrate portion of PM2.5-PRI,TON
+37139,7.059248e-05,Volatile Organic Compounds,TON
+37127,1.0028502,"1,3-Butadiene",LB
+37127,0.0009944946,"Dibenzo[a,h]Anthracene",LB
+37127,0.00301225,Arsenic,LB
+37127,0.2255862,Fluorene,LB
+37127,3.693598,Naphthalene,LB
+37127,0.02315698,Methane,TON
+37127,1.121774,Carbon Monoxide,TON
+37127,0.01940626,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,1.6457102,Anthracene,LB
+37125,31.75552,Xylenes (Mixed Isomers),LB
+37125,0.00011178434,Chromium (VI),LB
+37125,43.02352,Benzene,LB
+37125,1.4839462,Acenaphthene,LB
+37125,2.745889,PM10 Primary (Filt + Cond),TON
+37125,15.243626,Ethyl Benzene,LB
+37125,1.7439012,"1,3-Butadiene",LB
+37125,0.010347516,Anthracene,LB
+37125,0.01077857,Methane,TON
+37125,0.003578786,Sulfur Dioxide,TON
+37123,26.66972,Hexane,LB
+37123,1.239299,Volatile Organic Compounds,TON
+37113,0.03534518,Acenaphthene,LB
+37113,0.2880094,Hexane,LB
+37113,0.4705992,Acenaphthylene,LB
+37113,0.06856894,Chrysene,LB
+37113,0.12410694,Benz[a]Anthracene,LB
+37113,4.674426,Toluene,LB
+37113,0.01791522,Manganese,LB
+37113,0.002236554,Arsenic,LB
+37113,34.72014,Acetaldehyde,LB
+37113,0.1086484,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.2385537,PM10 Primary (Filt + Cond),TON
+37109,0.02965934,Chrysene,LB
+37109,0.2211188,Fluorene,LB
+37109,5.667644,Naphthalene,LB
+37109,0.09607584,Methane,TON
+37109,4.06578,Nitrogen Oxides,TON
+37109,0.1430183,PM10 Primary (Filt + Cond),TON
+37109,0.0001753685,Ammonia,TON
+37109,2.713961e-06,Nitrate portion of PM2.5-PRI,TON
+37109,0.973665,Ethyl Benzene,LB
+37109,5.546646,Toluene,LB
+37109,1.1882136,Hexane,LB
+37109,0.00714854,Acenaphthylene,LB
+37109,2.041336e-05,Arsenic,LB
+37109,0.004143166,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.01123465,PM2.5 Primary (Filt + Cond),TON
+37109,0.005955008,Sulfur Dioxide,TON
+37109,0.3997028,Styrene,LB
+37109,1.678522,"1,3-Butadiene",LB
+37109,0.2883968,Propionaldehyde,LB
+37109,33.73734,Xylenes (Mixed Isomers),LB
+37101,156.202,"2,2,4-Trimethylpentane",LB
+37097,8.677712,Ethyl Benzene,LB
+37097,8.253668,"1,3-Butadiene",LB
+37097,6.645524,"2,2,4-Trimethylpentane",LB
+37097,0.012809292,Arsenic,LB
+37097,113.07062,Acetaldehyde,LB
+37097,0.3133164,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.06121366,Fluoranthene,LB
+37099,0.010964338,Chrysene,LB
+37099,0.006709631,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.2991215,Nitrogen Oxides,TON
+37099,0.08051858,Pyrene,LB
+37097,39760.38,Toluene,LB
+37093,6.816762,Acrolein,LB
+37093,1137.273,Toluene,LB
+37093,0.0001992971,Chromium (VI),LB
+37093,0.0912828,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,102.99162,Formaldehyde,LB
+37093,0.0923078,Benzo[a]Pyrene,LB
+37093,0.002096484,"Dibenzo[a,h]Anthracene",LB
+37093,244.6756,"2,2,4-Trimethylpentane",LB
+37093,0.2346315,Ammonia,TON
+37083,0.2207086,Carbon Monoxide,TON
+37083,0.0001708242,Nitrous Oxide,TON
+37083,0.02763479,Nitrogen Oxides,TON
+37083,0.0002841693,Organic Carbon portion of PM2.5-PRI,TON
+37081,8.506532,Pyrene,LB
+37081,175.23648,Naphthalene,LB
+37077,1.282774e-05,Ammonia,TON
+37077,2.556343e-05,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.0014091176,Styrene,LB
+37077,2.867446e-05,Benzo[k]Fluoranthene,LB
+37077,4.712236e-05,Benzo[a]Pyrene,LB
+37075,0.010169248,Benzo[b]Fluoranthene,LB
+37075,0.0014157432,Benzo[k]Fluoranthene,LB
+37075,0.06796342,Chrysene,LB
+37075,7.066336,Naphthalene,LB
+37075,782.084,Xylenes (Mixed Isomers),LB
+37075,46.09632,Benzene,LB
+37065,0.018505712,Acrolein,LB
+37065,2.06351,Toluene,LB
+37065,0.0002559724,Benzo[b]Fluoranthene,LB
+37065,0.0002559724,Benzo[k]Fluoranthene,LB
+37065,3.166738e-06,Mercury,LB
+37065,0.004497216,Phenanthrene,LB
+37065,0.0016744778,Fluorene,LB
+37065,0.0003270332,Methane,TON
+37065,15.319,Carbon Dioxide,TON
+37057,0.0006788722,"Benzo[g,h,i,]Perylene",LB
+37057,0.000452323,Benzo[k]Fluoranthene,LB
+37057,15.750544,Formaldehyde,LB
+37057,0.053586,Anthracene,LB
+37057,0.1864586,Phenanthrene,LB
+37057,1.699656,Naphthalene,LB
+37055,0.07247914,Benzo[b]Fluoranthene,LB
+37055,0.0002439912,Mercury,LB
+37055,1.087817,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.2839633,Ammonia,TON
+37055,0.164118,Sulfur Dioxide,TON
+37055,0.1759996,Sulfate Portion of PM2.5-PRI,TON
+37049,3031.102,Hexane,LB
+37049,7676.866,Xylenes (Mixed Isomers),LB
+37049,59.76077,Volatile Organic Compounds,TON
+37041,0.013788792,Fluoranthene,LB
+37041,0.04804306,"2,2,4-Trimethylpentane",LB
+37041,0.00411917,Benz[a]Anthracene,LB
+37041,0.006397568,Acenaphthene,LB
+37041,0.0278971,Styrene,LB
+37041,0.06303228,"1,3-Butadiene",LB
+37041,4.071798e-07,Chromium (VI),LB
+37041,0.0006887804,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,1812.7566,Ethyl Benzene,LB
+37031,3532.834,"2,2,4-Trimethylpentane",LB
+37029,0.7274948,Benz[a]Anthracene,LB
+37029,952.9002,Acetaldehyde,LB
+37029,1.702616,Methane,TON
+37029,0.002695881,Nitrate portion of PM2.5-PRI,TON
+37029,83.92915,Nitrogen Oxides,TON
+37029,0.278855,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,2.45799,Xylenes (Mixed Isomers),LB
+37101,0.008739422,"Benzo[g,h,i,]Perylene",LB
+37101,0.001264256,Chrysene,LB
+37101,0.003880694,Manganese,LB
+37101,0.003545615,Nitrous Oxide,TON
+37101,1.163512e-05,Nitrate portion of PM2.5-PRI,TON
+37093,0.02779372,Styrene,LB
+37093,0.0008720576,Anthracene,LB
+37093,0.0017933726,Pyrene,LB
+37093,3.539288e-05,"Dibenzo[a,h]Anthracene",LB
+37093,3.140926,Benzene,LB
+37093,8.604648e-05,Mercury,LB
+37093,0.001072872,Nickel,LB
+37093,0.002661179,PM2.5 Primary (Filt + Cond),TON
+37177,0.04335038,Ethyl Benzene,LB
+37177,0.2243922,Toluene,LB
+37177,0.1588965,Xylenes (Mixed Isomers),LB
+37177,4.391378e-05,Methane,TON
+37177,4.604721e-05,Nitrous Oxide,TON
+37175,2.007434,Ethyl Benzene,LB
+37175,0.9408032,Styrene,LB
+37175,0.2037062,Anthracene,LB
+37175,0.49912,Pyrene,LB
+37175,3.338856,Xylenes (Mixed Isomers),LB
+37175,59.6719,Formaldehyde,LB
+37175,0.001053612,"Dibenzo[a,h]Anthracene",LB
+37175,0.007252468,Nickel,LB
+37175,0.2144366,Acenaphthene,LB
+37175,0.660211,Phenanthrene,LB
+37175,0.009628906,Methane,TON
+37167,12.58963,"1,3-Butadiene",LB
+37167,21.24458,Propionaldehyde,LB
+37167,0.08429916,Benzo[b]Fluoranthene,LB
+37167,2.131048,Acenaphthylene,LB
+37167,0.5456648,Chrysene,LB
+37167,12.030408,"2,2,4-Trimethylpentane",LB
+37167,40.03292,Benzene,LB
+37167,1.2681582,Acenaphthene,LB
+37167,4.96308,Phenanthrene,LB
+37167,5089.949,Carbon Dioxide,TON
+37167,0.04621055,Sulfate Portion of PM2.5-PRI,TON
+37165,0.4171632,Elemental Carbon portion of PM2.5-PRI,TON
+37165,1.103725,Organic Carbon portion of PM2.5-PRI,TON
+37165,7.076713,PM10 Primary (Filt + Cond),TON
+37165,76.90142,Styrene,LB
+37165,2.859752,Anthracene,LB
+37163,499.4404,Styrene,LB
+37163,429.8938,Propionaldehyde,LB
+37163,45291.68,Xylenes (Mixed Isomers),LB
+37163,6942.288,Acetaldehyde,LB
+37163,628.5418,Nitrogen Oxides,TON
+37163,4.580074,Sulfur Dioxide,TON
+37145,0.50787,Pyrene,LB
+37145,0.002011198,"Benzo[g,h,i,]Perylene",LB
+37145,0.008875496,Benzo[b]Fluoranthene,LB
+37145,0.3368524,Acenaphthylene,LB
+37145,0.06138382,Chrysene,LB
+37145,5.483498,Benzene,LB
+37145,25.08418,Acetaldehyde,LB
+37145,0.1592618,PM25-Primary from certain diesel engines,TON
+37139,422.0878,Formaldehyde,LB
+37139,0.04712934,Nickel,LB
+37139,0.5519394,Methane,TON
+37139,0.741766,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.002930902,Nitrate portion of PM2.5-PRI,TON
+37139,0.1497327,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.1150274,Sulfur Dioxide,TON
+37139,15.16265,Propionaldehyde,LB
+37139,0.009389834,"Benzo[g,h,i,]Perylene",LB
+37139,8.77092e-05,Chromium (VI),LB
+37139,1.0424718,Acenaphthylene,LB
+37139,19.870504,Benzene,LB
+37139,0.0001001968,Mercury,LB
+37139,1.168438,Volatile Organic Compounds,TON
+37131,23.6224,Propionaldehyde,LB
+37131,22.572,"2,2,4-Trimethylpentane",LB
+37131,0.960102,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.51372,Manganese,LB
+37123,1.2409398,Acenaphthene,LB
+37123,2.623916,Fluorene,LB
+37123,0.01618689,Nitrous Oxide,TON
+37123,1.588036,PM2.5 Primary (Filt + Cond),TON
+37123,4.9896,Styrene,LB
+37123,12.743794,"1,3-Butadiene",LB
+37111,6.88435,Acetaldehyde,LB
+37111,0.01083281,Nitrous Oxide,TON
+37111,0.01504933,PM10 Primary (Filt + Cond),TON
+37007,0.003353192,Nitrate portion of PM2.5-PRI,TON
+37007,6.520294,Hexane,LB
+37007,259.6564,Formaldehyde,LB
+37007,23.776,Benzene,LB
+37007,5.957478,Carbon Monoxide,TON
+37007,0.6245271,PM25-Primary from certain diesel engines,TON
+37015,198.14308,Ethyl Benzene,LB
+37015,0.2910118,Anthracene,LB
+37015,0.0912372,Chrysene,LB
+37015,0.0526196,Arsenic,LB
+37015,0.1409269,PM2.5 Primary (Filt + Cond),TON
+37015,5.657887,Volatile Organic Compounds,TON
+37015,0.003997427,Nitrate portion of PM2.5-PRI,TON
+37015,3.673056,PM10 Primary (Filt + Cond),TON
+37015,1.51397,PM2.5 Primary (Filt + Cond),TON
+37015,3.409974,"Benzo[g,h,i,]Perylene",LB
+37015,1.2811692,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,3.585724,Fluoranthene,LB
+37015,2528.756,Benzene,LB
+37077,0.226656,Hexane,LB
+37077,0.501963,Xylenes (Mixed Isomers),LB
+37077,0.6998056,Benzene,LB
+37077,0.0002422674,Acenaphthene,LB
+37077,43.84735,Carbon Dioxide,TON
+37077,0.002268454,Ammonia,TON
+37077,0.002683682,PM10 Primary (Filt + Cond),TON
+37077,0.001332454,Sulfur Dioxide,TON
+37077,0.01644092,Volatile Organic Compounds,TON
+37025,0.016989654,"Benzo[g,h,i,]Perylene",LB
+37025,0.003315874,Benzo[k]Fluoranthene,LB
+37025,3.863045,Carbon Monoxide,TON
+37025,0.2128909,Volatile Organic Compounds,TON
+37133,3.152318,Hexane,LB
+37133,0.5381212,Propionaldehyde,LB
+37133,0.014318698,"Benzo[g,h,i,]Perylene",LB
+37133,3.435412,Formaldehyde,LB
+37133,0.011305824,Manganese,LB
+37133,26.28906,Acetaldehyde,LB
+37133,0.02724121,Ammonia,TON
+37111,0.11534348,Ethyl Benzene,LB
+37111,0.04846526,Propionaldehyde,LB
+37111,0.0003615416,Fluoranthene,LB
+37111,0.0004050616,Arsenic,LB
+37021,0.05822212,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.7488202,Nickel,LB
+37021,2544.262,Acetaldehyde,LB
+37021,1.748688,Methane,TON
+37021,5.623711,PM10-Primary from certain diesel engines,TON
+37021,5.442456,PM2.5 Primary (Filt + Cond),TON
+37021,0.1941833,Sulfate Portion of PM2.5-PRI,TON
+37013,0.03361858,Nickel,LB
+37013,0.1833145,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.009138419,Sulfate Portion of PM2.5-PRI,TON
+37013,1.628431,Volatile Organic Compounds,TON
+37013,64897.21,Carbon Dioxide,TON
+37013,2.07342,Nitrous Oxide,TON
+37013,5.66359,Ammonia,TON
+37011,1.873068,Carbon Monoxide,TON
+37011,0.003529432,PM25-Primary from certain diesel engines,TON
+37011,0.1368004,Volatile Organic Compounds,TON
+37011,0.000251006,"Benzo[g,h,i,]Perylene",LB
+37011,4.08817e-05,"Dibenzo[a,h]Anthracene",LB
+37005,0.016519882,Anthracene,LB
+37005,0.03205472,Pyrene,LB
+37005,0.00488989,Benz[a]Anthracene,LB
+37005,0.0005216148,Arsenic,LB
+37005,7.753253,Carbon Monoxide,TON
+37005,0.4400011,Nitrogen Oxides,TON
+37005,0.0125493,PM10 Primary (Filt + Cond),TON
+37005,0.4058019,Volatile Organic Compounds,TON
+37021,1.3749256,Ethyl Benzene,LB
+37021,0.0657409,Styrene,LB
+37021,3.086538e-05,Chromium (VI),LB
+37021,0.00385809,Nickel,LB
+37021,0.005915768,Arsenic,LB
+37021,0.013123704,Phenanthrene,LB
+37021,461.101,Carbon Dioxide,TON
+37021,0.1892666,Nitrogen Oxides,TON
+37021,0.004398568,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.05231791,PM10 Primary (Filt + Cond),TON
+37013,3.547564,Formaldehyde,LB
+37013,1.5607586e-05,Mercury,LB
+37013,0.5933428,Naphthalene,LB
+37009,12.41369,Acrolein,LB
+37009,160.54862,Formaldehyde,LB
+37009,14.838708,Benzene,LB
+37009,7.635415,Carbon Monoxide,TON
+37009,850.052,Carbon Dioxide,TON
+37009,0.1265687,PM25-Primary from certain diesel engines,TON
+37009,0.09835535,Elemental Carbon portion of PM2.5-PRI,TON
+37005,1172.4964,Formaldehyde,LB
+37005,7.722214,Fluorene,LB
+37001,0.000388209,Fluoranthene,LB
+37001,0.2337322,Benzene,LB
+37001,0.0005545104,Fluorene,LB
+37001,2.885962e-06,Nitrate portion of PM2.5-PRI,TON
+37001,0.0007438668,Sulfur Dioxide,TON
+37015,1.450624,Acenaphthene,LB
+37015,0.4187419,PM10-Primary from certain diesel engines,TON
+37015,0.09858693,Ammonia,TON
+37015,0.05127356,Organic Carbon portion of PM2.5-PRI,TON
+37015,2.31498,Pyrene,LB
+37015,0.002459802,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.009655106,Benzo[b]Fluoranthene,LB
+37015,0.1365504,Chrysene,LB
+37015,40.32268,Benzene,LB
+37015,0.0708728,Nickel,LB
+37199,0.002211856,Styrene,LB
+37199,0.00013825088,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.138313,Formaldehyde,LB
+37199,0.935366,Acetaldehyde,LB
+37199,0.00015488988,Fluorene,LB
+37199,8.589719,Carbon Dioxide,TON
+37199,4.574042e-07,Nitrate portion of PM2.5-PRI,TON
+37199,0.0001837496,PM2.5 Primary (Filt + Cond),TON
+37199,4.683168e-06,Sulfate Portion of PM2.5-PRI,TON
+37199,2.078794,Acrolein,LB
+37199,0.0002751672,Benzo[b]Fluoranthene,LB
+37199,3.887458e-05,Benzo[k]Fluoranthene,LB
+37199,11.798,Acetaldehyde,LB
+37199,0.1985307,Nitrogen Oxides,TON
+37197,9.088644,Benzene,LB
+37197,930.0302,Carbon Dioxide,TON
+37197,0.1519102,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.001735261,Nitrous Oxide,TON
+37197,0.01309275,Ammonia,TON
+37197,0.01964041,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.3566387,Organic Carbon portion of PM2.5-PRI,TON
+37193,152.72174,Propionaldehyde,LB
+37193,0.0005221138,Chromium (VI),LB
+37193,0.009641648,Benzo[k]Fluoranthene,LB
+37193,0.2349444,Benzo[a]Pyrene,LB
+37193,1196.3598,Acetaldehyde,LB
+37193,0.0006994076,Benzo[b]Fluoranthene,LB
+37193,0.4147068,Acenaphthylene,LB
+37193,36.59964,Acetaldehyde,LB
+37193,0.4199228,Fluorene,LB
+37195,115.89918,Formaldehyde,LB
+37195,0.0386253,Benzo[a]Pyrene,LB
+37195,0.015609228,Nickel,LB
+37195,0.385828,Acenaphthene,LB
+37195,0.02375487,Ammonia,TON
+37195,0.6590398,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.4645404,Benzo[k]Fluoranthene,LB
+37195,504.014,Acetaldehyde,LB
+37191,14.374012,Hexane,LB
+37191,2.145502,Anthracene,LB
+37191,37.34566,Xylenes (Mixed Isomers),LB
+37191,0.00012337866,Mercury,LB
+37191,0.008348288,Nitrate portion of PM2.5-PRI,TON
+37191,0.06148741,Sulfur Dioxide,TON
+37191,4000.186,Toluene,LB
+37191,7.672128,Propionaldehyde,LB
+37191,0.0001859527,Chromium (VI),LB
+37191,0.5026394,"Benzo[g,h,i,]Perylene",LB
+37191,2.165884,Acenaphthylene,LB
+37191,0.0018641798,Mercury,LB
+37191,0.9631232,Fluorene,LB
+37189,3659.004,Xylenes (Mixed Isomers),LB
+37185,384.981,"1,3-Butadiene",LB
+37185,53.03588,Acrolein,LB
+37185,2669.404,Benzene,LB
+37185,1.03165,Nitrous Oxide,TON
+37181,1.2969092,Benzene,LB
+37181,4.754466e-06,Mercury,LB
+37181,0.0009940982,Arsenic,LB
+37181,0.01452098,Organic Carbon portion of PM2.5-PRI,TON
+37181,1.0849514,Acrolein,LB
+37181,0.07385506,Acenaphthylene,LB
+37179,1.4738446,"1,3-Butadiene",LB
+37179,0.00365754,Arsenic,LB
+37179,0.6306468,Phenanthrene,LB
+37179,0.01872636,Ammonia,TON
+37179,0.06204268,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.013794054,Benzo[k]Fluoranthene,LB
+37191,1.1060418,Benz[a]Anthracene,LB
+37191,53.99626,Benzene,LB
+37191,0.10898616,Nickel,LB
+37191,0.06683016,Arsenic,LB
+37191,2.332775,PM25-Primary from certain diesel engines,TON
+37191,1.511983,Elemental Carbon portion of PM2.5-PRI,TON
+37191,3.140685,Volatile Organic Compounds,TON
+37183,1528.942,Styrene,LB
+37183,288417.4,Toluene,LB
+37183,24.4008,Benzo[k]Fluoranthene,LB
+37183,18898.536,Formaldehyde,LB
+37183,74894.6,Benzene,LB
+37183,1.2041286,Mercury,LB
+37183,25479.34,Acetaldehyde,LB
+37183,38.62035,Nitrous Oxide,TON
+37183,1542.73,Nitrogen Oxides,TON
+37181,4246.832,Xylenes (Mixed Isomers),LB
+37031,401.6806,Formaldehyde,LB
+37031,0.3677584,Benzo[a]Pyrene,LB
+37031,1.1712686,Benz[a]Anthracene,LB
+37031,0.1380737,Methane,TON
+37031,2.715676,PM10 Primary (Filt + Cond),TON
+37031,7.351174,"2,2,4-Trimethylpentane",LB
+37031,0.03555656,Nickel,LB
+37031,122.9842,Acetaldehyde,LB
+37031,0.1419042,Methane,TON
+37031,0.3147998,PM10-Primary from certain diesel engines,TON
+37031,8.836686,"1,3-Butadiene",LB
+37031,7.103984e-05,Chromium (VI),LB
+37031,1.2896206,Fluoranthene,LB
+37031,287.2342,Formaldehyde,LB
+37031,61.1746,Ethyl Benzene,LB
+37031,46.1298,Hexane,LB
+37031,99.70576,Propionaldehyde,LB
+37031,8.598456,Fluoranthene,LB
+37031,0.7483272,Chrysene,LB
+37031,0.2742118,Manganese,LB
+37031,203.2186,Naphthalene,LB
+37031,0.5716526,Methane,TON
+37031,1.656658,PM10-Primary from certain diesel engines,TON
+37031,1.524112,PM25-Primary from certain diesel engines,TON
+37031,0.3614906,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.09896523,Sulfur Dioxide,TON
+37029,8.177642,Benzene,LB
+37029,38.43792,Acetaldehyde,LB
+37029,9.617844,Naphthalene,LB
+37029,0.5171468,PM10 Primary (Filt + Cond),TON
+37029,0.4316988,Acenaphthylene,LB
+37029,92.5536,Formaldehyde,LB
+37029,0.1992058,Fluoranthene,LB
+37029,1.036792,Carbon Monoxide,TON
+37029,0.02653735,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.0003330807,Nitrate portion of PM2.5-PRI,TON
+37029,0.005881188,Manganese,LB
+37029,0.3228222,Phenanthrene,LB
+37029,2.978758,Naphthalene,LB
+37119,431.9224,Xylenes (Mixed Isomers),LB
+37119,26.88582,Fluoranthene,LB
+37119,4.963554,Benz[a]Anthracene,LB
+37119,18.976098,Acenaphthene,LB
+37119,1.312917,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.7305864,Benzo[a]Pyrene,LB
+37101,0.3525348,Manganese,LB
+37101,11.788786,Phenanthrene,LB
+37101,4.22008,PM25-Primary from certain diesel engines,TON
+37101,5.811872,PM10 Primary (Filt + Cond),TON
+37101,0.1512985,Sulfur Dioxide,TON
+37101,0.1193114,Sulfate Portion of PM2.5-PRI,TON
+37101,3.439816,Anthracene,LB
+37101,61.03972,Xylenes (Mixed Isomers),LB
+37101,0.02992324,Benzo[k]Fluoranthene,LB
+37091,0.02449368,Anthracene,LB
+37091,0.06973914,Pyrene,LB
+37091,0.05285448,Fluoranthene,LB
+37091,0.0002093746,Benzo[k]Fluoranthene,LB
+37091,0.2387286,Ethyl Benzene,LB
+37091,0.09736964,Styrene,LB
+37091,3.097644,Acetaldehyde,LB
+37091,0.003658118,Methane,TON
+37103,0.115083,Methane,TON
+37103,0.05881228,Sulfur Dioxide,TON
+37103,0.06599684,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.11842988,Fluoranthene,LB
+37099,0.011686072,Benzo[a]Pyrene,LB
+37099,0.009330486,Manganese,LB
+37099,5.637562e-06,Mercury,LB
+37099,0.04901832,Acenaphthene,LB
+37099,0.19409558,Phenanthrene,LB
+37099,1.7529584,Naphthalene,LB
+37099,0.009859455,Methane,TON
+37099,11.19284,Ethyl Benzene,LB
+37099,33.64752,"2,2,4-Trimethylpentane",LB
+37099,14.163672,Benzene,LB
+37093,8.774848,Ethyl Benzene,LB
+37093,0.6533538,Acenaphthene,LB
+37093,1.083426,PM25-Primary from certain diesel engines,TON
+37093,2.058315,PM10 Primary (Filt + Cond),TON
+37093,0.1619539,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.09971117,Sulfur Dioxide,TON
+37093,1.305271,Volatile Organic Compounds,TON
+37093,0.719871,Anthracene,LB
+37093,0.011698618,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.15352016,Benzo[a]Pyrene,LB
+37091,0.005731454,Fluorene,LB
+37091,0.001506062,Methane,TON
+37091,57.88407,Carbon Dioxide,TON
+37091,3.93007e-06,Nitrate portion of PM2.5-PRI,TON
+37091,0.004714044,Pyrene,LB
+37091,0.002859446,"Benzo[g,h,i,]Perylene",LB
+37091,0.0625362,Styrene,LB
+37071,0.00832219,Fluoranthene,LB
+37071,0.021839,Acenaphthylene,LB
+37071,0.015209054,Manganese,LB
+37071,0.0270062,Phenanthrene,LB
+37071,1053.066,Carbon Dioxide,TON
+37071,4.553681e-05,Nitrate portion of PM2.5-PRI,TON
+37069,0.002337832,Benz[a]Anthracene,LB
+37069,139.9704,Carbon Dioxide,TON
+37067,2480.74,Ethyl Benzene,LB
+37067,1.9546648,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,6.278712,Fluoranthene,LB
+37067,1.2949706,Chrysene,LB
+37067,90009.58,Carbon Dioxide,TON
+37067,0.4790131,Elemental Carbon portion of PM2.5-PRI,TON
+37067,131.7262,Nitrogen Oxides,TON
+37067,7.213933,PM10 Primary (Filt + Cond),TON
+37067,0.8061653,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.06796258,Sulfate Portion of PM2.5-PRI,TON
+37061,0.2691398,Anthracene,LB
+37061,5.20292,Propionaldehyde,LB
+37061,0.09947314,Benzo[b]Fluoranthene,LB
+37061,119.57136,Formaldehyde,LB
+37061,2235.879,Carbon Dioxide,TON
+37061,0.01369559,Nitrous Oxide,TON
+37061,0.004218102,Sulfate Portion of PM2.5-PRI,TON
+37057,130.00414,Xylenes (Mixed Isomers),LB
+37039,3.062264e-08,Nitrate portion of PM2.5-PRI,TON
+37039,0.0003610562,Propionaldehyde,LB
+37039,0.012989568,"2,2,4-Trimethylpentane",LB
+37039,2.466914e-08,Mercury,LB
+37043,1.2342408e-05,Manganese,LB
+37043,2.41758e-07,Mercury,LB
+37043,6.84862e-05,Methane,TON
+37043,1.011268e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.001613761,Volatile Organic Compounds,TON
+37041,0.004436128,Benzo[b]Fluoranthene,LB
+37041,0.0006069222,Benzo[k]Fluoranthene,LB
+37041,0.0009588738,"Benzo[g,h,i,]Perylene",LB
+37041,0.014879742,Benzo[a]Pyrene,LB
+37041,0.05145446,Benz[a]Anthracene,LB
+37027,0.4382503,Nitrous Oxide,TON
+37027,0.5657826,Ammonia,TON
+37027,0.3047608,PM2.5 Primary (Filt + Cond),TON
+37023,0.006117488,Sulfate Portion of PM2.5-PRI,TON
+37023,0.8650754,Ethyl Benzene,LB
+37023,1.9632786,Toluene,LB
+37023,0.001121847,"Benzo[g,h,i,]Perylene",LB
+37023,0.18867452,Fluoranthene,LB
+37023,0.03541436,Chrysene,LB
+37197,9.04661e-05,Chromium (VI),LB
+37197,0.10172236,Benzo[a]Pyrene,LB
+37197,0.015217332,Manganese,LB
+37197,0.011308372,Nickel,LB
+37195,0.02814583,Carbon Monoxide,TON
+37195,0.0015409016,Styrene,LB
+37195,0.2261402,Toluene,LB
+37195,0.05251322,Hexane,LB
+37195,4.129264e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.0002957724,Acenaphthylene,LB
+37195,0.0201444,Formaldehyde,LB
+37195,981.455,"1,3-Butadiene",LB
+37195,137.38334,Acrolein,LB
+37195,5.590562,Anthracene,LB
+37195,0.012052536,Chromium (VI),LB
+37195,2.394092,Chrysene,LB
+37195,3.304788,Manganese,LB
+37195,0.9696638,Elemental Carbon portion of PM2.5-PRI,TON
+37195,14.05308,Ammonia,TON
+37191,2.386816,Formaldehyde,LB
+37191,0.00471216,Benzo[a]Pyrene,LB
+37191,0.002871648,Benz[a]Anthracene,LB
+37191,0.000682963,Nickel,LB
+37191,0.04090436,Phenanthrene,LB
+37191,3.795505,Carbon Monoxide,TON
+37187,0.005705184,Chrysene,LB
+37187,1.6177914e-06,Mercury,LB
+37187,0.05255834,Phenanthrene,LB
+37183,132.48442,Formaldehyde,LB
+37183,0.2512972,Manganese,LB
+37183,0.04322182,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.1874793,Nitrous Oxide,TON
+37183,0.5373337,Ammonia,TON
+37183,118.7704,Ammonia,TON
+37183,31150.24,Formaldehyde,LB
+37179,0.0005707764,Mercury,LB
+37179,507.3442,Acetaldehyde,LB
+37179,3.148404,Acenaphthene,LB
+37179,1.13532,Methane,TON
+37167,0.5913488,Anthracene,LB
+37167,8.797972,Propionaldehyde,LB
+37167,3.0022e-05,Chromium (VI),LB
+37167,15.804714,Benzene,LB
+37167,0.03972552,Manganese,LB
+37167,0.017912452,Nickel,LB
+37167,18.446536,Naphthalene,LB
+37167,0.07765131,Methane,TON
+37165,0.02632418,Naphthalene,LB
+37165,8.950003e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.06403068,"1,3-Butadiene",LB
+37165,0.1663499,Formaldehyde,LB
+37163,0.0014678736,Mercury,LB
+37163,0.711716,Fluorene,LB
+37163,0.3093433,Ammonia,TON
+37163,6.612136,Acrolein,LB
+37163,0.10302534,Chrysene,LB
+37161,13.305254,"1,3-Butadiene",LB
+37161,0.5319398,Pyrene,LB
+37161,0.00012184596,Chromium (VI),LB
+37161,0.002872114,"Dibenzo[a,h]Anthracene",LB
+37161,0.09234228,Benz[a]Anthracene,LB
+37161,0.02335458,Arsenic,LB
+37161,0.1486887,Methane,TON
+37161,1998.583,Carbon Dioxide,TON
+37161,0.01984503,Nitrous Oxide,TON
+37153,0.7181612,Pyrene,LB
+37153,0.001933043,"Benzo[g,h,i,]Perylene",LB
+37153,12.124678,Benzene,LB
+37153,0.4230672,Acenaphthene,LB
+37153,2.707122,Nitrogen Oxides,TON
+37153,0.007366177,Sulfur Dioxide,TON
+37139,0.01912199,Ammonia,TON
+37139,1.416148,Styrene,LB
+37139,2.51959,Hexane,LB
+37139,0.2725992,Anthracene,LB
+37139,0.03917774,Chrysene,LB
+37139,100.26724,Formaldehyde,LB
+37139,0.000508781,"Dibenzo[a,h]Anthracene",LB
+37129,0.0003156096,Chromium (VI),LB
+37129,0.03146086,Benzo[k]Fluoranthene,LB
+37129,1.1184698,Manganese,LB
+37129,1.097369,Methane,TON
+37129,4.237038,PM10-Primary from certain diesel engines,TON
+37129,85.2071,Nitrogen Oxides,TON
+37129,4.464374,PM2.5 Primary (Filt + Cond),TON
+37131,0.7343393,PM10-Primary from certain diesel engines,TON
+37131,0.2996135,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.00322195,Nitrate portion of PM2.5-PRI,TON
+37131,8.71698,Ethyl Benzene,LB
+37131,3.523554,Styrene,LB
+37131,8.038068,"1,3-Butadiene",LB
+37131,0.8861864,Anthracene,LB
+37131,13.350246,Propionaldehyde,LB
+37131,0.007519704,"Dibenzo[a,h]Anthracene",LB
+37131,0.0746323,Manganese,LB
+37131,0.04162466,Nickel,LB
+37127,0.004866606,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,2.945518e-05,Mercury,LB
+37127,0.011649236,Nickel,LB
+37127,0.9830672,Phenanthrene,LB
+37127,0.5453342,Fluorene,LB
+37127,0.07760821,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.0305799,Ammonia,TON
+37127,0.3447002,PM10 Primary (Filt + Cond),TON
+37127,0.04306145,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.009998491,Sulfur Dioxide,TON
+37123,143.05466,Ethyl Benzene,LB
+37123,5.363594e-05,Chromium (VI),LB
+37123,0.15202216,"Benzo[g,h,i,]Perylene",LB
+37123,231.1748,"2,2,4-Trimethylpentane",LB
+37123,0.00670449,Nickel,LB
+37123,0.010280174,Arsenic,LB
+37123,28.83436,Acetaldehyde,LB
+37123,0.1158773,Ammonia,TON
+37123,0.03133317,Organic Carbon portion of PM2.5-PRI,TON
+37123,4.452371,Volatile Organic Compounds,TON
+37093,2.10011,Carbon Monoxide,TON
+37093,0.001685523,Nitrous Oxide,TON
+37093,0.00159671,Ammonia,TON
+37093,0.0971818,Acrolein,LB
+37093,0.100325,Propionaldehyde,LB
+37093,0.008426232,Pyrene,LB
+37085,0.002614408,"Benzo[g,h,i,]Perylene",LB
+37085,0.0017970076,Benzo[k]Fluoranthene,LB
+37085,59.3548,Formaldehyde,LB
+37085,0.1466859,PM25-Primary from certain diesel engines,TON
+37085,0.06291043,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.06699898,Acetaldehyde,LB
+37073,3.105696e-06,Sulfate Portion of PM2.5-PRI,TON
+37073,7.049428e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,5.379654e-05,Benzo[k]Fluoranthene,LB
+37085,1.2197502e-08,Chromium (VI),LB
+37085,7.033312e-05,Benzo[k]Fluoranthene,LB
+37085,0.0010986078,Acenaphthylene,LB
+37085,0.2188198,Benzene,LB
+37085,2.241751e-06,Sulfate Portion of PM2.5-PRI,TON
+37199,3.84861,Volatile Organic Compounds,TON
+37199,135.72518,Ethyl Benzene,LB
+37199,4.763958,Propionaldehyde,LB
+37199,0.2390404,Acenaphthene,LB
+37195,4.969122,Ethyl Benzene,LB
+37195,7.376058,Hexane,LB
+37195,0.014982324,Pyrene,LB
+37195,0.008325028,Acenaphthene,LB
+37195,0.016863192,Fluorene,LB
+37195,0.001676134,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.01139712,PM2.5 Primary (Filt + Cond),TON
+37195,60.54802,Toluene,LB
+37195,0.02268042,Acenaphthene,LB
+37195,0.00230175,Elemental Carbon portion of PM2.5-PRI,TON
+37195,11.618234,Ethyl Benzene,LB
+37191,4.477036,Anthracene,LB
+37191,153.22212,Benzene,LB
+37191,0.0003277574,Mercury,LB
+37191,0.06852928,Arsenic,LB
+37191,14.453258,Phenanthrene,LB
+37191,88.63062,Carbon Monoxide,TON
+37191,9.470923,Volatile Organic Compounds,TON
+37181,27.1001,Toluene,LB
+37181,0.3985278,Chrysene,LB
+37181,10.77522,Carbon Monoxide,TON
+37181,1.050542,Elemental Carbon portion of PM2.5-PRI,TON
+37173,21.03408,Hexane,LB
+37173,56.46874,Xylenes (Mixed Isomers),LB
+37173,0.10830418,Acenaphthylene,LB
+37173,0.0001150296,Mercury,LB
+37173,0.0004569899,Sulfate Portion of PM2.5-PRI,TON
+37113,108657.2,Carbon Dioxide,TON
+37113,2.280878,Sulfur Dioxide,TON
+37113,206.5647,Volatile Organic Compounds,TON
+37113,7356.752,Ethyl Benzene,LB
+37113,3.175942,Chrysene,LB
+37113,0.08651006,"Dibenzo[a,h]Anthracene",LB
+37113,8617.532,"2,2,4-Trimethylpentane",LB
+37113,3.200462,Benz[a]Anthracene,LB
+37113,12316.022,Benzene,LB
+37101,4.467626,Anthracene,LB
+37101,7.221424,Acenaphthylene,LB
+37101,0.03373568,"Dibenzo[a,h]Anthracene",LB
+37101,6.768897,PM2.5 Primary (Filt + Cond),TON
+37105,1.1623338,Styrene,LB
+37105,0.006386481,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.0001058519,Nitrate portion of PM2.5-PRI,TON
+37103,0.00619644,Naphthalene,LB
+37103,9.507097e-05,PM2.5 Primary (Filt + Cond),TON
+37103,0.002761438,Styrene,LB
+37103,0.0022094,Acrolein,LB
+37103,0.0002434402,"Benzo[g,h,i,]Perylene",LB
+37103,0.00018106646,Fluoranthene,LB
+37103,9.084856e-05,Benzo[a]Pyrene,LB
+37103,0.12619508,Benzene,LB
+37103,5.702636e-06,Nickel,LB
+37103,8.74385e-06,Arsenic,LB
+37097,43.9187,Acrolein,LB
+37097,0.002602572,Chromium (VI),LB
+37097,0.7009092,Benzo[k]Fluoranthene,LB
+37097,0.02304982,"Dibenzo[a,h]Anthracene",LB
+37097,0.0260911,Mercury,LB
+37097,0.3253294,Nickel,LB
+37097,0.4988188,Arsenic,LB
+37097,0.003394879,Nitrate portion of PM2.5-PRI,TON
+37097,0.4651804,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.011433456,"Benzo[g,h,i,]Perylene",LB
+37093,0.014639922,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,1.6375262,Fluorene,LB
+37093,1.04913,PM10-Primary from certain diesel engines,TON
+37093,0.00479636,Nitrous Oxide,TON
+37093,19.17632,Nitrogen Oxides,TON
+37093,266.2428,Ethyl Benzene,LB
+37093,2110.978,Toluene,LB
+37093,2.59649,Propionaldehyde,LB
+37093,0.2672276,Pyrene,LB
+37093,0.234204,Fluoranthene,LB
+37093,0.007530732,Nickel,LB
+37093,0.8720924,Phenanthrene,LB
+37093,8.339792,Naphthalene,LB
+37093,0.008845572,Elemental Carbon portion of PM2.5-PRI,TON
+37093,8.536811,Volatile Organic Compounds,TON
+37087,0.573472,Propionaldehyde,LB
+37087,0.07858146,Fluoranthene,LB
+37085,1.8517766,Acenaphthene,LB
+37085,3.552956,PM10 Primary (Filt + Cond),TON
+37085,0.08669651,Sulfur Dioxide,TON
+37085,3.248769,Volatile Organic Compounds,TON
+37085,8.078534,Styrene,LB
+37085,3.11333,Acenaphthylene,LB
+37081,22.7478,Hexane,LB
+37081,2.761298,Anthracene,LB
+37081,6.661224,Pyrene,LB
+37081,0.7225676,Chrysene,LB
+37081,905.1894,Formaldehyde,LB
+37081,22.72598,"2,2,4-Trimethylpentane",LB
+37081,0.3732294,Manganese,LB
+37081,392.2702,Acetaldehyde,LB
+37081,1.025381,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.4953576,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.2963947,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,4.198398e-05,Mercury,LB
+37077,0.3515822,Styrene,LB
+37077,1.8194412,"1,3-Butadiene",LB
+37077,0.2586454,Acrolein,LB
+37077,0.0003748908,"Dibenzo[a,h]Anthracene",LB
+37067,21.8795,Ethyl Benzene,LB
+37067,16.561498,Hexane,LB
+37067,34.98112,Propionaldehyde,LB
+37067,0.00014767266,Chromium (VI),LB
+37067,0.018581486,"Benzo[g,h,i,]Perylene",LB
+37067,0.02878094,Arsenic,LB
+37067,4.164634,Fluorene,LB
+37065,5.490384,Propionaldehyde,LB
+37065,0.00360746,Arsenic,LB
+37065,686.7384,Carbon Dioxide,TON
+37065,300.6714,Formaldehyde,LB
+37065,0.008419074,"Dibenzo[a,h]Anthracene",LB
+37065,0.5371591,Nitrous Oxide,TON
+37065,0.9823686,Ammonia,TON
+37065,0.4762547,PM2.5 Primary (Filt + Cond),TON
+37065,3232.384,Toluene,LB
+37061,0.009842242,Styrene,LB
+37061,0.0003690584,Anthracene,LB
+37061,0.0006438202,Fluoranthene,LB
+37061,0.14072334,Formaldehyde,LB
+37061,1.7432282e-05,Nickel,LB
+37061,9.700478e-07,Nitrate portion of PM2.5-PRI,TON
+37057,0.11076472,Benzo[b]Fluoranthene,LB
+37057,1.6003972,Chrysene,LB
+37057,0.015267762,"Dibenzo[a,h]Anthracene",LB
+37057,0.5466028,Manganese,LB
+37057,295.7115,Carbon Monoxide,TON
+37057,99.99381,Nitrogen Oxides,TON
+37057,5.208776,PM10 Primary (Filt + Cond),TON
+37057,4.138865,PM2.5 Primary (Filt + Cond),TON
+37055,661.0358,Ethyl Benzene,LB
+37055,1.8735402,Pyrene,LB
+37055,2433.326,Xylenes (Mixed Isomers),LB
+37055,0.117787,Nickel,LB
+37055,6.132694,Phenanthrene,LB
+37055,18126.35,Carbon Dioxide,TON
+37055,1.13618,Ammonia,TON
+37055,0.2250443,Organic Carbon portion of PM2.5-PRI,TON
+37039,33.14704,Carbon Dioxide,TON
+37039,0.003944923,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.009537562,PM2.5 Primary (Filt + Cond),TON
+37039,9.02584e-07,Chromium (VI),LB
+37039,0.00017333454,"Benzo[g,h,i,]Perylene",LB
+37039,0.0008428906,Benzo[b]Fluoranthene,LB
+37039,0.00011522148,"Dibenzo[a,h]Anthracene",LB
+37039,0.09669936,"2,2,4-Trimethylpentane",LB
+37041,2.109184,"1,3-Butadiene",LB
+37041,4.601718,Xylenes (Mixed Isomers),LB
+37041,0.000397113,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,66.44086,Formaldehyde,LB
+37041,6.206914,Benzene,LB
+37041,0.003186668,Arsenic,LB
+37041,7.238372,Naphthalene,LB
+37171,26.0754,Ethyl Benzene,LB
+37171,78.3857,"2,2,4-Trimethylpentane",LB
+37171,4.023965,Volatile Organic Compounds,TON
+37167,4.02522,Ethyl Benzene,LB
+37167,3.205082e-06,Chromium (VI),LB
+37167,0.008642622,Fluoranthene,LB
+37167,0.0015980426,Benzo[k]Fluoranthene,LB
+37167,0.0015932638,Chrysene,LB
+37167,3.213378e-05,Mercury,LB
+37167,0.0005697706,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.00110801,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.1217447,Volatile Organic Compounds,TON
+37165,0.6933822,Benzene,LB
+37165,0.03966757,Volatile Organic Compounds,TON
+37163,0.0015396002,Manganese,LB
+37163,1.596737e-05,Mercury,LB
+37163,1.237236e-06,Nitrate portion of PM2.5-PRI,TON
+37163,0.3823942,Nitrogen Oxides,TON
+37151,0.9582903,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.1266293,Sulfur Dioxide,TON
+37151,34.87384,Ethyl Benzene,LB
+37151,92.4875,Xylenes (Mixed Isomers),LB
+37151,0.0003057922,Chromium (VI),LB
+37151,0.6407882,Benzo[a]Pyrene,LB
+37151,28.92292,"2,2,4-Trimethylpentane",LB
+37137,0.007720684,Anthracene,LB
+37137,0.008375286,"Benzo[g,h,i,]Perylene",LB
+37137,0.003146714,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,7.689386e-05,Arsenic,LB
+37137,0.018315998,Fluorene,LB
+37133,1.8368082,"1,3-Butadiene",LB
+37133,2.281002e-05,Chromium (VI),LB
+37133,0.003642948,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,68.48022,Formaldehyde,LB
+37133,0.0019635896,"Dibenzo[a,h]Anthracene",LB
+37133,2.666019,Nitrogen Oxides,TON
+37133,0.06955952,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.2721554,PM10 Primary (Filt + Cond),TON
+37133,10.472522,Ethyl Benzene,LB
+37133,3.165232,Pyrene,LB
+37133,22.99732,Xylenes (Mixed Isomers),LB
+37133,0.014279624,"Benzo[g,h,i,]Perylene",LB
+37133,0.07028156,Benzo[b]Fluoranthene,LB
+37133,0.009619246,Benzo[k]Fluoranthene,LB
+37133,1.6690514,Acenaphthylene,LB
+37115,0.13179146,Xylenes (Mixed Isomers),LB
+37115,34.33532,Formaldehyde,LB
+37115,0.0001434294,Acenaphthene,LB
+37115,0.4857855,Carbon Monoxide,TON
+37115,0.0003109294,Sulfur Dioxide,TON
+37115,0.8151946,Ethyl Benzene,LB
+37115,0.2639834,Pyrene,LB
+37115,0.03945508,Chrysene,LB
+37115,0.02093864,Benzo[a]Pyrene,LB
+37115,2.272896,Benzene,LB
+37115,0.008833208,Manganese,LB
+37115,0.006418909,Ammonia,TON
+37115,1.0983672e-05,Chromium (VI),LB
+37115,0.019448468,Benzo[a]Pyrene,LB
+37115,0.006780208,Manganese,LB
+37115,1.786194,Naphthalene,LB
+37115,0.0310674,Methane,TON
+37103,0.18931044,"1,3-Butadiene",LB
+37103,0.429853,Toluene,LB
+37103,0.0003199512,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.0001728982,"Dibenzo[a,h]Anthracene",LB
+37103,0.07250694,Phenanthrene,LB
+37103,0.0001864252,Nitrous Oxide,TON
+37103,0.001213188,Sulfate Portion of PM2.5-PRI,TON
+37103,0.03431538,Volatile Organic Compounds,TON
+37099,0.18206028,Anthracene,LB
+37099,0.3114782,Fluoranthene,LB
+37099,0.010860154,Nickel,LB
+37099,1423.444,Carbon Dioxide,TON
+37099,0.1357004,PM10 Primary (Filt + Cond),TON
+37099,0.02298256,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.003386714,"1,3-Butadiene",LB
+37095,3.335378e-05,Acenaphthene,LB
+37095,0.0001824053,Naphthalene,LB
+37095,0.07487318,Methane,TON
+37095,0.1208561,Carbon Monoxide,TON
+37095,0.008890258,Volatile Organic Compounds,TON
+37077,2.679876e-05,Chromium (VI),LB
+37077,0.0279072,Benzo[b]Fluoranthene,LB
+37077,0.6774678,Acenaphthylene,LB
+37077,123.04762,Formaldehyde,LB
+37077,13.484982,Naphthalene,LB
+37077,0.3423523,PM10-Primary from certain diesel engines,TON
+37077,0.003597052,Nitrous Oxide,TON
+37077,0.7113511,Volatile Organic Compounds,TON
+37075,0.4932362,Fluorene,LB
+37075,0.1722084,PM10-Primary from certain diesel engines,TON
+37075,0.4236965,Volatile Organic Compounds,TON
+37075,3.8215,Propionaldehyde,LB
+37075,0.04705824,Benzo[a]Pyrene,LB
+37075,2536.626,Toluene,LB
+37075,664.0728,Benzene,LB
+37075,0.00839529,Sulfate Portion of PM2.5-PRI,TON
+37065,2.785398,Styrene,LB
+37065,0.003147748,"Benzo[g,h,i,]Perylene",LB
+37065,0.03007776,Manganese,LB
+37065,0.0005310183,Nitrate portion of PM2.5-PRI,TON
+37065,0.04254524,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.01245445,Sulfur Dioxide,TON
+37065,0.1088725,Carbon Dioxide,TON
+37065,0.0013041084,"1,3-Butadiene",LB
+37065,0.00769011,Hexane,LB
+37065,0.02253198,Xylenes (Mixed Isomers),LB
+37065,4.835324e-06,Benzo[k]Fluoranthene,LB
+37065,1.817224e-07,"Dibenzo[a,h]Anthracene",LB
+37061,0.1168909,Pyrene,LB
+37061,0.02821092,Benzo[k]Fluoranthene,LB
+37061,22.26682,Acetaldehyde,LB
+37061,0.05676836,Methane,TON
+37053,1334.9898,Toluene,LB
+37053,0.111146,Chrysene,LB
+37053,2.283276,Phenanthrene,LB
+37053,21.84888,Naphthalene,LB
+37053,99.68776,Carbon Monoxide,TON
+37051,12.717626,Toluene,LB
+37051,3.958284,Hexane,LB
+37051,0.004588138,Benzo[k]Fluoranthene,LB
+37051,3.281688,Carbon Monoxide,TON
+37051,0.001949997,Nitrate portion of PM2.5-PRI,TON
+37051,6.745674,Nitrogen Oxides,TON
+37049,1.9753926e-07,Mercury,LB
+37049,0.006197958,Acetaldehyde,LB
+37049,4.971002e-05,Fluorene,LB
+37049,4.249866e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37049,2.902627e-05,PM2.5 Primary (Filt + Cond),TON
+37049,0.001355576,"1,3-Butadiene",LB
+37049,1.4352468e-05,Benzo[b]Fluoranthene,LB
+37049,504.0668,Ethyl Benzene,LB
+37049,8.727294,Styrene,LB
+37049,15.28173,"1,3-Butadiene",LB
+37049,6.41824,Propionaldehyde,LB
+37049,0.16571244,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.1189256,Benz[a]Anthracene,LB
+37049,88.84876,Acetaldehyde,LB
+37049,0.0004780686,Nitrate portion of PM2.5-PRI,TON
+37049,5.113529,Nitrogen Oxides,TON
+37173,1335.247,Carbon Monoxide,TON
+37173,1.6349262,Benzo[k]Fluoranthene,LB
+37173,5780.162,Benzene,LB
+37173,0.03439082,Mercury,LB
+37169,70.58508,Toluene,LB
+37169,0.01038385,Anthracene,LB
+37169,2.146374e-06,Chromium (VI),LB
+37169,0.00015345934,"Dibenzo[a,h]Anthracene",LB
+37169,0.004255156,Benz[a]Anthracene,LB
+37169,12.995834,Benzene,LB
+37169,90.24039,Carbon Dioxide,TON
+37169,0.4111304,Nitrogen Oxides,TON
+37169,0.01317308,PM10 Primary (Filt + Cond),TON
+37169,0.00189313,Sulfur Dioxide,TON
+37161,4.61352,Pyrene,LB
+37161,3.57743,Fluoranthene,LB
+37161,0.0003642932,Mercury,LB
+37161,0.10026464,Nickel,LB
+37161,7.694652,Phenanthrene,LB
+37161,3.844418,Fluorene,LB
+37161,0.2436684,Sulfate Portion of PM2.5-PRI,TON
+37161,3.976097,Volatile Organic Compounds,TON
+37155,17.324748,Styrene,LB
+37155,6.73795,Acenaphthylene,LB
+37155,122.16374,Benzene,LB
+37155,4.009188,Acenaphthene,LB
+37155,1.580981,Elemental Carbon portion of PM2.5-PRI,TON
+37155,5.238089,PM10 Primary (Filt + Cond),TON
+37163,0.8183454,Acrolein,LB
+37163,10.679438,Formaldehyde,LB
+37163,0.03459116,Acenaphthene,LB
+37163,0.008994677,Organic Carbon portion of PM2.5-PRI,TON
+37163,0.07154816,PM10 Primary (Filt + Cond),TON
+37161,8.266954,Fluoranthene,LB
+37161,143.84346,Acrolein,LB
+37161,0.0003847742,Chromium (VI),LB
+37161,0.003371181,Nitrate portion of PM2.5-PRI,TON
+37161,10.69099,Volatile Organic Compounds,TON
+37155,14.867024,Styrene,LB
+37155,11.121186,Propionaldehyde,LB
+37155,2830.468,Xylenes (Mixed Isomers),LB
+37155,0.000277205,Chromium (VI),LB
+37155,0.211172,Benzo[b]Fluoranthene,LB
+37155,0.006878936,"Dibenzo[a,h]Anthracene",LB
+37155,0.05055938,Manganese,LB
+37155,4576.337,Carbon Dioxide,TON
+37155,0.4257435,PM10 Primary (Filt + Cond),TON
+37153,6.91299,Toluene,LB
+37153,0.4045548,Anthracene,LB
+37153,1.1663088,Pyrene,LB
+37153,0.8811218,Fluoranthene,LB
+37153,47.17946,Acetaldehyde,LB
+37153,0.3162874,PM10-Primary from certain diesel engines,TON
+37153,0.01390105,Ammonia,TON
+37153,0.1204219,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.05015561,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.00578023,Sulfate Portion of PM2.5-PRI,TON
+37151,0.1954921,Methane,TON
+37151,0.4727175,PM10-Primary from certain diesel engines,TON
+37151,0.3231722,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.01560261,Sulfate Portion of PM2.5-PRI,TON
+37151,30.94868,Xylenes (Mixed Isomers),LB
+37151,0.002000158,"Dibenzo[a,h]Anthracene",LB
+37135,4322.364,Formaldehyde,LB
+37135,0.894994,Benzo[a]Pyrene,LB
+37135,30.39768,Phenanthrene,LB
+37135,16.42496,Volatile Organic Compounds,TON
+37131,27.77828,Xylenes (Mixed Isomers),LB
+37117,4.919012,Xylenes (Mixed Isomers),LB
+37117,0.018041748,Benzo[b]Fluoranthene,LB
+37117,1.9019982,"2,2,4-Trimethylpentane",LB
+37117,0.002341306,Arsenic,LB
+37117,33.76876,Acetaldehyde,LB
+37117,0.002213353,Nitrous Oxide,TON
+37117,0.01006939,Ammonia,TON
+37117,0.001071646,Nitrate portion of PM2.5-PRI,TON
+37019,6.213688,Ethyl Benzene,LB
+37019,15.288652,Toluene,LB
+37019,0.80494,Pyrene,LB
+37019,0.002399314,Benzo[b]Fluoranthene,LB
+37019,0.008034344,Benzo[a]Pyrene,LB
+37019,0.9045168,Fluorene,LB
+37003,0.004642346,Acenaphthene,LB
+37003,0.003105338,Nitrous Oxide,TON
+37003,11.780826,Xylenes (Mixed Isomers),LB
+37003,1.254364e-06,Chromium (VI),LB
+37003,4.900532,Benzene,LB
+37003,1.2575004e-05,Mercury,LB
+37001,11.69172,Styrene,LB
+37001,27.27166,"1,3-Butadiene",LB
+37001,2.967636,Anthracene,LB
+37001,0.8643523,Methane,TON
+37001,29.47201,Carbon Monoxide,TON
+37001,4.319206,PM10-Primary from certain diesel engines,TON
+37001,0.5386359,Ammonia,TON
+37001,0.9487662,Organic Carbon portion of PM2.5-PRI,TON
+37001,4.312925,PM2.5 Primary (Filt + Cond),TON
+37001,0.3009644,Sulfate Portion of PM2.5-PRI,TON
+37015,0.03662888,Naphthalene,LB
+37015,0.4218574,Ethyl Benzene,LB
+37015,0.0754276,Acrolein,LB
+37015,0.8166602,Hexane,LB
+37015,9.72476e-06,Chromium (VI),LB
+37015,0.0008294524,Benzo[b]Fluoranthene,LB
+37003,0.001576084,Elemental Carbon portion of PM2.5-PRI,TON
+37003,2.716082,Ethyl Benzene,LB
+37003,0.015121918,"Benzo[g,h,i,]Perylene",LB
+37003,0.00757143,Fluoranthene,LB
+37003,10.168194,Formaldehyde,LB
+37005,0.1691536,Hexane,LB
+37143,4.570829e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.472324,Naphthalene,LB
+37125,0.0936806,PM10 Primary (Filt + Cond),TON
+37125,0.02618132,PM2.5 Primary (Filt + Cond),TON
+37125,0.009788996,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.009203818,Benzo[b]Fluoranthene,LB
+37125,0.01532581,Fluoranthene,LB
+37125,0.009203818,Benzo[k]Fluoranthene,LB
+37125,112.05798,Acetaldehyde,LB
+37109,0.0004082554,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.001700822,Sulfur Dioxide,TON
+37109,0.02525421,Volatile Organic Compounds,TON
+37109,0.0383794,Acrolein,LB
+37109,0.8695584,Toluene,LB
+37109,0.002096934,"Benzo[g,h,i,]Perylene",LB
+37109,0.4014558,"2,2,4-Trimethylpentane",LB
+37109,3.321854e-05,Mercury,LB
+37099,1.6916582,Benzene,LB
+37099,0.003034836,Phenanthrene,LB
+37099,0.7791771,Carbon Monoxide,TON
+37099,0.001123154,Nitrous Oxide,TON
+37013,134.36018,Acetaldehyde,LB
+37013,0.01231622,Nitrous Oxide,TON
+37013,0.003307736,Nitrate portion of PM2.5-PRI,TON
+37013,0.1405987,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.07054473,Sulfate Portion of PM2.5-PRI,TON
+37013,24.48588,Toluene,LB
+37013,0.05578384,Benzo[b]Fluoranthene,LB
+37013,1.5567756,Acenaphthylene,LB
+37013,0.1869618,Benzo[a]Pyrene,LB
+37007,0.2473584,Ethyl Benzene,LB
+37007,0.6207824,Xylenes (Mixed Isomers),LB
+37007,0.02753012,Fluoranthene,LB
+37007,1.4435004e-05,"Dibenzo[a,h]Anthracene",LB
+37007,0.03717314,Fluorene,LB
+37007,64.70829,Carbon Dioxide,TON
+37007,8.616428e-06,Nitrate portion of PM2.5-PRI,TON
+37007,0.001745699,PM2.5 Primary (Filt + Cond),TON
+37007,0.0005582998,Sulfur Dioxide,TON
+37009,2.876366,Ethyl Benzene,LB
+37009,2.629462,"1,3-Butadiene",LB
+37009,6.404058,Toluene,LB
+37009,2.19741,Hexane,LB
+37009,0.003092136,"Benzo[g,h,i,]Perylene",LB
+37009,0.014342522,Benzo[b]Fluoranthene,LB
+37009,7.9951,Benzene,LB
+37009,37.21688,Acetaldehyde,LB
+37009,0.1650487,PM25-Primary from certain diesel engines,TON
+37009,2.728258,Nitrogen Oxides,TON
+37009,0.2147792,PM10 Primary (Filt + Cond),TON
+37003,1.5643818,Ethyl Benzene,LB
+37003,9.404796e-06,Chromium (VI),LB
+37003,0.2632348,Acenaphthylene,LB
+37003,47.0136,Formaldehyde,LB
+37003,0.016874884,Benzo[a]Pyrene,LB
+37003,0.0015700988,Arsenic,LB
+37003,20.51712,Acetaldehyde,LB
+37003,2.024768,Carbon Monoxide,TON
+37003,0.09735219,PM10-Primary from certain diesel engines,TON
+37003,0.02486233,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.13899,PM10 Primary (Filt + Cond),TON
+37003,0.09491612,PM2.5 Primary (Filt + Cond),TON
+37003,0.01269941,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.414847,Hexane,LB
+37001,1.0829174,Xylenes (Mixed Isomers),LB
+37001,0.0008090428,"Benzo[g,h,i,]Perylene",LB
+37001,0.0010205072,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.0005482398,Benzo[k]Fluoranthene,LB
+37001,16.50328,Formaldehyde,LB
+37001,0.0005476816,"Dibenzo[a,h]Anthracene",LB
+37001,1.5611694,Benzene,LB
+37001,0.003788836,Manganese,LB
+37001,0.0006433088,Arsenic,LB
+37001,152.9235,Carbon Dioxide,TON
+37001,0.04624757,PM2.5 Primary (Filt + Cond),TON
+37001,0.09627572,Volatile Organic Compounds,TON
+37057,0.03249474,Manganese,LB
+37057,0.016734072,Nickel,LB
+37041,0.012052258,Styrene,LB
+37041,0.10043776,Propionaldehyde,LB
+37041,3.448492e-06,Chromium (VI),LB
+37041,0.00191842,Acenaphthylene,LB
+37041,0.002338746,Phenanthrene,LB
+37041,0.000843976,Fluorene,LB
+37041,0.003449522,Methane,TON
+37041,0.5078631,Carbon Monoxide,TON
+37041,0.001431642,Sulfur Dioxide,TON
+37041,0.03204519,Volatile Organic Compounds,TON
+37007,0.003683596,"Benzo[g,h,i,]Perylene",LB
+37007,0.002870904,Acenaphthylene,LB
+37007,0.0005531638,Chrysene,LB
+37007,3.176694e-05,"Dibenzo[a,h]Anthracene",LB
+37007,0.001599696,Arsenic,LB
+37007,5.388072e-06,Nitrate portion of PM2.5-PRI,TON
+37007,6.795813e-05,Sulfate Portion of PM2.5-PRI,TON
+37003,2.114538,Ethyl Benzene,LB
+37003,4.998948,Acrolein,LB
+37003,4.410432,Xylenes (Mixed Isomers),LB
+37003,0.05418283,PM2.5 Primary (Filt + Cond),TON
+37003,0.006618636,Benzo[a]Pyrene,LB
+37003,0.0002718064,"Dibenzo[a,h]Anthracene",LB
+37003,0.007530254,Manganese,LB
+37007,7365.12,Xylenes (Mixed Isomers),LB
+37007,0.9525526,Benzo[k]Fluoranthene,LB
+37007,0.4877414,Nickel,LB
+37007,1.474599,Methane,TON
+37019,11.969034,Toluene,LB
+37019,0.005638164,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.287264,Benz[a]Anthracene,LB
+37019,0.621244,Acenaphthene,LB
+37019,0.4172183,PM2.5 Primary (Filt + Cond),TON
+37013,0.004179637,Nitrous Oxide,TON
+37013,0.00160005,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,2.249202e-06,Chromium (VI),LB
+37005,0.10447206,Propionaldehyde,LB
+37005,0.008047202,Pyrene,LB
+37005,0.02629684,Phenanthrene,LB
+37005,5.176077,Carbon Dioxide,TON
+37005,0.002203416,Nitrous Oxide,TON
+37005,0.001650922,PM2.5 Primary (Filt + Cond),TON
+37005,0.0002843913,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.005653322,Benz[a]Anthracene,LB
+37199,0.0003058508,Nickel,LB
+37199,0.2720946,Naphthalene,LB
+37199,6.922848e-05,Benzo[k]Fluoranthene,LB
+37199,0.013336126,Acenaphthylene,LB
+37191,0.004367712,Manganese,LB
+37191,22.8277,Acetaldehyde,LB
+37191,0.006831382,Phenanthrene,LB
+37191,3.096568,Carbon Monoxide,TON
+37191,0.01428845,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.02164164,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.5504564,Propionaldehyde,LB
+37189,0.001289364,Manganese,LB
+37189,45.61725,Carbon Dioxide,TON
+37189,0.005741183,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.01212709,PM2.5 Primary (Filt + Cond),TON
+37137,15.210078,Toluene,LB
+37137,1.643698e-05,"Dibenzo[a,h]Anthracene",LB
+37137,2.262671e-06,Nitrate portion of PM2.5-PRI,TON
+37127,4.812308,Methane,TON
+37127,230774.7,Carbon Dioxide,TON
+37127,2.551188,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,5888.992,Ethyl Benzene,LB
+37127,37040.92,Toluene,LB
+37127,2411.48,Formaldehyde,LB
+37127,5.729402,Benzo[a]Pyrene,LB
+37111,8.711552e-06,Chromium (VI),LB
+37111,0.0011258724,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.02892218,Chrysene,LB
+37111,0.0006089994,"Dibenzo[a,h]Anthracene",LB
+37111,0.0017543936,Arsenic,LB
+37111,0.07716655,Elemental Carbon portion of PM2.5-PRI,TON
+37111,11.324864,Ethyl Benzene,LB
+37111,2.81606,Fluoranthene,LB
+37111,1.9886508,Acenaphthylene,LB
+37111,0.5266746,Chrysene,LB
+37111,32.65996,Benzene,LB
+37111,0.115774,Manganese,LB
+37111,2.571788,Fluorene,LB
+37111,37.89924,Naphthalene,LB
+37111,9.758999,Carbon Monoxide,TON
+37111,1.642269,PM25-Primary from certain diesel engines,TON
+37111,1.098473,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.006584803,Nitrous Oxide,TON
+37111,0.07646398,Ammonia,TON
+37111,0.004704959,Nitrate portion of PM2.5-PRI,TON
+37111,2.164292,PM10 Primary (Filt + Cond),TON
+37111,0.04754081,Sulfur Dioxide,TON
+37119,0.2985,Pyrene,LB
+37119,308.4108,Xylenes (Mixed Isomers),LB
+37119,0.05447478,Benzo[k]Fluoranthene,LB
+37113,1.12708,PM10-Primary from certain diesel engines,TON
+37113,0.267233,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.011442104,"Benzo[g,h,i,]Perylene",LB
+37113,0.007749574,"Dibenzo[a,h]Anthracene",LB
+37109,0.07231126,Benzo[b]Fluoranthene,LB
+37109,1220.0924,Acetaldehyde,LB
+37109,147.4027,Carbon Monoxide,TON
+37109,0.3751913,Organic Carbon portion of PM2.5-PRI,TON
+37107,1.1933474,Anthracene,LB
+37107,18.829752,Propionaldehyde,LB
+37107,408.0008,Formaldehyde,LB
+37107,35.86826,Benzene,LB
+37107,0.03836812,Arsenic,LB
+37107,42.21752,Naphthalene,LB
+37107,0.9964178,Elemental Carbon portion of PM2.5-PRI,TON
+37107,2.494513,PM10 Primary (Filt + Cond),TON
+37103,0.00010002358,Mercury,LB
+37103,0.0019124378,Arsenic,LB
+37103,0.0373025,Fluorene,LB
+37103,0.9566258,Naphthalene,LB
+37103,0.02689012,"Benzo[g,h,i,]Perylene",LB
+37103,1.7658426,Styrene,LB
+37103,136.96488,Hexane,LB
+37103,1.3235642,Propionaldehyde,LB
+37103,0.11687946,Fluoranthene,LB
+37103,0.006290256,Arsenic,LB
+37103,0.07973178,Acenaphthene,LB
+37103,0.16150994,Fluorene,LB
+37103,1.062461,Nitrogen Oxides,TON
+37095,6.51873,Ethyl Benzene,LB
+37095,0.004042404,Benzo[b]Fluoranthene,LB
+37095,4.069726e-05,Mercury,LB
+37095,0.04961371,Methane,TON
+37095,0.002968145,Nitrous Oxide,TON
+37083,3.017398,PM25-Primary from certain diesel engines,TON
+37083,0.2155758,Sulfur Dioxide,TON
+37083,6.587022,Pyrene,LB
+37083,0.03652294,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.01969298,Benzo[k]Fluoranthene,LB
+37083,0.11646444,Nickel,LB
+37083,0.3373624,Methane,TON
+37087,2.337236,Acrolein,LB
+37087,99.91164,Hexane,LB
+37087,0.007089878,Nickel,LB
+37087,0.12293408,Acenaphthene,LB
+37087,6.393888,Naphthalene,LB
+37087,0.08738707,Methane,TON
+37083,110.08716,"1,3-Butadiene",LB
+37083,1.3329736,Pyrene,LB
+37083,0.8518302,"Benzo[g,h,i,]Perylene",LB
+37083,3.637014,Acenaphthylene,LB
+37083,0.3206906,Benzo[a]Pyrene,LB
+37083,4.339312,Phenanthrene,LB
+37083,0.09825073,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.009532619,Sulfate Portion of PM2.5-PRI,TON
+37071,0.000251325,Mercury,LB
+37071,586.5082,Acetaldehyde,LB
+37071,0.8215267,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,20.06516,Styrene,LB
+37071,0.09077578,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,1330.2128,Formaldehyde,LB
+37069,0.004280008,"Benzo[g,h,i,]Perylene",LB
+37069,0.0005494008,Arsenic,LB
+37069,0.009165706,PM10 Primary (Filt + Cond),TON
+37055,0.7090506,Hexane,LB
+37055,0.7363772,"2,2,4-Trimethylpentane",LB
+37055,0.011487594,Manganese,LB
+37055,0.001819512,Arsenic,LB
+37055,0.6077169,Carbon Monoxide,TON
+37055,0.02409498,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.002856252,Sulfur Dioxide,TON
+37051,261.147,Toluene,LB
+37051,224.8922,Xylenes (Mixed Isomers),LB
+37051,0.0803625,Acrolein,LB
+37051,0.00244081,Methane,TON
+37039,1.9498862,Hexane,LB
+37039,0.78777,Pyrene,LB
+37039,0.003487714,"Benzo[g,h,i,]Perylene",LB
+37039,0.01693403,Benzo[b]Fluoranthene,LB
+37039,0.4309556,Acenaphthylene,LB
+37039,0.05680616,Benzo[a]Pyrene,LB
+37039,458.9816,Carbon Dioxide,TON
+37041,0.03546596,PM25-Primary from certain diesel engines,TON
+37041,4.008022e-06,Chromium (VI),LB
+37041,0.0992133,Acenaphthylene,LB
+37041,17.67881,Formaldehyde,LB
+37037,0.1158027,Acrolein,LB
+37037,21.29032,Toluene,LB
+37037,5.631796e-06,Chromium (VI),LB
+37037,1.8601326,Formaldehyde,LB
+37037,0.00491137,Benzo[a]Pyrene,LB
+37037,0.002898986,Manganese,LB
+37037,0.011668378,Fluorene,LB
+37037,191.9476,Carbon Dioxide,TON
+37037,3.715042,Phenanthrene,LB
+37037,0.5849464,Anthracene,LB
+37037,1481.2982,Xylenes (Mixed Isomers),LB
+37037,0.26171,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,3.114774,Acenaphthylene,LB
+37037,207.3038,Formaldehyde,LB
+37037,484.2296,"2,2,4-Trimethylpentane",LB
+37037,0.19537806,Benz[a]Anthracene,LB
+37031,0.003202304,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,2.892818,Acetaldehyde,LB
+37031,0.00693006,PM2.5 Primary (Filt + Cond),TON
+37031,0.0002175207,Sulfate Portion of PM2.5-PRI,TON
+37029,98.81497,Carbon Dioxide,TON
+37029,0.001486073,Ammonia,TON
+37029,0.09121638,Hexane,LB
+37029,3.633472,Formaldehyde,LB
+37029,15.87469,"1,3-Butadiene",LB
+37029,356.9042,Toluene,LB
+37029,2.201458,Propionaldehyde,LB
+37029,0.02938814,Benzo[b]Fluoranthene,LB
+37029,0.0225153,Manganese,LB
+37029,0.606106,Phenanthrene,LB
+37029,3.269524,Nitrogen Oxides,TON
+37025,1.191516,Nitrous Oxide,TON
+37025,38.2145,Acrolein,LB
+37025,4128.3,Xylenes (Mixed Isomers),LB
+37025,1.9754578,"Benzo[g,h,i,]Perylene",LB
+37025,1350.976,"2,2,4-Trimethylpentane",LB
+37025,1928.6762,Benzene,LB
+37023,0.2127076,Anthracene,LB
+37023,1.8035546e-05,Chromium (VI),LB
+37023,0.014861024,Benzo[b]Fluoranthene,LB
+37023,0.311987,Acenaphthylene,LB
+37023,0.09412064,Chrysene,LB
+37023,0.15906954,Benz[a]Anthracene,LB
+37023,6.618244,Naphthalene,LB
+37023,813.9658,Carbon Dioxide,TON
+37169,0.0007353512,Organic Carbon portion of PM2.5-PRI,TON
+37169,4.768538e-05,Sulfate Portion of PM2.5-PRI,TON
+37169,1.686151,Toluene,LB
+37169,0.0005838418,Anthracene,LB
+37169,0.00301609,"Benzo[g,h,i,]Perylene",LB
+37169,0.0006071256,Benzo[b]Fluoranthene,LB
+37169,0.002943138,Acenaphthylene,LB
+37169,0.7044554,Carbon Monoxide,TON
+37107,0.5328384,Hexane,LB
+37107,1.0924836,Xylenes (Mixed Isomers),LB
+37107,5.668862e-06,Chromium (VI),LB
+37107,0.0007085854,Nickel,LB
+37107,0.7225721,Carbon Monoxide,TON
+37107,0.0008658488,Organic Carbon portion of PM2.5-PRI,TON
+37175,6.72881e-05,Fluoranthene,LB
+37175,0.014186722,Formaldehyde,LB
+37175,1.2405344e-05,Benz[a]Anthracene,LB
+37175,4.628154e-05,Acenaphthene,LB
+37175,0.0002511028,Phenanthrene,LB
+37175,9.374786e-05,Fluorene,LB
+37175,4.190143e-06,Ammonia,TON
+37175,4.160038e-05,"Benzo[g,h,i,]Perylene",LB
+37175,0.0008666762,Volatile Organic Compounds,TON
+37171,8.183036,Acrolein,LB
+37171,7.123248,Propionaldehyde,LB
+37171,0.4980328,"Benzo[g,h,i,]Perylene",LB
+37171,0.1272193,Chrysene,LB
+37171,0.4297582,Acenaphthene,LB
+37171,22.31812,Naphthalene,LB
+37171,0.1835946,PM2.5 Primary (Filt + Cond),TON
+37161,34.71194,Toluene,LB
+37161,0.017802006,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,2.617784,Fluoranthene,LB
+37161,0.3255121,Methane,TON
+37161,13.39515,Carbon Monoxide,TON
+37161,0.01802552,Nitrous Oxide,TON
+37161,0.004152473,Nitrate portion of PM2.5-PRI,TON
+37161,2.242369,Volatile Organic Compounds,TON
+37159,0.03821639,Sulfur Dioxide,TON
+37159,358.2086,Xylenes (Mixed Isomers),LB
+37159,0.06673934,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,45.61972,Formaldehyde,LB
+37159,128.50322,"2,2,4-Trimethylpentane",LB
+37159,0.14487322,Acenaphthene,LB
+37161,2.153183,Sulfur Dioxide,TON
+37161,4098.05,Ethyl Benzene,LB
+37161,26001.02,Toluene,LB
+37161,8.378928,Fluoranthene,LB
+37161,1655.5114,Formaldehyde,LB
+37161,0.07073506,Mercury,LB
+37161,2.760679,Methane,TON
+37155,147.61928,Acenaphthylene,LB
+37155,9.654372,Benz[a]Anthracene,LB
+37155,550.1822,Volatile Organic Compounds,TON
+37153,0.0009000034,Arsenic,LB
+37153,7.94646,Hexane,LB
+37153,4.69553e-06,Chromium (VI),LB
+37151,112.26974,Xylenes (Mixed Isomers),LB
+37151,15.168598,Ethyl Benzene,LB
+37151,0.02474046,Anthracene,LB
+37151,0.008681622,Benz[a]Anthracene,LB
+37151,0.0010903766,Nickel,LB
+37151,0.0016718828,Arsenic,LB
+37151,0.02886974,Acenaphthene,LB
+37151,0.05847728,Fluorene,LB
+37151,1.4991672,Naphthalene,LB
+37151,0.006602413,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.1397546,Methane,TON
+37007,0.5279284,PM10-Primary from certain diesel engines,TON
+37007,0.1143714,Ammonia,TON
+37007,8.46066,Styrene,LB
+37007,30.94258,Propionaldehyde,LB
+37007,0.0001416173,Chromium (VI),LB
+37007,0.002145872,Benzo[k]Fluoranthene,LB
+37007,3.251136,Acenaphthylene,LB
+37007,0.1968386,Chrysene,LB
+37007,0.08304028,Nickel,LB
+37019,17.440618,Propionaldehyde,LB
+37019,0.010935812,"Dibenzo[a,h]Anthracene",LB
+37019,9.30326,Carbon Monoxide,TON
+37019,0.02107577,Sulfur Dioxide,TON
+37011,8.58782e-08,Chromium (VI),LB
+37011,0.00339363,Fluoranthene,LB
+37011,0.0006914068,Benzo[k]Fluoranthene,LB
+37011,0.0006686668,Chrysene,LB
+37011,2.114988,Benzene,LB
+37011,0.120265,Naphthalene,LB
+37011,0.7629944,Carbon Monoxide,TON
+37011,3.576694,Carbon Dioxide,TON
+37009,4.198916,Hexane,LB
+37009,0.9620638,Acenaphthylene,LB
+37009,0.249186,Chrysene,LB
+37009,0.04995606,Manganese,LB
+37009,0.4890613,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.03608296,Ammonia,TON
+37009,17.67429,Nitrogen Oxides,TON
+37009,0.9724467,PM10 Primary (Filt + Cond),TON
+37003,1.5039218,"1,3-Butadiene",LB
+37003,0.009573468,Anthracene,LB
+37003,3.455394e-07,Chromium (VI),LB
+37003,6.622812e-05,Arsenic,LB
+37003,0.5816316,Naphthalene,LB
+37003,15.06136,Carbon Dioxide,TON
+37085,0.002741896,PM2.5 Primary (Filt + Cond),TON
+37085,1.6461356,Xylenes (Mixed Isomers),LB
+37085,0.0007012376,Chrysene,LB
+37067,77.79008,Toluene,LB
+37061,0.04256132,Styrene,LB
+37061,0.15692518,Acrolein,LB
+37061,3.248356,Xylenes (Mixed Isomers),LB
+37061,2.620264,Carbon Monoxide,TON
+37061,264.7843,Carbon Dioxide,TON
+37061,0.003093391,Nitrous Oxide,TON
+37013,0.1372132,Volatile Organic Compounds,TON
+37199,0.19230496,"1,3-Butadiene",LB
+37199,0.3195294,Propionaldehyde,LB
+37199,2.043954e-06,Chromium (VI),LB
+37199,0.01945066,Acenaphthene,LB
+37199,0.6806584,Naphthalene,LB
+37199,0.0002170248,Naphthalene,LB
+37199,7.536494e-07,Ammonia,TON
+37199,1.216161e-06,Organic Carbon portion of PM2.5-PRI,TON
+37199,7.39287e-05,Volatile Organic Compounds,TON
+37199,4.357134e-09,Mercury,LB
+37199,2.305912e-06,Benzo[a]Pyrene,LB
+37193,0.009163886,Styrene,LB
+37193,2.251448e-06,Chromium (VI),LB
+37193,0.0003144256,Benzo[b]Fluoranthene,LB
+37193,0.0003144256,Benzo[k]Fluoranthene,LB
+37193,0.000243691,Chrysene,LB
+37193,2.257098e-05,Mercury,LB
+37193,4.129544,Acetaldehyde,LB
+37193,0.0008809722,PM2.5 Primary (Filt + Cond),TON
+37193,13608.304,Ethyl Benzene,LB
+37193,76106.98,Toluene,LB
+37193,7.09847,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,16639.132,"2,2,4-Trimethylpentane",LB
+37193,7564.958,Acetaldehyde,LB
+37193,3.82315,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.004289936,Propionaldehyde,LB
+37185,9.670132e-08,Chromium (VI),LB
+37185,0.00014152758,Benzo[k]Fluoranthene,LB
+37185,1.2087676e-05,Nickel,LB
+37185,1.8534044e-05,Arsenic,LB
+37185,0.000459423,Fluorene,LB
+37185,0.1156262,Carbon Monoxide,TON
+37185,0.01451605,Nitrogen Oxides,TON
+37185,0.0001358256,Organic Carbon portion of PM2.5-PRI,TON
+37185,6.463716e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.4988342,Styrene,LB
+37187,0.8822322,Hexane,LB
+37187,9.959762e-06,Chromium (VI),LB
+37187,247.2074,Carbon Dioxide,TON
+37187,6.25984e-05,Nitrate portion of PM2.5-PRI,TON
+37187,0.7544442,Nitrogen Oxides,TON
+37187,0.202448,Volatile Organic Compounds,TON
+37187,0.00061637,Chrysene,LB
+37187,0.0001888172,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.0308089,Volatile Organic Compounds,TON
+37187,0.0451101,Styrene,LB
+37187,0.04851304,Acrolein,LB
+37187,1.566828,Hexane,LB
+37179,0.3744582,"1,3-Butadiene",LB
+37179,3.265338,Hexane,LB
+37179,5.60215,Xylenes (Mixed Isomers),LB
+37179,0.01056174,PM2.5 Primary (Filt + Cond),TON
+37177,0.0019066118,"2,2,4-Trimethylpentane",LB
+37177,0.001517231,Ethyl Benzene,LB
+37177,8.46741e-07,Organic Carbon portion of PM2.5-PRI,TON
+37177,2.472225e-06,PM10 Primary (Filt + Cond),TON
+37197,4.105362,Xylenes (Mixed Isomers),LB
+37187,4.268468,Ethyl Benzene,LB
+37187,1.7178606,Styrene,LB
+37187,0.003660598,"Dibenzo[a,h]Anthracene",LB
+37187,1.5175656,Phenanthrene,LB
+37187,0.01377269,Sulfur Dioxide,TON
+37183,0.02706782,Pyrene,LB
+37183,31.02136,Xylenes (Mixed Isomers),LB
+37183,0.016570678,Benzo[k]Fluoranthene,LB
+37183,0.014299646,Benz[a]Anthracene,LB
+37183,0.00901799,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.02613131,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.07590142,Sulfur Dioxide,TON
+37183,0.001740615,Sulfate Portion of PM2.5-PRI,TON
+37177,0.003222558,Anthracene,LB
+37177,0.009033536,Pyrene,LB
+37177,0.006860374,Fluoranthene,LB
+37177,0.002455826,PM10-Primary from certain diesel engines,TON
+37177,1.878466e-05,Nitrous Oxide,TON
+37177,0.002330383,PM2.5 Primary (Filt + Cond),TON
+37193,16131.4,Toluene,LB
+37193,3774.032,"2,2,4-Trimethylpentane",LB
+37193,429.137,Benzene,LB
+37181,1.3101836,Ethyl Benzene,LB
+37023,3.842624,"1,3-Butadiene",LB
+37023,0.6944712,Fluoranthene,LB
+37023,0.0018284852,"Dibenzo[a,h]Anthracene",LB
+37023,2.88234,"2,2,4-Trimethylpentane",LB
+37023,0.014388668,Nickel,LB
+37023,0.2672717,PM10-Primary from certain diesel engines,TON
+37023,9.116189,Nitrogen Oxides,TON
+37173,0.5506374,Anthracene,LB
+37173,0.5172088,Elemental Carbon portion of PM2.5-PRI,TON
+37167,32.58328,Toluene,LB
+37167,1.164584,Anthracene,LB
+37167,0.06548208,Benzo[b]Fluoranthene,LB
+37167,0.7395996,Benz[a]Anthracene,LB
+37167,0.17794626,Manganese,LB
+37139,0.007470432,Anthracene,LB
+37139,0.012756984,Fluoranthene,LB
+37139,6.643236e-05,Arsenic,LB
+37139,0.0007056779,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.014047062,Fluoranthene,LB
+37131,0.003109174,Chrysene,LB
+37131,10.988122,Benzene,LB
+37131,3.02268,Acetaldehyde,LB
+37131,5.68684,Carbon Monoxide,TON
+37131,0.0009861517,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.0002055196,Sulfate Portion of PM2.5-PRI,TON
+37125,2.497624e-05,Mercury,LB
+37125,99.10098,Acetaldehyde,LB
+37125,0.6524574,Acenaphthene,LB
+37125,2.424428,Phenanthrene,LB
+37125,1239.536,Carbon Dioxide,TON
+37125,0.1698785,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.4088213,PM2.5 Primary (Filt + Cond),TON
+37125,0.0109969,Sulfate Portion of PM2.5-PRI,TON
+37125,239.8544,Formaldehyde,LB
+37113,7.577054,"2,2,4-Trimethylpentane",LB
+37113,0.6499766,Benz[a]Anthracene,LB
+37113,2931.085,Carbon Dioxide,TON
+37113,0.6501936,PM25-Primary from certain diesel engines,TON
+37113,0.07429999,Ammonia,TON
+37113,0.1257834,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,1.589874,Volatile Organic Compounds,TON
+37109,0.018273048,Manganese,LB
+37109,7.74069e-06,Mercury,LB
+37109,1.700775,Acrolein,LB
+37109,0.07416948,Anthracene,LB
+37109,1.0877464,Propionaldehyde,LB
+37109,625.2282,Carbon Dioxide,TON
+37109,0.008336623,Ammonia,TON
+37109,0.1210736,Volatile Organic Compounds,TON
+37105,0.4328392,"2,2,4-Trimethylpentane",LB
+37105,0.03453492,Benz[a]Anthracene,LB
+37105,0.19823708,Styrene,LB
+37105,0.10188894,Fluorene,LB
+37105,1.659659,Nitrogen Oxides,TON
+37105,0.07527519,PM2.5 Primary (Filt + Cond),TON
+37097,1.2470996,"1,3-Butadiene",LB
+37097,2.199328,Xylenes (Mixed Isomers),LB
+37097,0.001624715,"Benzo[g,h,i,]Perylene",LB
+37097,0.007766306,Benzo[b]Fluoranthene,LB
+37097,0.2849904,Fluoranthene,LB
+37097,36.51826,Formaldehyde,LB
+37097,0.02605138,Benzo[a]Pyrene,LB
+37097,0.00516458,Ammonia,TON
+37097,0.08787161,PM2.5 Primary (Filt + Cond),TON
+37097,0.01505204,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.2194199,Volatile Organic Compounds,TON
+37095,0.05364118,"1,3-Butadiene",LB
+37095,9.310258e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.000365468,Benzo[b]Fluoranthene,LB
+37095,0.1613768,Benzene,LB
+37095,0.0001181102,Arsenic,LB
+37095,0.0208009,Phenanthrene,LB
+37095,0.18863872,Naphthalene,LB
+37095,42.44801,Carbon Dioxide,TON
+37095,0.004945551,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.4476458,Anthracene,LB
+37089,0.00018629302,Chromium (VI),LB
+37089,0.19850776,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.7643392,Fluoranthene,LB
+37089,719.5156,Benzene,LB
+37089,2.843216,Phenanthrene,LB
+37089,0.1104803,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.006228674,Sulfate Portion of PM2.5-PRI,TON
+37089,19.40549,Volatile Organic Compounds,TON
+37079,0.0017025428,Arsenic,LB
+37079,0.007288454,Ammonia,TON
+37079,0.02350969,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.003097379,Sulfur Dioxide,TON
+37079,0.5687998,Pyrene,LB
+37079,24.15016,Acetaldehyde,LB
+37075,0.02157298,PM10 Primary (Filt + Cond),TON
+37075,0.000463443,Sulfate Portion of PM2.5-PRI,TON
+37075,1.458763,Volatile Organic Compounds,TON
+37075,0.002499396,Manganese,LB
+37075,0.000151563,Mercury,LB
+37075,0.8621234,Styrene,LB
+37075,345.674,Toluene,LB
+37059,12.795948,Hexane,LB
+37059,38.35454,Xylenes (Mixed Isomers),LB
+37059,0.03130278,Arsenic,LB
+37059,0.01624588,Nitrous Oxide,TON
+37059,2.813663,Volatile Organic Compounds,TON
+37065,0.0004385378,Acenaphthene,LB
+37065,9.841928e-05,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.0001980427,PM2.5 Primary (Filt + Cond),TON
+37065,0.05843904,"1,3-Butadiene",LB
+37065,0.0007352868,Pyrene,LB
+37065,0.00013744046,Benzo[b]Fluoranthene,LB
+37065,0.00013591496,Benz[a]Anthracene,LB
+37065,0.395082,Benzene,LB
+37059,0.6274692,Acenaphthene,LB
+37059,32.5775,Naphthalene,LB
+37059,0.1253861,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.6286647,PM10 Primary (Filt + Cond),TON
+37059,0.262783,PM2.5 Primary (Filt + Cond),TON
+37059,0.07489695,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.000396754,Chromium (VI),LB
+37059,0.16965674,Chrysene,LB
+37059,0.005159232,"Dibenzo[a,h]Anthracene",LB
+37057,0.02385646,Chromium (VI),LB
+37057,12.177122,Benzo[b]Fluoranthene,LB
+37057,62.98544,Fluoranthene,LB
+37057,12.177122,Benzo[k]Fluoranthene,LB
+37057,13529.788,Formaldehyde,LB
+37057,41991.72,Benzene,LB
+37057,5.793442,Manganese,LB
+37057,3.799269,Elemental Carbon portion of PM2.5-PRI,TON
+37055,3.83612,"1,3-Butadiene",LB
+37055,2.16758e-05,Chromium (VI),LB
+37055,0.6545558,Acenaphthylene,LB
+37055,117.65978,Formaldehyde,LB
+37055,0.003634664,Arsenic,LB
+37055,51.25264,Acetaldehyde,LB
+37055,769.5026,Carbon Dioxide,TON
+37055,12.517052,Toluene,LB
+37055,2.665848,"2,2,4-Trimethylpentane",LB
+37055,0.0004625132,Arsenic,LB
+37055,0.1820222,Naphthalene,LB
+37055,0.06379627,Volatile Organic Compounds,TON
+37043,69.7775,Acrolein,LB
+37043,3.208088,Anthracene,LB
+37043,6.223866,Pyrene,LB
+37043,8019.356,Xylenes (Mixed Isomers),LB
+37043,2.939614,"Benzo[g,h,i,]Perylene",LB
+37043,1.1141536,Benzo[a]Pyrene,LB
+37043,2565.62,"2,2,4-Trimethylpentane",LB
+37043,0.943968,Benz[a]Anthracene,LB
+37043,0.33105,Arsenic,LB
+37043,3.767466,Acenaphthene,LB
+37043,0.5930599,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.02872458,Sulfate Portion of PM2.5-PRI,TON
+37033,0.8508196,"1,3-Butadiene",LB
+37033,32.84196,Toluene,LB
+37033,8.458192,Hexane,LB
+37033,18.119686,Xylenes (Mixed Isomers),LB
+37033,0.011136926,"Benzo[g,h,i,]Perylene",LB
+37033,0.004184374,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,6.750168,Benzene,LB
+37033,0.005008107,Methane,TON
+37033,0.007841341,PM10 Primary (Filt + Cond),TON
+37025,17.129668,Styrene,LB
+37025,4.493496,Anthracene,LB
+37025,63.43594,Propionaldehyde,LB
+37025,1.0434408,Benzo[a]Pyrene,LB
+37025,3.341278,Benz[a]Anthracene,LB
+37025,111.9834,Benzene,LB
+37025,0.658203,Manganese,LB
+37025,0.05174326,Arsenic,LB
+37025,130.36256,Naphthalene,LB
+37025,33.80248,Carbon Monoxide,TON
+37025,5.666894,PM25-Primary from certain diesel engines,TON
+37025,8.573643,PM10 Primary (Filt + Cond),TON
+37027,7.418186,Acenaphthene,LB
+37027,385.288,Naphthalene,LB
+37027,0.9538253,Elemental Carbon portion of PM2.5-PRI,TON
+37027,3.889067,Nitrous Oxide,TON
+37027,154.03944,Acrolein,LB
+37027,20162.18,Xylenes (Mixed Isomers),LB
+37027,0.00805433,Chromium (VI),LB
+37027,33.81722,Acenaphthylene,LB
+37027,2.4149,Benz[a]Anthracene,LB
+37027,5.195365,PM2.5 Primary (Filt + Cond),TON
+37023,8.306438,Styrene,LB
+37023,3.254452,Acenaphthylene,LB
+37023,4.27542,Fluorene,LB
+37023,20.16247,Carbon Monoxide,TON
+37023,1.804623,Elemental Carbon portion of PM2.5-PRI,TON
+37023,4.70164,PM10 Primary (Filt + Cond),TON
+37179,35.00282,Acetaldehyde,LB
+37179,0.6818362,Phenanthrene,LB
+37179,0.2550232,Fluorene,LB
+37179,51.44815,Carbon Monoxide,TON
+37179,0.07132674,PM2.5 Primary (Filt + Cond),TON
+37179,1.777511,Volatile Organic Compounds,TON
+37171,0.3500179,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,30.6048,Ethyl Benzene,LB
+37171,11.00044,Styrene,LB
+37171,0.0003903402,Chromium (VI),LB
+37171,0.01845734,"Dibenzo[a,h]Anthracene",LB
+37171,389.973,Acetaldehyde,LB
+37171,2.566708,Acenaphthene,LB
+37171,5.36947,Fluorene,LB
+37149,0.213254,Styrene,LB
+37149,1.080671,Toluene,LB
+37149,0.799738,Propionaldehyde,LB
+37149,0.102937,Fluoranthene,LB
+37149,0.000358536,Benzo[k]Fluoranthene,LB
+37149,0.03002186,Benz[a]Anthracene,LB
+37149,6.650774,Acetaldehyde,LB
+37149,1.6755158,Naphthalene,LB
+37149,0.07697736,PM25-Primary from certain diesel engines,TON
+37149,0.05710645,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.006873601,Ammonia,TON
+37149,2.062588,Nitrogen Oxides,TON
+37161,1.6454858e-05,Arsenic,LB
+37161,0.0001743187,Nitrous Oxide,TON
+37161,0.0003551101,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.00015708316,Manganese,LB
+37147,1.4362568,Ethyl Benzene,LB
+37147,0.04948966,Propionaldehyde,LB
+37147,73.01374,Toluene,LB
+37147,0.008026952,Benzo[b]Fluoranthene,LB
+37147,0.0006119733,Sulfate Portion of PM2.5-PRI,TON
+37143,0.00051539,"Benzo[g,h,i,]Perylene",LB
+37143,0.0001936279,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.000116425,Benzo[b]Fluoranthene,LB
+37143,0.000116425,Benzo[k]Fluoranthene,LB
+37143,0.00019220038,Benzo[a]Pyrene,LB
+37143,4.614812e-06,Arsenic,LB
+37143,0.0012937518,Phenanthrene,LB
+37143,1.55967,Carbon Dioxide,TON
+37131,0.19118732,Fluoranthene,LB
+37131,0.000805261,Benzo[k]Fluoranthene,LB
+37131,0.0017215902,Arsenic,LB
+37131,10.389696,Acetaldehyde,LB
+37131,0.02887058,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.008347072,Ammonia,TON
+37131,0.002580862,Sulfur Dioxide,TON
+37131,0.1358792,Volatile Organic Compounds,TON
+37111,1.4358838,Acrolein,LB
+37111,0.06609516,Anthracene,LB
+37111,24.42134,Formaldehyde,LB
+37111,0.06791888,Benzo[a]Pyrene,LB
+37111,0.02208952,Manganese,LB
+37111,0.414915,Phenanthrene,LB
+37111,0.05738246,Methane,TON
+37111,0.000205693,Nitrate portion of PM2.5-PRI,TON
+37119,0.0005581484,Mercury,LB
+37119,0.11160456,Fluorene,LB
+37119,0.0001688463,Nitrate portion of PM2.5-PRI,TON
+37119,0.03116574,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.002186905,Sulfate Portion of PM2.5-PRI,TON
+37109,6.676918,Acetaldehyde,LB
+37109,0.0004835871,Sulfur Dioxide,TON
+37109,7.260307e-05,Sulfate Portion of PM2.5-PRI,TON
+37109,0.05483378,Volatile Organic Compounds,TON
+37109,0.18476022,Benzene,LB
+37109,0.018068438,"1,3-Butadiene",LB
+37109,0.000463874,Acenaphthylene,LB
+37109,16.335138,Toluene,LB
+37109,1.0649504,Pyrene,LB
+37109,0.0004394992,Benzo[k]Fluoranthene,LB
+37109,1.1647798,Acenaphthylene,LB
+37109,0.000436632,"Dibenzo[a,h]Anthracene",LB
+37109,1.8627478,Phenanthrene,LB
+37109,2144.926,Xylenes (Mixed Isomers),LB
+37109,0.4839642,"Benzo[g,h,i,]Perylene",LB
+37109,172.90684,Formaldehyde,LB
+37109,0.18226848,Benzo[a]Pyrene,LB
+37109,0.9380698,Fluorene,LB
+37109,24.04704,Naphthalene,LB
+37109,0.214935,Methane,TON
+37109,0.100362,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.1798363,PM2.5 Primary (Filt + Cond),TON
+37109,0.04679789,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,3.929746,Acetaldehyde,LB
+37107,0.01009762,Methane,TON
+37107,0.003997136,Nitrous Oxide,TON
+37107,0.004332613,PM2.5 Primary (Filt + Cond),TON
+37107,0.0001160834,Sulfate Portion of PM2.5-PRI,TON
+37107,0.2836634,Styrene,LB
+37107,0.00358591,Benzo[a]Pyrene,LB
+37097,0.06499092,"Benzo[g,h,i,]Perylene",LB
+37097,7.190514,Acenaphthylene,LB
+37097,1.0871688,Benzo[a]Pyrene,LB
+37097,0.04441936,"Dibenzo[a,h]Anthracene",LB
+37097,0.01889006,Nitrate portion of PM2.5-PRI,TON
+37097,122.534,Nitrogen Oxides,TON
+37099,21.60622,Propionaldehyde,LB
+37099,0.010112264,"Dibenzo[a,h]Anthracene",LB
+37099,0.08403206,Nickel,LB
+37099,1.931476,PM25-Primary from certain diesel engines,TON
+37099,0.3522425,Ammonia,TON
+37099,2.479887,Volatile Organic Compounds,TON
+37089,0.015330788,Fluoranthene,LB
+37089,0.0006970046,Nickel,LB
+37089,0.0010687404,Arsenic,LB
+37089,0.05594098,Phenanthrene,LB
+37089,4.319956,Carbon Monoxide,TON
+37089,0.001294818,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.09919004,Methane,TON
+37137,0.6520526,PM10 Primary (Filt + Cond),TON
+37137,0.4256454,PM2.5 Primary (Filt + Cond),TON
+37137,9.968398,Xylenes (Mixed Isomers),LB
+37137,7.144118,Acrolein,LB
+37137,4.325976,Propionaldehyde,LB
+37123,6.594082,Phenanthrene,LB
+37123,0.01073997,Nitrous Oxide,TON
+37123,0.6189627,PM2.5 Primary (Filt + Cond),TON
+37123,24.80754,Ethyl Benzene,LB
+37123,11.185606,Styrene,LB
+37123,40.97074,Propionaldehyde,LB
+37123,4.003124,Pyrene,LB
+37123,0.000189896,Chromium (VI),LB
+37123,0.0002676058,"Benzo[g,h,i,]Perylene",LB
+37123,0.12282164,Acenaphthylene,LB
+37123,0.01901785,Methane,TON
+37123,0.0009769076,Elemental Carbon portion of PM2.5-PRI,TON
+37115,5.886542,Hexane,LB
+37115,0.7518454,Anthracene,LB
+37115,0.1509316,Benzo[a]Pyrene,LB
+37115,24.91844,Naphthalene,LB
+37115,0.06232867,Ammonia,TON
+37113,0.0035852,Volatile Organic Compounds,TON
+37113,0.004985716,Styrene,LB
+37113,0.004106786,Propionaldehyde,LB
+37113,0.08579717,Carbon Monoxide,TON
+37113,2.329163e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37113,8.9523e-05,Ammonia,TON
+37107,0.0016706876,Benzo[k]Fluoranthene,LB
+37107,0.1281848,Methane,TON
+37107,2167.948,Carbon Dioxide,TON
+37107,0.3138133,PM25-Primary from certain diesel engines,TON
+37105,0.03338603,Organic Carbon portion of PM2.5-PRI,TON
+37105,4.598706,Xylenes (Mixed Isomers),LB
+37105,0.006617392,Benzo[b]Fluoranthene,LB
+37105,0.3690684,Fluoranthene,LB
+37105,1.4518112e-05,Mercury,LB
+37105,0.1261919,PM25-Primary from certain diesel engines,TON
+37097,9.173452e-05,Chromium (VI),LB
+37097,3.393276,Fluoranthene,LB
+37097,0.05165556,Nickel,LB
+37097,1.4586566,Acenaphthene,LB
+37097,51.34512,Naphthalene,LB
+37097,0.01735208,Nitrous Oxide,TON
+37097,1.116951,PM2.5 Primary (Filt + Cond),TON
+37101,958.9374,Benzene,LB
+37099,2.590884,Anthracene,LB
+37099,0.04799616,Mercury,LB
+37099,16.38794,Phenanthrene,LB
+37099,2.209125,PM2.5 Primary (Filt + Cond),TON
+37093,0.008467668,"Benzo[g,h,i,]Perylene",LB
+37093,0.1388196,Benzo[a]Pyrene,LB
+37093,0.8353777,PM25-Primary from certain diesel engines,TON
+37093,1.135115,Volatile Organic Compounds,TON
+37093,10.147608,Propionaldehyde,LB
+37093,18.922968,Xylenes (Mixed Isomers),LB
+37085,9.208156,Propionaldehyde,LB
+37085,311.255,Formaldehyde,LB
+37085,0.01501601,Nitrous Oxide,TON
+37085,0.04848019,PM10 Primary (Filt + Cond),TON
+37085,0.01799094,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,6.417766e-05,Chrysene,LB
+37079,3.46398,Acetaldehyde,LB
+37079,0.0002947408,Fluorene,LB
+37079,0.2574477,Nitrogen Oxides,TON
+37079,0.002098195,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.03579383,Volatile Organic Compounds,TON
+37081,274.8052,Toluene,LB
+37081,0.12442652,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,5.51149,Benz[a]Anthracene,LB
+37081,18.021546,Fluorene,LB
+37081,338.2785,Nitrogen Oxides,TON
+37081,2.614091,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.05983788,Pyrene,LB
+37081,3.062968e-05,Chromium (VI),LB
+37081,0.0337248,Acenaphthene,LB
+37081,0.02123285,Nitrous Oxide,TON
+37081,0.02385375,Sulfur Dioxide,TON
+37081,0.5870798,Volatile Organic Compounds,TON
+37079,3511.54,Ethyl Benzene,LB
+37079,9.92995,Pyrene,LB
+37079,0.6414246,Arsenic,LB
+37079,12.154722,Fluorene,LB
+37079,311.5264,Naphthalene,LB
+37079,0.4287454,Elemental Carbon portion of PM2.5-PRI,TON
+37077,1.7738902e-06,Mercury,LB
+37077,0.1153515,Naphthalene,LB
+37077,0.0002933217,Ammonia,TON
+37077,0.004109863,PM10 Primary (Filt + Cond),TON
+37077,6.370576,Toluene,LB
+37077,0.7179406,Formaldehyde,LB
+37069,42.6549,Toluene,LB
+37069,0.0744352,Benzo[b]Fluoranthene,LB
+37069,2.667588,Fluoranthene,LB
+37069,4.876072,Phenanthrene,LB
+37069,0.4145474,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.1865886,Sulfur Dioxide,TON
+37069,2.25618,Acrolein,LB
+37069,2.346112,Toluene,LB
+37069,0.0017412824,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.8042172,"2,2,4-Trimethylpentane",LB
+37069,0.08673278,Acenaphthene,LB
+37061,26.3143,Toluene,LB
+37061,23.58198,Propionaldehyde,LB
+37061,0.019960174,"Benzo[g,h,i,]Perylene",LB
+37061,10.20448,"2,2,4-Trimethylpentane",LB
+37061,9.266244e-05,Mercury,LB
+37061,2.034062,PM25-Primary from certain diesel engines,TON
+37061,0.1001319,Ammonia,TON
+37061,2.609232,PM10 Primary (Filt + Cond),TON
+37055,1.2705098e-05,Acenaphthene,LB
+37055,1.497839e-05,PM10 Primary (Filt + Cond),TON
+37055,6.556041e-06,PM2.5 Primary (Filt + Cond),TON
+37055,0.04978232,"1,3-Butadiene",LB
+37055,0.006299476,Acrolein,LB
+37055,0.0005960418,Fluoranthene,LB
+37055,0.0004165823,Methane,TON
+37055,7.450033e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.0013213052,Ethyl Benzene,LB
+37049,4.296276e-06,Pyrene,LB
+37049,1.3016842e-06,Benzo[k]Fluoranthene,LB
+37049,1.1025412e-06,Chrysene,LB
+37049,0.0008356178,Formaldehyde,LB
+37049,5.83758e-09,Mercury,LB
+37049,7.278664e-08,Nickel,LB
+37049,1.1161212e-07,Arsenic,LB
+37045,0.5142448,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,110.6451,Acrolein,LB
+37045,60.74258,Propionaldehyde,LB
+37045,8.322356,Pyrene,LB
+37045,0.15439846,Benzo[b]Fluoranthene,LB
+37045,0.02209308,Benzo[k]Fluoranthene,LB
+37045,1743.9168,Formaldehyde,LB
+37045,0.0006705042,Mercury,LB
+37045,0.14019724,Arsenic,LB
+37045,4.750325,PM10-Primary from certain diesel engines,TON
+37045,2.837587,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.01089036,Nitrate portion of PM2.5-PRI,TON
+37039,10.668256,Propionaldehyde,LB
+37039,0.5094348,Benz[a]Anthracene,LB
+37039,1.453622,Fluorene,LB
+37039,2967.031,Carbon Dioxide,TON
+37039,0.896251,PM25-Primary from certain diesel engines,TON
+37045,16.720344,Toluene,LB
+37045,4.878164e-05,Chromium (VI),LB
+37045,23.22654,Benzene,LB
+37045,1556.379,Carbon Dioxide,TON
+37045,0.8687942,PM10 Primary (Filt + Cond),TON
+37045,1.427138,Volatile Organic Compounds,TON
+37033,2.605256e-06,Mercury,LB
+37033,3.728824,Acetaldehyde,LB
+37033,0.9411184,Naphthalene,LB
+37033,0.003208059,Methane,TON
+37033,197.3118,Carbon Dioxide,TON
+37033,0.9702777,Nitrogen Oxides,TON
+37033,0.2779084,"1,3-Butadiene",LB
+37033,0.2155314,Hexane,LB
+37033,0.03031764,Anthracene,LB
+37033,0.006036896,Benzo[a]Pyrene,LB
+37033,0.04970743,Volatile Organic Compounds,TON
+37033,26.08692,"1,3-Butadiene",LB
+37033,18.92998,Hexane,LB
+37033,2.15448,Anthracene,LB
+37033,0.00352396,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,4.464126,Acenaphthylene,LB
+37033,0.1026082,Nickel,LB
+37033,334.058,Acetaldehyde,LB
+37033,0.1561295,Methane,TON
+37031,0.00945092,Ethyl Benzene,LB
+37031,0.001964734,"1,3-Butadiene",LB
+37031,1.779782e-09,Chromium (VI),LB
+37031,4.690966e-06,Benzo[k]Fluoranthene,LB
+37031,0.011400648,"2,2,4-Trimethylpentane",LB
+37031,7.653259e-06,Nitrous Oxide,TON
+37031,7.40785e-06,PM2.5 Primary (Filt + Cond),TON
+37195,0.002888428,"Benzo[g,h,i,]Perylene",LB
+37195,0.4745854,Fluoranthene,LB
+37195,27.79308,Acetaldehyde,LB
+37195,1.482303,Carbon Monoxide,TON
+37195,0.1888227,PM10-Primary from certain diesel engines,TON
+37195,0.07311781,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.0278807,Ammonia,TON
+37195,0.06930273,Organic Carbon portion of PM2.5-PRI,TON
+37195,13.93089,Ethyl Benzene,LB
+37195,13.737116,"1,3-Butadiene",LB
+37195,10.523484,Hexane,LB
+37195,22.5007,Propionaldehyde,LB
+37195,3.02983,Fluorene,LB
+37195,8201.651,Carbon Dioxide,TON
+37195,0.1138877,Ammonia,TON
+37189,0.2592588,Ethyl Benzene,LB
+37189,0.6184638,Acrolein,LB
+37189,7.79671,Formaldehyde,LB
+37189,3.398178,Acetaldehyde,LB
+37189,9.196873e-05,Nitrate portion of PM2.5-PRI,TON
+37183,0.0013491744,Chromium (VI),LB
+37183,1.0546284,Benzo[k]Fluoranthene,LB
+37183,0.013525112,Mercury,LB
+37021,56.08694,"1,3-Butadiene",LB
+37021,157.82582,Acrolein,LB
+37021,190.76152,Toluene,LB
+37021,0.08513146,"Benzo[g,h,i,]Perylene",LB
+37021,9.433554,Acenaphthylene,LB
+37021,2235.006,Formaldehyde,LB
+37021,0.05867454,"Dibenzo[a,h]Anthracene",LB
+37021,62.01274,"2,2,4-Trimethylpentane",LB
+37021,190.73512,Benzene,LB
+37021,24.04998,Phenanthrene,LB
+37021,225.5674,Naphthalene,LB
+37021,55.5583,Carbon Monoxide,TON
+37021,10.96543,Volatile Organic Compounds,TON
+37017,0.1152874,Nickel,LB
+37017,314.9182,Acetaldehyde,LB
+37017,0.1603545,Ammonia,TON
+37017,0.01985323,Sulfate Portion of PM2.5-PRI,TON
+37017,45.09234,Toluene,LB
+37017,2.018874,Anthracene,LB
+37017,0.000196577,Chromium (VI),LB
+37017,0.002190364,Benzo[k]Fluoranthene,LB
+37015,1.520087,Acrolein,LB
+37015,0.05258394,Benz[a]Anthracene,LB
+37015,0.003203104,Nickel,LB
+37015,0.4367872,Carbon Monoxide,TON
+37015,0.01993806,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.07665763,PM10 Primary (Filt + Cond),TON
+37015,0.02265738,Benzo[a]Pyrene,LB
+37015,0.38602,Fluorene,LB
+37015,0.1408856,PM10-Primary from certain diesel engines,TON
+37015,0.004624142,Sulfur Dioxide,TON
+37013,0.19938308,"Benzo[g,h,i,]Perylene",LB
+37013,0.2861796,Fluoranthene,LB
+37013,345.8906,"2,2,4-Trimethylpentane",LB
+37013,263.4316,Benzene,LB
+37013,0.396877,Fluorene,LB
+37003,0.000809437,"Benzo[g,h,i,]Perylene",LB
+37003,0.000304127,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.0009410094,Fluoranthene,LB
+37003,0.000209821,Benzo[k]Fluoranthene,LB
+37003,8.621128e-07,Nitrate portion of PM2.5-PRI,TON
+37067,0.14805546,Styrene,LB
+37067,13.962646,Toluene,LB
+37067,0.009361084,Fluoranthene,LB
+37067,0.010243514,Nickel,LB
+37067,1145.724,Carbon Dioxide,TON
+37067,0.02482488,PM2.5 Primary (Filt + Cond),TON
+37027,0.004858342,Phenanthrene,LB
+37027,0.006672128,Methane,TON
+37027,0.002306305,Nitrous Oxide,TON
+37027,1.0888966,Hexane,LB
+37027,0.0007323238,Chrysene,LB
+37133,50.5419,Benzene,LB
+37133,0.0105708,Elemental Carbon portion of PM2.5-PRI,TON
+37133,2.14209,"1,3-Butadiene",LB
+37069,1.7441928e-08,Chromium (VI),LB
+37069,0.00018115582,Fluorene,LB
+37069,0.001135627,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,2.622192,Propionaldehyde,LB
+37053,0.2532174,Acenaphthylene,LB
+37053,0.01188633,Chrysene,LB
+37053,62.24036,Formaldehyde,LB
+37053,0.002131576,Benzo[a]Pyrene,LB
+37053,0.15077344,Acenaphthene,LB
+37053,0.06189023,Methane,TON
+37053,0.009182585,PM25-Primary from certain diesel engines,TON
+37053,0.00491031,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.0461589,PM10 Primary (Filt + Cond),TON
+37053,140.27998,Acrolein,LB
+37053,10.770192,Fluoranthene,LB
+37053,2.366728,Benzo[a]Pyrene,LB
+37053,5060.118,"2,2,4-Trimethylpentane",LB
+37053,1.9283994,Benz[a]Anthracene,LB
+37053,4.421386,Methane,TON
+37053,1696.875,Carbon Monoxide,TON
+37051,2590.754,"2,2,4-Trimethylpentane",LB
+37051,0.1528192,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,25.71214,Acrolein,LB
+37051,11672.534,Toluene,LB
+37051,2.209024,Pyrene,LB
+37051,0.5289598,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,6.027776,Acenaphthylene,LB
+37047,1.9059682,Toluene,LB
+37047,0.0011349142,"Benzo[g,h,i,]Perylene",LB
+37047,0.3202504,Phenanthrene,LB
+37047,0.01266796,Methane,TON
+37047,0.872114,Carbon Monoxide,TON
+37047,750.3723,Carbon Dioxide,TON
+37047,0.005456458,Sulfate Portion of PM2.5-PRI,TON
+37041,0.002711704,"Benzo[g,h,i,]Perylene",LB
+37041,0.0017981108,"Dibenzo[a,h]Anthracene",LB
+37041,1.4539032,"2,2,4-Trimethylpentane",LB
+37041,0.14630198,Benz[a]Anthracene,LB
+37041,0.2901257,PM10-Primary from certain diesel engines,TON
+37041,0.3495541,PM10 Primary (Filt + Cond),TON
+37031,0.00427613,Anthracene,LB
+37031,0.003813834,"Benzo[g,h,i,]Perylene",LB
+37031,0.0005577696,Arsenic,LB
+37017,0.6510378,Fluorene,LB
+37017,0.0435594,Methane,TON
+37017,6.935854,Carbon Monoxide,TON
+37017,0.1282499,PM10-Primary from certain diesel engines,TON
+37017,0.002207456,Nitrous Oxide,TON
+37017,2.458096,Nitrogen Oxides,TON
+37017,0.007943694,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,3.231736e-05,Chromium (VI),LB
+37019,2.077778,Ethyl Benzene,LB
+37019,1.819345,"1,3-Butadiene",LB
+37019,4.749454,Acrolein,LB
+37019,2.213936e-05,Chromium (VI),LB
+37019,0.014579074,Benzo[b]Fluoranthene,LB
+37019,5.701,Benzene,LB
+37019,0.18350058,Acenaphthene,LB
+37015,48.70808,Formaldehyde,LB
+37015,166.62436,"2,2,4-Trimethylpentane",LB
+37015,0.03857562,Benz[a]Anthracene,LB
+37015,0.005591767,Nitrous Oxide,TON
+37015,0.1166191,Ammonia,TON
+37015,2.12086,Propionaldehyde,LB
+37015,0.03879194,Benzo[b]Fluoranthene,LB
+37015,0.0373395,Chrysene,LB
+37167,7.131264e-05,Chrysene,LB
+37167,5.831714,Acetaldehyde,LB
+37167,0.0009187906,Phenanthrene,LB
+37167,0.002090672,Ammonia,TON
+37167,0.05201636,Volatile Organic Compounds,TON
+37021,75.47598,Acetaldehyde,LB
+37021,3.5558,Carbon Monoxide,TON
+37021,2482.987,Carbon Dioxide,TON
+37021,5.910862,Ethyl Benzene,LB
+37021,0.5704798,Anthracene,LB
+37021,1.6871778,Pyrene,LB
+37021,0.8447958,Acenaphthylene,LB
+37021,0.2483742,Chrysene,LB
+37021,0.4127719,PM25-Primary from certain diesel engines,TON
+37021,7.359948,Nitrogen Oxides,TON
+37021,0.02111944,Sulfur Dioxide,TON
+37017,1.5187972,Ethyl Benzene,LB
+37017,1.3105128,"1,3-Butadiene",LB
+37017,4.123676,Carbon Monoxide,TON
+37017,0.007544664,PM10-Primary from certain diesel engines,TON
+37017,0.02285421,PM10 Primary (Filt + Cond),TON
+37017,0.2458258,Volatile Organic Compounds,TON
+37021,0.07105308,Anthracene,LB
+37021,0.09651452,"Benzo[g,h,i,]Perylene",LB
+37021,99.03828,Benzene,LB
+37021,0.04515572,Manganese,LB
+37021,0.0002680226,Mercury,LB
+37021,24.0531,Acetaldehyde,LB
+37021,0.03442037,Nitrous Oxide,TON
+37011,0.12338256,Benz[a]Anthracene,LB
+37011,0.190713,Acenaphthene,LB
+37011,6.635564,Naphthalene,LB
+37011,2.371453,Carbon Monoxide,TON
+37011,0.006182301,Ammonia,TON
+37011,3.127284,Propionaldehyde,LB
+37081,9.251856,Hexane,LB
+37081,0.010814884,Benzo[k]Fluoranthene,LB
+37081,0.03425726,Acenaphthylene,LB
+37081,12.75816,Carbon Monoxide,TON
+37051,32.18336,Xylenes (Mixed Isomers),LB
+37043,1.4034308,Hexane,LB
+37043,0.4262182,Propionaldehyde,LB
+37043,9.33512e-06,Chromium (VI),LB
+37043,0.002885258,Fluoranthene,LB
+37043,0.0014604726,Benzo[k]Fluoranthene,LB
+37043,4.675412,Benzene,LB
+37043,0.0920876,Naphthalene,LB
+37041,1.3715102,Xylenes (Mixed Isomers),LB
+37031,0.0017920926,Fluorene,LB
+37031,2.10387,Xylenes (Mixed Isomers),LB
+37031,0.01031281,Ammonia,TON
+37031,0.002170757,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.2107068,Propionaldehyde,LB
+37037,1.9751248,Xylenes (Mixed Isomers),LB
+37037,0.004052002,Acenaphthylene,LB
+37037,0.00294001,Manganese,LB
+37037,0.004854284,Sulfur Dioxide,TON
+37135,0.02233026,Manganese,LB
+37135,0.008836512,Nickel,LB
+37135,0.04381936,Phenanthrene,LB
+37135,0.06975188,Methane,TON
+37135,0.004677011,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.01053733,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.5093953,Volatile Organic Compounds,TON
+37135,17.567036,Toluene,LB
+37135,1.8272436,Propionaldehyde,LB
+37135,15.632238,Xylenes (Mixed Isomers),LB
+37135,7.068822e-05,Chromium (VI),LB
+37135,0.013744432,Fluoranthene,LB
+37135,0.0004721272,"Dibenzo[a,h]Anthracene",LB
+37135,21.32344,Benzene,LB
+37129,40.00832,Toluene,LB
+37129,15.01215,"2,2,4-Trimethylpentane",LB
+37103,0.004526592,Manganese,LB
+37103,0.228455,"1,3-Butadiene",LB
+37103,0.002099588,Benz[a]Anthracene,LB
+37103,0.01976153,Methane,TON
+37103,0.002899378,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.02863236,"Dibenzo[a,h]Anthracene",LB
+37175,39604.54,Carbon Dioxide,TON
+37175,7558.556,Xylenes (Mixed Isomers),LB
+37167,3921.172,Ethyl Benzene,LB
+37167,835.686,"1,3-Butadiene",LB
+37167,104.10382,Propionaldehyde,LB
+37167,14560.024,Xylenes (Mixed Isomers),LB
+37167,1572.0264,Formaldehyde,LB
+37167,1.7915374,Benz[a]Anthracene,LB
+37167,5667.684,Benzene,LB
+37167,0.8450604,Nickel,LB
+37167,135.1869,Nitrogen Oxides,TON
+37155,0.08064072,Benzo[b]Fluoranthene,LB
+37155,48.0335,Formaldehyde,LB
+37155,115.5705,"2,2,4-Trimethylpentane",LB
+37155,0.14611094,Acenaphthene,LB
+37155,0.1269256,Ammonia,TON
+37155,0.04433518,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,13.308764,Acrolein,LB
+37149,9.666996,Xylenes (Mixed Isomers),LB
+37149,72.46656,Acetaldehyde,LB
+37149,0.8186924,PM25-Primary from certain diesel engines,TON
+37149,0.001902109,Nitrate portion of PM2.5-PRI,TON
+37149,0.03295104,Benzo[b]Fluoranthene,LB
+37149,1.2514076,Fluoranthene,LB
+37149,0.110513,Benzo[a]Pyrene,LB
+37149,3.957452,"2,2,4-Trimethylpentane",LB
+37153,4455.791,Carbon Dioxide,TON
+37153,0.4682179,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.00149123,Nitrate portion of PM2.5-PRI,TON
+37153,15.66584,Nitrogen Oxides,TON
+37153,0.8830069,PM10 Primary (Filt + Cond),TON
+37143,3.067704e-06,Chromium (VI),LB
+37143,0.0004178712,"Benzo[g,h,i,]Perylene",LB
+37143,0.0002860342,Benzo[k]Fluoranthene,LB
+37143,0.9896244,Naphthalene,LB
+37143,0.0003105174,Nitrous Oxide,TON
+37143,0.009957928,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.03443882,PM10 Primary (Filt + Cond),TON
+37137,2.164416,"1,3-Butadiene",LB
+37137,0.4753672,Fluoranthene,LB
+37137,0.832746,Phenanthrene,LB
+37137,2.497483,Carbon Monoxide,TON
+37137,0.3120741,PM2.5 Primary (Filt + Cond),TON
+37131,0.001209209,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.001445336,Sulfur Dioxide,TON
+37131,0.0979616,Volatile Organic Compounds,TON
+37131,0.08268776,Pyrene,LB
+37131,1.5379424,Xylenes (Mixed Isomers),LB
+37131,0.06799604,Fluoranthene,LB
+37131,0.0010784942,Benzo[a]Pyrene,LB
+37131,0.4937244,"2,2,4-Trimethylpentane",LB
+37131,0.09081836,Fluorene,LB
+37119,12.039812,Styrene,LB
+37119,28.46368,"1,3-Butadiene",LB
+37119,81.85602,Acrolein,LB
+37119,4.364452,Pyrene,LB
+37119,0.010405334,"Benzo[g,h,i,]Perylene",LB
+37119,0.00371025,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.2382056,Chrysene,LB
+37119,33.04034,"2,2,4-Trimethylpentane",LB
+37119,0.0006567946,Mercury,LB
+37119,2.843864,Acenaphthene,LB
+37119,0.2240155,PM10-Primary from certain diesel engines,TON
+37119,0.2290168,Ammonia,TON
+37119,0.002665986,Acrolein,LB
+37119,0.11931172,Hexane,LB
+37119,9.901578e-05,Benzo[b]Fluoranthene,LB
+37107,0.0248332,Acenaphthene,LB
+37107,58.20411,Carbon Dioxide,TON
+37107,0.2838613,Nitrogen Oxides,TON
+37107,0.2446692,"1,3-Butadiene",LB
+37107,0.0016295168,Benzo[b]Fluoranthene,LB
+37107,0.04174902,Acenaphthylene,LB
+37107,0.18641128,"2,2,4-Trimethylpentane",LB
+37103,8.655044e-05,"Dibenzo[a,h]Anthracene",LB
+37103,0.2790502,Benzene,LB
+37103,0.009797538,Acenaphthene,LB
+37103,0.1446965,Nitrogen Oxides,TON
+37103,0.001232661,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.00199772,Nitrous Oxide,TON
+37099,6.493567,Nitrogen Oxides,TON
+37099,0.04692798,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.02366256,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,1182.5852,Ethyl Benzene,LB
+37097,17.443644,Propionaldehyde,LB
+37097,1.2199012,"Benzo[g,h,i,]Perylene",LB
+37097,4.912282,Acenaphthylene,LB
+37097,6819.437,Carbon Dioxide,TON
+37095,20.39686,Acetaldehyde,LB
+37095,0.2653994,Fluorene,LB
+37095,1.645179,Carbon Monoxide,TON
+37095,0.02093139,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.2438954,Volatile Organic Compounds,TON
+37095,0.2026616,Manganese,LB
+37095,3.50089,Fluorene,LB
+37095,17099.84,Carbon Dioxide,TON
+37095,0.01378094,Sulfate Portion of PM2.5-PRI,TON
+37085,28.58142,Toluene,LB
+37085,17.820422,Xylenes (Mixed Isomers),LB
+37085,0.035315,Acenaphthylene,LB
+37085,0.001194187,Arsenic,LB
+37085,2.418318,Acetaldehyde,LB
+37085,0.009840017,Ammonia,TON
+37085,0.006771836,PM2.5 Primary (Filt + Cond),TON
+37085,0.004637233,Sulfur Dioxide,TON
+37083,10.158656,"1,3-Butadiene",LB
+37083,4.849556,Acrolein,LB
+37083,0.3756034,Fluoranthene,LB
+37083,0.11649908,Benzo[a]Pyrene,LB
+37083,1.3890896,Phenanthrene,LB
+37083,0.5169234,Fluorene,LB
+37083,0.02876722,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,22250.92,Toluene,LB
+37081,132.59122,Propionaldehyde,LB
+37081,14722.338,Xylenes (Mixed Isomers),LB
+37081,3.164366,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,4750.412,"2,2,4-Trimethylpentane",LB
+37081,1838.961,Carbon Monoxide,TON
+37081,9.160465,Ammonia,TON
+37081,115.525,Volatile Organic Compounds,TON
+37077,7.108849,Volatile Organic Compounds,TON
+37077,57.04002,Ethyl Benzene,LB
+37077,0.11060986,Arsenic,LB
+37077,49.90268,"1,3-Butadiene",LB
+37077,117.81706,Acrolein,LB
+37077,81.05502,Propionaldehyde,LB
+37077,8.536972,Acenaphthylene,LB
+37077,0.05858656,Arsenic,LB
+37077,13.099968,Phenanthrene,LB
+37077,1.34289,PM10-Primary from certain diesel engines,TON
+37077,0.9791118,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.002598282,Acenaphthene,LB
+37071,0.04860639,Nitrogen Oxides,TON
+37071,5.86875,Xylenes (Mixed Isomers),LB
+37071,0.0010597612,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.862043,Formaldehyde,LB
+37071,5801.081,Carbon Dioxide,TON
+37071,0.0661803,Nitrous Oxide,TON
+37071,0.001132391,Nitrate portion of PM2.5-PRI,TON
+37071,0.1074745,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,1165.2726,Ethyl Benzene,LB
+37071,2044.98,Hexane,LB
+37071,0.888979,Anthracene,LB
+37071,17.033676,Propionaldehyde,LB
+37071,1.0303248,"Benzo[g,h,i,]Perylene",LB
+37071,0.3871126,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,53.99234,Naphthalene,LB
+37069,1.308414,Propionaldehyde,LB
+37069,0.01926649,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.302065,Acenaphthylene,LB
+37069,0.016797648,Manganese,LB
+37067,0.4260784,Benzo[b]Fluoranthene,LB
+37067,2.747192,Chrysene,LB
+37067,2287.964,Formaldehyde,LB
+37067,0.1687515,Arsenic,LB
+37067,49.4791,Carbon Monoxide,TON
+37067,34715.08,Carbon Dioxide,TON
+37067,98.36881,Nitrogen Oxides,TON
+37067,5.428227,PM2.5 Primary (Filt + Cond),TON
+37067,0.2953525,Sulfur Dioxide,TON
+37067,0.2996789,Sulfate Portion of PM2.5-PRI,TON
+37065,11.86092,Benzene,LB
+37061,0.8148105,Volatile Organic Compounds,TON
+37061,7.813778,Toluene,LB
+37061,2.959822e-05,Chromium (VI),LB
+37043,2.38279e-05,"Benzo[g,h,i,]Perylene",LB
+37043,2.055624e-07,"Dibenzo[a,h]Anthracene",LB
+37043,0.008891782,Carbon Monoxide,TON
+37043,2.900957e-06,Ammonia,TON
+37081,102.65078,Toluene,LB
+37081,38.51836,"2,2,4-Trimethylpentane",LB
+37065,1.5705684,Hexane,LB
+37065,0.0017044986,Benzo[b]Fluoranthene,LB
+37065,0.005688092,Acenaphthylene,LB
+37065,7.575708e-05,"Dibenzo[a,h]Anthracene",LB
+37065,3.963456,Benzene,LB
+37065,0.01073593,Methane,TON
+37065,0.02460847,PM10 Primary (Filt + Cond),TON
+37111,0.005122544,Phenanthrene,LB
+37111,0.008285181,Methane,TON
+37111,0.09583982,Acrolein,LB
+37111,2.272638,Toluene,LB
+37111,0.001410185,Organic Carbon portion of PM2.5-PRI,TON
+37177,615.6912,Xylenes (Mixed Isomers),LB
+37177,4.792899,Volatile Organic Compounds,TON
+37169,0.16020844,Anthracene,LB
+37169,0.1904504,"Benzo[g,h,i,]Perylene",LB
+37169,0.05310322,Benzo[b]Fluoranthene,LB
+37169,0.2735912,Fluoranthene,LB
+37169,478.7936,"2,2,4-Trimethylpentane",LB
+37169,0.18731282,Acenaphthene,LB
+37169,0.0002064957,Nitrate portion of PM2.5-PRI,TON
+37163,19.465398,"1,3-Butadiene",LB
+37163,32.61112,Propionaldehyde,LB
+37163,53.53698,Xylenes (Mixed Isomers),LB
+37163,0.000302936,Mercury,LB
+37163,282.8008,Acetaldehyde,LB
+37163,1.9645974,Acenaphthene,LB
+37163,2.794716,PM25-Primary from certain diesel engines,TON
+37163,0.338023,Ammonia,TON
+37163,0.5606965,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.475035,Styrene,LB
+37149,2.469232,Toluene,LB
+37149,0.05307474,Chrysene,LB
+37149,0.002674014,Arsenic,LB
+37149,14.95926,Acetaldehyde,LB
+37149,0.2460128,Fluorene,LB
+37149,0.0004800542,Nitrate portion of PM2.5-PRI,TON
+37149,0.01685831,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,29.75184,Acetaldehyde,LB
+37149,0.8084842,Phenanthrene,LB
+37149,0.02404547,Methane,TON
+37149,0.1837813,PM25-Primary from certain diesel engines,TON
+37149,0.009670609,Ammonia,TON
+37149,0.1876364,PM2.5 Primary (Filt + Cond),TON
+37149,1.7148086,Hexane,LB
+37149,4.471,Xylenes (Mixed Isomers),LB
+37149,0.002814968,"Benzo[g,h,i,]Perylene",LB
+37149,68.21814,Formaldehyde,LB
+37149,6.454922,Benzene,LB
+37145,0.1995304,PM2.5 Primary (Filt + Cond),TON
+37145,4.758506,Propionaldehyde,LB
+37145,0.8813622,Pyrene,LB
+37145,1.5452468e-05,Chromium (VI),LB
+37145,39.78866,Acetaldehyde,LB
+37145,1.0848136,Phenanthrene,LB
+37145,3.060232,Ethyl Benzene,LB
+37145,2.328294,Hexane,LB
+37199,20858.78,Carbon Dioxide,TON
+37199,0.7099768,Nitrous Oxide,TON
+37199,1.506906,Anthracene,LB
+37199,0.00153007,Chromium (VI),LB
+37199,0.017987428,"Dibenzo[a,h]Anthracene",LB
+37199,0.5453826,Benz[a]Anthracene,LB
+37187,2.844072,Naphthalene,LB
+37187,0.003527635,Methane,TON
+37187,0.05952249,PM2.5 Primary (Filt + Cond),TON
+37181,1.2356146e-06,Chromium (VI),LB
+37181,0.00014812988,Benzo[k]Fluoranthene,LB
+37181,0.5674918,Naphthalene,LB
+37181,0.001950425,Methane,TON
+37181,0.1027299,Carbon Monoxide,TON
+37181,0.01281884,PM25-Primary from certain diesel engines,TON
+37181,0.0003806146,Sulfate Portion of PM2.5-PRI,TON
+37181,1.2618168,Acrolein,LB
+37181,245.641,Toluene,LB
+37181,0.3631278,Phenanthrene,LB
+37179,123.8495,Volatile Organic Compounds,TON
+37179,35510.64,Toluene,LB
+37169,27.25156,Formaldehyde,LB
+37169,2.84558e-05,Benz[a]Anthracene,LB
+37169,3.200202,Acetaldehyde,LB
+37169,55.26741,Carbon Dioxide,TON
+37169,8.960518e-07,Nitrate portion of PM2.5-PRI,TON
+37169,0.001066556,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.0003939456,"Benzo[g,h,i,]Perylene",LB
+37169,0.0004832856,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.0682034,Fluoranthene,LB
+37169,0.0017019316,Nickel,LB
+37169,4.281502,Acetaldehyde,LB
+37169,0.0298433,Acenaphthene,LB
+37169,9713.522,"2,2,4-Trimethylpentane",LB
+37169,1.627472,Manganese,LB
+37169,10073.096,Hexane,LB
+37169,270.7806,Propionaldehyde,LB
+37169,3.964164,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.827801,Propionaldehyde,LB
+37165,2.192912e-08,Chromium (VI),LB
+37165,0.0002523748,Fluorene,LB
+37165,0.387601,Carbon Monoxide,TON
+37165,1.203375e-06,Nitrate portion of PM2.5-PRI,TON
+37165,4874.834,Hexane,LB
+37165,13.43767,Fluorene,LB
+37165,6.796354,Ammonia,TON
+37165,7.504349,PM10 Primary (Filt + Cond),TON
+37165,0.8821892,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.6179876,Nickel,LB
+37155,0.8099022,Acenaphthene,LB
+37155,1.4042954,Fluorene,LB
+37155,0.1081941,Methane,TON
+37155,0.3934835,PM10 Primary (Filt + Cond),TON
+37155,0.02067478,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.0185522,Sulfur Dioxide,TON
+37155,17.474806,Toluene,LB
+37155,0.008175444,Benzo[b]Fluoranthene,LB
+37161,2450.814,"1,3-Butadiene",LB
+37161,39450.46,Xylenes (Mixed Isomers),LB
+37161,25.68096,Fluoranthene,LB
+37161,4.630806,Benz[a]Anthracene,LB
+37161,17153.096,Benzene,LB
+37161,2.975234,Manganese,LB
+37161,0.09058694,Mercury,LB
+37161,1.1295006,Nickel,LB
+37161,1.7318836,Arsenic,LB
+37161,5930.134,Acetaldehyde,LB
+37161,0.1702807,Sulfate Portion of PM2.5-PRI,TON
+37161,305.3049,Volatile Organic Compounds,TON
+37143,0.02288408,"2,2,4-Trimethylpentane",LB
+37143,0.02887898,Benzene,LB
+37143,7.455474e-06,Benzo[k]Fluoranthene,LB
+37141,1.4839716,Benz[a]Anthracene,LB
+37141,6.12075,Pyrene,LB
+37141,0.0002098936,Chromium (VI),LB
+37141,0.13542756,Benzo[b]Fluoranthene,LB
+37141,0.6844306,Elemental Carbon portion of PM2.5-PRI,TON
+37141,29.34688,Nitrogen Oxides,TON
+37139,0.013221682,Benzo[k]Fluoranthene,LB
+37139,0.018099096,Benzo[a]Pyrene,LB
+37139,0.000414654,"Dibenzo[a,h]Anthracene",LB
+37139,48.89682,Benzene,LB
+37139,0.04547444,Acenaphthene,LB
+37139,0.02393955,PM2.5 Primary (Filt + Cond),TON
+37139,0.0006325647,Sulfate Portion of PM2.5-PRI,TON
+37139,0.8676623,Volatile Organic Compounds,TON
+37137,0.014470948,Acenaphthylene,LB
+37137,0.08526376,"1,3-Butadiene",LB
+37137,0.2175954,Toluene,LB
+37137,0.009381766,Anthracene,LB
+37137,0.0014484098,Manganese,LB
+37137,0.01324795,PM10-Primary from certain diesel engines,TON
+37137,0.01878889,PM10 Primary (Filt + Cond),TON
+37137,0.0006706124,Sulfur Dioxide,TON
+37133,6.30277,Benzo[b]Fluoranthene,LB
+37133,17693.802,"2,2,4-Trimethylpentane",LB
+37133,26.68373,Ammonia,TON
+37133,470.3554,Propionaldehyde,LB
+37133,21.80468,"Benzo[g,h,i,]Perylene",LB
+37129,0.6321992,Propionaldehyde,LB
+37129,0.010550584,Benzo[b]Fluoranthene,LB
+37129,0.000295239,"Dibenzo[a,h]Anthracene",LB
+37129,0.04365564,Acenaphthene,LB
+37129,0.08842622,Fluorene,LB
+37129,2.266192,Naphthalene,LB
+37129,0.1494948,PM10 Primary (Filt + Cond),TON
+37129,0.6160438,Volatile Organic Compounds,TON
+37127,3.158108,Anthracene,LB
+37127,0.04159096,"Benzo[g,h,i,]Perylene",LB
+37127,2.23592,Benz[a]Anthracene,LB
+37127,0.13354082,Nickel,LB
+37127,2.846724,Acenaphthene,LB
+37125,0.02686526,"Benzo[g,h,i,]Perylene",LB
+37125,0.013190736,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.0003826712,Mercury,LB
+37125,0.08001534,Arsenic,LB
+37125,860.4774,Acetaldehyde,LB
+37125,217.3688,Naphthalene,LB
+37125,1.599532,PM10-Primary from certain diesel engines,TON
+37007,139.53584,Ethyl Benzene,LB
+37007,5.017772,"1,3-Butadiene",LB
+37007,0.2215812,Pyrene,LB
+37007,0.007532775,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.109151,Ammonia,TON
+37077,0.015212712,Fluorene,LB
+37077,980.3132,Carbon Dioxide,TON
+37077,0.01426103,Nitrous Oxide,TON
+37077,0.2172436,Styrene,LB
+37053,0.0223548,"Benzo[g,h,i,]Perylene",LB
+37053,0.003453388,Chrysene,LB
+37053,0.008294016,Benzo[a]Pyrene,LB
+37053,0.003892754,Benz[a]Anthracene,LB
+37053,12.269504,Benzene,LB
+37053,0.000350951,Mercury,LB
+37053,5.705795,Carbon Monoxide,TON
+37053,0.03231778,Ammonia,TON
+37029,0.11031152,Ethyl Benzene,LB
+37029,0.00019435208,Benzo[k]Fluoranthene,LB
+37029,0.2256386,"2,2,4-Trimethylpentane",LB
+37029,2.195468e-05,Mercury,LB
+37029,0.0003713926,Fluorene,LB
+37029,29.3803,Carbon Dioxide,TON
+37029,0.0004065866,Nitrous Oxide,TON
+37029,1.324393e-06,Nitrate portion of PM2.5-PRI,TON
+37029,0.000188196,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.08819115,Volatile Organic Compounds,TON
+37141,2.95733,Toluene,LB
+37141,0.0018940064,Fluoranthene,LB
+37141,0.0010812642,Acenaphthene,LB
+37141,0.001427296,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.00660817,Arsenic,LB
+37093,0.002432498,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.004998675,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.005323278,Anthracene,LB
+37093,0.02345468,"Benzo[g,h,i,]Perylene",LB
+37093,0.008711574,Benzo[a]Pyrene,LB
+37093,16.45565,Benzene,LB
+37091,0.00017055956,Anthracene,LB
+37091,0.0003560766,Pyrene,LB
+37091,0.0003144032,Fluoranthene,LB
+37091,0.0003020766,Arsenic,LB
+37091,0.000373974,Fluorene,LB
+37091,0.01249148,Volatile Organic Compounds,TON
+37085,9419.542,Hexane,LB
+37077,20.12642,Acetaldehyde,LB
+37077,5.056362,Naphthalene,LB
+37077,0.02687143,Methane,TON
+37077,686.9674,Carbon Dioxide,TON
+37077,1.41205,"1,3-Butadiene",LB
+37077,3.507496,Toluene,LB
+37077,1.1914956,Hexane,LB
+37077,2.35395,Propionaldehyde,LB
+37077,1.7258492e-05,Chromium (VI),LB
+37077,0.002798282,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.03684852,Benzo[a]Pyrene,LB
+37077,0.015658842,Manganese,LB
+37077,0.007027076,Arsenic,LB
+37077,1409.425,Carbon Dioxide,TON
+37077,0.04324756,Nitrous Oxide,TON
+37077,0.000184361,Nitrate portion of PM2.5-PRI,TON
+37077,0.001944575,Sulfate Portion of PM2.5-PRI,TON
+37077,1.2147,Volatile Organic Compounds,TON
+37077,0.0614345,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.000285159,Chromium (VI),LB
+37059,0.0913547,Benzo[b]Fluoranthene,LB
+37059,2.214635,Methane,TON
+37059,0.02919124,Nitrous Oxide,TON
+37059,0.323159,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,1424.501,Formaldehyde,LB
+37059,44.28708,"2,2,4-Trimethylpentane",LB
+37059,0.0003766118,Mercury,LB
+37059,0.10365648,Nickel,LB
+37059,0.8230376,Fluoranthene,LB
+37057,0.0017777646,Pyrene,LB
+37057,0.000315322,Chrysene,LB
+37057,0.0003265472,Benz[a]Anthracene,LB
+37057,0.002148984,Fluorene,LB
+37057,0.0004210326,Nitrous Oxide,TON
+37057,0.0005815541,PM10 Primary (Filt + Cond),TON
+37055,0.6078964,Acrolein,LB
+37055,0.19012372,Hexane,LB
+37055,0.07860148,Pyrene,LB
+37055,0.0002286056,"Dibenzo[a,h]Anthracene",LB
+37055,0.018670548,Benz[a]Anthracene,LB
+37055,0.0181366,PM10-Primary from certain diesel engines,TON
+37051,1.2791592,Acenaphthylene,LB
+37051,0.03432572,Arsenic,LB
+37051,0.567966,Fluorene,LB
+37051,0.2304382,PM2.5 Primary (Filt + Cond),TON
+37043,8.04324,Xylenes (Mixed Isomers),LB
+37043,0.846468,Formaldehyde,LB
+37043,0.0009480362,Benzo[a]Pyrene,LB
+37043,2.886682,Benzene,LB
+37043,0.002703494,Acenaphthene,LB
+37043,2.143842,Ethyl Benzene,LB
+37043,0.369362,"1,3-Butadiene",LB
+37039,0.0401043,Benzo[b]Fluoranthene,LB
+37039,0.4580822,Benz[a]Anthracene,LB
+37039,0.0825966,Manganese,LB
+37039,0.4084596,Fluoranthene,LB
+37039,0.3916328,Acenaphthylene,LB
+37039,2.522594,Carbon Monoxide,TON
+37039,2.166506,Ethyl Benzene,LB
+37039,0.1505254,PM2.5 Primary (Filt + Cond),TON
+37039,0.005142172,Sulfur Dioxide,TON
+37025,2.06456e-08,Chromium (VI),LB
+37025,1.5353708e-05,Benzo[k]Fluoranthene,LB
+37025,1.48393e-05,Benz[a]Anthracene,LB
+37025,2.069724e-07,Mercury,LB
+37025,0.01345297,Carbon Monoxide,TON
+37025,1.335674e-05,Organic Carbon portion of PM2.5-PRI,TON
+37171,2.304536e-06,Nickel,LB
+37171,0.0005300478,Arsenic,LB
+37171,151.1368,Carbon Dioxide,TON
+37171,0.0324086,Nitrous Oxide,TON
+37171,0.00502885,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,517.4364,Ethyl Benzene,LB
+37167,0.740629,Anthracene,LB
+37167,1.4393516,Pyrene,LB
+37167,0.226476,Chrysene,LB
+37167,182.9603,Carbon Monoxide,TON
+37161,1.300052e-07,Sulfur Dioxide,TON
+37161,7.580426e-07,Fluoranthene,LB
+37161,1.0059362e-08,"Dibenzo[a,h]Anthracene",LB
+37161,7.610942e-08,Manganese,LB
+37161,9.988186e-07,Fluorene,LB
+37141,0.06182652,"Dibenzo[a,h]Anthracene",LB
+37141,0.08434544,Mercury,LB
+37141,1.0516914,Nickel,LB
+37141,1850.6174,Acetaldehyde,LB
+37141,2.425245,Sulfur Dioxide,TON
+37141,107.6674,Volatile Organic Compounds,TON
+37141,0.008413564,Chromium (VI),LB
+37129,4.439609,Volatile Organic Compounds,TON
+37127,18.267544,"1,3-Butadiene",LB
+37127,36.40752,Xylenes (Mixed Isomers),LB
+37127,0.09223508,Nickel,LB
+37127,0.08772282,Sulfur Dioxide,TON
+37127,3.255244,Volatile Organic Compounds,TON
+37121,0.0009794324,Arsenic,LB
+37121,0.0004495084,Nitrate portion of PM2.5-PRI,TON
+37111,0.8147446,Xylenes (Mixed Isomers),LB
+37111,0.0002234052,Chrysene,LB
+37113,0.005463182,Acenaphthene,LB
+37113,0.13027096,Acrolein,LB
+37113,0.004664404,Anthracene,LB
+37113,0.009072732,Pyrene,LB
+37113,10.244968,Xylenes (Mixed Isomers),LB
+37113,0.195374,Nitrogen Oxides,TON
+37113,0.002934502,PM2.5 Primary (Filt + Cond),TON
+37101,5.026528e-05,Chromium (VI),LB
+37101,0.18254322,Chrysene,LB
+37101,3.013219,Carbon Monoxide,TON
+37101,0.1379765,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.01878877,Sulfur Dioxide,TON
+37101,0.7162745,Volatile Organic Compounds,TON
+37101,39.75452,Hexane,LB
+37101,4.740752,Anthracene,LB
+37101,0.0005467466,Chromium (VI),LB
+37101,10.22324,Fluoranthene,LB
+37101,1.891091,Chrysene,LB
+37101,42.61764,"2,2,4-Trimethylpentane",LB
+37101,0.5413776,Manganese,LB
+37101,9.617336,Fluorene,LB
+37101,0.2169554,Sulfate Portion of PM2.5-PRI,TON
+37101,0.6108051,PM10-Primary from certain diesel engines,TON
+37101,0.5619394,PM25-Primary from certain diesel engines,TON
+37101,0.4243357,Elemental Carbon portion of PM2.5-PRI,TON
+37101,12.48795,Nitrogen Oxides,TON
+37101,0.5877612,PM2.5 Primary (Filt + Cond),TON
+37101,7.124192,Styrene,LB
+37101,0.08289736,Manganese,LB
+37101,235.7668,Acetaldehyde,LB
+37101,5667.032,Carbon Dioxide,TON
+37101,0.1544742,Nitrous Oxide,TON
+37101,0.2201766,Ammonia,TON
+37101,0.1966592,PM2.5 Primary (Filt + Cond),TON
+37099,0.4283948,Styrene,LB
+37099,0.9825432,"1,3-Butadiene",LB
+37099,14.192618,Acetaldehyde,LB
+37099,0.723421,Carbon Monoxide,TON
+37099,0.08269036,PM25-Primary from certain diesel engines,TON
+37099,0.004010758,Sulfate Portion of PM2.5-PRI,TON
+37015,0.0001938544,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.0001768586,Benz[a]Anthracene,LB
+37015,0.480569,Benzene,LB
+37015,0.001596606,Ammonia,TON
+37015,0.000255433,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.001870843,PM10 Primary (Filt + Cond),TON
+37015,0.1532836,Hexane,LB
+37015,0.0010480032,"Benzo[g,h,i,]Perylene",LB
+37015,0.0003937448,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.0012688094,Benzo[a]Pyrene,LB
+37163,0.0010660074,Arsenic,LB
+37163,0.07111772,Nitrogen Oxides,TON
+37163,0.006053098,PM10 Primary (Filt + Cond),TON
+37163,0.01653661,Styrene,LB
+37163,0.003421784,"Benzo[g,h,i,]Perylene",LB
+37163,0.009562714,"Benzo[g,h,i,]Perylene",LB
+37163,0.0014476382,Chrysene,LB
+37163,8.246938e-05,"Dibenzo[a,h]Anthracene",LB
+37163,0.01771786,Ammonia,TON
+37163,0.008522458,Sulfur Dioxide,TON
+37149,0.009005402,Acrolein,LB
+37149,0.18441558,Xylenes (Mixed Isomers),LB
+37149,0.00010202948,Chrysene,LB
+37149,0.1833306,Formaldehyde,LB
+37149,0.9913514,Acetaldehyde,LB
+37149,0.00018414202,Fluorene,LB
+37149,0.0001626352,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.005901056,Volatile Organic Compounds,TON
+37105,0.17902718,Styrene,LB
+37105,0.014441524,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.005729854,Chrysene,LB
+37105,0.006189266,Acenaphthene,LB
+37105,0.01426785,Nitrous Oxide,TON
+37105,5.218286e-05,Nitrate portion of PM2.5-PRI,TON
+37105,0.009242732,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.02148594,PM2.5 Primary (Filt + Cond),TON
+37017,0.002538027,Sulfur Dioxide,TON
+37017,0.3651488,Styrene,LB
+37017,0.6797286,Hexane,LB
+37017,0.2872746,Pyrene,LB
+37017,0.0013349952,"Benzo[g,h,i,]Perylene",LB
+37017,0.2159506,Fluoranthene,LB
+37017,2.494806,Benzene,LB
+37017,0.01338875,Methane,TON
+37017,296.0493,Carbon Dioxide,TON
+37017,1.083932,Nitrogen Oxides,TON
+37017,0.104984,PM10 Primary (Filt + Cond),TON
+37007,1.4714978,"1,3-Butadiene",LB
+37007,2.271614,Xylenes (Mixed Isomers),LB
+37007,8.782794e-06,Chromium (VI),LB
+37007,41.37684,Formaldehyde,LB
+37007,0.2849462,Fluorene,LB
+37007,0.05975288,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.0008430393,Nitrous Oxide,TON
+37017,7.888708e-08,Chromium (VI),LB
+37017,9.860544e-06,Nickel,LB
+37017,7.670822e-05,Organic Carbon portion of PM2.5-PRI,TON
+37003,22.9814,Naphthalene,LB
+37003,8.967286,Nitrogen Oxides,TON
+37003,0.1220702,PM2.5 Primary (Filt + Cond),TON
+37003,2.01401,Acenaphthylene,LB
+37003,0.10657142,Benzo[a]Pyrene,LB
+37059,1.5455544,Propionaldehyde,LB
+37059,0.01156775,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.010743876,Fluoranthene,LB
+37047,20.7993,Xylenes (Mixed Isomers),LB
+37047,0.008252418,Chrysene,LB
+37047,22.81252,Formaldehyde,LB
+37047,0.014703052,Arsenic,LB
+37047,0.02094098,Fluorene,LB
+37047,0.07671317,Ammonia,TON
+37047,0.08042128,PM10 Primary (Filt + Cond),TON
+37029,1.3438124,Xylenes (Mixed Isomers),LB
+37125,0.003533801,Nitrous Oxide,TON
+37125,0.00624167,Sulfur Dioxide,TON
+37125,1.9582,Formaldehyde,LB
+37125,0.0011931894,Benz[a]Anthracene,LB
+37125,0.002741358,Arsenic,LB
+37125,0.7810692,Ethyl Benzene,LB
+37125,3.581234,Toluene,LB
+37125,0.006926392,"Benzo[g,h,i,]Perylene",LB
+37125,0.002602274,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.001374317,Benzo[b]Fluoranthene,LB
+37199,163.12156,Styrene,LB
+37199,977.3902,"1,3-Butadiene",LB
+37199,139.91946,Propionaldehyde,LB
+37199,0.6175594,Manganese,LB
+37199,0.531888,Arsenic,LB
+37199,1205.56,Carbon Monoxide,TON
+37199,0.5165375,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,5.990936,Acenaphthene,LB
+37197,10.118902,Fluorene,LB
+37197,37.259,Nitrogen Oxides,TON
+37197,47.74546,"2,2,4-Trimethylpentane",LB
+37195,3.87058e-05,Chromium (VI),LB
+37195,0.00019509798,"Dibenzo[a,h]Anthracene",LB
+37195,0.008544702,Arsenic,LB
+37195,1.0215186,Styrene,LB
+37195,6.43121,Acrolein,LB
+37195,0.05746113,PM10 Primary (Filt + Cond),TON
+37193,0.002813312,"Dibenzo[a,h]Anthracene",LB
+37193,373.34,Ethyl Benzene,LB
+37193,2758.69,Toluene,LB
+37193,0.3064914,Acenaphthene,LB
+37193,11.61512,Volatile Organic Compounds,TON
+37187,0.2717766,Propionaldehyde,LB
+37187,4.28095,Formaldehyde,LB
+37187,0.71287,Naphthalene,LB
+37187,0.01220377,Methane,TON
+37187,0.001617386,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.01789777,PM10 Primary (Filt + Cond),TON
+37187,0.008096606,PM2.5 Primary (Filt + Cond),TON
+37181,7.301874e-05,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.0009209198,Phenanthrene,LB
+37189,42.02284,Naphthalene,LB
+37189,14.43155,Nitrogen Oxides,TON
+37189,4.886556,Styrene,LB
+37189,31.43346,Toluene,LB
+37189,9.296122e-05,Chromium (VI),LB
+37189,0.2473126,Benzo[a]Pyrene,LB
+37185,1.6993734,Propionaldehyde,LB
+37185,0.00844207,Arsenic,LB
+37185,29.09081,Carbon Monoxide,TON
+37185,0.04565971,PM2.5 Primary (Filt + Cond),TON
+37179,32.42592,"Benzo[g,h,i,]Perylene",LB
+37179,12.182874,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,9.667614,Benzo[b]Fluoranthene,LB
+37179,9.820852,Chrysene,LB
+37179,0.2812016,Mercury,LB
+37179,13068.838,Acetaldehyde,LB
+37179,21.74424,Methane,TON
+37179,980.8163,Nitrogen Oxides,TON
+37179,7.230493,Organic Carbon portion of PM2.5-PRI,TON
+37179,16.77501,PM2.5 Primary (Filt + Cond),TON
+37179,11.32171,Sulfur Dioxide,TON
+37179,0.4405636,Sulfate Portion of PM2.5-PRI,TON
+37179,668.2924,Volatile Organic Compounds,TON
+37179,729.2376,Acrolein,LB
+37193,10.27684,Benzene,LB
+37193,0.003450668,Arsenic,LB
+37193,0.3688658,Acenaphthene,LB
+37193,1.1347926,Phenanthrene,LB
+37193,0.345735,Anthracene,LB
+37193,5.909386,Propionaldehyde,LB
+37193,0.8328264,Pyrene,LB
+37193,0.2469595,PM10-Primary from certain diesel engines,TON
+37183,0.8251728,Acenaphthylene,LB
+37183,49.54486,Acetaldehyde,LB
+37183,0.0158802,Elemental Carbon portion of PM2.5-PRI,TON
+37183,5.738582,Nitrogen Oxides,TON
+37183,0.06308815,Sulfur Dioxide,TON
+37085,0.02873535,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,97.0217,Formaldehyde,LB
+37085,0.03573782,Benzo[a]Pyrene,LB
+37085,9.184672,Benzene,LB
+37085,0.012688356,Nickel,LB
+37085,0.7264914,Pyrene,LB
+37085,2.286682e-05,Chromium (VI),LB
+37085,178.00212,Acrolein,LB
+37085,6.170508,Anthracene,LB
+37085,144.4523,Xylenes (Mixed Isomers),LB
+37085,0.09811268,Arsenic,LB
+37085,1.948654,PM10-Primary from certain diesel engines,TON
+37085,1.303342,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.04338531,Nitrous Oxide,TON
+37085,9.981412,Fluoranthene,LB
+37085,12.57606,Acenaphthylene,LB
+37085,0.2916524,Nickel,LB
+37067,0.00485744,"Dibenzo[a,h]Anthracene",LB
+37067,0.0353831,Benzo[b]Fluoranthene,LB
+37067,0.004873312,Benzo[k]Fluoranthene,LB
+37067,0.8034922,Acenaphthylene,LB
+37067,7.531749,Nitrogen Oxides,TON
+37067,5.590104,Ethyl Benzene,LB
+37067,71.4407,Acetaldehyde,LB
+37067,1.0786082,Fluorene,LB
+37067,0.1242347,Methane,TON
+37067,0.4549613,PM10-Primary from certain diesel engines,TON
+37067,0.1685093,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.0009057052,Acenaphthylene,LB
+37063,0.0001354269,Sulfate Portion of PM2.5-PRI,TON
+37063,2.384712,Propionaldehyde,LB
+37053,6.107364,"1,3-Butadiene",LB
+37053,0.005954802,"Dibenzo[a,h]Anthracene",LB
+37053,0.02995302,Nickel,LB
+37053,0.6209144,Acenaphthene,LB
+37053,2.321712,Phenanthrene,LB
+37053,0.04816873,Methane,TON
+37053,0.005964646,Benzo[k]Fluoranthene,LB
+37053,0.0258749,Sulfur Dioxide,TON
+37053,0.0002594236,Arsenic,LB
+37053,0.011185278,Fluorene,LB
+37053,2.448065,Carbon Monoxide,TON
+37053,0.001812025,Nitrous Oxide,TON
+37053,0.004709812,Anthracene,LB
+37053,0.10860544,Propionaldehyde,LB
+37053,0.0014187494,Benzo[k]Fluoranthene,LB
+37053,4.062292,Ethyl Benzene,LB
+37045,2.073309,PM2.5 Primary (Filt + Cond),TON
+37045,27.2337,Ethyl Benzene,LB
+37045,5.349998,Fluorene,LB
+37045,0.02979044,Nitrous Oxide,TON
+37045,0.8057703,Organic Carbon portion of PM2.5-PRI,TON
+37045,63.5319,Toluene,LB
+37045,4.068632,Acenaphthylene,LB
+37047,0.8879938,PM2.5 Primary (Filt + Cond),TON
+37047,38.46644,Acrolein,LB
+37047,4446.784,Xylenes (Mixed Isomers),LB
+37047,0.5646038,Benzo[k]Fluoranthene,LB
+37047,648.33,Formaldehyde,LB
+37045,0.517434,Acenaphthylene,LB
+37045,0.03895618,Benz[a]Anthracene,LB
+37045,0.009064484,Arsenic,LB
+37045,5.893454,Naphthalene,LB
+37045,0.08118312,Nitrous Oxide,TON
+37045,0.03353401,Organic Carbon portion of PM2.5-PRI,TON
+37033,2.410692,Hexane,LB
+37033,0.004427182,Pyrene,LB
+37033,0.01410262,Phenanthrene,LB
+37033,1.181541,Carbon Monoxide,TON
+37033,0.002229046,Ammonia,TON
+37025,0.000139929,"1,3-Butadiene",LB
+37025,0.004399172,Toluene,LB
+37025,1.8786632e-05,Propionaldehyde,LB
+37025,4.112138e-06,"Benzo[g,h,i,]Perylene",LB
+37025,8.79786e-07,Benzo[b]Fluoranthene,LB
+37025,6.362442e-06,Acenaphthylene,LB
+37025,7.229608e-07,Chrysene,LB
+37025,0.0017184424,Benzene,LB
+37025,1.599558e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,1.007226e-07,Sulfate Portion of PM2.5-PRI,TON
+37029,0.001884549,Fluorene,LB
+37029,0.017043022,Propionaldehyde,LB
+37029,0.0004668452,Ammonia,TON
+37029,1.213494e-06,Nitrate portion of PM2.5-PRI,TON
+37029,0.0003317732,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.0002511006,Chrysene,LB
+37029,3.324176e-06,Mercury,LB
+37175,0.0008387246,Acenaphthylene,LB
+37175,0.0003271958,Benzo[a]Pyrene,LB
+37175,0.5245666,Benzene,LB
+37175,2.23058,Acetaldehyde,LB
+37175,0.0003682124,Fluorene,LB
+37175,9.608133e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37175,1.272151e-06,Nitrate portion of PM2.5-PRI,TON
+37175,0.0003312684,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.008603006,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.009121954,Arsenic,LB
+37155,0.0027379,Acenaphthene,LB
+37155,5.659851,Carbon Monoxide,TON
+37155,0.3245994,Nitrogen Oxides,TON
+37105,0.1452878,Volatile Organic Compounds,TON
+37177,0.00010372546,Mercury,LB
+37177,1.2553442,Naphthalene,LB
+37177,6.846207,Carbon Monoxide,TON
+37177,170.2904,Carbon Dioxide,TON
+37177,0.001516236,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.002587772,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.003501408,Sulfur Dioxide,TON
+37169,0.0498623,Ethyl Benzene,LB
+37169,0.011296756,"1,3-Butadiene",LB
+37169,0.0015026986,Acrolein,LB
+37165,0.4372468,Pyrene,LB
+37165,54.7265,Formaldehyde,LB
+37165,4.486749,Nitrogen Oxides,TON
+37163,0.002479493,Nitrate portion of PM2.5-PRI,TON
+37163,0.192343,Organic Carbon portion of PM2.5-PRI,TON
+37163,6.185628,"1,3-Butadiene",LB
+37163,20.87356,Naphthalene,LB
+37163,0.2082032,Elemental Carbon portion of PM2.5-PRI,TON
+37161,11.517938,Acrolein,LB
+37161,7.647104,Propionaldehyde,LB
+37161,3.775198,"2,2,4-Trimethylpentane",LB
+37161,0.02016714,Manganese,LB
+37161,0.007497144,Arsenic,LB
+37161,0.1058489,Elemental Carbon portion of PM2.5-PRI,TON
+37161,3.078849,Nitrogen Oxides,TON
+37161,0.005902,Sulfate Portion of PM2.5-PRI,TON
+37161,0.01035676,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.0007619939,Sulfate Portion of PM2.5-PRI,TON
+37161,0.07271546,Pyrene,LB
+37161,83.06444,Xylenes (Mixed Isomers),LB
+37161,0.0003731324,"Dibenzo[a,h]Anthracene",LB
+37161,22.90382,Carbon Monoxide,TON
+37159,4.337908,Phenanthrene,LB
+37159,0.5161905,PM10 Primary (Filt + Cond),TON
+37151,6.340833,PM10-Primary from certain diesel engines,TON
+37151,188.9849,Nitrogen Oxides,TON
+37151,19.317622,Styrene,LB
+37151,179.12434,Acrolein,LB
+37151,1.3849778,Chrysene,LB
+37151,0.02826976,"Dibenzo[a,h]Anthracene",LB
+37151,6.79423e-05,Manganese,LB
+37151,0.0004639619,Nitrous Oxide,TON
+37151,0.0001569307,Sulfur Dioxide,TON
+37139,1.0992412,Acenaphthylene,LB
+37139,190.68502,Formaldehyde,LB
+37139,0.16808286,Benzo[a]Pyrene,LB
+37139,0.740448,Anthracene,LB
+37139,18.273602,Benzene,LB
+37139,0.05313444,Methane,TON
+37139,0.04080207,Ammonia,TON
+37139,17.81144,Nitrogen Oxides,TON
+37139,0.9074,PM2.5 Primary (Filt + Cond),TON
+37191,0.02584174,Benzo[a]Pyrene,LB
+37191,0.6468916,Naphthalene,LB
+37191,7.233572,Ethyl Benzene,LB
+37191,9.689864e-05,Chromium (VI),LB
+37159,1015.849,Nitrogen Oxides,TON
+37159,34.57384,"Benzo[g,h,i,]Perylene",LB
+37159,9.77193,Benzo[b]Fluoranthene,LB
+37159,13.037688,Benzo[a]Pyrene,LB
+37153,1.3219632,Propionaldehyde,LB
+37153,5.151354e-05,"Dibenzo[a,h]Anthracene",LB
+37153,2.476604,Benzene,LB
+37153,0.00694586,Manganese,LB
+37153,0.2202636,Phenanthrene,LB
+37153,216.606,Carbon Dioxide,TON
+37153,0.004423224,Ammonia,TON
+37153,3.122894e-05,Nitrate portion of PM2.5-PRI,TON
+37147,2.961148,Anthracene,LB
+37147,79.15766,Xylenes (Mixed Isomers),LB
+37147,946.6798,Formaldehyde,LB
+37147,0.02654596,"Dibenzo[a,h]Anthracene",LB
+37147,0.0002642632,Mercury,LB
+37147,2.271631,PM10-Primary from certain diesel engines,TON
+37145,25.05944,Hexane,LB
+37145,0.003082394,"Dibenzo[a,h]Anthracene",LB
+37145,0.014024448,Benzo[k]Fluoranthene,LB
+37145,18.20497,Formaldehyde,LB
+37145,0.00014950626,Mercury,LB
+37145,0.319708,Phenanthrene,LB
+37145,0.11953484,Fluorene,LB
+37145,3.06332,Naphthalene,LB
+37145,0.04943589,Nitrous Oxide,TON
+37145,5.357771e-05,Nitrate portion of PM2.5-PRI,TON
+37145,0.006712099,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,3.079222,Formaldehyde,LB
+37145,0.0008518931,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.001180107,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.004339972,PM10 Primary (Filt + Cond),TON
+37145,0.008155868,Anthracene,LB
+37141,3.817892e-05,"Benzo[g,h,i,]Perylene",LB
+37141,0.000337537,Acenaphthene,LB
+37135,0.3213024,PM10 Primary (Filt + Cond),TON
+37135,0.01181435,Sulfate Portion of PM2.5-PRI,TON
+37135,0.3993674,Pyrene,LB
+37135,0.02577932,Manganese,LB
+37135,3.227564,Xylenes (Mixed Isomers),LB
+37135,0.00215721,Fluoranthene,LB
+37135,0.4347823,Carbon Monoxide,TON
+37135,3.858551,Carbon Dioxide,TON
+37093,731.3794,Ethyl Benzene,LB
+37091,0.0002702822,Styrene,LB
+37091,1.909896e-05,Pyrene,LB
+37091,1.5465708e-05,"Benzo[g,h,i,]Perylene",LB
+37091,5.810656e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,3.642802e-06,Chrysene,LB
+37091,0.00356435,Formaldehyde,LB
+37091,0.008828054,"2,2,4-Trimethylpentane",LB
+37091,0.00058769,Naphthalene,LB
+37083,5.976688,"2,2,4-Trimethylpentane",LB
+37083,1.3352412,Fluorene,LB
+37083,0.09424451,Methane,TON
+37083,5.243541,Nitrogen Oxides,TON
+37083,0.3272451,PM10 Primary (Filt + Cond),TON
+37083,3.378912,Styrene,LB
+37083,0.08204958,Chrysene,LB
+37081,18.554348,Benzo[b]Fluoranthene,LB
+37081,29.25284,Benzo[a]Pyrene,LB
+37081,17.56224,Benz[a]Anthracene,LB
+37081,16159.506,Acetaldehyde,LB
+37079,4.445772e-05,Chromium (VI),LB
+37079,0.032132,Benzo[b]Fluoranthene,LB
+37079,0.0010349996,"Dibenzo[a,h]Anthracene",LB
+37079,5.436316,Naphthalene,LB
+37077,7.882072,Hexane,LB
+37077,1.796019,Acenaphthylene,LB
+37077,4.038786,Phenanthrene,LB
+37077,34.82368,Naphthalene,LB
+37077,5623.885,Carbon Dioxide,TON
+37077,1.514295,PM25-Primary from certain diesel engines,TON
+37077,0.07876608,Ammonia,TON
+37073,30.51008,Nitrogen Oxides,TON
+37073,28.44316,Styrene,LB
+37073,5.555568,Acenaphthylene,LB
+37069,0.19669822,"1,3-Butadiene",LB
+37069,0.4795544,Acrolein,LB
+37069,0.0007356178,Nickel,LB
+37069,0.002243637,Methane,TON
+37069,0.0001286544,Nitrous Oxide,TON
+37069,0.001161233,Ammonia,TON
+37069,0.007201325,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.02303378,"1,3-Butadiene",LB
+37059,2.38006e-05,"Benzo[g,h,i,]Perylene",LB
+37059,0.0003585526,Fluoranthene,LB
+37059,0.0016182466,Manganese,LB
+37059,0.0004993928,Sulfur Dioxide,TON
+37049,4.516448,Ethyl Benzene,LB
+37049,8.920186,Toluene,LB
+37049,0.015626352,Benzo[b]Fluoranthene,LB
+37049,0.8115868,Fluoranthene,LB
+37049,135.58466,Formaldehyde,LB
+37049,3.352274,"2,2,4-Trimethylpentane",LB
+37049,12.88208,Benzene,LB
+37049,0.01768852,Nickel,LB
+37049,0.005882074,Arsenic,LB
+37049,59.30656,Acetaldehyde,LB
+37049,0.8711978,Fluorene,LB
+37049,0.2817449,PM25-Primary from certain diesel engines,TON
+37049,0.0009506313,Nitrate portion of PM2.5-PRI,TON
+37049,0.4715423,PM10 Primary (Filt + Cond),TON
+37047,9.840177e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.001095265,Formaldehyde,LB
+37047,8.414996e-08,"Dibenzo[a,h]Anthracene",LB
+37047,3.205488e-06,Acenaphthene,LB
+37047,0.00016678088,Naphthalene,LB
+37047,0.00192219,Carbon Monoxide,TON
+37043,1.0086346e-05,"Dibenzo[a,h]Anthracene",LB
+37043,0.0003213234,Benz[a]Anthracene,LB
+37043,0.0001121786,Arsenic,LB
+37043,0.0007820453,Nitrous Oxide,TON
+37047,0.00296342,Acenaphthene,LB
+37047,0.001985334,PM10 Primary (Filt + Cond),TON
+37047,0.0001636435,Sulfur Dioxide,TON
+37047,0.0720611,Styrene,LB
+37047,0.004343776,Fluoranthene,LB
+37047,14.361814,Anthracene,LB
+37047,346.255,Propionaldehyde,LB
+37047,4.399296,Chrysene,LB
+37047,0.12783202,"Dibenzo[a,h]Anthracene",LB
+37047,16.44964,Ammonia,TON
+37047,6.305328,PM2.5 Primary (Filt + Cond),TON
+37041,0.01526539,Phenanthrene,LB
+37041,0.001128567,PM2.5 Primary (Filt + Cond),TON
+37041,0.05235246,Propionaldehyde,LB
+37041,0.004655422,Pyrene,LB
+37041,0.000685382,Benzo[b]Fluoranthene,LB
+37037,1617.4316,Ethyl Benzene,LB
+37037,13473.102,Toluene,LB
+37037,359.3592,Benzene,LB
+37033,0.2683732,Hexane,LB
+37033,0.00018021854,Chrysene,LB
+37033,8.345568e-06,"Dibenzo[a,h]Anthracene",LB
+37033,0.12670028,Acetaldehyde,LB
+37033,0.181766,Carbon Monoxide,TON
+37141,4.024972e-06,Chromium (VI),LB
+37141,4.035148e-05,Mercury,LB
+37141,0.754213,Naphthalene,LB
+37141,3.087803e-05,Nitrate portion of PM2.5-PRI,TON
+37141,0.003176348,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,22.15158,Toluene,LB
+37141,0.003422572,Benzo[b]Fluoranthene,LB
+37141,0.002888982,Chrysene,LB
+37141,1.8983888,Acetaldehyde,LB
+37141,0.00633177,Acenaphthene,LB
+37141,0.03490154,Phenanthrene,LB
+37141,1.866011e-05,Nitrate portion of PM2.5-PRI,TON
+37141,0.0002143651,Sulfate Portion of PM2.5-PRI,TON
+37137,7.202318,"2,2,4-Trimethylpentane",LB
+37125,0.3224272,PM2.5 Primary (Filt + Cond),TON
+37125,0.012864,Sulfate Portion of PM2.5-PRI,TON
+37125,4.305792,Hexane,LB
+37125,0.002282008,Benzo[k]Fluoranthene,LB
+37125,1906.04,Carbon Dioxide,TON
+37125,0.1792993,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.012772828,"Dibenzo[a,h]Anthracene",LB
+37107,0.1103922,Methane,TON
+37107,2.321343,PM10 Primary (Filt + Cond),TON
+37107,0.2102883,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.6373088,Styrene,LB
+37107,0.02429414,Anthracene,LB
+37107,0.009600718,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.014101686,Manganese,LB
+37107,0.01265057,Methane,TON
+37107,0.01643577,PM2.5 Primary (Filt + Cond),TON
+37087,26.4847,Ethyl Benzene,LB
+37087,0.2699316,Manganese,LB
+37087,0.05232784,Arsenic,LB
+37087,0.5143433,Methane,TON
+37073,0.00881464,Arsenic,LB
+37073,0.06215016,Methane,TON
+37073,0.03911427,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.5239616,Volatile Organic Compounds,TON
+37073,7.446996,Toluene,LB
+37073,2.4532,Hexane,LB
+37073,7.843846,Xylenes (Mixed Isomers),LB
+37073,3.888922e-05,Chromium (VI),LB
+37081,795.7296,Xylenes (Mixed Isomers),LB
+37081,0.5475922,Fluoranthene,LB
+37081,0.13771722,Chrysene,LB
+37081,116.78778,Formaldehyde,LB
+37081,0.247626,Benzo[a]Pyrene,LB
+37081,114.97192,Acetaldehyde,LB
+37081,1.9910032,Phenanthrene,LB
+37081,0.2472063,Methane,TON
+37081,0.2769846,Nitrous Oxide,TON
+37081,0.3175389,Ammonia,TON
+37053,9.325058,"2,2,4-Trimethylpentane",LB
+37053,0.18738836,Manganese,LB
+37053,1.280075,PM25-Primary from certain diesel engines,TON
+37053,0.01624496,Nitrous Oxide,TON
+37053,13.964646,Propionaldehyde,LB
+37053,2.401936,Pyrene,LB
+37053,32.41776,Xylenes (Mixed Isomers),LB
+37053,0.010602638,"Benzo[g,h,i,]Perylene",LB
+37053,0.013011128,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,230.1084,Hexane,LB
+37067,587.2956,Xylenes (Mixed Isomers),LB
+37067,14.01198,Naphthalene,LB
+37067,0.138703,Sulfur Dioxide,TON
+37061,0.8497324,"1,3-Butadiene",LB
+37061,1.0512762e-05,Chromium (VI),LB
+37061,0.19265586,Fluoranthene,LB
+37043,0.04306326,Benzo[a]Pyrene,LB
+37043,0.001809155,"Dibenzo[a,h]Anthracene",LB
+37043,0.01676754,Nickel,LB
+37043,0.239146,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.06960897,Ammonia,TON
+37043,0.5815261,PM10 Primary (Filt + Cond),TON
+37039,0.1045148,Acenaphthene,LB
+37039,0.2936226,Phenanthrene,LB
+37047,0.000675571,Nickel,LB
+37047,0.0010358474,Arsenic,LB
+37047,0.004087485,Nitrous Oxide,TON
+37047,0.4667169,Nitrogen Oxides,TON
+37039,0.0742212,Styrene,LB
+37039,0.0008897146,Benzo[b]Fluoranthene,LB
+37039,0.0012195356,Benzo[a]Pyrene,LB
+37039,2.78677,Benzene,LB
+37039,1.7198292e-06,Mercury,LB
+37039,0.003588775,Methane,TON
+37039,0.0001414209,Sulfur Dioxide,TON
+37039,0.05443852,Volatile Organic Compounds,TON
+37039,0.03711877,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.08846254,Sulfur Dioxide,TON
+37039,0.096009,Benzo[k]Fluoranthene,LB
+37039,0.1232066,Benzo[a]Pyrene,LB
+37039,2.015452,Phenanthrene,LB
+37039,0.3167865,PM10 Primary (Filt + Cond),TON
+37039,0.1403167,PM2.5 Primary (Filt + Cond),TON
+37037,14.18887,Hexane,LB
+37037,0.0280138,Pyrene,LB
+37037,0.007558658,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.00529901,Benzo[b]Fluoranthene,LB
+37037,0.00503817,Chrysene,LB
+37037,5.41212,Formaldehyde,LB
+37035,0.3102676,Styrene,LB
+37035,1.4402646,Toluene,LB
+37035,1.4222092,Xylenes (Mixed Isomers),LB
+37035,0.0009377958,"Benzo[g,h,i,]Perylene",LB
+37035,0.004516142,Benzo[b]Fluoranthene,LB
+37035,0.1196405,Acenaphthylene,LB
+37035,0.05056354,Benz[a]Anthracene,LB
+37035,0.0004563065,Nitrous Oxide,TON
+37031,0.006189802,"Benzo[g,h,i,]Perylene",LB
+37031,0.0002408526,Nickel,LB
+37031,0.5998834,Naphthalene,LB
+37031,4.682254,Carbon Monoxide,TON
+37031,0.003946892,Nitrous Oxide,TON
+37031,0.001851908,Sulfur Dioxide,TON
+37031,9.392764e-05,Sulfate Portion of PM2.5-PRI,TON
+37025,0.6178048,Phenanthrene,LB
+37025,0.2487267,PM25-Primary from certain diesel engines,TON
+37025,3.92826,Acrolein,LB
+37025,15827.302,Xylenes (Mixed Isomers),LB
+37199,3.859828,"1,3-Butadiene",LB
+37199,0.005451788,"Benzo[g,h,i,]Perylene",LB
+37199,0.294321,Benz[a]Anthracene,LB
+37199,10.937048,Benzene,LB
+37199,0.00478182,Arsenic,LB
+37199,0.5608336,PM10-Primary from certain diesel engines,TON
+37199,0.5306073,PM2.5 Primary (Filt + Cond),TON
+37193,0.0006760096,Nitrous Oxide,TON
+37193,0.0001056652,Ammonia,TON
+37193,0.0001459607,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.001410088,Anthracene,LB
+37193,0.03460214,Propionaldehyde,LB
+37193,0.002751228,Pyrene,LB
+37193,7.595192e-08,Chromium (VI),LB
+37193,0.002411696,Fluoranthene,LB
+37193,0.000676962,Benzo[a]Pyrene,LB
+37193,1.5526216e-05,"Dibenzo[a,h]Anthracene",LB
+37193,0.0004883516,Benz[a]Anthracene,LB
+37195,1.7854246,Acenaphthylene,LB
+37195,0.001516007,"Dibenzo[a,h]Anthracene",LB
+37195,0.02164996,Arsenic,LB
+37195,148.24554,Acetaldehyde,LB
+37195,2.979766,Phenanthrene,LB
+37195,37.27064,Naphthalene,LB
+37195,10.503934,"1,3-Butadiene",LB
+37195,25.37874,Toluene,LB
+37195,17.465254,Propionaldehyde,LB
+37195,19.35776,Carbon Monoxide,TON
+37195,0.05877767,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.3708424,PM2.5 Primary (Filt + Cond),TON
+37195,0.02927326,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.02498787,Sulfur Dioxide,TON
+37195,0.01685836,Sulfate Portion of PM2.5-PRI,TON
+37195,1.923313,Volatile Organic Compounds,TON
+37195,293.7086,Toluene,LB
+37195,73.65992,Hexane,LB
+37195,0.17708596,"Benzo[g,h,i,]Perylene",LB
+37195,0.0399646,Benzo[k]Fluoranthene,LB
+37189,0.02419538,Xylenes (Mixed Isomers),LB
+37189,4.308524e-06,Benzo[k]Fluoranthene,LB
+37189,1.310774e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37019,5327.72,Toluene,LB
+37019,0.5329724,Anthracene,LB
+37019,0.17594384,Chrysene,LB
+37019,0.00563934,"Dibenzo[a,h]Anthracene",LB
+37019,0.002512832,Mercury,LB
+37019,1.2614494,Fluorene,LB
+37019,0.08285946,Sulfur Dioxide,TON
+37015,1.092001,PM10 Primary (Filt + Cond),TON
+37015,0.8609561,PM2.5 Primary (Filt + Cond),TON
+37015,0.0161534,Sulfate Portion of PM2.5-PRI,TON
+37015,14.401242,Acrolein,LB
+37003,3.038618,Styrene,LB
+37003,6.814126,"1,3-Butadiene",LB
+37003,4.732168,"2,2,4-Trimethylpentane",LB
+37003,0.9682863,PM10-Primary from certain diesel engines,TON
+37003,0.5555822,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.2394975,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.9205377,PM2.5 Primary (Filt + Cond),TON
+37003,1.193018,Volatile Organic Compounds,TON
+37023,98.56486,"1,3-Butadiene",LB
+37023,71.76114,Hexane,LB
+37023,160.04208,Propionaldehyde,LB
+37023,167.47922,Xylenes (Mixed Isomers),LB
+37023,0.3813778,Nickel,LB
+37023,0.10170936,Arsenic,LB
+37023,1265.08,Acetaldehyde,LB
+37023,2.452967,PM25-Primary from certain diesel engines,TON
+37003,0.00013458846,Nickel,LB
+37003,0.007977191,Methane,TON
+37003,0.2164406,Styrene,LB
+37003,0.007712766,Anthracene,LB
+37003,28.73994,Xylenes (Mixed Isomers),LB
+37003,2.824738,Formaldehyde,LB
+37003,5.516224e-05,"Dibenzo[a,h]Anthracene",LB
+37003,0.002779275,PM2.5 Primary (Filt + Cond),TON
+37039,0.302082,Xylenes (Mixed Isomers),LB
+37039,0.004275944,Styrene,LB
+37039,0.000305724,Manganese,LB
+37039,0.001344316,Methane,TON
+37039,0.1773791,Carbon Monoxide,TON
+37039,20.84716,Carbon Dioxide,TON
+37035,0.001614342,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.00589141,Sulfur Dioxide,TON
+37035,0.0001208673,Sulfate Portion of PM2.5-PRI,TON
+37035,0.07154945,Volatile Organic Compounds,TON
+37035,0.00478274,Acenaphthylene,LB
+37035,6.220092e-05,"Dibenzo[a,h]Anthracene",LB
+37035,1.456921,Carbon Monoxide,TON
+37035,193.9017,Carbon Dioxide,TON
+37035,0.0006903324,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.006295102,Acenaphthene,LB
+37037,0.0359064,Phenanthrene,LB
+37037,0.05315526,Methane,TON
+37037,926.4419,Carbon Dioxide,TON
+37037,0.0189467,PM2.5 Primary (Filt + Cond),TON
+37037,0.6434678,Acrolein,LB
+37037,0.007270848,Benzo[b]Fluoranthene,LB
+37037,0.005550734,Chrysene,LB
+37165,0.491963,Formaldehyde,LB
+37165,0.0006054396,Nitrous Oxide,TON
+37147,0.01349066,Chrysene,LB
+37147,0.8158326,Naphthalene,LB
+37147,0.1271796,Methane,TON
+37147,0.1184339,Ammonia,TON
+37119,0.14006448,Arsenic,LB
+37119,14053.31,Carbon Dioxide,TON
+37119,0.0007891335,Nitrate portion of PM2.5-PRI,TON
+37119,1.499051,PM10 Primary (Filt + Cond),TON
+37119,0.4268977,Sulfur Dioxide,TON
+37091,0.001247478,Arsenic,LB
+37091,4.043894e-06,Nitrate portion of PM2.5-PRI,TON
+37173,10.888168,Acrolein,LB
+37173,0.2035578,Chrysene,LB
+37173,3.253442,"2,2,4-Trimethylpentane",LB
+37173,0.005953056,Arsenic,LB
+37173,0.6878394,PM10-Primary from certain diesel engines,TON
+37173,0.03092621,Ammonia,TON
+37193,57.59892,Acrolein,LB
+37193,104.83944,Xylenes (Mixed Isomers),LB
+37193,0.0002706372,Chromium (VI),LB
+37193,0.5637296,Chrysene,LB
+37193,1.7056976,Acenaphthene,LB
+37185,0.009530152,"Benzo[g,h,i,]Perylene",LB
+37185,0.0002037158,Mercury,LB
+37185,0.2449228,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.00017711646,Fluorene,LB
+37195,0.001311013,Volatile Organic Compounds,TON
+37195,0.00014005604,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.00014384312,Fluoranthene,LB
+37189,2.269054,Toluene,LB
+37189,0.02123092,Benzo[a]Pyrene,LB
+37189,0.07334575,PM10-Primary from certain diesel engines,TON
+37187,0.0009377896,Nitrous Oxide,TON
+37187,1.905094e-05,Sulfate Portion of PM2.5-PRI,TON
+37187,8.512774,Toluene,LB
+37187,0.002325658,"Benzo[g,h,i,]Perylene",LB
+37187,0.0006334618,Chrysene,LB
+37187,2.091152,Benzene,LB
+37187,0.002266702,Acenaphthene,LB
+37187,0.004591476,Fluorene,LB
+37179,44.36368,Ethyl Benzene,LB
+37179,61.99648,Propionaldehyde,LB
+37179,8.725038,Fluoranthene,LB
+37179,0.07840528,Arsenic,LB
+37179,31.06386,Carbon Monoxide,TON
+37179,2.970411,PM2.5 Primary (Filt + Cond),TON
+37179,0.1617046,Sulfate Portion of PM2.5-PRI,TON
+37023,119.70416,"2,2,4-Trimethylpentane",LB
+37023,0.0005595002,Mercury,LB
+37023,0.0002889341,Nitrate portion of PM2.5-PRI,TON
+37023,2.73706,Volatile Organic Compounds,TON
+37199,0.6096092,Styrene,LB
+37199,0.008935456,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.006877256,Benzo[b]Fluoranthene,LB
+37199,0.03759856,Fluoranthene,LB
+37199,2.689816e-05,Nitrate portion of PM2.5-PRI,TON
+37199,0.004558818,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.5176936,Volatile Organic Compounds,TON
+37197,3.418064,Fluoranthene,LB
+37197,7.11688,Styrene,LB
+37197,1.6780314,Anthracene,LB
+37197,50.65124,Benzene,LB
+37197,3.416716,Fluorene,LB
+37197,0.2954262,Ammonia,TON
+37197,69.7289,Nitrogen Oxides,TON
+37195,0.03382504,Chrysene,LB
+37195,0.7361944,Hexane,LB
+37195,1.4181166,Propionaldehyde,LB
+37195,2.636642,Benzene,LB
+37195,3.347008,Nitrogen Oxides,TON
+37195,0.2006727,PM10 Primary (Filt + Cond),TON
+37193,18.441584,Benzene,LB
+37193,15.91255,Toluene,LB
+37193,0.03237486,"Benzo[g,h,i,]Perylene",LB
+37193,0.0002792536,"Dibenzo[a,h]Anthracene",LB
+37193,0.004800036,Nickel,LB
+37193,4.18228e-05,Nitrate portion of PM2.5-PRI,TON
+37193,0.007447954,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.01691588,PM2.5 Primary (Filt + Cond),TON
+37185,0.5896666,Styrene,LB
+37185,0.1151948,Acenaphthylene,LB
+37185,8.17948,Formaldehyde,LB
+37185,0.02261194,Benzo[a]Pyrene,LB
+37197,0.006140614,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.00405536,Benzo[b]Fluoranthene,LB
+37197,3.820024,Acetaldehyde,LB
+37197,225.6342,Carbon Dioxide,TON
+37183,0.0002266942,Mercury,LB
+37183,0.008552543,Elemental Carbon portion of PM2.5-PRI,TON
+37183,1.730397,Volatile Organic Compounds,TON
+37017,0.009188314,Fluoranthene,LB
+37017,5.71478e-05,"Dibenzo[a,h]Anthracene",LB
+37017,0.0127236,Fluorene,LB
+37015,3.795762,"1,3-Butadiene",LB
+37015,0.5784862,Acrolein,LB
+37015,0.0255325,Anthracene,LB
+37015,0.5877258,Propionaldehyde,LB
+37015,1.372586e-05,Chromium (VI),LB
+37015,0.008081684,Chrysene,LB
+37015,0.1622416,Phenanthrene,LB
+37015,0.5908084,Volatile Organic Compounds,TON
+37003,0.005166579,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.04864194,Nitrous Oxide,TON
+37003,0.0002951602,Sulfate Portion of PM2.5-PRI,TON
+37003,1.2035882,Propionaldehyde,LB
+37003,7.66142e-06,Chromium (VI),LB
+37003,0.03913542,"Benzo[g,h,i,]Perylene",LB
+37003,7.680838e-05,Mercury,LB
+37003,0.0014684814,Arsenic,LB
+37003,0.3203484,Styrene,LB
+37003,10.051964,Hexane,LB
+37003,27.15382,Xylenes (Mixed Isomers),LB
+37003,0.002736512,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.003064516,Chrysene,LB
+37003,3.841968,Formaldehyde,LB
+37003,0.003001794,Benz[a]Anthracene,LB
+37003,1.7118502e-05,Mercury,LB
+37003,5.371426,Acetaldehyde,LB
+37003,5.945901,Carbon Monoxide,TON
+37003,0.001456069,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.000691126,Chrysene,LB
+37057,0.000785552,Benz[a]Anthracene,LB
+37057,2.061296,Benzene,LB
+37057,0.0008148992,Nickel,LB
+37057,0.0006891862,Anthracene,LB
+37057,0.0017484274,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.004197692,Phenanthrene,LB
+37057,0.0014834856,Fluorene,LB
+37057,0.001875777,Nitrous Oxide,TON
+37057,0.003449588,Sulfur Dioxide,TON
+37007,0.3073954,Benzene,LB
+37007,0.0005994012,Phenanthrene,LB
+37007,0.1608492,Carbon Monoxide,TON
+37007,6.251395e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.01378106,Nitrogen Oxides,TON
+37165,0.10398368,Acrolein,LB
+37165,1.1993004,Hexane,LB
+37165,0.233817,Propionaldehyde,LB
+37165,2.177376,Xylenes (Mixed Isomers),LB
+37165,0.003970868,Manganese,LB
+37165,0.001714082,Nickel,LB
+37165,1.822378,Carbon Monoxide,TON
+37165,0.1019376,Nitrogen Oxides,TON
+37165,0.003986656,PM2.5 Primary (Filt + Cond),TON
+37165,0.0001185484,Sulfate Portion of PM2.5-PRI,TON
+37159,0.5801226,Ethyl Benzene,LB
+37159,178.706,Carbon Dioxide,TON
+37159,0.0001157511,Sulfate Portion of PM2.5-PRI,TON
+37159,0.06905474,Volatile Organic Compounds,TON
+37139,0.2537858,Hexane,LB
+37139,0.5451072,Xylenes (Mixed Isomers),LB
+37139,0.0006720651,Nitrous Oxide,TON
+37175,0.004073348,Fluoranthene,LB
+37175,0.146255,Naphthalene,LB
+37175,40.7618,Carbon Dioxide,TON
+37175,0.04178053,Volatile Organic Compounds,TON
+37173,0.00011591164,Anthracene,LB
+37173,0.0002021284,Fluoranthene,LB
+37173,3.061979e-06,Sulfate Portion of PM2.5-PRI,TON
+37173,0.002161262,Volatile Organic Compounds,TON
+37171,0.0005462614,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.0248109,Benz[a]Anthracene,LB
+37171,0.2762796,Carbon Monoxide,TON
+37171,114.2014,Carbon Dioxide,TON
+37159,0.0005136994,"Dibenzo[a,h]Anthracene",LB
+37159,0.3958456,"2,2,4-Trimethylpentane",LB
+37159,0.001953248,Nickel,LB
+37159,0.006022911,Methane,TON
+37159,0.04520267,PM10-Primary from certain diesel engines,TON
+37159,0.04158618,PM25-Primary from certain diesel engines,TON
+37159,0.0003478445,Nitrous Oxide,TON
+37159,1.06451,Xylenes (Mixed Isomers),LB
+37159,3.476086e-06,Chromium (VI),LB
+37159,0.012609946,Benzo[a]Pyrene,LB
+37161,0.11591004,Acrolein,LB
+37161,0.005072344,Anthracene,LB
+37161,3.604078e-06,Chromium (VI),LB
+37161,0.002109954,Chrysene,LB
+37161,8.453804e-05,"Dibenzo[a,h]Anthracene",LB
+37161,0.011866314,Fluorene,LB
+37161,0.002117789,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.10868782,Acrolein,LB
+37151,0.005850688,Anthracene,LB
+37151,0.14615302,Propionaldehyde,LB
+37151,0.002164612,Benzo[b]Fluoranthene,LB
+37151,0.0003548496,Manganese,LB
+37151,3.388104e-06,Mercury,LB
+37151,2.205002,Acetaldehyde,LB
+37151,13371.754,Xylenes (Mixed Isomers),LB
+37143,0.2229268,Benz[a]Anthracene,LB
+37143,12.062474,Benzene,LB
+37143,0.1104169,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.16929392,Fluorene,LB
+37143,1.092429,Carbon Monoxide,TON
+37143,0.05510596,PM25-Primary from certain diesel engines,TON
+37143,0.001742302,Sulfate Portion of PM2.5-PRI,TON
+37143,0.880673,"1,3-Butadiene",LB
+37143,8.11242e-05,Chromium (VI),LB
+37143,29.74072,Benzene,LB
+37143,0.0465572,Nickel,LB
+37143,136.7736,Acetaldehyde,LB
+37143,0.09465304,Methane,TON
+37143,0.2634726,PM2.5 Primary (Filt + Cond),TON
+37143,0.01569891,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.00885822,Sulfate Portion of PM2.5-PRI,TON
+37141,1.9322592,Anthracene,LB
+37141,5.294462,Pyrene,LB
+37141,0.0002862242,Chromium (VI),LB
+37141,0.02278884,"Benzo[g,h,i,]Perylene",LB
+37139,0.2636238,Chrysene,LB
+37139,0.553556,Benz[a]Anthracene,LB
+37139,0.2180291,Methane,TON
+37139,0.02101684,Sulfate Portion of PM2.5-PRI,TON
+37135,9.490748,Styrene,LB
+37135,0.03266648,"Benzo[g,h,i,]Perylene",LB
+37135,5.392864,Fluoranthene,LB
+37135,3.655896,Acenaphthylene,LB
+37135,0.0001576902,Mercury,LB
+37135,0.2148691,Methane,TON
+37135,0.009407934,Nitrate portion of PM2.5-PRI,TON
+37135,64.29146,Nitrogen Oxides,TON
+37135,0.3717427,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,62.97074,Acrolein,LB
+37143,4.766846,Fluoranthene,LB
+37143,2.444764,PM10 Primary (Filt + Cond),TON
+37117,0.0665977,Manganese,LB
+37117,60.24418,Naphthalene,LB
+37117,0.05653384,Toluene,LB
+37117,0.012843038,Hexane,LB
+37117,0.03727648,Xylenes (Mixed Isomers),LB
+37117,1.0244434e-05,Benzo[a]Pyrene,LB
+37117,2.653048e-08,Mercury,LB
+37117,3.308152e-07,Nickel,LB
+37117,0.008412207,Carbon Monoxide,TON
+37119,0.5366512,Acenaphthene,LB
+37119,1.2457654,Fluorene,LB
+37119,0.2074367,Methane,TON
+37119,0.08555765,Sulfate Portion of PM2.5-PRI,TON
+37119,1.057817,Volatile Organic Compounds,TON
+37113,4.862586,Propionaldehyde,LB
+37113,0.6846924,Fluoranthene,LB
+37113,0.038801,Methane,TON
+37113,496.7278,Carbon Dioxide,TON
+37113,0.2301468,PM10-Primary from certain diesel engines,TON
+37113,0.2810185,PM10 Primary (Filt + Cond),TON
+37113,0.531209,Volatile Organic Compounds,TON
+37105,0.01888528,"1,3-Butadiene",LB
+37105,1.2554802,Propionaldehyde,LB
+37105,0.0004586122,Acenaphthylene,LB
+37105,1.944136e-06,Nitrate portion of PM2.5-PRI,TON
+37105,0.0005428963,Sulfur Dioxide,TON
+37105,9.216318,Formaldehyde,LB
+37105,0.223687,"2,2,4-Trimethylpentane",LB
+37105,0.8890456,Benzene,LB
+37105,4.076064,Acetaldehyde,LB
+37105,0.2318118,Hexane,LB
+37105,0.00737292,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.005147172,Benz[a]Anthracene,LB
+37105,0.0010938872,Arsenic,LB
+37105,0.016631152,Acenaphthene,LB
+37105,0.09049248,Phenanthrene,LB
+37105,0.004670984,Organic Carbon portion of PM2.5-PRI,TON
+37093,1.541501,Acetaldehyde,LB
+37093,0.008346435,PM10-Primary from certain diesel engines,TON
+37093,0.05204018,Styrene,LB
+37093,0.03590116,Pyrene,LB
+37093,0.02725224,Fluoranthene,LB
+37089,0.0004697668,"Benzo[g,h,i,]Perylene",LB
+37089,0.00017665772,Benzo[a]Pyrene,LB
+37089,4.053226e-06,"Dibenzo[a,h]Anthracene",LB
+37089,4.206079e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.8647656,Acrolein,LB
+37089,28.83006,Hexane,LB
+37089,0.0377988,"Benzo[g,h,i,]Perylene",LB
+37089,0.00012653516,Mercury,LB
+37089,0.01923645,Methane,TON
+37089,0.0116478,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.2935908,PM2.5 Primary (Filt + Cond),TON
+37073,365.062,Formaldehyde,LB
+37073,160.9464,Acetaldehyde,LB
+37073,2.13186,Fluorene,LB
+37085,7.498556,Ethyl Benzene,LB
+37085,15.990964,Toluene,LB
+37085,5.702406,Hexane,LB
+37085,4.314098e-05,Chromium (VI),LB
+37085,0.009926804,"Benzo[g,h,i,]Perylene",LB
+37085,0.05456788,Manganese,LB
+37085,0.007490392,Arsenic,LB
+37085,1608.37,Carbon Dioxide,TON
+37085,0.218182,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.07558376,Carbon Monoxide,TON
+37079,1.927993e-06,Sulfate Portion of PM2.5-PRI,TON
+37079,0.5263732,Xylenes (Mixed Isomers),LB
+37079,1.5259816e-06,Nickel,LB
+37067,0.07945016,Acrolein,LB
+37067,38.65909,Carbon Dioxide,TON
+37067,1.006968e-06,Nitrate portion of PM2.5-PRI,TON
+37067,0.002009614,PM2.5 Primary (Filt + Cond),TON
+37063,3565.39,Carbon Dioxide,TON
+37063,30.8514,Xylenes (Mixed Isomers),LB
+37063,0.014279388,"Dibenzo[a,h]Anthracene",LB
+37063,11.266544,"2,2,4-Trimethylpentane",LB
+37063,1725.1658,Formaldehyde,LB
+37063,0.007273824,"Dibenzo[a,h]Anthracene",LB
+37063,164.861,Benzene,LB
+37063,757.79,Acetaldehyde,LB
+37063,10.075218,Fluorene,LB
+37063,0.003456936,Nitrate portion of PM2.5-PRI,TON
+37063,28.90602,Benzene,LB
+37063,1.3696944,Naphthalene,LB
+37063,0.01571262,Methane,TON
+37063,1.141447,Nitrogen Oxides,TON
+37067,0.02883222,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,1.800082,Nitrogen Oxides,TON
+37065,0.07067718,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,20.39754,Hexane,LB
+37065,2.386668,Anthracene,LB
+37065,47.32544,Xylenes (Mixed Isomers),LB
+37065,4.917998,Fluorene,LB
+37063,2.378594,Anthracene,LB
+37063,5992.822,Xylenes (Mixed Isomers),LB
+37063,0.8745052,Benzo[k]Fluoranthene,LB
+37063,0.03110112,Mercury,LB
+37063,143.94556,Naphthalene,LB
+37063,1.685698,Nitrous Oxide,TON
+37063,0.7366419,Organic Carbon portion of PM2.5-PRI,TON
+37059,1924.6054,Hexane,LB
+37047,1.2933932,Benzene,LB
+37047,0.16596054,Phenanthrene,LB
+37047,141.6861,Carbon Dioxide,TON
+37199,13.458734,Acrolein,LB
+37199,4.488436,Hexane,LB
+37199,8.71879,Propionaldehyde,LB
+37199,0.2160218,Chrysene,LB
+37199,4.687796,"2,2,4-Trimethylpentane",LB
+37199,1.1349102,Fluorene,LB
+37199,1685.588,Carbon Dioxide,TON
+37199,0.001986651,Nitrate portion of PM2.5-PRI,TON
+37195,40.77056,Xylenes (Mixed Isomers),LB
+37195,0.03603382,"Benzo[g,h,i,]Perylene",LB
+37195,0.013537694,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.02293978,Fluoranthene,LB
+37195,0.01342661,Benzo[a]Pyrene,LB
+37195,0.0003106486,"Dibenzo[a,h]Anthracene",LB
+37195,0.002165092,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.6681211,Nitrogen Oxides,TON
+37195,0.01388352,PM2.5 Primary (Filt + Cond),TON
+37183,191.59818,"1,3-Butadiene",LB
+37183,454.7434,Xylenes (Mixed Isomers),LB
+37183,32.59958,Acenaphthylene,LB
+37183,2.186614,Chrysene,LB
+37183,0.957093,Manganese,LB
+37183,33.7203,Fluorene,LB
+37183,3.082978,Methane,TON
+37183,318.8568,Carbon Monoxide,TON
+37183,128.9019,Nitrogen Oxides,TON
+37183,34.85811,Volatile Organic Compounds,TON
+37181,0.00336267,PM2.5 Primary (Filt + Cond),TON
+37181,0.006205436,Anthracene,LB
+37181,2.317928,Carbon Monoxide,TON
+37181,16.93267,Carbon Dioxide,TON
+37181,0.0007689249,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.1572468,Nitrogen Oxides,TON
+37179,9.863494,Ethyl Benzene,LB
+37179,7.608036,Hexane,LB
+37179,0.00010667724,Chromium (VI),LB
+37179,0.002897082,"Benzo[g,h,i,]Perylene",LB
+37179,0.000446009,"Dibenzo[a,h]Anthracene",LB
+37179,8.116036,"2,2,4-Trimethylpentane",LB
+37179,0.02352122,Arsenic,LB
+37179,0.003248701,Nitrous Oxide,TON
+37179,2.125695,Nitrogen Oxides,TON
+37179,0.008079502,Sulfate Portion of PM2.5-PRI,TON
+37019,0.4278704,Benzo[a]Pyrene,LB
+37019,0.34889,Manganese,LB
+37019,0.0004246616,Mercury,LB
+37019,3.214354,PM10-Primary from certain diesel engines,TON
+37019,79.70201,Nitrogen Oxides,TON
+37019,0.6698814,Organic Carbon portion of PM2.5-PRI,TON
+37013,26.8898,Toluene,LB
+37013,3.388204,Pyrene,LB
+37013,0.018828068,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,1.0871766,Acenaphthene,LB
+37013,3766.993,Carbon Dioxide,TON
+37013,0.8165971,PM25-Primary from certain diesel engines,TON
+37013,13.93076,Nitrogen Oxides,TON
+37013,0.03231077,Sulfur Dioxide,TON
+37019,118.14546,Acenaphthylene,LB
+37019,8.568046,Benzo[a]Pyrene,LB
+37019,0.2118638,Mercury,LB
+37019,14.96715,Methane,TON
+37019,5.066706,Organic Carbon portion of PM2.5-PRI,TON
+37019,33.70285,PM10 Primary (Filt + Cond),TON
+37019,0.3049913,Sulfate Portion of PM2.5-PRI,TON
+37015,1086.2084,Hexane,LB
+37015,1436.5514,"2,2,4-Trimethylpentane",LB
+37011,0.5035772,Xylenes (Mixed Isomers),LB
+37011,2.138384e-06,Chromium (VI),LB
+37011,6.608848,"2,2,4-Trimethylpentane",LB
+37011,0.005588642,Acenaphthene,LB
+37019,0.00973524,Manganese,LB
+37019,0.0003068762,Mercury,LB
+37019,0.004020252,Fluorene,LB
+37019,0.009045016,PM2.5 Primary (Filt + Cond),TON
+37019,0.001876468,Anthracene,LB
+37151,4.651564,Xylenes (Mixed Isomers),LB
+37151,0.009591598,Acenaphthylene,LB
+37151,0.004616178,Benzo[a]Pyrene,LB
+37151,0.002891602,Nickel,LB
+37151,0.005312072,Nitrous Oxide,TON
+37151,0.02041079,Ammonia,TON
+37151,0.02774652,PM10 Primary (Filt + Cond),TON
+37151,0.0002111366,Sulfate Portion of PM2.5-PRI,TON
+37135,1.4887682,"2,2,4-Trimethylpentane",LB
+37135,13.24194,Acetaldehyde,LB
+37135,0.02157141,PM10 Primary (Filt + Cond),TON
+37135,0.7057284,Ethyl Benzene,LB
+37135,0.12529678,Acrolein,LB
+37135,0.0017248752,Benzo[b]Fluoranthene,LB
+37135,0.0017248752,Benzo[k]Fluoranthene,LB
+37159,0.1465724,PM10 Primary (Filt + Cond),TON
+37159,0.017877796,Benz[a]Anthracene,LB
+37159,0.003772236,Arsenic,LB
+37141,0.11720136,"Dibenzo[a,h]Anthracene",LB
+37141,15.07423,PM10 Primary (Filt + Cond),TON
+37141,258.6638,Volatile Organic Compounds,TON
+37141,33345.52,Xylenes (Mixed Isomers),LB
+37137,0.0785041,Nitrogen Oxides,TON
+37137,0.001542846,PM2.5 Primary (Filt + Cond),TON
+37137,0.00010385828,Arsenic,LB
+37137,0.000212484,Phenanthrene,LB
+37123,0.13365644,"1,3-Butadiene",LB
+37123,0.014340702,Anthracene,LB
+37123,1.103388e-06,Chromium (VI),LB
+37123,0.0008156602,Benzo[b]Fluoranthene,LB
+37123,0.0001977748,Arsenic,LB
+37123,0.04895624,Phenanthrene,LB
+37123,44.24179,Carbon Dioxide,TON
+37121,4.421476e-07,Nickel,LB
+37121,0.0001016932,Arsenic,LB
+37121,0.0001441206,Fluorene,LB
+37121,0.0007466028,Ammonia,TON
+37121,0.0001441407,Sulfur Dioxide,TON
+37121,0.00672056,"1,3-Butadiene",LB
+37121,9.28542e-09,Chromium (VI),LB
+37199,0.5652482,Toluene,LB
+37199,0.1386893,Hexane,LB
+37199,0.0007805918,Acenaphthylene,LB
+37199,8.94077e-05,Benzo[a]Pyrene,LB
+37199,0.05457504,Acetaldehyde,LB
+37199,2.410161,Carbon Dioxide,TON
+37199,2.388048e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,16.230836,Benzene,LB
+37193,1.979374,Volatile Organic Compounds,TON
+37191,0.003737756,"Benzo[g,h,i,]Perylene",LB
+37191,0.19610272,Benz[a]Anthracene,LB
+37191,0.3703769,PM10 Primary (Filt + Cond),TON
+37191,0.02300339,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,1.524577,Volatile Organic Compounds,TON
+37181,28.28716,Propionaldehyde,LB
+37181,1.4509368,Acenaphthene,LB
+37181,6.4016,Phenanthrene,LB
+37181,1.157124,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.1801575,Sulfate Portion of PM2.5-PRI,TON
+37181,3.429426,Volatile Organic Compounds,TON
+37161,0.03518006,Ethyl Benzene,LB
+37161,0.018482116,"1,3-Butadiene",LB
+37161,1.2286808,Propionaldehyde,LB
+37161,1.3866878e-06,Nickel,LB
+37161,0.000400439,Fluorene,LB
+37161,0.01162287,Nitrous Oxide,TON
+37157,0.3086174,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,4.191262,Acenaphthylene,LB
+37157,0.310363,Benzo[a]Pyrene,LB
+37157,0.2458696,Benz[a]Anthracene,LB
+37157,0.5809637,Methane,TON
+37157,0.1721709,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.009161776,Sulfate Portion of PM2.5-PRI,TON
+37157,15.60268,Volatile Organic Compounds,TON
+37151,7.325065e-05,Nitrate portion of PM2.5-PRI,TON
+37151,0.04561192,PM10 Primary (Filt + Cond),TON
+37151,26.35164,Ethyl Benzene,LB
+37151,98.8514,Xylenes (Mixed Isomers),LB
+37151,10.712074,Formaldehyde,LB
+37151,40.8844,"2,2,4-Trimethylpentane",LB
+37149,165.8941,Propionaldehyde,LB
+37149,11.883002,Fluoranthene,LB
+37149,4.700676,Methane,TON
+37149,1.874441,Organic Carbon portion of PM2.5-PRI,TON
+37145,1718.4482,Toluene,LB
+37145,64.32318,Formaldehyde,LB
+37145,0.0014977104,"Dibenzo[a,h]Anthracene",LB
+37145,242.472,Benzene,LB
+37145,9.013598,Naphthalene,LB
+37135,0.446696,Acrolein,LB
+37135,58.83266,Xylenes (Mixed Isomers),LB
+37135,0.015836952,Benzo[b]Fluoranthene,LB
+37135,25.81934,Benzene,LB
+37135,0.13832176,Phenanthrene,LB
+37135,0.00607078,Nitrous Oxide,TON
+37133,1582.986,"1,3-Butadiene",LB
+37133,45889.44,Toluene,LB
+37133,8.479106,Anthracene,LB
+37133,0.019173344,Chromium (VI),LB
+37133,5.787535,Methane,TON
+37133,1.353796,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.2143033,Sulfate Portion of PM2.5-PRI,TON
+37125,0.0002177982,Chromium (VI),LB
+37125,0.018296422,"Benzo[g,h,i,]Perylene",LB
+37125,0.02184988,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,3.279664,Fluoranthene,LB
+37125,16.524646,"2,2,4-Trimethylpentane",LB
+37125,0.9761086,Benz[a]Anthracene,LB
+37125,51.20734,Benzene,LB
+37125,52.66124,Nitrogen Oxides,TON
+37125,3.199604,PM10 Primary (Filt + Cond),TON
+37125,2.952133,Volatile Organic Compounds,TON
+37117,0.3262916,"1,3-Butadiene",LB
+37117,10.706686,Toluene,LB
+37117,0.004444362,Pyrene,LB
+37117,0.005388972,Fluorene,LB
+37117,0.0005574979,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.2310885,PM10 Primary (Filt + Cond),TON
+37123,0.004100101,Sulfur Dioxide,TON
+37123,0.09588452,Chrysene,LB
+37123,70.07656,Formaldehyde,LB
+37123,6.621756,Benzene,LB
+37123,30.53306,Acetaldehyde,LB
+37123,3.679422,Ethyl Benzene,LB
+37123,0.005014958,Anthracene,LB
+37123,0.009794814,Pyrene,LB
+37123,0.002530274,Benzo[a]Pyrene,LB
+37123,4.797944,"2,2,4-Trimethylpentane",LB
+37123,3.087872e-06,Mercury,LB
+37123,5.780685e-05,Sulfate Portion of PM2.5-PRI,TON
+37123,1182.889,"1,3-Butadiene",LB
+37123,7.393354,Anthracene,LB
+37123,0.004464244,Chromium (VI),LB
+37123,2.773106,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,2.199852,Benzo[k]Fluoranthene,LB
+37123,39.47044,Acenaphthylene,LB
+37123,47.02144,Phenanthrene,LB
+37123,17.56401,Fluorene,LB
+37115,0.02176108,Mercury,LB
+37115,2.898749,PM10 Primary (Filt + Cond),TON
+37115,1.273215,PM2.5 Primary (Filt + Cond),TON
+37115,46.98042,Acrolein,LB
+37115,0.7540238,Benzo[b]Fluoranthene,LB
+37115,3.269558,Fluoranthene,LB
+37099,0.006576856,PM2.5 Primary (Filt + Cond),TON
+37099,0.2569516,Styrene,LB
+37099,0.004228176,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.00315546,Benzo[b]Fluoranthene,LB
+37099,0.016411258,Fluoranthene,LB
+37099,13.254134,Benzene,LB
+37099,0.011242928,Acenaphthene,LB
+37095,0.0015259386,"Benzo[g,h,i,]Perylene",LB
+37095,0.12744086,Acenaphthene,LB
+37095,4.622788,Naphthalene,LB
+37095,0.001741523,Nitrous Oxide,TON
+37095,0.2349768,Volatile Organic Compounds,TON
+37095,0.002914017,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.18428862,Styrene,LB
+37095,0.667366,Propionaldehyde,LB
+37095,0.0730412,Fluoranthene,LB
+37095,0.00018236716,Benzo[k]Fluoranthene,LB
+37095,0.009892658,Chrysene,LB
+37095,0.002397676,Manganese,LB
+37095,0.01661587,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.9537502,Anthracene,LB
+37091,8.2891e-05,Chromium (VI),LB
+37091,6.715976e-05,Mercury,LB
+37091,0.0004784031,Nitrate portion of PM2.5-PRI,TON
+37091,6.727441,Nitrogen Oxides,TON
+37091,0.2906432,"1,3-Butadiene",LB
+37091,0.000967274,Arsenic,LB
+37091,0.000360842,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.001597854,Ammonia,TON
+37091,0.004940272,PM10 Primary (Filt + Cond),TON
+37089,2.241912e-06,Chromium (VI),LB
+37089,0.0003522208,"Dibenzo[a,h]Anthracene",LB
+37089,0.0012654308,Nickel,LB
+37089,0.2289402,Carbon Monoxide,TON
+37089,0.03006993,PM10-Primary from certain diesel engines,TON
+37089,0.0001502325,Nitrate portion of PM2.5-PRI,TON
+37089,8.660334e-05,Mercury,LB
+37089,0.5843948,Acenaphthene,LB
+37089,0.02932831,Ammonia,TON
+37089,5.511244,Hexane,LB
+37089,9.924184,Propionaldehyde,LB
+37089,0.0003512226,"Dibenzo[a,h]Anthracene",LB
+37089,5.984312,"2,2,4-Trimethylpentane",LB
+37089,0.10529618,Benz[a]Anthracene,LB
+37087,0.04250418,Benzo[b]Fluoranthene,LB
+37087,0.005809794,Benzo[k]Fluoranthene,LB
+37087,0.08391256,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,1.177051,Volatile Organic Compounds,TON
+37073,0.4187966,Acetaldehyde,LB
+37073,0.002570896,Fluorene,LB
+37073,0.02971568,Styrene,LB
+37073,5.33662,Toluene,LB
+37073,0.3986538,Formaldehyde,LB
+37073,0.0003636952,Benz[a]Anthracene,LB
+37065,0.009962627,Ammonia,TON
+37065,0.07200947,PM2.5 Primary (Filt + Cond),TON
+37065,0.01264782,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,25.9112,Formaldehyde,LB
+37063,0.14199214,Benz[a]Anthracene,LB
+37063,0.7171796,Phenanthrene,LB
+37063,0.03952341,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.01621076,Sulfur Dioxide,TON
+37059,0.4173366,Pyrene,LB
+37059,8.14148,Xylenes (Mixed Isomers),LB
+37059,0.4658324,Fluorene,LB
+37059,8.840136,Carbon Monoxide,TON
+37059,0.003531547,Elemental Carbon portion of PM2.5-PRI,TON
+37053,4.12974,Hexane,LB
+37053,4.565852e-05,Chromium (VI),LB
+37053,0.002416584,"Benzo[g,h,i,]Perylene",LB
+37053,0.0003699061,Nitrate portion of PM2.5-PRI,TON
+37041,0.02837544,Toluene,LB
+37041,1.319544e-05,Benz[a]Anthracene,LB
+37041,0.03261352,Benzene,LB
+37041,26.61731,Carbon Dioxide,TON
+37041,0.0008813126,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.01130056,Volatile Organic Compounds,TON
+37041,1.0821458,Styrene,LB
+37041,358.8734,Toluene,LB
+37041,0.2247914,Acenaphthylene,LB
+37041,0.014946566,Chrysene,LB
+37041,0.002770008,Nickel,LB
+37041,0.003225978,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.6783064,Styrene,LB
+37035,0.17455964,Anthracene,LB
+37035,2.600096,Propionaldehyde,LB
+37035,1.6968134e-05,Chromium (VI),LB
+37035,0.011328424,Benzo[b]Fluoranthene,LB
+37035,53.08274,Formaldehyde,LB
+37035,1.3882592,"2,2,4-Trimethylpentane",LB
+37035,0.008260334,Nickel,LB
+37035,5.171633,Nitrogen Oxides,TON
+37033,0.06287582,Styrene,LB
+37033,0.392878,Benzene,LB
+37033,6.50208e-07,Mercury,LB
+37033,0.014342612,Acenaphthene,LB
+37033,0.0007671782,Methane,TON
+37033,0.07594732,Carbon Monoxide,TON
+37033,0.002871739,Sulfur Dioxide,TON
+37033,1.4416898,Hexane,LB
+37033,0.001554581,Arsenic,LB
+37033,0.7086258,Phenanthrene,LB
+37029,7.589912e-07,Chromium (VI),LB
+37029,0.005381566,Phenanthrene,LB
+37029,0.0007176767,Methane,TON
+37029,0.0006035053,PM2.5 Primary (Filt + Cond),TON
+37029,0.0190752,Volatile Organic Compounds,TON
+37125,2.381468,Benzo[k]Fluoranthene,LB
+37125,7316.774,"2,2,4-Trimethylpentane",LB
+37125,2.336658,Benz[a]Anthracene,LB
+37125,1164.905,"1,3-Butadiene",LB
+37125,376.739,Naphthalene,LB
+37121,1.6402066e-06,Mercury,LB
+37121,1.4138484,Acetaldehyde,LB
+37121,0.1048156,Styrene,LB
+37121,0.003689306,Anthracene,LB
+37121,0.008731096,Fluorene,LB
+37121,4.649525e-06,Nitrate portion of PM2.5-PRI,TON
+37121,0.0776975,Nitrogen Oxides,TON
+37121,0.000815133,Organic Carbon portion of PM2.5-PRI,TON
+37111,369.8146,Benzene,LB
+37101,0.2373094,Methane,TON
+37101,28.27998,Carbon Monoxide,TON
+37101,2.550664,Nitrogen Oxides,TON
+37101,0.01785226,Sulfur Dioxide,TON
+37101,10.172576,Ethyl Benzene,LB
+37101,22.95516,Acrolein,LB
+37101,7.854952,Hexane,LB
+37101,0.7002582,Anthracene,LB
+37101,26.77174,Xylenes (Mixed Isomers),LB
+37101,0.0526863,Manganese,LB
+37101,0.02740554,Arsenic,LB
+37103,1.090179e-06,Mercury,LB
+37103,5.793335,Carbon Dioxide,TON
+37103,0.0001091496,Nitrous Oxide,TON
+37103,4.92386e-06,Sulfate Portion of PM2.5-PRI,TON
+37101,30.74038,Formaldehyde,LB
+37101,0.09329018,Acenaphthene,LB
+37101,0.18897112,Fluorene,LB
+37101,0.03814318,Nitrous Oxide,TON
+37101,1.337954,Volatile Organic Compounds,TON
+37099,0.0005160978,Benzo[a]Pyrene,LB
+37099,0.4102234,"2,2,4-Trimethylpentane",LB
+37099,0.001065665,Fluorene,LB
+37099,9.205425e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.0009290422,Pyrene,LB
+37099,0.0003023796,Benzo[k]Fluoranthene,LB
+37095,0.11793224,Xylenes (Mixed Isomers),LB
+37095,0.016106224,Formaldehyde,LB
+37095,1.870879e-05,Benzo[a]Pyrene,LB
+37095,4.27922e-07,"Dibenzo[a,h]Anthracene",LB
+37095,1.4205856e-05,Benz[a]Anthracene,LB
+37095,4.230289e-05,Methane,TON
+37095,1.218381e-05,Sulfur Dioxide,TON
+37095,0.0009669951,Volatile Organic Compounds,TON
+37091,2.93576,"Benzo[g,h,i,]Perylene",LB
+37091,56.58296,Styrene,LB
+37075,0.4306724,Fluoranthene,LB
+37075,0.04131432,Benzo[a]Pyrene,LB
+37075,0.13639502,Benz[a]Anthracene,LB
+37075,0.008502594,Nickel,LB
+37075,0.2388012,PM25-Primary from certain diesel engines,TON
+37075,0.1565558,Elemental Carbon portion of PM2.5-PRI,TON
+37071,4.653996,Styrene,LB
+37071,22.176,"1,3-Butadiene",LB
+37071,3.740874,Propionaldehyde,LB
+37071,0.00012706792,Chromium (VI),LB
+37071,0.12148678,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.11244684,Manganese,LB
+37071,0.02435442,Arsenic,LB
+37071,0.07277814,Organic Carbon portion of PM2.5-PRI,TON
+37059,1.711293e-05,Chromium (VI),LB
+37059,0.008982676,Benzo[b]Fluoranthene,LB
+37059,0.0012299328,Benzo[k]Fluoranthene,LB
+37059,0.0431686,Organic Carbon portion of PM2.5-PRI,TON
+37055,4.958094,"1,3-Butadiene",LB
+37055,100.38358,Xylenes (Mixed Isomers),LB
+37055,14.24203,Formaldehyde,LB
+37055,0.002517484,Nickel,LB
+37055,0.03309669,Ammonia,TON
+37055,1959.9832,Hexane,LB
+37055,2592.102,"2,2,4-Trimethylpentane",LB
+37055,293.6302,Benzene,LB
+37051,0.0012889918,"1,3-Butadiene",LB
+37051,0.013170152,Acrolein,LB
+37051,5.215446,Formaldehyde,LB
+37051,2.067414e-06,Nickel,LB
+37051,0.000475495,Arsenic,LB
+37051,0.0109216,Nitrous Oxide,TON
+37039,0.00887863,Benzo[b]Fluoranthene,LB
+37039,0.148555,Acenaphthylene,LB
+37039,0.009008588,Benz[a]Anthracene,LB
+37039,1.6937654,Naphthalene,LB
+37037,0.298208,Styrene,LB
+37037,23.92256,Formaldehyde,LB
+37037,0.01550356,Methane,TON
+37037,0.0009034641,Nitrous Oxide,TON
+37037,0.1617012,PM10 Primary (Filt + Cond),TON
+37037,0.006575803,Sulfur Dioxide,TON
+37029,1.7311354,Acrolein,LB
+37029,0.07521388,Fluoranthene,LB
+37029,3.691338e-05,Benzo[k]Fluoranthene,LB
+37029,0.003056004,Arsenic,LB
+37029,9.999468,Acetaldehyde,LB
+37029,0.18056816,Phenanthrene,LB
+37053,18.65804,Styrene,LB
+37053,8387.29,Carbon Dioxide,TON
+37053,0.002278348,Nitrate portion of PM2.5-PRI,TON
+37053,0.08655002,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.017529284,"Benzo[g,h,i,]Perylene",LB
+37053,0.004755452,Benzo[k]Fluoranthene,LB
+37045,1.4292042,Benz[a]Anthracene,LB
+37045,29046.68,Carbon Dioxide,TON
+37045,3.091272,PM25-Primary from certain diesel engines,TON
+37045,3.270502,PM2.5 Primary (Filt + Cond),TON
+37043,0.00446592,Chrysene,LB
+37043,0.002314172,Benzo[a]Pyrene,LB
+37043,0.001714778,Methane,TON
+37043,0.1132101,Carbon Monoxide,TON
+37039,9.842794,Acenaphthene,LB
+37039,92275.58,Carbon Dioxide,TON
+37039,234.8164,Styrene,LB
+37039,6886.244,Hexane,LB
+37039,2.5004,Benz[a]Anthracene,LB
+37027,5.955666,Styrene,LB
+37027,0.5221252,Manganese,LB
+37027,6.197694,Phenanthrene,LB
+37027,2.381931,PM25-Primary from certain diesel engines,TON
+37027,59.87895,Nitrogen Oxides,TON
+37011,1.730886,Anthracene,LB
+37011,0.0001489362,Chromium (VI),LB
+37011,0.001672101,Benzo[k]Fluoranthene,LB
+37011,626.3034,Formaldehyde,LB
+37011,0.04029392,Benzo[a]Pyrene,LB
+37011,0.0016615042,"Dibenzo[a,h]Anthracene",LB
+37011,59.81046,Benzene,LB
+37011,0.087334,Nickel,LB
+37011,3.710133,Volatile Organic Compounds,TON
+37005,33.5938,Toluene,LB
+37005,0.00206776,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,2.227778,Fluoranthene,LB
+37005,2.947526,Acenaphthylene,LB
+37005,4.522876,Phenanthrene,LB
+37005,18.021996,Formaldehyde,LB
+37005,0.002069616,PM10-Primary from certain diesel engines,TON
+37005,1.421635e-05,Nitrate portion of PM2.5-PRI,TON
+37005,0.002415717,PM2.5 Primary (Filt + Cond),TON
+37005,0.0007207286,Sulfur Dioxide,TON
+37005,0.000334343,Sulfate Portion of PM2.5-PRI,TON
+37003,0.0010191004,Manganese,LB
+37003,0.0001509287,Arsenic,LB
+37003,42.92979,Carbon Dioxide,TON
+37003,14.450556,"2,2,4-Trimethylpentane",LB
+37001,29.30662,Benzene,LB
+37001,4.458892e-05,Mercury,LB
+37001,22.47402,Xylenes (Mixed Isomers),LB
+37001,0.01375603,"Benzo[g,h,i,]Perylene",LB
+37001,4.341394,Styrene,LB
+37177,4.19885,Toluene,LB
+37177,0.13375136,Benz[a]Anthracene,LB
+37177,0.1771016,Acenaphthene,LB
+37177,0.1565381,PM10-Primary from certain diesel engines,TON
+37177,0.0007159948,Nitrate portion of PM2.5-PRI,TON
+37177,2.5417,Nitrogen Oxides,TON
+37177,0.005885811,Sulfate Portion of PM2.5-PRI,TON
+37193,0.6650636,"1,3-Butadiene",LB
+37193,0.0009456342,"Benzo[g,h,i,]Perylene",LB
+37193,0.0012145376,Arsenic,LB
+37193,0.256516,Phenanthrene,LB
+37193,0.00065529,Nitrous Oxide,TON
+37193,0.003903543,Sulfur Dioxide,TON
+37185,0.07799282,"1,3-Butadiene",LB
+37185,1.436997,Toluene,LB
+37185,0.0008333962,Nickel,LB
+37185,0.0005649096,Acenaphthene,LB
+37185,0.05647476,Nitrogen Oxides,TON
+37185,0.0005150387,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.005885938,Manganese,LB
+37185,0.2920736,Phenanthrene,LB
+37185,0.0002979368,Nitrous Oxide,TON
+37185,0.01434939,PM10 Primary (Filt + Cond),TON
+37185,0.00011420868,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,6.315362e-05,Benzo[k]Fluoranthene,LB
+37185,37.5356,Formaldehyde,LB
+37185,0.141644,Propionaldehyde,LB
+37185,0.012252832,Pyrene,LB
+37185,0.004342874,Benzo[b]Fluoranthene,LB
+37185,0.003569664,Chrysene,LB
+37185,2.234128,Formaldehyde,LB
+37185,1.897858e-05,Mercury,LB
+37185,0.001160988,Elemental Carbon portion of PM2.5-PRI,TON
+37191,1.551224,PM10-Primary from certain diesel engines,TON
+37191,0.2853635,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.13745872,Styrene,LB
+37187,0.079892,Fluoranthene,LB
+37187,0.02637978,Benz[a]Anthracene,LB
+37187,0.001708132,Nickel,LB
+37187,4.365444,Acetaldehyde,LB
+37183,19.983286,Hexane,LB
+37179,2.529896e-05,Manganese,LB
+37179,0.002819076,Naphthalene,LB
+37179,9.140946e-05,Pyrene,LB
+37179,5.94717e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.03952976,Fluorene,LB
+37019,0.001278877,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.006100358,Nitrous Oxide,TON
+37015,0.0504524,Anthracene,LB
+37015,0.0003329088,Benzo[b]Fluoranthene,LB
+37015,0.71487,Ethyl Benzene,LB
+37015,0.0011150888,Benzo[a]Pyrene,LB
+37015,0.5823122,"2,2,4-Trimethylpentane",LB
+37015,1.2543258e-05,Mercury,LB
+37015,0.01548847,Methane,TON
+37015,0.000865749,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.004332569,Ammonia,TON
+37009,26.52727,Carbon Dioxide,TON
+37009,0.009907216,PM10 Primary (Filt + Cond),TON
+37009,9.110124e-05,Benzo[k]Fluoranthene,LB
+37009,9.098716e-05,"Dibenzo[a,h]Anthracene",LB
+37009,0.091373,"2,2,4-Trimethylpentane",LB
+37009,0.007492754,Benz[a]Anthracene,LB
+37009,0.010841248,Acenaphthene,LB
+37001,11.549536,Hexane,LB
+37001,0.00012087882,Chromium (VI),LB
+37001,0.007134546,"Benzo[g,h,i,]Perylene",LB
+37001,0.002541402,Benzo[k]Fluoranthene,LB
+37001,0.3768704,Benz[a]Anthracene,LB
+37001,0.06993226,Manganese,LB
+37001,0.1025828,Ammonia,TON
+37063,0.003114264,Arsenic,LB
+37063,0.0012555382,Acenaphthene,LB
+37063,8.740706e-05,"Dibenzo[a,h]Anthracene",LB
+37063,0.005281112,Manganese,LB
+37063,0.13127662,Acrolein,LB
+37063,0.3026506,Propionaldehyde,LB
+37063,0.003807942,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.0019508782,Benzo[b]Fluoranthene,LB
+37025,0.02767238,Organic Carbon portion of PM2.5-PRI,TON
+37025,38.40228,Xylenes (Mixed Isomers),LB
+37025,0.02170446,Benzo[b]Fluoranthene,LB
+37025,0.03198676,Fluoranthene,LB
+37025,51.54072,Benzene,LB
+37017,24.72296,Toluene,LB
+37017,17.140002,Propionaldehyde,LB
+37017,0.4762142,Chrysene,LB
+37017,1.221726,PM10 Primary (Filt + Cond),TON
+37011,13.68442,Volatile Organic Compounds,TON
+37009,0.421495,Styrene,LB
+37009,0.9796346,"1,3-Butadiene",LB
+37009,0.0003332748,Benzo[b]Fluoranthene,LB
+37009,0.1654198,Acenaphthylene,LB
+37009,0.168778,Fluorene,LB
+37009,3.768432,Naphthalene,LB
+37009,0.00420083,PM25-Primary from certain diesel engines,TON
+37009,0.004196809,Ammonia,TON
+37009,0.001651047,Sulfur Dioxide,TON
+37005,1.6376552,Propionaldehyde,LB
+37005,2.700764,Xylenes (Mixed Isomers),LB
+37005,0.05618678,Benz[a]Anthracene,LB
+37005,0.0986038,Acenaphthene,LB
+37059,0.7036228,Hexane,LB
+37059,0.0005764496,Anthracene,LB
+37059,0.74986,"2,2,4-Trimethylpentane",LB
+37059,0.0005830424,Benz[a]Anthracene,LB
+37059,1.9850488,Benzene,LB
+37059,7.234676,Acetaldehyde,LB
+37059,0.005405624,Methane,TON
+37059,0.000327087,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.005609382,Ammonia,TON
+37059,0.0554016,Nitrogen Oxides,TON
+37013,0.6531512,Ethyl Benzene,LB
+37013,0.000858654,Benz[a]Anthracene,LB
+37013,0.008638222,Methane,TON
+37013,7.007023e-06,Nitrate portion of PM2.5-PRI,TON
+37169,0.08060562,Ethyl Benzene,LB
+37169,0.0002808572,Fluorene,LB
+37169,0.1432168,Carbon Monoxide,TON
+37115,0.002772286,Anthracene,LB
+37115,0.732869,Propionaldehyde,LB
+37115,0.013787412,"Benzo[g,h,i,]Perylene",LB
+37109,2.75098,Ethyl Benzene,LB
+37177,3.638816e-06,"Benzo[g,h,i,]Perylene",LB
+37177,0.00017181114,Phenanthrene,LB
+37177,7.845094e-05,Fluorene,LB
+37177,9.215694e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37177,9.393694e-06,Benz[a]Anthracene,LB
+37177,5.009562e-09,Chromium (VI),LB
+37177,0.00198151,PM10 Primary (Filt + Cond),TON
+37177,0.0005629181,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,331.5472,Acetaldehyde,LB
+37189,0.5410004,Formaldehyde,LB
+37189,4.138992,Acetaldehyde,LB
+37189,0.0007078298,Fluorene,LB
+37189,0.02676011,Nitrogen Oxides,TON
+37189,0.03878032,Acrolein,LB
+37189,0.8592052,Toluene,LB
+37189,0.08423188,Propionaldehyde,LB
+37185,0.11982784,Toluene,LB
+37185,0.0007831416,Manganese,LB
+37185,3.11047,Acetaldehyde,LB
+37185,0.0006759138,Naphthalene,LB
+37191,0.007772536,Nickel,LB
+37191,0.14974252,Acenaphthene,LB
+37191,0.1374415,PM2.5 Primary (Filt + Cond),TON
+37181,25.25666,Acrolein,LB
+37181,1.1091192,Anthracene,LB
+37181,16.609048,Propionaldehyde,LB
+37181,0.449907,Chrysene,LB
+37181,2.222418,Fluorene,LB
+37181,0.01019601,Nitrous Oxide,TON
+37181,0.332164,Organic Carbon portion of PM2.5-PRI,TON
+37057,15.141782,"2,2,4-Trimethylpentane",LB
+37057,4.214718,Benzene,LB
+37157,0.0016196388,Acenaphthylene,LB
+37145,0.2247954,Propionaldehyde,LB
+37145,0.0007788044,Benzo[b]Fluoranthene,LB
+37145,0.0014132066,Benzo[a]Pyrene,LB
+37145,0.00068758,Benz[a]Anthracene,LB
+37145,1.006015,Carbon Monoxide,TON
+37145,0.0004166642,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.006126169,Ammonia,TON
+37125,7.983196,Xylenes (Mixed Isomers),LB
+37177,90.8733,Benzene,LB
+37177,0.0610782,Methane,TON
+37177,24.59183,Carbon Monoxide,TON
+37177,0.02035809,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.03003948,Sulfur Dioxide,TON
+37177,2.179746,Styrene,LB
+37175,35.82546,Toluene,LB
+37175,0.001664066,Chrysene,LB
+37175,0.0010426158,Manganese,LB
+37175,0.0001785002,Arsenic,LB
+37175,0.3524644,Naphthalene,LB
+37175,0.00154528,Ammonia,TON
+37175,6.003307e-06,Nitrate portion of PM2.5-PRI,TON
+37163,21.4966,"1,3-Butadiene",LB
+37163,17.88464,Hexane,LB
+37163,2.37582,Anthracene,LB
+37163,35.74036,Propionaldehyde,LB
+37163,0.0377629,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,5.141144,Fluoranthene,LB
+37163,0.957605,Chrysene,LB
+37163,0.00020976,Mercury,LB
+37163,0.7410775,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.2092631,Ammonia,TON
+37163,0.7073328,Organic Carbon portion of PM2.5-PRI,TON
+37163,0.07175293,Sulfate Portion of PM2.5-PRI,TON
+37163,37.13288,Acrolein,LB
+37163,0.11051126,Benzo[b]Fluoranthene,LB
+37163,2.683248,Acenaphthylene,LB
+37163,0.006392412,Nitrate portion of PM2.5-PRI,TON
+37163,0.2303803,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,2.756149,Volatile Organic Compounds,TON
+37163,34.4184,Hexane,LB
+37163,0.000365439,Chromium (VI),LB
+37163,0.4587068,Chrysene,LB
+37163,0.06190634,Arsenic,LB
+37163,604.192,Acetaldehyde,LB
+37173,1.828368,Ethyl Benzene,LB
+37173,2.986732,Xylenes (Mixed Isomers),LB
+37173,0.3405448,Fluoranthene,LB
+37173,0.0008421934,"Dibenzo[a,h]Anthracene",LB
+37173,8.079924e-06,Mercury,LB
+37173,24.29168,Acetaldehyde,LB
+37173,0.19653688,Acenaphthene,LB
+37173,0.5875782,Phenanthrene,LB
+37173,2.107337,Carbon Monoxide,TON
+37173,0.02937659,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.004433324,Sulfur Dioxide,TON
+37185,0.003264726,Chromium (VI),LB
+37185,1.6066064,Chrysene,LB
+37185,1.6382152,Benz[a]Anthracene,LB
+37185,2.395304,Nitrous Oxide,TON
+37181,3.484544,Acrolein,LB
+37181,297.6226,Hexane,LB
+37181,0.0007268876,Mercury,LB
+37181,0.00940951,Nitrous Oxide,TON
+37181,0.002392312,Sulfate Portion of PM2.5-PRI,TON
+37001,1.576513,Acrolein,LB
+37001,31.8693,Xylenes (Mixed Isomers),LB
+37001,0.03338302,Benzo[a]Pyrene,LB
+37001,0.015385392,Benz[a]Anthracene,LB
+37001,2007.846,Carbon Dioxide,TON
+37001,0.03277129,Nitrous Oxide,TON
+37001,0.1053163,Ammonia,TON
+37001,0.0001199324,Nitrate portion of PM2.5-PRI,TON
+37001,1.846269,Nitrogen Oxides,TON
+37001,0.01813997,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.0897034,"1,3-Butadiene",LB
+37127,0.733152,Hexane,LB
+37127,0.05158565,Volatile Organic Compounds,TON
+37101,4.660436e-05,Chromium (VI),LB
+37101,0.004242756,Benzo[k]Fluoranthene,LB
+37101,4.084688,"2,2,4-Trimethylpentane",LB
+37101,0.16634782,Naphthalene,LB
+37101,0.03038055,Methane,TON
+37101,2.952421e-05,Nitrate portion of PM2.5-PRI,TON
+37101,0.04222324,PM10 Primary (Filt + Cond),TON
+37177,0.03415058,Ethyl Benzene,LB
+37177,0.12595268,Xylenes (Mixed Isomers),LB
+37177,4.373262e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,9.001082e-06,Manganese,LB
+37177,2.038248e-07,Mercury,LB
+37177,0.01792145,Acetaldehyde,LB
+37177,7.922598e-05,PM10 Primary (Filt + Cond),TON
+37177,0.001004349,Volatile Organic Compounds,TON
+37161,8.807666e-06,Mercury,LB
+37161,0.00016838578,Arsenic,LB
+37161,36.22905,Carbon Dioxide,TON
+37161,16.34436,"2,2,4-Trimethylpentane",LB
+37151,0.0007109502,"Benzo[g,h,i,]Perylene",LB
+37151,0.02248514,Chrysene,LB
+37151,15.295938,Formaldehyde,LB
+37151,0.03835556,Benz[a]Anthracene,LB
+37151,1.4404534,Benzene,LB
+37151,3.057014e-06,Mercury,LB
+37151,0.05023012,Acenaphthene,LB
+37151,0.04482427,PM10-Primary from certain diesel engines,TON
+37151,0.003060706,Ammonia,TON
+37139,0.000266568,"Benzo[g,h,i,]Perylene",LB
+37139,3.673624e-05,"Dibenzo[a,h]Anthracene",LB
+37139,0.2382868,Phenanthrene,LB
+37141,4.264548,"1,3-Butadiene",LB
+37141,7.911566,Toluene,LB
+37141,6.939846,Propionaldehyde,LB
+37141,0.04733722,Benzo[a]Pyrene,LB
+37141,0.0008558961,Nitrate portion of PM2.5-PRI,TON
+37141,0.03412776,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.0004923826,Mercury,LB
+37131,26.09148,Acetaldehyde,LB
+37131,0.007609053,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.02929237,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.02354638,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,5.541822,Naphthalene,LB
+37125,0.1229467,PM10-Primary from certain diesel engines,TON
+37125,0.1610765,Anthracene,LB
+37125,0.03484736,Benzo[a]Pyrene,LB
+37125,0.003549106,Arsenic,LB
+37121,0.0001458436,Arsenic,LB
+37121,0.008921788,Phenanthrene,LB
+37121,0.07521316,Nitrogen Oxides,TON
+37111,28.45916,"1,3-Butadiene",LB
+37111,43.67532,Hexane,LB
+37111,130.5388,Benzene,LB
+37111,29.45878,Carbon Monoxide,TON
+37111,6.703406,Volatile Organic Compounds,TON
+37157,0.641722,Styrene,LB
+37157,0.01841728,Manganese,LB
+37157,0.03437459,Methane,TON
+37157,0.139351,PM10-Primary from certain diesel engines,TON
+37157,2.138332,Nitrogen Oxides,TON
+37157,0.05504212,Organic Carbon portion of PM2.5-PRI,TON
+37157,1.4738128,Styrene,LB
+37157,0.5718982,Acenaphthylene,LB
+37157,0.016360404,Manganese,LB
+37157,0.01884597,PM10-Primary from certain diesel engines,TON
+37157,0.0008163006,Nitrous Oxide,TON
+37157,0.02153156,PM2.5 Primary (Filt + Cond),TON
+37157,0.6160209,Volatile Organic Compounds,TON
+37157,0.002269148,Benzo[a]Pyrene,LB
+37157,0.7155942,"1,3-Butadiene",LB
+37157,0.0850869,Acrolein,LB
+37157,1.7270026,Acetaldehyde,LB
+37157,0.2773244,Naphthalene,LB
+37157,13.5563,Carbon Dioxide,TON
+37157,0.1128007,Nitrogen Oxides,TON
+37157,0.0002875273,Sulfur Dioxide,TON
+37157,4.750008e-05,Sulfate Portion of PM2.5-PRI,TON
+37153,13.336588,Ethyl Benzene,LB
+37153,29.73624,Xylenes (Mixed Isomers),LB
+37153,3.0401,Fluoranthene,LB
+37153,0.5765398,Chrysene,LB
+37153,0.012298458,"Dibenzo[a,h]Anthracene",LB
+37153,43.54134,Naphthalene,LB
+37153,5156.443,Carbon Dioxide,TON
+37153,0.1916932,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.003045762,Nickel,LB
+37153,0.05717336,Anthracene,LB
+37153,0.0002085465,Nitrate portion of PM2.5-PRI,TON
+37151,16.407756,Benzene,LB
+37151,3.914344e-05,Mercury,LB
+37151,0.3194935,PM25-Primary from certain diesel engines,TON
+37151,4.016036e-05,Chromium (VI),LB
+37151,0.05349376,Benzo[a]Pyrene,LB
+37151,0.2211908,Benz[a]Anthracene,LB
+37149,6.347312,Toluene,LB
+37149,0.0006190192,Chrysene,LB
+37149,2.427276e-05,"Dibenzo[a,h]Anthracene",LB
+37149,0.001023172,PM2.5 Primary (Filt + Cond),TON
+37147,97.11412,Propionaldehyde,LB
+37147,115.38336,Xylenes (Mixed Isomers),LB
+37147,785.3864,Acetaldehyde,LB
+37147,198.44452,Naphthalene,LB
+37147,0.5831814,Methane,TON
+37147,0.004107608,Nitrate portion of PM2.5-PRI,TON
+37147,11791.134,Benzene,LB
+37147,22.2915,Fluorene,LB
+37147,6.063524,Nitrous Oxide,TON
+37147,5.550753,Sulfur Dioxide,TON
+37147,243.4626,Volatile Organic Compounds,TON
+37147,8010.234,Ethyl Benzene,LB
+37147,1732.7132,"1,3-Butadiene",LB
+37139,2.28262,Ethyl Benzene,LB
+37139,0.07926456,Propionaldehyde,LB
+37139,0.006279114,Fluoranthene,LB
+37139,3.092432e-05,"Dibenzo[a,h]Anthracene",LB
+37139,2.387772,"2,2,4-Trimethylpentane",LB
+37139,0.0002264218,Arsenic,LB
+37139,0.02347932,Phenanthrene,LB
+37139,0.0002982762,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.7237076,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,7.156462,Acenaphthylene,LB
+37135,1582.428,Benzene,LB
+37135,1.5701894,Acenaphthene,LB
+37135,1.120362,Methane,TON
+37135,0.4219562,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.016311892,Anthracene,LB
+37131,0.005468902,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.06976158,Formaldehyde,LB
+37131,0.13541996,"2,2,4-Trimethylpentane",LB
+37131,0.000207465,Acenaphthene,LB
+37131,0.0004202368,Fluorene,LB
+37131,0.010787034,Naphthalene,LB
+37131,0.11637322,Ethyl Benzene,LB
+37131,0.0001196487,Ammonia,TON
+37123,24.15264,Xylenes (Mixed Isomers),LB
+37123,0.4384782,Naphthalene,LB
+37123,0.002401511,Nitrous Oxide,TON
+37123,0.3694207,Nitrogen Oxides,TON
+37123,0.00166615,Sulfur Dioxide,TON
+37123,0.2068054,Volatile Organic Compounds,TON
+37115,0.18405072,Styrene,LB
+37115,0.16317514,Propionaldehyde,LB
+37115,2.948058e-07,Chromium (VI),LB
+37115,2.428284,Formaldehyde,LB
+37115,6.043178,"2,2,4-Trimethylpentane",LB
+37115,5.650384e-05,Arsenic,LB
+37115,2.481406,Acetaldehyde,LB
+37115,4.36083,Methane,TON
+37115,5497.948,Hexane,LB
+37115,7.127788,"Benzo[g,h,i,]Perylene",LB
+37115,209.588,Nitrogen Oxides,TON
+37115,5.843512,PM10 Primary (Filt + Cond),TON
+37115,2.917109,PM2.5 Primary (Filt + Cond),TON
+37115,0.7407474,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.04276166,PM10 Primary (Filt + Cond),TON
+37113,2.492316,"2,2,4-Trimethylpentane",LB
+37113,9.563374,Naphthalene,LB
+37109,0.6181104,Anthracene,LB
+37109,0.007222902,Benzo[b]Fluoranthene,LB
+37109,0.03475328,Nickel,LB
+37109,0.012132534,Arsenic,LB
+37109,5.677766,Benzo[b]Fluoranthene,LB
+37109,1.800354,Elemental Carbon portion of PM2.5-PRI,TON
+37099,159857.6,Carbon Dioxide,TON
+37099,345.3346,Nitrogen Oxides,TON
+37089,0.8142948,"1,3-Butadiene",LB
+37089,0.03879076,Chrysene,LB
+37089,0.7691608,"2,2,4-Trimethylpentane",LB
+37089,0.02001312,Manganese,LB
+37081,114.66204,Ethyl Benzene,LB
+37081,284.5678,Toluene,LB
+37081,95.4465,"2,2,4-Trimethylpentane",LB
+37081,2.696478,Methane,TON
+37081,76.55617,Carbon Monoxide,TON
+37081,8.40599,PM10-Primary from certain diesel engines,TON
+37081,0.1379715,Nitrous Oxide,TON
+37077,9222.072,Carbon Dioxide,TON
+37077,0.684534,PM10 Primary (Filt + Cond),TON
+37077,0.08322753,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.9514954,Fluoranthene,LB
+37077,0.194105,Benz[a]Anthracene,LB
+37069,5.436384,Propionaldehyde,LB
+37069,1.0274758,Pyrene,LB
+37069,0.004582732,"Benzo[g,h,i,]Perylene",LB
+37069,0.02579934,Manganese,LB
+37069,0.3308844,Acenaphthene,LB
+37065,0.05470012,Ethyl Benzene,LB
+37065,0.00018031922,Anthracene,LB
+37065,1.7736626,Propionaldehyde,LB
+37065,0.003142074,Manganese,LB
+37065,2.046642e-06,Nickel,LB
+37065,0.01752859,PM10 Primary (Filt + Cond),TON
+37065,0.003589429,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.0006143939,Sulfur Dioxide,TON
+37067,7.083584,Toluene,LB
+37067,1.4291782e-07,Chromium (VI),LB
+37067,0.003105096,Fluoranthene,LB
+37067,0.000965912,Benzo[a]Pyrene,LB
+37067,0.001864194,PM10 Primary (Filt + Cond),TON
+37067,2.644835e-05,Sulfate Portion of PM2.5-PRI,TON
+37051,4.257136,"1,3-Butadiene",LB
+37051,0.05500698,Fluoranthene,LB
+37051,0.014454462,Benzo[k]Fluoranthene,LB
+37051,0.16791496,Acenaphthylene,LB
+37051,36.44306,"2,2,4-Trimethylpentane",LB
+37051,11.406808,Acetaldehyde,LB
+37051,0.2011074,Phenanthrene,LB
+37051,0.01281826,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.008859686,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,300.4932,Ethyl Benzene,LB
+37117,7.39268,Acrolein,LB
+37117,0.002870012,Benzo[b]Fluoranthene,LB
+37117,10.270452,Naphthalene,LB
+37117,5.472669,Carbon Monoxide,TON
+37117,0.09919268,PM2.5 Primary (Filt + Cond),TON
+37111,5.149636,Acetaldehyde,LB
+37111,0.002901159,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.003983917,Nitrous Oxide,TON
+37111,5.5353e-05,Nitrate portion of PM2.5-PRI,TON
+37111,0.014503548,Anthracene,LB
+37111,5.31742,Formaldehyde,LB
+37111,0.01897315,Benzo[a]Pyrene,LB
+37121,3046.65,Ethyl Benzene,LB
+37121,1.5643416,Benzo[a]Pyrene,LB
+37121,0.004456568,Nitrate portion of PM2.5-PRI,TON
+37121,0.8062858,Organic Carbon portion of PM2.5-PRI,TON
+37115,2.003972,Ethyl Benzene,LB
+37115,4.28676,Toluene,LB
+37115,1.524444,Hexane,LB
+37115,2.296946,Nitrogen Oxides,TON
+37115,0.001505278,Benzo[k]Fluoranthene,LB
+37115,5.620494,Benzene,LB
+37115,0.0015240724,Arsenic,LB
+37115,334.141,Carbon Dioxide,TON
+37115,1.9800334,Styrene,LB
+37115,7.24633,Propionaldehyde,LB
+37115,12.587886,Benzene,LB
+37115,2.687352e-05,Mercury,LB
+37115,0.6083574,PM25-Primary from certain diesel engines,TON
+37115,0.4072441,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.03005172,Ethyl Benzene,LB
+37113,7.923364e-05,Chrysene,LB
+37113,0.0003871046,Fluorene,LB
+37099,0.0019908998,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.0013601632,Benzo[k]Fluoranthene,LB
+37099,0.005000234,Ammonia,TON
+37095,146.87036,Toluene,LB
+37095,0.0080555,Benzo[b]Fluoranthene,LB
+37095,0.0002580458,"Dibenzo[a,h]Anthracene",LB
+37095,0.0265372,Acenaphthene,LB
+37095,3.219552e-05,Nitrate portion of PM2.5-PRI,TON
+37079,0.0236067,Acenaphthylene,LB
+37079,0.00517475,Acenaphthene,LB
+37079,0.0008798058,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,15.610502,Styrene,LB
+37081,88.97596,Acrolein,LB
+37081,0.11687488,Nickel,LB
+37081,0.5657172,Methane,TON
+37081,3.935332,PM10 Primary (Filt + Cond),TON
+37081,0.5140725,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.0004289208,"Dibenzo[a,h]Anthracene",LB
+37057,43.23958,Benzene,LB
+37057,0.0016367824,Manganese,LB
+37057,0.2538132,Phenanthrene,LB
+37057,2.425008,Naphthalene,LB
+37057,17.79023,Carbon Monoxide,TON
+37057,0.7351083,Nitrogen Oxides,TON
+37057,0.001479168,Sulfur Dioxide,TON
+37055,8.05106,Acrolein,LB
+37055,6.314304,Toluene,LB
+37055,6.045772,Xylenes (Mixed Isomers),LB
+37055,0.003116932,"Benzo[g,h,i,]Perylene",LB
+37055,0.003593258,Arsenic,LB
+37055,0.6677172,Fluorene,LB
+37055,1045.107,Carbon Dioxide,TON
+37055,0.2167132,PM25-Primary from certain diesel engines,TON
+37055,0.002570558,Nitrous Oxide,TON
+37049,0.003431614,Acenaphthylene,LB
+37049,1.0952166,Benzene,LB
+37049,1.9254262,Anthracene,LB
+37049,0.03278438,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.12875334,Benzo[b]Fluoranthene,LB
+37049,0.017665266,Benzo[k]Fluoranthene,LB
+37049,0.07377796,Nickel,LB
+37049,14.03607,Carbon Monoxide,TON
+37035,14.898036,Styrene,LB
+37035,0.9560829,Methane,TON
+37035,131.7812,Nitrogen Oxides,TON
+37013,2.034576,Fluoranthene,LB
+37013,0.007654016,Benzo[k]Fluoranthene,LB
+37013,6.417128e-05,Chromium (VI),LB
+37013,2.248792,Fluoranthene,LB
+37013,0.009246608,"Dibenzo[a,h]Anthracene",LB
+37013,29.24876,Naphthalene,LB
+37013,0.0644846,Methane,TON
+37013,1.322191,PM10-Primary from certain diesel engines,TON
+37021,1.0736842,Anthracene,LB
+37021,0.356516,Chrysene,LB
+37021,0.1322198,Manganese,LB
+37021,7001.966,Carbon Dioxide,TON
+37021,42.88372,Volatile Organic Compounds,TON
+37005,0.04506,"Benzo[g,h,i,]Perylene",LB
+37005,0.002648376,Manganese,LB
+37005,0.002002468,Nickel,LB
+37005,1.550113,Volatile Organic Compounds,TON
+37005,87.117,Hexane,LB
+37049,0.3203654,Styrene,LB
+37049,1.3346552,"1,3-Butadiene",LB
+37049,26.49588,Toluene,LB
+37049,0.010281622,Anthracene,LB
+37049,23.21722,Xylenes (Mixed Isomers),LB
+37049,8.95629e-05,Chromium (VI),LB
+37049,0.005765604,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.14289924,Benzo[k]Fluoranthene,LB
+37113,0.18135108,Benzo[a]Pyrene,LB
+37113,0.09658406,Manganese,LB
+37113,13.74276,Nitrogen Oxides,TON
+37113,0.05965423,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,31.1447,Toluene,LB
+37099,9.806122,Hexane,LB
+37099,0.16918964,Manganese,LB
+37099,0.003775198,Nitrate portion of PM2.5-PRI,TON
+37099,41.03495,Nitrogen Oxides,TON
+37095,0.0010546042,Benzo[b]Fluoranthene,LB
+37095,0.00014578876,"Dibenzo[a,h]Anthracene",LB
+37095,0.004825666,Manganese,LB
+37095,2.268724,Carbon Monoxide,TON
+37095,0.04220848,PM10-Primary from certain diesel engines,TON
+37095,0.03883113,PM25-Primary from certain diesel engines,TON
+37095,0.002614796,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.001358295,Sulfate Portion of PM2.5-PRI,TON
+37095,0.2204319,Volatile Organic Compounds,TON
+37083,1.078585e-05,Chrysene,LB
+37083,0.006283246,Formaldehyde,LB
+37083,2.361968e-05,Benzo[a]Pyrene,LB
+37083,0.0004506588,Styrene,LB
+37083,3.800148e-09,Chromium (VI),LB
+37083,3.82965e-05,Fluorene,LB
+37073,0.03960345,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.0005515928,Nitrous Oxide,TON
+37073,0.430638,Styrene,LB
+37073,0.000434264,Benzo[k]Fluoranthene,LB
+37073,0.04258598,Benz[a]Anthracene,LB
+37065,23.31056,Fluorene,LB
+37065,13.14919,PM10 Primary (Filt + Cond),TON
+37061,2.71665e-06,Chromium (VI),LB
+37061,0.0005222364,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.05646164,Acenaphthylene,LB
+37061,0.02314426,Benz[a]Anthracene,LB
+37061,0.02804585,PM10-Primary from certain diesel engines,TON
+37061,0.009629447,Organic Carbon portion of PM2.5-PRI,TON
+37051,168.59738,Benzene,LB
+37051,1.3807014,Manganese,LB
+37051,52.72527,Carbon Monoxide,TON
+37051,79711.48,Carbon Dioxide,TON
+37051,1.142235,Ammonia,TON
+37051,0.6665979,Sulfate Portion of PM2.5-PRI,TON
+37049,4.71592,Benzo[k]Fluoranthene,LB
+37049,13364.282,"2,2,4-Trimethylpentane",LB
+37049,17.953892,Acenaphthene,LB
+37049,97.41084,Phenanthrene,LB
+37049,932.1184,Naphthalene,LB
+37049,17.48786,Ammonia,TON
+37035,200.2356,Acetaldehyde,LB
+37035,19.637706,Styrene,LB
+37035,36.74274,"1,3-Butadiene",LB
+37035,0.7593216,Anthracene,LB
+37035,0.05503861,Nitrous Oxide,TON
+37035,10.41845,Nitrogen Oxides,TON
+37035,0.1934412,Organic Carbon portion of PM2.5-PRI,TON
+37027,3.088728e-05,Mercury,LB
+37027,0.0006264522,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.00487471,Nitrous Oxide,TON
+37027,7.836666e-06,Nitrate portion of PM2.5-PRI,TON
+37027,0.001727526,Benzo[b]Fluoranthene,LB
+37027,0.01299503,PM10 Primary (Filt + Cond),TON
+37027,0.001383642,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.002384148,Sulfur Dioxide,TON
+37027,0.900478,"1,3-Butadiene",LB
+37027,7.158324,Hexane,LB
+37027,0.0005406162,Benzo[k]Fluoranthene,LB
+37027,0.0008540917,PM2.5 Primary (Filt + Cond),TON
+37027,0.0002067542,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.02097592,Volatile Organic Compounds,TON
+37027,0.0011922992,Acenaphthene,LB
+37027,0.028993,Styrene,LB
+37047,8345.614,Xylenes (Mixed Isomers),LB
+37045,2.484258,Toluene,LB
+37045,0.8688472,"2,2,4-Trimethylpentane",LB
+37045,0.1718353,PM10-Primary from certain diesel engines,TON
+37045,0.1580817,PM25-Primary from certain diesel engines,TON
+37045,0.2526255,PM10 Primary (Filt + Cond),TON
+37043,272.274,Ethyl Benzene,LB
+37041,2014.554,Toluene,LB
+37041,356.3684,Hexane,LB
+37039,1.784816,Ethyl Benzene,LB
+37039,6.537628,Xylenes (Mixed Isomers),LB
+37039,0.0010004678,Benzo[k]Fluoranthene,LB
+37039,0.0001704554,Nickel,LB
+37027,6.718278,Propionaldehyde,LB
+37027,0.5882986,Fluoranthene,LB
+37027,0.10373328,Benzo[k]Fluoranthene,LB
+37027,0.13237852,Benzo[a]Pyrene,LB
+37027,21.03546,Naphthalene,LB
+37007,0.0005569302,Phenanthrene,LB
+37007,3.315662e-05,Sulfate Portion of PM2.5-PRI,TON
+37007,0.03105036,Volatile Organic Compounds,TON
+37007,0.00015706202,Arsenic,LB
+37007,1.7319408,Acetaldehyde,LB
+37007,0.07935384,Carbon Monoxide,TON
+37007,34.00766,Carbon Dioxide,TON
+37007,0.009837895,PM2.5 Primary (Filt + Cond),TON
+37007,0.05693208,Styrene,LB
+37007,3.987074,Formaldehyde,LB
+37007,0.00298143,Benzo[a]Pyrene,LB
+37007,0.0008455896,Benzo[k]Fluoranthene,LB
+37007,0.01351133,Acenaphthylene,LB
+37007,0.9533172,Formaldehyde,LB
+37007,2.623574e-05,"Dibenzo[a,h]Anthracene",LB
+37007,0.016115714,Phenanthrene,LB
+37007,0.001982583,Nitrous Oxide,TON
+37019,1.839349,Volatile Organic Compounds,TON
+37019,24.08492,Xylenes (Mixed Isomers),LB
+37019,0.003017998,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,1.4201694,Fluoranthene,LB
+37019,329.1146,Formaldehyde,LB
+37019,8.430934,"2,2,4-Trimethylpentane",LB
+37019,0.25275,Benz[a]Anthracene,LB
+37011,5.875032,Ethyl Benzene,LB
+37011,0.365388,Benz[a]Anthracene,LB
+37011,16.17648,Benzene,LB
+37011,1.1302934,Fluorene,LB
+37009,5.307002,"1,3-Butadiene",LB
+37009,0.3313668,Benz[a]Anthracene,LB
+37009,18.709712,Benzene,LB
+37009,0.5296102,Acenaphthene,LB
+37009,0.8877551,PM10-Primary from certain diesel engines,TON
+37009,0.5390721,Elemental Carbon portion of PM2.5-PRI,TON
+37009,25.62518,Nitrogen Oxides,TON
+37009,27.54208,Xylenes (Mixed Isomers),LB
+37009,0.04140572,Acenaphthylene,LB
+37009,0.0001479638,Nickel,LB
+37009,0.009094204,Acenaphthene,LB
+37009,47.34784,Carbon Dioxide,TON
+37009,0.006809369,PM10 Primary (Filt + Cond),TON
+37009,7.754736e-05,Sulfate Portion of PM2.5-PRI,TON
+37009,7.336022,Ethyl Benzene,LB
+37009,0.2169382,Styrene,LB
+37005,5.608642,Acrolein,LB
+37005,8.073322,Naphthalene,LB
+37005,9.09181,Nitrogen Oxides,TON
+37005,0.4667537,PM10 Primary (Filt + Cond),TON
+37005,0.02038762,Manganese,LB
+37005,0.09866833,Nitrous Oxide,TON
+37005,0.03017008,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.1550294,"Benzo[g,h,i,]Perylene",LB
+37003,6.62491e-06,Styrene,LB
+37003,8.707642e-08,Benzo[k]Fluoranthene,LB
+37003,0.0003293892,Benzene,LB
+37003,9.231586e-09,Arsenic,LB
+37003,0.0001064579,Carbon Monoxide,TON
+37001,3.809854,Arsenic,LB
+37001,1883.4782,Naphthalene,LB
+37001,998.8569,Nitrogen Oxides,TON
+37185,0.0009964437,PM10 Primary (Filt + Cond),TON
+37185,0.00013972936,Benzo[b]Fluoranthene,LB
+37185,0.0002646044,Benzo[a]Pyrene,LB
+37185,0.005833268,Naphthalene,LB
+37185,18.26491,Carbon Dioxide,TON
+37055,6.875422e-06,Chromium (VI),LB
+37055,0.003979352,"Benzo[g,h,i,]Perylene",LB
+37055,0.0014950806,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.0007824292,Benzo[b]Fluoranthene,LB
+37055,0.7442976,"2,2,4-Trimethylpentane",LB
+37055,124.1849,Carbon Dioxide,TON
+37055,0.001792372,Nitrous Oxide,TON
+37055,0.07381965,Nitrogen Oxides,TON
+37043,0.7791794,Acetaldehyde,LB
+37043,0.0018694944,Styrene,LB
+37043,5.953436e-05,Anthracene,LB
+37043,0.13211692,Xylenes (Mixed Isomers),LB
+37043,6.59828e-05,Benzo[k]Fluoranthene,LB
+37043,0.00012432842,Manganese,LB
+37167,0.2021506,Ethyl Benzene,LB
+37167,0.03630972,Acrolein,LB
+37167,0.000681475,Pyrene,LB
+37167,0.001601282,Acenaphthylene,LB
+37167,0.0007003604,Fluorene,LB
+37167,0.428257,Carbon Monoxide,TON
+37167,0.03705684,Nitrogen Oxides,TON
+37167,0.0005043102,Mercury,LB
+37167,0.006288202,Nickel,LB
+37167,96.18864,Acetaldehyde,LB
+37167,0.015455752,Fluorene,LB
+37167,0.3976848,Naphthalene,LB
+37167,921.5271,Carbon Dioxide,TON
+37167,17.495106,Toluene,LB
+37167,0.013540312,Benzo[a]Pyrene,LB
+37175,0.00015467882,Acenaphthene,LB
+37175,0.01024732,PM10 Primary (Filt + Cond),TON
+37175,0.03033374,Ethyl Benzene,LB
+37175,0.016518646,"1,3-Butadiene",LB
+37175,9.58611e-07,Nickel,LB
+37173,4.300612,"1,3-Butadiene",LB
+37173,0.00760186,Arsenic,LB
+37173,5.081024,Naphthalene,LB
+37173,0.04455856,Methane,TON
+37173,0.0001205281,Nitrate portion of PM2.5-PRI,TON
+37165,0.0002639008,Nickel,LB
+37165,0.002267454,Acenaphthene,LB
+37165,0.012497114,Phenanthrene,LB
+37165,76.16017,Carbon Dioxide,TON
+37165,0.0003617675,Elemental Carbon portion of PM2.5-PRI,TON
+37165,7.929088e-05,Sulfate Portion of PM2.5-PRI,TON
+37165,1.3244272,Ethyl Benzene,LB
+37165,0.0437485,Acrolein,LB
+37165,2.111208e-06,Chromium (VI),LB
+37165,0.769409,Formaldehyde,LB
+37173,0.0004307212,Fluorene,LB
+37173,0.002084109,Methane,TON
+37173,0.002028696,PM10 Primary (Filt + Cond),TON
+37173,0.02195386,Acrolein,LB
+37153,0.02394048,Acrolein,LB
+37153,0.05601758,Propionaldehyde,LB
+37153,0.0013275126,Phenanthrene,LB
+37123,0.02419254,"1,3-Butadiene",LB
+37123,0.18387844,Hexane,LB
+37123,0.0012006018,"Benzo[g,h,i,]Perylene",LB
+37123,0.0001800105,Chrysene,LB
+37123,1.8651578e-05,Mercury,LB
+37123,0.001612577,Ammonia,TON
+37123,1.496301e-06,Nitrate portion of PM2.5-PRI,TON
+37123,0.0250836,Nitrogen Oxides,TON
+37109,11.052038,"2,2,4-Trimethylpentane",LB
+37109,0.07065875,Ammonia,TON
+37109,1.206493,Nitrogen Oxides,TON
+37109,0.000792837,Sulfate Portion of PM2.5-PRI,TON
+37109,0.009614956,Anthracene,LB
+37093,1.1618204,Ethyl Benzene,LB
+37175,0.0002237238,Arsenic,LB
+37175,0.9230498,Acetaldehyde,LB
+37175,40.96279,Carbon Dioxide,TON
+37175,0.0005352471,Organic Carbon portion of PM2.5-PRI,TON
+37175,3.316569e-05,Sulfate Portion of PM2.5-PRI,TON
+37175,0.05568194,Acrolein,LB
+37175,0.002485654,"Benzo[g,h,i,]Perylene",LB
+37175,0.00072983,Benzo[b]Fluoranthene,LB
+37175,0.00072983,Benzo[k]Fluoranthene,LB
+37175,0.0007358306,Chrysene,LB
+37175,0.0009393322,Benzo[a]Pyrene,LB
+37175,192.5715,Acrolein,LB
+37175,2.496632,Chrysene,LB
+37175,7175.534,"2,2,4-Trimethylpentane",LB
+37175,0.509472,Nickel,LB
+37175,21.06122,Fluorene,LB
+37175,0.008700555,Nitrate portion of PM2.5-PRI,TON
+37175,1.525909,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.08164802,Sulfate Portion of PM2.5-PRI,TON
+37167,0.0011042728,Benzo[k]Fluoranthene,LB
+37167,35.76558,Formaldehyde,LB
+37167,0.02697764,Benzo[a]Pyrene,LB
+37167,3.221376,Benzene,LB
+37167,0.01186776,Manganese,LB
+37167,0.09376723,PM10-Primary from certain diesel engines,TON
+37167,0.0004731994,Nitrate portion of PM2.5-PRI,TON
+37167,0.03846682,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.11835542,Anthracene,LB
+37167,0.12476088,Fluoranthene,LB
+37167,1.5424752,Benzene,LB
+37167,0.011321088,Manganese,LB
+37167,0.01066555,Methane,TON
+37167,0.07832359,PM25-Primary from certain diesel engines,TON
+37167,0.08406562,PM2.5 Primary (Filt + Cond),TON
+37167,0.0106221,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.05902782,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.777271,Benzo[a]Pyrene,LB
+37159,109.16362,Benzene,LB
+37159,1.018019,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.3756811,Ammonia,TON
+37159,0.1427632,Sulfate Portion of PM2.5-PRI,TON
+37149,5.033716,Styrene,LB
+37149,0.008274434,Benzo[k]Fluoranthene,LB
+37149,394.5428,Formaldehyde,LB
+37149,10.323792,"2,2,4-Trimethylpentane",LB
+37149,0.0848301,Nickel,LB
+37149,2.40973,Fluorene,LB
+37149,41.79814,Naphthalene,LB
+37149,0.2383409,Methane,TON
+37149,12.15386,Carbon Monoxide,TON
+37149,1.92382,PM10-Primary from certain diesel engines,TON
+37149,0.3049812,Organic Carbon portion of PM2.5-PRI,TON
+37149,2.376006,PM10 Primary (Filt + Cond),TON
+37151,141.9066,"1,3-Butadiene",LB
+37151,1832.4956,Acetaldehyde,LB
+37151,24.58678,Fluorene,LB
+37151,0.007727496,Nitrate portion of PM2.5-PRI,TON
+37151,24.94573,Volatile Organic Compounds,TON
+37151,0.6562902,Anthracene,LB
+37151,0.0005777244,"Dibenzo[a,h]Anthracene",LB
+37151,19.163046,Toluene,LB
+37151,6.639422,Hexane,LB
+37151,0.016047724,Arsenic,LB
+37151,21.19143,Carbon Monoxide,TON
+37151,0.04447856,PM25-Primary from certain diesel engines,TON
+37151,0.01019635,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.000347217,Nitrate portion of PM2.5-PRI,TON
+37147,94.22682,Xylenes (Mixed Isomers),LB
+37139,2.243828,"1,3-Butadiene",LB
+37139,1.2305066e-05,Chromium (VI),LB
+37139,0.09418276,Chrysene,LB
+37139,72.7716,Formaldehyde,LB
+37139,0.00726008,Nickel,LB
+37139,7.848156,Naphthalene,LB
+37139,0.06170877,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.02949477,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.04880202,"1,3-Butadiene",LB
+37199,0.008799652,Acrolein,LB
+37199,9.447978e-05,Benzo[k]Fluoranthene,LB
+37199,0.1891236,"2,2,4-Trimethylpentane",LB
+37199,9.646452e-05,Benz[a]Anthracene,LB
+37199,0.4109088,Benzene,LB
+37199,5.649421,Carbon Dioxide,TON
+37199,0.0001742549,PM2.5 Primary (Filt + Cond),TON
+37195,0.0006950002,Anthracene,LB
+37195,0.0010400964,Nickel,LB
+37195,0.0007244574,Acenaphthene,LB
+37195,143.6305,Carbon Dioxide,TON
+37195,0.01010886,PM10 Primary (Filt + Cond),TON
+37197,207.6468,Xylenes (Mixed Isomers),LB
+37197,0.07046604,Methane,TON
+37197,7.359726e-07,Chromium (VI),LB
+37197,0.021635,"Benzo[g,h,i,]Perylene",LB
+37197,0.0886665,Phenanthrene,LB
+37197,0.000691541,Sulfur Dioxide,TON
+37189,4.15885e-06,Chromium (VI),LB
+37189,0.0007190984,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.018105542,Chrysene,LB
+37189,13.618272,Formaldehyde,LB
+37189,0.3583066,"2,2,4-Trimethylpentane",LB
+37189,0.0005024691,Nitrous Oxide,TON
+37187,22.96492,Benzene,LB
+37187,1.3916108,Fluorene,LB
+37187,26.66936,Naphthalene,LB
+37187,0.003516582,Nitrous Oxide,TON
+37187,0.05118303,Ammonia,TON
+37187,5.001146,Nitrogen Oxides,TON
+37179,0.780741,"2,2,4-Trimethylpentane",LB
+37179,200.1017,Carbon Dioxide,TON
+37179,0.0005712714,Nitrous Oxide,TON
+37179,0.001742608,Sulfur Dioxide,TON
+37179,0.001004064,"Dibenzo[a,h]Anthracene",LB
+37177,0.002099326,Nickel,LB
+37177,0.03126138,Volatile Organic Compounds,TON
+37177,0.19204132,Ethyl Benzene,LB
+37177,0.013721564,Anthracene,LB
+37177,0.02186828,Fluoranthene,LB
+37177,0.003369096,Benz[a]Anthracene,LB
+37173,9.49267,Propionaldehyde,LB
+37173,189.6329,Formaldehyde,LB
+37173,0.1026209,Methane,TON
+37173,0.1945021,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.662167,PM10 Primary (Filt + Cond),TON
+37173,0.0805706,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.810495,Styrene,LB
+37173,6.291212,Naphthalene,LB
+37173,0.06467026,PM10-Primary from certain diesel engines,TON
+37041,3.164444,Styrene,LB
+37041,1.1250368,Pyrene,LB
+37041,0.06128378,Chrysene,LB
+37041,5.289748,"2,2,4-Trimethylpentane",LB
+37041,0.0002751872,Nitrate portion of PM2.5-PRI,TON
+37041,0.1995693,PM10 Primary (Filt + Cond),TON
+37033,0.0009704524,"Dibenzo[a,h]Anthracene",LB
+37033,0.03003746,Benz[a]Anthracene,LB
+37033,0.007765984,Arsenic,LB
+37033,22.61472,Acetaldehyde,LB
+37033,2.20296,Styrene,LB
+37033,0.01025807,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,3.408029,Volatile Organic Compounds,TON
+37031,13.08086,"1,3-Butadiene",LB
+37031,0.5233298,Organic Carbon portion of PM2.5-PRI,TON
+37031,2.453859,PM2.5 Primary (Filt + Cond),TON
+37025,694.8994,Propionaldehyde,LB
+37025,532864.4,Carbon Dioxide,TON
+37025,3.154582,Elemental Carbon portion of PM2.5-PRI,TON
+37025,17.13421,PM2.5 Primary (Filt + Cond),TON
+37025,374.5018,Styrene,LB
+37025,43274.64,Xylenes (Mixed Isomers),LB
+37025,9.076064,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,73.80914,Acenaphthylene,LB
+37025,9.046902,Benzo[a]Pyrene,LB
+37025,840.5,Naphthalene,LB
+37173,0.16927642,Pyrene,LB
+37173,0.000994888,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.01777672,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.002789444,Elemental Carbon portion of PM2.5-PRI,TON
+37097,5.135668e-05,Nitrate portion of PM2.5-PRI,TON
+37097,0.4383146,Styrene,LB
+37097,62.89194,Toluene,LB
+37097,0.04005564,"Benzo[g,h,i,]Perylene",LB
+37081,633.3922,Nitrogen Oxides,TON
+37081,1.916183,Sulfur Dioxide,TON
+37081,1.975775,Sulfate Portion of PM2.5-PRI,TON
+37081,65.79568,Styrene,LB
+37081,15.831626,Anthracene,LB
+37081,323.0688,Propionaldehyde,LB
+37081,31.1364,Fluoranthene,LB
+37081,0.09912196,Benzo[k]Fluoranthene,LB
+37081,760.6128,Benzene,LB
+37081,177.6683,Carbon Monoxide,TON
+37081,0.03858526,Styrene,LB
+37081,0.003774558,Pyrene,LB
+37081,0.01301495,"Benzo[g,h,i,]Perylene",LB
+37081,0.0001121851,"Dibenzo[a,h]Anthracene",LB
+37081,0.00375621,Fluorene,LB
+37081,0.3530164,Nitrogen Oxides,TON
+37081,0.003201208,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,3.266576,Ethyl Benzene,LB
+37077,0.12595628,Styrene,LB
+37077,18.667858,Toluene,LB
+37077,0.00389943,Benzo[b]Fluoranthene,LB
+37077,5.80361,Benzene,LB
+37077,0.03027756,Phenanthrene,LB
+37075,0.8657754,Ethyl Benzene,LB
+37075,0.2215368,Pyrene,LB
+37075,0.0011002072,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.0288613,Chrysene,LB
+37075,0.6813706,"2,2,4-Trimethylpentane",LB
+37075,0.00372948,Manganese,LB
+37075,11.201816,Acetaldehyde,LB
+37075,0.2865378,Phenanthrene,LB
+37075,0.1665846,Fluorene,LB
+37075,0.05127464,PM2.5 Primary (Filt + Cond),TON
+37071,49.13296,Ethyl Benzene,LB
+37071,73.56848,Propionaldehyde,LB
+37071,1.0550068,Benzo[a]Pyrene,LB
+37071,1.310765,Elemental Carbon portion of PM2.5-PRI,TON
+37071,5.728978,PM10 Primary (Filt + Cond),TON
+37071,0.1653633,Sulfate Portion of PM2.5-PRI,TON
+37071,0.0008157064,Chrysene,LB
+37071,0.00018641252,Arsenic,LB
+37071,0.001083269,Methane,TON
+37071,0.0006085594,Nitrous Oxide,TON
+37071,0.08858232,Nitrogen Oxides,TON
+37071,3.219072,Xylenes (Mixed Isomers),LB
+37071,9.725712e-07,Chromium (VI),LB
+37063,0.05773468,Chrysene,LB
+37063,0.007636746,Manganese,LB
+37063,5.72167e-06,Mercury,LB
+37063,0.00438376,Nickel,LB
+37063,0.09424936,PM25-Primary from certain diesel engines,TON
+37063,1.588697,Nitrogen Oxides,TON
+37063,0.09715738,PM2.5 Primary (Filt + Cond),TON
+37063,0.002494607,Sulfur Dioxide,TON
+37057,96.10654,Toluene,LB
+37057,50.68654,Propionaldehyde,LB
+37057,7.772754,Pyrene,LB
+37057,5.997552,Fluoranthene,LB
+37057,0.02028448,Benzo[k]Fluoranthene,LB
+37057,4.977544,Acenaphthylene,LB
+37057,468.0766,Acetaldehyde,LB
+37057,6.158962,Fluorene,LB
+37057,0.9883948,Methane,TON
+37057,40.27024,Carbon Monoxide,TON
+37057,0.008755071,Nitrate portion of PM2.5-PRI,TON
+37057,116.954,Nitrogen Oxides,TON
+37057,0.3816684,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.00011972822,Chromium (VI),LB
+37057,1.4196282,Fluoranthene,LB
+37057,0.02336658,Arsenic,LB
+37055,0.04717676,Mercury,LB
+37055,0.3662923,Elemental Carbon portion of PM2.5-PRI,TON
+37055,1.472089,Sulfur Dioxide,TON
+37055,0.06543361,Sulfate Portion of PM2.5-PRI,TON
+37055,2048.822,Ethyl Benzene,LB
+37055,7590.42,Xylenes (Mixed Isomers),LB
+37055,4.372566,Fluoranthene,LB
+37055,13.486468,Acenaphthylene,LB
+37053,0.2577288,Pyrene,LB
+37053,0.06341762,Benzo[a]Pyrene,LB
+37053,268.1216,"2,2,4-Trimethylpentane",LB
+37053,34.19802,Acetaldehyde,LB
+37053,8.00866,Naphthalene,LB
+37053,40.72502,Carbon Monoxide,TON
+37053,0.009614041,Nitrous Oxide,TON
+37053,0.1367195,Ammonia,TON
+37053,0.06258632,PM2.5 Primary (Filt + Cond),TON
+37053,0.01629653,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.003787454,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.04989874,Benzo[a]Pyrene,LB
+37047,0.19939848,Benz[a]Anthracene,LB
+37047,0.8636366,Fluorene,LB
+37047,0.0008931693,Nitrate portion of PM2.5-PRI,TON
+37047,0.005247654,Sulfate Portion of PM2.5-PRI,TON
+37039,0.00760531,Benzo[a]Pyrene,LB
+37039,0.005270307,Methane,TON
+37037,0.26605,Acrolein,LB
+37037,18.693356,Hexane,LB
+37037,0.012310694,Anthracene,LB
+37037,38.99274,Xylenes (Mixed Isomers),LB
+37037,0.06489428,Acenaphthylene,LB
+37037,0.738659,Naphthalene,LB
+37037,0.004332928,Nitrous Oxide,TON
+37037,0.3347399,Volatile Organic Compounds,TON
+37029,0.00429521,Ethyl Benzene,LB
+37029,0.3413244,Propionaldehyde,LB
+37029,9.918182e-09,Chromium (VI),LB
+37029,5.399446e-06,"Benzo[g,h,i,]Perylene",LB
+37029,0.0007972491,Ammonia,TON
+37029,1.769739e-05,Sulfate Portion of PM2.5-PRI,TON
+37027,0.08564502,Benzo[b]Fluoranthene,LB
+37027,0.00017431788,Mercury,LB
+37027,0.06420124,Nickel,LB
+37027,46.71774,Naphthalene,LB
+37027,13.68602,Carbon Monoxide,TON
+37173,0.7966308,Toluene,LB
+37173,0.00015779968,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.0004642272,Fluoranthene,LB
+37173,9.993298e-05,Chrysene,LB
+37173,1.7680188e-05,Nickel,LB
+37173,0.1835109,Carbon Monoxide,TON
+37173,0.0001587828,Nitrous Oxide,TON
+37173,9.80714e-05,Organic Carbon portion of PM2.5-PRI,TON
+37171,20.41668,Anthracene,LB
+37171,7921.36,Acetaldehyde,LB
+37171,740.0164,Nitrogen Oxides,TON
+37171,22.80473,PM10 Primary (Filt + Cond),TON
+37171,10.73035,PM2.5 Primary (Filt + Cond),TON
+37171,2.918354,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.6811474,Elemental Carbon portion of PM2.5-PRI,TON
+37165,1.352324,Volatile Organic Compounds,TON
+37165,1.9253404,Fluoranthene,LB
+37157,2.777435,Volatile Organic Compounds,TON
+37157,17.943128,Fluorene,LB
+37157,1886.277,Carbon Monoxide,TON
+37157,1.159864,Elemental Carbon portion of PM2.5-PRI,TON
+37157,9745.09,Hexane,LB
+37157,14.967316,Pyrene,LB
+37157,3.020228,Benz[a]Anthracene,LB
+37157,9310.996,Benzene,LB
+37147,47.82238,Toluene,LB
+37147,8.084218,Pyrene,LB
+37147,1.1870554,Chrysene,LB
+37147,0.09869506,Nickel,LB
+37147,0.01083364,Nitrate portion of PM2.5-PRI,TON
+37147,0.1065614,Sulfur Dioxide,TON
+37145,0.03563012,Nickel,LB
+37145,0.014861248,Arsenic,LB
+37145,11.18423,Nitrogen Oxides,TON
+37145,0.02530889,Sulfur Dioxide,TON
+37145,0.02814005,Sulfate Portion of PM2.5-PRI,TON
+37145,4.619644,Ammonia,TON
+37145,7.250596,Pyrene,LB
+37145,1.039149,Manganese,LB
+37145,0.4580762,Nickel,LB
+37129,132.96206,Acrolein,LB
+37129,4.735444,Anthracene,LB
+37129,224.3876,Xylenes (Mixed Isomers),LB
+37129,2026.886,Formaldehyde,LB
+37129,9.874714,Fluorene,LB
+37129,146.6018,Nitrogen Oxides,TON
+37129,0.6117146,Ethyl Benzene,LB
+37129,0.05902528,Acenaphthene,LB
+37129,0.12745608,Fluorene,LB
+37129,0.03827444,PM25-Primary from certain diesel engines,TON
+37129,0.0181207,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.001396307,Sulfur Dioxide,TON
+37141,0.0499765,Benz[a]Anthracene,LB
+37141,0.004449784,Nickel,LB
+37141,0.2671278,Phenanthrene,LB
+37141,0.006160248,Sulfur Dioxide,TON
+37141,0.005505497,Sulfate Portion of PM2.5-PRI,TON
+37141,0.6922612,"1,3-Butadiene",LB
+37141,1.7653434,Xylenes (Mixed Isomers),LB
+37137,5.81033e-05,"Dibenzo[a,h]Anthracene",LB
+37137,0.004809926,Benz[a]Anthracene,LB
+37137,0.19814314,Benzene,LB
+37137,0.0003503108,Ammonia,TON
+37137,0.0001309647,Sulfur Dioxide,TON
+37137,0.1401936,Nitrogen Oxides,TON
+37137,0.5236348,Hexane,LB
+37131,3.458042,Propionaldehyde,LB
+37131,1.2503346e-05,Chromium (VI),LB
+37131,0.3600998,Acenaphthylene,LB
+37131,0.012154426,Manganese,LB
+37131,0.02284478,Methane,TON
+37131,425.2204,Carbon Dioxide,TON
+37131,0.1805704,PM10-Primary from certain diesel engines,TON
+37131,11.02951,Nitrogen Oxides,TON
+37131,30.6026,Toluene,LB
+37131,2.675104,Pyrene,LB
+37125,54.64732,"2,2,4-Trimethylpentane",LB
+37125,2.805315,Volatile Organic Compounds,TON
+37113,0.01150911,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.7711808,Ethyl Benzene,LB
+37113,1.7530636,Xylenes (Mixed Isomers),LB
+37113,0.0014129178,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.01860999,Benzo[a]Pyrene,LB
+37113,0.007088222,Manganese,LB
+37113,0.5266431,Carbon Monoxide,TON
+37109,1.596697,Pyrene,LB
+37109,0.113179,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.2582383,Sulfur Dioxide,TON
+37097,13.042236,Ethyl Benzene,LB
+37097,0.00017305868,Chromium (VI),LB
+37097,0.004198958,"Benzo[g,h,i,]Perylene",LB
+37097,3.170932,Phenanthrene,LB
+37097,0.03039338,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.02564494,Sulfur Dioxide,TON
+37091,0.1887904,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.0827924,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.01753011,Sulfur Dioxide,TON
+37091,14.340652,Toluene,LB
+37091,1.3770648,Fluoranthene,LB
+37091,0.4366448,Benz[a]Anthracene,LB
+37105,0.8636824,"1,3-Butadiene",LB
+37101,0.1143709,Hexane,LB
+37101,9.296438e-05,Chrysene,LB
+37101,0.00010146446,Manganese,LB
+37101,0.0001293637,Methane,TON
+37101,0.0001134098,Nitrous Oxide,TON
+37101,6.806762e-07,Nitrate portion of PM2.5-PRI,TON
+37101,0.0002509459,PM2.5 Primary (Filt + Cond),TON
+37099,0.6628012,Volatile Organic Compounds,TON
+37099,1.6052798,Styrene,LB
+37099,0.621552,Acenaphthylene,LB
+37099,0.15237994,Chrysene,LB
+37129,0.04979608,Nitrous Oxide,TON
+37129,0.02514076,Organic Carbon portion of PM2.5-PRI,TON
+37129,1.6563994,Acrolein,LB
+37129,3.818188,Propionaldehyde,LB
+37129,30.3762,Formaldehyde,LB
+37129,0.03456394,Benzo[a]Pyrene,LB
+37129,47.03116,Benzene,LB
+37129,0.01765295,Nickel,LB
+37129,0.0270678,Arsenic,LB
+37129,2777.28,Carbon Dioxide,TON
+37131,0.0006106668,Anthracene,LB
+37131,0.001148606,Fluoranthene,LB
+37131,0.0007924485,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,771.1286,Ethyl Benzene,LB
+37177,2835.26,Xylenes (Mixed Isomers),LB
+37177,1.2758772,"Benzo[g,h,i,]Perylene",LB
+37177,69.44602,Naphthalene,LB
+37177,16976.92,Carbon Dioxide,TON
+37175,611.6236,Xylenes (Mixed Isomers),LB
+37175,4.45567e-05,Chromium (VI),LB
+37175,0.12192466,"Benzo[g,h,i,]Perylene",LB
+37175,271.7368,"2,2,4-Trimethylpentane",LB
+37175,0.7163148,Phenanthrene,LB
+37175,0.0001337683,Nitrate portion of PM2.5-PRI,TON
+37169,1.5693058,Ethyl Benzene,LB
+37169,3.717054,Acrolein,LB
+37169,0.14178612,Anthracene,LB
+37169,2.4903,Propionaldehyde,LB
+37169,0.3351764,Pyrene,LB
+37169,0.06374354,Benz[a]Anthracene,LB
+37169,0.15347586,Acenaphthene,LB
+37169,0.4752064,Phenanthrene,LB
+37169,560.8619,Carbon Dioxide,TON
+37169,0.09144655,PM25-Primary from certain diesel engines,TON
+37169,0.008324332,Ammonia,TON
+37169,16.767134,Toluene,LB
+37169,4.12756,Hexane,LB
+37169,0.0013984802,Chrysene,LB
+37169,1.2063486,Formaldehyde,LB
+37169,0.003925112,Acenaphthene,LB
+37169,0.003389954,Methane,TON
+37169,0.002776988,PM2.5 Primary (Filt + Cond),TON
+37153,13.04169,Ethyl Benzene,LB
+37153,0.00016264552,Chromium (VI),LB
+37153,0.014658156,"Benzo[g,h,i,]Perylene",LB
+37153,0.009691016,Benzo[k]Fluoranthene,LB
+37153,0.00017631592,Mercury,LB
+37153,0.03686768,Arsenic,LB
+37153,167.87944,Acetaldehyde,LB
+37153,0.3538772,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.09442918,Sulfate Portion of PM2.5-PRI,TON
+37135,406.8948,Toluene,LB
+37135,0.0778508,Benzo[b]Fluoranthene,LB
+37135,0.13478754,Benzo[a]Pyrene,LB
+37135,0.07722547,Methane,TON
+37135,0.07782655,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.1569652,PM2.5 Primary (Filt + Cond),TON
+37135,0.05075145,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.004785991,Sulfate Portion of PM2.5-PRI,TON
+37137,0.3184833,PM10 Primary (Filt + Cond),TON
+37137,0.01707722,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.008389298,Sulfate Portion of PM2.5-PRI,TON
+37137,0.006684452,Benzo[b]Fluoranthene,LB
+37137,0.0009236558,"Dibenzo[a,h]Anthracene",LB
+37137,0.215884,Benz[a]Anthracene,LB
+37137,0.0414338,Nickel,LB
+37137,139.189,Acetaldehyde,LB
+37129,0.00535998,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.0006929968,Arsenic,LB
+37129,0.018966322,Acenaphthene,LB
+37129,0.10274314,Phenanthrene,LB
+37065,3.174928,Ethyl Benzene,LB
+37065,0.009557744,Fluoranthene,LB
+37065,0.00635252,Benzo[k]Fluoranthene,LB
+37065,67.6484,Acetaldehyde,LB
+37065,0.6997255,Nitrogen Oxides,TON
+37137,0.0001131945,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.001075342,"Benzo[g,h,i,]Perylene",LB
+37137,0.0002179176,Benzo[k]Fluoranthene,LB
+37137,0.0003991956,Benzo[a]Pyrene,LB
+37137,9.27552e-06,"Dibenzo[a,h]Anthracene",LB
+37137,0.0002875558,Nickel,LB
+37137,0.001361273,Phenanthrene,LB
+37133,42.07178,Toluene,LB
+37175,0.0499791,Acenaphthene,LB
+37175,0.3722917,Carbon Monoxide,TON
+37175,0.04392053,PM10-Primary from certain diesel engines,TON
+37175,0.0005074876,Nitrous Oxide,TON
+37175,0.0625573,PM10 Primary (Filt + Cond),TON
+37175,0.04281895,PM2.5 Primary (Filt + Cond),TON
+37175,1.253329,Acrolein,LB
+37175,0.16841208,Pyrene,LB
+37175,0.002133156,Nickel,LB
+37175,0.0008953008,Arsenic,LB
+37175,0.1619202,Hexane,LB
+37175,0.0009032552,Acenaphthylene,LB
+37175,8.564296e-05,Benzo[a]Pyrene,LB
+37175,3.66623e-07,Mercury,LB
+37175,0.003380247,Volatile Organic Compounds,TON
+37165,22.60288,Toluene,LB
+37165,0.00951351,"Benzo[g,h,i,]Perylene",LB
+37165,0.003554314,Benzo[a]Pyrene,LB
+37165,2.267558,Carbon Monoxide,TON
+37165,0.003940438,PM2.5 Primary (Filt + Cond),TON
+37159,14.627398,Hexane,LB
+37159,0.0017162714,Arsenic,LB
+37159,0.0843759,Phenanthrene,LB
+37155,124.42402,Toluene,LB
+37155,72.76168,Xylenes (Mixed Isomers),LB
+37155,29.08618,Benzene,LB
+37155,0.005086182,Manganese,LB
+37147,2.397444,Acenaphthylene,LB
+37147,0.19872232,Chrysene,LB
+37147,0.0001145024,Mercury,LB
+37147,0.05692212,Nickel,LB
+37147,0.0239417,Arsenic,LB
+37147,0.5111699,PM10-Primary from certain diesel engines,TON
+37143,3.58145,Ethyl Benzene,LB
+37143,9.726848,Benzene,LB
+37143,11.65926,Nitrogen Oxides,TON
+37141,0.05683828,Styrene,LB
+37141,0.0011966634,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,2.952234,Benzene,LB
+37127,0.02526798,"Benzo[g,h,i,]Perylene",LB
+37127,0.00949355,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.009416656,Benzo[a]Pyrene,LB
+37127,0.0002178492,"Dibenzo[a,h]Anthracene",LB
+37127,0.0010401426,Nickel,LB
+37127,0.00170765,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.005578141,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.2687916,PM10-Primary from certain diesel engines,TON
+37111,0.0016440092,"Dibenzo[a,h]Anthracene",LB
+37111,0.3814382,Acenaphthene,LB
+37111,3.700466e-05,Chromium (VI),LB
+37111,0.003712318,Benzo[a]Pyrene,LB
+37111,1.8239926,"2,2,4-Trimethylpentane",LB
+37111,28.51106,Acetaldehyde,LB
+37111,0.01353787,PM10-Primary from certain diesel engines,TON
+37177,0.6692146,Hexane,LB
+37177,0.0016793974,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.0008885726,Benzo[k]Fluoranthene,LB
+37177,0.0006836508,Chrysene,LB
+37177,0.0007722516,Benz[a]Anthracene,LB
+37177,6.508732e-05,Mercury,LB
+37177,114.0164,Carbon Dioxide,TON
+37177,0.006479446,Ammonia,TON
+37177,0.00212527,PM2.5 Primary (Filt + Cond),TON
+37079,0.011041182,Styrene,LB
+37079,0.841816,Xylenes (Mixed Isomers),LB
+37079,0.000381708,Acenaphthene,LB
+37079,0.0007731724,Fluorene,LB
+37079,4.645018e-06,Chromium (VI),LB
+37171,0.04598676,Anthracene,LB
+37171,0.014081416,Benzo[k]Fluoranthene,LB
+37171,31.12988,"2,2,4-Trimethylpentane",LB
+37171,0.012059046,Manganese,LB
+37171,0.00010818254,Mercury,LB
+37171,0.01053911,Organic Carbon portion of PM2.5-PRI,TON
+37167,1702.8126,Ethyl Benzene,LB
+37167,3318.494,"2,2,4-Trimethylpentane",LB
+37167,49.47126,Volatile Organic Compounds,TON
+37165,29.40886,Acetaldehyde,LB
+37165,5.34064,Acrolein,LB
+37165,0.05311162,Benz[a]Anthracene,LB
+37165,1.6395182e-05,Mercury,LB
+37161,15.973052,"2,2,4-Trimethylpentane",LB
+37161,0.004565354,Benz[a]Anthracene,LB
+37161,13.816852,Benzene,LB
+37161,2.57688e-05,Mercury,LB
+37161,0.000492683,Arsenic,LB
+37161,0.07079894,Phenanthrene,LB
+37161,0.02627808,Fluorene,LB
+37161,5.473385,Carbon Monoxide,TON
+37161,0.01579263,PM10 Primary (Filt + Cond),TON
+37161,0.007728588,PM2.5 Primary (Filt + Cond),TON
+37149,1.3428474,Hexane,LB
+37149,0.003065728,Pyrene,LB
+37149,0.0002386261,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.0009471716,Nitrous Oxide,TON
+37149,0.09688585,Nitrogen Oxides,TON
+37147,6124.696,"2,2,4-Trimethylpentane",LB
+37019,0.004892536,"1,3-Butadiene",LB
+37019,0.2856288,Toluene,LB
+37019,0.0002063196,Pyrene,LB
+37019,6.441078e-05,Benzo[b]Fluoranthene,LB
+37019,0.00018133792,Fluoranthene,LB
+37019,6.441078e-05,Benzo[k]Fluoranthene,LB
+37019,0.02760812,Acetaldehyde,LB
+37019,0.0001339719,PM2.5 Primary (Filt + Cond),TON
+37017,1631.5104,Hexane,LB
+37015,0.235897,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.007791693,Nitrous Oxide,TON
+37015,0.07240759,Ammonia,TON
+37015,0.1117808,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,3.254396,Styrene,LB
+37015,6.144794,Hexane,LB
+37015,0.010870162,"Benzo[g,h,i,]Perylene",LB
+37015,0.013640808,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.5855294,Benz[a]Anthracene,LB
+37015,22.44218,Benzene,LB
+37007,9.33848,Styrene,LB
+37007,20.46122,Naphthalene,LB
+37007,5345.717,Carbon Dioxide,TON
+37003,7.809276,Carbon Monoxide,TON
+37003,1.03164,PM25-Primary from certain diesel engines,TON
+37003,1.089889,PM2.5 Primary (Filt + Cond),TON
+37003,0.04340107,Sulfate Portion of PM2.5-PRI,TON
+37003,8.106384,Ethyl Benzene,LB
+37003,18.893666,Acrolein,LB
+37003,0.8375038,Anthracene,LB
+37003,0.3444792,Chrysene,LB
+37003,0.5865284,Benz[a]Anthracene,LB
+37001,5.00673,"1,3-Butadiene",LB
+37001,0.2428828,Acenaphthylene,LB
+37001,62.01314,Benzene,LB
+37001,0.003727208,Arsenic,LB
+37001,0.2901998,Phenanthrene,LB
+37001,9.500874e-05,Nitrate portion of PM2.5-PRI,TON
+37001,0.7930463,Volatile Organic Compounds,TON
+37001,0.017205134,Benz[a]Anthracene,LB
+37001,1899.6764,Hexane,LB
+37001,11.326446,Acenaphthylene,LB
+37001,0.3329432,Arsenic,LB
+37001,851.5098,Acetaldehyde,LB
+37001,0.2358473,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.08762636,Ethyl Benzene,LB
+37041,0.3139596,Xylenes (Mixed Isomers),LB
+37041,0.0006967676,Acenaphthylene,LB
+37041,0.00011116648,Chrysene,LB
+37041,0.0002627858,Benzo[a]Pyrene,LB
+37041,0.0001066374,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,9.116935e-06,Sulfate Portion of PM2.5-PRI,TON
+37149,6.440744,Xylenes (Mixed Isomers),LB
+37149,0.007395556,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.005709344,Fluoranthene,LB
+37149,0.00839835,PM2.5 Primary (Filt + Cond),TON
+37173,0.10839746,Styrene,LB
+37173,0.6177036,Acrolein,LB
+37173,0.4085674,Propionaldehyde,LB
+37173,0.0015813132,Benzo[b]Fluoranthene,LB
+37173,0.2044536,"2,2,4-Trimethylpentane",LB
+37173,0.01767472,Benz[a]Anthracene,LB
+37173,0.7384766,Benzene,LB
+37193,35.85282,Acrolein,LB
+37193,27.09386,Toluene,LB
+37193,438.9836,Formaldehyde,LB
+37193,5987.015,Carbon Dioxide,TON
+37193,2.107601,PM25-Primary from certain diesel engines,TON
+37191,0.01720487,Methane,TON
+37191,0.06864379,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.1834707,PM10 Primary (Filt + Cond),TON
+37191,0.1174984,PM2.5 Primary (Filt + Cond),TON
+37189,1.5718862,Acenaphthylene,LB
+37189,0.18637324,Benzo[a]Pyrene,LB
+37189,9.28095,"2,2,4-Trimethylpentane",LB
+37189,0.003305279,Nitrate portion of PM2.5-PRI,TON
+37189,1.768943,Volatile Organic Compounds,TON
+37187,0.00254901,Pyrene,LB
+37187,2.648616e-05,"Dibenzo[a,h]Anthracene",LB
+37187,1.2646784,"2,2,4-Trimethylpentane",LB
+37187,0.0009461449,Nitrous Oxide,TON
+37183,55.06156,Propionaldehyde,LB
+37183,1.374363,Chrysene,LB
+37183,1232.8764,Formaldehyde,LB
+37183,0.711402,Benzo[a]Pyrene,LB
+37183,106.73804,Benzene,LB
+37183,0.12396132,Nickel,LB
+37183,504.6892,Acetaldehyde,LB
+37183,12.884032,Phenanthrene,LB
+37183,0.8579974,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.2052305,Ammonia,TON
+37183,1.024627,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.38434,Propionaldehyde,LB
+37183,0.005086778,Chrysene,LB
+37183,0.02611611,PM10 Primary (Filt + Cond),TON
+37183,0.003064619,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,1.406972,"2,2,4-Trimethylpentane",LB
+37181,0.002450405,Nitrous Oxide,TON
+37181,8.824146e-06,Nitrate portion of PM2.5-PRI,TON
+37181,0.003702728,PM2.5 Primary (Filt + Cond),TON
+37181,0.08815191,Volatile Organic Compounds,TON
+37181,0.0012568632,Benzo[b]Fluoranthene,LB
+37059,0.231967,Ethyl Benzene,LB
+37059,0.009492194,Styrene,LB
+37059,0.00018592054,Chrysene,LB
+37059,0.0003708638,Benzo[a]Pyrene,LB
+37059,0.0002020694,Benz[a]Anthracene,LB
+37059,1.61165e-05,Nickel,LB
+37059,6.284905e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.0005859894,PM10 Primary (Filt + Cond),TON
+37059,0.0001771573,Sulfur Dioxide,TON
+37059,0.006789334,Volatile Organic Compounds,TON
+37059,2.306472,Xylenes (Mixed Isomers),LB
+37059,4.219042e-08,Chromium (VI),LB
+37059,0.004529858,Acenaphthylene,LB
+37059,0.016180384,Acrolein,LB
+37059,0.0009940328,Acenaphthene,LB
+37059,1.221198e-06,Nitrate portion of PM2.5-PRI,TON
+37059,3.966559e-05,Sulfur Dioxide,TON
+37057,0.4677472,Pyrene,LB
+37057,0.00252273,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.3559044,Fluoranthene,LB
+37057,4.93478,Benzene,LB
+37057,0.1449521,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.002325131,Nitrous Oxide,TON
+37057,0.02773609,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.2914824,Volatile Organic Compounds,TON
+37057,2.446672,Fluoranthene,LB
+37057,0.6445104,Benzo[a]Pyrene,LB
+37057,32.16174,Acrolein,LB
+37057,0.4762,Benzo[b]Fluoranthene,LB
+37051,0.3603976,Benzo[b]Fluoranthene,LB
+37051,38.76826,Carbon Monoxide,TON
+37051,4.077557,PM25-Primary from certain diesel engines,TON
+37051,0.02129186,Nitrate portion of PM2.5-PRI,TON
+37051,4.491108,PM2.5 Primary (Filt + Cond),TON
+37049,0.06760438,Anthracene,LB
+37049,0.0008955686,"Benzo[g,h,i,]Perylene",LB
+37049,21.05302,Formaldehyde,LB
+37049,0.014868254,Benzo[a]Pyrene,LB
+37049,0.556794,"2,2,4-Trimethylpentane",LB
+37049,0.09908616,PM10-Primary from certain diesel engines,TON
+37049,0.05733623,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.0008621816,Nitrous Oxide,TON
+37049,0.009006127,Ammonia,TON
+37049,0.02254134,Organic Carbon portion of PM2.5-PRI,TON
+37047,20.12172,Hexane,LB
+37047,0.0278403,Pyrene,LB
+37047,16.787152,Benzene,LB
+37047,0.0004935696,Nickel,LB
+37047,0.0007567998,Arsenic,LB
+37047,3.552269e-05,Nitrate portion of PM2.5-PRI,TON
+37047,0.01250461,PM2.5 Primary (Filt + Cond),TON
+37045,32.50438,Toluene,LB
+37045,6.673166e-06,Chromium (VI),LB
+37045,0.001279006,Arsenic,LB
+37045,0.003774528,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.002781421,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,96.67186,Hexane,LB
+37025,22.12934,Pyrene,LB
+37025,0.018791902,Benzo[k]Fluoranthene,LB
+37025,0.01871216,"Dibenzo[a,h]Anthracene",LB
+37025,94.31472,"2,2,4-Trimethylpentane",LB
+37025,367.621,Benzene,LB
+37025,0.008797276,Nitrate portion of PM2.5-PRI,TON
+37025,3.444119,PM2.5 Primary (Filt + Cond),TON
+37157,0.002062982,Acrolein,LB
+37157,9.092056e-05,Anthracene,LB
+37157,0.00017748594,Pyrene,LB
+37157,3.206588e-05,Benzo[k]Fluoranthene,LB
+37157,0.03250498,Formaldehyde,LB
+37157,5.591348e-06,Manganese,LB
+37157,6.449206e-05,Nitrous Oxide,TON
+37157,1.065304e-05,Sulfur Dioxide,TON
+37157,2.26136,Acetaldehyde,LB
+37157,0.0001672367,Sulfate Portion of PM2.5-PRI,TON
+37157,0.1362565,Volatile Organic Compounds,TON
+37157,6.832204,Hexane,LB
+37157,0.0121195,Pyrene,LB
+37157,16.888178,Xylenes (Mixed Isomers),LB
+37157,0.002575752,Chrysene,LB
+37139,0.0008556484,"Benzo[g,h,i,]Perylene",LB
+37139,0.14016284,Fluoranthene,LB
+37139,232.7726,Carbon Dioxide,TON
+37139,0.0002506307,Nitrate portion of PM2.5-PRI,TON
+37135,9.658594,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,98.31328,Acenaphthylene,LB
+37135,6775.936,Formaldehyde,LB
+37135,9.659374,Benzo[a]Pyrene,LB
+37135,15386.974,"2,2,4-Trimethylpentane",LB
+37135,6.713898,Benz[a]Anthracene,LB
+37135,10.50607,Nitrous Oxide,TON
+37133,0.0014539692,Arsenic,LB
+37133,0.007998036,Acenaphthene,LB
+37133,0.4153922,Naphthalene,LB
+37133,0.5105522,Nitrogen Oxides,TON
+37133,0.002405237,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.002630061,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,7.58599e-06,Chromium (VI),LB
+37133,0.002571984,Benzo[b]Fluoranthene,LB
+37133,2919.554,Ethyl Benzene,LB
+37127,33.7849,Benzene,LB
+37125,0.001645797,Sulfur Dioxide,TON
+37125,7.162821e-05,Sulfate Portion of PM2.5-PRI,TON
+37125,0.1097854,Volatile Organic Compounds,TON
+37125,0.14998076,Styrene,LB
+37125,1.8920534,Formaldehyde,LB
+37125,4.004012,"2,2,4-Trimethylpentane",LB
+37125,0.0015602242,Benz[a]Anthracene,LB
+37125,0.004202037,Nitrous Oxide,TON
+37125,0.002572974,PM2.5 Primary (Filt + Cond),TON
+37125,24.53168,Styrene,LB
+37125,3529.446,Toluene,LB
+37125,0.343253,Benzo[a]Pyrene,LB
+37125,0.9243724,Ammonia,TON
+37125,26.46201,Nitrogen Oxides,TON
+37125,0.1963184,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.307444,Sulfur Dioxide,TON
+37125,87.1193,Acetaldehyde,LB
+37125,0.02682752,Nitrous Oxide,TON
+37125,3679.21,Toluene,LB
+37125,0.3333754,Anthracene,LB
+37125,0.0001536666,Chromium (VI),LB
+37125,0.4072926,"Benzo[g,h,i,]Perylene",LB
+37125,146.65888,Formaldehyde,LB
+37125,0.003510902,"Dibenzo[a,h]Anthracene",LB
+37121,34.3551,Styrene,LB
+37121,2.47215,Pyrene,LB
+37121,0.001192706,Chromium (VI),LB
+37121,0.011955396,Mercury,LB
+37119,474.4473,Volatile Organic Compounds,TON
+37115,4.861096,Pyrene,LB
+37115,0.005042202,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,3.980858,Fluoranthene,LB
+37113,6.139144,Ethyl Benzene,LB
+37113,0.013338888,Pyrene,LB
+37113,0.001152565,Sulfur Dioxide,TON
+37113,0.1953405,Volatile Organic Compounds,TON
+37109,0.3962772,Methane,TON
+37109,39.92822,Toluene,LB
+37109,2.159304,Acenaphthylene,LB
+37109,0.19433034,Styrene,LB
+37109,0.7207166,Propionaldehyde,LB
+37109,0.0008938716,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.17530176,Phenanthrene,LB
+37109,0.266179,Carbon Monoxide,TON
+37109,0.0163836,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.04846857,PM10 Primary (Filt + Cond),TON
+37089,0.002911322,Propionaldehyde,LB
+37089,0.0003338472,Fluoranthene,LB
+37089,0.00010317126,Chrysene,LB
+37089,2.904688e-05,Arsenic,LB
+37089,3.728405e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37087,112.3091,"1,3-Butadiene",LB
+37087,0.0008560596,Chromium (VI),LB
+37087,0.014060782,Benzo[k]Fluoranthene,LB
+37087,0.014004616,"Dibenzo[a,h]Anthracene",LB
+37087,0.006515498,Nitrate portion of PM2.5-PRI,TON
+37083,0.1805086,PM2.5 Primary (Filt + Cond),TON
+37083,0.8003382,Styrene,LB
+37083,1.4753446,Hexane,LB
+37083,3.012142,Propionaldehyde,LB
+37083,0.002854184,"Benzo[g,h,i,]Perylene",LB
+37049,3.542786,"1,3-Butadiene",LB
+37049,3.316898,Hexane,LB
+37049,0.0004127884,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.0016193932,Benzo[b]Fluoranthene,LB
+37049,0.4497546,Fluoranthene,LB
+37049,0.011458168,Arsenic,LB
+37049,54.50928,Acetaldehyde,LB
+37049,1.0166806,Phenanthrene,LB
+37049,0.0001428168,Nitrate portion of PM2.5-PRI,TON
+37043,0.10144866,Fluorene,LB
+37043,0.04248863,Ammonia,TON
+37043,0.0733466,Fluoranthene,LB
+37035,228.2912,Benzene,LB
+37035,0.0009918588,Mercury,LB
+37035,7.465804,PM10-Primary from certain diesel engines,TON
+37035,4.410405,Elemental Carbon portion of PM2.5-PRI,TON
+37035,1.192454,Ammonia,TON
+37035,211.3732,Nitrogen Oxides,TON
+37035,11.95438,PM10 Primary (Filt + Cond),TON
+37035,12.01481,Volatile Organic Compounds,TON
+37025,14.017666,Ethyl Benzene,LB
+37025,12.838792,"1,3-Butadiene",LB
+37025,31.13156,Toluene,LB
+37025,0.9766626,Benz[a]Anthracene,LB
+37025,0.04455966,Nickel,LB
+37025,0.01428943,Arsenic,LB
+37025,181.4176,Acetaldehyde,LB
+37025,2892.706,Carbon Dioxide,TON
+37025,0.3446767,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.4198802,Organic Carbon portion of PM2.5-PRI,TON
+37167,9.688526e-05,"Dibenzo[a,h]Anthracene",LB
+37167,0.003968058,Benz[a]Anthracene,LB
+37167,0.09234684,Phenanthrene,LB
+37167,0.8856896,Naphthalene,LB
+37167,115.6557,Carbon Dioxide,TON
+37167,53.0832,Xylenes (Mixed Isomers),LB
+37163,20.77728,Acetaldehyde,LB
+37163,0.03520978,Methane,TON
+37163,4.898774,Carbon Monoxide,TON
+37163,0.01100258,PM2.5 Primary (Filt + Cond),TON
+37163,0.001540472,Sulfate Portion of PM2.5-PRI,TON
+37163,0.004551376,Organic Carbon portion of PM2.5-PRI,TON
+37163,2.362338,Propionaldehyde,LB
+37163,2.608962e-05,Chromium (VI),LB
+37157,0.0974507,Benzo[b]Fluoranthene,LB
+37157,0.1658112,Methane,TON
+37157,0.1160032,Ammonia,TON
+37157,0.2259095,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.02829812,Acenaphthylene,LB
+37139,1.9472336,Formaldehyde,LB
+37139,1.17273e-05,Mercury,LB
+37139,0.001450206,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.003500301,Nitrate portion of PM2.5-PRI,TON
+37135,39.55314,Nitrogen Oxides,TON
+37135,0.1108156,Sulfur Dioxide,TON
+37135,120.3393,Toluene,LB
+37141,1775.4448,Ethyl Benzene,LB
+37141,393.0322,Benzene,LB
+37141,51.58182,Volatile Organic Compounds,TON
+37133,0.0012733818,Acrolein,LB
+37133,0.19612746,Toluene,LB
+37133,7.7811e-08,Chromium (VI),LB
+37133,1.4913808e-05,Arsenic,LB
+37133,3.42804e-05,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.014305646,Nickel,LB
+37131,0.129008,PM10 Primary (Filt + Cond),TON
+37131,0.005758824,Sulfur Dioxide,TON
+37131,2.364892,Hexane,LB
+37131,6.383136,Xylenes (Mixed Isomers),LB
+37131,0.0006804414,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.002670748,Benzo[b]Fluoranthene,LB
+37127,0.0008184438,Anthracene,LB
+37127,0.5506928,Xylenes (Mixed Isomers),LB
+37127,0.0005689312,Arsenic,LB
+37127,0.05026274,PM10 Primary (Filt + Cond),TON
+37125,20.88628,Propionaldehyde,LB
+37105,3.788252,Ethyl Benzene,LB
+37105,0.00312297,"Dibenzo[a,h]Anthracene",LB
+37105,0.02864936,Manganese,LB
+37105,0.7636436,Fluorene,LB
+37105,0.01733994,Ammonia,TON
+37105,0.001370043,Nitrate portion of PM2.5-PRI,TON
+37105,0.1080605,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.005816398,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,115.12424,Formaldehyde,LB
+37073,0.10154666,Toluene,LB
+37073,9.999262e-05,Manganese,LB
+37073,6.491421,Carbon Dioxide,TON
+37073,0.0003283849,Ammonia,TON
+37073,0.0004182152,PM10 Primary (Filt + Cond),TON
+37073,4.633264e-05,Benzo[k]Fluoranthene,LB
+37073,0.00019922646,Acenaphthylene,LB
+37073,2.012446e-06,"Dibenzo[a,h]Anthracene",LB
+37121,9.34018e-05,Nickel,LB
+37121,0.000258927,Fluorene,LB
+37121,0.07280634,Ethyl Benzene,LB
+37121,0.0005693188,"Benzo[g,h,i,]Perylene",LB
+37121,0.00011534136,Benzo[b]Fluoranthene,LB
+37121,9.034556e-05,Chrysene,LB
+37095,1.0663678e-05,Mercury,LB
+37095,0.6877252,Ethyl Benzene,LB
+37095,7.17916e-06,Chromium (VI),LB
+37095,0.0010122794,Benzo[k]Fluoranthene,LB
+37095,0.00114007,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.07752934,Volatile Organic Compounds,TON
+37083,0.3038894,Hexane,LB
+37083,0.002315218,"Benzo[g,h,i,]Perylene",LB
+37083,0.000869869,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.0004509706,Benzo[k]Fluoranthene,LB
+37083,0.0015779778,Acenaphthylene,LB
+37083,0.0008581244,Benzo[a]Pyrene,LB
+37083,0.3572306,"2,2,4-Trimethylpentane",LB
+37083,0.0004297326,Nickel,LB
+37083,58.46587,Carbon Dioxide,TON
+37083,0.003004445,Ammonia,TON
+37021,0.424426,Formaldehyde,LB
+37021,1.0100902,"2,2,4-Trimethylpentane",LB
+37021,1.1727022,Benzene,LB
+37021,0.0004471244,Nitrous Oxide,TON
+37021,0.804214,Ethyl Benzene,LB
+37021,0.0017629962,"Benzo[g,h,i,]Perylene",LB
+37021,90692.16,Toluene,LB
+37021,401.8266,Propionaldehyde,LB
+37021,0.03350046,Chromium (VI),LB
+37021,32.02218,Fluoranthene,LB
+37021,13.693534,Benzo[a]Pyrene,LB
+37021,508289.8,Carbon Dioxide,TON
+37021,10.94037,Nitrous Oxide,TON
+37021,39.06431,Ammonia,TON
+37021,64.56573,PM10 Primary (Filt + Cond),TON
+37017,0.01043808,Fluoranthene,LB
+37017,2.307552,Formaldehyde,LB
+37017,3.985888e-06,Mercury,LB
+37017,2.37969,Carbon Monoxide,TON
+37017,0.0006181724,Elemental Carbon portion of PM2.5-PRI,TON
+37017,6.767776e-06,Nitrate portion of PM2.5-PRI,TON
+37017,0.002447855,PM2.5 Primary (Filt + Cond),TON
+37017,0.1332431,Volatile Organic Compounds,TON
+37015,17.391296,Toluene,LB
+37015,11.165042,Propionaldehyde,LB
+37015,18.26683,Xylenes (Mixed Isomers),LB
+37015,24.26968,Naphthalene,LB
+37015,7.004843,Carbon Monoxide,TON
+37015,1.012308,PM10-Primary from certain diesel engines,TON
+37011,0.1559798,Chrysene,LB
+37011,0.1593242,Benz[a]Anthracene,LB
+37011,0.0831838,Manganese,LB
+37011,0.05800431,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.06809277,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.04791237,Sulfur Dioxide,TON
+37009,0.9233938,Acenaphthylene,LB
+37009,0.1916576,Chrysene,LB
+37009,0.0327552,Nickel,LB
+37009,1.1449106,Fluorene,LB
+37009,0.749719,PM10-Primary from certain diesel engines,TON
+37009,0.016074288,Pyrene,LB
+37009,0.0002811758,Manganese,LB
+37009,5.93927e-05,Arsenic,LB
+37009,0.05235536,Phenanthrene,LB
+37009,13.29231,Carbon Dioxide,TON
+37009,0.005153265,PM10 Primary (Filt + Cond),TON
+37003,866.8544,Ethyl Benzene,LB
+37003,7220.986,Toluene,LB
+37189,0.02038598,Acenaphthylene,LB
+37189,0.004475494,Acenaphthene,LB
+37189,2.095278,Carbon Monoxide,TON
+37189,0.001029416,Organic Carbon portion of PM2.5-PRI,TON
+37177,111.51616,Formaldehyde,LB
+37177,0.03135148,Benzo[a]Pyrene,LB
+37177,0.209711,Acenaphthene,LB
+37177,2.415555,Carbon Monoxide,TON
+37177,3581.634,Carbon Dioxide,TON
+37177,0.1872757,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.003221099,Nitrous Oxide,TON
+37167,0.02880474,Anthracene,LB
+37167,0.0002422716,Benzo[k]Fluoranthene,LB
+37167,0.00594114,Benzo[a]Pyrene,LB
+37167,0.019626806,Benz[a]Anthracene,LB
+37167,3.48952,Acetaldehyde,LB
+37167,0.0005287704,Sulfate Portion of PM2.5-PRI,TON
+37167,0.0465989,Volatile Organic Compounds,TON
+37195,0.236862,Styrene,LB
+37195,1.0763954,Toluene,LB
+37195,0.003031316,Benzo[b]Fluoranthene,LB
+37195,0.02014882,Chrysene,LB
+37195,0.4030264,"2,2,4-Trimethylpentane",LB
+37195,0.00314707,Manganese,LB
+37193,0.017127542,Ethyl Benzene,LB
+37193,0.10283646,Toluene,LB
+37193,0.0005511538,Propionaldehyde,LB
+37193,1.0443356e-05,Benzo[b]Fluoranthene,LB
+37193,9.32762e-06,Chrysene,LB
+37193,0.02296052,"2,2,4-Trimethylpentane",LB
+37193,0.001328337,Naphthalene,LB
+37053,1.0185428e-05,"Dibenzo[a,h]Anthracene",LB
+37053,0.2230012,"2,2,4-Trimethylpentane",LB
+37053,2.022112e-05,Mercury,LB
+37053,0.0002521418,Nickel,LB
+37053,0.0001162131,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.002448006,PM10 Primary (Filt + Cond),TON
+37053,0.0006790458,PM2.5 Primary (Filt + Cond),TON
+37053,0.19510872,Hexane,LB
+37053,0.00019065284,Anthracene,LB
+37053,0.01403031,Volatile Organic Compounds,TON
+37045,0.2871188,Ethyl Benzene,LB
+37045,0.000660512,Nickel,LB
+37045,5.877108,Acetaldehyde,LB
+37045,0.059076,Nitrogen Oxides,TON
+37045,0.0008194685,Organic Carbon portion of PM2.5-PRI,TON
+37045,5.436942e-05,Sulfate Portion of PM2.5-PRI,TON
+37045,1563.591,Carbon Dioxide,TON
+37045,0.03388495,PM2.5 Primary (Filt + Cond),TON
+37045,1.146466,Acrolein,LB
+37045,0.012682048,Benzo[k]Fluoranthene,LB
+37151,5.307759e-06,Nitrate portion of PM2.5-PRI,TON
+37151,0.0014981766,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.0007852392,Benzo[k]Fluoranthene,LB
+37151,0.003103372,Acenaphthylene,LB
+37151,0.7289954,"2,2,4-Trimethylpentane",LB
+37147,3.030474,Toluene,LB
+37147,0.00241586,Pyrene,LB
+37147,2.601736,Xylenes (Mixed Isomers),LB
+37147,0.002870892,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.0014975954,Benzo[b]Fluoranthene,LB
+37147,6.59055e-05,"Dibenzo[a,h]Anthracene",LB
+37147,0.001291327,Benz[a]Anthracene,LB
+37147,0.001506198,Nickel,LB
+37147,14.919972,Acetaldehyde,LB
+37147,0.06333286,Naphthalene,LB
+37147,0.0019764,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.005203103,PM2.5 Primary (Filt + Cond),TON
+37143,3.540746,Toluene,LB
+37107,0.009944906,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.014960768,Benzo[a]Pyrene,LB
+37107,0.0003477966,"Dibenzo[a,h]Anthracene",LB
+37107,8.331356,"2,2,4-Trimethylpentane",LB
+37107,0.007735576,Acenaphthene,LB
+37093,0.233426,Carbon Monoxide,TON
+37093,1.653819e-05,Sulfate Portion of PM2.5-PRI,TON
+37093,0.006205404,Styrene,LB
+37093,0.0292513,"1,3-Butadiene",LB
+37093,0.0009920462,"Benzo[g,h,i,]Perylene",LB
+37093,0.000372726,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.0002001628,Benzo[b]Fluoranthene,LB
+37093,0.0003573082,Fluoranthene,LB
+37093,0.0003027864,Arsenic,LB
+37013,8.485246,Ethyl Benzene,LB
+37019,25.54624,Ethyl Benzene,LB
+37017,3.125216,Anthracene,LB
+37017,0.00485308,Chromium (VI),LB
+37017,4.599982,"Benzo[g,h,i,]Perylene",LB
+37017,1.1935046,Benzo[k]Fluoranthene,LB
+37017,16.57836,Acenaphthylene,LB
+37017,1.0394066,Manganese,LB
+37009,190.30192,Acrolein,LB
+37009,14.684388,Fluoranthene,LB
+37009,3126.024,Formaldehyde,LB
+37009,54.91742,Phenanthrene,LB
+37009,5.499038,Methane,TON
+37009,1751.577,Carbon Monoxide,TON
+37009,75504.15,Carbon Dioxide,TON
+37001,116.5887,Volatile Organic Compounds,TON
+37197,0.0207426,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,18.243532,Benzene,LB
+37197,0.01328804,Methane,TON
+37197,0.005784501,Ammonia,TON
+37197,0.8105665,Nitrogen Oxides,TON
+37197,0.005144961,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,52.49924,"2,2,4-Trimethylpentane",LB
+37189,0.0573954,"Benzo[g,h,i,]Perylene",LB
+37183,733.4394,Toluene,LB
+37183,310.2886,Propionaldehyde,LB
+37183,50.04274,Pyrene,LB
+37183,834.8304,Xylenes (Mixed Isomers),LB
+37183,73.64254,Phenanthrene,LB
+37183,38.27342,Fluorene,LB
+37183,785.3161,Nitrogen Oxides,TON
+37183,3.633175,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,2.72135,Sulfur Dioxide,TON
+37185,3.418859e-05,Sulfate Portion of PM2.5-PRI,TON
+37185,0.03166126,Acrolein,LB
+37185,0.0005447666,Benzo[b]Fluoranthene,LB
+37185,0.0013823606,Acenaphthene,LB
+37191,14.227142,"1,3-Butadiene",LB
+37191,0.1882055,Pyrene,LB
+37191,0.03738846,Manganese,LB
+37179,0.04840796,Benzo[b]Fluoranthene,LB
+37179,0.9676596,Acenaphthylene,LB
+37179,0.0008697354,Mercury,LB
+37179,0.01633398,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.09446542,PM2.5 Primary (Filt + Cond),TON
+37067,0.08415532,Naphthalene,LB
+37067,0.003167713,PM2.5 Primary (Filt + Cond),TON
+37067,0.03016864,Acrolein,LB
+37067,0.7562554,"2,2,4-Trimethylpentane",LB
+37061,3693.972,Toluene,LB
+37061,0.979526,Anthracene,LB
+37061,0.5555764,Nitrous Oxide,TON
+37053,1124.2722,Hexane,LB
+37049,5.817252,Hexane,LB
+37049,0.010303004,Pyrene,LB
+37049,0.0009463198,Arsenic,LB
+37047,0.07687519,Volatile Organic Compounds,TON
+37047,3.929436e-08,Chromium (VI),LB
+37047,0.000650366,Acenaphthylene,LB
+37047,0.0004303658,Arsenic,LB
+37041,1.791969e-05,"Dibenzo[a,h]Anthracene",LB
+37041,1.3177976,"2,2,4-Trimethylpentane",LB
+37041,0.0005040722,Benz[a]Anthracene,LB
+37041,0.0029553,Fluorene,LB
+37041,0.07578712,Naphthalene,LB
+37041,2.444531e-06,Nitrate portion of PM2.5-PRI,TON
+37041,0.02968557,Volatile Organic Compounds,TON
+37035,0.007049266,Benz[a]Anthracene,LB
+37035,5.447634,Acetaldehyde,LB
+37035,0.0939389,Phenanthrene,LB
+37035,0.002381918,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.01602717,Ammonia,TON
+37035,0.8819885,Nitrogen Oxides,TON
+37035,0.337696,Acrolein,LB
+37035,0.07830156,Acenaphthylene,LB
+37035,18736.45,Xylenes (Mixed Isomers),LB
+37031,0.14085304,Toluene,LB
+37031,0.000739279,Propionaldehyde,LB
+37031,3.181738e-08,Chromium (VI),LB
+37031,9.696906e-05,"Benzo[g,h,i,]Perylene",LB
+37031,3.643324e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.019420996,Formaldehyde,LB
+37031,0.06749378,Benzene,LB
+37031,3.977388e-06,Nickel,LB
+37031,0.013900108,Acetaldehyde,LB
+37031,2.358547,Carbon Dioxide,TON
+37031,5.8936e-05,Ammonia,TON
+37027,224.8364,Acrolein,LB
+37027,8.138162,Anthracene,LB
+37027,0.015105206,Benzo[k]Fluoranthene,LB
+37027,16.31054,Acenaphthylene,LB
+37027,267.1452,Benzene,LB
+37027,0.000387591,Mercury,LB
+37027,0.08104218,Arsenic,LB
+37027,309.9162,Naphthalene,LB
+37027,0.3809194,Ammonia,TON
+37027,50.43088,Nitrogen Oxides,TON
+37027,3.260908,PM10 Primary (Filt + Cond),TON
+37023,7.233906,"1,3-Butadiene",LB
+37023,5.603156,"2,2,4-Trimethylpentane",LB
+37023,0.6086939,PM10-Primary from certain diesel engines,TON
+37023,0.5599951,PM25-Primary from certain diesel engines,TON
+37023,0.1005876,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.04456988,Fluorene,LB
+37023,1.1438266,Naphthalene,LB
+37023,0.8850248,Nitrogen Oxides,TON
+37023,0.004430166,Sulfur Dioxide,TON
+37023,0.017777264,Benzo[a]Pyrene,LB
+37023,3618.332,"1,3-Butadiene",LB
+37023,475.7696,Acrolein,LB
+37023,38.54726,Fluoranthene,LB
+37023,8799.53,Acetaldehyde,LB
+37023,12.78987,Nitrous Oxide,TON
+37023,0.3128364,Sulfate Portion of PM2.5-PRI,TON
+37119,7496.874,Hexane,LB
+37119,8.725568,Pyrene,LB
+37119,0.0018679712,Chromium (VI),LB
+37119,5.409368,"Benzo[g,h,i,]Perylene",LB
+37119,1.50677,Benz[a]Anthracene,LB
+37119,0.018724494,Mercury,LB
+37119,29844.94,Carbon Dioxide,TON
+37119,50.65454,Nitrogen Oxides,TON
+37119,0.6135067,Sulfur Dioxide,TON
+37119,139.0607,Volatile Organic Compounds,TON
+37113,0.001948532,"Benzo[g,h,i,]Perylene",LB
+37113,2.987736e-05,Mercury,LB
+37113,60.43094,Acetaldehyde,LB
+37113,0.77635,Fluorene,LB
+37107,11.17551,Ethyl Benzene,LB
+37107,48.94434,Toluene,LB
+37105,0.000928765,"Benzo[g,h,i,]Perylene",LB
+37105,37.05886,Acetaldehyde,LB
+37105,9.278056,Naphthalene,LB
+37105,640.5534,Carbon Dioxide,TON
+37091,6.810286,Toluene,LB
+37091,6.80107,Xylenes (Mixed Isomers),LB
+37091,0.001329448,"Benzo[g,h,i,]Perylene",LB
+37091,0.0006618278,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.0003614762,Benzo[k]Fluoranthene,LB
+37091,0.008707552,Benzo[a]Pyrene,LB
+37091,0.06989266,Benz[a]Anthracene,LB
+37091,0.0140135,Nickel,LB
+37091,0.0225739,Ammonia,TON
+37091,0.09871905,PM2.5 Primary (Filt + Cond),TON
+37089,6.79873,Benzo[b]Fluoranthene,LB
+37089,9.147764,Benzo[a]Pyrene,LB
+37089,0.16874586,Mercury,LB
+37089,2.104036,Nickel,LB
+37089,24.18326,Acenaphthene,LB
+37089,333174.4,Carbon Dioxide,TON
+37089,4.014996,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,408.2231,Volatile Organic Compounds,TON
+37089,460.0936,Acrolein,LB
+37087,7.971962,Ethyl Benzene,LB
+37087,18.72345,Acrolein,LB
+37087,22.37202,Benzene,LB
+37087,6.791318e-05,Mercury,LB
+37087,0.014200178,Arsenic,LB
+37087,0.2678666,PM25-Primary from certain diesel engines,TON
+37079,7.746836,Carbon Monoxide,TON
+37079,0.00011537036,Chromium (VI),LB
+37079,10.48246,Ethyl Benzene,LB
+37087,0.1447934,Sulfate Portion of PM2.5-PRI,TON
+37087,108.78178,Propionaldehyde,LB
+37087,5018.056,"2,2,4-Trimethylpentane",LB
+37087,115.54096,Acrolein,LB
+37075,58.90124,Toluene,LB
+37075,35.51492,Xylenes (Mixed Isomers),LB
+37075,0.0044103,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.02803512,Fluorene,LB
+37075,0.7185234,Naphthalene,LB
+37075,0.0001002791,Sulfate Portion of PM2.5-PRI,TON
+37063,0.4687092,Pyrene,LB
+37063,0.14640844,Benzo[k]Fluoranthene,LB
+37063,0.1500819,Manganese,LB
+37063,0.2667532,Acenaphthene,LB
+37063,16.03604,Nitrogen Oxides,TON
+37059,0.0377694,Nickel,LB
+37059,1823.061,Carbon Dioxide,TON
+37059,0.205703,Elemental Carbon portion of PM2.5-PRI,TON
+37059,5.921613,Nitrogen Oxides,TON
+37059,0.01572981,Sulfur Dioxide,TON
+37059,0.01013372,Sulfate Portion of PM2.5-PRI,TON
+37059,18.657336,Hexane,LB
+37059,129.6615,Carbon Dioxide,TON
+37059,0.004000152,Nitrous Oxide,TON
+37059,0.0004281575,Sulfate Portion of PM2.5-PRI,TON
+37057,0.1429473,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,34.69664,Acrolein,LB
+37057,39.93012,Xylenes (Mixed Isomers),LB
+37057,0.2341528,Benzo[a]Pyrene,LB
+37055,0.00166752,Benzo[b]Fluoranthene,LB
+37055,0.0019307528,Benzo[a]Pyrene,LB
+37055,0.001854502,Manganese,LB
+37055,0.002314622,Nitrous Oxide,TON
+37055,6.674759e-06,Nitrate portion of PM2.5-PRI,TON
+37051,13.058054,Benzo[a]Pyrene,LB
+37051,15686.06,Ethyl Benzene,LB
+37051,8.460712,Benzo[b]Fluoranthene,LB
+37051,118.46638,Phenanthrene,LB
+37051,13.70358,Methane,TON
+37051,12.53741,Nitrous Oxide,TON
+37051,20.52242,PM2.5 Primary (Filt + Cond),TON
+37043,0.0007403154,Benzo[k]Fluoranthene,LB
+37043,0.06098578,Benz[a]Anthracene,LB
+37043,0.01045165,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.9108492,Acenaphthylene,LB
+37045,3.620032e-05,Mercury,LB
+37045,0.02905207,Ammonia,TON
+37045,0.01414525,Sulfate Portion of PM2.5-PRI,TON
+37025,0.019851608,Anthracene,LB
+37025,0.007219946,Benzo[b]Fluoranthene,LB
+37025,25.72198,"2,2,4-Trimethylpentane",LB
+37025,0.007145222,Benz[a]Anthracene,LB
+37025,248.7953,Carbon Dioxide,TON
+37029,248.6362,Xylenes (Mixed Isomers),LB
+37029,0.0002331364,Mercury,LB
+37029,0.0545598,Acenaphthene,LB
+37029,0.003545389,Nitrous Oxide,TON
+37029,0.05163192,Ammonia,TON
+37029,0.7754886,Nitrogen Oxides,TON
+37029,0.0006885707,Sulfate Portion of PM2.5-PRI,TON
+37027,0.012295682,"Benzo[g,h,i,]Perylene",LB
+37027,0.004619678,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,22.7069,"2,2,4-Trimethylpentane",LB
+37027,5.939764,Acetaldehyde,LB
+37027,118.1052,Carbon Dioxide,TON
+37027,0.00603782,PM2.5 Primary (Filt + Cond),TON
+37147,0.0010765706,Fluoranthene,LB
+37147,1.461112,Carbon Monoxide,TON
+37145,0.005377896,Sulfur Dioxide,TON
+37145,0.6810997,Volatile Organic Compounds,TON
+37145,0.3828712,Acenaphthene,LB
+37145,0.002264444,Nitrous Oxide,TON
+37145,0.01766545,Organic Carbon portion of PM2.5-PRI,TON
+37145,3.77762,"1,3-Butadiene",LB
+37145,8.285252,Toluene,LB
+37139,0.002612888,Anthracene,LB
+37139,0.004197794,"Benzo[g,h,i,]Perylene",LB
+37139,0.004494674,Fluoranthene,LB
+37139,3.620184e-05,"Dibenzo[a,h]Anthracene",LB
+37139,0.9855296,Acetaldehyde,LB
+37139,0.15759518,Naphthalene,LB
+37139,0.00221594,Methane,TON
+37139,0.0003436357,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.002741746,Ammonia,TON
+37135,0.7903222,Acenaphthene,LB
+37135,27.63228,Naphthalene,LB
+37135,3.424626,Styrene,LB
+37135,18.6867,Toluene,LB
+37127,0.477979,Propionaldehyde,LB
+37127,0.13730884,Acenaphthylene,LB
+37127,0.01290236,Nitrous Oxide,TON
+37123,0.3109748,Phenanthrene,LB
+37123,0.002834465,Sulfate Portion of PM2.5-PRI,TON
+37123,0.7723934,"1,3-Butadiene",LB
+37123,0.630397,Hexane,LB
+37123,1.8300404,Xylenes (Mixed Isomers),LB
+37123,0.6422886,"2,2,4-Trimethylpentane",LB
+37121,0.00553434,Anthracene,LB
+37121,8.340178e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.0003276104,Benzo[b]Fluoranthene,LB
+37121,4.484248e-05,Benzo[k]Fluoranthene,LB
+37121,0.0003086075,Ammonia,TON
+37121,1.935186e-05,Nitrate portion of PM2.5-PRI,TON
+37121,0.003722296,PM2.5 Primary (Filt + Cond),TON
+37121,0.009252735,Volatile Organic Compounds,TON
+37115,17.009102,Ethyl Benzene,LB
+37115,10.045196,"1,3-Butadiene",LB
+37115,2.902128,Pyrene,LB
+37115,546.057,Formaldehyde,LB
+37115,0.008609984,"Dibenzo[a,h]Anthracene",LB
+37115,0.00015675398,Mercury,LB
+37115,0.9842534,Acenaphthene,LB
+37115,0.3464855,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.1340836,Sulfate Portion of PM2.5-PRI,TON
+37113,0.0005378797,Nitrogen Oxides,TON
+37113,1.430324e-05,PM10 Primary (Filt + Cond),TON
+37113,0.0004399768,Styrene,LB
+37113,0.0003791882,Propionaldehyde,LB
+37113,0.014647798,"2,2,4-Trimethylpentane",LB
+37107,7.61326e-06,"Benzo[g,h,i,]Perylene",LB
+37107,0.0011897076,Manganese,LB
+37107,9.301686e-05,Acenaphthene,LB
+37107,0.0004789574,Phenanthrene,LB
+37107,0.0002068754,Fluorene,LB
+37107,0.0005440956,Naphthalene,LB
+37107,0.3166994,Carbon Monoxide,TON
+37107,0.002468804,PM2.5 Primary (Filt + Cond),TON
+37105,9.923092,"1,3-Butadiene",LB
+37105,7.60886,Hexane,LB
+37105,2.43758,Fluoranthene,LB
+37105,302.6954,Formaldehyde,LB
+37105,1.924625,PM10 Primary (Filt + Cond),TON
+37105,0.0473268,Sulfur Dioxide,TON
+37097,3.708112,Hexane,LB
+37097,1.366289,Pyrene,LB
+37097,0.008030534,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.3457698,PM25-Primary from certain diesel engines,TON
+37103,0.09102444,Acrolein,LB
+37103,5.481234,"2,2,4-Trimethylpentane",LB
+37103,0.0019420558,Benz[a]Anthracene,LB
+37103,0.0001028495,Sulfate Portion of PM2.5-PRI,TON
+37093,0.19728682,Anthracene,LB
+37093,0.0018240904,"Benzo[g,h,i,]Perylene",LB
+37093,0.007617084,Benzo[b]Fluoranthene,LB
+37093,0.09791628,Benz[a]Anthracene,LB
+37093,0.007845508,Nickel,LB
+37093,0.6514652,Phenanthrene,LB
+37093,0.1395146,PM10-Primary from certain diesel engines,TON
+37093,0.0194965,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,2.035876,"1,3-Butadiene",LB
+37083,3.882666e-05,"Benzo[g,h,i,]Perylene",LB
+37083,0.0008083962,Acenaphthylene,LB
+37083,0.0001814597,Chrysene,LB
+37083,0.0019740436,Naphthalene,LB
+37083,0.7965939,Methane,TON
+37083,0.005917822,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.7609464,"2,2,4-Trimethylpentane",LB
+37073,0.0981122,Acenaphthene,LB
+37073,3.30573,Naphthalene,LB
+37073,0.0005606952,Nitrous Oxide,TON
+37073,2.072512,Toluene,LB
+37073,0.080626,Anthracene,LB
+37075,5.16969,Acrolein,LB
+37075,3.105206,Propionaldehyde,LB
+37075,0.0013713566,"Dibenzo[a,h]Anthracene",LB
+37075,6.264954,Benzene,LB
+37075,7.431312,Naphthalene,LB
+37075,0.0275119,Sulfate Portion of PM2.5-PRI,TON
+37075,0.3550918,Volatile Organic Compounds,TON
+37067,0.03858582,Ammonia,TON
+37063,0.04749266,Pyrene,LB
+37063,12.109102,"2,2,4-Trimethylpentane",LB
+37063,0.01776411,Manganese,LB
+37063,11.19895,Carbon Monoxide,TON
+37063,0.0007299015,Sulfate Portion of PM2.5-PRI,TON
+37063,6.063105,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,639.0684,Volatile Organic Compounds,TON
+37063,710.0458,Acrolein,LB
+37063,54.87554,Fluoranthene,LB
+37063,0.31154,Mercury,LB
+37063,602555,Carbon Dioxide,TON
+37063,9.199993,Organic Carbon portion of PM2.5-PRI,TON
+37043,6.360968,Xylenes (Mixed Isomers),LB
+37043,3.107882e-05,Chromium (VI),LB
+37043,33.10924,Acetaldehyde,LB
+37043,0.4810934,Fluorene,LB
+37043,0.3313973,PM10-Primary from certain diesel engines,TON
+37043,5.746941e-05,Nitrate portion of PM2.5-PRI,TON
+37043,0.4596846,Styrene,LB
+37043,8.00797e-06,Chromium (VI),LB
+37043,14.236962,Acetaldehyde,LB
+37043,0.02947414,PM25-Primary from certain diesel engines,TON
+37033,13.168004,Benzene,LB
+37033,1.1176164,Fluoranthene,LB
+37033,0.6339823,PM25-Primary from certain diesel engines,TON
+37033,0.01029372,Sulfate Portion of PM2.5-PRI,TON
+37031,45.638,Acetaldehyde,LB
+37031,3.875333,Carbon Monoxide,TON
+37031,0.0105205,Sulfur Dioxide,TON
+37163,47.60998,Propionaldehyde,LB
+37163,1384.6952,Formaldehyde,LB
+37163,128.78566,Naphthalene,LB
+37163,3.598092,PM10-Primary from certain diesel engines,TON
+37163,0.6273948,Ammonia,TON
+37159,11.748448,Ethyl Benzene,LB
+37159,4.753736,Styrene,LB
+37159,0.014750596,"Benzo[g,h,i,]Perylene",LB
+37159,0.009757296,Benzo[k]Fluoranthene,LB
+37159,0.03768046,Nickel,LB
+37159,0.011041464,Arsenic,LB
+37159,152.26036,Acetaldehyde,LB
+37159,0.01290479,Nitrous Oxide,TON
+37159,0.01963367,Sulfate Portion of PM2.5-PRI,TON
+37155,2.24117,Fluorene,LB
+37155,9.499643,Carbon Monoxide,TON
+37155,0.8721282,PM2.5 Primary (Filt + Cond),TON
+37155,1.809231,Volatile Organic Compounds,TON
+37155,24.56256,Acrolein,LB
+37155,7.61009,"2,2,4-Trimethylpentane",LB
+37151,0.005303892,Ethyl Benzene,LB
+37151,6.125458e-05,Acenaphthylene,LB
+37151,1.2250048e-05,Chrysene,LB
+37151,6.289278,Formaldehyde,LB
+37151,2.827546e-06,Mercury,LB
+37151,2.658276e-05,Acenaphthene,LB
+37151,0.0002561102,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.00724076,Volatile Organic Compounds,TON
+37147,0.644738,Pyrene,LB
+37147,2.141758e-05,Chromium (VI),LB
+37147,2.41979e-05,Mercury,LB
+37147,0.02539691,Ammonia,TON
+37147,0.0008755032,Nitrate portion of PM2.5-PRI,TON
+37145,4.274524e-05,Phenanthrene,LB
+37145,0.003313185,Carbon Monoxide,TON
+37145,1.3174636e-05,Pyrene,LB
+37145,9.363838e-06,"Benzo[g,h,i,]Perylene",LB
+37145,7.636745e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.04566212,Fluoranthene,LB
+37133,13.580656,"2,2,4-Trimethylpentane",LB
+37133,14.808562,Ethyl Benzene,LB
+37133,0.02213462,PM2.5 Primary (Filt + Cond),TON
+37133,0.0006934444,Sulfate Portion of PM2.5-PRI,TON
+37133,0.4452147,Volatile Organic Compounds,TON
+37121,10.327754,Xylenes (Mixed Isomers),LB
+37121,0.0012557062,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.007081472,Fluorene,LB
+37121,0.181509,Naphthalene,LB
+37121,21.72648,Carbon Dioxide,TON
+37119,0.04729604,"Dibenzo[a,h]Anthracene",LB
+37119,0.18149084,Nickel,LB
+37119,181.42438,Naphthalene,LB
+37119,1.192389,Methane,TON
+37119,16311.88,Carbon Dioxide,TON
+37119,0.02052905,Nitrate portion of PM2.5-PRI,TON
+37119,21.1721,Styrene,LB
+37119,128.55792,Acrolein,LB
+37119,2.221224,Chrysene,LB
+37111,112.64202,Acrolein,LB
+37111,13571.776,Xylenes (Mixed Isomers),LB
+37111,1.871984,Organic Carbon portion of PM2.5-PRI,TON
+37099,6.532112,Acrolein,LB
+37099,2.660946,"2,2,4-Trimethylpentane",LB
+37099,0.02672084,Manganese,LB
+37099,0.02484318,Nickel,LB
+37099,0.012575828,Arsenic,LB
+37099,37.77856,Acetaldehyde,LB
+37099,0.2250642,Acenaphthene,LB
+37099,0.007382428,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.004144709,Sulfate Portion of PM2.5-PRI,TON
+37095,2.080296,Xylenes (Mixed Isomers),LB
+37095,6.37992e-05,Arsenic,LB
+37095,0.03249323,Nitrogen Oxides,TON
+37095,0.07701952,"1,3-Butadiene",LB
+37095,0.0270958,Naphthalene,LB
+37095,0.0001801549,Ammonia,TON
+37095,0.0153782,Nitrogen Oxides,TON
+37091,1.27985,Benzo[b]Fluoranthene,LB
+37091,1.326958,Chrysene,LB
+37091,0.0264926,Mercury,LB
+37091,49835.37,Carbon Dioxide,TON
+37083,56.25948,Acrolein,LB
+37083,17.516072,Hexane,LB
+37083,0.004285112,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.00233615,Benzo[k]Fluoranthene,LB
+37083,696.4946,Formaldehyde,LB
+37083,0.05637632,Benzo[a]Pyrene,LB
+37083,16.988478,"2,2,4-Trimethylpentane",LB
+37083,0.182245,Methane,TON
+37083,0.6738084,PM10-Primary from certain diesel engines,TON
+37083,0.01072172,Nitrous Oxide,TON
+37083,15.54134,Nitrogen Oxides,TON
+37083,0.8074804,PM10 Primary (Filt + Cond),TON
+37079,215.9362,"2,2,4-Trimethylpentane",LB
+37079,0.08334444,Benz[a]Anthracene,LB
+37079,306.3342,Benzene,LB
+37079,104.98024,Acetaldehyde,LB
+37071,16.42037,Xylenes (Mixed Isomers),LB
+37071,24.95078,Benzene,LB
+37071,0.03593484,Nickel,LB
+37071,2.762366,Phenanthrene,LB
+37071,8.719638,Ethyl Benzene,LB
+37071,0.5850437,PM10-Primary from certain diesel engines,TON
+37071,0.5876725,PM2.5 Primary (Filt + Cond),TON
+37071,47.23188,Styrene,LB
+37071,6589.816,Toluene,LB
+37071,0.759872,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.5656408,Benzo[k]Fluoranthene,LB
+37071,9.136644,Acenaphthylene,LB
+37071,4.063576,Fluorene,LB
+37071,463.034,Carbon Monoxide,TON
+37071,1.176168,Nitrous Oxide,TON
+37061,0.0004419646,Chromium (VI),LB
+37061,0.02721802,"Benzo[g,h,i,]Perylene",LB
+37061,0.3850004,Benzo[a]Pyrene,LB
+37061,53.36376,"2,2,4-Trimethylpentane",LB
+37061,0.3710052,Manganese,LB
+37061,32.82608,Carbon Monoxide,TON
+37061,3.94128,PM10-Primary from certain diesel engines,TON
+37061,3.626084,PM25-Primary from certain diesel engines,TON
+37061,0.009762647,Nitrate portion of PM2.5-PRI,TON
+37061,0.9843812,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.1002132,Sulfate Portion of PM2.5-PRI,TON
+37061,119.0823,Volatile Organic Compounds,TON
+37061,134.79504,Styrene,LB
+37061,1.9340292,Chrysene,LB
+37061,0.07327664,"Dibenzo[a,h]Anthracene",LB
+37061,5374.264,"2,2,4-Trimethylpentane",LB
+37047,5.850582,Ethyl Benzene,LB
+37047,4.404948,Hexane,LB
+37047,2.720182e-05,Mercury,LB
+37047,0.005687294,Arsenic,LB
+37045,0.3313374,Toluene,LB
+37045,1.8446486e-05,"Benzo[g,h,i,]Perylene",LB
+37045,0.01724445,PM10 Primary (Filt + Cond),TON
+37043,4.219312e-05,Anthracene,LB
+37043,5.2517e-06,Mercury,LB
+37043,1.6995766,Acetaldehyde,LB
+37043,26.88705,Carbon Dioxide,TON
+37043,3.930951e-07,Nitrate portion of PM2.5-PRI,TON
+37043,0.0009583376,"Dibenzo[a,h]Anthracene",LB
+37043,9.08861,"2,2,4-Trimethylpentane",LB
+37043,19.56084,Carbon Monoxide,TON
+37043,0.22018,Elemental Carbon portion of PM2.5-PRI,TON
+37043,20.39042,Propionaldehyde,LB
+37043,0.004682764,"Benzo[g,h,i,]Perylene",LB
+37043,1.633486,Fluoranthene,LB
+37043,2.137052,Acenaphthylene,LB
+37045,1.95759,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.1482578,Ammonia,TON
+37045,4.29364,PM10 Primary (Filt + Cond),TON
+37045,21.27448,"1,3-Butadiene",LB
+37045,3.634692,Acenaphthylene,LB
+37045,0.02264326,"Dibenzo[a,h]Anthracene",LB
+37045,180.30874,Propionaldehyde,LB
+37045,3.539378,Benzo[b]Fluoranthene,LB
+37045,3.539378,Benzo[k]Fluoranthene,LB
+37045,42.4346,Acenaphthylene,LB
+37045,1.6703014,Nickel,LB
+37045,2294.449,Carbon Monoxide,TON
+37045,4.614689,Nitrous Oxide,TON
+37045,2.103961,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,2.31438,Propionaldehyde,LB
+37039,612.801,Xylenes (Mixed Isomers),LB
+37039,5.538412e-05,Chromium (VI),LB
+37039,0.04110922,Benz[a]Anthracene,LB
+37039,0.13903964,Acenaphthene,LB
+37039,0.06341097,Methane,TON
+37027,16.869932,Ethyl Benzene,LB
+37027,1.586789,Anthracene,LB
+37027,0.02533618,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.02585626,Arsenic,LB
+37027,0.04686095,Sulfur Dioxide,TON
+37027,0.05181922,Sulfate Portion of PM2.5-PRI,TON
+37175,2.883134e-05,Mercury,LB
+37159,13.640166,Acrolein,LB
+37159,12.764758,Toluene,LB
+37159,0.05861512,Benzo[a]Pyrene,LB
+37159,0.002409794,"Dibenzo[a,h]Anthracene",LB
+37159,4.555094,"2,2,4-Trimethylpentane",LB
+37159,0.2129688,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.03546121,Ammonia,TON
+37159,0.08980232,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.3778044,PM2.5 Primary (Filt + Cond),TON
+37153,39.92144,Formaldehyde,LB
+37153,0.000228763,Arsenic,LB
+37153,0.00144304,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.009323703,Sulfur Dioxide,TON
+37137,1.6040666,Hexane,LB
+37137,0.015095822,Benzo[b]Fluoranthene,LB
+37137,0.369064,Acenaphthylene,LB
+37137,1.5578568,"2,2,4-Trimethylpentane",LB
+37137,0.8158806,Phenanthrene,LB
+37137,0.191093,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.01543725,Ammonia,TON
+37131,5.527874,Ethyl Benzene,LB
+37131,36.28918,Toluene,LB
+37131,1.850594e-06,Chromium (VI),LB
+37131,0.002043602,Nitrous Oxide,TON
+37131,0.007467021,PM2.5 Primary (Filt + Cond),TON
+37131,0.001998755,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,61139.12,Carbon Dioxide,TON
+37127,0.5170717,Sulfur Dioxide,TON
+37127,10.16141,Volatile Organic Compounds,TON
+37127,17.639518,Styrene,LB
+37121,1.3013766,Styrene,LB
+37121,0.0202273,Benzo[b]Fluoranthene,LB
+37121,0.7032302,Fluoranthene,LB
+37121,0.00276623,"Dibenzo[a,h]Anthracene",LB
+37121,8.285638,Benzene,LB
+37121,1.7375224e-05,Mercury,LB
+37121,1.1001732,Phenanthrene,LB
+37121,0.4260778,PM10-Primary from certain diesel engines,TON
+37121,0.2571334,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.01127772,Sulfur Dioxide,TON
+37111,12.67776,Carbon Monoxide,TON
+37111,2.183213,PM10 Primary (Filt + Cond),TON
+37111,0.06145741,Sulfate Portion of PM2.5-PRI,TON
+37111,1.9522914,Anthracene,LB
+37111,29.28366,Propionaldehyde,LB
+37111,3.002368,Acenaphthylene,LB
+37111,0.00018600078,Mercury,LB
+37111,0.09324004,Nickel,LB
+37117,0.4182598,Nickel,LB
+37117,5.19637,Fluorene,LB
+37117,2.205954,Anthracene,LB
+37117,757.7008,Formaldehyde,LB
+37117,0.02886794,"Dibenzo[a,h]Anthracene",LB
+37107,8.642456e-05,Styrene,LB
+37107,3.135964e-06,"Benzo[g,h,i,]Perylene",LB
+37107,1.9620794e-05,Phenanthrene,LB
+37107,6.108131e-07,Organic Carbon portion of PM2.5-PRI,TON
+37107,2.1872e-06,PM10 Primary (Filt + Cond),TON
+37107,0.007529766,Styrene,LB
+37107,2.434624e-06,"Dibenzo[a,h]Anthracene",LB
+37107,1.6883902e-06,Nickel,LB
+37107,2.588674e-06,Arsenic,LB
+37107,0.09969322,Acetaldehyde,LB
+37107,2.945242e-07,Nitrate portion of PM2.5-PRI,TON
+37107,5.11716e-05,Organic Carbon portion of PM2.5-PRI,TON
+37103,859.3338,Ethyl Benzene,LB
+37103,5299.65,Toluene,LB
+37103,0.4737502,Benzo[b]Fluoranthene,LB
+37103,0.4737502,Benzo[k]Fluoranthene,LB
+37103,5.6603,Acenaphthylene,LB
+37103,2.512734,Fluorene,LB
+37103,25.57605,Volatile Organic Compounds,TON
+37097,0.3653924,"Dibenzo[a,h]Anthracene",LB
+37097,12286.09,Acetaldehyde,LB
+37097,36.54948,Acenaphthene,LB
+37097,198.82924,Phenanthrene,LB
+37097,9282.634,Carbon Monoxide,TON
+37097,1132.148,Nitrogen Oxides,TON
+37097,9.28815,Organic Carbon portion of PM2.5-PRI,TON
+37097,19.90908,PM2.5 Primary (Filt + Cond),TON
+37053,1.0778428,Propionaldehyde,LB
+37053,0.017409806,Benzo[a]Pyrene,LB
+37053,0.06513614,Acenaphthene,LB
+37053,0.002658223,Sulfate Portion of PM2.5-PRI,TON
+37015,0.01666366,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.01457483,Sulfur Dioxide,TON
+37015,12.620592,Propionaldehyde,LB
+37015,0.000937012,Benzo[k]Fluoranthene,LB
+37015,1.3104522,Acenaphthylene,LB
+37015,103.35846,Acetaldehyde,LB
+37015,0.7794776,Acenaphthene,LB
+37015,26.08188,Naphthalene,LB
+37015,0.09102054,Methane,TON
+37015,0.194363,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.05883899,Ammonia,TON
+37011,636.1648,Toluene,LB
+37011,3.460934e-05,Chromium (VI),LB
+37011,0.09827932,"Benzo[g,h,i,]Perylene",LB
+37011,115.34736,Benzene,LB
+37011,20.4696,Acetaldehyde,LB
+37011,23.51551,Carbon Monoxide,TON
+37011,0.005039945,Nitrous Oxide,TON
+37011,0.03579901,PM2.5 Primary (Filt + Cond),TON
+37011,0.008956407,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.001091006,Sulfate Portion of PM2.5-PRI,TON
+37009,0.003087358,Anthracene,LB
+37009,3.185328e-05,"Dibenzo[a,h]Anthracene",LB
+37009,0.0007360244,Manganese,LB
+37009,1.2519174,Acetaldehyde,LB
+37009,0.019606422,Phenanthrene,LB
+37009,0.002062818,Ammonia,TON
+37009,0.04869846,"Benzo[g,h,i,]Perylene",LB
+37009,0.014281316,Benzo[b]Fluoranthene,LB
+37009,0.0797668,Fluoranthene,LB
+37009,16.529952,Formaldehyde,LB
+37009,0.05526449,Methane,TON
+37009,0.00506444,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,454.8242,Xylenes (Mixed Isomers),LB
+37001,0.08025796,Benzo[k]Fluoranthene,LB
+37001,0.19385506,Acenaphthene,LB
+37001,4.534932,Styrene,LB
+37001,3.717852,Acrolein,LB
+37001,0.1340575,Nitrous Oxide,TON
+37001,0.0709275,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.1493298,PM2.5 Primary (Filt + Cond),TON
+37001,0.00421379,Sulfate Portion of PM2.5-PRI,TON
+37007,10.151886,Fluoranthene,LB
+37007,31.92086,Acenaphthylene,LB
+37007,0.04739706,"Dibenzo[a,h]Anthracene",LB
+37007,38.00958,Phenanthrene,LB
+37007,78523.44,Carbon Dioxide,TON
+37007,6.129068,PM10 Primary (Filt + Cond),TON
+37057,29.3316,Acetaldehyde,LB
+37057,0.001524207,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.005002594,Pyrene,LB
+37057,0.00013655606,"Dibenzo[a,h]Anthracene",LB
+37013,0.0008669688,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.0008563262,Benzo[a]Pyrene,LB
+37013,1.4030274,Benzene,LB
+37013,0.0009735968,Fluorene,LB
+37013,0.003006828,Ammonia,TON
+37123,0.0004714207,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.0841436,Styrene,LB
+37017,0.01639816,Acenaphthylene,LB
+37017,0.0010585044,Benz[a]Anthracene,LB
+37017,1.1581658,Acetaldehyde,LB
+37017,0.1869184,Naphthalene,LB
+37017,0.001681448,Sulfur Dioxide,TON
+37073,0.0005665984,Fluoranthene,LB
+37073,0.000252408,Chrysene,LB
+37073,1.0833574,Benzene,LB
+37073,0.001405975,Sulfur Dioxide,TON
+37071,1.9672652,Toluene,LB
+37071,0.000759753,Anthracene,LB
+37071,0.0014506808,Fluoranthene,LB
+37071,0.001218372,Nickel,LB
+37071,0.004585764,Phenanthrene,LB
+37071,0.0001113452,Sulfate Portion of PM2.5-PRI,TON
+37045,0.004721953,Nitrous Oxide,TON
+37045,0.0018255076,Chrysene,LB
+37019,0.02103404,Styrene,LB
+37019,0.0009160932,Benzo[k]Fluoranthene,LB
+37019,1.4166142,Formaldehyde,LB
+37019,0.001735869,Benzo[a]Pyrene,LB
+37019,8.890084,Acetaldehyde,LB
+37019,0.08069039,Nitrogen Oxides,TON
+37019,0.001142619,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.05362053,Volatile Organic Compounds,TON
+37173,0.00259667,Nickel,LB
+37173,0.003135904,Acenaphthene,LB
+37173,1.906892e-05,Nitrate portion of PM2.5-PRI,TON
+37173,0.01953517,PM10 Primary (Filt + Cond),TON
+37065,396.6214,Hexane,LB
+37065,3.938044,Propionaldehyde,LB
+37065,0.249545,"Benzo[g,h,i,]Perylene",LB
+37065,0.4820286,Fluorene,LB
+37057,16.490566,Styrene,LB
+37057,122.36312,Toluene,LB
+37057,36.99068,Hexane,LB
+37057,133.61648,Xylenes (Mixed Isomers),LB
+37057,0.0003626792,Chromium (VI),LB
+37057,1.4675032,Chrysene,LB
+37057,0.03053514,"Dibenzo[a,h]Anthracene",LB
+37057,40.38932,"2,2,4-Trimethylpentane",LB
+37057,0.4002408,Manganese,LB
+37057,3.862476,Acenaphthene,LB
+37057,0.01375664,Nitrate portion of PM2.5-PRI,TON
+37057,1.0889,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.1531299,Sulfur Dioxide,TON
+37055,0.003012962,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.6074285,Nitrogen Oxides,TON
+37055,0.00667005,Sulfur Dioxide,TON
+37055,5.673808,Acrolein,LB
+37055,4.129782e-05,Chromium (VI),LB
+37055,0.335768,Acenaphthylene,LB
+37055,2.25471,"2,2,4-Trimethylpentane",LB
+37045,0.0002532424,"Dibenzo[a,h]Anthracene",LB
+37045,0.003627764,Manganese,LB
+37045,0.99545,Naphthalene,LB
+37045,0.01437575,Methane,TON
+37045,175.2959,Carbon Dioxide,TON
+37045,0.342509,Acrolein,LB
+37045,4.209854e-06,Chromium (VI),LB
+37045,0.02937242,"Benzo[g,h,i,]Perylene",LB
+37043,0.1056628,Anthracene,LB
+37043,0.2052208,Pyrene,LB
+37043,262.6248,Xylenes (Mixed Isomers),LB
+37043,83.86476,"2,2,4-Trimethylpentane",LB
+37043,0.01373856,Arsenic,LB
+37043,42.89632,Acetaldehyde,LB
+37043,0.1239434,Acenaphthene,LB
+37043,1279.96,Carbon Dioxide,TON
+37043,0.06338787,Nitrous Oxide,TON
+37043,0.0001176222,Nitrate portion of PM2.5-PRI,TON
+37043,3.15952,Nitrogen Oxides,TON
+37035,0.02367867,PM2.5 Primary (Filt + Cond),TON
+37035,0.0006842577,Sulfate Portion of PM2.5-PRI,TON
+37035,0.06584004,Pyrene,LB
+37035,115.03574,Xylenes (Mixed Isomers),LB
+37031,0.03742128,Benzo[b]Fluoranthene,LB
+37031,0.857104,Acenaphthylene,LB
+37031,157.40182,Formaldehyde,LB
+37031,0.5098278,Acenaphthene,LB
+37031,0.02108847,Ammonia,TON
+37031,0.1760071,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.07752759,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,0.0101163,Sulfate Portion of PM2.5-PRI,TON
+37025,7906.342,Toluene,LB
+37025,0.2673164,Chrysene,LB
+37025,0.06217652,Nitrous Oxide,TON
+37171,9.58844,Ethyl Benzene,LB
+37171,8.367106,"1,3-Butadiene",LB
+37171,0.04307756,Benzo[b]Fluoranthene,LB
+37171,1.417822,Acenaphthylene,LB
+37171,26.2806,Benzene,LB
+37171,0.04228728,Manganese,LB
+37171,0.8436924,Acenaphthene,LB
+37171,0.1950252,Methane,TON
+37171,0.231838,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.01502214,Ammonia,TON
+37167,0.06982788,Pyrene,LB
+37157,0.00018811158,"Dibenzo[a,h]Anthracene",LB
+37157,0.002778248,Manganese,LB
+37157,0.01183192,Methane,TON
+37157,0.004525652,Organic Carbon portion of PM2.5-PRI,TON
+37151,5.91522e-05,Chromium (VI),LB
+37151,0.8708844,Acenaphthylene,LB
+37141,7.64019,Ethyl Benzene,LB
+37141,3.303812,Styrene,LB
+37141,5.734684,"2,2,4-Trimethylpentane",LB
+37141,0.17828082,Benz[a]Anthracene,LB
+37141,0.012851782,Arsenic,LB
+37141,0.0005088192,Nitrate portion of PM2.5-PRI,TON
+37129,25.00202,Hexane,LB
+37129,0.0002111114,Chromium (VI),LB
+37129,7.460998,Fluorene,LB
+37125,0.006690337,Nitrate portion of PM2.5-PRI,TON
+37125,55.87026,Acrolein,LB
+37125,20.72964,Hexane,LB
+37121,1.209664,Styrene,LB
+37111,0.014207788,Benzene,LB
+37111,2.889722e-05,Fluorene,LB
+37111,8.288964e-06,Methane,TON
+37111,0.172681,Carbon Dioxide,TON
+37111,4.454043e-06,Ammonia,TON
+37111,4.718963e-08,Nitrate portion of PM2.5-PRI,TON
+37111,8.989581e-06,Organic Carbon portion of PM2.5-PRI,TON
+37111,3.621946e-06,Sulfur Dioxide,TON
+37017,3.113036,Ethyl Benzene,LB
+37017,1.3721438,Styrene,LB
+37017,3.094242,"1,3-Butadiene",LB
+37017,0.005488154,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.7458666,Fluoranthene,LB
+37017,0.2378236,Benz[a]Anthracene,LB
+37017,0.018752962,Manganese,LB
+37017,10.332726,Naphthalene,LB
+37017,0.2455941,PM25-Primary from certain diesel engines,TON
+37017,0.002896405,Nitrous Oxide,TON
+37017,3.972195,Nitrogen Oxides,TON
+37017,0.5496309,Volatile Organic Compounds,TON
+37019,0.002493336,Benz[a]Anthracene,LB
+37019,2.223452,Acetaldehyde,LB
+37019,0.03911992,Phenanthrene,LB
+37019,0.8020872,"1,3-Butadiene",LB
+37017,6.616144,Ethyl Benzene,LB
+37017,0.1692404,Propionaldehyde,LB
+37017,1.734722e-06,Chromium (VI),LB
+37017,0.002678236,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,10.585364,"2,2,4-Trimethylpentane",LB
+37017,1.7390738e-05,Mercury,LB
+37017,0.0446291,Phenanthrene,LB
+37017,0.01666806,Fluorene,LB
+37017,0.003157084,PM2.5 Primary (Filt + Cond),TON
+37017,0.001003904,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.09779572,Fluoranthene,LB
+37013,0.002231384,Nickel,LB
+37013,0.05688494,Nitrous Oxide,TON
+37013,6.476723e-05,Nitrate portion of PM2.5-PRI,TON
+37115,0.006302008,"Benzo[g,h,i,]Perylene",LB
+37115,0.0014439526,Benz[a]Anthracene,LB
+37115,0.0014967506,Manganese,LB
+37115,0.008206054,PM10 Primary (Filt + Cond),TON
+37115,0.07299316,Acrolein,LB
+37115,0.02470762,"1,3-Butadiene",LB
+37115,0.00018437686,Anthracene,LB
+37115,0.0009673482,Acenaphthylene,LB
+37115,3.636492e-06,"Dibenzo[a,h]Anthracene",LB
+37115,0.011002642,Naphthalene,LB
+37115,4.545959e-07,Nitrate portion of PM2.5-PRI,TON
+37115,4.015054e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.01399593,Nitrous Oxide,TON
+37101,0.002082552,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.01702118,PM10 Primary (Filt + Cond),TON
+37101,0.340122,Toluene,LB
+37101,0.00016620446,Anthracene,LB
+37101,2.006732e-05,"Benzo[g,h,i,]Perylene",LB
+37101,141.84918,Hexane,LB
+37101,2106.326,Acetaldehyde,LB
+37101,8.71782,Methane,TON
+37101,1.99418,Ammonia,TON
+37101,2.204989,Organic Carbon portion of PM2.5-PRI,TON
+37101,1.092272,Sulfate Portion of PM2.5-PRI,TON
+37101,71.04324,Acetaldehyde,LB
+37101,17.9047,Naphthalene,LB
+37101,0.3844844,PM10-Primary from certain diesel engines,TON
+37101,0.380685,PM2.5 Primary (Filt + Cond),TON
+37101,0.00451263,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.9324308,Fluoranthene,LB
+37101,164.68156,Formaldehyde,LB
+37087,0.2029906,Benzo[b]Fluoranthene,LB
+37087,8.52884,Fluoranthene,LB
+37087,7.221256,Acenaphthylene,LB
+37087,0.02828918,"Dibenzo[a,h]Anthracene",LB
+37087,4.866082,PM25-Primary from certain diesel engines,TON
+37087,0.01583481,Nitrate portion of PM2.5-PRI,TON
+37087,154.9201,Nitrogen Oxides,TON
+37087,0.6934822,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.011990698,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.011865662,Benzo[a]Pyrene,LB
+37087,0.9426514,"1,3-Butadiene",LB
+37087,0.18249898,Acrolein,LB
+37087,0.008598354,Anthracene,LB
+37087,0.18038804,Propionaldehyde,LB
+37087,4.217587,Carbon Monoxide,TON
+37087,0.01119171,Ammonia,TON
+37081,0.2096168,Anthracene,LB
+37081,1.0070232e-05,Chromium (VI),LB
+37081,1.006294,Carbon Monoxide,TON
+37081,0.1331712,PM25-Primary from certain diesel engines,TON
+37081,0.003213691,Sulfate Portion of PM2.5-PRI,TON
+37081,0.3404799,Volatile Organic Compounds,TON
+37081,1.124534,Methane,TON
+37081,1.652318,PM10 Primary (Filt + Cond),TON
+37081,0.2722576,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,5.841178,Acenaphthene,LB
+37077,11.832034,Fluorene,LB
+37077,15255.28,Xylenes (Mixed Isomers),LB
+37077,2.37612,Benzo[b]Fluoranthene,LB
+37077,8.758884,Fluoranthene,LB
+37077,1725.5148,Formaldehyde,LB
+37077,0.08572168,"Dibenzo[a,h]Anthracene",LB
+37077,1.8798454,Manganese,LB
+37077,0.08354198,Mercury,LB
+37065,0.8632594,Acenaphthene,LB
+37065,1.338322,PM10-Primary from certain diesel engines,TON
+37065,0.8393514,Elemental Carbon portion of PM2.5-PRI,TON
+37065,1.291791,PM2.5 Primary (Filt + Cond),TON
+37065,0.1206188,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.5983557,PM25-Primary from certain diesel engines,TON
+37051,1.089091,PM10 Primary (Filt + Cond),TON
+37051,0.1020994,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,1.776252,Volatile Organic Compounds,TON
+37051,4.40087,Styrene,LB
+37051,0.008828028,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,1.7997378,Fluoranthene,LB
+37051,1.6971436,Acenaphthylene,LB
+37051,305.4344,Formaldehyde,LB
+37051,0.454739,Benz[a]Anthracene,LB
+37051,0.0012413824,Fluoranthene,LB
+37051,0.0002120424,Benzo[a]Pyrene,LB
+37051,4.80036e-06,"Dibenzo[a,h]Anthracene",LB
+37051,0.0001141917,Ammonia,TON
+37049,0.003024818,Manganese,LB
+37049,0.10050792,Fluorene,LB
+37049,0.004832551,Methane,TON
+37049,0.04381323,PM10 Primary (Filt + Cond),TON
+37049,0.001005612,Sulfur Dioxide,TON
+37045,0.01045059,Nickel,LB
+37045,28.79626,Acetaldehyde,LB
+37047,9.43244,Ethyl Benzene,LB
+37047,0.016203704,Anthracene,LB
+37047,9.140432e-06,Chromium (VI),LB
+37047,0.006148314,Chrysene,LB
+37047,0.000228057,"Dibenzo[a,h]Anthracene",LB
+37047,0.001930324,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.005120288,Styrene,LB
+37041,0.02753012,"1,3-Butadiene",LB
+37041,1.852985e-08,Chromium (VI),LB
+37041,5.367889e-05,Nitrous Oxide,TON
+37031,0.01272338,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,1.5232454,Acrolein,LB
+37031,0.1068432,Fluoranthene,LB
+37031,0.016611806,Chrysene,LB
+37031,32.0039,Carbon Monoxide,TON
+37029,1.6996468,Acrolein,LB
+37029,0.0005873726,"Benzo[g,h,i,]Perylene",LB
+37029,0.0003237982,Benzo[k]Fluoranthene,LB
+37029,0.516187,"2,2,4-Trimethylpentane",LB
+37029,0.13724488,Fluorene,LB
+37029,0.04926074,PM10-Primary from certain diesel engines,TON
+37029,0.003759324,Ammonia,TON
+37029,1.667666,Nitrogen Oxides,TON
+37029,0.002184672,Sulfur Dioxide,TON
+37029,0.001430857,Sulfate Portion of PM2.5-PRI,TON
+37019,0.0003336524,Benz[a]Anthracene,LB
+37019,0.01265662,Nitrous Oxide,TON
+37019,0.0002719388,Sulfate Portion of PM2.5-PRI,TON
+37019,0.003759768,Pyrene,LB
+37019,0.0019726058,Fluoranthene,LB
+37019,0.002825248,Acenaphthylene,LB
+37007,1.5587096,Toluene,LB
+37007,0.1740483,Fluoranthene,LB
+37007,0.11362724,Acenaphthylene,LB
+37007,0.5577548,"2,2,4-Trimethylpentane",LB
+37007,234.642,Carbon Dioxide,TON
+37009,22.77404,Toluene,LB
+37003,0.05494002,Benzo[a]Pyrene,LB
+37003,0.0427596,Benz[a]Anthracene,LB
+37003,0.010215362,Arsenic,LB
+37003,8.161474,Naphthalene,LB
+37003,0.0001591697,Nitrate portion of PM2.5-PRI,TON
+37065,0.0001094958,"Dibenzo[a,h]Anthracene",LB
+37065,0.00305722,Benz[a]Anthracene,LB
+37065,1.446433e-05,Nitrate portion of PM2.5-PRI,TON
+37065,0.007538068,Anthracene,LB
+37061,2.018816,"1,3-Butadiene",LB
+37061,33.8217,Xylenes (Mixed Isomers),LB
+37061,0.00620802,Benzo[k]Fluoranthene,LB
+37061,0.00917168,Benzo[a]Pyrene,LB
+37061,0.933084,Naphthalene,LB
+37061,426.484,Carbon Dioxide,TON
+37061,0.005653635,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.0390627,PM10 Primary (Filt + Cond),TON
+37057,0.0457323,Fluorene,LB
+37057,0.0162341,Ammonia,TON
+37057,0.008482592,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.00492704,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.526699,Styrene,LB
+37057,0.4660148,Acrolein,LB
+37057,0.03875314,Pyrene,LB
+37055,28.72806,Acrolein,LB
+37055,9.204256e-05,Chromium (VI),LB
+37055,1.8967346,Acenaphthylene,LB
+37055,0.537534,Chrysene,LB
+37055,380.1856,Formaldehyde,LB
+37055,9.668982e-05,Mercury,LB
+37055,160.67822,Acetaldehyde,LB
+37055,2.064192,Volatile Organic Compounds,TON
+37051,0.679274,Acenaphthylene,LB
+37051,0.0516557,Methane,TON
+37051,0.0002703653,Nitrate portion of PM2.5-PRI,TON
+37051,6.266266,Nitrogen Oxides,TON
+37051,0.5440511,PM10 Primary (Filt + Cond),TON
+37051,2.067497,Volatile Organic Compounds,TON
+37047,0.00998649,PM10-Primary from certain diesel engines,TON
+37047,0.002012082,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.003901529,Sulfur Dioxide,TON
+37047,3.54053,Acrolein,LB
+37047,1.1906946,Hexane,LB
+37047,0.2144848,Pyrene,LB
+37047,0.0005175046,"Benzo[g,h,i,]Perylene",LB
+37047,0.01224858,Chrysene,LB
+37047,1.2538368,"2,2,4-Trimethylpentane",LB
+37047,2.795174e-05,Mercury,LB
+37047,0.589299,Styrene,LB
+37047,1256.0188,Xylenes (Mixed Isomers),LB
+37047,0.10445218,Benz[a]Anthracene,LB
+37033,6.04949,Toluene,LB
+37033,0.0005137664,Benzo[k]Fluoranthene,LB
+37033,1.5051872e-05,Arsenic,LB
+37033,2.050719e-06,Nitrate portion of PM2.5-PRI,TON
+37033,0.001057692,PM10 Primary (Filt + Cond),TON
+37031,1.3566666,Arsenic,LB
+37031,24.78396,Phenanthrene,LB
+37031,2.672386,Nitrous Oxide,TON
+37031,1.4277994,Chrysene,LB
+37031,0.0510867,"Dibenzo[a,h]Anthracene",LB
+37069,0.14502742,"1,3-Butadiene",LB
+37069,0.04848878,Naphthalene,LB
+37047,0.004981226,Manganese,LB
+37047,0.003165391,Nitrous Oxide,TON
+37047,0.0001617033,Sulfate Portion of PM2.5-PRI,TON
+37047,0.19024966,"1,3-Butadiene",LB
+37047,0.009593788,"Benzo[g,h,i,]Perylene",LB
+37105,2.981032e-06,Nitrate portion of PM2.5-PRI,TON
+37105,0.02923424,Acrolein,LB
+37105,0.002102064,"Benzo[g,h,i,]Perylene",LB
+37105,0.000510745,Fluoranthene,LB
+37105,0.5116042,Formaldehyde,LB
+37105,0.0002789514,Acenaphthene,LB
+37105,2.167906,Toluene,LB
+37105,0.005427296,"Benzo[g,h,i,]Perylene",LB
+37105,8.147333e-06,Nitrate portion of PM2.5-PRI,TON
+37105,0.001431129,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.0001041043,Sulfate Portion of PM2.5-PRI,TON
+37197,0.08756406,Manganese,LB
+37197,3.180684,Phenanthrene,LB
+37197,140.3156,Carbon Monoxide,TON
+37197,336.3646,Ethyl Benzene,LB
+37197,426.5936,Hexane,LB
+37197,0.5009652,Anthracene,LB
+37197,0.9767494,Pyrene,LB
+37197,0.2318198,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.16987972,Benzo[b]Fluoranthene,LB
+37197,0.8561542,Fluoranthene,LB
+37197,0.17029562,Benz[a]Anthracene,LB
+37191,4.45534e-05,Anthracene,LB
+37191,3.075968e-05,Benzo[k]Fluoranthene,LB
+37191,2.542938e-05,Chrysene,LB
+37191,3.099404e-05,Organic Carbon portion of PM2.5-PRI,TON
+37191,12268.52,Ethyl Benzene,LB
+37191,33.61718,Pyrene,LB
+37191,5.321324,Benzo[b]Fluoranthene,LB
+37191,5.346038,Chrysene,LB
+37191,6.895302,Benzo[a]Pyrene,LB
+37191,41.0374,Fluorene,LB
+37191,4522.971,Carbon Monoxide,TON
+37191,278143.2,Carbon Dioxide,TON
+37191,18.61476,Ammonia,TON
+37189,3.589894,Ethyl Benzene,LB
+37189,1.126997,Phenanthrene,LB
+37189,0.0344708,Methane,TON
+37189,0.002715559,Nitrous Oxide,TON
+37189,7.861242,Nitrogen Oxides,TON
+37189,0.009609265,Sulfur Dioxide,TON
+37189,0.5888972,"2,2,4-Trimethylpentane",LB
+37189,0.00036572,Benz[a]Anthracene,LB
+37189,5.099272e-05,Manganese,LB
+37189,6.556604e-07,Mercury,LB
+37189,0.2283238,Acetaldehyde,LB
+37189,0.01320949,Volatile Organic Compounds,TON
+37181,11.18343,Xylenes (Mixed Isomers),LB
+37181,0.0002268326,"Dibenzo[a,h]Anthracene",LB
+37181,0.004635012,Benz[a]Anthracene,LB
+37181,0.000315197,Mercury,LB
+37181,0.03147152,Phenanthrene,LB
+37181,6.833388,Carbon Monoxide,TON
+37181,0.6659485,Nitrogen Oxides,TON
+37181,0.04117307,PM10 Primary (Filt + Cond),TON
+37081,87.18282,Toluene,LB
+37081,9.049978,Propionaldehyde,LB
+37081,0.06745888,Fluoranthene,LB
+37081,0.0435897,Nickel,LB
+37081,0.2164144,Phenanthrene,LB
+37081,1.96104,Naphthalene,LB
+37081,0.3346942,Methane,TON
+37011,0.450937,Benzene,LB
+37141,0.008485526,Anthracene,LB
+37141,2.205958,Propionaldehyde,LB
+37141,7.604008e-05,Chromium (VI),LB
+37141,0.0502688,"Benzo[g,h,i,]Perylene",LB
+37141,0.04231688,Acenaphthylene,LB
+37141,0.01457367,Arsenic,LB
+37141,1342.396,Carbon Dioxide,TON
+37199,0.0003698769,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.3073508,"1,3-Butadiene",LB
+37199,0.000674942,Benzo[b]Fluoranthene,LB
+37199,0.0006529244,Chrysene,LB
+37199,2.145548e-05,"Dibenzo[a,h]Anthracene",LB
+37199,1.0771258e-05,Mercury,LB
+37199,0.0002059316,Arsenic,LB
+37199,0.1175072,Naphthalene,LB
+37199,0.001696277,Ammonia,TON
+37197,2.430612,Styrene,LB
+37197,0.4577258,Anthracene,LB
+37197,12.087168,Xylenes (Mixed Isomers),LB
+37197,4.531836e-05,Chromium (VI),LB
+37197,0.05412852,Chrysene,LB
+37197,0.130109,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.0001740641,Pyrene,LB
+37187,1.6850734e-06,"Dibenzo[a,h]Anthracene",LB
+37187,5.936014e-06,Arsenic,LB
+37187,0.00010103184,Acenaphthene,LB
+37187,0.005250722,Naphthalene,LB
+37183,0.05912028,Acenaphthylene,LB
+37183,0.013528862,Chrysene,LB
+37183,0.012707532,Acenaphthene,LB
+37183,0.0735298,Phenanthrene,LB
+37183,0.02610462,Pyrene,LB
+37183,0.00014636708,Chromium (VI),LB
+37183,0.001667835,Sulfate Portion of PM2.5-PRI,TON
+37181,2.511928,Ethyl Benzene,LB
+37181,14.608134,Toluene,LB
+37181,0.002346798,Benzo[b]Fluoranthene,LB
+37181,0.0019583888,Chrysene,LB
+37181,1.3443816,Formaldehyde,LB
+37181,1.922912,Carbon Monoxide,TON
+37181,0.0007055977,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.01052425,PM10 Primary (Filt + Cond),TON
+37179,0.5191092,Acrolein,LB
+37179,135.5073,Toluene,LB
+37179,0.03604702,Fluoranthene,LB
+37179,0.004904402,Benzo[k]Fluoranthene,LB
+37179,0.11440414,Acenaphthylene,LB
+37179,0.0001139076,"Dibenzo[a,h]Anthracene",LB
+37179,1.3058076,Naphthalene,LB
+37179,0.01833513,Methane,TON
+37179,229.3075,Carbon Dioxide,TON
+37007,0.0321583,Phenanthrene,LB
+37007,0.0007199412,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.12190464,Propionaldehyde,LB
+37007,0.001624195,Benzo[k]Fluoranthene,LB
+37007,5.271974,"2,2,4-Trimethylpentane",LB
+37007,0.0003286892,Manganese,LB
+37007,0.0005482003,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.002558417,Nitrous Oxide,TON
+37007,0.1249492,Nitrogen Oxides,TON
+37007,0.003471246,PM10 Primary (Filt + Cond),TON
+37007,0.0004801808,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,12.252142,Anthracene,LB
+37013,9.773294,"Benzo[g,h,i,]Perylene",LB
+37013,3.403396,Chrysene,LB
+37013,0.08432058,"Dibenzo[a,h]Anthracene",LB
+37013,10410.49,"2,2,4-Trimethylpentane",LB
+37013,3.394486,Benz[a]Anthracene,LB
+37013,121862.3,Carbon Dioxide,TON
+37013,356.9653,Nitrogen Oxides,TON
+37003,1.9008568,Pyrene,LB
+37003,10245.69,Carbon Dioxide,TON
+37003,0.6181116,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.01327857,Nitrous Oxide,TON
+37001,0.4811698,Styrene,LB
+37001,2.978352,Toluene,LB
+37001,0.0019964996,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.0010819652,"Dibenzo[a,h]Anthracene",LB
+37001,0.11166802,Acenaphthene,LB
+37001,4.074584,Naphthalene,LB
+37001,1137.105,Carbon Dioxide,TON
+37001,0.1826889,PM10-Primary from certain diesel engines,TON
+37001,0.001517063,Nitrous Oxide,TON
+37001,0.01643361,Ammonia,TON
+37043,0.267927,Benzene,LB
+37171,0.16343484,"1,3-Butadiene",LB
+37171,3.00738,Toluene,LB
+37171,1.5157632e-05,Chromium (VI),LB
+37171,1.9014246,Formaldehyde,LB
+37171,3.660898,Benzene,LB
+37171,0.01346636,Ammonia,TON
+37145,0.000427968,Pyrene,LB
+37145,0.0002081684,Benzo[k]Fluoranthene,LB
+37145,0.0010479482,Acenaphthylene,LB
+37145,1.5051448e-05,Mercury,LB
+37145,0.0004605436,Fluorene,LB
+37145,25.8154,Carbon Dioxide,TON
+37145,1.534508e-05,Sulfate Portion of PM2.5-PRI,TON
+37141,0.03983616,"1,3-Butadiene",LB
+37141,0.03445126,Acrolein,LB
+37141,3.629982e-06,Chromium (VI),LB
+37141,0.0006957504,Arsenic,LB
+37141,0.003320349,Methane,TON
+37131,3.06884,"2,2,4-Trimethylpentane",LB
+37131,0.07836642,Volatile Organic Compounds,TON
+37099,4.398604e-05,Chromium (VI),LB
+37099,0.01104218,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.0004409702,Mercury,LB
+37099,0.009696197,Nitrous Oxide,TON
+37101,59.77032,Toluene,LB
+37097,0.0019932848,Mercury,LB
+37097,0.02077262,Acenaphthene,LB
+37097,0.04207652,Fluorene,LB
+37097,1.40503,Volatile Organic Compounds,TON
+37097,0.600863,Styrene,LB
+37097,2.091278,Acrolein,LB
+37097,0.02830472,Benzo[k]Fluoranthene,LB
+37171,0.3218468,Acrolein,LB
+37171,0.007795902,Benzo[b]Fluoranthene,LB
+37171,0.0142152,PM2.5 Primary (Filt + Cond),TON
+37169,0.00028918,Sulfate Portion of PM2.5-PRI,TON
+37169,0.9134372,Styrene,LB
+37169,12.09078,Acetaldehyde,LB
+37169,0.0375626,Acenaphthene,LB
+37169,0.0107747,Nitrous Oxide,TON
+37169,0.7240521,Nitrogen Oxides,TON
+37169,0.02316953,PM10 Primary (Filt + Cond),TON
+37149,0.8425802,Propionaldehyde,LB
+37149,13.469392,Acetaldehyde,LB
+37149,0.08756158,Fluorene,LB
+37149,0.008875912,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.01493114,Acrolein,LB
+37141,0.00429545,Acenaphthylene,LB
+37141,0.3071138,Formaldehyde,LB
+37141,0.0001704392,Sulfur Dioxide,TON
+37137,16.8407,Phenanthrene,LB
+37137,78.3234,Nitrogen Oxides,TON
+37137,2.317359,PM10 Primary (Filt + Cond),TON
+37137,0.265949,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,52.71891,Volatile Organic Compounds,TON
+37137,73.77918,Styrene,LB
+37137,0.8037214,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,958.3904,Formaldehyde,LB
+37137,0.01726096,Mercury,LB
+37129,2452.814,Hexane,LB
+37129,2.511538,"Benzo[g,h,i,]Perylene",LB
+37129,0.7573688,Benz[a]Anthracene,LB
+37129,0.4750536,Arsenic,LB
+37129,0.2640684,Elemental Carbon portion of PM2.5-PRI,TON
+37129,1.562486,PM2.5 Primary (Filt + Cond),TON
+37129,0.04289125,Sulfate Portion of PM2.5-PRI,TON
+37129,50.95414,Volatile Organic Compounds,TON
+37121,3.293594,"1,3-Butadiene",LB
+37121,58.10912,Xylenes (Mixed Isomers),LB
+37121,0.0074508,Benzo[a]Pyrene,LB
+37121,9.246692,Carbon Monoxide,TON
+37121,0.002181996,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.3840238,Ethyl Benzene,LB
+37117,0.02689686,Anthracene,LB
+37117,0.05124278,Pyrene,LB
+37117,0.04229364,Fluoranthene,LB
+37117,0.313481,"2,2,4-Trimethylpentane",LB
+37117,1.0490376,Benzene,LB
+37117,0.3204182,"1,3-Butadiene",LB
+37117,0.07340396,Acrolein,LB
+37117,0.0015845396,Manganese,LB
+37117,0.0001765709,Nickel,LB
+37117,74.13683,Carbon Dioxide,TON
+37117,0.1430761,Nitrogen Oxides,TON
+37117,34.27868,Acenaphthylene,LB
+37117,0.05171992,"Dibenzo[a,h]Anthracene",LB
+37117,0.04197996,Mercury,LB
+37117,7.531832,Acenaphthene,LB
+37117,40.82064,Phenanthrene,LB
+37117,15.25643,Fluorene,LB
+37117,1684.573,Carbon Monoxide,TON
+37117,5.835949,PM10 Primary (Filt + Cond),TON
+37101,127.92788,Ethyl Benzene,LB
+37101,240.4628,Xylenes (Mixed Isomers),LB
+37101,0.4699454,Manganese,LB
+37101,0.5896698,Nickel,LB
+37101,2.603816,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.8725927,Ammonia,TON
+37091,1.7613232,Phenanthrene,LB
+37091,0.6934375,PM10-Primary from certain diesel engines,TON
+37091,0.001563945,Nitrate portion of PM2.5-PRI,TON
+37091,0.1345989,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.02647814,Benzo[b]Fluoranthene,LB
+37091,163.20844,Formaldehyde,LB
+37091,0.003661406,"Dibenzo[a,h]Anthracene",LB
+37103,0.02841686,Acrolein,LB
+37095,0.00018248294,"Benzo[g,h,i,]Perylene",LB
+37095,0.0001251671,Benzo[k]Fluoranthene,LB
+37095,0.005807312,Chrysene,LB
+37093,1.997756,Anthracene,LB
+37093,0.009859044,"Benzo[g,h,i,]Perylene",LB
+37093,0.2433566,Chrysene,LB
+37093,0.0630221,Benzo[a]Pyrene,LB
+37093,0.5334076,PM25-Primary from certain diesel engines,TON
+37093,0.01288204,Nitrous Oxide,TON
+37093,0.09895457,Organic Carbon portion of PM2.5-PRI,TON
+37089,11.393322,"1,3-Butadiene",LB
+37089,0.9766122,Anthracene,LB
+37089,0.004043408,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.002200876,Benzo[k]Fluoranthene,LB
+37089,0.15402704,Chrysene,LB
+37089,0.002188872,"Dibenzo[a,h]Anthracene",LB
+37089,0.0606719,Manganese,LB
+37089,0.3988086,PM10-Primary from certain diesel engines,TON
+37083,0.648204,Hexane,LB
+37083,1.8348752,Xylenes (Mixed Isomers),LB
+37083,0.08169186,Acenaphthene,LB
+37083,1.1487736,Ethyl Benzene,LB
+37083,0.1566757,Pyrene,LB
+37083,1.968113e-05,Chromium (VI),LB
+37083,14.714062,Acetaldehyde,LB
+37083,0.0997151,Acenaphthene,LB
+37077,0.3956208,Acrolein,LB
+37077,6.489384e-06,Chromium (VI),LB
+37077,0.006030128,Benzo[k]Fluoranthene,LB
+37077,0.005595516,Chrysene,LB
+37077,0.8994944,Naphthalene,LB
+37077,3.176036e-05,Nitrate portion of PM2.5-PRI,TON
+37077,0.005572239,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.04324286,PM10 Primary (Filt + Cond),TON
+37053,0.0005308036,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.000288715,Benzo[k]Fluoranthene,LB
+37053,0.2630348,"2,2,4-Trimethylpentane",LB
+37053,0.02285948,Benz[a]Anthracene,LB
+37053,0.04702455,PM10-Primary from certain diesel engines,TON
+37053,0.02767228,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.005421575,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.0011592684,Phenanthrene,LB
+37197,0.000442557,Nitrous Oxide,TON
+37197,1.605612e-06,Nitrate portion of PM2.5-PRI,TON
+37197,0.0004910082,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,928.246,Benzene,LB
+37193,0.004965728,Mercury,LB
+37193,49.31488,Naphthalene,LB
+37193,9362.709,Carbon Dioxide,TON
+37193,0.3737948,PM2.5 Primary (Filt + Cond),TON
+37193,16.22136,Volatile Organic Compounds,TON
+37191,0.001619913,Benzo[a]Pyrene,LB
+37191,0.09292998,"1,3-Butadiene",LB
+37191,0.07487136,Acrolein,LB
+37191,0.004076762,Phenanthrene,LB
+37187,197.0414,"1,3-Butadiene",LB
+37187,0.4378386,Benzo[k]Fluoranthene,LB
+37187,1.2944788,Acenaphthene,LB
+37187,7.0536,Phenanthrene,LB
+37187,21271.66,Carbon Dioxide,TON
+37187,0.149192,Elemental Carbon portion of PM2.5-PRI,TON
+37179,18.299192,Toluene,LB
+37179,6.626148,"2,2,4-Trimethylpentane",LB
+37179,24.23044,Benzene,LB
+37179,0.0349843,Nickel,LB
+37179,1.6062232,Fluorene,LB
+37179,3200.991,Carbon Dioxide,TON
+37179,0.5268497,PM25-Primary from certain diesel engines,TON
+37179,0.1547655,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.0371862,"Benzo[g,h,i,]Perylene",LB
+37171,0.039233,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.15398252,Benzo[b]Fluoranthene,LB
+37171,82.60694,"2,2,4-Trimethylpentane",LB
+37171,0.5541358,Manganese,LB
+37171,0.0007346302,Mercury,LB
+37171,8.91361,Fluorene,LB
+37171,4.128444,Methane,TON
+37171,165.3095,Nitrogen Oxides,TON
+37171,10.19712,Volatile Organic Compounds,TON
+37171,0.0415415,Manganese,LB
+37171,0.019515956,Nickel,LB
+37171,1.6578296,Phenanthrene,LB
+37171,0.005358614,Nitrous Oxide,TON
+37171,0.02870273,Ammonia,TON
+37171,11.833852,Xylenes (Mixed Isomers),LB
+37149,1.3132464,Acenaphthylene,LB
+37149,0.002996228,"Dibenzo[a,h]Anthracene",LB
+37149,192.40586,"2,2,4-Trimethylpentane",LB
+37149,0.03031596,Nickel,LB
+37149,0.04648572,Arsenic,LB
+37149,4263.068,Carbon Dioxide,TON
+37149,0.0003853131,Nitrate portion of PM2.5-PRI,TON
+37137,0.01444385,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,9.385858e-05,Chromium (VI),LB
+37137,0.041722,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.0009581274,"Dibenzo[a,h]Anthracene",LB
+37137,487.3756,Toluene,LB
+37137,0.2437924,Pyrene,LB
+37135,0.9528854,"1,3-Butadiene",LB
+37135,0.06928608,Acenaphthylene,LB
+37135,0.0008950344,Nickel,LB
+37135,3.936792,Acetaldehyde,LB
+37135,0.7888344,Naphthalene,LB
+37135,0.001706015,Elemental Carbon portion of PM2.5-PRI,TON
+37135,3.367188e-05,Nitrate portion of PM2.5-PRI,TON
+37135,0.2144665,Volatile Organic Compounds,TON
+37135,3027.486,Ethyl Benzene,LB
+37135,25219.08,Toluene,LB
+37133,0.0002988736,Mercury,LB
+37133,353.9376,Acetaldehyde,LB
+37133,1.969443,PM10-Primary from certain diesel engines,TON
+37133,0.3214837,Ammonia,TON
+37133,0.009730793,Nitrate portion of PM2.5-PRI,TON
+37133,62.1097,Acrolein,LB
+37133,0.0417254,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,1.0486794,Chrysene,LB
+37133,0.3500722,Manganese,LB
+37129,0.05265426,Chrysene,LB
+37129,0.0002685862,Nitrate portion of PM2.5-PRI,TON
+37129,0.0003424956,"Dibenzo[a,h]Anthracene",LB
+37129,8.615016,"2,2,4-Trimethylpentane",LB
+37129,27.09884,Toluene,LB
+37125,0.3283604,Styrene,LB
+37125,0.760335,"1,3-Butadiene",LB
+37125,0.1776486,PM10 Primary (Filt + Cond),TON
+37125,0.006060452,Sulfur Dioxide,TON
+37125,0.12856452,Acenaphthylene,LB
+37125,0.05784356,Benz[a]Anthracene,LB
+37125,0.3073348,Phenanthrene,LB
+37125,0.1143428,PM10-Primary from certain diesel engines,TON
+37123,0.3682788,Ethyl Benzene,LB
+37123,0.0004399594,"Benzo[g,h,i,]Perylene",LB
+37123,0.01373288,Chrysene,LB
+37123,11.154926,Formaldehyde,LB
+37123,0.004403922,Manganese,LB
+37123,4.140958e-06,Mercury,LB
+37123,0.002728034,Sulfur Dioxide,TON
+37121,3.236492,"2,2,4-Trimethylpentane",LB
+37121,0.03021456,Manganese,LB
+37121,9.288246,Acrolein,LB
+37121,9.315136,Toluene,LB
+37121,0.256918,PM25-Primary from certain diesel engines,TON
+37121,0.02282072,Benzo[b]Fluoranthene,LB
+37121,0.6098304,Acenaphthylene,LB
+37111,20.21384,Benzene,LB
+37123,1.227462e-05,Chromium (VI),LB
+37123,0.0015379472,"Benzo[g,h,i,]Perylene",LB
+37123,0.19924076,Acenaphthene,LB
+37123,0.5910152,Phenanthrene,LB
+37123,0.1391313,PM10-Primary from certain diesel engines,TON
+37123,0.1675387,PM10 Primary (Filt + Cond),TON
+37123,0.1316875,PM2.5 Primary (Filt + Cond),TON
+37123,1.3822928,Hexane,LB
+37123,0.18410744,Anthracene,LB
+37123,0.4349962,Pyrene,LB
+37119,0.13428388,Fluoranthene,LB
+37119,29.7503,Formaldehyde,LB
+37119,1320.744,Carbon Dioxide,TON
+37119,0.009415774,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.0001774944,Nitrate portion of PM2.5-PRI,TON
+37119,0.02460815,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.02768792,Sulfur Dioxide,TON
+37113,25.05298,Nitrogen Oxides,TON
+37113,0.06188621,Sulfur Dioxide,TON
+37113,45.14204,Ethyl Benzene,LB
+37113,45.50656,"1,3-Butadiene",LB
+37113,108.7592,Acrolein,LB
+37113,33.98266,Hexane,LB
+37113,0.004646546,Benzo[k]Fluoranthene,LB
+37113,1351.359,Formaldehyde,LB
+37113,33.09388,"2,2,4-Trimethylpentane",LB
+37113,0.17199772,Nickel,LB
+37113,4.625182,Acenaphthene,LB
+37105,1.0648222,Ethyl Benzene,LB
+37105,2.407572,Acrolein,LB
+37105,0.2982526,Pyrene,LB
+37105,0.0013670682,"Benzo[g,h,i,]Perylene",LB
+37105,0.002748038,Arsenic,LB
+37105,0.3718484,Phenanthrene,LB
+37105,0.7338761,Carbon Monoxide,TON
+37105,0.1322678,PM10 Primary (Filt + Cond),TON
+37105,0.004324517,Sulfur Dioxide,TON
+37105,0.004751974,Sulfate Portion of PM2.5-PRI,TON
+37105,0.8777098,"2,2,4-Trimethylpentane",LB
+37091,1.5691454,Ethyl Benzene,LB
+37091,2.798158,Toluene,LB
+37091,0.3749916,Pyrene,LB
+37091,0.006433862,Nickel,LB
+37091,0.003699232,Sulfur Dioxide,TON
+37093,2.670279,PM2.5 Primary (Filt + Cond),TON
+37093,0.06568045,Sulfate Portion of PM2.5-PRI,TON
+37079,6.835992,Styrene,LB
+37079,0.0013337112,Benzo[k]Fluoranthene,LB
+37079,0.001324872,"Dibenzo[a,h]Anthracene",LB
+37079,50.46474,Naphthalene,LB
+37079,0.1159637,Methane,TON
+37079,0.3168568,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.000376129,Phenanthrene,LB
+37073,4.727651e-07,Nitrate portion of PM2.5-PRI,TON
+37073,33040.39,Carbon Dioxide,TON
+37073,0.8494276,Benzo[b]Fluoranthene,LB
+37073,11760.144,Toluene,LB
+37067,0.05478606,Organic Carbon portion of PM2.5-PRI,TON
+37067,8.969234e-06,Chromium (VI),LB
+37067,0.002444828,"Benzo[g,h,i,]Perylene",LB
+37067,5.122838,Benzene,LB
+37067,23.48598,Acetaldehyde,LB
+37067,0.6669544,Phenanthrene,LB
+37067,0.135674,PM10-Primary from certain diesel engines,TON
+37067,0.1248254,PM25-Primary from certain diesel engines,TON
+37067,0.003951062,Arsenic,LB
+37067,6.119056,Acetaldehyde,LB
+37067,10.90536,Carbon Monoxide,TON
+37067,0.00379238,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.06622162,PM10 Primary (Filt + Cond),TON
+37067,0.0213952,Benzo[a]Pyrene,LB
+37067,0.0004956528,"Dibenzo[a,h]Anthracene",LB
+37067,0.459717,Styrene,LB
+37067,2.132922,"1,3-Butadiene",LB
+37067,67.86268,Toluene,LB
+37067,0.012370322,Benzo[b]Fluoranthene,LB
+37065,0.07478085,Methane,TON
+37065,1.224944,PM25-Primary from certain diesel engines,TON
+37065,0.02971399,Sulfate Portion of PM2.5-PRI,TON
+37065,1.509144,Volatile Organic Compounds,TON
+37065,8.492442,Ethyl Benzene,LB
+37065,13.91775,Propionaldehyde,LB
+37065,15.923116,Xylenes (Mixed Isomers),LB
+37065,7.139632e-05,Chromium (VI),LB
+37065,0.416078,Chrysene,LB
+37065,6.245322,"2,2,4-Trimethylpentane",LB
+37065,0.10093494,Manganese,LB
+37059,1.540264,Organic Carbon portion of PM2.5-PRI,TON
+37059,120.95272,Styrene,LB
+37059,8.75769,Pyrene,LB
+37059,1.8151454,Benzo[k]Fluoranthene,LB
+37059,23.64332,Acenaphthylene,LB
+37059,2.188569,Nitrous Oxide,TON
+37043,3.790376e-05,Benzo[k]Fluoranthene,LB
+37043,0.001800521,Chrysene,LB
+37043,0.0005640929,Methane,TON
+37043,0.02705269,Carbon Monoxide,TON
+37043,0.00330065,PM10-Primary from certain diesel engines,TON
+37043,0.05724015,Nitrogen Oxides,TON
+37043,0.001299962,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.003083646,Benz[a]Anthracene,LB
+37043,0.0001675502,Nickel,LB
+37043,0.5729098,Acetaldehyde,LB
+37043,0.02380404,Ammonia,TON
+37043,0.03692909,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,2.92826,Ethyl Benzene,LB
+37043,0.2889402,Anthracene,LB
+37043,0.0591884,Benzo[a]Pyrene,LB
+37043,0.002416016,"Dibenzo[a,h]Anthracene",LB
+37043,8.105534,Benzene,LB
+37043,0.0116917,Nickel,LB
+37043,0.5815212,Fluorene,LB
+37043,0.00306599,Nitrous Oxide,TON
+37037,45.3315,Acrolein,LB
+37037,6.80961,Phenanthrene,LB
+37037,3.805824,Fluorene,LB
+37037,0.02282656,Nitrous Oxide,TON
+37037,3.221109,Volatile Organic Compounds,TON
+37035,0.3072086,Benzo[b]Fluoranthene,LB
+37035,3.312158,Benz[a]Anthracene,LB
+37035,32.52725,Carbon Monoxide,TON
+37035,111.50162,Benzene,LB
+37035,0.15764968,Nickel,LB
+37027,0.3980488,Acenaphthene,LB
+37027,13.243228,Naphthalene,LB
+37027,4.55101,Carbon Monoxide,TON
+37027,0.7005152,Volatile Organic Compounds,TON
+37027,9.541194,Acrolein,LB
+37027,3.028408,Hexane,LB
+37027,7.977178,Xylenes (Mixed Isomers),LB
+37027,3.001494,"2,2,4-Trimethylpentane",LB
+37027,13.490472,Hexane,LB
+37027,6.256708,Pyrene,LB
+37027,0.00011514708,Chromium (VI),LB
+37027,7.91079,Styrene,LB
+37027,1.811453,Acenaphthene,LB
+37027,4.122544,Fluorene,LB
+37023,0.02288306,Arsenic,LB
+37023,0.4633134,Benzo[a]Pyrene,LB
+37023,13.271896,"2,2,4-Trimethylpentane",LB
+37023,2.465879,PM25-Primary from certain diesel engines,TON
+37023,3.532293,PM10 Primary (Filt + Cond),TON
+37023,0.07679888,Sulfur Dioxide,TON
+37023,18.021304,Ethyl Benzene,LB
+37159,132.23182,Acetaldehyde,LB
+37159,2.58416,Phenanthrene,LB
+37159,1.6370126,Fluorene,LB
+37159,1810.913,Carbon Dioxide,TON
+37159,0.05402528,PM25-Primary from certain diesel engines,TON
+37159,0.7793694,Anthracene,LB
+37149,0.0005135294,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,86.60842,Formaldehyde,LB
+37149,0.004839273,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.203203,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.9233326,Fluoranthene,LB
+37153,0.1632316,Sulfur Dioxide,TON
+37147,0.6777953,Methane,TON
+37147,31369.84,Carbon Dioxide,TON
+37147,3.351282,PM10-Primary from certain diesel engines,TON
+37147,1.966839,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.4616629,Ammonia,TON
+37147,82.01643,Nitrogen Oxides,TON
+37147,0.7102157,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.2341434,Sulfate Portion of PM2.5-PRI,TON
+37147,26.58768,Ethyl Benzene,LB
+37147,0.02822452,"Benzo[g,h,i,]Perylene",LB
+37147,22.46938,"2,2,4-Trimethylpentane",LB
+37147,0.0847133,Arsenic,LB
+37147,337.371,Acetaldehyde,LB
+37147,3.391686e-06,Chromium (VI),LB
+37147,0.004140362,Manganese,LB
+37147,2.918344e-06,Mercury,LB
+37147,0.06291058,Acenaphthene,LB
+37147,0.3448652,Carbon Monoxide,TON
+37147,0.04344194,PM2.5 Primary (Filt + Cond),TON
+37135,119.44074,Hexane,LB
+37015,4.302832e-05,Benzo[b]Fluoranthene,LB
+37015,0.04038342,Formaldehyde,LB
+37015,3.432002e-07,Mercury,LB
+37015,6.561744e-06,Arsenic,LB
+37015,8.39602e-05,Methane,TON
+37199,5.696472,Acetaldehyde,LB
+37199,0.09096986,Fluorene,LB
+37199,0.001327424,Sulfate Portion of PM2.5-PRI,TON
+37199,0.07371717,Volatile Organic Compounds,TON
+37199,0.336581,Hexane,LB
+37199,3.922894e-06,Chromium (VI),LB
+37199,0.0327226,Benz[a]Anthracene,LB
+37191,7.411156,Phenanthrene,LB
+37191,36.31276,Nitrogen Oxides,TON
+37191,0.2797198,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.192925,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,1.1661584,Anthracene,LB
+37191,0.4829382,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,1.9885112,Fluoranthene,LB
+37191,413.5774,Formaldehyde,LB
+37187,0.001155006,PM2.5 Primary (Filt + Cond),TON
+37187,10.81436,Benzene,LB
+37187,0.02397924,Nickel,LB
+37187,0.011643298,Arsenic,LB
+37187,0.07440319,Methane,TON
+37187,3.775769,Carbon Monoxide,TON
+37187,9.531468,Xylenes (Mixed Isomers),LB
+37187,0.019047454,Benzo[b]Fluoranthene,LB
+37195,0.02257714,Benzo[k]Fluoranthene,LB
+37195,15.693352,Styrene,LB
+37195,39.95874,"1,3-Butadiene",LB
+37195,241.4066,Toluene,LB
+37195,9.26554,Pyrene,LB
+37195,0.000754222,Mercury,LB
+37195,8.290532,Fluorene,LB
+37195,42.87414,Carbon Monoxide,TON
+37195,0.9057776,Ammonia,TON
+37187,0.0097188,Ethyl Benzene,LB
+37187,8.266904e-05,Phenanthrene,LB
+37187,2.097602e-08,Nitrate portion of PM2.5-PRI,TON
+37187,1.707134e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,1.7059196e-07,"Dibenzo[a,h]Anthracene",LB
+37183,1.6908292,Fluoranthene,LB
+37183,0.3206636,Chrysene,LB
+37183,0.05018006,Benzo[b]Fluoranthene,LB
+37183,0.15197192,Manganese,LB
+37183,0.03897418,Nickel,LB
+37183,1.5943994,Fluorene,LB
+37183,0.01453416,Nitrous Oxide,TON
+37183,0.002995752,Nitrate portion of PM2.5-PRI,TON
+37181,0.0009614162,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.661183,Acenaphthylene,LB
+37181,1.712156,Styrene,LB
+37181,0.08749921,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.06237194,Naphthalene,LB
+37179,235.5268,Carbon Dioxide,TON
+37179,0.01092245,Ammonia,TON
+37179,0.16420874,"1,3-Butadiene",LB
+37179,3.059364,Toluene,LB
+37179,1.3639466e-05,Chromium (VI),LB
+37181,1334.8568,Xylenes (Mixed Isomers),LB
+37181,0.2184006,Benzo[a]Pyrene,LB
+37181,0.6128982,PM10 Primary (Filt + Cond),TON
+37179,7917.218,Toluene,LB
+37179,0.6264482,Benzo[b]Fluoranthene,LB
+37179,2.349312,Acenaphthene,LB
+37179,12.749768,Phenanthrene,LB
+37179,1.65623,Methane,TON
+37179,41569.93,Carbon Dioxide,TON
+37179,0.4378138,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.03518506,Benz[a]Anthracene,LB
+37177,1.3663782,Benzene,LB
+37177,0.0017758006,Nickel,LB
+37177,6.294996,Acetaldehyde,LB
+37177,0.04809708,Acenaphthene,LB
+37177,93.91805,Carbon Dioxide,TON
+37177,0.01663226,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.00191207,Ammonia,TON
+37177,0.04843507,PM10 Primary (Filt + Cond),TON
+37177,0.0004323318,Benzo[k]Fluoranthene,LB
+37043,0.9542774,Styrene,LB
+37043,0.002049824,Benzo[k]Fluoranthene,LB
+37043,1.2859944e-05,Mercury,LB
+37043,7.027354,Naphthalene,LB
+37043,0.07063259,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.03085806,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.015901506,Acenaphthylene,LB
+37043,1.500588e-06,Mercury,LB
+37043,0.00349178,Acenaphthene,LB
+37043,0.1813004,Naphthalene,LB
+37043,0.004334778,Methane,TON
+37037,0.009291644,Benzo[b]Fluoranthene,LB
+37037,4.82952e-05,Nitrate portion of PM2.5-PRI,TON
+37037,11.465606,"1,3-Butadiene",LB
+37037,6.146252,Acrolein,LB
+37037,1325.3696,Xylenes (Mixed Isomers),LB
+37037,0.4701906,Fluoranthene,LB
+37037,1.4582124,Acenaphthylene,LB
+37037,0.09518518,Chrysene,LB
+37037,0.003228352,"Dibenzo[a,h]Anthracene",LB
+37037,568.4668,"2,2,4-Trimethylpentane",LB
+37037,434.4646,Benzene,LB
+37037,0.017065524,Nickel,LB
+37037,86.82532,Carbon Monoxide,TON
+37037,0.04597899,Sulfur Dioxide,TON
+37029,14.639116,Ethyl Benzene,LB
+37029,28.51316,Toluene,LB
+37029,27.68918,Xylenes (Mixed Isomers),LB
+37029,0.00011767018,Chromium (VI),LB
+37029,0.13776424,Chrysene,LB
+37029,438.8038,Formaldehyde,LB
+37029,0.05282662,Manganese,LB
+37029,48.67162,Naphthalene,LB
+37029,24.26653,Carbon Monoxide,TON
+37029,0.1005476,Ammonia,TON
+37029,0.4927607,PM10 Primary (Filt + Cond),TON
+37029,0.3855611,PM2.5 Primary (Filt + Cond),TON
+37029,0.02388328,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,7.036839,Volatile Organic Compounds,TON
+37069,0.005343152,"Dibenzo[a,h]Anthracene",LB
+37069,131.00968,Benzene,LB
+37069,8.07354,Fluorene,LB
+37069,67.70961,Carbon Monoxide,TON
+37069,20.72864,Styrene,LB
+37069,0.009898056,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.005362924,Benzo[k]Fluoranthene,LB
+37069,1357.4682,Formaldehyde,LB
+37067,23.07574,Styrene,LB
+37067,52.71684,Hexane,LB
+37067,0.04150448,"Dibenzo[a,h]Anthracene",LB
+37067,1.34019,Ammonia,TON
+37067,10.46739,Volatile Organic Compounds,TON
+37059,0.002595192,Methane,TON
+37059,0.008112628,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.374951,Nitrogen Oxides,TON
+37059,0.01734604,PM2.5 Primary (Filt + Cond),TON
+37059,0.04845604,Fluoranthene,LB
+37059,0.6293162,Benzene,LB
+37059,0.0009849488,Nickel,LB
+37065,3662.86,Ethyl Benzene,LB
+37065,117.32838,Styrene,LB
+37065,1787.7822,Acetaldehyde,LB
+37065,0.01021386,Nitrate portion of PM2.5-PRI,TON
+37049,78.43934,Toluene,LB
+37049,5.10025e-08,Chromium (VI),LB
+37049,0.0002623116,Benzo[k]Fluoranthene,LB
+37049,0.0003567792,Benzo[a]Pyrene,LB
+37049,0.0002634764,Benz[a]Anthracene,LB
+37049,6.222238e-05,Manganese,LB
+37049,9.775448e-06,Arsenic,LB
+37049,0.01925863,Nitrogen Oxides,TON
+37049,0.0003648044,PM2.5 Primary (Filt + Cond),TON
+37049,0.014395804,Acrolein,LB
+37049,0.7584596,Hexane,LB
+37049,0.0007817642,Anthracene,LB
+37045,40.16064,Xylenes (Mixed Isomers),LB
+37045,7.59904e-06,Chromium (VI),LB
+37045,0.04399144,Fluorene,LB
+37041,0.06061452,Benzo[k]Fluoranthene,LB
+37041,0.06241066,Chrysene,LB
+37041,250.7968,Benzene,LB
+37029,0.0012861238,Chromium (VI),LB
+37029,4.022162,Acenaphthylene,LB
+37029,0.01289325,Mercury,LB
+37029,0.2464938,Arsenic,LB
+37029,0.882319,Acenaphthene,LB
+37029,0.3924167,Nitrous Oxide,TON
+37023,13.237614,Styrene,LB
+37023,33.78484,"1,3-Butadiene",LB
+37023,206.5864,Toluene,LB
+37023,3.284324,Anthracene,LB
+37023,64.05742,Propionaldehyde,LB
+37023,0.0005492436,Mercury,LB
+37023,4.568239,PM2.5 Primary (Filt + Cond),TON
+37023,0.599941,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.02324005,Nitrous Oxide,TON
+37023,18.569818,"1,3-Butadiene",LB
+37023,0.00018452156,Chromium (VI),LB
+37023,3.148278,Acenaphthylene,LB
+37023,0.017666558,"Dibenzo[a,h]Anthracene",LB
+37023,17.064992,"2,2,4-Trimethylpentane",LB
+37023,58.04906,Benzene,LB
+37133,0.7324807,Ammonia,TON
+37133,0.1915824,Sulfur Dioxide,TON
+37133,14.654456,Acenaphthylene,LB
+37133,0.952538,Chrysene,LB
+37131,0.05427702,Nickel,LB
+37131,1.204724,PM2.5 Primary (Filt + Cond),TON
+37131,0.1048675,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,7.876916,"1,3-Butadiene",LB
+37131,20.37544,Acrolein,LB
+37131,2.213,Pyrene,LB
+37131,0.288849,Chrysene,LB
+37129,9.037362,Benzo[a]Pyrene,LB
+37129,7.360668,Benz[a]Anthracene,LB
+37129,2.83759,Nickel,LB
+37129,9738.646,Acetaldehyde,LB
+37129,5.679611,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.2513488,Styrene,LB
+37127,0.17373034,Pyrene,LB
+37127,0.012312572,Benzo[a]Pyrene,LB
+37127,0.05761462,Acenaphthene,LB
+37127,0.3259005,Carbon Monoxide,TON
+37127,140.0006,Carbon Dioxide,TON
+37127,0.0002127285,Nitrate portion of PM2.5-PRI,TON
+37113,0.003072982,Anthracene,LB
+37113,0.016323722,Acenaphthylene,LB
+37113,0.0002342986,Nickel,LB
+37113,0.0003976932,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.002418659,Nitrous Oxide,TON
+37107,99.6069,Propionaldehyde,LB
+37107,2.76796,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,7.597564,Fluoranthene,LB
+37107,1514.225,Formaldehyde,LB
+37107,2.7604,Benzo[a]Pyrene,LB
+37107,778.6552,"1,3-Butadiene",LB
+37107,27.9208,Phenanthrene,LB
+37107,1250.26,Carbon Monoxide,TON
+37107,1.298595,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,22.40698,Acetaldehyde,LB
+37091,0.10217204,Acenaphthene,LB
+37091,156.64668,Hexane,LB
+37091,0.0298193,Chrysene,LB
+37091,38.83088,Formaldehyde,LB
+37071,55.74558,PM10 Primary (Filt + Cond),TON
+37071,0.5290566,Sulfate Portion of PM2.5-PRI,TON
+37071,13645.95,Formaldehyde,LB
+37071,42999.62,Benzene,LB
+37071,86.54226,Fluorene,LB
+37071,2218.356,Naphthalene,LB
+37071,1016.6624,Styrene,LB
+37071,36.50448,Anthracene,LB
+37071,71.05606,Pyrene,LB
+37071,11.696754,Benzo[b]Fluoranthene,LB
+37069,21.69084,Naphthalene,LB
+37069,8.600924,Carbon Monoxide,TON
+37069,123.98958,Styrene,LB
+37069,4.565026,Anthracene,LB
+37069,8.932086,Pyrene,LB
+37069,0.00592435,Chromium (VI),LB
+37069,2.5006,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,9.148551,PM10 Primary (Filt + Cond),TON
+37055,0.017686914,Arsenic,LB
+37055,0.1198246,Methane,TON
+37055,0.0147279,Nitrous Oxide,TON
+37055,0.0922429,PM2.5 Primary (Filt + Cond),TON
+37055,237.9262,Ethyl Benzene,LB
+37055,4.654414,Acrolein,LB
+37055,0.2387272,"Benzo[g,h,i,]Perylene",LB
+37055,1.1143724,Acenaphthylene,LB
+37047,0.02259276,"Benzo[g,h,i,]Perylene",LB
+37047,3.81862,Fluoranthene,LB
+37047,5.92777,Phenanthrene,LB
+37047,2.20326,PM25-Primary from certain diesel engines,TON
+37047,0.1050769,Ammonia,TON
+37047,0.5225182,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.2305022,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.2517892,Styrene,LB
+37045,0.05767474,Acenaphthene,LB
+37045,0.003111596,Ammonia,TON
+37045,0.05512178,PM10 Primary (Filt + Cond),TON
+37045,15.945304,Propionaldehyde,LB
+37045,0.010448102,Benzo[b]Fluoranthene,LB
+37045,0.0014518692,Benzo[k]Fluoranthene,LB
+37045,1.7019976,Fluorene,LB
+37045,0.1406688,Methane,TON
+37045,0.05483534,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.02666533,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.03502072,Benzo[a]Pyrene,LB
+37041,8.299116e-06,Anthracene,LB
+37041,0.00019686718,Propionaldehyde,LB
+37041,4.406208e-05,Acenaphthylene,LB
+37041,2.924426e-06,Chrysene,LB
+37041,0.00762943,"2,2,4-Trimethylpentane",LB
+37041,9.668242e-06,Acenaphthene,LB
+37041,1.958422e-05,Fluorene,LB
+37041,4.416182e-06,PM2.5 Primary (Filt + Cond),TON
+37041,1.160049e-07,Sulfate Portion of PM2.5-PRI,TON
+37041,0.7350634,Benz[a]Anthracene,LB
+37041,0.2947594,Arsenic,LB
+37041,1.798003,Methane,TON
+37041,0.002457088,Nitrate portion of PM2.5-PRI,TON
+37041,1.864525,PM10 Primary (Filt + Cond),TON
+37041,0.6086245,Sulfur Dioxide,TON
+37041,50.39339,Volatile Organic Compounds,TON
+37037,2.322388,Propionaldehyde,LB
+37037,48.60214,Formaldehyde,LB
+37037,0.0014490096,"Dibenzo[a,h]Anthracene",LB
+37037,0.1300845,PM2.5 Primary (Filt + Cond),TON
+37037,0.006623044,Sulfate Portion of PM2.5-PRI,TON
+37037,1.1392726,Pyrene,LB
+37037,0.0015121338,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.005933044,Benzo[b]Fluoranthene,LB
+37037,0.697007,Acenaphthene,LB
+37037,0.2262237,PM2.5 Primary (Filt + Cond),TON
+37171,6.189936,Acrolein,LB
+37171,3.98894,Propionaldehyde,LB
+37171,0.7664862,Pyrene,LB
+37171,0.05734982,Benzo[a]Pyrene,LB
+37171,0.18671118,Benz[a]Anthracene,LB
+37171,2.037644,Carbon Monoxide,TON
+37171,1063.366,Carbon Dioxide,TON
+37171,0.002810712,Nitrous Oxide,TON
+37171,0.2154825,PM2.5 Primary (Filt + Cond),TON
+37161,0.5409558,"1,3-Butadiene",LB
+37161,1.437261,Xylenes (Mixed Isomers),LB
+37161,0.0009525834,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.12946782,Fluoranthene,LB
+37161,0.012531224,Benzo[a]Pyrene,LB
+37161,0.0013639894,Arsenic,LB
+37161,7.777634,Acetaldehyde,LB
+37161,1.861272,Nitrogen Oxides,TON
+37145,0.16443906,Benzo[a]Pyrene,LB
+37145,0.5403058,Benz[a]Anthracene,LB
+37145,0.04958832,Nickel,LB
+37145,13563.68,Carbon Dioxide,TON
+37145,0.01579863,Nitrous Oxide,TON
+37145,32.92222,Nitrogen Oxides,TON
+37145,0.1649712,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,7.484582,"1,3-Butadiene",LB
+37145,0.00013640674,Chromium (VI),LB
+37145,0.010140854,"Benzo[g,h,i,]Perylene",LB
+37145,0.012532816,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,1.7332384,Fluoranthene,LB
+37135,0.2216422,Benzo[b]Fluoranthene,LB
+37135,98.26752,Benzene,LB
+37135,2.723324,PM25-Primary from certain diesel engines,TON
+37135,3.662346,Formaldehyde,LB
+37135,0.014089434,Benzo[a]Pyrene,LB
+37135,0.007016854,Benz[a]Anthracene,LB
+37135,0.5475996,Naphthalene,LB
+37135,4.511259e-05,Nitrate portion of PM2.5-PRI,TON
+37135,0.04168456,PM10 Primary (Filt + Cond),TON
+37135,5.864022,Ethyl Benzene,LB
+37143,533.7602,Toluene,LB
+37143,1.0811154,Propionaldehyde,LB
+37143,275.1404,Xylenes (Mixed Isomers),LB
+37143,0.02072666,Benzo[b]Fluoranthene,LB
+37143,118.2101,"2,2,4-Trimethylpentane",LB
+37143,0.00486956,Manganese,LB
+37141,0.006994168,Acrolein,LB
+37141,0.4050426,Benzene,LB
+37141,0.0001053446,Nitrous Oxide,TON
+37141,0.0001058574,Organic Carbon portion of PM2.5-PRI,TON
+37141,2.228109e-05,Sulfur Dioxide,TON
+37141,0.0085951,Volatile Organic Compounds,TON
+37141,0.392265,"2,2,4-Trimethylpentane",LB
+37133,0.03055354,Benzo[k]Fluoranthene,LB
+37133,0.04214662,Arsenic,LB
+37133,80.18291,Nitrogen Oxides,TON
+37133,1.067374,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.5326227,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.1412929,Sulfur Dioxide,TON
+37133,0.001663553,Anthracene,LB
+37133,0.003209232,Pyrene,LB
+37133,0.0009365852,"Benzo[g,h,i,]Perylene",LB
+37133,0.000365987,Benzo[k]Fluoranthene,LB
+37133,2.060844,Benzene,LB
+37133,0.1019708,Naphthalene,LB
+37133,0.001229872,PM10 Primary (Filt + Cond),TON
+37129,0.2942168,Benzene,LB
+37129,8.026134e-07,Nitrate portion of PM2.5-PRI,TON
+37129,0.0001361944,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.0003303435,PM2.5 Primary (Filt + Cond),TON
+37129,0.12480272,Ethyl Benzene,LB
+37117,24.2895,Benzene,LB
+37117,0.1411149,Methane,TON
+37117,6.072319,Carbon Monoxide,TON
+37117,0.952642,PM10 Primary (Filt + Cond),TON
+37117,0.1213431,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,8.016546,"1,3-Butadiene",LB
+37117,265.2774,Formaldehyde,LB
+37117,0.19319556,Benzo[a]Pyrene,LB
+37125,7.94873,Acetaldehyde,LB
+37125,1.2804498,Naphthalene,LB
+37125,0.003231565,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.006984564,PM2.5 Primary (Filt + Cond),TON
+37125,0.018714664,"Benzo[g,h,i,]Perylene",LB
+37119,10.814178,Hexane,LB
+37119,0.00012472968,"Dibenzo[a,h]Anthracene",LB
+37119,0.003983134,Benz[a]Anthracene,LB
+37119,0.00677262,Nitrous Oxide,TON
+37119,0.002640531,Sulfur Dioxide,TON
+37107,1.9869836,Hexane,LB
+37107,0.6046526,Pyrene,LB
+37107,1.7472378e-05,Chromium (VI),LB
+37107,0.4425124,Acenaphthylene,LB
+37107,0.003171822,Arsenic,LB
+37107,0.8284608,Phenanthrene,LB
+37107,935.41,Carbon Dioxide,TON
+37107,0.09720178,Elemental Carbon portion of PM2.5-PRI,TON
+37089,4177.358,Toluene,LB
+37089,390.892,Formaldehyde,LB
+37089,895.0242,"2,2,4-Trimethylpentane",LB
+37089,1293.5916,Benzene,LB
+37089,447.7196,Acetaldehyde,LB
+37089,19949.47,Carbon Dioxide,TON
+37089,0.1320213,Elemental Carbon portion of PM2.5-PRI,TON
+37089,21.63242,Volatile Organic Compounds,TON
+37083,4.650258,Ethyl Benzene,LB
+37083,7.592856,Propionaldehyde,LB
+37083,2.89834e-05,Chromium (VI),LB
+37083,0.007799238,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,1.0905054,Fluoranthene,LB
+37083,0.1993965,Chrysene,LB
+37079,0.0007185318,"Dibenzo[a,h]Anthracene",LB
+37079,0.009498716,Manganese,LB
+37079,1.6153356,"1,3-Butadiene",LB
+37079,0.15338858,Anthracene,LB
+37087,0.0019722424,Chrysene,LB
+37087,2.391754e-05,Nickel,LB
+37087,0.1163997,Nitrogen Oxides,TON
+37087,0.0001385665,Sulfate Portion of PM2.5-PRI,TON
+37087,1.4789316,Ethyl Benzene,LB
+37087,0.06397046,Styrene,LB
+37087,1.5312862,Hexane,LB
+37087,0.002409806,Anthracene,LB
+37085,0.347064,Styrene,LB
+37085,0.7988572,"1,3-Butadiene",LB
+37085,0.2540154,Pyrene,LB
+37085,0.005602692,Benzo[b]Fluoranthene,LB
+37085,0.1924285,Fluoranthene,LB
+37085,0.1205695,PM25-Primary from certain diesel engines,TON
+37085,0.007085641,Sulfate Portion of PM2.5-PRI,TON
+37075,0.0004496374,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.002451712,Fluorene,LB
+37075,0.0010346862,Anthracene,LB
+37075,3.121298,Xylenes (Mixed Isomers),LB
+37075,0.0001735961,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.02514839,Volatile Organic Compounds,TON
+37071,0.0610975,"1,3-Butadiene",LB
+37071,0.3750708,Xylenes (Mixed Isomers),LB
+37071,0.0007770312,Fluoranthene,LB
+37071,0.00257994,Phenanthrene,LB
+37071,0.00108164,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.0336254,Benzo[k]Fluoranthene,LB
+37067,26.71272,"2,2,4-Trimethylpentane",LB
+37067,99.15136,Benzene,LB
+37067,0.4444166,Methane,TON
+37067,26.98397,Carbon Monoxide,TON
+37067,1.15419,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.06839431,Sulfur Dioxide,TON
+37065,1488.6888,Ethyl Benzene,LB
+37053,0.6356352,"1,3-Butadiene",LB
+37053,0.07509746,Acrolein,LB
+37053,2.406982e-07,Chromium (VI),LB
+37053,0.0013444842,Benzo[b]Fluoranthene,LB
+37053,0.006959502,Fluoranthene,LB
+37053,0.000228138,Manganese,LB
+37053,0.001823553,PM2.5 Primary (Filt + Cond),TON
+37051,1.825142,"1,3-Butadiene",LB
+37051,0.2069,Anthracene,LB
+37051,3.068296,Propionaldehyde,LB
+37051,0.605009,Pyrene,LB
+37051,0.003514648,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,1858.652,Carbon Dioxide,TON
+37051,0.0008170401,Nitrate portion of PM2.5-PRI,TON
+37051,62.07816,Hexane,LB
+37051,1.9566274,Benz[a]Anthracene,LB
+37051,229.6978,Benzene,LB
+37051,0.4446686,Manganese,LB
+37051,0.0006717662,Mercury,LB
+37051,268.0616,Naphthalene,LB
+37051,1.560127,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.06807803,Nitrous Oxide,TON
+37051,0.005943301,Nitrate portion of PM2.5-PRI,TON
+37051,0.2671745,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.1822867,Sulfur Dioxide,TON
+37049,0.02584542,Pyrene,LB
+37049,0.00014852406,"Dibenzo[a,h]Anthracene",LB
+37049,0.004634254,Benz[a]Anthracene,LB
+37049,2.611931e-05,Nitrate portion of PM2.5-PRI,TON
+37049,0.004355193,Organic Carbon portion of PM2.5-PRI,TON
+37041,9.841794e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.0003891812,Chrysene,LB
+37041,0.07097818,Naphthalene,LB
+37041,0.4787845,Carbon Monoxide,TON
+37033,0.0008266582,Styrene,LB
+37033,4.978436e-05,Fluoranthene,LB
+37033,8.715432e-07,Arsenic,LB
+37033,0.01341013,Acetaldehyde,LB
+37033,0.001258605,Nitrogen Oxides,TON
+37033,0.0005214452,Volatile Organic Compounds,TON
+37111,15.196546,Toluene,LB
+37169,1.0491256,Propionaldehyde,LB
+37169,0.8689356,Nitrogen Oxides,TON
+37169,0.002252328,Sulfur Dioxide,TON
+37165,1.0705672,Anthracene,LB
+37165,74.27008,Xylenes (Mixed Isomers),LB
+37165,0.0001622416,Chromium (VI),LB
+37165,0.007158324,Benzo[k]Fluoranthene,LB
+37165,615.4616,Formaldehyde,LB
+37165,4.418588,Styrene,LB
+37165,11.122464,"1,3-Butadiene",LB
+37165,47.27624,Benzene,LB
+37165,0.058975,Nickel,LB
+37165,1.42121,PM25-Primary from certain diesel engines,TON
+37165,0.003662523,Nitrate portion of PM2.5-PRI,TON
+37165,0.1690336,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.0570901,"1,3-Butadiene",LB
+37163,0.000450223,Anthracene,LB
+37163,0.009960434,Propionaldehyde,LB
+37163,0.0002184506,Benzo[b]Fluoranthene,LB
+37163,0.0007804724,Fluoranthene,LB
+37163,0.17197258,Formaldehyde,LB
+37163,7.965282e-06,"Dibenzo[a,h]Anthracene",LB
+37163,0.0002065526,Benz[a]Anthracene,LB
+37163,0.0005189548,Acenaphthene,LB
+37163,0.02411896,Nitrogen Oxides,TON
+37163,0.00062456,PM10 Primary (Filt + Cond),TON
+37163,0.0002057363,Sulfur Dioxide,TON
+37157,547.3698,Styrene,LB
+37157,421.4132,Acrolein,LB
+37157,22.94198,Acenaphthene,LB
+37157,8.670982,PM2.5 Primary (Filt + Cond),TON
+37155,0.03157106,Nitrous Oxide,TON
+37155,53.93428,Hexane,LB
+37155,140.35708,Xylenes (Mixed Isomers),LB
+37155,3.532244e-05,Chromium (VI),LB
+37155,38.34074,Ethyl Benzene,LB
+37153,0.000706754,Styrene,LB
+37153,0.0005594066,Acrolein,LB
+37153,2.548364e-05,Anthracene,LB
+37153,4.383612e-05,Fluoranthene,LB
+37153,9.58942e-06,Chrysene,LB
+37153,4.409205e-08,Nitrate portion of PM2.5-PRI,TON
+37153,8.200793e-06,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.016916952,Naphthalene,LB
+37153,0.1484629,Carbon Monoxide,TON
+37153,0.0002757038,PM2.5 Primary (Filt + Cond),TON
+37153,2618.742,"2,2,4-Trimethylpentane",LB
+37175,17.189192,Styrene,LB
+37175,0.4178244,Chrysene,LB
+37175,0.004763712,"Dibenzo[a,h]Anthracene",LB
+37175,109.9048,Benzene,LB
+37175,10.393704,Phenanthrene,LB
+37175,0.002321332,Nitrate portion of PM2.5-PRI,TON
+37175,0.1777046,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.002781024,Pyrene,LB
+37173,0.0001948211,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.0006364155,Nitrous Oxide,TON
+37173,0.000398024,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.001159868,PM10 Primary (Filt + Cond),TON
+37173,0.0001736476,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.7373236,Fluoranthene,LB
+37155,0.1858664,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.003066242,Nitrous Oxide,TON
+37155,0.2947069,PM2.5 Primary (Filt + Cond),TON
+37149,2.313944,"1,3-Butadiene",LB
+37149,1.630989,Hexane,LB
+37149,0.006277192,Benzo[b]Fluoranthene,LB
+37149,0.3964546,Acenaphthylene,LB
+37149,1.5371198,"2,2,4-Trimethylpentane",LB
+37149,2.695828,Carbon Monoxide,TON
+37149,697.8323,Carbon Dioxide,TON
+37149,0.009700028,Ammonia,TON
+37149,0.0300713,Organic Carbon portion of PM2.5-PRI,TON
+37149,10.140748,Benzene,LB
+37149,0.010047144,Acenaphthene,LB
+37149,5.052423,Carbon Monoxide,TON
+37149,0.003951041,Ammonia,TON
+37149,0.5466147,Nitrogen Oxides,TON
+37149,0.003643658,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,6.732136,Ethyl Benzene,LB
+37149,0.009060634,Anthracene,LB
+37149,0.04621,Acenaphthylene,LB
+37157,1.08823,Acrolein,LB
+37157,0.000669655,"Benzo[g,h,i,]Perylene",LB
+37157,0.02125478,Chrysene,LB
+37157,0.03614878,Benz[a]Anthracene,LB
+37155,4687.158,Ethyl Benzene,LB
+37155,6906.956,Hexane,LB
+37153,0.04394376,Acenaphthylene,LB
+37153,0.003947317,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.00231855,Mercury,LB
+37129,3.85025,Naphthalene,LB
+37129,0.04444839,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.026584,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.007817426,Sulfur Dioxide,TON
+37129,1.0354064,"1,3-Butadiene",LB
+37129,0.0017350398,"Benzo[g,h,i,]Perylene",LB
+37141,5.597008,Acrolein,LB
+37141,572.4752,Hexane,LB
+37141,0.2508776,Anthracene,LB
+37141,0.00012625998,Chromium (VI),LB
+37141,0.002963374,"Dibenzo[a,h]Anthracene",LB
+37141,0.0003713205,Nitrate portion of PM2.5-PRI,TON
+37141,0.04221787,Sulfur Dioxide,TON
+37141,0.003884416,Sulfate Portion of PM2.5-PRI,TON
+37137,0.02730098,Ammonia,TON
+37137,0.3184477,PM10 Primary (Filt + Cond),TON
+37137,2.67776,"1,3-Butadiene",LB
+37137,2.461856,"2,2,4-Trimethylpentane",LB
+37137,0.005464758,Arsenic,LB
+37137,9.823764,Naphthalene,LB
+37137,0.07710002,Elemental Carbon portion of PM2.5-PRI,TON
+37133,46.66978,Ethyl Benzene,LB
+37133,1.14534,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.5101316,Sulfate Portion of PM2.5-PRI,TON
+37125,0.0010121126,Acrolein,LB
+37125,2.87392e-05,"Benzo[g,h,i,]Perylene",LB
+37125,1.0162274e-05,Benzo[b]Fluoranthene,LB
+37125,0.0002258354,Acenaphthylene,LB
+37125,0.05092474,Benzene,LB
+37125,1.4882462e-08,Mercury,LB
+37125,0.002577322,Naphthalene,LB
+37125,2.329792e-06,Sulfur Dioxide,TON
+37115,0.0003242738,"Benzo[g,h,i,]Perylene",LB
+37115,0.04259908,Acenaphthylene,LB
+37115,0.005190814,Benzo[a]Pyrene,LB
+37115,0.210328,"2,2,4-Trimethylpentane",LB
+37115,0.7537162,Benzene,LB
+37115,0.001494742,Nickel,LB
+37115,3.501756,Acetaldehyde,LB
+37115,0.02534274,Acenaphthene,LB
+37115,0.03791986,PM2.5 Primary (Filt + Cond),TON
+37115,0.001798977,Sulfur Dioxide,TON
+37115,0.2483344,Acenaphthene,LB
+37115,1.347991,Phenanthrene,LB
+37115,0.5030168,Fluorene,LB
+37115,0.1579745,Methane,TON
+37115,0.1240631,Nitrous Oxide,TON
+37115,0.04754341,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.2148838,PM10 Primary (Filt + Cond),TON
+37115,0.02572258,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,141.6758,Ethyl Benzene,LB
+37115,0.412717,Pyrene,LB
+37107,0.2152072,Styrene,LB
+37107,0.04020212,Benz[a]Anthracene,LB
+37107,5.489824e-06,Mercury,LB
+37107,7.112712,Acetaldehyde,LB
+37107,1.7853004,Naphthalene,LB
+37107,0.006371234,Ammonia,TON
+37103,0.00019321498,Benzo[b]Fluoranthene,LB
+37103,0.2086536,Acetaldehyde,LB
+37103,0.003477258,Phenanthrene,LB
+37103,0.0012952888,Fluorene,LB
+37099,5.120072,Acenaphthene,LB
+37099,0.4697445,Methane,TON
+37099,38.0845,Hexane,LB
+37099,8.485192,Pyrene,LB
+37099,0.000418776,Chromium (VI),LB
+37099,0.5539522,Chrysene,LB
+37099,0.15734004,Benzo[a]Pyrene,LB
+37097,68382.12,Toluene,LB
+37097,5.732674,Chrysene,LB
+37097,14894.566,"2,2,4-Trimethylpentane",LB
+37097,804.4964,Naphthalene,LB
+37097,2.38739,Elemental Carbon portion of PM2.5-PRI,TON
+37097,328.5319,Volatile Organic Compounds,TON
+37093,4.448438,Naphthalene,LB
+37093,0.006460487,Ammonia,TON
+37093,0.002669084,Sulfur Dioxide,TON
+37093,4.383428,Xylenes (Mixed Isomers),LB
+37093,4.635338e-05,Benzo[k]Fluoranthene,LB
+37093,4.53716e-05,"Dibenzo[a,h]Anthracene",LB
+37093,1.9295536e-05,Mercury,LB
+37085,0.03709138,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.1456378,Benzo[b]Fluoranthene,LB
+37085,0.488383,Benzo[a]Pyrene,LB
+37085,0.0002488516,Mercury,LB
+37085,8.382528,Phenanthrene,LB
+37085,4.677664,Fluorene,LB
+37085,0.6674487,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.1990775,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.5113055,PM2.5 Primary (Filt + Cond),TON
+37079,0.02010902,Sulfur Dioxide,TON
+37079,6.504732,Ethyl Benzene,LB
+37079,15.13616,Acrolein,LB
+37079,14.365094,Toluene,LB
+37079,0.4596494,Benz[a]Anthracene,LB
+37079,5.917098e-05,Mercury,LB
+37073,0.12386896,Toluene,LB
+37073,0.04574452,Hexane,LB
+37073,8.083808e-05,"Benzo[g,h,i,]Perylene",LB
+37073,0.009973144,Acenaphthylene,LB
+37073,0.004358492,Benz[a]Anthracene,LB
+37073,2.291206e-05,Nitrate portion of PM2.5-PRI,TON
+37073,0.0007680811,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.01048985,Volatile Organic Compounds,TON
+37087,0.0005781922,"Dibenzo[a,h]Anthracene",LB
+37087,0.02062836,Acenaphthene,LB
+37087,0.3649336,Acrolein,LB
+37085,0.7867456,Pyrene,LB
+37085,0.498515,"Benzo[g,h,i,]Perylene",LB
+37085,0.00429722,"Dibenzo[a,h]Anthracene",LB
+37085,0.2308572,Methane,TON
+37085,0.005700179,Sulfate Portion of PM2.5-PRI,TON
+37071,2.26275,Styrene,LB
+37071,0.08714184,"Benzo[g,h,i,]Perylene",LB
+37071,0.03274016,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,26.28948,Acetaldehyde,LB
+37059,0.0009257814,Styrene,LB
+37059,3.391634e-05,Anthracene,LB
+37059,0.0007953798,Propionaldehyde,LB
+37059,0.00017748784,Acenaphthylene,LB
+37059,1.7651152e-05,Benz[a]Anthracene,LB
+37059,0.01762254,Carbon Monoxide,TON
+37059,0.3240335,Carbon Dioxide,TON
+37059,8.148189e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,9.39954,Benzene,LB
+37007,42.4552,Acetaldehyde,LB
+37007,0.02429891,Ammonia,TON
+37007,0.4663102,Nitrogen Oxides,TON
+37007,0.3480044,Acrolein,LB
+37007,7.836492,Toluene,LB
+37007,2.991624,Hexane,LB
+37007,0.006122076,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.6245594,Propionaldehyde,LB
+37001,0.01202122,Acenaphthylene,LB
+37001,0.0003183904,Mercury,LB
+37001,0.01075032,PM2.5 Primary (Filt + Cond),TON
+37163,3.019912,Hexane,LB
+37163,9.709334,"2,2,4-Trimethylpentane",LB
+37163,2.702558,Benzene,LB
+37113,0.2191912,Hexane,LB
+37113,0.0002292022,Anthracene,LB
+37113,1.91922e-05,Sulfate Portion of PM2.5-PRI,TON
+37097,0.005564927,PM2.5 Primary (Filt + Cond),TON
+37097,0.6263202,Ethyl Benzene,LB
+37097,0.002003116,Fluoranthene,LB
+37097,0.0014761048,Benz[a]Anthracene,LB
+37097,3.214858,Benzene,LB
+37097,0.0018825466,Nickel,LB
+37097,0.01236229,Ammonia,TON
+37021,51.21798,"1,3-Butadiene",LB
+37021,0.0004652786,Chromium (VI),LB
+37021,0.04885538,"Dibenzo[a,h]Anthracene",LB
+37021,20.71982,Phenanthrene,LB
+37017,9.159242,"1,3-Butadiene",LB
+37017,0.17380834,Benzo[a]Pyrene,LB
+37017,10.472558,"2,2,4-Trimethylpentane",LB
+37017,0.0676928,Nickel,LB
+37017,1.588735,PM10-Primary from certain diesel engines,TON
+37017,0.003083526,Nitrate portion of PM2.5-PRI,TON
+37017,0.2918948,Organic Carbon portion of PM2.5-PRI,TON
+37021,1.5756712e-07,Chromium (VI),LB
+37021,0.09783748,"2,2,4-Trimethylpentane",LB
+37021,0.0005491735,PM10 Primary (Filt + Cond),TON
+37009,0.193974,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.4789314,PM2.5 Primary (Filt + Cond),TON
+37009,18.304452,Acrolein,LB
+37009,5.301016e-05,Chromium (VI),LB
+37009,0.00858023,"Benzo[g,h,i,]Perylene",LB
+37009,0.4604008,Benz[a]Anthracene,LB
+37009,102.9886,Acetaldehyde,LB
+37009,0.7038014,Acenaphthene,LB
+37009,0.1643495,Methane,TON
+37005,0.09726672,Ethyl Benzene,LB
+37005,0.2246172,Acrolein,LB
+37005,0.2654141,Nitrogen Oxides,TON
+37005,0.01660871,PM10 Primary (Filt + Cond),TON
+37005,0.01180835,PM2.5 Primary (Filt + Cond),TON
+37003,2.899566,Benzo[b]Fluoranthene,LB
+37003,72.40348,Phenanthrene,LB
+37003,27.1037,Fluorene,LB
+37003,694.4966,Naphthalene,LB
+37003,6.699042,Methane,TON
+37003,0.9059606,Elemental Carbon portion of PM2.5-PRI,TON
+37003,6.289273,Nitrous Oxide,TON
+37003,1.677064,Sulfur Dioxide,TON
+37001,50.4227,"1,3-Butadiene",LB
+37001,9.967392,Fluoranthene,LB
+37001,8.23541,Acenaphthylene,LB
+37001,2935.946,Formaldehyde,LB
+37001,1.1880868,Manganese,LB
+37001,10.828996,Fluorene,LB
+37001,66980.73,Carbon Dioxide,TON
+37001,0.07502906,Nitrous Oxide,TON
+37001,184.7331,Nitrogen Oxides,TON
+37001,0.9165954,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,4.690848e-05,Mercury,LB
+37197,0.3598824,Naphthalene,LB
+37197,169.917,Carbon Dioxide,TON
+37191,1.4585134,Ethyl Benzene,LB
+37191,0.3561536,"1,3-Butadiene",LB
+37191,0.004667328,Pyrene,LB
+37191,2.942048e-05,Chromium (VI),LB
+37191,0.00012326622,"Dibenzo[a,h]Anthracene",LB
+37191,3.15748,"2,2,4-Trimethylpentane",LB
+37191,0.013497926,Phenanthrene,LB
+37191,0.02481205,Ammonia,TON
+37191,2.200025e-05,Nitrate portion of PM2.5-PRI,TON
+37191,0.04094351,PM10 Primary (Filt + Cond),TON
+37191,0.004069278,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.01296147,Sulfur Dioxide,TON
+37191,0.0002819059,Sulfate Portion of PM2.5-PRI,TON
+37181,1.5435322,Propionaldehyde,LB
+37181,2.204846,Xylenes (Mixed Isomers),LB
+37181,9.766194e-06,Chromium (VI),LB
+37181,0.239738,Fluoranthene,LB
+37181,0.04698616,Chrysene,LB
+37181,0.07952796,Benz[a]Anthracene,LB
+37181,0.01533813,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,20.80816,Formaldehyde,LB
+37197,8.934208,Acetaldehyde,LB
+37197,0.009835929,Methane,TON
+37197,0.1083462,PM10-Primary from certain diesel engines,TON
+37197,0.117203,Volatile Organic Compounds,TON
+37185,4.634296,Benzene,LB
+37185,1.2868104e-05,Mercury,LB
+37185,0.002690716,Arsenic,LB
+37185,0.2743798,Fluorene,LB
+37185,0.03981764,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.006522565,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.2840045,Volatile Organic Compounds,TON
+37179,0.4068862,Acrolein,LB
+37179,0.0007305436,Arsenic,LB
+37179,0.0008656572,Fluorene,LB
+37179,0.599197,Nitrogen Oxides,TON
+37179,0.008774682,PM2.5 Primary (Filt + Cond),TON
+37179,0.0009484211,Sulfur Dioxide,TON
+37177,4.911972,Formaldehyde,LB
+37177,0.012919096,Benz[a]Anthracene,LB
+37177,2.103632,Acetaldehyde,LB
+37177,0.0004959367,Sulfur Dioxide,TON
+37177,0.01744689,Anthracene,LB
+37173,0.14525894,Toluene,LB
+37173,2.365764e-06,Manganese,LB
+37173,0.002136596,Naphthalene,LB
+37027,573.6975,Nitrogen Oxides,TON
+37027,5.84617,Benzo[b]Fluoranthene,LB
+37027,35.16568,Fluoranthene,LB
+37027,5.84617,Benzo[k]Fluoranthene,LB
+37027,5.608432,Manganese,LB
+37027,581.3174,Styrene,LB
+37027,439.939,Acrolein,LB
+37027,6.04094,Chrysene,LB
+37055,19.152652,Propionaldehyde,LB
+37055,0.01332908,Benzo[k]Fluoranthene,LB
+37055,0.326437,Benzo[a]Pyrene,LB
+37055,152.73712,Acetaldehyde,LB
+37055,4.708754,Phenanthrene,LB
+37039,4.101656,Pyrene,LB
+37039,3.075278,"Benzo[g,h,i,]Perylene",LB
+37039,11.119706,Acenaphthylene,LB
+37039,0.7530854,Chrysene,LB
+37039,1.154492,Benzo[a]Pyrene,LB
+37039,0.02652732,"Dibenzo[a,h]Anthracene",LB
+37039,0.7840192,Benz[a]Anthracene,LB
+37039,2.439446,Acenaphthene,LB
+37039,518.7034,Carbon Monoxide,TON
+37039,0.2844983,Elemental Carbon portion of PM2.5-PRI,TON
+37039,62.95016,Nitrogen Oxides,TON
+37039,0.03412772,Sulfate Portion of PM2.5-PRI,TON
+37175,15.808832,Acrolein,LB
+37175,0.005814416,"Dibenzo[a,h]Anthracene",LB
+37175,1.3663562,Fluorene,LB
+37169,0.010863556,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,564.1006,Formaldehyde,LB
+37169,17.581624,Ethyl Benzene,LB
+37169,14.097722,Hexane,LB
+37169,52.45822,Naphthalene,LB
+37169,12.20611,Carbon Monoxide,TON
+37169,1.318453,PM25-Primary from certain diesel engines,TON
+37169,44.4345,Nitrogen Oxides,TON
+37161,0.4942162,Styrene,LB
+37161,1.1332632,"1,3-Butadiene",LB
+37161,2.921016,Acrolein,LB
+37161,0.002249008,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.2882202,Fluoranthene,LB
+37161,0.0951132,Benz[a]Anthracene,LB
+37161,0.002759354,Arsenic,LB
+37161,0.1071511,PM10-Primary from certain diesel engines,TON
+37161,0.001278337,Nitrous Oxide,TON
+37161,0.01917033,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,4.901692,Anthracene,LB
+37159,327.727,Xylenes (Mixed Isomers),LB
+37159,0.03673598,Benzo[k]Fluoranthene,LB
+37159,2717.82,Formaldehyde,LB
+37159,208.852,Benzene,LB
+37159,7.146297,PM2.5 Primary (Filt + Cond),TON
+37159,11.01962,Volatile Organic Compounds,TON
+37155,504.9146,Toluene,LB
+37155,16.648116,Pyrene,LB
+37155,13.144916,Fluoranthene,LB
+37155,146.51938,"2,2,4-Trimethylpentane",LB
+37155,32.72978,Phenanthrene,LB
+37155,9.145465,PM10-Primary from certain diesel engines,TON
+37155,8.413837,PM25-Primary from certain diesel engines,TON
+37155,0.8542208,Sulfate Portion of PM2.5-PRI,TON
+37149,0.000221859,Benzo[k]Fluoranthene,LB
+37149,0.0002197516,"Dibenzo[a,h]Anthracene",LB
+37163,68.56252,Ethyl Benzene,LB
+37163,422.2824,Toluene,LB
+37163,254.2044,Xylenes (Mixed Isomers),LB
+37163,0.15020648,Fluoranthene,LB
+37163,0.03487918,Benzo[k]Fluoranthene,LB
+37163,92.491,"2,2,4-Trimethylpentane",LB
+37163,0.004956672,Nickel,LB
+37163,2.056231,Volatile Organic Compounds,TON
+37157,0.0006587096,"Dibenzo[a,h]Anthracene",LB
+37157,0.6459416,"2,2,4-Trimethylpentane",LB
+37157,10.24364,Acetaldehyde,LB
+37157,0.07035044,Acenaphthene,LB
+37157,0.7935275,Carbon Monoxide,TON
+37157,0.0009430433,Nitrous Oxide,TON
+37157,0.01062462,Ammonia,TON
+37157,0.000283374,Nitrate portion of PM2.5-PRI,TON
+37157,0.3031282,Styrene,LB
+37157,0.2187506,Pyrene,LB
+37157,0.004768532,Benzo[b]Fluoranthene,LB
+37155,17.586854,Fluoranthene,LB
+37155,4.520826,Chrysene,LB
+37155,4.049626,Arsenic,LB
+37155,11.640718,Acenaphthene,LB
+37155,3519.042,Formaldehyde,LB
+37137,0.006649644,Formaldehyde,LB
+37137,5.726202e-06,Benz[a]Anthracene,LB
+37121,0.0018587718,"Dibenzo[a,h]Anthracene",LB
+37121,0.0232534,Arsenic,LB
+37121,0.162883,Methane,TON
+37121,4.181604,Volatile Organic Compounds,TON
+37105,0.00798326,"Dibenzo[a,h]Anthracene",LB
+37105,32.9666,Benzene,LB
+37105,1.437567,PM25-Primary from certain diesel engines,TON
+37101,0.146598,Acetaldehyde,LB
+37101,5.752548e-07,Nitrate portion of PM2.5-PRI,TON
+37101,0.008266649,Volatile Organic Compounds,TON
+37085,111.0894,Phenanthrene,LB
+37085,1062.9948,Naphthalene,LB
+37085,4663.963,Carbon Monoxide,TON
+37085,1.737362,Elemental Carbon portion of PM2.5-PRI,TON
+37085,2.711856,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,69861.98,Toluene,LB
+37085,0.014486956,Chromium (VI),LB
+37085,6.99572,Benzo[a]Pyrene,LB
+37079,46.7586,Styrene,LB
+37079,302.6738,"1,3-Butadiene",LB
+37079,38.73104,Propionaldehyde,LB
+37079,1871.9322,"2,2,4-Trimethylpentane",LB
+37079,0.003116104,Nitrate portion of PM2.5-PRI,TON
+37079,0.3202593,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.3848778,Ethyl Benzene,LB
+37077,0.0016677212,Nickel,LB
+37077,0.02845398,PM25-Primary from certain diesel engines,TON
+37077,0.0122726,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.06819561,Volatile Organic Compounds,TON
+37067,105.15316,Hexane,LB
+37067,123.93428,"2,2,4-Trimethylpentane",LB
+37067,1.49715,Manganese,LB
+37067,8.53213,Acenaphthene,LB
+37057,0.0015022646,Fluorene,LB
+37057,0.1886544,Volatile Organic Compounds,TON
+37051,0.6674792,"2,2,4-Trimethylpentane",LB
+37051,0.003158764,Nickel,LB
+37051,1.8182848,Toluene,LB
+37049,0.04324781,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.01838538,Ammonia,TON
+37049,0.000597414,Nitrate portion of PM2.5-PRI,TON
+37049,0.005451414,Sulfur Dioxide,TON
+37049,0.5646086,Styrene,LB
+37049,1.148,Hexane,LB
+37049,3.740826,Xylenes (Mixed Isomers),LB
+37049,0.002603472,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,1.9533042,Ethyl Benzene,LB
+37047,5.472156,Benzene,LB
+37047,2.014894e-05,Mercury,LB
+37047,0.010037952,Nickel,LB
+37047,0.004213042,Arsenic,LB
+37047,0.1830554,PM10-Primary from certain diesel engines,TON
+37047,0.006245278,Sulfur Dioxide,TON
+37043,0.2043726,Styrene,LB
+37043,1.4831774,Xylenes (Mixed Isomers),LB
+37043,0.0800248,Acenaphthylene,LB
+37043,17.298692,Formaldehyde,LB
+37043,0.0815952,Fluorene,LB
+37043,0.002327167,Ammonia,TON
+37043,0.08964364,Volatile Organic Compounds,TON
+37143,240.9966,Carbon Dioxide,TON
+37143,0.004538016,PM2.5 Primary (Filt + Cond),TON
+37143,0.0001245082,Sulfate Portion of PM2.5-PRI,TON
+37107,0.0007641226,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.002165941,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.165335,"1,3-Butadiene",LB
+37107,0.12466764,Acrolein,LB
+37107,1.5126848,Hexane,LB
+37107,2.619682,Xylenes (Mixed Isomers),LB
+37107,3.718354,Benzene,LB
+37107,0.0019584338,Nickel,LB
+37107,0.001141025,Acenaphthene,LB
+37095,0.2856274,Ethyl Benzene,LB
+37095,0.2659798,Hexane,LB
+37163,0.08584668,Mercury,LB
+37163,1.6412826,Arsenic,LB
+37163,36.41872,Phenanthrene,LB
+37163,2.873057,Nitrous Oxide,TON
+37163,0.1088657,Sulfate Portion of PM2.5-PRI,TON
+37163,17268.098,Xylenes (Mixed Isomers),LB
+37163,2.280204,Benzo[k]Fluoranthene,LB
+37151,279.5488,Acrolein,LB
+37151,14837.568,Hexane,LB
+37151,7.41371,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,696.1238,Naphthalene,LB
+37147,0.00490901,Manganese,LB
+37147,0.0013057976,Arsenic,LB
+37147,0.006870662,PM2.5 Primary (Filt + Cond),TON
+37147,2.864812,Formaldehyde,LB
+37147,6.902552,"2,2,4-Trimethylpentane",LB
+37147,0.003080192,Benz[a]Anthracene,LB
+37143,4.134828,Ethyl Benzene,LB
+37143,9.709032,Toluene,LB
+37143,3.343474,"2,2,4-Trimethylpentane",LB
+37143,0.3017872,PM10-Primary from certain diesel engines,TON
+37143,0.0124735,Sulfur Dioxide,TON
+37143,0.02924008,Fluoranthene,LB
+37143,0.02092596,Acenaphthylene,LB
+37143,0.12330024,"1,3-Butadiene",LB
+37143,0.3801844,Benzene,LB
+37143,0.02730476,Fluorene,LB
+37143,0.01867403,PM2.5 Primary (Filt + Cond),TON
+37143,0.006089606,Phenanthrene,LB
+37143,0.00227089,Fluorene,LB
+37137,0.0009453606,Nitrous Oxide,TON
+37137,0.02203294,Organic Carbon portion of PM2.5-PRI,TON
+37137,1.850261,Acrolein,LB
+37137,0.16925276,Fluoranthene,LB
+37137,0.03040756,Chrysene,LB
+37137,163.7672,Carbon Dioxide,TON
+37137,0.00376564,Propionaldehyde,LB
+37137,6.23897e-08,Chromium (VI),LB
+37137,9.8947e-05,Nitrous Oxide,TON
+37129,0.0009558521,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.04035899,PM10 Primary (Filt + Cond),TON
+37129,0.008360058,PM2.5 Primary (Filt + Cond),TON
+37129,0.019986518,Pyrene,LB
+37129,0.009412322,Manganese,LB
+37117,0.0018807302,"Benzo[g,h,i,]Perylene",LB
+37117,62.0177,Formaldehyde,LB
+37117,0.1556074,PM10-Primary from certain diesel engines,TON
+37117,0.0004591241,Nitrate portion of PM2.5-PRI,TON
+37117,0.01676809,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.1355436,Acrolein,LB
+37121,0.009254236,Pyrene,LB
+37121,0.000223213,Nickel,LB
+37121,0.003324953,Methane,TON
+37121,0.003148346,Nitrous Oxide,TON
+37121,0.2047929,Nitrogen Oxides,TON
+37113,0.00019389976,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,3.580862,Formaldehyde,LB
+37113,0.002554348,Benzo[a]Pyrene,LB
+37113,0.001530656,Methane,TON
+37113,28.96661,Carbon Dioxide,TON
+37113,0.003092839,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.0006683731,Ammonia,TON
+37113,0.1527714,Nitrogen Oxides,TON
+37193,0.017977896,"Dibenzo[a,h]Anthracene",LB
+37193,0.08099596,Nickel,LB
+37193,273.0806,Acetaldehyde,LB
+37193,19.5966,"1,3-Butadiene",LB
+37193,45.65988,Toluene,LB
+37197,0.0003063924,Acenaphthene,LB
+37197,6.446765,Carbon Dioxide,TON
+37197,0.01621693,Nitrogen Oxides,TON
+37197,0.0002987649,PM2.5 Primary (Filt + Cond),TON
+37197,8.790508e-06,Sulfate Portion of PM2.5-PRI,TON
+37189,0.002593846,Chrysene,LB
+37189,48.30774,Toluene,LB
+37189,0.008360816,Anthracene,LB
+37189,0.191684,Propionaldehyde,LB
+37189,26.77466,Xylenes (Mixed Isomers),LB
+37189,0.00334332,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,1.3243184,"1,3-Butadiene",LB
+37189,0.3153382,Nitrogen Oxides,TON
+37187,0.10035216,Acenaphthene,LB
+37187,0.2149632,Fluorene,LB
+37187,0.001507533,Sulfate Portion of PM2.5-PRI,TON
+37187,0.10766846,Anthracene,LB
+37187,1.6227488,Propionaldehyde,LB
+37187,2.023386,Xylenes (Mixed Isomers),LB
+37187,0.04165972,Chrysene,LB
+37187,0.02141972,Benzo[a]Pyrene,LB
+37181,0.00055328,Pyrene,LB
+37181,0.000636925,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.2986676,"2,2,4-Trimethylpentane",LB
+37181,0.000477689,Arsenic,LB
+37181,0.0009218575,PM2.5 Primary (Filt + Cond),TON
+37105,7.379985e-05,Nitrous Oxide,TON
+37105,0.00010299472,Benzo[a]Pyrene,LB
+37105,2.38762e-06,"Dibenzo[a,h]Anthracene",LB
+37105,0.05026924,"2,2,4-Trimethylpentane",LB
+37105,6.198536e-05,Manganese,LB
+37093,18021.576,Toluene,LB
+37093,0.004386732,Chromium (VI),LB
+37093,5.945582,Fluoranthene,LB
+37093,1.143667,Benzo[k]Fluoranthene,LB
+37093,3926.47,"2,2,4-Trimethylpentane",LB
+37093,1.308226,Sulfur Dioxide,TON
+37083,1.0976802,Ethyl Benzene,LB
+37083,6.26066,Toluene,LB
+37083,0.003045012,Pyrene,LB
+37083,0.0006534338,Benz[a]Anthracene,LB
+37083,0.6081311,Carbon Monoxide,TON
+37083,0.0002145506,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.03146129,Volatile Organic Compounds,TON
+37077,14.63713,Ammonia,TON
+37077,16.871852,"Benzo[g,h,i,]Perylene",LB
+37057,0.02015344,Chromium (VI),LB
+37057,4672.384,Formaldehyde,LB
+37057,9.447932,Benzo[a]Pyrene,LB
+37057,5.884258,Benz[a]Anthracene,LB
+37057,0.2020366,Mercury,LB
+37057,416.972,Nitrogen Oxides,TON
+37057,2.970534,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,1.5002468,"1,3-Butadiene",LB
+37051,14.860596,Hexane,LB
+37051,0.01548175,Anthracene,LB
+37051,0.01410923,Benzo[a]Pyrene,LB
+37051,0.009311525,Methane,TON
+37051,5.037661e-05,Nitrate portion of PM2.5-PRI,TON
+37051,1.164045,Nitrogen Oxides,TON
+37051,0.06845986,PM10 Primary (Filt + Cond),TON
+37051,0.008085625,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,157.82632,Toluene,LB
+37177,0.4810552,"1,3-Butadiene",LB
+37177,3.012e-06,Chromium (VI),LB
+37177,0.011492514,Chrysene,LB
+37177,0.00518257,Benzo[a]Pyrene,LB
+37177,0.001941282,Nickel,LB
+37177,0.02090504,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.001896425,Ammonia,TON
+37173,0.00011117582,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.015813218,Fluoranthene,LB
+37173,0.2005572,Benzene,LB
+37173,4.539634e-07,Mercury,LB
+37173,0.000299678,Nickel,LB
+37173,0.9263832,Acetaldehyde,LB
+37173,0.005176413,PM25-Primary from certain diesel engines,TON
+37173,0.002260457,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.00204755,Organic Carbon portion of PM2.5-PRI,TON
+37173,23.7882,"1,3-Butadiene",LB
+37173,45.17366,Toluene,LB
+37173,6.27642,Phenanthrene,LB
+37167,0.0003290036,Mercury,LB
+37167,1.3004384,Acenaphthene,LB
+37167,5.361244,Phenanthrene,LB
+37167,53.8953,Naphthalene,LB
+37167,25372.06,Carbon Dioxide,TON
+37167,0.004729115,Nitrate portion of PM2.5-PRI,TON
+37167,17.290106,Ethyl Benzene,LB
+37167,37.54296,Acrolein,LB
+37199,0.4490312,Phenanthrene,LB
+37199,0.005017455,Elemental Carbon portion of PM2.5-PRI,TON
+37199,2.777176,Volatile Organic Compounds,TON
+37199,0.07075186,Anthracene,LB
+37197,8.17883,Toluene,LB
+37197,0.6419186,Acenaphthylene,LB
+37197,0.07302702,Benzo[a]Pyrene,LB
+37197,0.7999578,Fluorene,LB
+37197,0.2853951,PM25-Primary from certain diesel engines,TON
+37197,0.3606879,PM10 Primary (Filt + Cond),TON
+37193,2.318878,Propionaldehyde,LB
+37193,0.2540226,Xylenes (Mixed Isomers),LB
+37193,0.0001462782,Chrysene,LB
+37185,0.2072748,Propionaldehyde,LB
+37185,0.0001974311,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,9.180512e-07,Mercury,LB
+37185,0.0766029,Carbon Monoxide,TON
+37185,42.8041,Carbon Dioxide,TON
+37185,4.474301e-05,Nitrate portion of PM2.5-PRI,TON
+37185,0.01029185,PM2.5 Primary (Filt + Cond),TON
+37185,0.0002928642,Sulfate Portion of PM2.5-PRI,TON
+37185,17.036728,Toluene,LB
+37185,1.2342956,Acenaphthylene,LB
+37185,0.237955,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.02733717,Sulfur Dioxide,TON
+37185,0.02517846,Ethyl Benzene,LB
+37185,0.0054399,"1,3-Butadiene",LB
+37185,0.09281584,Xylenes (Mixed Isomers),LB
+37185,0.04177696,Benzene,LB
+37185,2.992564e-06,Manganese,LB
+37185,7.278806e-07,Nickel,LB
+37185,4.178202e-05,Acenaphthene,LB
+37185,8.463094e-05,Fluorene,LB
+37185,2.90288e-05,Methane,TON
+37185,5.10772e-05,PM10 Primary (Filt + Cond),TON
+37195,246.2798,Volatile Organic Compounds,TON
+37195,8607.246,Ethyl Benzene,LB
+37195,343.5154,Styrene,LB
+37195,271.4288,Acrolein,LB
+37195,31701.36,Xylenes (Mixed Isomers),LB
+37195,0.14152174,"Dibenzo[a,h]Anthracene",LB
+37195,78.81236,Phenanthrene,LB
+37195,8.966826,Methane,TON
+37195,0.01932785,Nitrate portion of PM2.5-PRI,TON
+37189,6.419554,Toluene,LB
+37189,2.908798,Propionaldehyde,LB
+37189,0.012394092,Chrysene,LB
+37189,71.37366,Formaldehyde,LB
+37189,0.009568133,PM10-Primary from certain diesel engines,TON
+37189,0.0008868642,Nitrous Oxide,TON
+37189,0.004745027,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.006362746,Fluorene,LB
+37187,0.1632294,Naphthalene,LB
+37187,0.002724686,Anthracene,LB
+37187,0.0013173546,Benzo[b]Fluoranthene,LB
+37187,0.0012462438,Benz[a]Anthracene,LB
+37187,3.366922,Benzene,LB
+37187,0.017196618,Phenanthrene,LB
+37183,22.66146,Ethyl Benzene,LB
+37183,0.0615267,Fluoranthene,LB
+37183,13.045826,Formaldehyde,LB
+37183,0.005301018,Nickel,LB
+37181,0.7482102,Fluoranthene,LB
+37181,94.74718,Formaldehyde,LB
+37181,2.34324,"2,2,4-Trimethylpentane",LB
+37181,0.3178842,Acenaphthene,LB
+37181,0.03129901,Methane,TON
+37181,3.021338,Carbon Monoxide,TON
+37181,0.1058032,Elemental Carbon portion of PM2.5-PRI,TON
+37181,2.789532,Ethyl Benzene,LB
+37181,0.01006001,Benzo[b]Fluoranthene,LB
+37181,0.5318984,Fluoranthene,LB
+37181,0.07377324,Chrysene,LB
+37181,0.01118456,Ammonia,TON
+37181,7.244945,Nitrogen Oxides,TON
+37181,0.2677421,PM10 Primary (Filt + Cond),TON
+37181,0.003488388,Sulfate Portion of PM2.5-PRI,TON
+37181,15.843244,Hexane,LB
+37181,0.00884261,"Benzo[g,h,i,]Perylene",LB
+37181,0.0757265,Manganese,LB
+37181,2.171084,Acenaphthene,LB
+37181,3.700038,Fluorene,LB
+37185,0.19282058,Acenaphthene,LB
+37185,2.063926,Carbon Monoxide,TON
+37185,4.968366,Nitrogen Oxides,TON
+37195,3.503952e-05,Chromium (VI),LB
+37195,0.006306993,Nitrous Oxide,TON
+37195,7.673728,Nitrogen Oxides,TON
+37187,0.19588044,Benzene,LB
+37187,0.00013748202,Manganese,LB
+37187,0.00011704782,Arsenic,LB
+37187,0.003506432,Naphthalene,LB
+37187,0.0001567448,Nitrous Oxide,TON
+37187,0.008118652,Nitrogen Oxides,TON
+37187,0.0003116799,Sulfur Dioxide,TON
+37187,0.001863153,Organic Carbon portion of PM2.5-PRI,TON
+37067,27.57988,Anthracene,LB
+37067,18.009876,Manganese,LB
+37067,1653.1734,Naphthalene,LB
+37067,826862,Carbon Dioxide,TON
+37073,3.149191e-05,Organic Carbon portion of PM2.5-PRI,TON
+37073,1.709775e-06,Sulfate Portion of PM2.5-PRI,TON
+37073,0.06434686,Ethyl Benzene,LB
+37073,0.00258057,Styrene,LB
+37073,0.365572,Toluene,LB
+37073,3.773896e-05,Benz[a]Anthracene,LB
+37073,1.917114,Carbon Dioxide,TON
+37073,1.709971e-07,Nitrate portion of PM2.5-PRI,TON
+37021,26.14122,Ethyl Benzene,LB
+37021,0.870145,Styrene,LB
+37021,44.33888,Hexane,LB
+37021,11.93545,Formaldehyde,LB
+37021,0.0006293374,"Dibenzo[a,h]Anthracene",LB
+37021,0.015853254,Benz[a]Anthracene,LB
+37021,0.00010189044,Mercury,LB
+37021,458.693,Carbon Dioxide,TON
+37021,0.004737787,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.009338326,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,19.594368,Benzene,LB
+37041,0.09975638,Phenanthrene,LB
+37041,0.9534642,Naphthalene,LB
+37041,2.6741,"1,3-Butadiene",LB
+37041,0.00708719,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.08363488,Acenaphthylene,LB
+37059,0.06370244,Propionaldehyde,LB
+37059,0.0004606082,Fluoranthene,LB
+37059,0.0015092538,Phenanthrene,LB
+37059,0.002492795,Methane,TON
+37081,67.26114,Toluene,LB
+37081,3.719786,Pyrene,LB
+37081,0.008915556,"Benzo[g,h,i,]Perylene",LB
+37081,0.0019046858,Benzo[k]Fluoranthene,LB
+37081,0.0018848964,"Dibenzo[a,h]Anthracene",LB
+37081,0.08023544,Arsenic,LB
+37081,0.009336244,Nitrous Oxide,TON
+37081,0.217085,PM2.5 Primary (Filt + Cond),TON
+37139,7.824988e-07,Mercury,LB
+37163,0.1039859,Methane,TON
+37163,0.3052944,PM10-Primary from certain diesel engines,TON
+37163,0.2167243,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.0652968,Ammonia,TON
+37163,0.02011747,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,7.531136e-05,Chromium (VI),LB
+37163,0.00383563,"Benzo[g,h,i,]Perylene",LB
+37163,0.02723296,Benzo[a]Pyrene,LB
+37099,0.049589,"2,2,4-Trimethylpentane",LB
+37099,0.0672671,Benzene,LB
+37099,4.597204e-05,Methane,TON
+37099,6.715265e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.002027714,Nitrogen Oxides,TON
+37099,0.00927797,"1,3-Butadiene",LB
+37099,8.448281e-06,Sulfur Dioxide,TON
+37197,0.11182382,Benzo[b]Fluoranthene,LB
+37197,14.735384,"2,2,4-Trimethylpentane",LB
+37197,52.19554,Benzene,LB
+37197,0.03843072,Arsenic,LB
+37197,28.10505,Nitrogen Oxides,TON
+37197,0.5337915,Organic Carbon portion of PM2.5-PRI,TON
+37197,1.507249,PM2.5 Primary (Filt + Cond),TON
+37187,90.89604,Ethyl Benzene,LB
+37187,0.0010330008,Mercury,LB
+37187,0.01974871,Arsenic,LB
+37187,0.1012025,Methane,TON
+37187,69.67982,Propionaldehyde,LB
+37187,2365.102,"2,2,4-Trimethylpentane",LB
+37187,18.409516,Phenanthrene,LB
+37187,778.4029,Carbon Monoxide,TON
+37187,100.2047,Nitrogen Oxides,TON
+37187,0.2839545,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.02027266,Xylenes (Mixed Isomers),LB
+37197,1.811976e-05,"Benzo[g,h,i,]Perylene",LB
+37197,1.3442968e-05,Fluoranthene,LB
+37197,3.600088e-06,Chrysene,LB
+37197,0.002774232,Formaldehyde,LB
+37197,0.008869286,Benzene,LB
+37197,4.857936e-05,Phenanthrene,LB
+37197,0.003992898,Carbon Monoxide,TON
+37197,1.581364e-06,Ammonia,TON
+37197,3.624559e-06,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.11166954,Pyrene,LB
+37193,0.0006348226,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.002042486,Manganese,LB
+37185,0.697675,Acrolein,LB
+37185,0.0003555104,"Benzo[g,h,i,]Perylene",LB
+37185,8.98904,Formaldehyde,LB
+37185,0.06021806,Fluorene,LB
+37185,261.5649,Carbon Dioxide,TON
+37185,0.0467935,PM10-Primary from certain diesel engines,TON
+37067,35.64966,Ethyl Benzene,LB
+37067,2.691014,Anthracene,LB
+37067,0.014952584,"Benzo[g,h,i,]Perylene",LB
+37067,0.009239946,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.005070732,Benzo[k]Fluoranthene,LB
+37067,5.408324,Acenaphthylene,LB
+37067,0.17322476,Manganese,LB
+37067,3.217964,Acenaphthene,LB
+37067,9.207578,Phenanthrene,LB
+37067,115.33288,Naphthalene,LB
+37067,0.6560534,Methane,TON
+37067,0.831421,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.02917055,Nitrous Oxide,TON
+37067,0.3356246,Ammonia,TON
+37067,0.08428636,Sulfur Dioxide,TON
+37135,0.002421942,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.1192994,PM10-Primary from certain diesel engines,TON
+37135,0.06018192,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.04379118,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.0005241484,"Dibenzo[a,h]Anthracene",LB
+37111,3.083836e-05,Mercury,LB
+37111,0.017911588,Nickel,LB
+37111,0.006447904,Arsenic,LB
+37111,52.31696,Acetaldehyde,LB
+37111,0.002322571,Nitrous Oxide,TON
+37005,0.00180035,Arsenic,LB
+37005,0.4240992,Phenanthrene,LB
+37005,0.7953722,Nitrogen Oxides,TON
+37005,0.03605543,PM2.5 Primary (Filt + Cond),TON
+37005,3.891326,Acrolein,LB
+37005,0.127667,Anthracene,LB
+37005,2.57009,Propionaldehyde,LB
+37005,9.31888e-06,Chromium (VI),LB
+37005,0.00059472,"Benzo[g,h,i,]Perylene",LB
+37005,0.0009487006,Benzo[b]Fluoranthene,LB
+37005,0.2029544,Fluoranthene,LB
+37005,0.00013211896,Benzo[k]Fluoranthene,LB
+37007,0.830057,Acrolein,LB
+37007,0.03725408,Anthracene,LB
+37007,0.0003333894,Benzo[k]Fluoranthene,LB
+37007,0.0003320266,"Dibenzo[a,h]Anthracene",LB
+37007,0.001833143,Nickel,LB
+37007,0.006042045,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,2.955064e-05,Mercury,LB
+37089,5.158488e-08,Chromium (VI),LB
+37177,0.04189646,Phenanthrene,LB
+37177,0.1798418,Styrene,LB
+37177,7.288232,Hexane,LB
+37177,0.03499292,Acenaphthylene,LB
+37197,0.00745761,Chromium (VI),LB
+37197,5.267594,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,3.909458,Chrysene,LB
+37197,28.88992,Fluorene,LB
+37197,8.026459,Methane,TON
+37197,143327.8,Carbon Dioxide,TON
+37197,1.152859,Elemental Carbon portion of PM2.5-PRI,TON
+37197,13896.488,Benzene,LB
+37197,261.0872,Acrolein,LB
+37197,44495.52,Toluene,LB
+37189,3.961518,Xylenes (Mixed Isomers),LB
+37189,0.0007464948,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.000124938,Arsenic,LB
+37181,3.730814,Styrene,LB
+37181,19.80863,Acrolein,LB
+37181,13.612024,Propionaldehyde,LB
+37181,2.083212,Fluoranthene,LB
+37181,243.7232,Formaldehyde,LB
+37181,0.008468278,"Dibenzo[a,h]Anthracene",LB
+37181,6.965862,Carbon Monoxide,TON
+37179,10.889942,Naphthalene,LB
+37179,4.855898,Propionaldehyde,LB
+37179,9.090486,Xylenes (Mixed Isomers),LB
+37179,3.515508e-05,Mercury,LB
+37173,0.02145272,Ethyl Benzene,LB
+37173,0.9607692,Propionaldehyde,LB
+37173,0.000420326,Pyrene,LB
+37173,0.0002182052,Arsenic,LB
+37193,80.86004,Ethyl Benzene,LB
+37193,2.72612,Styrene,LB
+37193,35.89508,Formaldehyde,LB
+37193,0.0464413,Benzo[a]Pyrene,LB
+37193,0.03377968,Benz[a]Anthracene,LB
+37193,0.00264168,Nickel,LB
+37193,837.6733,Carbon Dioxide,TON
+37193,0.02374992,Organic Carbon portion of PM2.5-PRI,TON
+37193,2.407239,Volatile Organic Compounds,TON
+37185,0.2424854,Chrysene,LB
+37185,7.560496,Ethyl Benzene,LB
+37185,0.05481544,Sulfate Portion of PM2.5-PRI,TON
+37185,8.25059,Benzene,LB
+37191,1.7542936,Fluoranthene,LB
+37191,234.4916,Formaldehyde,LB
+37191,5.964192,"2,2,4-Trimethylpentane",LB
+37191,25.38836,Naphthalene,LB
+37191,0.6023018,PM10-Primary from certain diesel engines,TON
+37191,0.7893169,PM10 Primary (Filt + Cond),TON
+37191,0.01424782,Sulfate Portion of PM2.5-PRI,TON
+37191,16.50475,Toluene,LB
+37189,306.966,Formaldehyde,LB
+37189,651.9462,"2,2,4-Trimethylpentane",LB
+37189,23.83304,Styrene,LB
+37189,0.4631181,PM2.5 Primary (Filt + Cond),TON
+37189,0.01135461,Sulfate Portion of PM2.5-PRI,TON
+37187,2.437798,Ethyl Benzene,LB
+37187,1.8304384,Hexane,LB
+37187,2.073974e-05,Chromium (VI),LB
+37187,0.2540324,Acenaphthene,LB
+37183,0.0788125,Benzo[b]Fluoranthene,LB
+37183,77.51606,Benzene,LB
+37183,0.03659169,Nitrous Oxide,TON
+37183,277.2802,Acrolein,LB
+37183,10.853986,Anthracene,LB
+37183,27218,Xylenes (Mixed Isomers),LB
+37183,3.769228,Chrysene,LB
+37183,2.017492,Nickel,LB
+37183,4525.98,Acetaldehyde,LB
+37183,3319.706,Carbon Monoxide,TON
+37183,28.07382,PM10 Primary (Filt + Cond),TON
+37179,4.92618,Benzene,LB
+37173,1.3400148,Ethyl Benzene,LB
+37173,0.687662,Formaldehyde,LB
+37173,0.0009759654,Benz[a]Anthracene,LB
+37173,0.0002934998,Arsenic,LB
+37173,0.011648494,Phenanthrene,LB
+37173,0.0006371497,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.018281804,Chrysene,LB
+37095,0.0003731606,Arsenic,LB
+37095,1.5417234,Naphthalene,LB
+37095,0.006271729,Methane,TON
+37089,10.382836,Xylenes (Mixed Isomers),LB
+37089,0.004539164,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,3.877476,"2,2,4-Trimethylpentane",LB
+37089,0.05887458,Manganese,LB
+37089,67.46408,Acetaldehyde,LB
+37089,5.675827,Carbon Monoxide,TON
+37089,0.5349238,PM10 Primary (Filt + Cond),TON
+37089,0.01309818,Sulfate Portion of PM2.5-PRI,TON
+37089,0.898998,Volatile Organic Compounds,TON
+37079,2.075332,Styrene,LB
+37079,11.01652,Acrolein,LB
+37079,7.571244,Propionaldehyde,LB
+37079,0.7969428,Acenaphthylene,LB
+37079,0.10801448,Benzo[a]Pyrene,LB
+37079,0.3559434,Benz[a]Anthracene,LB
+37073,0.3138334,Pyrene,LB
+37073,5.816932e-06,Chromium (VI),LB
+37073,0.7830388,"2,2,4-Trimethylpentane",LB
+37073,3.436054,Naphthalene,LB
+37073,1.25107,Nitrogen Oxides,TON
+37059,23.40636,Toluene,LB
+37059,0.006223906,Benzo[a]Pyrene,LB
+37059,0.3327572,Naphthalene,LB
+37059,0.0002098364,Sulfate Portion of PM2.5-PRI,TON
+37049,6.459912,"1,3-Butadiene",LB
+37049,0.07292994,Chrysene,LB
+37049,5.506744,"2,2,4-Trimethylpentane",LB
+37049,5.958258e-05,Mercury,LB
+37049,0.6533506,Acenaphthene,LB
+37049,22.87898,Naphthalene,LB
+37049,0.1135218,Methane,TON
+37049,0.0004381225,Nitrate portion of PM2.5-PRI,TON
+37049,0.2889272,PM10 Primary (Filt + Cond),TON
+37049,0.01725113,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.01132459,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,10.965836,Acenaphthylene,LB
+37037,853.885,Acetaldehyde,LB
+37037,1.540633,PM25-Primary from certain diesel engines,TON
+37037,0.1156481,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,155.54512,Acrolein,LB
+37025,5.949734,Anthracene,LB
+37025,0.08650192,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,9.53113,Acenaphthylene,LB
+37025,239.5206,Benzene,LB
+37025,0.2101758,Arsenic,LB
+37025,25.80806,Phenanthrene,LB
+37025,12.79741,Fluorene,LB
+37025,287.7384,Naphthalene,LB
+37025,0.001710427,Nitrate portion of PM2.5-PRI,TON
+37025,0.1391213,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.007892078,Chrysene,LB
+37013,0.013499528,Benz[a]Anthracene,LB
+37013,1.0032582e-06,Mercury,LB
+37013,0.0006622412,Nickel,LB
+37013,0.6245178,Naphthalene,LB
+37013,0.002501704,Methane,TON
+37013,7.21453e-05,Nitrate portion of PM2.5-PRI,TON
+37013,0.00572631,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.01802118,PM10 Primary (Filt + Cond),TON
+37015,0.10544458,Xylenes (Mixed Isomers),LB
+37015,0.01416691,Formaldehyde,LB
+37015,2.061652e-05,Benzo[a]Pyrene,LB
+37015,0.308628,Carbon Dioxide,TON
+37015,3.465874e-05,PM10 Primary (Filt + Cond),TON
+37015,6.473062e-06,Sulfur Dioxide,TON
+37005,0.790348,Ethyl Benzene,LB
+37005,0.5929842,Hexane,LB
+37005,4.298344e-06,Chromium (VI),LB
+37005,0.017905042,Chrysene,LB
+37005,2.646632,Naphthalene,LB
+37067,6.137408,Toluene,LB
+37067,0.00780207,Benzo[a]Pyrene,LB
+37067,0.00018163474,"Dibenzo[a,h]Anthracene",LB
+37067,0.001982554,Elemental Carbon portion of PM2.5-PRI,TON
+37063,18.18739,Xylenes (Mixed Isomers),LB
+37049,2.361524,Carbon Monoxide,TON
+37049,0.3818206,Propionaldehyde,LB
+37049,3.654482,Xylenes (Mixed Isomers),LB
+37049,8.409024e-05,"Dibenzo[a,h]Anthracene",LB
+37049,0.001652565,Benz[a]Anthracene,LB
+37017,0.12968324,Ethyl Benzene,LB
+37017,0.006444114,Styrene,LB
+37017,0.4658068,Xylenes (Mixed Isomers),LB
+37017,0.0001960206,Chrysene,LB
+37017,0.4313212,Formaldehyde,LB
+37017,0.0005604236,Manganese,LB
+37017,0.002163972,Methane,TON
+37017,0.0282064,Nitrogen Oxides,TON
+37003,0.7614152,Ethyl Benzene,LB
+37003,6.075138,Toluene,LB
+37003,0.6345128,Benzene,LB
+37017,0.03323377,Sulfur Dioxide,TON
+37017,14.99504,Toluene,LB
+37017,0.01052374,Arsenic,LB
+37017,1.832622,Fluorene,LB
+37017,0.05489069,Methane,TON
+37017,1.233079,PM10-Primary from certain diesel engines,TON
+37017,0.7445728,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.0033785,Nitrate portion of PM2.5-PRI,TON
+37017,0.2761348,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.222602,Xylenes (Mixed Isomers),LB
+37013,0.0003144654,Arsenic,LB
+37013,0.0004705214,Fluorene,LB
+37013,87.05409,Carbon Dioxide,TON
+37013,0.0023372,Ammonia,TON
+37013,0.001901625,Organic Carbon portion of PM2.5-PRI,TON
+37011,43.40332,Hexane,LB
+37011,115.6988,Xylenes (Mixed Isomers),LB
+37011,0.012597808,Chrysene,LB
+37011,0.00241576,Arsenic,LB
+37011,15.893882,Acetaldehyde,LB
+37027,0.04956281,Ammonia,TON
+37027,5.869201e-05,Nitrate portion of PM2.5-PRI,TON
+37027,0.0303575,Sulfur Dioxide,TON
+37027,0.0007384896,Sulfate Portion of PM2.5-PRI,TON
+37027,4.932058e-05,Chromium (VI),LB
+37027,0.013507174,Fluoranthene,LB
+37027,0.007773818,Benzo[k]Fluoranthene,LB
+37027,0.0004944334,Mercury,LB
+37189,20.52168,Acrolein,LB
+37189,11.8134,Carbon Monoxide,TON
+37189,1653.082,Carbon Dioxide,TON
+37189,0.2627029,PM25-Primary from certain diesel engines,TON
+37189,0.1908648,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.05458121,Ammonia,TON
+37073,15.699072,"1,3-Butadiene",LB
+37073,107.27422,Benzene,LB
+37073,5.644344,Naphthalene,LB
+37073,0.01021253,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.0009077096,Sulfate Portion of PM2.5-PRI,TON
+37063,1.378498,Methane,TON
+37063,0.7481816,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.5121927,Sulfate Portion of PM2.5-PRI,TON
+37063,0.0007062304,Chromium (VI),LB
+37063,6.934794,Acenaphthylene,LB
+37063,2.785914,Benz[a]Anthracene,LB
+37145,0.0463865,Ethyl Benzene,LB
+37145,1.042288e-05,"Benzo[g,h,i,]Perylene",LB
+37145,0.0005522304,Acenaphthylene,LB
+37145,0.002525184,Manganese,LB
+37145,0.0003225998,Arsenic,LB
+37145,0.5868271,Methane,TON
+37189,0.08580824,Xylenes (Mixed Isomers),LB
+37189,31.90384,Formaldehyde,LB
+37183,3.841468,Ethyl Benzene,LB
+37183,2.90824,"1,3-Butadiene",LB
+37183,8.35546,Acrolein,LB
+37183,5.054314,Propionaldehyde,LB
+37183,0.005404654,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.1167614,Methane,TON
+37183,0.1155057,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.07627675,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.04529421,Sulfate Portion of PM2.5-PRI,TON
+37057,2.739339,Carbon Monoxide,TON
+37057,0.001174794,Nitrate portion of PM2.5-PRI,TON
+37057,0.04257624,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.01244977,Sulfate Portion of PM2.5-PRI,TON
+37057,0.8968664,Pyrene,LB
+37057,0.00402408,"Benzo[g,h,i,]Perylene",LB
+37057,2.79276,"2,2,4-Trimethylpentane",LB
+37155,6.24117,Ethyl Benzene,LB
+37155,18.685512,"2,2,4-Trimethylpentane",LB
+37155,5.201024,Benzene,LB
+37191,0.004372536,Elemental Carbon portion of PM2.5-PRI,TON
+37191,3.197336,"1,3-Butadiene",LB
+37191,0.00019793826,Benzo[k]Fluoranthene,LB
+37191,0.010015508,Arsenic,LB
+37191,0.5532402,Fluorene,LB
+37153,0.5199402,Acenaphthylene,LB
+37153,84.94636,Formaldehyde,LB
+37153,0.14034988,Benz[a]Anthracene,LB
+37153,0.3091694,Acenaphthene,LB
+37153,0.1998951,PM25-Primary from certain diesel engines,TON
+37153,0.001597572,Nitrous Oxide,TON
+37075,0.04655166,Styrene,LB
+37075,3.447072,Toluene,LB
+37075,3.190086,Xylenes (Mixed Isomers),LB
+37075,0.0013332228,Benzo[b]Fluoranthene,LB
+37075,0.0013332228,Benzo[k]Fluoranthene,LB
+37075,0.001596814,Arsenic,LB
+37075,0.1752461,Nitrogen Oxides,TON
+37069,15.458928,Xylenes (Mixed Isomers),LB
+37069,0.005720848,Nickel,LB
+37069,0.01515435,Fluorene,LB
+37069,0.003418909,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.7528724,Nitrogen Oxides,TON
+37069,0.00799787,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.01896865,PM2.5 Primary (Filt + Cond),TON
+37019,3.492214,Propionaldehyde,LB
+37019,0.00013302188,Chromium (VI),LB
+37019,0.08254868,Phenanthrene,LB
+37019,0.02934628,Fluorene,LB
+37019,0.02082508,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.1880772,PM10 Primary (Filt + Cond),TON
+37019,1.033083,Volatile Organic Compounds,TON
+37019,1.557528,Ethyl Benzene,LB
+37019,0.004185062,Pyrene,LB
+37019,0.0006932526,Benzo[b]Fluoranthene,LB
+37019,0.0006863248,Chrysene,LB
+37019,2.066076e-05,Nickel,LB
+37019,0.8117778,Acetaldehyde,LB
+37015,0.7790826,"1,3-Butadiene",LB
+37015,8.225804,Hexane,LB
+37015,0.008680644,Fluoranthene,LB
+37015,7.120024,"2,2,4-Trimethylpentane",LB
+37015,1.32439e-05,Mercury,LB
+37015,0.005959372,Acenaphthene,LB
+37015,0.3094168,Naphthalene,LB
+37015,0.2414631,Nitrogen Oxides,TON
+37015,1.7629648e-05,Mercury,LB
+37015,0.7705882,Acetaldehyde,LB
+37015,0.002776481,Ammonia,TON
+37015,0.2915544,"1,3-Butadiene",LB
+37015,9.57911,Toluene,LB
+37015,0.0010632774,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,33.25224,Styrene,LB
+37011,2.409798,Pyrene,LB
+37011,3378.512,Xylenes (Mixed Isomers),LB
+37011,0.4874,Benzo[k]Fluoranthene,LB
+37011,0.27797,Arsenic,LB
+37011,272.6048,Carbon Monoxide,TON
+37011,0.182084,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.2049585,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.01976124,Sulfate Portion of PM2.5-PRI,TON
+37005,0.0005703768,Acenaphthylene,LB
+37005,0.03904706,Formaldehyde,LB
+37005,0.04190522,Acetaldehyde,LB
+37005,0.00012518992,Acenaphthene,LB
+37005,1.31993e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37005,1.48259e-07,Nitrate portion of PM2.5-PRI,TON
+37003,9.240366,Formaldehyde,LB
+37003,0.2328536,"2,2,4-Trimethylpentane",LB
+37003,0.02333836,Benz[a]Anthracene,LB
+37003,0.0004719278,Arsenic,LB
+37003,0.06586748,Fluorene,LB
+37003,175.7332,Carbon Dioxide,TON
+37003,0.06018452,PM10 Primary (Filt + Cond),TON
+37003,0.4840416,Propionaldehyde,LB
+37003,0.0833768,Anthracene,LB
+37003,0.001954076,Sulfur Dioxide,TON
+37003,0.15424988,Pyrene,LB
+37003,0.000331422,"Benzo[g,h,i,]Perylene",LB
+37003,5.561252e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,38.95304,Formaldehyde,LB
+37003,0.007817268,Manganese,LB
+37003,0.007291508,Nickel,LB
+37051,0.05692937,Methane,TON
+37051,0.5297321,Nitrogen Oxides,TON
+37051,0.0003689556,"Dibenzo[a,h]Anthracene",LB
+37051,0.007081796,Benz[a]Anthracene,LB
+37033,0.5910306,Hexane,LB
+37033,2.1516,Xylenes (Mixed Isomers),LB
+37017,0.02711276,Styrene,LB
+37017,0.2259386,Propionaldehyde,LB
+37017,10.814088,Acetaldehyde,LB
+37017,0.0488867,Naphthalene,LB
+37017,1.439112,Carbon Monoxide,TON
+37017,0.0009655278,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.0012909576,"Benzo[g,h,i,]Perylene",LB
+37009,0.0003150984,Acenaphthene,LB
+37009,0.0002027403,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,3.25053,Ethyl Benzene,LB
+37145,0.71504,"1,3-Butadiene",LB
+37145,0.002088493,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.004666916,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.003562464,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.5941282,Benz[a]Anthracene,LB
+37017,310.8008,Formaldehyde,LB
+37013,0.0015120272,Benzo[k]Fluoranthene,LB
+37013,0.08057966,Chrysene,LB
+37013,1.2280238e-05,Mercury,LB
+37013,0.3224276,Acenaphthene,LB
+37013,3.722312,Carbon Monoxide,TON
+37013,0.003742849,Sulfate Portion of PM2.5-PRI,TON
+37021,73.47676,Styrene,LB
+37021,454.5704,"1,3-Butadiene",LB
+37021,0.003238222,Chromium (VI),LB
+37021,14.34567,Acenaphthylene,LB
+37021,0.03268996,"Dibenzo[a,h]Anthracene",LB
+37021,61281.72,Carbon Dioxide,TON
+37021,0.7199182,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,1.285635,Sulfur Dioxide,TON
+37019,65.86762,Toluene,LB
+37019,5.95408,Fluoranthene,LB
+37019,0.0002775388,Mercury,LB
+37019,0.11100086,Nickel,LB
+37019,0.05803196,Arsenic,LB
+37019,5.442376,Fluorene,LB
+37019,33.61868,Nitrogen Oxides,TON
+37019,0.09858908,Sulfur Dioxide,TON
+37019,0.1060277,Sulfate Portion of PM2.5-PRI,TON
+37019,4.494752,Volatile Organic Compounds,TON
+37011,0.0007815834,Chrysene,LB
+37011,3.32412,Benzene,LB
+37011,3.615553e-06,Nitrate portion of PM2.5-PRI,TON
+37011,2.159336,Hexane,LB
+37005,408.0938,"2,2,4-Trimethylpentane",LB
+37003,0.7614214,Ethyl Benzene,LB
+37003,0.02003008,Benzo[a]Pyrene,LB
+37003,0.07435652,Acenaphthene,LB
+37003,0.01957928,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.004937092,Ammonia,TON
+37003,0.08762606,PM10 Primary (Filt + Cond),TON
+37003,0.001612722,Sulfur Dioxide,TON
+37003,0.1318012,Volatile Organic Compounds,TON
+37179,0.0013822938,Benzo[b]Fluoranthene,LB
+37179,3.564458e-05,Nickel,LB
+37179,0.3092952,Naphthalene,LB
+37179,1.734451,Carbon Monoxide,TON
+37197,0.01262859,PM2.5 Primary (Filt + Cond),TON
+37197,4.19833,Hexane,LB
+37193,11.006172,Ethyl Benzene,LB
+37193,0.03301038,Pyrene,LB
+37193,0.007723188,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,6.234668,Formaldehyde,LB
+37193,5.283138e-05,Mercury,LB
+37193,0.10753706,Phenanthrene,LB
+37183,0.014987978,Benzo[b]Fluoranthene,LB
+37183,5.822502,Acenaphthylene,LB
+37183,6.08956,Fluorene,LB
+37183,153.16772,Xylenes (Mixed Isomers),LB
+37199,0.2773586,Acenaphthylene,LB
+37199,3.922208,Ethyl Benzene,LB
+37197,2.408028e-08,Chromium (VI),LB
+37197,0.0003904114,Acenaphthylene,LB
+37197,9.370042e-05,Chrysene,LB
+37197,0.6230004,Carbon Monoxide,TON
+37197,0.00553604,PM2.5 Primary (Filt + Cond),TON
+37195,0.019191874,Pyrene,LB
+37195,0.012676404,Benzo[k]Fluoranthene,LB
+37195,0.04398732,Acenaphthylene,LB
+37195,0.009553906,Chrysene,LB
+37195,19.670192,Formaldehyde,LB
+37195,0.02413788,Benzo[a]Pyrene,LB
+37195,26.63416,Benzene,LB
+37195,110.87404,Acetaldehyde,LB
+37195,0.01534441,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.03383021,PM2.5 Primary (Filt + Cond),TON
+37195,0.002142822,Manganese,LB
+37183,5.933678,Anthracene,LB
+37183,118.52734,Propionaldehyde,LB
+37183,219.1246,Xylenes (Mixed Isomers),LB
+37183,0.0347713,"Benzo[g,h,i,]Perylene",LB
+37183,0.09161776,Benzo[b]Fluoranthene,LB
+37183,0.4448386,Manganese,LB
+37183,121.4821,Carbon Monoxide,TON
+37183,625.9748,Toluene,LB
+37141,0.02255492,"Benzo[g,h,i,]Perylene",LB
+37141,1633.8904,Formaldehyde,LB
+37141,5.584276,Acenaphthene,LB
+37141,181.71444,Naphthalene,LB
+37141,0.1065323,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,1819.8548,Formaldehyde,LB
+37129,0.212568,Nickel,LB
+37129,1.662505,PM10-Primary from certain diesel engines,TON
+37123,6.469136e-05,Benzo[b]Fluoranthene,LB
+37123,2.455264e-06,"Dibenzo[a,h]Anthracene",LB
+37123,0.00013362696,Acenaphthene,LB
+37109,20.02926,Hexane,LB
+37109,2.950024,Acenaphthylene,LB
+37109,0.09323902,Arsenic,LB
+37109,314.6508,Acetaldehyde,LB
+37109,1.7571472,Acenaphthene,LB
+37109,84.1616,Nitrogen Oxides,TON
+37109,0.2633576,Sulfate Portion of PM2.5-PRI,TON
+37109,3.635081,Volatile Organic Compounds,TON
+37107,0.0002016484,Benz[a]Anthracene,LB
+37107,0.0005283619,Methane,TON
+37107,1.614407,Carbon Dioxide,TON
+37107,0.010960548,Styrene,LB
+37107,0.0003934746,Anthracene,LB
+37107,0.009717754,Propionaldehyde,LB
+37107,0.0002168946,Benzo[k]Fluoranthene,LB
+37097,0.000203965,Chromium (VI),LB
+37097,654.2796,Formaldehyde,LB
+37097,0.08502602,Benzo[a]Pyrene,LB
+37097,277.0426,Acetaldehyde,LB
+37097,0.1975848,Ammonia,TON
+37097,15.0478,Nitrogen Oxides,TON
+37097,0.0513769,Sulfur Dioxide,TON
+37091,0.0015151484,"Dibenzo[a,h]Anthracene",LB
+37091,1.360557,"2,2,4-Trimethylpentane",LB
+37091,0.1380295,PM10-Primary from certain diesel engines,TON
+37091,2.067387,Nitrogen Oxides,TON
+37091,0.1654922,PM10 Primary (Filt + Cond),TON
+37091,0.7623544,Styrene,LB
+37091,3.707882,Toluene,LB
+37091,9.61037e-06,Chromium (VI),LB
+37091,0.00282401,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,6.675,Pyrene,LB
+37103,0.002759156,Chromium (VI),LB
+37103,2785.494,"2,2,4-Trimethylpentane",LB
+37103,0.0276614,Mercury,LB
+37103,0.3449048,Nickel,LB
+37103,1054.564,Carbon Monoxide,TON
+37103,0.7886319,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.0010694078,"Dibenzo[a,h]Anthracene",LB
+37095,90.1036,Ethyl Benzene,LB
+37095,0.8355938,Phenanthrene,LB
+37095,4.250525,Nitrogen Oxides,TON
+37095,0.03867156,Sulfur Dioxide,TON
+37093,1.1504732,Propionaldehyde,LB
+37093,0.0003502312,Acenaphthylene,LB
+37093,40.11246,Formaldehyde,LB
+37093,0.12068642,Benzene,LB
+37093,84.82538,Carbon Dioxide,TON
+37093,0.000280928,Manganese,LB
+37087,0.0018283126,"Benzo[g,h,i,]Perylene",LB
+37087,0.0537022,Chrysene,LB
+37087,2.329864,Ethyl Benzene,LB
+37087,6.6262,Benzene,LB
+37087,0.000441657,Nitrate portion of PM2.5-PRI,TON
+37087,0.154466,PM2.5 Primary (Filt + Cond),TON
+37087,0.005381157,Sulfate Portion of PM2.5-PRI,TON
+37083,2.979476e-05,Chromium (VI),LB
+37083,0.0037633,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.014782042,Benzo[b]Fluoranthene,LB
+37083,0.2029372,Benz[a]Anthracene,LB
+37083,0.004217864,Arsenic,LB
+37083,0.487984,Acenaphthene,LB
+37083,0.0008844959,Nitrate portion of PM2.5-PRI,TON
+37083,12.69233,Nitrogen Oxides,TON
+37079,0.5390694,Toluene,LB
+37079,0.02565736,Anthracene,LB
+37079,0.02374882,Acenaphthene,LB
+37079,9.082144e-05,Nitrate portion of PM2.5-PRI,TON
+37079,0.007668984,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.003742991,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.00148084,Sulfate Portion of PM2.5-PRI,TON
+37079,0.03997642,Anthracene,LB
+37079,3.544114e-05,Benzo[k]Fluoranthene,LB
+37087,0.001965373,PM2.5 Primary (Filt + Cond),TON
+37087,0.0001384585,Sulfur Dioxide,TON
+37087,1.7197934,Ethyl Benzene,LB
+37087,0.004183966,Fluoranthene,LB
+37087,0.0019999704,Benzo[a]Pyrene,LB
+37087,0.890964,Acetaldehyde,LB
+37087,0.00560207,Fluorene,LB
+37087,0.0006354522,Nitrous Oxide,TON
+37083,350.7984,Styrene,LB
+37083,12.571392,Anthracene,LB
+37083,5.501858,Benzo[a]Pyrene,LB
+37083,1.5852914,Arsenic,LB
+37083,29.78648,Fluorene,LB
+37083,3.38107,Sulfur Dioxide,TON
+37075,0.001828066,Styrene,LB
+37075,0.06675872,Hexane,LB
+37075,0.0003557616,Acenaphthylene,LB
+37075,2.43512e-05,Benz[a]Anthracene,LB
+37071,10.00677,Manganese,LB
+37071,45.58997,PM10 Primary (Filt + Cond),TON
+37071,0.3911342,Sulfate Portion of PM2.5-PRI,TON
+37071,0.02796424,Chromium (VI),LB
+37071,6.61101,Benzo[k]Fluoranthene,LB
+37069,1.2271252,Anthracene,LB
+37069,0.5048158,Chrysene,LB
+37069,0.010775408,"Dibenzo[a,h]Anthracene",LB
+37069,10.795082,"2,2,4-Trimethylpentane",LB
+37069,0.2942259,Methane,TON
+37069,0.860041,Benzene,LB
+37069,8.098112e-07,Mercury,LB
+37069,0.0492782,Naphthalene,LB
+37069,0.0009750131,Methane,TON
+37069,1.53017e-05,Sulfate Portion of PM2.5-PRI,TON
+37069,0.7268036,Hexane,LB
+37069,8.077888e-08,Chromium (VI),LB
+37069,0.14612108,Hexane,LB
+37069,4.100292e-05,Benzo[k]Fluoranthene,LB
+37069,0.00016325886,Acenaphthene,LB
+37069,0.3257166,Carbon Dioxide,TON
+37069,0.002727749,Nitrogen Oxides,TON
+37069,9.094641e-07,Sulfate Portion of PM2.5-PRI,TON
+37063,0.3940822,Nickel,LB
+37063,9.652261,PM25-Primary from certain diesel engines,TON
+37063,0.9736767,Sulfate Portion of PM2.5-PRI,TON
+37063,17.93113,Pyrene,LB
+37059,56.07032,Ethyl Benzene,LB
+37059,9.703536,Acenaphthylene,LB
+37059,160.96838,Benzene,LB
+37059,0.224908,Nickel,LB
+37059,1.3861746,"1,3-Butadiene",LB
+37059,0.2673854,Acrolein,LB
+37059,0.005361606,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.0007065554,Arsenic,LB
+37059,6.955335,Carbon Monoxide,TON
+37059,1.808408e-05,Nitrate portion of PM2.5-PRI,TON
+37059,0.1678804,Volatile Organic Compounds,TON
+37055,12155.178,Benzene,LB
+37055,3.943796,Manganese,LB
+37055,24.88538,Fluorene,LB
+37055,5.66087,Nitrous Oxide,TON
+37055,342.6823,Nitrogen Oxides,TON
+37055,0.149545,Sulfate Portion of PM2.5-PRI,TON
+37055,204.6729,Volatile Organic Compounds,TON
+37055,229.3106,Acrolein,LB
+37055,17.798416,Fluoranthene,LB
+37055,3.12835,Benz[a]Anthracene,LB
+37047,11.932612,Hexane,LB
+37047,2.12265,Fluoranthene,LB
+37047,0.17215744,Chrysene,LB
+37047,0.002051156,"Dibenzo[a,h]Anthracene",LB
+37047,0.07810838,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.0150383,Phenanthrene,LB
+37039,0.002063154,Methane,TON
+37039,61.48883,Carbon Dioxide,TON
+37039,4.192643e-06,Nitrate portion of PM2.5-PRI,TON
+37039,0.0645656,Styrene,LB
+37039,0.3396038,"1,3-Butadiene",LB
+37039,10.84586,Toluene,LB
+37039,1.885978e-06,Chromium (VI),LB
+37039,0.8843402,Formaldehyde,LB
+37039,0.0012398164,Benzo[a]Pyrene,LB
+37041,0.5892078,Methane,TON
+37041,0.5314996,Nitrous Oxide,TON
+37041,1.240123,PM10 Primary (Filt + Cond),TON
+37035,0.0003883664,Mercury,LB
+37035,0.1437571,Sulfur Dioxide,TON
+37027,0.06997798,Fluoranthene,LB
+37027,0.2997338,Ethyl Benzene,LB
+37027,3.92516,Acetaldehyde,LB
+37027,0.0001331069,Nitrate portion of PM2.5-PRI,TON
+37027,0.09970128,PM10 Primary (Filt + Cond),TON
+37027,0.01004484,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,126.94736,Formaldehyde,LB
+37027,0.03120938,Manganese,LB
+37027,4.312848e-05,Mercury,LB
+37027,53.64582,Acetaldehyde,LB
+37027,3.729798,"1,3-Butadiene",LB
+37027,9.590216,Acrolein,LB
+37023,4.736342,Ethyl Benzene,LB
+37023,11.2568,Xylenes (Mixed Isomers),LB
+37023,0.0005761594,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.0003141624,"Dibenzo[a,h]Anthracene",LB
+37023,13.094014,Benzene,LB
+37023,0.03595654,Manganese,LB
+37023,0.0331856,Nickel,LB
+37023,0.01432602,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.008890069,Sulfur Dioxide,TON
+37013,1227.0148,Ethyl Benzene,LB
+37013,35.64851,Volatile Organic Compounds,TON
+37011,0.3353828,"1,3-Butadiene",LB
+37011,0.004130522,Pyrene,LB
+37011,6.183342,Xylenes (Mixed Isomers),LB
+37011,0.002801626,"Benzo[g,h,i,]Perylene",LB
+37011,0.0007522858,Benzo[k]Fluoranthene,LB
+37011,0.004998842,Fluorene,LB
+37001,2.362672,Acenaphthene,LB
+37001,0.1141417,Sulfur Dioxide,TON
+37001,48.90548,Toluene,LB
+37055,0.3080114,Ethyl Benzene,LB
+37055,0.000882476,Fluoranthene,LB
+37055,0.8132732,Formaldehyde,LB
+37055,0.04126319,Volatile Organic Compounds,TON
+37003,0.000412221,Benzo[k]Fluoranthene,LB
+37003,0.0004929853,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.001492396,Sulfur Dioxide,TON
+37161,0.0002176532,Anthracene,LB
+37161,0.05585866,Propionaldehyde,LB
+37161,0.0004606074,Pyrene,LB
+37161,2.208726e-06,Chromium (VI),LB
+37161,0.4411574,Formaldehyde,LB
+37161,0.012095364,Naphthalene,LB
+37161,2.000393e-06,Nitrate portion of PM2.5-PRI,TON
+37161,0.0003178313,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.1913568,Volatile Organic Compounds,TON
+37139,9.648412,Xylenes (Mixed Isomers),LB
+37139,0.003288426,Chrysene,LB
+37139,0.010642946,Manganese,LB
+37139,0.003505768,Nickel,LB
+37099,10.438072,Toluene,LB
+37087,0.15819594,Ethyl Benzene,LB
+37087,0.2895122,"2,2,4-Trimethylpentane",LB
+37087,0.790866,Benzene,LB
+37087,0.0005571946,Fluorene,LB
+37087,0.002701242,Methane,TON
+37087,0.0005775031,Organic Carbon portion of PM2.5-PRI,TON
+37021,16.521704,Pyrene,LB
+37021,0.07556154,"Benzo[g,h,i,]Perylene",LB
+37021,12.448342,Fluoranthene,LB
+37021,657.5578,Acetaldehyde,LB
+37021,5.003222,Acenaphthene,LB
+37021,40.61892,Carbon Monoxide,TON
+37021,0.2183153,Sulfur Dioxide,TON
+37021,3.476774,Fluoranthene,LB
+37021,7.041922,Phenanthrene,LB
+37021,0.9079605,PM10-Primary from certain diesel engines,TON
+37015,27.00182,Toluene,LB
+37015,0.007204458,Fluoranthene,LB
+37015,1.606476,Formaldehyde,LB
+37015,0.00263832,Sulfur Dioxide,TON
+37009,0.0334444,Nickel,LB
+37009,190.6619,Acetaldehyde,LB
+37009,1.09906,Fluorene,LB
+37009,0.2709064,Nitrous Oxide,TON
+37009,0.1012246,Sulfur Dioxide,TON
+37001,45.93774,Propionaldehyde,LB
+37001,83.09796,Xylenes (Mixed Isomers),LB
+37001,0.0383359,"Benzo[g,h,i,]Perylene",LB
+37001,0.0003043826,Mercury,LB
+37001,0.3120581,Ammonia,TON
+37085,5.669982,Toluene,LB
+37085,4.609058,Xylenes (Mixed Isomers),LB
+37085,0.004650284,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.003526874,Fluoranthene,LB
+37085,0.002430668,Benzo[k]Fluoranthene,LB
+37085,3.166788,Formaldehyde,LB
+37085,0.00407712,Fluorene,LB
+37085,2.974846,Carbon Monoxide,TON
+37071,0.04873334,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.02561274,Benzo[k]Fluoranthene,LB
+37071,0.07624331,PM2.5 Primary (Filt + Cond),TON
+37071,0.0017422186,Mercury,LB
+37071,0.02172246,Nickel,LB
+37071,0.0333098,Arsenic,LB
+37063,3.86689,Propionaldehyde,LB
+37063,0.0398898,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,17.228198,"2,2,4-Trimethylpentane",LB
+37063,0.017831736,Benz[a]Anthracene,LB
+37063,0.017053352,Nickel,LB
+37063,0.02614948,Arsenic,LB
+37063,23.0463,Carbon Monoxide,TON
+37063,2.112401,Nitrogen Oxides,TON
+37005,0.1394648,Acrolein,LB
+37005,2.852828,Toluene,LB
+37005,0.0017766654,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,4.080138e-05,"Dibenzo[a,h]Anthracene",LB
+37005,0.0011669048,Manganese,LB
+37005,5.25952e-05,Mercury,LB
+37005,0.0013384224,Acenaphthene,LB
+37005,0.06967158,Naphthalene,LB
+37005,0.00225007,Nitrous Oxide,TON
+37005,5.556691e-06,Nitrate portion of PM2.5-PRI,TON
+37005,0.005490151,PM10 Primary (Filt + Cond),TON
+37159,0.0664376,Sulfur Dioxide,TON
+37159,1.511925,Acrolein,LB
+37159,31.78766,Formaldehyde,LB
+37177,5.026634e-06,Sulfate Portion of PM2.5-PRI,TON
+37177,0.00012501276,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.000508899,Methane,TON
+37177,0.0001059167,Nitrous Oxide,TON
+37161,0.08188108,Volatile Organic Compounds,TON
+37161,0.0009573954,Anthracene,LB
+37161,0.002017304,Pyrene,LB
+37161,0.002253542,Benzo[a]Pyrene,LB
+37161,0.0006197358,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.08793823,Nitrogen Oxides,TON
+37133,0.08908806,"1,3-Butadiene",LB
+37133,0.001494174,Arsenic,LB
+37133,0.0013679442,Fluorene,LB
+37133,0.002223034,Nitrous Oxide,TON
+37133,0.01079654,PM10 Primary (Filt + Cond),TON
+37131,0.19314468,Naphthalene,LB
+37131,0.03196675,Methane,TON
+37131,0.007182382,Pyrene,LB
+37131,0.01420947,Sulfur Dioxide,TON
+37117,0.0014299144,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.00205926,Manganese,LB
+37117,115.1202,Carbon Dioxide,TON
+37117,0.001491666,Nitrous Oxide,TON
+37117,0.007255136,Ammonia,TON
+37159,3.215944,Anthracene,LB
+37159,1135.9112,Formaldehyde,LB
+37159,0.6583704,Benzo[a]Pyrene,LB
+37159,115.92064,Naphthalene,LB
+37159,4.27001,PM25-Primary from certain diesel engines,TON
+37159,0.5739094,Ammonia,TON
+37163,2.754504,Acetaldehyde,LB
+37163,0.04719824,Phenanthrene,LB
+37163,0.001164101,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.01480085,Pyrene,LB
+37163,5.283872e-06,Chromium (VI),LB
+37163,0.01299377,Fluoranthene,LB
+37163,0.03934394,Acenaphthylene,LB
+37163,7.51323,"2,2,4-Trimethylpentane",LB
+37163,9.169682,Benzene,LB
+37153,1.343339,Methane,TON
+37153,17.67852,Carbon Monoxide,TON
+37153,0.3742872,Ammonia,TON
+37153,0.2421056,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.011837018,Anthracene,LB
+37151,0.2573738,Propionaldehyde,LB
+37151,0.02354108,Pyrene,LB
+37151,52.83538,Toluene,LB
+37151,0.0010789422,Nickel,LB
+37151,0.0744512,Phenanthrene,LB
+37151,6.556582,Carbon Monoxide,TON
+37151,0.006300996,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.01281604,Anthracene,LB
+37145,0.2663762,Xylenes (Mixed Isomers),LB
+37145,0.02768028,Fluoranthene,LB
+37145,0.0007609468,Manganese,LB
+37145,0.008729198,PM10-Primary from certain diesel engines,TON
+37145,0.02102514,Volatile Organic Compounds,TON
+37145,0.001861648,Benzo[k]Fluoranthene,LB
+37145,0.00842939,Acenaphthene,LB
+37145,0.0009342814,Sulfur Dioxide,TON
+37167,13.185448,Toluene,LB
+37167,1.0993488,Formaldehyde,LB
+37167,0.0009060186,Benz[a]Anthracene,LB
+37167,1.4460704e-06,Mercury,LB
+37167,1.046843,Carbon Monoxide,TON
+37167,0.0005411961,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.06479662,Volatile Organic Compounds,TON
+37003,7.54552,Acenaphthylene,LB
+37003,0.004912788,"Dibenzo[a,h]Anthracene",LB
+37003,0.0336069,Arsenic,LB
+37003,62.07871,Carbon Monoxide,TON
+37077,0.0001740843,Anthracene,LB
+37077,2.023638e-05,"Benzo[g,h,i,]Perylene",LB
+37077,63.53144,Formaldehyde,LB
+37077,0.002775156,Manganese,LB
+37077,0.0012861918,Phenanthrene,LB
+37077,0.01186413,Nitrous Oxide,TON
+37077,0.4360637,Nitrogen Oxides,TON
+37077,0.003660963,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,16.691204,Ethyl Benzene,LB
+37067,0.07394426,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.0383409,Benzo[b]Fluoranthene,LB
+37067,30.79286,"2,2,4-Trimethylpentane",LB
+37067,0.03343194,Nickel,LB
+37067,0.1665813,Phenanthrene,LB
+37067,1.51117,Naphthalene,LB
+37067,0.04037665,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.00015419824,Anthracene,LB
+37079,0.00019590832,Benzo[k]Fluoranthene,LB
+37079,0.000763048,Acenaphthylene,LB
+37079,1.9085648,Acetaldehyde,LB
+37079,0.0111862,Volatile Organic Compounds,TON
+37121,0.4656444,Propionaldehyde,LB
+37121,0.7114666,Xylenes (Mixed Isomers),LB
+37121,0.04750684,Acenaphthylene,LB
+37121,0.001361616,Nickel,LB
+37121,0.11175918,Phenanthrene,LB
+37121,0.005178654,Methane,TON
+37121,0.2183303,Carbon Monoxide,TON
+37121,0.004259257,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.000776449,Sulfur Dioxide,TON
+37127,975.9334,Formaldehyde,LB
+37127,0.02434134,"Dibenzo[a,h]Anthracene",LB
+37127,99.76294,Naphthalene,LB
+37127,4.916315,Volatile Organic Compounds,TON
+37127,1.1282132,Chrysene,LB
+37179,168.6218,Toluene,LB
+37179,1.404445,Manganese,LB
+37179,0.200492,Arsenic,LB
+37179,1.625856,Organic Carbon portion of PM2.5-PRI,TON
+37179,13.35959,PM10 Primary (Filt + Cond),TON
+37179,7.686069,PM2.5 Primary (Filt + Cond),TON
+37179,8.655649,Volatile Organic Compounds,TON
+37081,7.254065e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37081,3.822023e-08,Nitrate portion of PM2.5-PRI,TON
+37081,5.176884e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.004839788,Toluene,LB
+37081,9.57573e-06,Pyrene,LB
+37081,2.587428e-07,"Benzo[g,h,i,]Perylene",LB
+37081,1.3590572e-06,Chrysene,LB
+37035,0.4315597,Elemental Carbon portion of PM2.5-PRI,TON
+37035,3.245478,Volatile Organic Compounds,TON
+37035,17.940684,"1,3-Butadiene",LB
+37035,40.20886,Toluene,LB
+37035,1.5232868,Anthracene,LB
+37035,40.69608,Xylenes (Mixed Isomers),LB
+37161,82.48088,Acetaldehyde,LB
+37161,0.0139696,Nitrous Oxide,TON
+37161,4.43417e-05,Nitrate portion of PM2.5-PRI,TON
+37161,0.4357705,Volatile Organic Compounds,TON
+37161,13.4764,Xylenes (Mixed Isomers),LB
+37161,0.01254158,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.00667099,Benzo[b]Fluoranthene,LB
+37161,0.0002878998,"Dibenzo[a,h]Anthracene",LB
+37161,6.915474,"2,2,4-Trimethylpentane",LB
+37099,0.0006418012,Fluoranthene,LB
+37099,0.002083008,Phenanthrene,LB
+37099,0.018961482,Naphthalene,LB
+37099,0.4910563,Carbon Monoxide,TON
+37099,3.907315e-05,Sulfate Portion of PM2.5-PRI,TON
+37165,6.806886,"1,3-Butadiene",LB
+37165,7.052124e-05,Chromium (VI),LB
+37165,0.012513424,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.5719183,PM25-Primary from certain diesel engines,TON
+37165,0.02695671,Sulfate Portion of PM2.5-PRI,TON
+37165,0.08035258,Manganese,LB
+37165,0.015489992,Arsenic,LB
+37165,4.97003,Carbon Monoxide,TON
+37159,0.01895262,Propionaldehyde,LB
+37159,0.0003372078,Benz[a]Anthracene,LB
+37159,0.0008801106,Acenaphthene,LB
+37151,969.2372,Formaldehyde,LB
+37151,1.6555528,Benz[a]Anthracene,LB
+37151,0.1665276,Nickel,LB
+37151,0.10277982,Arsenic,LB
+37151,2.443616,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.05877548,Ethyl Benzene,LB
+37135,1.7264942,Acrolein,LB
+37135,0.0009008934,Anthracene,LB
+37135,0.6024382,Xylenes (Mixed Isomers),LB
+37135,0.0031763,Fluorene,LB
+37135,3.251192e-06,Nitrate portion of PM2.5-PRI,TON
+37171,0.0001458634,Sulfur Dioxide,TON
+37171,1.6679912,Benzene,LB
+37171,0.010219514,Phenanthrene,LB
+37171,0.04457766,Styrene,LB
+37171,6.71944,Toluene,LB
+37169,129.14612,Acrolein,LB
+37169,88.7255,Propionaldehyde,LB
+37169,9.397212,Fluorene,LB
+37169,0.3680032,Methane,TON
+37169,80.5677,Carbon Monoxide,TON
+37159,0.004125772,Manganese,LB
+37159,11.49809,Carbon Monoxide,TON
+37159,0.008997525,Nitrous Oxide,TON
+37149,3.119401e-05,PM2.5 Primary (Filt + Cond),TON
+37149,9.645215e-07,Sulfate Portion of PM2.5-PRI,TON
+37149,0.016205502,Hexane,LB
+37149,8.532118e-05,"Benzo[g,h,i,]Perylene",LB
+37149,1.4322158e-05,Chrysene,LB
+37149,6.10297e-07,Nickel,LB
+37149,0.006617122,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.0016984976,Manganese,LB
+37151,0.0171551,Ammonia,TON
+37151,0.0004254812,Nitrate portion of PM2.5-PRI,TON
+37151,0.009636819,Sulfate Portion of PM2.5-PRI,TON
+37151,1.107236,"1,3-Butadiene",LB
+37151,3.478198,Benzene,LB
+37151,0.02057818,Manganese,LB
+37151,0.2427332,Fluorene,LB
+37147,48.15388,Ethyl Benzene,LB
+37147,0.0005116552,Chromium (VI),LB
+37147,0.5867352,Benzo[a]Pyrene,LB
+37147,0.1859912,Nickel,LB
+37147,0.14129274,Arsenic,LB
+37147,13.407858,Phenanthrene,LB
+37147,4.989728,PM2.5 Primary (Filt + Cond),TON
+37147,0.4558614,Sulfur Dioxide,TON
+37147,603.849,Styrene,LB
+37147,21.7107,Anthracene,LB
+37147,36.99096,Fluoranthene,LB
+37147,115.8117,Acenaphthylene,LB
+37147,6.720842,Chrysene,LB
+37147,7912.694,Formaldehyde,LB
+37147,0.18551836,Mercury,LB
+37147,7.855085,Sulfur Dioxide,TON
+37147,444.4956,Volatile Organic Compounds,TON
+37145,0.482467,Styrene,LB
+37145,1.1169602,"1,3-Butadiene",LB
+37145,2.984734,Acrolein,LB
+37145,0.13935694,Fluoranthene,LB
+37145,1.093653,"2,2,4-Trimethylpentane",LB
+37145,0.007433752,Nickel,LB
+37145,0.19191158,Fluorene,LB
+37145,0.001226317,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.006459558,PM2.5 Primary (Filt + Cond),TON
+37143,0.0213954,Benzo[a]Pyrene,LB
+37143,0.1058523,Acenaphthene,LB
+37143,0.07354083,PM25-Primary from certain diesel engines,TON
+37143,0.0003915649,Nitrate portion of PM2.5-PRI,TON
+37143,0.03025011,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.190878,Volatile Organic Compounds,TON
+37133,1.3955274,Fluorene,LB
+37133,0.0008054086,Nitrate portion of PM2.5-PRI,TON
+37133,0.1534244,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.3433084,"1,3-Butadiene",LB
+37131,0.2778692,Hexane,LB
+37131,0.002152196,Benzo[b]Fluoranthene,LB
+37131,0.03476608,Acenaphthene,LB
+37131,0.03626664,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.05453746,PM2.5 Primary (Filt + Cond),TON
+37095,0.1945702,Acrolein,LB
+37095,0.06976496,"2,2,4-Trimethylpentane",LB
+37095,0.2405407,Carbon Monoxide,TON
+37095,0.0004525783,Ammonia,TON
+37093,6.929712,Toluene,LB
+37093,2.553868,"2,2,4-Trimethylpentane",LB
+37093,9.565876,Benzene,LB
+37093,1.979154,Nitrogen Oxides,TON
+37073,0.0007704333,Sulfate Portion of PM2.5-PRI,TON
+37073,0.02984752,Fluoranthene,LB
+37073,0.0018826588,Manganese,LB
+37001,11.416874,Hexane,LB
+37001,0.0002411902,"Dibenzo[a,h]Anthracene",LB
+37001,13.771476,Benzene,LB
+37055,0.01623285,Nitrous Oxide,TON
+37055,6.993214,Hexane,LB
+37055,0.006800194,Anthracene,LB
+37055,8.005078,"2,2,4-Trimethylpentane",LB
+37055,0.014909408,Fluorene,LB
+37033,0.0225519,Propionaldehyde,LB
+37033,7.87061e-05,Benzo[k]Fluoranthene,LB
+37033,0.1906979,Formaldehyde,LB
+37033,0.0001737733,Nitrous Oxide,TON
+37033,4.675839e-07,Nitrate portion of PM2.5-PRI,TON
+37011,0.013790254,"Benzo[g,h,i,]Perylene",LB
+37011,0.002472316,Benz[a]Anthracene,LB
+37011,8.513942,Benzene,LB
+37011,0.003720096,Manganese,LB
+37011,0.1685958,Naphthalene,LB
+37011,3.043263,Carbon Monoxide,TON
+37011,0.01652072,Ammonia,TON
+37011,0.008870496,Sulfur Dioxide,TON
+37011,0.008302458,Naphthalene,LB
+37011,0.0002955843,Nitrous Oxide,TON
+37011,0.017647348,Acrolein,LB
+37011,0.3805618,Toluene,LB
+37011,0.0003014476,Pyrene,LB
+37011,0.00015049274,Benzo[k]Fluoranthene,LB
+37011,0.4934458,Benzene,LB
+37173,0.0091628,Styrene,LB
+37173,0.0006208606,Pyrene,LB
+37173,0.000362077,Benzo[k]Fluoranthene,LB
+37173,0.000276681,Chrysene,LB
+37173,0.0007339592,Arsenic,LB
+37173,0.003311081,Ammonia,TON
+37173,0.03085528,Nitrogen Oxides,TON
+37155,0.0007550284,Benz[a]Anthracene,LB
+37155,1.6176402,Benzene,LB
+37155,0.003234466,Phenanthrene,LB
+37155,0.0011213664,Fluorene,LB
+37155,124.6669,Carbon Dioxide,TON
+37155,0.00784217,PM10 Primary (Filt + Cond),TON
+37155,0.05560074,Acrolein,LB
+37155,1.325865,Toluene,LB
+37155,0.13344548,Propionaldehyde,LB
+37155,0.0017323376,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.002584074,Acenaphthylene,LB
+37119,0.0002361168,Chromium (VI),LB
+37119,0.018565262,Benz[a]Anthracene,LB
+37119,0.03252087,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.0009175752,Chrysene,LB
+37087,0.00235779,Benzo[a]Pyrene,LB
+37087,0.967315,"2,2,4-Trimethylpentane",LB
+37087,0.02371808,Styrene,LB
+37087,0.19765412,Propionaldehyde,LB
+37087,0.0017064742,Pyrene,LB
+37087,0.006363504,"Benzo[g,h,i,]Perylene",LB
+37087,0.0012280792,Benzo[b]Fluoranthene,LB
+37087,0.0012280792,Benzo[k]Fluoranthene,LB
+37087,9.549966,Acetaldehyde,LB
+37007,1.245444,PM10-Primary from certain diesel engines,TON
+37007,1.145811,PM25-Primary from certain diesel engines,TON
+37007,0.477338,Benz[a]Anthracene,LB
+37007,0.7512692,Anthracene,LB
+37177,1.638972,"1,3-Butadiene",LB
+37177,4.473976,Xylenes (Mixed Isomers),LB
+37177,0.0012735242,Benzo[k]Fluoranthene,LB
+37177,0.01896546,Manganese,LB
+37175,0.03832582,Anthracene,LB
+37175,0.204915,Acenaphthylene,LB
+37175,0.011053622,Chrysene,LB
+37175,14.088202,Formaldehyde,LB
+37175,0.00218172,Arsenic,LB
+37175,0.04503328,Acenaphthene,LB
+37175,0.004069267,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.03588289,Nitrous Oxide,TON
+37175,0.01731063,PM2.5 Primary (Filt + Cond),TON
+37165,7.27442,Ethyl Benzene,LB
+37165,24.15816,Hexane,LB
+37163,0.4168298,Acenaphthene,LB
+37163,13.070416,Naphthalene,LB
+37163,0.3564743,PM10 Primary (Filt + Cond),TON
+37163,0.2729802,PM2.5 Primary (Filt + Cond),TON
+37163,0.02925464,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.004712711,Sulfate Portion of PM2.5-PRI,TON
+37163,0.7112521,Volatile Organic Compounds,TON
+37163,3.877816,Ethyl Benzene,LB
+37163,4.091554,"1,3-Butadiene",LB
+37163,2.897508,Hexane,LB
+37163,0.0018260968,"Dibenzo[a,h]Anthracene",LB
+37161,0.03265156,Anthracene,LB
+37161,0.6007962,Xylenes (Mixed Isomers),LB
+37161,1.9668918e-06,Chromium (VI),LB
+37161,0.006419198,Benzo[a]Pyrene,LB
+37161,0.0002615796,"Dibenzo[a,h]Anthracene",LB
+37161,0.2280548,"2,2,4-Trimethylpentane",LB
+37161,1.6443584e-06,Mercury,LB
+37161,0.003156065,Methane,TON
+37161,0.0001118263,Nitrate portion of PM2.5-PRI,TON
+37161,0.0006897468,Sulfur Dioxide,TON
+37159,0.2508825,Methane,TON
+37159,0.4891785,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.00017227788,Chromium (VI),LB
+37159,0.00651249,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.003519704,"Dibenzo[a,h]Anthracene",LB
+37155,0.02467646,Benzo[k]Fluoranthene,LB
+37155,0.3928551,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.019191684,Mercury,LB
+37159,0.03140778,Sulfate Portion of PM2.5-PRI,TON
+37159,0.928512,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.6901872,Benzo[b]Fluoranthene,LB
+37159,0.6901872,Benzo[k]Fluoranthene,LB
+37159,0.678118,Chrysene,LB
+37159,342.135,"1,3-Butadiene",LB
+37159,2175.002,"1,3-Butadiene",LB
+37159,292.905,Acrolein,LB
+37159,277.3726,Propionaldehyde,LB
+37159,38456.58,Xylenes (Mixed Isomers),LB
+37159,21.35106,Fluoranthene,LB
+37159,65.20896,Acenaphthylene,LB
+37159,4221.748,Formaldehyde,LB
+37159,11.25902,PM2.5 Primary (Filt + Cond),TON
+37159,6.277288,Sulfur Dioxide,TON
+37159,0.3113635,Sulfate Portion of PM2.5-PRI,TON
+37153,1.0163294,Propionaldehyde,LB
+37153,0.09107848,"Benzo[g,h,i,]Perylene",LB
+37153,0.01939885,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.103027,PM10 Primary (Filt + Cond),TON
+37153,0.9792298,Volatile Organic Compounds,TON
+37147,9.412862,Carbon Monoxide,TON
+37147,10.94259,Nitrogen Oxides,TON
+37147,0.3050504,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.724688,PM2.5 Primary (Filt + Cond),TON
+37147,0.01713187,Sulfur Dioxide,TON
+37147,22.42276,Acrolein,LB
+37147,1.0152314,Anthracene,LB
+37147,0.016522618,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.06491094,Benzo[b]Fluoranthene,LB
+37139,4467.32,Ethyl Benzene,LB
+37139,6.461642,Anthracene,LB
+37139,2.10633,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.0483669,"Dibenzo[a,h]Anthracene",LB
+37139,7529.162,Benzene,LB
+37139,0.04090792,Mercury,LB
+37139,41.13522,Phenanthrene,LB
+37139,1556.248,Carbon Monoxide,TON
+37139,3.540342,Nitrous Oxide,TON
+37139,0.006823566,Nitrate portion of PM2.5-PRI,TON
+37137,0.8432698,Anthracene,LB
+37137,1.6439742,Pyrene,LB
+37137,0.001138014,Chromium (VI),LB
+37137,281.0106,Formaldehyde,LB
+37137,0.2180976,Arsenic,LB
+37137,1.995828,Fluorene,LB
+37137,15726.76,Carbon Dioxide,TON
+37137,0.3298868,Sulfur Dioxide,TON
+37137,257.9968,Ethyl Benzene,LB
+37133,0.02587669,Sulfur Dioxide,TON
+37133,7.397756,"1,3-Butadiene",LB
+37133,0.7048714,Anthracene,LB
+37133,1.7007366,Pyrene,LB
+37133,0.003469782,"Dibenzo[a,h]Anthracene",LB
+37133,21.44836,Benzene,LB
+37131,0.1361684,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.09908374,Benzo[b]Fluoranthene,LB
+37131,0.13642428,Benzo[a]Pyrene,LB
+37131,228.3884,"2,2,4-Trimethylpentane",LB
+37131,332.5786,Benzene,LB
+37131,0.6822556,Fluorene,LB
+37131,0.3529241,PM10 Primary (Filt + Cond),TON
+37123,0.0003391874,Fluorene,LB
+37123,0.2997717,Nitrogen Oxides,TON
+37123,0.008365029,PM10 Primary (Filt + Cond),TON
+37123,0.002482741,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.0003475924,Sulfur Dioxide,TON
+37117,1.9590408,Pyrene,LB
+37117,13835.49,Carbon Dioxide,TON
+37117,1.807654,PM10 Primary (Filt + Cond),TON
+37117,1.180611,PM2.5 Primary (Filt + Cond),TON
+37117,0.1239869,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,1.2901334,"2,2,4-Trimethylpentane",LB
+37111,0.15793404,Acenaphthene,LB
+37111,5.449768,Naphthalene,LB
+37111,0.2834003,Volatile Organic Compounds,TON
+37111,2.58269,Propionaldehyde,LB
+37111,0.009774552,Fluoranthene,LB
+37111,0.00017845328,"Dibenzo[a,h]Anthracene",LB
+37111,4.467604,"2,2,4-Trimethylpentane",LB
+37111,0.0009041362,Arsenic,LB
+37111,0.4320382,Nitrogen Oxides,TON
+37111,0.0002595225,Sulfate Portion of PM2.5-PRI,TON
+37119,498.9214,Hexane,LB
+37119,6.543086,Benzo[a]Pyrene,LB
+37119,0.2723712,"Dibenzo[a,h]Anthracene",LB
+37119,1520.9706,Benzene,LB
+37119,1833.4716,Naphthalene,LB
+37119,48.36915,PM10-Primary from certain diesel engines,TON
+37119,0.5697896,Nitrous Oxide,TON
+37119,1231.068,Nitrogen Oxides,TON
+37119,75.7089,Manganese,LB
+37119,146.67624,Fluorene,LB
+37119,80.70977,PM2.5 Primary (Filt + Cond),TON
+37119,54.00611,Sulfur Dioxide,TON
+37119,2.369213,Sulfate Portion of PM2.5-PRI,TON
+37019,0.001588995,"1,3-Butadiene",LB
+37019,0.0002699868,Propionaldehyde,LB
+37019,5.244466e-06,Benzo[b]Fluoranthene,LB
+37019,6.088882e-05,Acenaphthylene,LB
+37019,0.004357632,Formaldehyde,LB
+37019,1.3341554e-05,Acenaphthene,LB
+37019,7.429885e-06,Methane,TON
+37019,0.00677172,Carbon Monoxide,TON
+37019,4.429883e-06,Ammonia,TON
+37017,2.615604,Phenanthrene,LB
+37017,0.0375979,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.1299383,Sulfur Dioxide,TON
+37017,9.112134,Acrolein,LB
+37017,0.699663,Fluoranthene,LB
+37195,70.82173,Carbon Monoxide,TON
+37195,0.07925194,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.06945248,Sulfur Dioxide,TON
+37195,72.48938,Toluene,LB
+37195,6.025782,Pyrene,LB
+37187,8.703858,Propionaldehyde,LB
+37187,30.9919,Xylenes (Mixed Isomers),LB
+37187,0.00266252,"Dibenzo[a,h]Anthracene",LB
+37187,9.490476e-05,Mercury,LB
+37187,0.02612196,Nickel,LB
+37187,1.9559334,Phenanthrene,LB
+37187,19.23581,Nitrogen Oxides,TON
+37167,0.0337893,"Benzo[g,h,i,]Perylene",LB
+37167,0.008685712,"Dibenzo[a,h]Anthracene",LB
+37167,1.785624,Benz[a]Anthracene,LB
+37167,2.041549,PM10-Primary from certain diesel engines,TON
+37167,0.03579372,Nitrous Oxide,TON
+37167,45.37446,Nitrogen Oxides,TON
+37167,2.529925,PM10 Primary (Filt + Cond),TON
+37167,1.943702,PM2.5 Primary (Filt + Cond),TON
+37167,0.1521683,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,49.22336,Acetaldehyde,LB
+37161,0.00412657,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.01360624,Ammonia,TON
+37161,4.115952e-05,Chromium (VI),LB
+37161,0.5750772,Acenaphthylene,LB
+37161,0.02728304,Chrysene,LB
+37161,116.90586,Formaldehyde,LB
+37157,447.2488,Ethyl Benzene,LB
+37157,0.11665116,Benzo[b]Fluoranthene,LB
+37157,0.11665116,Benzo[k]Fluoranthene,LB
+37157,0.16086102,Benzo[a]Pyrene,LB
+37157,2.14861,Phenanthrene,LB
+37157,0.183302,Methane,TON
+37157,0.02334317,Elemental Carbon portion of PM2.5-PRI,TON
+37135,11.961948,Toluene,LB
+37135,0.005179236,"Benzo[g,h,i,]Perylene",LB
+37135,0.002927894,Benzo[k]Fluoranthene,LB
+37135,4.496346,"2,2,4-Trimethylpentane",LB
+37135,0.008734302,Arsenic,LB
+37135,2457.339,Carbon Dioxide,TON
+37135,0.2598332,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.058793,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,78.46014,Carbon Dioxide,TON
+37137,0.02483183,PM10 Primary (Filt + Cond),TON
+37137,0.08479284,Styrene,LB
+37137,0.5063506,Toluene,LB
+37137,0.3259076,Propionaldehyde,LB
+37137,0.0003002384,"Benzo[g,h,i,]Perylene",LB
+37137,0.002121312,Manganese,LB
+37137,0.04443634,Fluorene,LB
+37131,0.08285216,Toluene,LB
+37131,0.0764633,Xylenes (Mixed Isomers),LB
+37131,8.642974e-06,"Benzo[g,h,i,]Perylene",LB
+37131,2.21293e-05,Benz[a]Anthracene,LB
+37131,6.402824e-06,Mercury,LB
+37131,0.1579826,Nitrogen Oxides,TON
+37131,0.0008393088,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.0002033202,Nitrate portion of PM2.5-PRI,TON
+37129,3.936486,Acrolein,LB
+37129,0.0006748952,Mercury,LB
+37129,0.012902106,Arsenic,LB
+37129,80.01825,Carbon Monoxide,TON
+37123,9.557996,Ethyl Benzene,LB
+37123,0.006332262,"Dibenzo[a,h]Anthracene",LB
+37123,26.34292,Benzene,LB
+37123,35.0522,Nitrogen Oxides,TON
+37117,0.006269032,Benzo[k]Fluoranthene,LB
+37117,0.2941494,Chrysene,LB
+37117,0.5009052,Benz[a]Anthracene,LB
+37117,5.252714,Carbon Monoxide,TON
+37117,0.9358903,PM10-Primary from certain diesel engines,TON
+37117,0.01679753,Sulfate Portion of PM2.5-PRI,TON
+37123,846.7526,Ethyl Benzene,LB
+37123,7053.436,Toluene,LB
+37123,1247.7344,Hexane,LB
+37123,3160.206,Xylenes (Mixed Isomers),LB
+37121,2629.398,Toluene,LB
+37121,465.1258,Hexane,LB
+37105,0.1041576,Sulfate Portion of PM2.5-PRI,TON
+37105,5373.554,Hexane,LB
+37105,4709.078,"2,2,4-Trimethylpentane",LB
+37105,1.74258,Benz[a]Anthracene,LB
+37105,0.9762974,Nickel,LB
+37105,9.651772,Fluorene,LB
+37103,0.00012946024,Chromium (VI),LB
+37103,0.006131908,"Benzo[g,h,i,]Perylene",LB
+37103,0.011662876,Benzo[b]Fluoranthene,LB
+37103,2.004556,Fluoranthene,LB
+37103,48.73878,Naphthalene,LB
+37103,0.007151412,Nitrous Oxide,TON
+37095,1.991556e-08,Nitrate portion of PM2.5-PRI,TON
+37095,0.02470418,Hexane,LB
+37095,5.962292e-06,Benzo[b]Fluoranthene,LB
+37095,7.164574e-06,Benzo[a]Pyrene,LB
+37095,0.02592202,Benzene,LB
+37095,2.63262e-07,Arsenic,LB
+37095,0.00890706,Acetaldehyde,LB
+37095,2.55237e-05,Acenaphthene,LB
+37093,5.8002,Ethyl Benzene,LB
+37093,25.40256,Toluene,LB
+37093,10.01617,Toluene,LB
+37093,0.000834015,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.003857098,Fluoranthene,LB
+37093,1.9148514e-05,"Dibenzo[a,h]Anthracene",LB
+37093,2.149254,"2,2,4-Trimethylpentane",LB
+37093,0.0012686818,Manganese,LB
+37093,0.01441996,Phenanthrene,LB
+37093,0.0005316631,Organic Carbon portion of PM2.5-PRI,TON
+37089,28.83114,Benzene,LB
+37087,5.693494,Toluene,LB
+37087,0.587161,Fluoranthene,LB
+37087,0.9334942,Phenanthrene,LB
+37087,996.8877,Carbon Dioxide,TON
+37087,0.3182535,PM10 Primary (Filt + Cond),TON
+37083,0.016790098,"Benzo[g,h,i,]Perylene",LB
+37083,352.902,Formaldehyde,LB
+37083,1.889515,PM10-Primary from certain diesel engines,TON
+37083,0.08313185,Ammonia,TON
+37083,0.0326147,Sulfate Portion of PM2.5-PRI,TON
+37083,1.2872792,Propionaldehyde,LB
+37083,151.56828,Xylenes (Mixed Isomers),LB
+37083,0.19005062,"Benzo[g,h,i,]Perylene",LB
+37083,0.10367558,Fluoranthene,LB
+37083,0.03372634,Chrysene,LB
+37083,0.03699794,Benz[a]Anthracene,LB
+37083,69.41088,Benzene,LB
+37083,0.3665406,Phenanthrene,LB
+37083,0.1509079,PM10 Primary (Filt + Cond),TON
+37083,0.02189338,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,1.200817,Volatile Organic Compounds,TON
+37085,0.00019042826,Acenaphthylene,LB
+37085,0.012119218,Acetaldehyde,LB
+37085,1.392609e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.2062146,Acenaphthylene,LB
+37075,0.003198022,Benzo[a]Pyrene,LB
+37075,16.52376,Acetaldehyde,LB
+37075,0.122667,Acenaphthene,LB
+37075,0.2592572,"1,3-Butadiene",LB
+37075,0.6958514,Acrolein,LB
+37075,0.7631308,Toluene,LB
+37075,9.925156e-05,Benzo[b]Fluoranthene,LB
+37075,0.8374184,Benzene,LB
+37075,3.651012e-06,Mercury,LB
+37075,0.001327462,PM10-Primary from certain diesel engines,TON
+37075,0.0003006763,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.001261094,Ammonia,TON
+37075,0.0004955579,Sulfur Dioxide,TON
+37069,18.363462,Acrolein,LB
+37069,6.697736e-05,Chromium (VI),LB
+37069,0.0368397,Nickel,LB
+37069,0.09284878,Methane,TON
+37069,1.106753,PM10-Primary from certain diesel engines,TON
+37069,0.005803375,Nitrous Oxide,TON
+37069,0.1243443,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.03122952,Sulfate Portion of PM2.5-PRI,TON
+37053,0.01101402,PM25-Primary from certain diesel engines,TON
+37053,0.3195112,Toluene,LB
+37053,0.01777355,Anthracene,LB
+37053,0.0002143116,"Benzo[g,h,i,]Perylene",LB
+37053,0.00013996022,"Dibenzo[a,h]Anthracene",LB
+37053,0.01155865,Benz[a]Anthracene,LB
+37053,2.161176,Acetaldehyde,LB
+37153,0.7317422,"1,3-Butadiene",LB
+37153,14.794318,Toluene,LB
+37153,5.672938,Hexane,LB
+37153,0.006016014,Anthracene,LB
+37153,0.0303885,Acenaphthylene,LB
+37153,0.013276704,Manganese,LB
+37153,0.005010754,Nickel,LB
+37153,0.8099678,Nitrogen Oxides,TON
+37113,0.005126612,Benzo[k]Fluoranthene,LB
+37113,12.682328,Formaldehyde,LB
+37113,0.000216207,"Dibenzo[a,h]Anthracene",LB
+37113,0.0003129184,Mercury,LB
+37113,5.991062,Carbon Monoxide,TON
+37113,0.01052173,Nitrous Oxide,TON
+37113,0.005750559,Organic Carbon portion of PM2.5-PRI,TON
+37113,13.212522,Toluene,LB
+37097,5.682114,Benzene,LB
+37083,16.12468,Toluene,LB
+37083,5.910776,Hexane,LB
+37083,4.874564e-05,Chromium (VI),LB
+37083,0.04952035,Ammonia,TON
+37083,0.01905715,PM2.5 Primary (Filt + Cond),TON
+37169,0.0007034928,Nitrous Oxide,TON
+37169,0.0009310548,Benzo[b]Fluoranthene,LB
+37169,0.005152502,Arsenic,LB
+37169,0.2578718,Acenaphthene,LB
+37169,6.079012,Carbon Monoxide,TON
+37157,2.958212,Ethyl Benzene,LB
+37157,0.25882,Anthracene,LB
+37157,2.121266e-05,Chromium (VI),LB
+37157,0.0011781708,Benzo[k]Fluoranthene,LB
+37157,0.0011723536,"Dibenzo[a,h]Anthracene",LB
+37157,0.04345085,Methane,TON
+37157,0.02452018,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,226.7044,Acrolein,LB
+37145,39641.06,Toluene,LB
+37145,8912.212,Hexane,LB
+37145,0.8579443,Elemental Carbon portion of PM2.5-PRI,TON
+37145,7.058683,Ammonia,TON
+37145,0.08314996,Sulfate Portion of PM2.5-PRI,TON
+37199,0.002051142,"Benzo[g,h,i,]Perylene",LB
+37199,0.002454002,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,54.49824,Formaldehyde,LB
+37199,0.005139428,Nickel,LB
+37199,0.6103274,Phenanthrene,LB
+37199,0.001806014,Nitrous Oxide,TON
+37199,0.005846914,Nickel,LB
+37199,20.0294,Acetaldehyde,LB
+37199,0.0003069851,Nitrate portion of PM2.5-PRI,TON
+37199,3.689698,Acrolein,LB
+37199,0.001248458,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.004904612,Benzo[b]Fluoranthene,LB
+37193,0.11719004,Acrolein,LB
+37193,0.000980788,Anthracene,LB
+37193,2.343498,Xylenes (Mixed Isomers),LB
+37193,0.00491234,Acenaphthylene,LB
+37193,1.25058,Carbon Monoxide,TON
+37193,0.003245492,PM2.5 Primary (Filt + Cond),TON
+37193,0.1252441,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.009192612,Sulfur Dioxide,TON
+37193,2.515576,Styrene,LB
+37193,5.687934,"1,3-Butadiene",LB
+37193,0.0008129308,Benzo[k]Fluoranthene,LB
+37193,0.970328,Acenaphthylene,LB
+37193,0.03328888,"Benzo[g,h,i,]Perylene",LB
+37193,0.0125071,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.0002870752,"Dibenzo[a,h]Anthracene",LB
+37193,0.002963504,Manganese,LB
+37193,0.02479808,Acenaphthene,LB
+37193,0.01313844,PM2.5 Primary (Filt + Cond),TON
+37193,0.6576682,Volatile Organic Compounds,TON
+37185,2.297908,Benzene,LB
+37185,1.81518e-06,Mercury,LB
+37185,0.04093048,Acrolein,LB
+37185,0.0001544782,Sulfur Dioxide,TON
+37185,3.550783e-05,Sulfate Portion of PM2.5-PRI,TON
+37189,30.84854,Benzene,LB
+37189,6.222702e-05,Mercury,LB
+37189,8.107912,Hexane,LB
+37189,2.010218,PM10 Primary (Filt + Cond),TON
+37189,1.915817,Volatile Organic Compounds,TON
+37181,106.70544,Propionaldehyde,LB
+37181,2.821608,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,5.525718,Acenaphthene,LB
+37181,1.616841,Organic Carbon portion of PM2.5-PRI,TON
+37181,112.6168,Volatile Organic Compounds,TON
+37077,2.005956,Hexane,LB
+37051,0.03606222,Styrene,LB
+37051,0.003541424,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.006861292,Manganese,LB
+37051,0.0001927516,Sulfate Portion of PM2.5-PRI,TON
+37041,0.0018201094,Benzo[b]Fluoranthene,LB
+37041,0.0016037808,Benz[a]Anthracene,LB
+37041,0.1104588,Naphthalene,LB
+37041,209.1927,Carbon Dioxide,TON
+37041,0.004175658,Nitrous Oxide,TON
+37041,0.00120582,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,6.138434e-06,Chromium (VI),LB
+37031,0.0011765204,Arsenic,LB
+37031,0.005255466,Ammonia,TON
+37097,6.558054,Toluene,LB
+37097,0.002284124,Anthracene,LB
+37097,3.901598e-05,Chromium (VI),LB
+37097,7.792676,Benzene,LB
+37097,0.012381706,Manganese,LB
+37097,27.4294,Acetaldehyde,LB
+37097,0.01658614,Sulfur Dioxide,TON
+37097,0.192371,Volatile Organic Compounds,TON
+37089,0.0007604596,Mercury,LB
+37089,0.01966169,Fluorene,LB
+37089,0.001034903,Sulfate Portion of PM2.5-PRI,TON
+37089,0.008829458,Chrysene,LB
+37089,0.02188556,Benzo[a]Pyrene,LB
+37089,10.405126,"2,2,4-Trimethylpentane",LB
+37169,0.11139866,Benzo[a]Pyrene,LB
+37169,0.004622472,"Dibenzo[a,h]Anthracene",LB
+37169,0.3889984,Benz[a]Anthracene,LB
+37169,99.50654,Acetaldehyde,LB
+37169,19.306112,Toluene,LB
+37169,0.6665646,Anthracene,LB
+37169,20.8016,Xylenes (Mixed Isomers),LB
+37169,0.00198395,Nitrate portion of PM2.5-PRI,TON
+37165,0.016669978,Benzo[k]Fluoranthene,LB
+37165,0.02685494,Benzo[a]Pyrene,LB
+37165,0.019479308,Manganese,LB
+37165,1108.968,Carbon Dioxide,TON
+37165,0.04356779,Ammonia,TON
+37163,0.0003022476,Benzo[k]Fluoranthene,LB
+37163,2.24213e-06,Mercury,LB
+37163,0.02701618,PM2.5 Primary (Filt + Cond),TON
+37155,41.05698,Ethyl Benzene,LB
+37155,6.335931,Volatile Organic Compounds,TON
+37157,0.002757946,"Benzo[g,h,i,]Perylene",LB
+37157,0.0264573,Manganese,LB
+37157,4.558382e-05,Mercury,LB
+37157,0.009531092,Arsenic,LB
+37157,82.42948,Acetaldehyde,LB
+37157,0.0335171,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.5603904,Methane,TON
+37157,35.4364,Styrene,LB
+37157,13.612352,Acenaphthylene,LB
+37157,0.11221876,"Benzo[g,h,i,]Perylene",LB
+37157,31.18354,Acetaldehyde,LB
+37157,0.08217391,Methane,TON
+37157,0.0001322874,Nitrate portion of PM2.5-PRI,TON
+37157,0.05093924,PM2.5 Primary (Filt + Cond),TON
+37147,0.07535684,Benz[a]Anthracene,LB
+37147,2.86735,Benzene,LB
+37147,0.0004162183,Nitrate portion of PM2.5-PRI,TON
+37135,17.249112,Toluene,LB
+37135,6.40791,Hexane,LB
+37119,148.92262,Fluoranthene,LB
+37119,48.7204,Benzo[a]Pyrene,LB
+37119,32.81552,Benz[a]Anthracene,LB
+37119,16.129606,Nickel,LB
+37119,74.28817,Methane,TON
+37119,147.7092,Ammonia,TON
+37119,281.3158,PM10 Primary (Filt + Cond),TON
+37119,55.00599,Sulfur Dioxide,TON
+37117,1.666133e-07,Nitrate portion of PM2.5-PRI,TON
+37117,3.056529e-05,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.06689022,Ethyl Benzene,LB
+37117,0.0002320938,Fluorene,LB
+37107,0.881496,Hexane,LB
+37107,0.3520598,Pyrene,LB
+37107,0.0016347894,"Benzo[g,h,i,]Perylene",LB
+37107,0.008213336,Benzo[b]Fluoranthene,LB
+37107,14.822318,Acetaldehyde,LB
+37107,0.4232456,Phenanthrene,LB
+37107,0.001200742,Nitrous Oxide,TON
+37107,0.09301342,PM2.5 Primary (Filt + Cond),TON
+37107,0.003553589,Sulfur Dioxide,TON
+37097,146.29704,Toluene,LB
+37097,0.008293938,Manganese,LB
+37085,1.2164726,Acrolein,LB
+37085,0.05411366,Anthracene,LB
+37085,1.000905,Xylenes (Mixed Isomers),LB
+37085,3.10595e-06,Chromium (VI),LB
+37085,0.0004263132,Benzo[k]Fluoranthene,LB
+37085,1.4495582,Benzene,LB
+37085,0.03464707,PM25-Primary from certain diesel engines,TON
+37085,0.01394453,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.03586081,PM2.5 Primary (Filt + Cond),TON
+37143,178.35176,"1,3-Butadiene",LB
+37143,0.5044062,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,1029.5424,"2,2,4-Trimethylpentane",LB
+37143,6.142936,Phenanthrene,LB
+37137,0.2108544,Hexane,LB
+37137,0.0004478224,"Benzo[g,h,i,]Perylene",LB
+37137,0.00010287774,Benzo[b]Fluoranthene,LB
+37137,0.0003362114,Fluoranthene,LB
+37137,0.00010287774,Benzo[k]Fluoranthene,LB
+37137,0.0001635399,PM2.5 Primary (Filt + Cond),TON
+37137,0.004359033,Volatile Organic Compounds,TON
+37133,37.1315,Propionaldehyde,LB
+37133,0.0003643372,Chromium (VI),LB
+37133,0.03506204,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.01935178,Benzo[k]Fluoranthene,LB
+37133,1.5232604,Benz[a]Anthracene,LB
+37133,87.15328,Naphthalene,LB
+37133,5.24705,PM10 Primary (Filt + Cond),TON
+37133,0.4178938,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,334.8448,Toluene,LB
+37127,0.03904074,Benzo[b]Fluoranthene,LB
+37127,0.18805848,Fluorene,LB
+37127,0.07459153,PM2.5 Primary (Filt + Cond),TON
+37127,0.02448058,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,2.048658,Pyrene,LB
+37117,0.008607032,Nitrous Oxide,TON
+37117,0.05448614,Sulfate Portion of PM2.5-PRI,TON
+37115,0.0007574238,Benzo[k]Fluoranthene,LB
+37115,0.3106992,Acenaphthylene,LB
+37115,1.2325462,"2,2,4-Trimethylpentane",LB
+37115,0.3452772,Fluorene,LB
+37115,0.001985448,Sulfate Portion of PM2.5-PRI,TON
+37097,6.458739,PM25-Primary from certain diesel engines,TON
+37097,19.163702,Styrene,LB
+37097,0.0006491516,Chromium (VI),LB
+37097,1.9734662,Chrysene,LB
+37097,49.1937,"2,2,4-Trimethylpentane",LB
+37097,152.137,Benzene,LB
+37097,0.0008037696,Mercury,LB
+37105,2.595916,Acenaphthylene,LB
+37105,197.88846,Acetaldehyde,LB
+37105,0.1397214,Organic Carbon portion of PM2.5-PRI,TON
+37079,5.198968,Ethyl Benzene,LB
+37079,19.608516,Xylenes (Mixed Isomers),LB
+37079,6.579022,Benzene,LB
+37073,0.03133296,Anthracene,LB
+37073,0.000298124,Benzo[k]Fluoranthene,LB
+37073,0.001370416,Nickel,LB
+37073,0.02521603,PM10-Primary from certain diesel engines,TON
+37073,4.527154e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.00017763066,Benzo[b]Fluoranthene,LB
+37073,0.0005949306,Benzo[a]Pyrene,LB
+37073,0.007727904,Benz[a]Anthracene,LB
+37073,0.1250198,Nitrogen Oxides,TON
+37073,0.0008194062,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,15.133778,"1,3-Butadiene",LB
+37077,40.21506,Acrolein,LB
+37077,1.5682076,Anthracene,LB
+37077,0.08198326,Benzo[b]Fluoranthene,LB
+37077,22376.92,Carbon Dioxide,TON
+37077,0.3247181,Ammonia,TON
+37053,47.9056,Formaldehyde,LB
+37053,0.01801339,Benzo[a]Pyrene,LB
+37053,0.00691044,Nickel,LB
+37053,0.1022751,PM25-Primary from certain diesel engines,TON
+37053,0.1499957,PM10 Primary (Filt + Cond),TON
+37053,3.855692,Acrolein,LB
+37053,2.63099,Propionaldehyde,LB
+37053,0.2879884,Fluoranthene,LB
+37061,6.204246,Benzo[a]Pyrene,LB
+37061,12715.034,"2,2,4-Trimethylpentane",LB
+37061,1.364027,Nickel,LB
+37061,2.091396,Arsenic,LB
+37061,18.344388,Acenaphthene,LB
+37061,10.25843,Methane,TON
+37061,1.711014,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.00777024,Nickel,LB
+37049,106.89704,Hexane,LB
+37049,6.216328e-05,Chromium (VI),LB
+37049,0.16508902,Fluoranthene,LB
+37049,0.05536412,Benzo[a]Pyrene,LB
+37047,56.9425,Acrolein,LB
+37047,5.523998,Fluoranthene,LB
+37047,1.042342,Chrysene,LB
+37047,739.3022,Formaldehyde,LB
+37047,0.04910752,Arsenic,LB
+37047,5.066456,Fluorene,LB
+37039,0.0004139821,Sulfur Dioxide,TON
+37039,0.0014212028,Manganese,LB
+37043,2223.7,Xylenes (Mixed Isomers),LB
+37043,0.000918808,Chromium (VI),LB
+37043,0.009294364,"Dibenzo[a,h]Anthracene",LB
+37043,0.4223044,Methane,TON
+37033,0.2286854,Acrolein,LB
+37033,0.0009553224,Manganese,LB
+37033,0.0002075568,Acenaphthene,LB
+37033,0.4141128,Methane,TON
+37033,0.6029076,Carbon Monoxide,TON
+37033,7.705732e-07,Nitrate portion of PM2.5-PRI,TON
+37033,0.005019736,Manganese,LB
+37033,0.0011175588,Arsenic,LB
+37033,8.361772,Acetaldehyde,LB
+37033,0.05722091,PM2.5 Primary (Filt + Cond),TON
+37033,0.2757276,Styrene,LB
+37033,1.2824364,Xylenes (Mixed Isomers),LB
+37033,0.10636244,Acenaphthylene,LB
+37029,2.620712,Hexane,LB
+37029,3.044e-05,Chromium (VI),LB
+37029,0.0211968,Benzo[b]Fluoranthene,LB
+37029,0.014656594,Nickel,LB
+37029,11.031282,Naphthalene,LB
+37029,0.01134058,Sulfate Portion of PM2.5-PRI,TON
+37027,2.49916,Styrene,LB
+37027,0.07241786,"Benzo[g,h,i,]Perylene",LB
+37027,0.02505556,Benz[a]Anthracene,LB
+37027,0.214919,Fluorene,LB
+37027,41.93414,Carbon Monoxide,TON
+37027,2.907453,Nitrogen Oxides,TON
+37129,284.8582,Styrene,LB
+37129,0.02015746,Chromium (VI),LB
+37129,15.951634,"Benzo[g,h,i,]Perylene",LB
+37129,5.993292,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,56.46028,Acenaphthylene,LB
+37129,3.86358,Arsenic,LB
+37129,278.822,Nitrogen Oxides,TON
+37021,1.9291004,Toluene,LB
+37021,0.006386572,Benzo[b]Fluoranthene,LB
+37021,0.0008730984,Benzo[k]Fluoranthene,LB
+37021,0.04191722,Chrysene,LB
+37021,30.31442,Formaldehyde,LB
+37021,0.005781292,Manganese,LB
+37021,0.0008781376,Arsenic,LB
+37021,217.0402,Carbon Dioxide,TON
+37021,0.02838989,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.0005107007,Nitrous Oxide,TON
+37021,0.01232926,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.001890124,Sulfur Dioxide,TON
+37055,5.654562,Acetaldehyde,LB
+37055,0.0014236672,Naphthalene,LB
+37055,0.002432219,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.18637408,Xylenes (Mixed Isomers),LB
+37055,0.2042166,Benzene,LB
+37151,127115.68,Toluene,LB
+37151,62.5847,Pyrene,LB
+37151,35.23144,"Benzo[g,h,i,]Perylene",LB
+37151,171.51344,Acenaphthylene,LB
+37151,11790.116,Formaldehyde,LB
+37151,13.298022,Benzo[a]Pyrene,LB
+37139,371.9188,Ethyl Benzene,LB
+37139,0.9219838,Fluoranthene,LB
+37139,0.15529568,Benzo[k]Fluoranthene,LB
+37139,0.003881098,Mercury,LB
+37139,0.07420454,Arsenic,LB
+37139,0.7127785,PM10 Primary (Filt + Cond),TON
+37101,0.008828384,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.02639898,Anthracene,LB
+37101,1.1625456e-05,Chromium (VI),LB
+37101,0.0006531076,"Dibenzo[a,h]Anthracene",LB
+37101,0.0014531532,Nickel,LB
+37101,0.05966075,PM10 Primary (Filt + Cond),TON
+37117,0.003473818,"Dibenzo[a,h]Anthracene",LB
+37117,0.0634544,Arsenic,LB
+37117,0.05277214,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.1252467,Sulfur Dioxide,TON
+37189,0.0012916534,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.000521746,Chrysene,LB
+37189,2.965652e-05,"Dibenzo[a,h]Anthracene",LB
+37189,0.007475887,PM10 Primary (Filt + Cond),TON
+37185,3.678658,Toluene,LB
+37185,0.012651634,Benzo[b]Fluoranthene,LB
+37185,0.3222702,Acenaphthylene,LB
+37185,0.0017272024,"Dibenzo[a,h]Anthracene",LB
+37185,0.01735871,Methane,TON
+37185,0.3343607,Volatile Organic Compounds,TON
+37169,0.2417826,Acenaphthene,LB
+37169,0.001633008,Nitrous Oxide,TON
+37169,0.19997292,Anthracene,LB
+37127,2.209892,Acenaphthylene,LB
+37127,3171.849,Carbon Dioxide,TON
+37127,0.0006748065,Nitrate portion of PM2.5-PRI,TON
+37127,0.2309678,PM2.5 Primary (Filt + Cond),TON
+37133,276.4836,Carbon Dioxide,TON
+37133,0.3173784,Nitrogen Oxides,TON
+37133,0.04039208,Ethyl Benzene,LB
+37133,0.00010118368,Fluoranthene,LB
+37133,0.009497254,"Dibenzo[a,h]Anthracene",LB
+37133,397.3048,Acetaldehyde,LB
+37133,59.06476,Naphthalene,LB
+37133,31.71657,Nitrogen Oxides,TON
+37127,25.22332,Toluene,LB
+37127,8.796232,Hexane,LB
+37127,0.0001142772,Mercury,LB
+37127,3.038156,Phenanthrene,LB
+37127,2.19209,"1,3-Butadiene",LB
+37127,0.015206292,Anthracene,LB
+37127,0.008097308,Benzo[b]Fluoranthene,LB
+37127,5.58948,Formaldehyde,LB
+37127,0.0003038112,"Dibenzo[a,h]Anthracene",LB
+37127,18.803148,Benzene,LB
+37127,0.00339483,Manganese,LB
+37127,5.610802,Acetaldehyde,LB
+37127,0.005244165,Nitrous Oxide,TON
+37127,0.01401896,PM2.5 Primary (Filt + Cond),TON
+37127,0.0002900046,"Benzo[g,h,i,]Perylene",LB
+37127,7.700366e-05,Chrysene,LB
+37127,1.7712786e-06,Nickel,LB
+37127,0.08575829,Carbon Monoxide,TON
+37127,0.5262647,Carbon Dioxide,TON
+37127,0.000109958,PM2.5 Primary (Filt + Cond),TON
+37127,0.004924466,Volatile Organic Compounds,TON
+37127,0.00655436,Styrene,LB
+37127,0.004246824,Acrolein,LB
+37127,0.0002307958,Anthracene,LB
+37127,1.416975e-08,Chromium (VI),LB
+37121,0.0008792748,Benzo[b]Fluoranthene,LB
+37121,0.4041412,Benzene,LB
+37121,0.00192643,Manganese,LB
+37121,0.0007336538,Nickel,LB
+37121,0.002352765,Methane,TON
+37121,0.01831,PM25-Primary from certain diesel engines,TON
+37121,0.0008615261,Sulfur Dioxide,TON
+37117,0.0004665968,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.00178799,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.005254015,PM2.5 Primary (Filt + Cond),TON
+37117,0.2087648,Toluene,LB
+37111,0.05898198,Acrolein,LB
+37111,8.212308,Xylenes (Mixed Isomers),LB
+37111,0.0013179956,Benzo[k]Fluoranthene,LB
+37111,0.016607188,Acenaphthylene,LB
+37111,0.0012733168,Benz[a]Anthracene,LB
+37111,0.0002085084,Manganese,LB
+37111,0.0003084642,Ammonia,TON
+37111,0.08671972,Nitrogen Oxides,TON
+37111,0.000457931,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.003548556,Benzo[a]Pyrene,LB
+37125,25.13196,"2,2,4-Trimethylpentane",LB
+37125,5.481886,Acetaldehyde,LB
+37125,0.08396236,Phenanthrene,LB
+37125,0.3029994,Propionaldehyde,LB
+37125,0.003232188,Benzo[b]Fluoranthene,LB
+37123,3099.93,Hexane,LB
+37123,57.89948,Propionaldehyde,LB
+37123,0.9604614,Chrysene,LB
+37123,3.001482,Acenaphthene,LB
+37123,746.8643,Carbon Monoxide,TON
+37123,83.34616,Nitrogen Oxides,TON
+37123,0.4450952,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.014178744,Manganese,LB
+37107,0.04906682,Nitrous Oxide,TON
+37107,0.008069568,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,5.538222e-05,Chrysene,LB
+37103,3.258333e-05,Sulfate Portion of PM2.5-PRI,TON
+37097,0.06181218,"1,3-Butadiene",LB
+37097,0.8859358,Xylenes (Mixed Isomers),LB
+37097,155.92122,Formaldehyde,LB
+37097,0.6283684,Benzene,LB
+37097,0.009997492,Manganese,LB
+37097,0.0011652408,Arsenic,LB
+37097,22.64242,Acetaldehyde,LB
+37097,0.03573469,Nitrous Oxide,TON
+37097,0.001607915,Sulfur Dioxide,TON
+37091,8.44395,Styrene,LB
+37091,0.5906608,Pyrene,LB
+37091,0.1118192,Benzo[a]Pyrene,LB
+37091,0.3569372,Acenaphthene,LB
+37089,3.789194,Acenaphthylene,LB
+37089,0.559365,Benzo[a]Pyrene,LB
+37089,88.57802,Naphthalene,LB
+37089,22.48498,"1,3-Butadiene",LB
+37089,21.80246,Hexane,LB
+37089,26705.18,Carbon Dioxide,TON
+37089,0.4021259,Ammonia,TON
+37087,21.86006,Hexane,LB
+37087,0.04158206,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,76.68056,Benzene,LB
+37087,360.868,Acetaldehyde,LB
+37087,0.4426511,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.004630532,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,1.8297924,"2,2,4-Trimethylpentane",LB
+37073,0.003262804,Arsenic,LB
+37073,0.3520955,PM25-Primary from certain diesel engines,TON
+37073,0.001501218,Nitrous Oxide,TON
+37073,8.120342,Nitrogen Oxides,TON
+37073,0.4541262,Volatile Organic Compounds,TON
+37073,0.02508954,Pyrene,LB
+37073,5.651784e-06,Chromium (VI),LB
+37073,0.004860096,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.02198312,Fluoranthene,LB
+37073,0.0010832848,Arsenic,LB
+37073,0.000146723,Sulfate Portion of PM2.5-PRI,TON
+37067,3.069192,Fluorene,LB
+37067,66.29826,Naphthalene,LB
+37067,0.006917645,Nitrous Oxide,TON
+37067,20.7148,Ethyl Benzene,LB
+37067,17.662062,"1,3-Butadiene",LB
+37067,15.975288,Hexane,LB
+37059,16.244636,Ethyl Benzene,LB
+37059,37.23812,Acrolein,LB
+37059,12.470806,Hexane,LB
+37059,0.569545,Chrysene,LB
+37059,0.2911142,Benzo[a]Pyrene,LB
+37059,5.485768,Phenanthrene,LB
+37059,0.224696,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.1179868,Sulfate Portion of PM2.5-PRI,TON
+37057,0.6285252,Anthracene,LB
+37057,6.090508,"2,2,4-Trimethylpentane",LB
+37057,1.300751,Fluorene,LB
+37057,0.3811927,PM25-Primary from certain diesel engines,TON
+37057,0.008844596,Nitrous Oxide,TON
+37057,14.81375,Nitrogen Oxides,TON
+37051,13.78739,PM2.5 Primary (Filt + Cond),TON
+37051,1.851294,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,166.28794,Ethyl Benzene,LB
+37051,550.814,Toluene,LB
+37051,0.10825936,"Benzo[g,h,i,]Perylene",LB
+37051,20.7909,Fluorene,LB
+37051,7.736358,Elemental Carbon portion of PM2.5-PRI,TON
+37049,13.461436,Hexane,LB
+37049,0.014564404,Benzo[k]Fluoranthene,LB
+37049,0.35513,Benzo[a]Pyrene,LB
+37049,1.1589578,Benz[a]Anthracene,LB
+37049,2.816845,Volatile Organic Compounds,TON
+37039,0.02301328,Sulfate Portion of PM2.5-PRI,TON
+37039,0.7234799,PM25-Primary from certain diesel engines,TON
+37039,0.01360855,Nitrous Oxide,TON
+37039,0.1835259,Ammonia,TON
+37031,0.1121225,Benzo[a]Pyrene,LB
+37031,452.1546,Benzene,LB
+37031,71.8469,Acetaldehyde,LB
+37031,17.007084,Naphthalene,LB
+37031,7.186746,Styrene,LB
+37031,0.2795856,Anthracene,LB
+37025,0.00343258,"Dibenzo[a,h]Anthracene",LB
+37025,21.1808,Benzene,LB
+37025,0.011003814,Arsenic,LB
+37025,0.488252,PM10-Primary from certain diesel engines,TON
+37025,0.02386763,Sulfate Portion of PM2.5-PRI,TON
+37085,7.265324e-05,Chromium (VI),LB
+37085,2.344344,Phenanthrene,LB
+37085,1.4562592,Fluorene,LB
+37085,0.3811607,PM10 Primary (Filt + Cond),TON
+37085,0.2743257,PM2.5 Primary (Filt + Cond),TON
+37085,4543.36,"2,2,4-Trimethylpentane",LB
+37075,0.0002083342,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.0310306,Nitrogen Oxides,TON
+37075,0.0008953907,PM10 Primary (Filt + Cond),TON
+37075,5.17594e-05,Sulfur Dioxide,TON
+37075,0.04659744,Styrene,LB
+37075,0.0006506098,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.0005042444,Benzo[b]Fluoranthene,LB
+37075,0.00872412,Acenaphthylene,LB
+37075,0.614101,Formaldehyde,LB
+37063,2.573966,Pyrene,LB
+37063,0.0384324,Benzo[b]Fluoranthene,LB
+37063,0.15624616,Manganese,LB
+37063,0.7916687,PM10-Primary from certain diesel engines,TON
+37063,0.7283266,PM25-Primary from certain diesel engines,TON
+37063,0.009823161,Nitrous Oxide,TON
+37063,25.77399,Nitrogen Oxides,TON
+37063,0.118688,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.04234103,Sulfur Dioxide,TON
+37059,1.3538282e-05,Mercury,LB
+37059,0.002830716,Arsenic,LB
+37059,0.154949,Anthracene,LB
+37061,0.0312795,Ethyl Benzene,LB
+37061,2.961518e-08,Chromium (VI),LB
+37061,0.17298374,Benzene,LB
+37061,0.4663719,Methane,TON
+37061,0.002192852,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.06710008,Styrene,LB
+37055,0.00235167,Anthracene,LB
+37055,0.004566076,Pyrene,LB
+37055,0.0006881602,Benzo[k]Fluoranthene,LB
+37055,0.8938568,Formaldehyde,LB
+37055,0.0008640006,Benzo[a]Pyrene,LB
+37055,0.7664603,Carbon Monoxide,TON
+37055,0.001756894,PM10 Primary (Filt + Cond),TON
+37053,1.3779544,Toluene,LB
+37053,0.00019490026,Benzo[b]Fluoranthene,LB
+37053,0.0005770042,Fluoranthene,LB
+37053,0.1231923,Formaldehyde,LB
+37053,7.52532e-06,"Dibenzo[a,h]Anthracene",LB
+37053,9.277068e-07,Nitrate portion of PM2.5-PRI,TON
+37047,18.873998,Ethyl Benzene,LB
+37047,56.73828,"2,2,4-Trimethylpentane",LB
+37039,2.329084,Acetaldehyde,LB
+37039,0.0389758,Phenanthrene,LB
+37039,0.002558582,Ammonia,TON
+37033,0.0001553504,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.002777554,PM10 Primary (Filt + Cond),TON
+37033,2.91699e-05,Sulfate Portion of PM2.5-PRI,TON
+37023,0.006875562,Benzo[b]Fluoranthene,LB
+37023,0.0009541582,Benzo[k]Fluoranthene,LB
+37023,1.0277472,Acenaphthylene,LB
+37023,0.02304654,Benzo[a]Pyrene,LB
+37023,0.0009487688,"Dibenzo[a,h]Anthracene",LB
+37023,17.960334,Benzene,LB
+37023,0.211026,PM10-Primary from certain diesel engines,TON
+37023,0.194141,PM25-Primary from certain diesel engines,TON
+37023,0.0358691,Organic Carbon portion of PM2.5-PRI,TON
+37023,46.41956,Phenanthrene,LB
+37023,4.280002,Methane,TON
+37023,0.01703645,Nitrate portion of PM2.5-PRI,TON
+37023,0.1853442,Sulfate Portion of PM2.5-PRI,TON
+37023,198.5357,Styrene,LB
+37023,38447.64,Toluene,LB
+37023,9180.414,Hexane,LB
+37023,8884.684,Benzene,LB
+37023,4.15418,Manganese,LB
+37173,0.2369118,Nickel,LB
+37173,1.4396284,Acenaphthene,LB
+37173,0.7564696,Methane,TON
+37173,41.35202,Nitrogen Oxides,TON
+37173,0.4659234,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.5328386,Sulfur Dioxide,TON
+37173,949.1844,Ethyl Benzene,LB
+37173,2.443726,Pyrene,LB
+37173,3506.23,Xylenes (Mixed Isomers),LB
+37173,0.0018953098,Chromium (VI),LB
+37173,2.144,Fluoranthene,LB
+37173,424.0412,Formaldehyde,LB
+37167,349.1118,Propionaldehyde,LB
+37167,24.53724,Fluoranthene,LB
+37167,77.06106,Acenaphthylene,LB
+37167,4.28976,Chrysene,LB
+37167,0.11928634,"Dibenzo[a,h]Anthracene",LB
+37167,4.332954,Benz[a]Anthracene,LB
+37167,3453.754,Carbon Monoxide,TON
+37167,1.309693,Elemental Carbon portion of PM2.5-PRI,TON
+37159,3.459474,Xylenes (Mixed Isomers),LB
+37159,42.11178,Formaldehyde,LB
+37159,0.01076209,Sulfur Dioxide,TON
+37155,0.02047462,"1,3-Butadiene",LB
+37155,1.3610868,Propionaldehyde,LB
+37155,0.0006125318,Pyrene,LB
+37155,1.5790612e-06,Nickel,LB
+37155,0.0003631872,Arsenic,LB
+37155,0.0004529566,Fluorene,LB
+37155,0.4758344,Methane,TON
+37155,103.3931,Carbon Dioxide,TON
+37155,0.01279118,PM10 Primary (Filt + Cond),TON
+37155,0.003347031,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.02222824,Benzo[b]Fluoranthene,LB
+37149,6.806112,Fluorene,LB
+37149,27.84041,Nitrogen Oxides,TON
+37149,1.111016,PM2.5 Primary (Filt + Cond),TON
+37149,0.05181861,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,5.295026,Ethyl Benzene,LB
+37161,1.5851124,Pyrene,LB
+37161,69.0742,Acetaldehyde,LB
+37161,1.1145954,Fluorene,LB
+37161,0.1546943,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.0003702768,Manganese,LB
+37137,7.79168e-05,Nickel,LB
+37137,0.0001194772,Arsenic,LB
+37137,0.000973794,"Benzo[g,h,i,]Perylene",LB
+37137,0.0002804842,Chrysene,LB
+37131,0.9983652,Styrene,LB
+37131,158.54428,Toluene,LB
+37131,19.81496,Carbon Monoxide,TON
+37131,0.0856792,PM10 Primary (Filt + Cond),TON
+37117,823.306,Toluene,LB
+37117,446.477,Xylenes (Mixed Isomers),LB
+37117,861.7398,Carbon Dioxide,TON
+37117,0.1107332,Ammonia,TON
+37117,0.02887943,Organic Carbon portion of PM2.5-PRI,TON
+37107,35.5155,Ethyl Benzene,LB
+37107,0.0002399878,Chromium (VI),LB
+37107,0.009096828,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.00492238,Benzo[k]Fluoranthene,LB
+37107,6.27978,Acenaphthylene,LB
+37107,102.64832,Benzene,LB
+37107,0.08599603,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,6.427059,Volatile Organic Compounds,TON
+37107,5.614298,Hexane,LB
+37107,13.451076,Xylenes (Mixed Isomers),LB
+37107,0.005464176,"Benzo[g,h,i,]Perylene",LB
+37107,0.002052946,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.002059758,Benzo[a]Pyrene,LB
+37107,0.0006051168,Arsenic,LB
+37107,0.00547283,Acenaphthene,LB
+37107,0.2841638,Naphthalene,LB
+37107,110.5475,Carbon Dioxide,TON
+37107,0.005068604,Ammonia,TON
+37107,0.001234724,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.002316976,Sulfur Dioxide,TON
+37105,294.952,Benzene,LB
+37099,1.7420878,Phenanthrene,LB
+37099,21.25076,Naphthalene,LB
+37099,0.004136028,Nitrous Oxide,TON
+37099,15.285992,Acrolein,LB
+37099,13.234342,Toluene,LB
+37099,1.087735,Pyrene,LB
+37099,0.8809376,Fluoranthene,LB
+37093,0.240664,"2,2,4-Trimethylpentane",LB
+37093,0.02268226,Benz[a]Anthracene,LB
+37093,0.02394649,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.0001251906,Nitrate portion of PM2.5-PRI,TON
+37093,0.002071491,Sulfate Portion of PM2.5-PRI,TON
+37087,47.21276,Fluorene,LB
+37087,0.0343739,Nitrate portion of PM2.5-PRI,TON
+37087,748.232,Nitrogen Oxides,TON
+37085,2.203864,Styrene,LB
+37085,44.20429,Carbon Monoxide,TON
+37085,4.177426,Nitrogen Oxides,TON
+37085,0.1801089,PM10 Primary (Filt + Cond),TON
+37081,0.011955074,Benz[a]Anthracene,LB
+37081,0.8074768,Propionaldehyde,LB
+37081,0.012161902,Benzo[k]Fluoranthene,LB
+37081,0.000265286,Nickel,LB
+37081,4.991669e-05,Nitrate portion of PM2.5-PRI,TON
+37081,0.0004374467,Sulfate Portion of PM2.5-PRI,TON
+37075,0.05661666,Xylenes (Mixed Isomers),LB
+37075,8.362942e-09,Chromium (VI),LB
+37075,5.869302e-06,"Benzo[g,h,i,]Perylene",LB
+37075,0.0004445242,Manganese,LB
+37075,0.005547241,Nitrous Oxide,TON
+37075,3.013988e-05,"Benzo[g,h,i,]Perylene",LB
+37075,0.005254256,Fluoranthene,LB
+37075,0.00014441648,Manganese,LB
+37075,0.0003860197,Methane,TON
+37075,1.798334e-05,Nitrous Oxide,TON
+37075,5.013073e-05,Sulfur Dioxide,TON
+37049,0.6144468,"2,2,4-Trimethylpentane",LB
+37035,0.016371568,Anthracene,LB
+37035,0.03040012,Fluoranthene,LB
+37035,47.24852,Benzene,LB
+37035,0.9171628,Naphthalene,LB
+37035,2401.089,Carbon Dioxide,TON
+37035,0.1981334,PM10 Primary (Filt + Cond),TON
+37007,3.425474,Xylenes (Mixed Isomers),LB
+37115,0.0005726304,Manganese,LB
+37115,0.0002616526,Acenaphthene,LB
+37115,0.013637484,Naphthalene,LB
+37115,0.01881101,Volatile Organic Compounds,TON
+37115,0.0002397858,Anthracene,LB
+37115,0.0004387176,Fluoranthene,LB
+37115,0.00019693064,Chrysene,LB
+37169,1.106049e-06,Chromium (VI),LB
+37169,0.3442388,Toluene,LB
+37169,9.246684e-07,Mercury,LB
+37169,5.908587e-05,Nitrate portion of PM2.5-PRI,TON
+37169,0.01543018,PM10 Primary (Filt + Cond),TON
+37167,7.71057,Acrolein,LB
+37167,2.579058,Hexane,LB
+37167,0.2407582,Anthracene,LB
+37167,0.00016240446,Benzo[k]Fluoranthene,LB
+37167,0.00387698,Benzo[a]Pyrene,LB
+37167,0.01840314,Nickel,LB
+37167,10.846936,Naphthalene,LB
+37167,0.01384243,PM25-Primary from certain diesel engines,TON
+37167,0.01855184,PM2.5 Primary (Filt + Cond),TON
+37167,0.5522234,Volatile Organic Compounds,TON
+37021,0.06276348,Acrolein,LB
+37021,9.627504e-05,Fluoranthene,LB
+37021,0.00015248206,Acenaphthylene,LB
+37021,1.467503e-05,Benz[a]Anthracene,LB
+37021,0.0001407629,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.0009965538,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.00640401,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.028798,Nickel,LB
+37011,0.01398312,Arsenic,LB
+37011,68.02276,Acetaldehyde,LB
+37011,17.2395,Nitrogen Oxides,TON
+37011,0.04201745,Sulfur Dioxide,TON
+37009,1.056036,Propionaldehyde,LB
+37009,1.5288396e-05,"Benzo[g,h,i,]Perylene",LB
+37009,0.0002418742,Fluoranthene,LB
+37009,7.348178e-05,Chrysene,LB
+37009,0.0007552248,Phenanthrene,LB
+37009,0.0003415492,Fluorene,LB
+37009,0.0003913358,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.0620618,Acrolein,LB
+37005,0.06220036,Toluene,LB
+37069,1.4829474,Benzene,LB
+37155,14.34014,Hexane,LB
+37155,0.015664798,Anthracene,LB
+37155,33.59406,Xylenes (Mixed Isomers),LB
+37155,0.03347182,Fluorene,LB
+37155,0.02610127,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.01099761,Ammonia,TON
+37135,0.002026696,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.001730812,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,2.481172,Toluene,LB
+37135,0.001193846,Chrysene,LB
+37135,0.003080714,Benzo[a]Pyrene,LB
+37121,0.0226489,Acrolein,LB
+37121,1.015367e-06,Nitrate portion of PM2.5-PRI,TON
+37121,0.001261933,PM10 Primary (Filt + Cond),TON
+37121,1.058427e-05,Sulfate Portion of PM2.5-PRI,TON
+37121,0.0002984758,Benzo[a]Pyrene,LB
+37121,0.0001795424,Nickel,LB
+37121,8.78424e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37007,73.5776,Formaldehyde,LB
+37007,0.00836935,Nickel,LB
+37007,0.00210599,Arsenic,LB
+37007,0.9169626,Phenanthrene,LB
+37007,0.5348058,Fluorene,LB
+37007,0.02518371,Methane,TON
+37007,0.001009355,Nitrate portion of PM2.5-PRI,TON
+37007,0.03263662,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,2.418808,"1,3-Butadiene",LB
+37189,14.804982,Acenaphthylene,LB
+37189,1211.282,Acetaldehyde,LB
+37189,3.24696,Acenaphthene,LB
+37189,1.679605,Methane,TON
+37189,0.9577502,Organic Carbon portion of PM2.5-PRI,TON
+37189,6.124748,PM10 Primary (Filt + Cond),TON
+37189,2.121366,PM2.5 Primary (Filt + Cond),TON
+37189,0.6783036,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,2090.028,Ethyl Benzene,LB
+37189,60.99054,Propionaldehyde,LB
+37179,0.02186634,Benzo[k]Fluoranthene,LB
+37179,0.04067022,Benzo[a]Pyrene,LB
+37179,0.02773294,Organic Carbon portion of PM2.5-PRI,TON
+37179,2.045954,Anthracene,LB
+37179,64.15848,Xylenes (Mixed Isomers),LB
+37179,0.31122,Chrysene,LB
+37179,0.10434064,Benzo[a]Pyrene,LB
+37179,0.13297146,Manganese,LB
+37179,0.8303185,PM10-Primary from certain diesel engines,TON
+37179,0.00205312,Nitrate portion of PM2.5-PRI,TON
+37179,16.68503,Nitrogen Oxides,TON
+37091,524.963,Ethyl Benzene,LB
+37091,1023.0694,"2,2,4-Trimethylpentane",LB
+37087,0.2557612,Toluene,LB
+37087,0.0003408352,Fluoranthene,LB
+37087,1.5930536e-06,Nickel,LB
+37087,0.000219991,Acenaphthene,LB
+37087,0.522559,Methane,TON
+37087,0.003557356,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,2631.184,Hexane,LB
+37075,459.106,Xylenes (Mixed Isomers),LB
+37075,0.3164338,Fluoranthene,LB
+37075,0.001282129,Mercury,LB
+37075,1.1817074,Phenanthrene,LB
+37075,0.04787722,Sulfur Dioxide,TON
+37069,3.056906e-09,Mercury,LB
+37069,8.597098e-06,Fluorene,LB
+37069,2.804358e-06,PM10 Primary (Filt + Cond),TON
+37069,3.838691e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.0013046212,Formaldehyde,LB
+37069,0.003479492,"2,2,4-Trimethylpentane",LB
+37065,21.0974,Ethyl Benzene,LB
+37065,0.0761004,Nickel,LB
+37065,63.23388,Naphthalene,LB
+37065,1.839726,PM10-Primary from certain diesel engines,TON
+37065,0.003993256,Nitrate portion of PM2.5-PRI,TON
+37065,2.668833,PM10 Primary (Filt + Cond),TON
+37063,4.110212,Ethyl Benzene,LB
+37063,0.019200942,Nickel,LB
+37055,4.066942,Styrene,LB
+37055,27.3178,Toluene,LB
+37055,0.008938658,"Dibenzo[a,h]Anthracene",LB
+37055,9.217776,"2,2,4-Trimethylpentane",LB
+37055,2.099566,Fluorene,LB
+37055,9.711679,Carbon Monoxide,TON
+37055,0.09507986,Sulfur Dioxide,TON
+37049,0.00015176386,"Dibenzo[a,h]Anthracene",LB
+37049,0.004628264,Benz[a]Anthracene,LB
+37049,16.401216,Benzene,LB
+37049,0.01500168,Acenaphthene,LB
+37049,147.3982,Carbon Dioxide,TON
+37049,0.02514382,Pyrene,LB
+37049,0.01760051,"Benzo[g,h,i,]Perylene",LB
+37049,0.006612826,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.0002264454,Sulfate Portion of PM2.5-PRI,TON
+37035,0.00572503,Ethyl Benzene,LB
+37035,6.675798e-05,Acenaphthylene,LB
+37035,1.1643024e-05,Chrysene,LB
+37033,25.62584,Nitrogen Oxides,TON
+37033,16.624012,Acrolein,LB
+37033,1.8845508,Pyrene,LB
+37033,15.415486,Xylenes (Mixed Isomers),LB
+37033,8.439196e-05,Chromium (VI),LB
+37033,0.00943311,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,1.4420028,Fluoranthene,LB
+37027,3.104416,Acrolein,LB
+37027,1.0892586,"2,2,4-Trimethylpentane",LB
+37027,0.03196341,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.004647103,Sulfate Portion of PM2.5-PRI,TON
+37023,0.7183092,Propionaldehyde,LB
+37023,2.85448e-06,Chromium (VI),LB
+37023,0.002818732,Benzo[b]Fluoranthene,LB
+37023,0.03179876,PM25-Primary from certain diesel engines,TON
+37023,0.0001634379,Nitrate portion of PM2.5-PRI,TON
+37077,2.532954,Xylenes (Mixed Isomers),LB
+37077,0.002936276,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,3.662622,Benzene,LB
+37077,0.002909538,Arsenic,LB
+37077,0.1124755,Nitrogen Oxides,TON
+37077,0.001401164,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.0005984792,Fluoranthene,LB
+37175,0.0005848118,Benzo[a]Pyrene,LB
+37175,1.3588708e-05,"Dibenzo[a,h]Anthracene",LB
+37175,2.404592e-06,Nitrate portion of PM2.5-PRI,TON
+37175,0.02712831,Volatile Organic Compounds,TON
+37167,0.000838064,Acenaphthene,LB
+37167,0.01129653,PM10 Primary (Filt + Cond),TON
+37167,8.324557e-05,Sulfate Portion of PM2.5-PRI,TON
+37167,0.02424136,Styrene,LB
+37167,2.29314,Toluene,LB
+37167,0.0007791538,Anthracene,LB
+37167,1.3439458,Formaldehyde,LB
+37167,2.699428,Benzene,LB
+37137,0.0532355,Ethyl Benzene,LB
+37137,0.2196796,Toluene,LB
+37137,0.00017296898,Pyrene,LB
+37137,0.0004376508,"Benzo[g,h,i,]Perylene",LB
+37137,0.00016442674,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,7.040044e-06,Mercury,LB
+37123,0.13807722,Styrene,LB
+37123,0.007955656,Fluoranthene,LB
+37123,0.0220095,Acenaphthylene,LB
+37123,4.7514,"2,2,4-Trimethylpentane",LB
+37123,0.0002843836,Mercury,LB
+37123,0.009669374,Fluorene,LB
+37123,0.02552222,PM10 Primary (Filt + Cond),TON
+37123,0.01006906,PM2.5 Primary (Filt + Cond),TON
+37121,0.01581481,Methane,TON
+37121,0.0008766112,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.001114774,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.1425063,Volatile Organic Compounds,TON
+37121,0.00426602,Pyrene,LB
+37121,4.59755,Xylenes (Mixed Isomers),LB
+37079,0.7156606,Benzene,LB
+37079,0.06565629,Volatile Organic Compounds,TON
+37175,78.95766,Acetaldehyde,LB
+37175,0.03476155,Ammonia,TON
+37175,11.597424,Styrene,LB
+37175,0.1171312,Benzo[k]Fluoranthene,LB
+37175,333.963,"2,2,4-Trimethylpentane",LB
+37175,0.1220324,Benz[a]Anthracene,LB
+37175,0.03016444,Nickel,LB
+37175,25.4557,Naphthalene,LB
+37175,0.4973396,PM10 Primary (Filt + Cond),TON
+37171,1.9018574e-05,Chromium (VI),LB
+37171,0.033104,Benz[a]Anthracene,LB
+37171,0.1042987,Acenaphthene,LB
+37171,2.465464,Styrene,LB
+37171,459.3594,Toluene,LB
+37171,0.01255568,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.02839775,Ammonia,TON
+37171,0.0001383025,Nitrate portion of PM2.5-PRI,TON
+37171,0.02461166,Organic Carbon portion of PM2.5-PRI,TON
+37169,8.521036e-05,Mercury,LB
+37169,0.017818042,Arsenic,LB
+37169,0.2263324,Methane,TON
+37169,0.706047,PM10-Primary from certain diesel engines,TON
+37169,0.2540365,Elemental Carbon portion of PM2.5-PRI,TON
+37169,3.79006,Styrene,LB
+37167,1.5957114,Hexane,LB
+37167,3.365298,Propionaldehyde,LB
+37167,4.273936,Xylenes (Mixed Isomers),LB
+37167,0.01064728,Ammonia,TON
+37167,28.15798,Benzene,LB
+37167,2039.011,Carbon Dioxide,TON
+37167,6.121738,Nitrogen Oxides,TON
+37167,0.3000556,PM2.5 Primary (Filt + Cond),TON
+37167,1.713604,Volatile Organic Compounds,TON
+37167,7.63494,Hexane,LB
+37167,15.632404,Propionaldehyde,LB
+37167,1.6065752,Pyrene,LB
+37167,0.03258662,Benzo[a]Pyrene,LB
+37149,22.6427,"1,3-Butadiene",LB
+37149,1.9752096,Anthracene,LB
+37149,0.016736506,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.06574192,Benzo[b]Fluoranthene,LB
+37149,3.66978,Fluoranthene,LB
+37149,3.653648,Acenaphthylene,LB
+37149,0.48137,Chrysene,LB
+37149,0.09782794,Nickel,LB
+37045,2.724868,Hexane,LB
+37045,0.4117436,Fluoranthene,LB
+37045,0.0002409098,Benzo[k]Fluoranthene,LB
+37045,0.3217754,Acenaphthene,LB
+37045,763.8215,Carbon Dioxide,TON
+37041,0.00394409,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.00221986,Benzo[k]Fluoranthene,LB
+37041,0.5074095,PM10-Primary from certain diesel engines,TON
+37035,0.2615354,Nickel,LB
+37035,1.495897,Nitrous Oxide,TON
+37035,3.475219,PM10 Primary (Filt + Cond),TON
+37035,1.280552,PM2.5 Primary (Filt + Cond),TON
+37035,0.3976705,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.8057749,Sulfur Dioxide,TON
+37035,2.300618,Anthracene,LB
+37035,0.7630332,Benzo[b]Fluoranthene,LB
+37035,3.92884,Fluoranthene,LB
+37035,12.250856,Acenaphthylene,LB
+37033,18.254492,Acrolein,LB
+37033,16.048572,Toluene,LB
+37033,0.8222292,Anthracene,LB
+37033,2.35156,Pyrene,LB
+37033,0.007037988,Benzo[k]Fluoranthene,LB
+37033,0.5665218,Benz[a]Anthracene,LB
+37033,21.787,Benzene,LB
+37033,0.012657756,Arsenic,LB
+37033,0.2557475,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.003012848,Nitrate portion of PM2.5-PRI,TON
+37029,1.8220442,Hexane,LB
+37029,4.42701,Xylenes (Mixed Isomers),LB
+37029,0.5964542,Fluoranthene,LB
+37029,72.45476,Formaldehyde,LB
+37019,0.04238646,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.1661197,Benzo[b]Fluoranthene,LB
+37019,39.93338,"2,2,4-Trimethylpentane",LB
+37019,12.490578,Styrene,LB
+37019,53.588,Propionaldehyde,LB
+37019,0.5183748,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.4588932,Sulfur Dioxide,TON
+37009,0.10271948,Styrene,LB
+37009,2.391194e-06,Chromium (VI),LB
+37009,0.05394346,Fluoranthene,LB
+37009,0.0002051044,"Dibenzo[a,h]Anthracene",LB
+37009,0.2040616,"2,2,4-Trimethylpentane",LB
+37009,0.01668334,Benz[a]Anthracene,LB
+37009,0.0004815576,Arsenic,LB
+37009,0.004414996,Methane,TON
+37009,169.8689,Carbon Dioxide,TON
+37009,0.007405956,Organic Carbon portion of PM2.5-PRI,TON
+37009,137.66374,Ethyl Benzene,LB
+37009,984.9076,Toluene,LB
+37009,4.984066e-05,Chromium (VI),LB
+37009,0.187115,Fluoranthene,LB
+37009,0.03828792,Benzo[k]Fluoranthene,LB
+37009,6.629054,Naphthalene,LB
+37009,0.007804484,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.0002468743,Nitrogen Oxides,TON
+37005,9.000814e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,9.186748e-08,"Dibenzo[a,h]Anthracene",LB
+37005,0.2156154,Hexane,LB
+37005,0.5464876,Xylenes (Mixed Isomers),LB
+37005,7.475934e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.0004058696,Fluoranthene,LB
+37005,1.08856e-05,Arsenic,LB
+37005,0.1922669,Carbon Monoxide,TON
+37033,0.004674008,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.00014745846,Mercury,LB
+37033,0.17475794,Naphthalene,LB
+37033,3.283819,Carbon Monoxide,TON
+37033,264.3582,Carbon Dioxide,TON
+37033,0.3592888,Nitrogen Oxides,TON
+37009,0.0004623112,Nitrous Oxide,TON
+37009,1.244433e-06,Nitrate portion of PM2.5-PRI,TON
+37009,0.01914982,Nitrogen Oxides,TON
+37009,0.000499092,PM2.5 Primary (Filt + Cond),TON
+37009,0.0001521403,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.01340077,Volatile Organic Compounds,TON
+37009,0.464087,Toluene,LB
+37009,0.000354552,Fluoranthene,LB
+37009,1.3589372e-05,Mercury,LB
+37009,0.0011955648,Phenanthrene,LB
+37009,0.0004292172,Fluorene,LB
+37009,0.011044084,Naphthalene,LB
+37143,0.00507895,Sulfur Dioxide,TON
+37143,0.0790632,Phenanthrene,LB
+37143,0.02953052,Fluorene,LB
+37129,28707.5,Toluene,LB
+37129,5078.35,Hexane,LB
+37125,57.0779,Toluene,LB
+37125,0.0001485376,Chromium (VI),LB
+37125,1.772304,Acenaphthene,LB
+37125,3.41649,Volatile Organic Compounds,TON
+37125,1.4719382,Nickel,LB
+37125,2.256912,Arsenic,LB
+37125,11007.792,Ethyl Benzene,LB
+37125,4.536222,Benzo[b]Fluoranthene,LB
+37121,0.019391846,Benzo[k]Fluoranthene,LB
+37121,0.02675948,Benzo[a]Pyrene,LB
+37121,0.004178482,Manganese,LB
+37121,0.008689191,Sulfur Dioxide,TON
+37119,0.001355919,Mercury,LB
+37119,2488.592,Acetaldehyde,LB
+37119,72.70092,Phenanthrene,LB
+37119,27.51656,PM10-Primary from certain diesel engines,TON
+37119,45.9733,Fluoranthene,LB
+37119,4.746472,Benzo[a]Pyrene,LB
+37119,274.4912,Xylenes (Mixed Isomers),LB
+37119,15.994878,Acenaphthylene,LB
+37119,88.55134,"2,2,4-Trimethylpentane",LB
+37119,3.916105,PM10-Primary from certain diesel engines,TON
+37119,6.12165,PM10 Primary (Filt + Cond),TON
+37099,0.011463246,Benzo[k]Fluoranthene,LB
+37099,0.0244532,Arsenic,LB
+37099,1.2078864,Acenaphthene,LB
+37099,2.666964,Fluorene,LB
+37099,2.225201,Volatile Organic Compounds,TON
+37091,0.09600591,Volatile Organic Compounds,TON
+37091,12.14323,Xylenes (Mixed Isomers),LB
+37091,0.02353,Acenaphthylene,LB
+37091,4.314594,"2,2,4-Trimethylpentane",LB
+37071,22.30648,Ethyl Benzene,LB
+37071,0.0562163,Pyrene,LB
+37071,6.740862e-05,Mercury,LB
+37071,1.7174384,Naphthalene,LB
+37071,0.003287538,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.2688764,Acrolein,LB
+37063,42.38726,Toluene,LB
+37063,0.012323604,Anthracene,LB
+37063,0.00786278,Chrysene,LB
+37063,0.00014628918,Mercury,LB
+37063,0.007224705,Methane,TON
+37065,3.173498,Hexane,LB
+37065,0.002592168,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.001947106,Sulfur Dioxide,TON
+37061,0.318631,Acenaphthylene,LB
+37061,0.093689,Chrysene,LB
+37061,2.09685e-05,Mercury,LB
+37061,26.0123,Acetaldehyde,LB
+37061,0.4287522,Fluorene,LB
+37061,6.547848,Naphthalene,LB
+37061,3.100676,Propionaldehyde,LB
+37061,0.06983346,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.14300154,Benzo[a]Pyrene,LB
+37049,0.2282504,Nickel,LB
+37049,15.154952,Phenanthrene,LB
+37049,0.2284313,Organic Carbon portion of PM2.5-PRI,TON
+37049,1.886067,PM10 Primary (Filt + Cond),TON
+37047,1.1431552e-07,Chromium (VI),LB
+37047,0.00015474282,Benzo[b]Fluoranthene,LB
+37047,0.00015474282,Benzo[k]Fluoranthene,LB
+37047,0.0002537928,Benzo[a]Pyrene,LB
+37047,0.20926,"2,2,4-Trimethylpentane",LB
+37047,5.130602e-05,Manganese,LB
+37047,1.4289268e-05,Nickel,LB
+37047,0.001764218,Phenanthrene,LB
+37047,0.0001925113,Methane,TON
+37045,640.608,Styrene,LB
+37045,552.589,Propionaldehyde,LB
+37045,8468.5,Formaldehyde,LB
+37045,1391.2646,Naphthalene,LB
+37045,12.79444,Nitrous Oxide,TON
+37045,793.9635,Nitrogen Oxides,TON
+37045,6.38625,Sulfur Dioxide,TON
+37035,6.919964,Styrene,LB
+37035,34.03012,Toluene,LB
+37035,2.673756,Acenaphthylene,LB
+37035,46.14222,Benzene,LB
+37035,1.5905832,Acenaphthene,LB
+37035,16.82442,Carbon Monoxide,TON
+37035,0.02593109,Sulfur Dioxide,TON
+37025,0.5970336,"2,2,4-Trimethylpentane",LB
+37025,2.359572,Benzene,LB
+37025,0.306937,Phenanthrene,LB
+37025,167.9839,Carbon Dioxide,TON
+37025,0.05576416,PM25-Primary from certain diesel engines,TON
+37027,0.010131984,"Benzo[g,h,i,]Perylene",LB
+37027,0.006782848,Benzo[k]Fluoranthene,LB
+37027,0.02032542,Nickel,LB
+37027,96.80604,Acetaldehyde,LB
+37027,0.7182118,Acenaphthene,LB
+37027,0.5109149,PM25-Primary from certain diesel engines,TON
+37027,7.779783,Nitrogen Oxides,TON
+37023,0.2711716,Xylenes (Mixed Isomers),LB
+37023,2.056578e-05,Mercury,LB
+37023,0.0011908016,Phenanthrene,LB
+37023,0.003021225,Ammonia,TON
+37023,16.22698,Volatile Organic Compounds,TON
+37023,1959.9832,Xylenes (Mixed Isomers),LB
+37023,0.1328906,Benzo[k]Fluoranthene,LB
+37023,2.08277,Acenaphthylene,LB
+37023,171.82514,Formaldehyde,LB
+37023,0.926182,Fluorene,LB
+37023,105.8933,Carbon Monoxide,TON
+37023,2665.185,Carbon Dioxide,TON
+37023,0.0005296153,Nitrate portion of PM2.5-PRI,TON
+37023,0.183167,PM2.5 Primary (Filt + Cond),TON
+37171,3.258152,Anthracene,LB
+37171,52.2901,Propionaldehyde,LB
+37171,0.14235594,Nickel,LB
+37171,2.305709,PM25-Primary from certain diesel engines,TON
+37165,0.1464998,Styrene,LB
+37165,0.0004743898,Manganese,LB
+37165,0.012203302,Fluorene,LB
+37165,1.79513,Carbon Monoxide,TON
+37165,17.36081,Carbon Dioxide,TON
+37163,0.006146697,Sulfur Dioxide,TON
+37163,0.3169342,Phenanthrene,LB
+37163,0.0003195831,Nitrate portion of PM2.5-PRI,TON
+37159,14.154334,Anthracene,LB
+37159,23.13326,Fluoranthene,LB
+37159,0.1881496,Arsenic,LB
+37159,3.148272,Elemental Carbon portion of PM2.5-PRI,TON
+37159,6.043484,PM10 Primary (Filt + Cond),TON
+37145,0.754523,"1,3-Butadiene",LB
+37145,0.006015174,Benzo[b]Fluoranthene,LB
+37145,2.290128,Benzene,LB
+37145,0.9290276,Nitrogen Oxides,TON
+37131,2.494048,Toluene,LB
+37131,9.082058e-06,Chromium (VI),LB
+37131,0.008633186,Manganese,LB
+37131,0.005816786,Ammonia,TON
+37131,0.0002846627,Nitrate portion of PM2.5-PRI,TON
+37131,3.749679,Nitrogen Oxides,TON
+37131,0.2586635,Volatile Organic Compounds,TON
+37131,4.245224,Ethyl Benzene,LB
+37131,0.1107786,Acrolein,LB
+37131,15.4878,Carbon Dioxide,TON
+37131,0.0005094683,Ammonia,TON
+37131,0.151376,Nitrogen Oxides,TON
+37131,7.524117e-05,Sulfate Portion of PM2.5-PRI,TON
+37131,0.1228151,Volatile Organic Compounds,TON
+37121,13.72544,"1,3-Butadiene",LB
+37121,10.10553,"2,2,4-Trimethylpentane",LB
+37117,0.06145766,Phenanthrene,LB
+37117,0.00100767,Ammonia,TON
+37117,0.1671854,Ethyl Benzene,LB
+37117,0.0002262848,"Benzo[g,h,i,]Perylene",LB
+37117,5.03812,Formaldehyde,LB
+37111,25.71172,Styrene,LB
+37111,0.04552692,Benzo[b]Fluoranthene,LB
+37111,163.86292,Benzene,LB
+37111,107.0033,Carbon Monoxide,TON
+37111,0.02730078,Nitrous Oxide,TON
+37111,0.1104903,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.002239146,Manganese,LB
+37123,0.0003205006,Nickel,LB
+37123,0.3173234,Naphthalene,LB
+37123,3.841234,Carbon Monoxide,TON
+37123,140.2764,Carbon Dioxide,TON
+37123,0.0006187831,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.0001256943,Sulfate Portion of PM2.5-PRI,TON
+37123,0.005259812,Anthracene,LB
+37177,0.877442,"2,2,4-Trimethylpentane",LB
+37177,0.0007054695,Nitrous Oxide,TON
+37177,0.2232421,PM10 Primary (Filt + Cond),TON
+37177,1.2142756,Ethyl Benzene,LB
+37177,36.2361,Formaldehyde,LB
+37177,1.2486198,Ethyl Benzene,LB
+37177,0.03467994,Propionaldehyde,LB
+37177,7.258636e-05,Arsenic,LB
+37177,0.7343947,Carbon Monoxide,TON
+37177,0.07056175,Nitrogen Oxides,TON
+37171,1.0907954,"1,3-Butadiene",LB
+37171,0.9427782,Hexane,LB
+37171,1.356312e-05,Chromium (VI),LB
+37171,0.0016048406,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.18503568,Acenaphthylene,LB
+37171,0.0008703126,"Dibenzo[a,h]Anthracene",LB
+37171,15.821448,Acetaldehyde,LB
+37171,1.392063,Carbon Monoxide,TON
+37171,0.1590968,PM25-Primary from certain diesel engines,TON
+37165,3.240696,Nitrogen Oxides,TON
+37165,0.004391194,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.4208704,Acenaphthylene,LB
+37165,0.11136146,Chrysene,LB
+37165,0.05785654,Benzo[a]Pyrene,LB
+37165,0.002014646,Nitrous Oxide,TON
+37163,4.511162,Acrolein,LB
+37163,1.4707942,Hexane,LB
+37163,0.003607064,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,1.5007792,"2,2,4-Trimethylpentane",LB
+37163,0.18181152,Acenaphthene,LB
+37163,0.02901964,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,68.017,Xylenes (Mixed Isomers),LB
+37153,0.220133,Naphthalene,LB
+37153,0.004833154,Ammonia,TON
+37153,0.09840396,Styrene,LB
+37153,0.00371239,Anthracene,LB
+37153,1.4141646,Formaldehyde,LB
+37153,3.090504e-05,Mercury,LB
+37149,0.0002126124,Anthracene,LB
+37149,0.00017483826,Benzo[k]Fluoranthene,LB
+37149,0.0010903026,Acenaphthylene,LB
+37149,0.00015585432,Benz[a]Anthracene,LB
+37149,2.04212e-05,Arsenic,LB
+37149,0.0013228818,Phenanthrene,LB
+37149,6.865335,Carbon Dioxide,TON
+37149,0.0001439153,Sulfur Dioxide,TON
+37135,0.06249256,Ethyl Benzene,LB
+37135,1.4147316e-06,Mercury,LB
+37135,0.0002790964,Fluorene,LB
+37135,7.232743e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,959.2272,Naphthalene,LB
+37127,10.36527,PM2.5 Primary (Filt + Cond),TON
+37127,3.217677,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,31.00328,Pyrene,LB
+37127,27.18452,Fluoranthene,LB
+37127,8.420358,Benzo[a]Pyrene,LB
+37127,18291.578,Benzene,LB
+37127,5.431506,Manganese,LB
+37111,0.763081,Acenaphthylene,LB
+37111,1.9412136e-05,Mercury,LB
+37111,0.004059072,Arsenic,LB
+37111,4.174991,Carbon Monoxide,TON
+37111,0.3661135,PM2.5 Primary (Filt + Cond),TON
+37111,0.007889733,Sulfur Dioxide,TON
+37087,0.006029184,Elemental Carbon portion of PM2.5-PRI,TON
+37087,2.310597,Nitrogen Oxides,TON
+37087,0.01968877,Organic Carbon portion of PM2.5-PRI,TON
+37087,1.9742408e-05,Chromium (VI),LB
+37087,0.07784176,Fluoranthene,LB
+37071,0.10253004,Benzo[b]Fluoranthene,LB
+37071,1.1259588,Benz[a]Anthracene,LB
+37071,42.07944,Benzene,LB
+37071,0.13460424,Manganese,LB
+37071,194.29642,Acetaldehyde,LB
+37063,249.2516,Acetaldehyde,LB
+37063,1.3565668,Anthracene,LB
+37063,2.812386,Acenaphthylene,LB
+37063,53.06484,Benzene,LB
+37051,1.073757,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,116.22974,Toluene,LB
+37051,91.60702,Propionaldehyde,LB
+37051,0.11197112,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.4397104,Benzo[b]Fluoranthene,LB
+37051,0.06038032,Benzo[k]Fluoranthene,LB
+37051,30810.02,Carbon Dioxide,TON
+37051,7.449214,PM25-Primary from certain diesel engines,TON
+37051,0.02556006,Nitrate portion of PM2.5-PRI,TON
+37033,0.003647969,Sulfur Dioxide,TON
+37033,0.02712258,Chrysene,LB
+37033,3.91705,Naphthalene,LB
+37031,0.08135556,"1,3-Butadiene",LB
+37031,0.00014468778,Benzo[b]Fluoranthene,LB
+37031,3.441404e-06,Nickel,LB
+37031,0.001233628,Fluorene,LB
+37031,0.03161414,Naphthalene,LB
+37031,3.90164e-05,Ammonia,TON
+37177,0.007365718,Arsenic,LB
+37177,0.007878219,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.1003337,Acenaphthene,LB
+37173,0.1728533,Fluorene,LB
+37173,0.9967084,"1,3-Butadiene",LB
+37173,0.00013494138,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.12808606,Fluoranthene,LB
+37173,7.46046e-05,Benzo[k]Fluoranthene,LB
+37173,0.008574502,Chrysene,LB
+37173,0.019023214,Benz[a]Anthracene,LB
+37015,2.329586,"1,3-Butadiene",LB
+37015,5.605106,Acrolein,LB
+37015,0.2597608,Anthracene,LB
+37015,3.807208,Propionaldehyde,LB
+37015,0.008759286,Nickel,LB
+37015,2.313581,Carbon Monoxide,TON
+37015,0.001973229,Nitrous Oxide,TON
+37015,0.191063,PM2.5 Primary (Filt + Cond),TON
+37149,0.9770686,Organic Carbon portion of PM2.5-PRI,TON
+37149,1.85476,PM2.5 Primary (Filt + Cond),TON
+37149,367.4686,"1,3-Butadiene",LB
+37149,51.84374,Acrolein,LB
+37149,6238.144,Xylenes (Mixed Isomers),LB
+37149,0.00381643,Chromium (VI),LB
+37149,4.597928,"Benzo[g,h,i,]Perylene",LB
+37149,5.154808,Fluorene,LB
+37061,5.161066,Ethyl Benzene,LB
+37061,0.9374402,"1,3-Butadiene",LB
+37061,0.15592068,Propionaldehyde,LB
+37061,4.003496,Carbon Monoxide,TON
+37061,0.00494109,Nitrous Oxide,TON
+37061,2.281149e-05,Nitrate portion of PM2.5-PRI,TON
+37061,0.00419865,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.1542796,Volatile Organic Compounds,TON
+37173,1.3901704,Fluorene,LB
+37173,29.12981,Nitrogen Oxides,TON
+37173,18.74693,Toluene,LB
+37173,4.054804,Benzene,LB
+37173,0.001340314,Ammonia,TON
+37173,0.002835268,Benzo[a]Pyrene,LB
+37195,0.210173,"1,3-Butadiene",LB
+37195,0.01164232,"Benzo[g,h,i,]Perylene",LB
+37195,0.0016805792,Chrysene,LB
+37195,2.48218,Formaldehyde,LB
+37195,1.652075e-05,Nitrate portion of PM2.5-PRI,TON
+37195,0.002651459,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.01035706,Sulfur Dioxide,TON
+37195,0.1223705,Volatile Organic Compounds,TON
+37057,15.00708,"1,3-Butadiene",LB
+37057,2.539546,Pyrene,LB
+37057,205.8304,Acetaldehyde,LB
+37057,0.486889,PM25-Primary from certain diesel engines,TON
+37051,0.1843828,Manganese,LB
+37051,248.629,Acetaldehyde,LB
+37051,0.2747334,Methane,TON
+37051,1.511573,PM10-Primary from certain diesel engines,TON
+37051,0.435062,Benzo[a]Pyrene,LB
+37051,41.58602,Xylenes (Mixed Isomers),LB
+37051,0.03302358,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,2.554908,Acenaphthylene,LB
+37049,0.012753708,"Dibenzo[a,h]Anthracene",LB
+37049,49.85212,Benzene,LB
+37049,0.2709388,Manganese,LB
+37049,5.98866,Phenanthrene,LB
+37049,0.1913516,Sulfur Dioxide,TON
+37049,5.17003,Hexane,LB
+37049,0.738731,Anthracene,LB
+37049,10.840264,Propionaldehyde,LB
+37049,1.6117378,Fluoranthene,LB
+37049,205.7196,Formaldehyde,LB
+37049,0.5188846,Benz[a]Anthracene,LB
+37049,19.291454,Benzene,LB
+37049,0.01319734,Sulfate Portion of PM2.5-PRI,TON
+37045,0.018645296,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.07321822,Benzo[b]Fluoranthene,LB
+37045,0.245475,Benzo[a]Pyrene,LB
+37045,2.19736,PM25-Primary from certain diesel engines,TON
+37045,52.48811,Nitrogen Oxides,TON
+37045,2.089816,"1,3-Butadiene",LB
+37045,0.00660069,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.8142256,Naphthalene,LB
+37045,31.89563,Carbon Dioxide,TON
+37045,0.3164165,Nitrogen Oxides,TON
+37045,0.0001472504,Sulfate Portion of PM2.5-PRI,TON
+37035,8.617926,Hexane,LB
+37035,0.010264154,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,32.48848,Benzene,LB
+37035,0.12225712,Manganese,LB
+37035,2.197958,Fluorene,LB
+37035,0.1164321,Methane,TON
+37035,0.7734126,PM10-Primary from certain diesel engines,TON
+37035,0.1985231,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.1092145,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.00226955,Arsenic,LB
+37033,0.2721213,Volatile Organic Compounds,TON
+37033,0.6665142,Styrene,LB
+37033,1.5113016,"1,3-Butadiene",LB
+37033,0.244956,Pyrene,LB
+37033,0.00014699866,"Dibenzo[a,h]Anthracene",LB
+37027,8.162372,Hexane,LB
+37027,7.156866e-05,Chromium (VI),LB
+37027,1.4064186,Fluoranthene,LB
+37027,0.04286794,Manganese,LB
+37027,0.0371734,Nickel,LB
+37023,0.2533218,"1,3-Butadiene",LB
+37023,6.631044e-06,Nitrate portion of PM2.5-PRI,TON
+37023,0.0005437925,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.5911948,Chrysene,LB
+37157,1.0187874,Benz[a]Anthracene,LB
+37157,0.4826731,Methane,TON
+37157,2.356604,PM2.5 Primary (Filt + Cond),TON
+37157,48.5122,Toluene,LB
+37157,26.48518,Propionaldehyde,LB
+37153,31.50078,"2,2,4-Trimethylpentane",LB
+37153,1.617081,Volatile Organic Compounds,TON
+37135,0.06352266,Ethyl Benzene,LB
+37135,0.013254146,"1,3-Butadiene",LB
+37135,0.11299864,Benzene,LB
+37135,1.607596e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.0001660466,PM10 Primary (Filt + Cond),TON
+37137,0.007420254,Ammonia,TON
+37137,0.0001163969,Sulfate Portion of PM2.5-PRI,TON
+37137,0.010876356,Anthracene,LB
+37137,0.05817796,Acenaphthylene,LB
+37137,3.889694,Formaldehyde,LB
+37137,118.13616,Hexane,LB
+37137,2.31389e-05,Chromium (VI),LB
+37137,0.01634048,Benzo[b]Fluoranthene,LB
+37137,0.000519358,"Dibenzo[a,h]Anthracene",LB
+37137,0.002892246,Nickel,LB
+37137,12.14454,Acetaldehyde,LB
+37137,0.741504,Nitrogen Oxides,TON
+37137,0.00574268,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.0006809055,Sulfate Portion of PM2.5-PRI,TON
+37131,134.32716,Propionaldehyde,LB
+37131,2153.038,Acetaldehyde,LB
+37131,13.261692,Fluorene,LB
+37131,1.358624,Organic Carbon portion of PM2.5-PRI,TON
+37131,2.672046,PM2.5 Primary (Filt + Cond),TON
+37131,106.5334,Volatile Organic Compounds,TON
+37129,20.4908,Acrolein,LB
+37129,0.00756889,"Benzo[g,h,i,]Perylene",LB
+37129,0.12034986,Manganese,LB
+37129,0.5455125,PM10-Primary from certain diesel engines,TON
+37129,0.9718451,PM10 Primary (Filt + Cond),TON
+37129,1.503028,Volatile Organic Compounds,TON
+37123,9.934632,Ethyl Benzene,LB
+37123,2.861136,Pyrene,LB
+37123,301.8882,Formaldehyde,LB
+37123,7.777124,"2,2,4-Trimethylpentane",LB
+37123,27.68046,Benzene,LB
+37123,0.02021464,Arsenic,LB
+37123,0.9258896,Acenaphthene,LB
+37123,14.26454,Nitrogen Oxides,TON
+37123,0.2951757,Organic Carbon portion of PM2.5-PRI,TON
+37117,8.21564,Formaldehyde,LB
+37117,0.6338964,Acrolein,LB
+37117,0.8317158,Nitrogen Oxides,TON
+37117,0.001724394,Sulfur Dioxide,TON
+37115,0.18430672,Propionaldehyde,LB
+37115,0.004533386,Chrysene,LB
+37115,0.00231818,Benzo[a]Pyrene,LB
+37115,0.0007193528,Manganese,LB
+37115,0.0004821114,Nickel,LB
+37115,0.04135408,Phenanthrene,LB
+37115,33.54233,Carbon Dioxide,TON
+37115,7.391339e-05,Nitrous Oxide,TON
+37115,0.0007240403,Ammonia,TON
+37115,0.0110993,PM10 Primary (Filt + Cond),TON
+37115,0.008631705,PM2.5 Primary (Filt + Cond),TON
+37115,0.12634984,Anthracene,LB
+37115,0.00017012366,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,9.417624e-05,Benzo[k]Fluoranthene,LB
+37115,1.5442276,"2,2,4-Trimethylpentane",LB
+37115,5.046684,Benzene,LB
+37115,0.004679846,Arsenic,LB
+37115,0.444319,Phenanthrene,LB
+37115,0.008672031,PM10-Primary from certain diesel engines,TON
+37115,0.430797,Nitrogen Oxides,TON
+37115,0.002850984,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.216517,Ammonia,TON
+37113,0.2480488,Organic Carbon portion of PM2.5-PRI,TON
+37113,1.281362,PM2.5 Primary (Filt + Cond),TON
+37113,0.1191152,Sulfate Portion of PM2.5-PRI,TON
+37113,0.14722838,Benzo[a]Pyrene,LB
+37113,0.00018732656,Mercury,LB
+37113,33.261,Naphthalene,LB
+37113,3.223728,Styrene,LB
+37113,13.594568,Propionaldehyde,LB
+37107,35.16748,Acrolein,LB
+37107,36.42514,Toluene,LB
+37107,11.850782,Hexane,LB
+37107,0.02733872,Arsenic,LB
+37107,0.001651691,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.3678704,Nitrogen Oxides,TON
+37107,64.87342,Acenaphthylene,LB
+37107,1.0213018,Nickel,LB
+37107,4734.716,Acetaldehyde,LB
+37097,616.3714,Xylenes (Mixed Isomers),LB
+37097,0.11423632,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,4997.55,Formaldehyde,LB
+37097,7.376499,Methane,TON
+37097,1.731176,Ammonia,TON
+37097,1.697908,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,19.81834,Volatile Organic Compounds,TON
+37091,0.3689878,Hexane,LB
+37091,0.7418034,Propionaldehyde,LB
+37091,1.0915914,Xylenes (Mixed Isomers),LB
+37091,4.561278e-06,Chromium (VI),LB
+37091,14.693408,Formaldehyde,LB
+37091,0.0004798044,"Dibenzo[a,h]Anthracene",LB
+37091,0.004194768,Manganese,LB
+37091,0.004740529,Ammonia,TON
+37099,6.07838,"1,3-Butadiene",LB
+37099,177.05792,Toluene,LB
+37099,43.29754,Hexane,LB
+37099,0.9554468,Propionaldehyde,LB
+37099,16.249858,Acetaldehyde,LB
+37099,0.276016,Phenanthrene,LB
+37099,0.10285494,Fluorene,LB
+37099,7.23247e-05,Nitrate portion of PM2.5-PRI,TON
+37095,2.702334,"2,2,4-Trimethylpentane",LB
+37095,0.6286898,Acetaldehyde,LB
+37095,0.0006540523,Nitrous Oxide,TON
+37095,1.486131e-06,Nitrate portion of PM2.5-PRI,TON
+37095,0.0001608714,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,1.370841e-05,Sulfate Portion of PM2.5-PRI,TON
+37095,0.0013089318,"Benzo[g,h,i,]Perylene",LB
+37095,0.000442333,Chrysene,LB
+37095,0.566913,Formaldehyde,LB
+37095,0.0004973134,Benzo[a]Pyrene,LB
+37095,14.447786,Toluene,LB
+37095,8.821826,Xylenes (Mixed Isomers),LB
+37095,2.24796e-05,"Dibenzo[a,h]Anthracene",LB
+37095,3.393176,Benzene,LB
+37095,0.0001935473,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,1.243524e-06,Chromium (VI),LB
+37091,0.2971376,"1,3-Butadiene",LB
+37091,0.0001554472,Nickel,LB
+37091,0.1176462,Naphthalene,LB
+37091,0.0003992897,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,15.658852,"1,3-Butadiene",LB
+37089,2.429306,Propionaldehyde,LB
+37089,0.5875056,Acenaphthylene,LB
+37089,138.76402,Benzene,LB
+37089,0.006116178,Nickel,LB
+37089,0.009378194,Arsenic,LB
+37089,0.00227957,Sulfate Portion of PM2.5-PRI,TON
+37075,0.0004961329,Sulfur Dioxide,TON
+37075,0.8987044,Ethyl Benzene,LB
+37075,0.000518604,Benzo[a]Pyrene,LB
+37075,5.558972e-05,Nickel,LB
+37071,0.7027606,Styrene,LB
+37071,0.4060334,Fluoranthene,LB
+37071,0.04128456,Benzo[a]Pyrene,LB
+37071,0.001699226,"Dibenzo[a,h]Anthracene",LB
+37071,5.829028,Naphthalene,LB
+37071,0.0331075,Methane,TON
+37071,0.0007310802,Nitrate portion of PM2.5-PRI,TON
+37071,0.4448875,PM10 Primary (Filt + Cond),TON
+37071,47.657,Toluene,LB
+37071,35.96532,Propionaldehyde,LB
+37071,0.5556582,Benz[a]Anthracene,LB
+37071,0.00015889248,Mercury,LB
+37071,0.0800768,Nickel,LB
+37071,297.5188,Acetaldehyde,LB
+37071,74.99844,Naphthalene,LB
+37071,36.9141,Carbon Monoxide,TON
+37059,4507.32,Formaldehyde,LB
+37059,7.841888,Methane,TON
+37059,136115.9,Carbon Dioxide,TON
+37059,11.40864,PM10 Primary (Filt + Cond),TON
+37051,8.158146,"2,2,4-Trimethylpentane",LB
+37051,19.807844,Acrolein,LB
+37051,0.541826,Anthracene,LB
+37051,11.84806,Propionaldehyde,LB
+37051,0.003190538,Benzo[b]Fluoranthene,LB
+37051,0.0004655792,Benzo[k]Fluoranthene,LB
+37051,0.3012956,Methane,TON
+37051,0.04721818,PM25-Primary from certain diesel engines,TON
+37051,0.05959166,Ammonia,TON
+37051,0.02615569,Organic Carbon portion of PM2.5-PRI,TON
+37049,18.845844,Acrolein,LB
+37049,0.2606856,Benz[a]Anthracene,LB
+37049,0.5808557,Nitrous Oxide,TON
+37049,1.17935,PM10 Primary (Filt + Cond),TON
+37049,0.4245616,PM2.5 Primary (Filt + Cond),TON
+37049,0.1307558,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.3146047,Sulfur Dioxide,TON
+37037,12.311852,Anthracene,LB
+37037,748.0736,Naphthalene,LB
+37035,42661.66,Xylenes (Mixed Isomers),LB
+37035,9.47239,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.2268648,Mercury,LB
+37035,2.828876,Nickel,LB
+37035,4.337686,Arsenic,LB
+37035,32.34476,Fluorene,LB
+37035,6.837195,Sulfur Dioxide,TON
+37171,0.610514,Pyrene,LB
+37171,0.5022342,Fluoranthene,LB
+37171,3.50813,"2,2,4-Trimethylpentane",LB
+37171,0.01918539,Ammonia,TON
+37171,0.008232459,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.17505418,"1,3-Butadiene",LB
+37149,0.001889463,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.6667072,Styrene,LB
+37157,0.700229,Acrolein,LB
+37157,57.43476,Xylenes (Mixed Isomers),LB
+37157,9.758832,Formaldehyde,LB
+37157,624.1498,Carbon Dioxide,TON
+37155,0.012639776,Naphthalene,LB
+37155,2.256056e-05,Ammonia,TON
+37155,3.441694e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,1.4767916e-05,Manganese,LB
+37153,9.702126,Ethyl Benzene,LB
+37153,0.4837618,Chrysene,LB
+37153,0.2537178,Benzo[a]Pyrene,LB
+37153,27.99432,Benzene,LB
+37153,1.749747,Volatile Organic Compounds,TON
+37147,0.7792702,Phenanthrene,LB
+37147,0.1090023,Nitrous Oxide,TON
+37147,3.31563,Styrene,LB
+37147,523.3806,Toluene,LB
+37147,2.695814,Propionaldehyde,LB
+37147,0.000632886,Mercury,LB
+37147,0.003444342,Acrolein,LB
+37147,0.002174082,Propionaldehyde,LB
+37147,0.274152,Xylenes (Mixed Isomers),LB
+37147,8.929712,Carbon Dioxide,TON
+37147,8.825043e-05,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.0004911283,PM10 Primary (Filt + Cond),TON
+37147,5.624045e-06,Sulfate Portion of PM2.5-PRI,TON
+37141,22.78638,Acetaldehyde,LB
+37141,5.723534,Naphthalene,LB
+37141,0.1566214,PM10-Primary from certain diesel engines,TON
+37141,0.0007297612,Nitrate portion of PM2.5-PRI,TON
+37141,0.0600817,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.1522882,PM2.5 Primary (Filt + Cond),TON
+37141,0.02385389,Ammonia,TON
+37141,0.007351817,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.004393854,Benzo[a]Pyrene,LB
+37141,0.4623216,Fluorene,LB
+37133,218.0756,Formaldehyde,LB
+37133,18.115942,Benzene,LB
+37133,0.03103837,PM25-Primary from certain diesel engines,TON
+37133,1.496273,Nitrogen Oxides,TON
+37121,0.0006614864,Benzo[a]Pyrene,LB
+37121,0.1710272,Phenanthrene,LB
+37121,0.00786144,PM10 Primary (Filt + Cond),TON
+37123,4.844452,"1,3-Butadiene",LB
+37123,0.03280664,Anthracene,LB
+37123,0.7442154,Propionaldehyde,LB
+37123,0.05693024,Fluoranthene,LB
+37123,11.966106,Formaldehyde,LB
+37123,12.353554,Acetaldehyde,LB
+37123,0.07652452,Fluorene,LB
+37111,2.082259e-05,Nitrate portion of PM2.5-PRI,TON
+37111,0.02637758,PM10 Primary (Filt + Cond),TON
+37111,0.008375858,Anthracene,LB
+37111,17.59329,Xylenes (Mixed Isomers),LB
+37111,0.003857634,Benzo[b]Fluoranthene,LB
+37111,0.01448529,Fluoranthene,LB
+37111,0.00013817892,"Dibenzo[a,h]Anthracene",LB
+37107,0.0002344432,Chromium (VI),LB
+37107,2.93038,Fluoranthene,LB
+37107,0.011447578,Benzo[k]Fluoranthene,LB
+37107,0.011288404,"Dibenzo[a,h]Anthracene",LB
+37107,0.895794,Benz[a]Anthracene,LB
+37107,0.08522164,Nickel,LB
+37107,1.3003118,Acenaphthene,LB
+37107,2.87752,Fluorene,LB
+37107,3.708771,PM10 Primary (Filt + Cond),TON
+37107,0.2764365,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,1.3606294,Acrolein,LB
+37085,0.02285558,Fluoranthene,LB
+37085,0.0010485654,Mercury,LB
+37085,0.6928424,Naphthalene,LB
+37085,1.597636,Nitrogen Oxides,TON
+37085,0.1472946,PM10 Primary (Filt + Cond),TON
+37063,0.0002569544,"Dibenzo[a,h]Anthracene",LB
+37063,5.307968,"2,2,4-Trimethylpentane",LB
+37063,7.063378,Carbon Monoxide,TON
+37063,0.590377,"1,3-Butadiene",LB
+37063,11.307862,Toluene,LB
+37063,9.270188,Xylenes (Mixed Isomers),LB
+37063,0.005775564,Benzo[k]Fluoranthene,LB
+37033,0.0012285968,Pyrene,LB
+37033,5.03756e-06,Chromium (VI),LB
+37033,0.0010830474,Fluoranthene,LB
+37033,0.000629683,Nickel,LB
+37033,0.7523311,Carbon Monoxide,TON
+37033,0.001265697,Nitrous Oxide,TON
+37033,3.512128e-06,Nitrate portion of PM2.5-PRI,TON
+37001,1.0126246,Hexane,LB
+37001,0.0009932686,Anthracene,LB
+37001,0.0013220164,Benzo[b]Fluoranthene,LB
+37001,2.976878,Benzene,LB
+37001,168.8945,Carbon Dioxide,TON
+37149,0.0004325758,Benzo[b]Fluoranthene,LB
+37149,0.3711382,"2,2,4-Trimethylpentane",LB
+37149,0.0003182048,Acenaphthene,LB
+37149,0.001785984,Sulfur Dioxide,TON
+37149,0.02328659,Volatile Organic Compounds,TON
+37157,142.38812,Xylenes (Mixed Isomers),LB
+37157,0.0004038168,Chromium (VI),LB
+37157,0.017084576,"Dibenzo[a,h]Anthracene",LB
+37157,37.09724,"2,2,4-Trimethylpentane",LB
+37157,3.433696,PM25-Primary from certain diesel engines,TON
+37157,0.3504136,Sulfur Dioxide,TON
+37157,0.3465754,Sulfate Portion of PM2.5-PRI,TON
+37157,14.144436,Toluene,LB
+37157,0.6622276,Anthracene,LB
+37157,1.866679,Pyrene,LB
+37157,3.553224e-05,Chromium (VI),LB
+37157,0.03977436,Benzo[b]Fluoranthene,LB
+37157,1.4167762,Fluoranthene,LB
+37157,5.065002,"2,2,4-Trimethylpentane",LB
+37157,0.0420435,Manganese,LB
+37157,21.30404,Naphthalene,LB
+37157,0.01098903,Sulfate Portion of PM2.5-PRI,TON
+37155,414.4437,Carbon Monoxide,TON
+37155,25726.1,Carbon Dioxide,TON
+37155,0.7689286,Nitrous Oxide,TON
+37155,0.0014274638,Chromium (VI),LB
+37155,0.4382186,Chrysene,LB
+37155,0.6520066,Benzo[a]Pyrene,LB
+37147,1357.693,Ethyl Benzene,LB
+37147,44.6746,Propionaldehyde,LB
+37147,5005.628,Xylenes (Mixed Isomers),LB
+37147,0.6103428,Benzo[k]Fluoranthene,LB
+37143,1.4651066,Naphthalene,LB
+37143,0.107473,Nitrogen Oxides,TON
+37143,0.4709068,Ethyl Benzene,LB
+37143,1.4589106,Xylenes (Mixed Isomers),LB
+37143,1.8226938e-05,"Dibenzo[a,h]Anthracene",LB
+37143,1.2352706,Benzene,LB
+37143,0.00260973,Manganese,LB
+37197,11.142864,Styrene,LB
+37197,2.817586,Acenaphthene,LB
+37197,0.5867346,Organic Carbon portion of PM2.5-PRI,TON
+37197,4.022454,Styrene,LB
+37197,0.055747,Benzo[b]Fluoranthene,LB
+37197,2.056428,Fluoranthene,LB
+37197,264.1326,Formaldehyde,LB
+37197,0.6304216,Benz[a]Anthracene,LB
+37197,4588.661,Carbon Dioxide,TON
+37197,0.005109484,Nitrous Oxide,TON
+37197,1.30934,PM2.5 Primary (Filt + Cond),TON
+37197,0.1137703,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.09399288,Benz[a]Anthracene,LB
+37153,15.008018,Acetaldehyde,LB
+37153,0.4410588,Phenanthrene,LB
+37153,3.778144,Naphthalene,LB
+37153,0.0005072777,Nitrate portion of PM2.5-PRI,TON
+37153,0.003663182,Sulfur Dioxide,TON
+37147,0.4344106,Acenaphthene,LB
+37147,0.006008558,Elemental Carbon portion of PM2.5-PRI,TON
+37147,1.203217,Nitrogen Oxides,TON
+37147,3.98566,Hexane,LB
+37147,13.737382,Xylenes (Mixed Isomers),LB
+37147,0.01041973,Sulfur Dioxide,TON
+37145,13.467762,Propionaldehyde,LB
+37145,0.0107985,"Benzo[g,h,i,]Perylene",LB
+37145,0.007238282,Benzo[k]Fluoranthene,LB
+37145,7826.785,Carbon Dioxide,TON
+37145,0.003095231,Nitrate portion of PM2.5-PRI,TON
+37145,0.3654828,Toluene,LB
+37145,0.09177494,Hexane,LB
+37145,3.558346e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,2.709332e-05,Benzo[b]Fluoranthene,LB
+37145,0.00014561168,Fluoranthene,LB
+37145,1.218062e-07,Mercury,LB
+37145,0.3378188,Acrolein,LB
+37145,0.003290658,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,16.399994,Benzene,LB
+37145,0.02875676,Fluorene,LB
+37145,8.053962,Carbon Monoxide,TON
+37145,0.007308744,Nitrous Oxide,TON
+37145,0.0001763448,Sulfate Portion of PM2.5-PRI,TON
+37143,0.13855844,Ethyl Benzene,LB
+37143,0.004770802,Propionaldehyde,LB
+37143,0.5075912,Xylenes (Mixed Isomers),LB
+37143,8.450244e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.000376358,Fluoranthene,LB
+37143,8.245562e-07,Mercury,LB
+37143,5.32537e-05,Organic Carbon portion of PM2.5-PRI,TON
+37143,9.120286e-05,Sulfur Dioxide,TON
+37115,0.5929616,Phenanthrene,LB
+37115,0.001252037,Nitrous Oxide,TON
+37115,0.009704983,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.004522947,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.003531074,Sulfur Dioxide,TON
+37115,2.1553,"1,3-Butadiene",LB
+37115,1.7199154,Hexane,LB
+37115,0.356731,Pyrene,LB
+37115,4.808522,Xylenes (Mixed Isomers),LB
+37113,3.176726,Acrolein,LB
+37113,0.04733724,Benzo[k]Fluoranthene,LB
+37113,0.7507618,Acenaphthylene,LB
+37113,0.04754438,Benz[a]Anthracene,LB
+37113,0.8955654,Phenanthrene,LB
+37113,0.01051328,Nitrous Oxide,TON
+37095,0.5188658,Fluoranthene,LB
+37095,0.1126784,Benzo[k]Fluoranthene,LB
+37095,103.70744,Formaldehyde,LB
+37095,370.3752,Benzene,LB
+37095,0.03875672,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.1546349,Nitrous Oxide,TON
+37095,0.1237207,Sulfur Dioxide,TON
+37095,0.005030414,Sulfate Portion of PM2.5-PRI,TON
+37079,1.2789064e-05,Benz[a]Anthracene,LB
+37079,0.005925424,"1,3-Butadiene",LB
+37079,3.573194e-05,Anthracene,LB
+37079,0.09908594,Xylenes (Mixed Isomers),LB
+37079,3.353518e-08,Mercury,LB
+37079,0.014258216,Acetaldehyde,LB
+37079,3.373707e-05,Methane,TON
+37079,0.001176314,Nitrogen Oxides,TON
+37079,4.694138e-06,Sulfur Dioxide,TON
+37081,11.160806,Toluene,LB
+37081,0.4481558,Anthracene,LB
+37081,0.18704264,Chrysene,LB
+37081,0.09953686,Manganese,LB
+37081,59.48114,Acetaldehyde,LB
+37081,0.9038016,Fluorene,LB
+37081,0.6119049,PM25-Primary from certain diesel engines,TON
+37081,13.89844,Nitrogen Oxides,TON
+37081,0.6622231,PM2.5 Primary (Filt + Cond),TON
+37077,0.0988947,Benz[a]Anthracene,LB
+37077,2.059182,"1,3-Butadiene",LB
+37077,4.139956,Toluene,LB
+37077,4.061482,Xylenes (Mixed Isomers),LB
+37077,1.5395396e-05,Mercury,LB
+37077,0.003218966,Arsenic,LB
+37077,0.4044392,Fluorene,LB
+37077,2.538166,Carbon Monoxide,TON
+37077,0.2480475,PM10 Primary (Filt + Cond),TON
+37077,0.0204693,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.00744059,Sulfur Dioxide,TON
+37077,5.633916,Toluene,LB
+37077,74.47648,Formaldehyde,LB
+37077,7.004522,Carbon Monoxide,TON
+37077,500.0848,Carbon Dioxide,TON
+37077,0.000100158,Nitrate portion of PM2.5-PRI,TON
+37077,0.007621976,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.01705405,PM2.5 Primary (Filt + Cond),TON
+37077,0.4012021,Volatile Organic Compounds,TON
+37075,3.658308e-05,Nitrate portion of PM2.5-PRI,TON
+37075,0.001502545,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.0005510554,Sulfate Portion of PM2.5-PRI,TON
+37075,0.02880758,Pyrene,LB
+37075,0.0218819,Fluoranthene,LB
+37075,0.015981204,Acenaphthylene,LB
+37075,0.10264018,Ethyl Benzene,LB
+37063,3.859584,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.1731912,Sulfate Portion of PM2.5-PRI,TON
+37063,1.4268278e-06,Anthracene,LB
+37063,2.100892e-05,Propionaldehyde,LB
+37063,3.662976e-09,Chromium (VI),LB
+37063,2.883206e-06,Benzo[a]Pyrene,LB
+37063,1.893617e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,8.336792,Ethyl Benzene,LB
+37053,20.40534,Toluene,LB
+37053,2.123184,Pyrene,LB
+37053,1.1919854,Acenaphthylene,LB
+37053,22.63848,Benzene,LB
+37053,0.00011666446,Mercury,LB
+37053,0.0450729,Nickel,LB
+37053,0.7093776,Acenaphthene,LB
+37053,7.609545,Carbon Monoxide,TON
+37053,8483.698,Carbon Dioxide,TON
+37053,0.06438753,Sulfate Portion of PM2.5-PRI,TON
+37065,8.085744e-06,Nickel,LB
+37065,0.000985864,Acenaphthene,LB
+37065,9.338018e-05,Nitrous Oxide,TON
+37065,0.004518986,Acenaphthylene,LB
+37063,0.01215826,Carbon Monoxide,TON
+37063,0.002425687,Nitrogen Oxides,TON
+37063,5.042513e-05,PM2.5 Primary (Filt + Cond),TON
+37063,0.02571176,Hexane,LB
+37063,2.86567e-05,Anthracene,LB
+37063,5.816366e-05,Pyrene,LB
+37063,0.06023002,Xylenes (Mixed Isomers),LB
+37043,0.8005024,Ethyl Benzene,LB
+37043,1.359439,Propionaldehyde,LB
+37043,0.14875704,Fluoranthene,LB
+37043,0.003133103,Ammonia,TON
+37043,0.0009399447,Sulfate Portion of PM2.5-PRI,TON
+37031,0.2822648,Anthracene,LB
+37031,0.02725798,Chrysene,LB
+37031,0.004536358,Benzo[a]Pyrene,LB
+37031,13.207696,Naphthalene,LB
+37025,1.359659,Styrene,LB
+37025,9.129242,Toluene,LB
+37025,9.801424,Xylenes (Mixed Isomers),LB
+37025,0.00337034,"Dibenzo[a,h]Anthracene",LB
+37025,3.729418e-05,Mercury,LB
+37025,0.04809568,Nickel,LB
+37025,0.1876951,Methane,TON
+37025,0.199625,PM10 Primary (Filt + Cond),TON
+37025,1.1138586,Pyrene,LB
+37025,0.01532066,Sulfur Dioxide,TON
+37021,1.896974,Ammonia,TON
+37021,103.59684,"1,3-Butadiene",LB
+37021,10.104278,Acenaphthene,LB
+37021,47.53266,Phenanthrene,LB
+37021,8.74185,Methane,TON
+37021,13.57408,PM10-Primary from certain diesel engines,TON
+37019,9.91654,Fluoranthene,LB
+37019,1.317213,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.004275577,Nitrate portion of PM2.5-PRI,TON
+37019,75.55938,Ethyl Benzene,LB
+37019,2.780884,Styrene,LB
+37019,448.7722,Toluene,LB
+37019,0.10286588,Anthracene,LB
+37019,0.17558392,Fluoranthene,LB
+37019,0.12032366,Acenaphthene,LB
+37019,0.02764195,Organic Carbon portion of PM2.5-PRI,TON
+37019,35.31432,Hexane,LB
+37019,0.04004914,Anthracene,LB
+37019,83.12438,Xylenes (Mixed Isomers),LB
+37019,16.607992,Formaldehyde,LB
+37019,0.03488806,Manganese,LB
+37019,0.004260484,Arsenic,LB
+37019,0.09468938,Fluorene,LB
+37019,0.0136389,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.6690849,Volatile Organic Compounds,TON
+37019,0.011474292,"Dibenzo[a,h]Anthracene",LB
+37019,0.265948,Arsenic,LB
+37019,0.001687531,Nitrate portion of PM2.5-PRI,TON
+37019,205.7298,"1,3-Butadiene",LB
+37019,2.106868,Fluoranthene,LB
+37015,0.03662662,Styrene,LB
+37015,0.0244388,Acrolein,LB
+37015,3.47955,Xylenes (Mixed Isomers),LB
+37015,0.0004254114,Benzo[k]Fluoranthene,LB
+37015,0.0005737976,Benzo[a]Pyrene,LB
+37015,0.02726791,Volatile Organic Compounds,TON
+37009,3.121252,Acenaphthene,LB
+37009,0.2793976,Methane,TON
+37009,30.71984,Ethyl Benzene,LB
+37009,13.6353,Styrene,LB
+37009,0.5928562,Benz[a]Anthracene,LB
+37009,0.12429,Acrolein,LB
+37009,0.02263266,Acenaphthylene,LB
+37009,0.0015624164,Benzo[a]Pyrene,LB
+37009,3.561282e-05,"Dibenzo[a,h]Anthracene",LB
+37009,0.0009242116,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.429804,Anthracene,LB
+37001,13.600232,Benzene,LB
+37001,0.0009165239,Nitrate portion of PM2.5-PRI,TON
+37001,0.07454514,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.2995964,PM2.5 Primary (Filt + Cond),TON
+37001,0.01480041,Sulfate Portion of PM2.5-PRI,TON
+37055,16.670846,Toluene,LB
+37055,7.083118,Xylenes (Mixed Isomers),LB
+37175,7.707158,Toluene,LB
+37175,0.003153796,Anthracene,LB
+37175,0.8443292,Propionaldehyde,LB
+37175,7.036266,Xylenes (Mixed Isomers),LB
+37175,0.00503156,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.003502714,Acenaphthene,LB
+37175,3.213123,Carbon Monoxide,TON
+37175,0.006461938,Nitrous Oxide,TON
+37175,0.003050745,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,25.53072,Xylenes (Mixed Isomers),LB
+37163,0.011827116,Benzo[b]Fluoranthene,LB
+37163,0.02110506,Fluoranthene,LB
+37163,0.02175772,Benzo[a]Pyrene,LB
+37163,0.0008041606,Mercury,LB
+37163,0.010026936,Nickel,LB
+37163,0.660283,Naphthalene,LB
+37163,0.01360166,Organic Carbon portion of PM2.5-PRI,TON
+37163,0.009466465,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.0001180623,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.0002984248,Benzo[b]Fluoranthene,LB
+37193,0.0010209818,Fluoranthene,LB
+37193,0.0002804178,Benz[a]Anthracene,LB
+37189,11.552516,Toluene,LB
+37189,0.012168398,Manganese,LB
+37189,0.005295134,Acenaphthene,LB
+37189,0.04285814,Methane,TON
+37189,0.009988248,Nitrous Oxide,TON
+37189,0.05230257,PM10 Primary (Filt + Cond),TON
+37191,0.02968686,Propionaldehyde,LB
+37191,0.0014182746,"Benzo[g,h,i,]Perylene",LB
+37191,1.2237018e-05,"Dibenzo[a,h]Anthracene",LB
+37191,1.14801,"2,2,4-Trimethylpentane",LB
+37191,1.253747e-05,Arsenic,LB
+37191,0.0001273871,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,5.745027e-05,Sulfur Dioxide,TON
+37187,0.002280699,Organic Carbon portion of PM2.5-PRI,TON
+37187,1.8538224,Hexane,LB
+37183,2.879468,Formaldehyde,LB
+37183,0.006470754,Benz[a]Anthracene,LB
+37183,0.0019314472,Nickel,LB
+37183,0.006384393,Methane,TON
+37183,0.02169924,Sulfur Dioxide,TON
+37179,2.457896,Chrysene,LB
+37179,135.87426,Benzene,LB
+37179,0.1932394,Nickel,LB
+37177,0.4168098,Ethyl Benzene,LB
+37177,0.07633996,"1,3-Butadiene",LB
+37177,2.521384,Toluene,LB
+37177,0.0012205254,"Benzo[g,h,i,]Perylene",LB
+37177,0.0009688748,Fluoranthene,LB
+37177,0.2073634,Formaldehyde,LB
+37177,0.0002406606,Manganese,LB
+37177,0.2027426,Acetaldehyde,LB
+37177,1.449008e-06,Nitrate portion of PM2.5-PRI,TON
+37019,0.7941488,Ethyl Benzene,LB
+37019,1.9020372,Acrolein,LB
+37019,1.5670288,Toluene,LB
+37019,0.0336545,Chrysene,LB
+37019,0.0007063236,"Dibenzo[a,h]Anthracene",LB
+37019,0.0007983764,Arsenic,LB
+37019,0.9030999,Nitrogen Oxides,TON
+37011,1.6292444,"1,3-Butadiene",LB
+37011,2.83286,Toluene,LB
+37011,0.3633368,Pyrene,LB
+37011,9.35054e-06,Chromium (VI),LB
+37011,1.886483,Carbon Monoxide,TON
+37011,3.718846,Nitrogen Oxides,TON
+37011,0.7160848,Acenaphthylene,LB
+37011,0.18663772,Chrysene,LB
+37011,13.795852,Naphthalene,LB
+37011,0.03335815,Methane,TON
+37011,1836.966,Carbon Dioxide,TON
+37011,0.7390451,Volatile Organic Compounds,TON
+37023,1.0391156,"1,3-Butadiene",LB
+37023,0.020693,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.02042172,Benzo[a]Pyrene,LB
+37023,0.0006714846,Mercury,LB
+37023,1.121162,Nitrogen Oxides,TON
+37023,0.1123441,PM10 Primary (Filt + Cond),TON
+37023,0.03122513,PM2.5 Primary (Filt + Cond),TON
+37023,0.01207876,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.018705652,"1,3-Butadiene",LB
+37003,0.014827712,Acrolein,LB
+37003,0.2803402,Formaldehyde,LB
+37003,0.00018069176,Benzo[a]Pyrene,LB
+37003,0.3772628,Benzene,LB
+37003,0.0001158094,Arsenic,LB
+37003,10.84345,Carbon Dioxide,TON
+37003,0.000965875,PM10 Primary (Filt + Cond),TON
+37079,3.200218,Hexane,LB
+37079,0.0016916978,"Benzo[g,h,i,]Perylene",LB
+37079,0.09773794,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.01753326,Organic Carbon portion of PM2.5-PRI,TON
+37081,209.5252,Xylenes (Mixed Isomers),LB
+37081,17.978992,Acenaphthylene,LB
+37081,2.732088,Benzo[a]Pyrene,LB
+37081,1.644003,Manganese,LB
+37081,0.13608306,Arsenic,LB
+37081,0.08194593,Nitrous Oxide,TON
+37081,0.7594437,Ammonia,TON
+37081,21.12033,PM10 Primary (Filt + Cond),TON
+37071,0.7256774,Ethyl Benzene,LB
+37071,1.1332906,Propionaldehyde,LB
+37071,0.005013968,Benzo[b]Fluoranthene,LB
+37071,0.11679362,Acenaphthylene,LB
+37071,0.05471564,Benz[a]Anthracene,LB
+37071,0.15394196,Fluorene,LB
+37071,0.05706726,PM10-Primary from certain diesel engines,TON
+37071,0.01904763,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.0005604267,Nitrous Oxide,TON
+37071,0.02361146,Organic Carbon portion of PM2.5-PRI,TON
+37071,4.094264,PM10-Primary from certain diesel engines,TON
+37071,3.766716,PM25-Primary from certain diesel engines,TON
+37071,144.69196,"1,3-Butadiene",LB
+37071,25.31018,Fluorene,LB
+37069,305.4622,Propionaldehyde,LB
+37069,33338.48,Xylenes (Mixed Isomers),LB
+37069,4.372328,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,14460.274,Benzene,LB
+37069,366.1611,Nitrogen Oxides,TON
+37063,0.1912232,Sulfate Portion of PM2.5-PRI,TON
+37063,7.22696,Volatile Organic Compounds,TON
+37063,38.29162,"1,3-Butadiene",LB
+37063,0.03711012,"Dibenzo[a,h]Anthracene",LB
+37063,122.5377,Benzene,LB
+37063,0.5628708,Manganese,LB
+37059,1.3154306,Xylenes (Mixed Isomers),LB
+37059,0.0007157954,"Benzo[g,h,i,]Perylene",LB
+37059,0.0004712962,Benzo[k]Fluoranthene,LB
+37059,6.586874e-06,Mercury,LB
+37059,0.0569822,Acenaphthene,LB
+37059,0.1210504,Fluorene,LB
+37059,1.9642022,Naphthalene,LB
+37059,0.008768428,Methane,TON
+37059,0.102191,Volatile Organic Compounds,TON
+37065,0.07137492,Anthracene,LB
+37065,0.0004663844,Benzo[b]Fluoranthene,LB
+37065,0.0015627304,Benzo[a]Pyrene,LB
+37065,0.007391754,Manganese,LB
+37065,0.03382386,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.0225267,Benz[a]Anthracene,LB
+37065,1123.01,Carbon Dioxide,TON
+37065,2.842854,Nitrogen Oxides,TON
+37065,0.01922433,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.0002998368,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.00016391424,"Dibenzo[a,h]Anthracene",LB
+37061,0.3447426,Fluorene,LB
+37061,0.04948514,Methane,TON
+37061,0.0007078415,Nitrous Oxide,TON
+37061,0.03870333,PM10 Primary (Filt + Cond),TON
+37045,0.002087016,Styrene,LB
+37045,0.3242938,Toluene,LB
+37045,2.642314e-05,Chrysene,LB
+37045,3.972168e-05,Benzo[a]Pyrene,LB
+37045,6.80356e-08,Mercury,LB
+37045,1.3007608e-06,Arsenic,LB
+37045,0.00017697372,Fluorene,LB
+37045,9.717172e-06,Sulfur Dioxide,TON
+37045,1.036134e-06,Sulfate Portion of PM2.5-PRI,TON
+37039,0.0003294019,PM10 Primary (Filt + Cond),TON
+37039,0.0001704087,PM2.5 Primary (Filt + Cond),TON
+37039,0.004395061,Volatile Organic Compounds,TON
+37039,0.005051652,Acrolein,LB
+37039,0.0004566538,Pyrene,LB
+37039,0.00015966948,Benzo[a]Pyrene,LB
+37039,8.38598e-07,Mercury,LB
+37037,0.0003745499,PM10 Primary (Filt + Cond),TON
+37037,5.267878e-06,Sulfate Portion of PM2.5-PRI,TON
+37037,8.689918e-05,Benzo[b]Fluoranthene,LB
+37037,0.00015464796,Benzo[a]Pyrene,LB
+37037,0.0002417144,Fluorene,LB
+37037,0.04680716,Carbon Monoxide,TON
+37035,0.07744336,Pyrene,LB
+37035,0.012986292,Benzo[b]Fluoranthene,LB
+37035,0.017409812,Benzo[a]Pyrene,LB
+37035,753.7153,Carbon Dioxide,TON
+37035,0.00367632,Elemental Carbon portion of PM2.5-PRI,TON
+37025,8.17929,Fluoranthene,LB
+37025,2.601562,Benz[a]Anthracene,LB
+37025,551.704,Acetaldehyde,LB
+37025,137.41206,Naphthalene,LB
+37025,6.687236,Volatile Organic Compounds,TON
+37025,123.92302,Hexane,LB
+37025,0.009847654,Manganese,LB
+37025,0.00010487856,Mercury,LB
+37025,0.03147898,Fluorene,LB
+37025,0.001826493,Elemental Carbon portion of PM2.5-PRI,TON
+37025,9.20181,Ethyl Benzene,LB
+37025,0.3545942,Styrene,LB
+37025,1.6132006,"1,3-Butadiene",LB
+37025,13.79953,Hexane,LB
+37025,0.01341866,Anthracene,LB
+37025,0.0709013,Acenaphthylene,LB
+37025,0.02560874,Benzo[k]Fluoranthene,LB
+37025,0.09874204,Acenaphthene,LB
+37025,0.0385493,Methane,TON
+37025,0.02228213,Organic Carbon portion of PM2.5-PRI,TON
+37007,5.693834e-06,Chromium (VI),LB
+37007,0.005353384,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.004066744,Chrysene,LB
+37007,4.778394,Acetaldehyde,LB
+37007,0.00119102,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.007960183,Nitrous Oxide,TON
+37007,0.0002640971,Sulfate Portion of PM2.5-PRI,TON
+37001,0.004775816,"Benzo[g,h,i,]Perylene",LB
+37001,0.0007888903,Organic Carbon portion of PM2.5-PRI,TON
+37001,1.2055968,Ethyl Benzene,LB
+37001,0.03010316,Acrolein,LB
+37001,0.003303072,Pyrene,LB
+37001,0.008724386,Acenaphthylene,LB
+37001,0.0014656776,Benzo[a]Pyrene,LB
+37189,4.318504,Styrene,LB
+37189,0.013206494,"Benzo[g,h,i,]Perylene",LB
+37189,0.2632472,Manganese,LB
+37189,0.2114647,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,4.267964,Chrysene,LB
+37183,4343.684,Formaldehyde,LB
+37183,0.0016124744,Mercury,LB
+37183,0.3371368,Arsenic,LB
+37183,96.49603,Carbon Monoxide,TON
+37183,170.7061,Nitrogen Oxides,TON
+37183,16.26201,PM10 Primary (Filt + Cond),TON
+37199,0.198961,Methane,TON
+37199,0.0286524,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,9.88596,Styrene,LB
+37199,0.011592222,Benzo[b]Fluoranthene,LB
+37199,0.0016125092,Benzo[k]Fluoranthene,LB
+37199,2.26263,Acenaphthene,LB
+37199,5.854848,Phenanthrene,LB
+37199,419.5796,Ethyl Benzene,LB
+37195,2.66744,Benzene,LB
+37195,0.244718,Volatile Organic Compounds,TON
+37115,0.3184886,Hexane,LB
+37115,0.2227806,"2,2,4-Trimethylpentane",LB
+37115,0.00013250922,Manganese,LB
+37115,2.567248e-05,Arsenic,LB
+37115,0.006340774,Volatile Organic Compounds,TON
+37109,0.2406504,PM25-Primary from certain diesel engines,TON
+37109,0.06721898,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.2681161,PM2.5 Primary (Filt + Cond),TON
+37109,0.04354787,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.3491436,Anthracene,LB
+37109,0.8520962,Pyrene,LB
+37109,0.04398176,Benzo[a]Pyrene,LB
+37109,18468.886,Toluene,LB
+37101,0.09579283,PM10-Primary from certain diesel engines,TON
+37101,0.0005566989,Nitrous Oxide,TON
+37101,0.0004558655,Nitrate portion of PM2.5-PRI,TON
+37101,3.007058,Acrolein,LB
+37101,0.9308966,Hexane,LB
+37101,2.065884,Propionaldehyde,LB
+37101,0.217408,Acenaphthylene,LB
+37101,0.001289935,Arsenic,LB
+37095,3.136544,Benzene,LB
+37095,0.11297034,Acenaphthene,LB
+37095,0.03665178,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.4943874,Styrene,LB
+37095,1.1109704,"1,3-Butadiene",LB
+37095,0.12389864,Anthracene,LB
+37095,0.0015843566,"Benzo[g,h,i,]Perylene",LB
+37095,0.0500966,Chrysene,LB
+37095,0.02600992,Benzo[a]Pyrene,LB
+37083,0.03405714,Propionaldehyde,LB
+37083,0.001931797,PM2.5 Primary (Filt + Cond),TON
+37053,273.486,Formaldehyde,LB
+37053,24.65332,Benzene,LB
+37053,0.0882417,Manganese,LB
+37053,1.7808584,Fluorene,LB
+37053,28.9051,Naphthalene,LB
+37053,0.1689487,Methane,TON
+37053,0.009764741,Nitrous Oxide,TON
+37053,10.64414,Nitrogen Oxides,TON
+37053,0.7561316,Benzo[k]Fluoranthene,LB
+37053,0.02549644,"Dibenzo[a,h]Anthracene",LB
+37053,2.22907,Acenaphthene,LB
+37053,42.20932,Propionaldehyde,LB
+37051,8536.402,Toluene,LB
+37051,0.002779918,Chromium (VI),LB
+37051,0.7470576,Benzo[b]Fluoranthene,LB
+37051,5.08038,Fluorene,LB
+37051,0.2627369,Elemental Carbon portion of PM2.5-PRI,TON
+37051,3.171405,Ammonia,TON
+37051,5.532868,PM10 Primary (Filt + Cond),TON
+37029,8.302062e-06,Mercury,LB
+37029,0.03700569,PM10-Primary from certain diesel engines,TON
+37029,0.001979377,Sulfur Dioxide,TON
+37029,0.4778002,Styrene,LB
+37029,1.0823754,"1,3-Butadiene",LB
+37023,7.551708,Hexane,LB
+37023,0.16202836,Propionaldehyde,LB
+37023,0.014947756,Pyrene,LB
+37023,0.004309624,Benzo[b]Fluoranthene,LB
+37023,0.00713945,Benzo[a]Pyrene,LB
+37023,6.470856,"2,2,4-Trimethylpentane",LB
+37023,0.4463292,Naphthalene,LB
+37171,4.326886,Benzene,LB
+37171,0.00011539132,Manganese,LB
+37171,1.513497,Acetaldehyde,LB
+37171,0.009527534,Fluorene,LB
+37171,0.11437646,Styrene,LB
+37171,0.002196642,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.0015250638,Benzo[b]Fluoranthene,LB
+37171,0.02143972,Acenaphthylene,LB
+37171,0.002195364,Benzo[a]Pyrene,LB
+37171,5.047594e-05,"Dibenzo[a,h]Anthracene",LB
+37171,4.304248,"2,2,4-Trimethylpentane",LB
+37171,175.2652,Styrene,LB
+37171,1137.2904,"1,3-Butadiene",LB
+37171,32367.8,Toluene,LB
+37171,13.11414,"Benzo[g,h,i,]Perylene",LB
+37171,7830.318,Benzene,LB
+37171,1.358502,Nickel,LB
+37171,3.228711,Sulfur Dioxide,TON
+37167,0.16932794,Manganese,LB
+37167,5.155606,Phenanthrene,LB
+37167,1.185295,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.009091831,Nitrous Oxide,TON
+37167,31.38122,Acrolein,LB
+37167,9.860344,Hexane,LB
+37167,4.444378,Pyrene,LB
+37167,24.91692,Xylenes (Mixed Isomers),LB
+37167,0.00010059344,Chromium (VI),LB
+37167,0.10237716,Benzo[b]Fluoranthene,LB
+37167,3.344058,Fluoranthene,LB
+37167,392.208,Formaldehyde,LB
+37165,7.012562,"1,3-Butadiene",LB
+37165,18.624552,Acrolein,LB
+37165,11.849554,Propionaldehyde,LB
+37165,2.05231,Pyrene,LB
+37165,0.01074895,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.14125422,Benzo[a]Pyrene,LB
+37165,0.6866849,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.009716291,Nitrous Oxide,TON
+37165,0.220073,Nitrogen Oxides,TON
+37165,0.0166879,PM10 Primary (Filt + Cond),TON
+37165,0.0003263915,Sulfate Portion of PM2.5-PRI,TON
+37165,0.08053916,Styrene,LB
+37165,0.4312808,Acrolein,LB
+37165,0.0542417,Pyrene,LB
+37165,0.00015324536,Benzo[k]Fluoranthene,LB
+37165,0.0010873936,Manganese,LB
+37165,0.017284908,Ethyl Benzene,LB
+37165,0.02217532,Hexane,LB
+37165,0.0005972562,Propionaldehyde,LB
+37165,1.1734396e-05,Benz[a]Anthracene,LB
+37165,1.753904e-05,Methane,TON
+37165,3.420357e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37165,5.409557e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,298.5032,Styrene,LB
+37153,1698.1726,"1,3-Butadiene",LB
+37153,18.086434,Fluoranthene,LB
+37153,2.661741,Sulfur Dioxide,TON
+37135,1.214326,Styrene,LB
+37135,7.79133,Xylenes (Mixed Isomers),LB
+37135,0.1398539,Chrysene,LB
+37135,0.03920302,Manganese,LB
+37135,0.2815934,Acenaphthene,LB
+37135,0.003153714,Nitrous Oxide,TON
+37135,0.1060159,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.01302435,Sulfur Dioxide,TON
+37131,2.193496e-06,Chromium (VI),LB
+37131,0.004776532,Fluoranthene,LB
+37131,0.0015228964,Chrysene,LB
+37131,0.0004204096,Arsenic,LB
+37131,0.9444998,Acetaldehyde,LB
+37131,0.006199956,Fluorene,LB
+37131,6772.374,Xylenes (Mixed Isomers),LB
+37131,2.705016,Acenaphthene,LB
+37131,53637.26,Carbon Dioxide,TON
+37131,1.125131,Sulfur Dioxide,TON
+37117,0.06958896,Fluorene,LB
+37117,14.76725,Carbon Monoxide,TON
+37117,0.6777066,Propionaldehyde,LB
+37117,1.3094856e-05,Chromium (VI),LB
+37117,0.1563909,Acenaphthylene,LB
+37117,0.008919562,Chrysene,LB
+37117,0.0002569862,"Dibenzo[a,h]Anthracene",LB
+37117,0.00013127856,Mercury,LB
+37117,11.34873,Acetaldehyde,LB
+37125,0.016313,"1,3-Butadiene",LB
+37125,0.00012289706,Anthracene,LB
+37125,2.191966e-06,"Dibenzo[a,h]Anthracene",LB
+37125,0.17402122,Benzene,LB
+37125,0.04667714,Acetaldehyde,LB
+37125,0.04003109,Carbon Monoxide,TON
+37125,3.062448e-06,Sulfate Portion of PM2.5-PRI,TON
+37123,0.5100576,Volatile Organic Compounds,TON
+37123,1.2547474,Styrene,LB
+37123,2.841524,"1,3-Butadiene",LB
+37123,0.4653352,Pyrene,LB
+37123,0.00728832,Benzo[a]Pyrene,LB
+37109,0.0012196732,Benzo[k]Fluoranthene,LB
+37109,0.0960369,Benz[a]Anthracene,LB
+37109,3.722526,Benzene,LB
+37109,0.02829285,Methane,TON
+37109,0.03875232,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.03380222,Benzo[a]Pyrene,LB
+37103,0.0013759494,"Dibenzo[a,h]Anthracene",LB
+37103,0.0014146684,Arsenic,LB
+37103,0.251718,Volatile Organic Compounds,TON
+37093,0.0005890306,Acrolein,LB
+37093,0.10792334,Toluene,LB
+37093,7.552122e-06,Chrysene,LB
+37093,9.19595e-06,Benzo[a]Pyrene,LB
+37093,0.010214818,Acetaldehyde,LB
+37093,1.796089e-05,Nitrous Oxide,TON
+37093,9.97884e-06,PM2.5 Primary (Filt + Cond),TON
+37093,2.675942e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.00011522162,"Dibenzo[a,h]Anthracene",LB
+37091,0.004081778,Benz[a]Anthracene,LB
+37091,0.008111362,Ammonia,TON
+37091,0.3068516,Acrolein,LB
+37091,0.013298554,Anthracene,LB
+37089,98.1802,Toluene,LB
+37089,55.25154,Xylenes (Mixed Isomers),LB
+37089,0.7202455,Nitrogen Oxides,TON
+37089,0.004132787,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.004040521,Sulfur Dioxide,TON
+37073,0.0775144,Propionaldehyde,LB
+37073,0.006259994,Pyrene,LB
+37073,7.56768e-07,Chromium (VI),LB
+37073,0.0013020438,Benzo[a]Pyrene,LB
+37073,0.0001450456,Arsenic,LB
+37073,1.543953,Carbon Monoxide,TON
+37073,0.001497869,PM2.5 Primary (Filt + Cond),TON
+37073,0.0004602515,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.09817635,Volatile Organic Compounds,TON
+37081,16.733928,Anthracene,LB
+37081,656.7706,Naphthalene,LB
+37081,338.4679,Carbon Monoxide,TON
+37075,0.0013575438,Benzo[b]Fluoranthene,LB
+37075,0.04552454,Fluoranthene,LB
+37075,0.00869322,Chrysene,LB
+37075,0.003491213,Methane,TON
+37075,0.005529786,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.0001928823,Nitrous Oxide,TON
+37073,317.1924,Ethyl Benzene,LB
+37073,1183.7932,Xylenes (Mixed Isomers),LB
+37073,618.1548,"2,2,4-Trimethylpentane",LB
+37069,0.4366196,Pyrene,LB
+37069,0.0143229,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.1950704,Ammonia,TON
+37059,0.1261386,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.03612239,Sulfur Dioxide,TON
+37059,14.266888,Propionaldehyde,LB
+37059,15.414496,Xylenes (Mixed Isomers),LB
+37059,0.06000814,Benzo[b]Fluoranthene,LB
+37059,256.5668,Formaldehyde,LB
+37059,1.335749,PM10-Primary from certain diesel engines,TON
+37115,0.8665614,Acetaldehyde,LB
+37115,0.003765408,Naphthalene,LB
+37115,0.00208809,Styrene,LB
+37115,0.0001405468,Pyrene,LB
+37115,0.00015131402,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,6.917664e-05,Benz[a]Anthracene,LB
+37083,0.3454128,Propionaldehyde,LB
+37083,3.116392,Xylenes (Mixed Isomers),LB
+37083,0.006646594,Acenaphthylene,LB
+37083,0.003408074,Benzo[a]Pyrene,LB
+37083,4.574928,Benzene,LB
+37083,0.003462928,Arsenic,LB
+37083,0.01607625,Ammonia,TON
+37083,1.215453e-05,Nitrate portion of PM2.5-PRI,TON
+37083,0.007626238,Sulfur Dioxide,TON
+37083,0.0001433633,Sulfate Portion of PM2.5-PRI,TON
+37079,0.09930848,Styrene,LB
+37079,0.003132706,Anthracene,LB
+37079,0.002478486,Chrysene,LB
+37079,0.02747204,Methane,TON
+37079,4.3666,Carbon Monoxide,TON
+37175,0.02837696,Pyrene,LB
+37175,0.00015835314,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,2.832944,Formaldehyde,LB
+37175,0.001243426,Methane,TON
+37175,0.0004769232,Ammonia,TON
+37175,0.0001944048,Sulfate Portion of PM2.5-PRI,TON
+37175,0.004783136,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.001424565,Sulfur Dioxide,TON
+37175,0.0002529328,Benzo[k]Fluoranthene,LB
+37169,9.906988,"1,3-Butadiene",LB
+37169,1.4287532,Propionaldehyde,LB
+37169,0.003227566,Arsenic,LB
+37169,29.41234,Carbon Monoxide,TON
+37169,7.88644,Ethyl Benzene,LB
+37169,0.08062732,Phenanthrene,LB
+37167,7.26037,Styrene,LB
+37167,14.211144,"1,3-Butadiene",LB
+37167,0.280586,Anthracene,LB
+37167,0.09362684,Benzo[b]Fluoranthene,LB
+37167,4.147625,Nitrogen Oxides,TON
+37167,0.1941765,PM10 Primary (Filt + Cond),TON
+37163,0.4538126,Styrene,LB
+37163,0.011401402,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.007371878,Benzo[k]Fluoranthene,LB
+37163,0.03848582,Fluorene,LB
+37163,0.005800442,Nitrous Oxide,TON
+37163,0.003260382,Sulfur Dioxide,TON
+37161,1.5367572,Hexane,LB
+37161,0.19050102,Anthracene,LB
+37161,0.0017247164,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.006772472,Benzo[b]Fluoranthene,LB
+37161,0.0009324944,Benzo[k]Fluoranthene,LB
+37161,0.3416644,Acenaphthylene,LB
+37161,0.6344076,Phenanthrene,LB
+37161,742.5661,Carbon Dioxide,TON
+37161,0.0004194944,Nitrate portion of PM2.5-PRI,TON
+37157,0.00010334254,Manganese,LB
+37157,0.003599626,Fluorene,LB
+37157,10.19112,Carbon Dioxide,TON
+37157,0.0002661309,Ammonia,TON
+37157,0.001191904,PM2.5 Primary (Filt + Cond),TON
+37157,0.04318944,Styrene,LB
+37139,3.510354,Toluene,LB
+37139,1.1672242e-05,Chromium (VI),LB
+37139,0.006420528,Benzo[b]Fluoranthene,LB
+37139,0.000882167,Benzo[k]Fluoranthene,LB
+37139,0.1840208,Acenaphthene,LB
+37139,0.5748056,Phenanthrene,LB
+37139,2.12134,Carbon Monoxide,TON
+37139,0.01632685,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.3207151,Volatile Organic Compounds,TON
+37125,5.94939,Ethyl Benzene,LB
+37125,0.019399104,Benzo[a]Pyrene,LB
+37125,0.00778084,Sulfate Portion of PM2.5-PRI,TON
+37069,0.1740149,Ethyl Benzene,LB
+37069,0.07190932,Propionaldehyde,LB
+37069,2.317156e-05,Mercury,LB
+37069,0.001689315,Phenanthrene,LB
+37069,0.0003703763,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.02077475,Volatile Organic Compounds,TON
+37065,0.03776526,"1,3-Butadiene",LB
+37065,0.3100324,Hexane,LB
+37065,0.0737885,Propionaldehyde,LB
+37065,0.0008196604,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.0004235282,Benzo[b]Fluoranthene,LB
+37065,0.0003183524,Chrysene,LB
+37065,0.0012713566,Manganese,LB
+37065,0.0017678326,Phenanthrene,LB
+37065,0.015992444,Naphthalene,LB
+37061,1.2302446,Formaldehyde,LB
+37061,0.0008348416,Nickel,LB
+37061,0.0012801106,Arsenic,LB
+37061,0.03265002,Naphthalene,LB
+37061,0.005784843,Ammonia,TON
+37061,5.165322e-06,Nitrate portion of PM2.5-PRI,TON
+37171,0.2780562,Styrene,LB
+37171,0.01167948,Benzo[k]Fluoranthene,LB
+37171,0.0445517,Acenaphthylene,LB
+37171,0.009612682,Acenaphthene,LB
+37171,1.300601,Nitrogen Oxides,TON
+37165,0.004350412,Benzo[b]Fluoranthene,LB
+37165,0.007716786,Fluorene,LB
+37165,2.958232e-05,Nitrate portion of PM2.5-PRI,TON
+37147,14.598854,"2,2,4-Trimethylpentane",LB
+37171,101.31236,"1,3-Butadiene",LB
+37171,0.0007269944,Chromium (VI),LB
+37171,1.029301,Chrysene,LB
+37171,0.11708052,Arsenic,LB
+37171,329.927,Naphthalene,LB
+37171,0.563647,Ammonia,TON
+37171,62.15534,Nitrogen Oxides,TON
+37171,0.07141132,Sulfate Portion of PM2.5-PRI,TON
+37169,0.0007659064,Benzo[b]Fluoranthene,LB
+37169,6.994404e-07,Mercury,LB
+37169,1.3372184e-05,Arsenic,LB
+37169,0.0002216732,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.15600334,"1,3-Butadiene",LB
+37169,0.0250918,Propionaldehyde,LB
+37169,6.976868e-08,Chromium (VI),LB
+37169,0.003604648,"Benzo[g,h,i,]Perylene",LB
+37165,4.088142,Ethyl Benzene,LB
+37165,0.002905964,Benzo[k]Fluoranthene,LB
+37165,0.0007008618,Arsenic,LB
+37165,2.244258,Acetaldehyde,LB
+37165,201.5121,Carbon Dioxide,TON
+37165,0.005326404,Ammonia,TON
+37165,0.02432407,PM10 Primary (Filt + Cond),TON
+37165,8.61908,Acrolein,LB
+37165,0.442319,"Benzo[g,h,i,]Perylene",LB
+37165,0.12259576,Chrysene,LB
+37165,138.2486,Formaldehyde,LB
+37165,0.00381497,"Dibenzo[a,h]Anthracene",LB
+37165,0.12553106,Benz[a]Anthracene,LB
+37165,0.04818564,Nickel,LB
+37165,0.9015132,Fluorene,LB
+37165,7148.193,Carbon Dioxide,TON
+37165,0.03910556,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.5759449,PM10 Primary (Filt + Cond),TON
+37165,0.01887943,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,624.4388,Xylenes (Mixed Isomers),LB
+37165,0.0491067,Chrysene,LB
+37165,0.05086914,Benz[a]Anthracene,LB
+37165,0.16488898,Acenaphthene,LB
+37155,0.2477312,Acrolein,LB
+37155,11.072146,Hexane,LB
+37155,0.008725554,Benz[a]Anthracene,LB
+37155,0.002847983,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.009958874,Sulfur Dioxide,TON
+37155,0.0006150639,Sulfate Portion of PM2.5-PRI,TON
+37005,0.4979734,Benzene,LB
+37005,0.0001259838,Nickel,LB
+37005,0.00016003884,Acenaphthene,LB
+37005,13.71648,Carbon Dioxide,TON
+37005,0.0008965258,PM10 Primary (Filt + Cond),TON
+37169,0.003734464,Benz[a]Anthracene,LB
+37169,0.004606016,Arsenic,LB
+37169,0.02667322,Phenanthrene,LB
+37169,4.539352,Carbon Monoxide,TON
+37169,0.03362591,PM10 Primary (Filt + Cond),TON
+37169,2.716954,Ethyl Benzene,LB
+37129,1.342234,Ethyl Benzene,LB
+37129,0.06122714,Styrene,LB
+37129,0.003714736,Fluoranthene,LB
+37129,0.009810776,Acenaphthylene,LB
+37129,0.0001131416,"Dibenzo[a,h]Anthracene",LB
+37129,0.0002799222,Mercury,LB
+37129,0.11048174,Naphthalene,LB
+37007,0.009733507,Nitrogen Oxides,TON
+37007,0.12498104,Ethyl Benzene,LB
+37007,0.2314266,Benzene,LB
+37019,9937.048,Benzene,LB
+37019,9.227212,Acenaphthene,LB
+37019,235730.9,Carbon Dioxide,TON
+37005,0.0938405,Acrolein,LB
+37005,0.0917042,Toluene,LB
+37005,0.03105446,Hexane,LB
+37005,0.1124202,Benzene,LB
+37005,0.0002212976,Manganese,LB
+37005,0.0007081699,Methane,TON
+37005,0.00266529,PM10-Primary from certain diesel engines,TON
+37005,0.02137252,Anthracene,LB
+37005,0.000271173,"Benzo[g,h,i,]Perylene",LB
+37005,0.03303616,Acenaphthylene,LB
+37005,0.00018070422,"Dibenzo[a,h]Anthracene",LB
+37005,0.01965699,Acenaphthene,LB
+37005,0.005391464,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.0002256772,Nitrous Oxide,TON
+37005,0.00177858,Ammonia,TON
+37005,0.002702664,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.03612966,Volatile Organic Compounds,TON
+37081,3.494444,"2,2,4-Trimethylpentane",LB
+37081,0.005312514,Nickel,LB
+37081,0.009512826,Nitrous Oxide,TON
+37081,0.2194173,Volatile Organic Compounds,TON
+37081,0.009586998,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.004900838,Benzo[k]Fluoranthene,LB
+37039,0.013427276,Styrene,LB
+37039,0.0009578849,Nitrous Oxide,TON
+37039,3.020826e-06,Nitrate portion of PM2.5-PRI,TON
+37029,4.686312e-05,Chrysene,LB
+37029,5.336786e-05,Acenaphthene,LB
+37029,8.87698,Carbon Dioxide,TON
+37029,0.0002697038,Sulfur Dioxide,TON
+37025,4.699124,Benzene,LB
+37025,0.431113,Volatile Organic Compounds,TON
+37011,0.0004326078,Pyrene,LB
+37011,0.0004449956,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.0002357766,Benzo[k]Fluoranthene,LB
+37011,0.0004197908,Manganese,LB
+37011,0.0003286862,Arsenic,LB
+37011,0.00199288,Methane,TON
+37011,0.001809104,PM10 Primary (Filt + Cond),TON
+37123,1.0181036,Hexane,LB
+37123,0.9111162,Benzene,LB
+37113,0.5646818,Hexane,LB
+37113,0.0008973256,Benzo[a]Pyrene,LB
+37113,1.6619272,Benzene,LB
+37113,0.001304671,Manganese,LB
+37113,0.08451913,Volatile Organic Compounds,TON
+37101,306.3522,Acetaldehyde,LB
+37101,3827.573,Carbon Dioxide,TON
+37101,0.01392468,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.2056203,Ammonia,TON
+37101,2.592538,Acrolein,LB
+37101,52.73692,Xylenes (Mixed Isomers),LB
+37101,0.0002174992,Chromium (VI),LB
+37101,0.05931986,Benzo[a]Pyrene,LB
+37101,27.21512,"2,2,4-Trimethylpentane",LB
+37117,0.002046712,Chrysene,LB
+37117,0.00019270032,Nickel,LB
+37117,0.4079822,Naphthalene,LB
+37117,3.170825,Carbon Monoxide,TON
+37117,8.035261e-06,Nitrate portion of PM2.5-PRI,TON
+37117,0.001429828,Organic Carbon portion of PM2.5-PRI,TON
+37111,2.476883,PM25-Primary from certain diesel engines,TON
+37111,69.13629,Nitrogen Oxides,TON
+37111,2.580759,PM2.5 Primary (Filt + Cond),TON
+37111,16.560826,"1,3-Butadiene",LB
+37111,0.012863192,Benzo[k]Fluoranthene,LB
+37111,569.1322,Formaldehyde,LB
+37111,0.3088628,Benzo[a]Pyrene,LB
+37119,0.007187387,Sulfate Portion of PM2.5-PRI,TON
+37119,2.013406,Ethyl Benzene,LB
+37119,1.7143602,"1,3-Butadiene",LB
+37119,4.88971,Toluene,LB
+37119,5.232464,Xylenes (Mixed Isomers),LB
+37119,0.012138196,Benzo[b]Fluoranthene,LB
+37119,0.3842182,Fluorene,LB
+37119,2.549479,Nitrogen Oxides,TON
+37113,9.235958,"2,2,4-Trimethylpentane",LB
+37113,5.132904e-06,Mercury,LB
+37113,0.6060554,Naphthalene,LB
+37113,3.750863,Carbon Monoxide,TON
+37113,0.00472617,Nitrous Oxide,TON
+37113,0.0009580419,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.809,Chrysene,LB
+37109,0.017469294,"Dibenzo[a,h]Anthracene",LB
+37109,0.02367224,Arsenic,LB
+37109,33.5633,Toluene,LB
+37109,0.0001267052,Chromium (VI),LB
+37109,0.12747882,Benzo[b]Fluoranthene,LB
+37109,1.449841,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.00742636,Nitrate portion of PM2.5-PRI,TON
+37109,0.6132149,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.006621218,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,19.040246,Naphthalene,LB
+37091,9328.144,Carbon Dioxide,TON
+37091,22.31739,Nitrogen Oxides,TON
+37103,0.2995632,Styrene,LB
+37103,1.7960344,Acrolein,LB
+37103,0.005307642,Ammonia,TON
+37103,0.006453044,PM2.5 Primary (Filt + Cond),TON
+37103,0.128373,Volatile Organic Compounds,TON
+37095,0.003848318,Acenaphthylene,LB
+37095,0.0004951186,Benzo[a]Pyrene,LB
+37095,0.018239976,"2,2,4-Trimethylpentane",LB
+37095,0.06691772,Benzene,LB
+37095,0.0006353787,Elemental Carbon portion of PM2.5-PRI,TON
+37095,1.761465e-05,Nitrous Oxide,TON
+37089,5.33574,Fluoranthene,LB
+37089,1.000879,Chrysene,LB
+37089,1.7048626,Benz[a]Anthracene,LB
+37089,10257.05,Carbon Dioxide,TON
+37089,0.3744005,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,26.35716,Ethyl Benzene,LB
+37089,20.35516,Hexane,LB
+37089,0.03173854,"Benzo[g,h,i,]Perylene",LB
+37083,80.7489,Toluene,LB
+37083,55.42584,"2,2,4-Trimethylpentane",LB
+37087,14.152128,Acrolein,LB
+37087,529.6354,Hexane,LB
+37087,0.6406712,Anthracene,LB
+37087,1.101162,Fluoranthene,LB
+37087,3.394788,Acenaphthylene,LB
+37061,0.009218417,Nitrate portion of PM2.5-PRI,TON
+37061,0.08376423,Sulfur Dioxide,TON
+37061,9.495948,"1,3-Butadiene",LB
+37061,0.0010523998,Benzo[k]Fluoranthene,LB
+37061,294.4194,Formaldehyde,LB
+37061,0.0010448906,"Dibenzo[a,h]Anthracene",LB
+37061,0.2065256,Benz[a]Anthracene,LB
+37061,0.04551584,Nickel,LB
+37061,0.01070935,Sulfate Portion of PM2.5-PRI,TON
+37055,0.0361952,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.0049532,Ammonia,TON
+37055,0.00287388,Sulfur Dioxide,TON
+37055,0.4512094,Ethyl Benzene,LB
+37055,0.0008434364,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,1.6268914,Xylenes (Mixed Isomers),LB
+37039,0.0007409784,Benzo[k]Fluoranthene,LB
+37039,0.1151465,Acenaphthylene,LB
+37039,0.5674608,"2,2,4-Trimethylpentane",LB
+37039,0.003526544,Nickel,LB
+37039,0.02556862,Organic Carbon portion of PM2.5-PRI,TON
+37037,1.122713,Styrene,LB
+37037,6.160402,Acrolein,LB
+37037,0.0019907732,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.007816118,Benzo[b]Fluoranthene,LB
+37037,0.02620506,Benzo[a]Pyrene,LB
+37037,0.01061236,Nickel,LB
+37037,0.4854332,Fluorene,LB
+37037,3.104704,Carbon Monoxide,TON
+37037,0.170634,PM10-Primary from certain diesel engines,TON
+37025,2.685024e-05,"Benzo[g,h,i,]Perylene",LB
+37025,107.49376,Formaldehyde,LB
+37025,8.952296e-05,Benz[a]Anthracene,LB
+37025,0.002273168,Phenanthrene,LB
+37025,0.6871949,Nitrogen Oxides,TON
+37025,0.0001678302,Sulfate Portion of PM2.5-PRI,TON
+37029,0.003086596,Acrolein,LB
+37029,8.623622e-05,Chrysene,LB
+37029,2.204064e-07,Mercury,LB
+37029,1.421506,Carbon Dioxide,TON
+37029,2.971411e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.2770724,Xylenes (Mixed Isomers),LB
+37131,0.07775006,Ethyl Benzene,LB
+37131,0.001272292,Ammonia,TON
+37131,0.001497972,PM10 Primary (Filt + Cond),TON
+37131,0.0004793502,PM2.5 Primary (Filt + Cond),TON
+37169,2.926244,Styrene,LB
+37169,15.928312,Acrolein,LB
+37169,0.011765788,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.006337184,Benzo[k]Fluoranthene,LB
+37169,0.1549565,Benzo[a]Pyrene,LB
+37169,0.5089474,Benz[a]Anthracene,LB
+37169,0.6703724,Acenaphthene,LB
+37169,20.14905,Nitrogen Oxides,TON
+37155,0.001611499,Nitrate portion of PM2.5-PRI,TON
+37155,0.1331596,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.0157063,Sulfate Portion of PM2.5-PRI,TON
+37155,1.2050166,Pyrene,LB
+37155,0.003822854,"Dibenzo[a,h]Anthracene",LB
+37155,0.06586235,Methane,TON
+37155,0.3357135,PM25-Primary from certain diesel engines,TON
+37163,0.3152472,Benzo[k]Fluoranthene,LB
+37163,20.3941,Volatile Organic Compounds,TON
+37153,0.5688169,Elemental Carbon portion of PM2.5-PRI,TON
+37153,135.53,Nitrogen Oxides,TON
+37153,0.9952175,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,8.378338,Pyrene,LB
+37145,3.00528,Phenanthrene,LB
+37145,1.737295,Fluorene,LB
+37145,1.174173,PM10-Primary from certain diesel engines,TON
+37145,1.080217,PM25-Primary from certain diesel engines,TON
+37145,0.004597623,Nitrous Oxide,TON
+37145,1.330088,Volatile Organic Compounds,TON
+37145,3.356566,Styrene,LB
+37145,0.8816074,Anthracene,LB
+37145,5.594604e-05,Chromium (VI),LB
+37145,0.008434478,Benzo[k]Fluoranthene,LB
+37145,21.35854,Benzene,LB
+37129,0.0016756056,"1,3-Butadiene",LB
+37129,2.53775e-06,Nickel,LB
+37129,0.0005836978,Arsenic,LB
+37129,0.0002697612,Naphthalene,LB
+37129,0.0008027604,Sulfur Dioxide,TON
+37139,0.064254,"1,3-Butadiene",LB
+37139,0.16375104,Formaldehyde,LB
+37139,4.55025e-07,Mercury,LB
+37139,0.0001095549,Nitrous Oxide,TON
+37139,1.238247e-06,Nitrate portion of PM2.5-PRI,TON
+37139,1.203778e-05,Sulfate Portion of PM2.5-PRI,TON
+37139,0.11954588,Anthracene,LB
+37139,0.14358374,"Benzo[g,h,i,]Perylene",LB
+37139,0.012707796,Manganese,LB
+37139,0.0005367382,Mercury,LB
+37139,0.01026172,Arsenic,LB
+37139,7.256132,Naphthalene,LB
+37139,0.02992762,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.0147333,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,5.622457,Carbon Monoxide,TON
+37127,0.3514728,PM10-Primary from certain diesel engines,TON
+37127,0.003945938,Nitrous Oxide,TON
+37127,3.453774,Hexane,LB
+37127,3.762982e-05,Chromium (VI),LB
+37127,0.002296624,"Dibenzo[a,h]Anthracene",LB
+37013,0.003312568,Benzo[k]Fluoranthene,LB
+37013,0.08132834,Benzo[a]Pyrene,LB
+37013,0.002930548,Arsenic,LB
+37013,0.0446373,Methane,TON
+37013,4.840676,Carbon Monoxide,TON
+37013,0.01271328,Ammonia,TON
+37013,0.04744779,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,19.726614,Xylenes (Mixed Isomers),LB
+37007,0.005999344,Benzo[k]Fluoranthene,LB
+37007,6.484314,"2,2,4-Trimethylpentane",LB
+37007,0.0001049706,Mercury,LB
+37007,0.04520222,Nickel,LB
+37007,7.590925,Carbon Monoxide,TON
+37007,26.5772,Nitrogen Oxides,TON
+37005,0.01853794,Acenaphthylene,LB
+37005,4.457652,Benzene,LB
+37005,0.004072992,Acenaphthene,LB
+37005,0.02207778,Phenanthrene,LB
+37005,0.003880864,Methane,TON
+37005,0.0003480712,Elemental Carbon portion of PM2.5-PRI,TON
+37005,2.82702e-05,Sulfate Portion of PM2.5-PRI,TON
+37005,13.00537,Xylenes (Mixed Isomers),LB
+37005,0.003312194,"Benzo[g,h,i,]Perylene",LB
+37073,0.007862854,"Benzo[g,h,i,]Perylene",LB
+37073,0.008867218,Acenaphthylene,LB
+37073,0.00010953764,Mercury,LB
+37073,0.001823879,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.005911678,Sulfur Dioxide,TON
+37021,0.0003847554,Chromium (VI),LB
+37021,0.5261264,Benz[a]Anthracene,LB
+37021,0.0004057348,Mercury,LB
+37021,0.18457582,Nickel,LB
+37021,420.3648,Acetaldehyde,LB
+37021,0.7545703,Methane,TON
+37021,163.3505,"2,2,4-Trimethylpentane",LB
+37013,0.9543876,Acrolein,LB
+37013,0.09263248,Fluoranthene,LB
+37013,0.0007780822,Arsenic,LB
+37013,289.9061,Carbon Dioxide,TON
+37013,0.006908812,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,9.263136e-08,"Dibenzo[a,h]Anthracene",LB
+37017,2.608346e-06,Benz[a]Anthracene,LB
+37017,2.058848e-07,Arsenic,LB
+37017,1.173257e-08,Nitrate portion of PM2.5-PRI,TON
+37017,0.02628818,Toluene,LB
+37013,0.6542354,"1,3-Butadiene",LB
+37013,5.337472,Hexane,LB
+37013,0.004253508,Anthracene,LB
+37013,0.0013995112,Benzo[b]Fluoranthene,LB
+37013,0.0013995112,Benzo[k]Fluoranthene,LB
+37013,4.691526,"2,2,4-Trimethylpentane",LB
+37013,0.0002755318,Nickel,LB
+37013,0.02701588,Phenanthrene,LB
+37013,0.001612209,Sulfur Dioxide,TON
+37013,0.01950218,Acrolein,LB
+37013,0.0003023086,Benz[a]Anthracene,LB
+37013,0.0011969664,Acenaphthene,LB
+37013,9.90174e-07,Nitrate portion of PM2.5-PRI,TON
+37013,0.0003623882,PM2.5 Primary (Filt + Cond),TON
+37011,0.06623002,Hexane,LB
+37011,0.000518387,Benzo[b]Fluoranthene,LB
+37011,7.095826e-05,Benzo[k]Fluoranthene,LB
+37011,4.7466e-07,Mercury,LB
+37011,0.0004714754,Ethyl Benzene,LB
+37011,3.833284e-06,Acenaphthylene,LB
+37011,0.0002766242,Formaldehyde,LB
+37011,3.134758e-07,Nitrous Oxide,TON
+37011,4.866736e-05,Nitrogen Oxides,TON
+37011,4.309953e-07,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.0002257412,Anthracene,LB
+37027,0.0002701356,Benzo[b]Fluoranthene,LB
+37027,0.0011237212,Acenaphthylene,LB
+37027,0.00027241,Nickel,LB
+37027,0.0007104555,Nitrous Oxide,TON
+37027,2.005868e-06,Nitrate portion of PM2.5-PRI,TON
+37153,5.234968e-05,"Dibenzo[a,h]Anthracene",LB
+37153,3.483008,Benzene,LB
+37153,179.4925,Carbon Dioxide,TON
+37153,0.001585628,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.01539171,PM10 Primary (Filt + Cond),TON
+37153,0.005453483,Sulfur Dioxide,TON
+37181,3.263328,Ethyl Benzene,LB
+37181,2.845262e-06,Chromium (VI),LB
+37181,0.003552274,Manganese,LB
+37181,0.000545343,Arsenic,LB
+37181,0.03591232,Phenanthrene,LB
+37181,3.434892,Carbon Monoxide,TON
+37181,0.09499015,Volatile Organic Compounds,TON
+37179,5.255616,Benzo[b]Fluoranthene,LB
+37179,23.18486,Fluoranthene,LB
+37179,363.2348,Styrene,LB
+37179,31.80196,Fluorene,LB
+37179,815.4408,Naphthalene,LB
+37179,8.040711,Methane,TON
+37179,0.02746361,Nitrate portion of PM2.5-PRI,TON
+37179,39.94326,PM10 Primary (Filt + Cond),TON
+37197,0.3035604,Ethyl Benzene,LB
+37197,2.584166e-06,Chromium (VI),LB
+37197,0.2289788,"2,2,4-Trimethylpentane",LB
+37197,0.0018299298,Manganese,LB
+37197,0.000463172,Arsenic,LB
+37197,0.02990534,Acenaphthene,LB
+37197,0.003505963,Methane,TON
+37197,0.01214849,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.0001827144,Nitrous Oxide,TON
+37197,0.003262805,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.000681232,Sulfate Portion of PM2.5-PRI,TON
+37197,0.05282052,Volatile Organic Compounds,TON
+37197,1.4959974,"1,3-Butadiene",LB
+37197,1.2237378,Hexane,LB
+37197,1.6868568e-05,Chromium (VI),LB
+37197,0.0015594586,Benzo[k]Fluoranthene,LB
+37197,0.1513773,PM10-Primary from certain diesel engines,TON
+37197,0.06180448,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.05392953,Organic Carbon portion of PM2.5-PRI,TON
+37185,1.0396962,Propionaldehyde,LB
+37185,7.108968e-06,Chromium (VI),LB
+37185,2.192478,Naphthalene,LB
+37189,0.007974438,Chromium (VI),LB
+37189,3.437554,Benzo[b]Fluoranthene,LB
+37189,3.437554,Benzo[k]Fluoranthene,LB
+37189,59.0282,Acenaphthylene,LB
+37189,3.443356,Chrysene,LB
+37189,2.737714,Manganese,LB
+37189,1.528526,Arsenic,LB
+37189,7.60806,Methane,TON
+37189,0.13667,Sulfate Portion of PM2.5-PRI,TON
+37183,3127.292,Benzene,LB
+37199,17.029654,Xylenes (Mixed Isomers),LB
+37199,0.004944178,"Benzo[g,h,i,]Perylene",LB
+37199,0.697745,Acenaphthylene,LB
+37199,1.6756282,Phenanthrene,LB
+37199,0.4286782,Elemental Carbon portion of PM2.5-PRI,TON
+37199,3.666538,Hexane,LB
+37199,5.57226e-05,Chromium (VI),LB
+37199,0.004892284,"Benzo[g,h,i,]Perylene",LB
+37199,0.881069,Fluorene,LB
+37199,4455.707,Carbon Dioxide,TON
+37193,0.16876922,Acrolein,LB
+37193,36.7724,Toluene,LB
+37193,0.00316466,Benzo[k]Fluoranthene,LB
+37193,0.04733768,Phenanthrene,LB
+37193,0.45059,Naphthalene,LB
+37193,0.007014503,Methane,TON
+37193,0.001067381,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.3820406,Nitrogen Oxides,TON
+37193,0.005525232,PM2.5 Primary (Filt + Cond),TON
+37187,0.2663974,"1,3-Butadiene",LB
+37187,0.7459718,Toluene,LB
+37187,3.466376e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.0341737,Fluoranthene,LB
+37187,1.9162846e-05,Benzo[k]Fluoranthene,LB
+37187,9.526736,Formaldehyde,LB
+37187,0.2539668,"2,2,4-Trimethylpentane",LB
+37187,0.001708674,PM10-Primary from certain diesel engines,TON
+37187,0.0008469663,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.00464621,PM10 Primary (Filt + Cond),TON
+37183,124.5623,Ethyl Benzene,LB
+37183,8.689964,Anthracene,LB
+37183,431.065,Xylenes (Mixed Isomers),LB
+37183,0.12567034,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,13.86221,Acenaphthylene,LB
+37183,2.69732,Manganese,LB
+37183,13.47013,PM10-Primary from certain diesel engines,TON
+37183,0.03020948,Nitrate portion of PM2.5-PRI,TON
+37183,370.0396,Nitrogen Oxides,TON
+37183,1.920284,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.4868568,Nickel,LB
+37183,0.9490308,Ammonia,TON
+37183,0.04626703,Nitrate portion of PM2.5-PRI,TON
+37183,19.01157,Volatile Organic Compounds,TON
+37183,11.854804,Anthracene,LB
+37181,4.074292e-07,"Dibenzo[a,h]Anthracene",LB
+37181,0.014816558,"2,2,4-Trimethylpentane",LB
+37181,2.995356e-08,Mercury,LB
+37181,0.0010831224,Naphthalene,LB
+37179,0.03301,Sulfate Portion of PM2.5-PRI,TON
+37179,1.2101514,Benz[a]Anthracene,LB
+37179,8.205184e-05,Mercury,LB
+37179,0.01715632,Arsenic,LB
+37177,0.1570435,Toluene,LB
+37177,0.02099624,Pyrene,LB
+37177,0.15977514,Xylenes (Mixed Isomers),LB
+37177,0.006952284,Acenaphthene,LB
+37177,0.02613504,Phenanthrene,LB
+37177,0.07361645,Carbon Monoxide,TON
+37177,0.01464219,PM10 Primary (Filt + Cond),TON
+37177,0.0004367691,Sulfate Portion of PM2.5-PRI,TON
+37013,585.7968,Ethyl Benzene,LB
+37013,142.95264,"1,3-Butadiene",LB
+37013,19.9578,Propionaldehyde,LB
+37013,5.382132,Phenanthrene,LB
+37013,0.6745967,Ammonia,TON
+37013,0.0008698696,Nitrate portion of PM2.5-PRI,TON
+37013,0.3399257,PM2.5 Primary (Filt + Cond),TON
+37001,0.01267535,PM2.5 Primary (Filt + Cond),TON
+37001,0.05101662,Fluorene,LB
+37001,15.988172,Ethyl Benzene,LB
+37001,0.4009736,Acrolein,LB
+37001,0.04243228,Pyrene,LB
+37001,0.012423882,Benzo[a]Pyrene,LB
+37045,0.2681697,Volatile Organic Compounds,TON
+37031,0.01547261,Arsenic,LB
+37031,0.0268711,Nitrous Oxide,TON
+37031,8.418193e-05,Nitrate portion of PM2.5-PRI,TON
+37031,1.088868,Nitrogen Oxides,TON
+37031,0.0139812,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.011860988,Styrene,LB
+37037,0.09884094,Propionaldehyde,LB
+37037,0.000525469,Benzo[k]Fluoranthene,LB
+37037,4.349842e-05,Mercury,LB
+37127,0.010236992,Anthracene,LB
+37127,0.0215398,Fluorene,LB
+37127,0.04482217,PM2.5 Primary (Filt + Cond),TON
+37127,0.001317426,Sulfate Portion of PM2.5-PRI,TON
+37091,0.002835124,Anthracene,LB
+37091,6.292116,Xylenes (Mixed Isomers),LB
+37091,0.00230449,Benz[a]Anthracene,LB
+37091,0.01712637,PM10 Primary (Filt + Cond),TON
+37089,2.549534,Ethyl Benzene,LB
+37179,0.1348604,Sulfur Dioxide,TON
+37179,20.66076,Acrolein,LB
+37179,2137.986,Hexane,LB
+37179,1.0719562,"Benzo[g,h,i,]Perylene",LB
+37179,1993.6162,"2,2,4-Trimethylpentane",LB
+37197,0.001369017,Benzo[a]Pyrene,LB
+37197,0.001337804,Arsenic,LB
+37197,95.34626,Carbon Dioxide,TON
+37197,0.0003387103,Elemental Carbon portion of PM2.5-PRI,TON
+37193,5.639852,Xylenes (Mixed Isomers),LB
+37193,1.3864612,Benzene,LB
+37193,0.17626296,Anthracene,LB
+37193,0.01208583,Benzo[b]Fluoranthene,LB
+37193,1.2457046e-05,Mercury,LB
+37193,0.007207698,Nickel,LB
+37193,458.9528,Carbon Dioxide,TON
+37193,0.05121696,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.05694384,Organic Carbon portion of PM2.5-PRI,TON
+37191,10032.948,Hexane,LB
+37191,7.458132,Anthracene,LB
+37191,23248.16,Xylenes (Mixed Isomers),LB
+37191,3199.568,Acetaldehyde,LB
+37191,17.539776,Fluorene,LB
+37191,1.154785,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.003753437,Methane,TON
+37075,0.04290778,PM2.5 Primary (Filt + Cond),TON
+37075,1.1382158,Propionaldehyde,LB
+37075,0.00215406,Benzo[b]Fluoranthene,LB
+37071,190.51652,Acrolein,LB
+37071,302.7278,Toluene,LB
+37071,5.572662,Anthracene,LB
+37071,3.216666,Benz[a]Anthracene,LB
+37071,61.82833,Carbon Monoxide,TON
+37069,2.72298,Pyrene,LB
+37069,2.075192,Fluoranthene,LB
+37069,0.9150498,Acenaphthene,LB
+37069,12379.98,Carbon Dioxide,TON
+37069,0.003415454,Nitrate portion of PM2.5-PRI,TON
+37069,1.754332,Volatile Organic Compounds,TON
+37069,9.1161,"1,3-Butadiene",LB
+37067,3048.354,Hexane,LB
+37067,0.8060846,Benzo[a]Pyrene,LB
+37067,0.5691622,Benz[a]Anthracene,LB
+37067,405.241,Acetaldehyde,LB
+37059,4.50258,Styrene,LB
+37053,3.009099e-07,Sulfate Portion of PM2.5-PRI,TON
+37053,0.015298322,Hexane,LB
+37053,2.614852e-05,"Benzo[g,h,i,]Perylene",LB
+37053,6.730628e-06,Benzo[k]Fluoranthene,LB
+37053,9.812326e-06,Benzo[a]Pyrene,LB
+37053,6.58468e-06,Benz[a]Anthracene,LB
+37053,4.079068e-05,Fluorene,LB
+37053,1.23616e-05,Methane,TON
+37053,3.425264,Ethyl Benzene,LB
+37053,0.1479384,Styrene,LB
+37053,17.550252,Toluene,LB
+37053,0.005514652,Anthracene,LB
+37053,0.0017152372,Benzo[k]Fluoranthene,LB
+37053,0.00223647,Benzo[a]Pyrene,LB
+37053,3.601614,"2,2,4-Trimethylpentane",LB
+37053,0.006459756,Acenaphthene,LB
+37053,117.4913,Carbon Dioxide,TON
+37053,0.2469635,Nitrogen Oxides,TON
+37053,0.0124561,PM10 Primary (Filt + Cond),TON
+37053,0.003391443,PM2.5 Primary (Filt + Cond),TON
+37043,0.03438078,Fluorene,LB
+37043,183.6169,Carbon Dioxide,TON
+37043,0.3357284,Acrolein,LB
+37043,71.67114,Toluene,LB
+37043,0.02812962,Pyrene,LB
+37043,5.045988e-06,Chromium (VI),LB
+37043,0.0246486,Fluoranthene,LB
+37043,2.360502,"1,3-Butadiene",LB
+37037,44.64746,Ethyl Benzene,LB
+37037,145.10658,Toluene,LB
+37037,6.370884,Pyrene,LB
+37037,3.672978,PM10-Primary from certain diesel engines,TON
+37037,2.24085,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.03799662,Nitrous Oxide,TON
+37037,112.6433,Nitrogen Oxides,TON
+37037,3.578054,PM2.5 Primary (Filt + Cond),TON
+37037,8.04034,Propionaldehyde,LB
+37037,3.163362e-05,Chromium (VI),LB
+37037,0.8259534,Acenaphthylene,LB
+37037,1.0605206,Fluorene,LB
+37037,16.991158,Naphthalene,LB
+37037,0.1604085,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.001900689,Nitrate portion of PM2.5-PRI,TON
+37037,0.5073297,PM10 Primary (Filt + Cond),TON
+37037,0.3844183,PM2.5 Primary (Filt + Cond),TON
+37037,0.01008107,Sulfur Dioxide,TON
+37037,4269.378,Ethyl Benzene,LB
+37037,8.913202,"Benzo[g,h,i,]Perylene",LB
+37037,27.60784,Acenaphthylene,LB
+37037,1733.4988,Formaldehyde,LB
+37037,5878.17,"2,2,4-Trimethylpentane",LB
+37037,2.448766,Manganese,LB
+37037,0.09762082,Mercury,LB
+37033,0.5560066,Acrolein,LB
+37033,9.041548e-06,Chromium (VI),LB
+37033,0.010447324,Benzo[b]Fluoranthene,LB
+37033,0.16137794,Phenanthrene,LB
+37033,0.05993846,Fluorene,LB
+37033,0.003506617,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.06027705,Volatile Organic Compounds,TON
+37031,0.007565166,Benzo[a]Pyrene,LB
+37029,0.04758102,Acrolein,LB
+37029,0.00503871,Pyrene,LB
+37029,0.004416576,Fluoranthene,LB
+37029,2.696842,"2,2,4-Trimethylpentane",LB
+37029,0.0003408261,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.06986352,Nitrogen Oxides,TON
+37029,0.001857509,PM10 Primary (Filt + Cond),TON
+37119,4.66772,Styrene,LB
+37119,41.7592,Toluene,LB
+37119,0.3069474,Manganese,LB
+37119,187.37708,Acetaldehyde,LB
+37119,0.02307848,Nitrous Oxide,TON
+37119,2.200955,PM10 Primary (Filt + Cond),TON
+37119,0.08833646,Sulfate Portion of PM2.5-PRI,TON
+37109,2.127742,Pyrene,LB
+37109,1.1296212,Acenaphthylene,LB
+37109,0.15760242,Benzo[a]Pyrene,LB
+37109,0.007393629,Nitrous Oxide,TON
+37109,7.532427,Nitrogen Oxides,TON
+37109,0.2215528,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.004290868,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.015139014,Acenaphthene,LB
+37109,5.863237,Carbon Monoxide,TON
+37109,0.003869767,Ammonia,TON
+37109,0.002423239,Organic Carbon portion of PM2.5-PRI,TON
+37105,4.891176,Pyrene,LB
+37105,0.019801194,"Benzo[g,h,i,]Perylene",LB
+37105,109.3558,Naphthalene,LB
+37105,21.83993,Carbon Monoxide,TON
+37097,3.809364,Benz[a]Anthracene,LB
+37097,0.6845498,Manganese,LB
+37097,0.0010509824,Mercury,LB
+37097,388.6318,Acrolein,LB
+37097,2125.958,Acetaldehyde,LB
+37097,273.289,Carbon Monoxide,TON
+37097,0.09160784,Nitrous Oxide,TON
+37097,1.037575,Ammonia,TON
+37097,0.8196831,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.001293542,Ammonia,TON
+37105,3.637704e-05,Mercury,LB
+37105,0.2153902,Naphthalene,LB
+37103,0.248998,Pyrene,LB
+37103,3.04308,Xylenes (Mixed Isomers),LB
+37103,1.1450658,"2,2,4-Trimethylpentane",LB
+37103,1.3461236e-05,Mercury,LB
+37103,0.01666803,Methane,TON
+37103,0.05140817,PM25-Primary from certain diesel engines,TON
+37101,843.5576,Styrene,LB
+37101,118448.66,Toluene,LB
+37101,59.56258,Pyrene,LB
+37101,14.499238,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,35.65676,Acenaphthene,LB
+37101,1104.991,Nitrogen Oxides,TON
+37101,37.9603,PM10 Primary (Filt + Cond),TON
+37099,0.000419229,Fluorene,LB
+37099,0.0010298998,Naphthalene,LB
+37099,0.0498701,Volatile Organic Compounds,TON
+37099,0.01833053,Ethyl Benzene,LB
+37099,5.118992e-05,Benz[a]Anthracene,LB
+37099,0.002562496,Manganese,LB
+37093,0.006385382,"Dibenzo[a,h]Anthracene",LB
+37093,0.02351108,Sulfate Portion of PM2.5-PRI,TON
+37093,6.41339,"1,3-Butadiene",LB
+37093,16.631024,Acrolein,LB
+37093,2.080834,Pyrene,LB
+37093,0.009444012,"Benzo[g,h,i,]Perylene",LB
+37093,1.5724518,Fluoranthene,LB
+37093,1.5197594e-05,Chromium (VI),LB
+37093,30.32712,"2,2,4-Trimethylpentane",LB
+37093,0.01240567,Manganese,LB
+37093,0.02532035,Ammonia,TON
+37093,3.683612e-05,Nitrate portion of PM2.5-PRI,TON
+37093,1.392169,Nitrogen Oxides,TON
+37093,0.01256387,Sulfur Dioxide,TON
+37093,0.0003995355,Sulfate Portion of PM2.5-PRI,TON
+37089,3281.742,Acetaldehyde,LB
+37089,8.83695,Acenaphthene,LB
+37089,3.282124,Benzo[b]Fluoranthene,LB
+37089,9377.044,Benzene,LB
+37079,0.03026556,Benzo[b]Fluoranthene,LB
+37079,0.10142628,Benzo[a]Pyrene,LB
+37079,0.3472432,Benz[a]Anthracene,LB
+37079,16.775782,Benzene,LB
+37079,5.815945,Carbon Monoxide,TON
+37079,0.8331176,PM10-Primary from certain diesel engines,TON
+37079,0.09497913,Ammonia,TON
+37079,0.001775217,Nitrate portion of PM2.5-PRI,TON
+37083,14248.316,Toluene,LB
+37073,1.1385926,Acrolein,LB
+37073,0.01730494,Benzo[b]Fluoranthene,LB
+37073,0.02366572,Benzo[a]Pyrene,LB
+37073,80.69298,Benzene,LB
+37073,3.097018,Naphthalene,LB
+37073,0.0346392,PM10 Primary (Filt + Cond),TON
+37069,9.815,Ethyl Benzene,LB
+37069,32.59592,Hexane,LB
+37067,245.2694,Acrolein,LB
+37067,1.672622,Manganese,LB
+37067,0.04726847,Nitrate portion of PM2.5-PRI,TON
+37067,0.3951149,Sulfate Portion of PM2.5-PRI,TON
+37067,34.99752,Pyrene,LB
+37067,0.0006937278,Chromium (VI),LB
+37067,2.731432,Benzo[a]Pyrene,LB
+37067,8.750144,Benz[a]Anthracene,LB
+37063,0.004622238,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,17.103614,Ethyl Benzene,LB
+37063,39.14122,Toluene,LB
+37063,1.2957964,Anthracene,LB
+37063,0.002513498,"Dibenzo[a,h]Anthracene",LB
+37063,0.0001606312,Mercury,LB
+37063,0.01423949,Nitrous Oxide,TON
+37063,533.3042,Acrolein,LB
+37063,7202.46,Formaldehyde,LB
+37063,9056.866,Acetaldehyde,LB
+37063,14.48521,Methane,TON
+37063,9.514545,Organic Carbon portion of PM2.5-PRI,TON
+37061,19.359304,Ethyl Benzene,LB
+37057,0.5647682,Acrolein,LB
+37057,3.548572e-05,Mercury,LB
+37057,0.02886096,Acenaphthene,LB
+37057,161.5879,Carbon Dioxide,TON
+37057,0.01561544,PM2.5 Primary (Filt + Cond),TON
+37057,0.003390935,Sulfur Dioxide,TON
+37057,0.13162258,Acenaphthylene,LB
+37057,0.0003488506,"Dibenzo[a,h]Anthracene",LB
+37055,50.64684,"1,3-Butadiene",LB
+37055,0.015654626,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,593.8086,Acetaldehyde,LB
+37047,0.03952275,Nitrous Oxide,TON
+37047,114.9047,Nitrogen Oxides,TON
+37047,5.630042,PM10 Primary (Filt + Cond),TON
+37047,4.655916,Acenaphthylene,LB
+37047,0.3942276,Benzo[a]Pyrene,LB
+37047,0.016553326,"Dibenzo[a,h]Anthracene",LB
+37039,6.897112,Hexane,LB
+37039,1.4053594,Acenaphthylene,LB
+37039,7.098692,"2,2,4-Trimethylpentane",LB
+37039,0.6399304,Benz[a]Anthracene,LB
+37039,25.11408,Benzene,LB
+37039,29.3812,Naphthalene,LB
+37039,6.109079,Carbon Monoxide,TON
+37039,0.008624267,Nitrous Oxide,TON
+37039,0.02688475,Sulfate Portion of PM2.5-PRI,TON
+37041,3.457884,Benzene,LB
+37033,435.0788,Naphthalene,LB
+37033,1644.296,Carbon Monoxide,TON
+37033,200.747,Styrene,LB
+37033,13.840674,Pyrene,LB
+37033,2.077022,Chrysene,LB
+37033,5970.168,"2,2,4-Trimethylpentane",LB
+37033,45.41274,Phenanthrene,LB
+37029,3.061202,Hexane,LB
+37029,11.822334,Xylenes (Mixed Isomers),LB
+37029,0.00362628,"Benzo[g,h,i,]Perylene",LB
+37029,0.00434708,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.002429318,Benzo[k]Fluoranthene,LB
+37029,0.5013364,Acenaphthylene,LB
+37029,0.2984898,Acenaphthene,LB
+37029,0.6450598,Fluorene,LB
+37029,0.5104246,PM2.5 Primary (Filt + Cond),TON
+37029,0.5896983,Volatile Organic Compounds,TON
+37121,0.002728938,Styrene,LB
+37121,4.699128e-06,Arsenic,LB
+37105,110.21112,Benzene,LB
+37105,6.753318,Fluorene,LB
+37105,1.01643,PM25-Primary from certain diesel engines,TON
+37105,1.059834,PM2.5 Primary (Filt + Cond),TON
+37105,6.842788,Volatile Organic Compounds,TON
+37105,38.68584,"1,3-Butadiene",LB
+37105,71.91268,Xylenes (Mixed Isomers),LB
+37105,0.0002823684,Chromium (VI),LB
+37097,49.6911,Ethyl Benzene,LB
+37089,0.3836268,Chrysene,LB
+37089,7.207326,"2,2,4-Trimethylpentane",LB
+37089,7.06798,Hexane,LB
+37089,2.724112,Pyrene,LB
+37089,10.18191,Nitrogen Oxides,TON
+37089,0.6617407,PM2.5 Primary (Filt + Cond),TON
+37085,158.84188,Toluene,LB
+37085,2.992474,Anthracene,LB
+37085,185.32788,Xylenes (Mixed Isomers),LB
+37085,0.9889518,Chrysene,LB
+37085,47.66544,"2,2,4-Trimethylpentane",LB
+37085,2.987312,Acenaphthene,LB
+37085,4.111999,PM25-Primary from certain diesel engines,TON
+37085,0.04850548,Nitrous Oxide,TON
+37083,0.16112992,Styrene,LB
+37083,0.12903608,Acrolein,LB
+37083,0.004360896,Chrysene,LB
+37083,2.346454,Formaldehyde,LB
+37083,0.0007206004,Nickel,LB
+37083,3.493156,Carbon Monoxide,TON
+37083,0.004425488,Sulfur Dioxide,TON
+37083,0.0003315061,Sulfate Portion of PM2.5-PRI,TON
+37083,0.1192221,Volatile Organic Compounds,TON
+37079,0.0003437872,"Benzo[g,h,i,]Perylene",LB
+37079,0.064699,Formaldehyde,LB
+37079,6.12541e-07,Mercury,LB
+37079,7.061876e-05,Organic Carbon portion of PM2.5-PRI,TON
+37075,10.4928,"1,3-Butadiene",LB
+37075,1.374892,Fluoranthene,LB
+37075,0.0008440586,Benzo[k]Fluoranthene,LB
+37075,1.793114,Acenaphthylene,LB
+37075,2.762592,Phenanthrene,LB
+37075,1752.011,Carbon Dioxide,TON
+37075,0.01488209,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.03506392,Propionaldehyde,LB
+37075,0.0006038407,Nitrous Oxide,TON
+37075,45.4532,Volatile Organic Compounds,TON
+37075,8731.034,Toluene,LB
+37075,57.58624,Propionaldehyde,LB
+37075,4.649812,Pyrene,LB
+37075,0.7163204,Benz[a]Anthracene,LB
+37075,2726.456,Benzene,LB
+37075,0.2506418,Arsenic,LB
+37075,75.68239,Nitrogen Oxides,TON
+37075,0.4574927,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.9253029,PM2.5 Primary (Filt + Cond),TON
+37071,3.91028,Anthracene,LB
+37071,62.42402,Propionaldehyde,LB
+37071,36.32358,"2,2,4-Trimethylpentane",LB
+37071,0.01309341,Nitrate portion of PM2.5-PRI,TON
+37069,1.4387876,Hexane,LB
+37069,0.0009226968,Benzo[k]Fluoranthene,LB
+37069,0.003306262,Arsenic,LB
+37069,24.38846,Acetaldehyde,LB
+37069,0.3425166,Fluorene,LB
+37069,810.7738,Carbon Dioxide,TON
+37069,0.07595323,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.002091376,Nitrous Oxide,TON
+37069,0.414307,Acenaphthylene,LB
+37069,2.058298,"2,2,4-Trimethylpentane",LB
+37069,5.769924,Carbon Monoxide,TON
+37069,0.04684182,Acenaphthylene,LB
+37069,0.002509682,Benz[a]Anthracene,LB
+37061,2.669852,"1,3-Butadiene",LB
+37061,0.03561886,Pyrene,LB
+37061,0.04394248,"Benzo[g,h,i,]Perylene",LB
+37061,0.016509684,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,24.00852,"2,2,4-Trimethylpentane",LB
+37061,9.307054,Carbon Monoxide,TON
+37061,0.004170048,Sulfur Dioxide,TON
+37057,11.636074,Styrene,LB
+37057,8.467282,Pyrene,LB
+37057,0.04752752,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.02564294,Benzo[k]Fluoranthene,LB
+37057,0.000185257,Mercury,LB
+37057,0.0387348,Arsenic,LB
+37057,2.678364,Acenaphthene,LB
+37057,26.93075,Carbon Monoxide,TON
+37057,0.08568724,"Benzo[g,h,i,]Perylene",LB
+37057,27.63888,Formaldehyde,LB
+37057,109.82674,Benzene,LB
+37057,0.09573476,Acenaphthene,LB
+37057,0.19391662,Fluorene,LB
+37057,0.06796039,Methane,TON
+37057,65.72509,Carbon Monoxide,TON
+37055,0.1595734,Chrysene,LB
+37055,8.727738,"2,2,4-Trimethylpentane",LB
+37055,2.040914,Fluorene,LB
+37055,0.001057137,Nitrate portion of PM2.5-PRI,TON
+37055,0.04138677,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.01339844,Sulfate Portion of PM2.5-PRI,TON
+37055,2.037959,Volatile Organic Compounds,TON
+37053,0.0006517349,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.002325184,Anthracene,LB
+37053,0.000774205,Benzo[b]Fluoranthene,LB
+37053,0.8729884,Formaldehyde,LB
+37053,2.400834e-05,"Dibenzo[a,h]Anthracene",LB
+37053,0.8625598,Acetaldehyde,LB
+37039,89.42328,Formaldehyde,LB
+37039,0.08781723,PM10-Primary from certain diesel engines,TON
+37041,0.591492,Acrolein,LB
+37041,0.8329,Naphthalene,LB
+37041,0.007547052,Elemental Carbon portion of PM2.5-PRI,TON
+37035,6.432636e-06,Arsenic,LB
+37035,0.00427816,Phenanthrene,LB
+37035,0.001046001,Methane,TON
+37035,0.276102,Carbon Monoxide,TON
+37035,0.02255303,Nitrogen Oxides,TON
+37035,0.500748,Ethyl Benzene,LB
+37035,2.995098,Toluene,LB
+37035,0.0007053718,Benzo[a]Pyrene,LB
+37031,0.002999954,Acenaphthylene,LB
+37031,366.5296,Formaldehyde,LB
+37031,0.0012740592,Acenaphthene,LB
+37031,2.31563,Methane,TON
+37031,0.002739666,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.03074191,PM2.5 Primary (Filt + Cond),TON
+37025,1.0393682,Formaldehyde,LB
+37025,0.0011268768,Benzo[a]Pyrene,LB
+37025,1.0353852,Acetaldehyde,LB
+37025,0.0002972459,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.0011744,PM2.5 Primary (Filt + Cond),TON
+37025,0.428644,"1,3-Butadiene",LB
+37025,0.000859365,Benzo[k]Fluoranthene,LB
+37135,3.151652,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.6989161,Ammonia,TON
+37135,7.689311,PM10 Primary (Filt + Cond),TON
+37135,0.5606763,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.4117658,Sulfur Dioxide,TON
+37135,6.007634,Volatile Organic Compounds,TON
+37135,31.36674,"1,3-Butadiene",LB
+37135,29.64758,Hexane,LB
+37135,12.440606,Phenanthrene,LB
+37129,2.197646,Hexane,LB
+37129,7.702312,Xylenes (Mixed Isomers),LB
+37129,0.003779574,"Benzo[g,h,i,]Perylene",LB
+37129,0.00261256,"Dibenzo[a,h]Anthracene",LB
+37129,0.008223816,Nickel,LB
+37129,9.024418,Naphthalene,LB
+37129,0.05777491,Elemental Carbon portion of PM2.5-PRI,TON
+37129,3.321512,Nitrogen Oxides,TON
+37129,0.01048555,Sulfur Dioxide,TON
+37135,48995.7,Toluene,LB
+37135,29067.24,Xylenes (Mixed Isomers),LB
+37135,7.69666,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,16.845272,Fluoranthene,LB
+37135,3264.444,Formaldehyde,LB
+37135,4.535748,Benz[a]Anthracene,LB
+37135,11916.112,Benzene,LB
+37135,0.2108454,Mercury,LB
+37135,61.23344,Phenanthrene,LB
+37135,580.8954,Naphthalene,LB
+37135,5.674096,Nitrous Oxide,TON
+37133,7.3768e-05,Chromium (VI),LB
+37133,41.23296,Acetaldehyde,LB
+37133,0.695667,Phenanthrene,LB
+37133,0.02913742,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,64.64124,"1,3-Butadiene",LB
+37123,345.4226,Hexane,LB
+37123,981.202,Xylenes (Mixed Isomers),LB
+37123,2.4875,Phenanthrene,LB
+37123,106.3453,Carbon Monoxide,TON
+37123,0.2294432,Nitrous Oxide,TON
+37123,0.3893154,Ammonia,TON
+37123,0.3711091,PM10 Primary (Filt + Cond),TON
+37113,8.012711,Carbon Monoxide,TON
+37113,1.48196,PM10 Primary (Filt + Cond),TON
+37113,19.423032,Acrolein,LB
+37113,0.2895188,Chrysene,LB
+37113,0.0001058368,Mercury,LB
+37113,0.0221286,Arsenic,LB
+37113,109.11892,Acetaldehyde,LB
+37113,13.882646,Acenaphthylene,LB
+37113,0.921904,Chrysene,LB
+37113,881.2036,Formaldehyde,LB
+37113,0.03185016,"Dibenzo[a,h]Anthracene",LB
+37111,0.5921232,"Benzo[g,h,i,]Perylene",LB
+37111,0.005107436,"Dibenzo[a,h]Anthracene",LB
+37103,0.006463538,Methane,TON
+37103,0.04139678,PM10-Primary from certain diesel engines,TON
+37103,0.004877366,Ammonia,TON
+37103,0.5765756,Nitrogen Oxides,TON
+37091,0.0661937,"1,3-Butadiene",LB
+37091,5.990086e-05,Benzo[k]Fluoranthene,LB
+37091,5.982752e-05,"Dibenzo[a,h]Anthracene",LB
+37091,4.009568e-07,Mercury,LB
+37091,0.2272368,Naphthalene,LB
+37091,0.0008771298,Methane,TON
+37091,0.04369631,Carbon Monoxide,TON
+37105,0.07515384,Benz[a]Anthracene,LB
+37105,0.02257424,Manganese,LB
+37105,55.12454,Acetaldehyde,LB
+37105,0.5037126,Fluorene,LB
+37105,0.0584523,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.3656682,Nitrous Oxide,TON
+37099,0.170325,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.009743586,Sulfate Portion of PM2.5-PRI,TON
+37099,12.06769,Volatile Organic Compounds,TON
+37099,17.59045,Styrene,LB
+37099,532.0466,Hexane,LB
+37099,1.094537,Fluoranthene,LB
+37099,0.2161966,Benzo[k]Fluoranthene,LB
+37099,0.294979,Benzo[a]Pyrene,LB
+37099,490.4388,"2,2,4-Trimethylpentane",LB
+37099,748.4642,Benzene,LB
+37099,0.1251006,Arsenic,LB
+37099,38.86692,Naphthalene,LB
+37095,239.6988,Hexane,LB
+37093,0.08427586,Ethyl Benzene,LB
+37093,0.0002218938,Pyrene,LB
+37093,1.0678308e-08,Chromium (VI),LB
+37093,0.00019477666,Fluoranthene,LB
+37093,4.855942e-05,Chrysene,LB
+37093,0.1140642,"2,2,4-Trimethylpentane",LB
+37093,5.17761e-05,Benz[a]Anthracene,LB
+37093,0.0001294428,Acenaphthene,LB
+37093,0.0007087888,Phenanthrene,LB
+37093,2.936041e-05,Nitrous Oxide,TON
+37093,0.002521201,Volatile Organic Compounds,TON
+37091,4.363208,Ethyl Benzene,LB
+37091,4.45597,"1,3-Butadiene",LB
+37091,0.005609304,Arsenic,LB
+37091,0.453175,Acenaphthene,LB
+37091,0.6050282,PM25-Primary from certain diesel engines,TON
+37091,0.02929685,Ammonia,TON
+37091,0.7889636,PM10 Primary (Filt + Cond),TON
+37085,0.5768136,Methane,TON
+37085,72.78666,Nitrogen Oxides,TON
+37085,31.60132,Propionaldehyde,LB
+37085,0.02322636,"Benzo[g,h,i,]Perylene",LB
+37085,0.02806548,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,61.0614,Benzene,LB
+37085,0.07620242,Arsenic,LB
+37083,17.638024,Hexane,LB
+37083,0.012373474,Benzo[k]Fluoranthene,LB
+37083,0.01104784,Benz[a]Anthracene,LB
+37083,0.892264,Naphthalene,LB
+37083,0.003307375,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.8833202,Nitrogen Oxides,TON
+37077,8.615432e-06,Chromium (VI),LB
+37077,0.0010668004,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.0018703728,Arsenic,LB
+37077,2.310342,Naphthalene,LB
+37077,668.1689,Carbon Dioxide,TON
+37065,0.1101582,Ammonia,TON
+37065,0.004377775,Nitrate portion of PM2.5-PRI,TON
+37065,0.03965705,Sulfur Dioxide,TON
+37065,10.279832,"1,3-Butadiene",LB
+37065,9.362284,"2,2,4-Trimethylpentane",LB
+37065,0.8104096,Benz[a]Anthracene,LB
+37065,32.0114,Benzene,LB
+37065,0.9019865,PM10-Primary from certain diesel engines,TON
+37049,153.07264,Acrolein,LB
+37049,32728.68,Toluene,LB
+37049,7604.53,Benzene,LB
+37049,1.4220756,Nickel,LB
+37049,38.52312,Phenanthrene,LB
+37049,3.879763,Methane,TON
+37049,2.234635,Organic Carbon portion of PM2.5-PRI,TON
+37047,59.06858,Hexane,LB
+37047,0.05227764,Anthracene,LB
+37047,0.003627004,Nickel,LB
+37047,2.775024,Nitrogen Oxides,TON
+37047,0.02037451,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.002785967,PM10-Primary from certain diesel engines,TON
+37041,0.0001991486,Nitrous Oxide,TON
+37041,0.0008026462,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,0.4200786,"1,3-Butadiene",LB
+37031,1.1049986,Acrolein,LB
+37031,1.2298168,Xylenes (Mixed Isomers),LB
+37031,0.0009531748,Arsenic,LB
+37031,0.06827095,PM10-Primary from certain diesel engines,TON
+37031,0.06280912,PM25-Primary from certain diesel engines,TON
+37027,8124.954,Xylenes (Mixed Isomers),LB
+37027,4242.678,"2,2,4-Trimethylpentane",LB
+37109,0.002029126,Fluoranthene,LB
+37109,0.12937752,Acrolein,LB
+37109,0.002295962,Pyrene,LB
+37109,2.63898,Xylenes (Mixed Isomers),LB
+37109,0.002364002,Fluorene,LB
+37109,0.003072992,Nitrous Oxide,TON
+37171,9741.814,Xylenes (Mixed Isomers),LB
+37169,0.1082017,Chrysene,LB
+37169,0.0551739,Benzo[a]Pyrene,LB
+37169,0.00224679,"Dibenzo[a,h]Anthracene",LB
+37169,0.18636484,Benz[a]Anthracene,LB
+37169,3.857424,Carbon Monoxide,TON
+37169,0.0779181,Organic Carbon portion of PM2.5-PRI,TON
+37169,2.975168,Ethyl Benzene,LB
+37169,6.597126,Toluene,LB
+37169,4.536688,Propionaldehyde,LB
+37167,2.528406,Styrene,LB
+37167,108.5137,Hexane,LB
+37167,113.1731,Benzene,LB
+37167,0.003959228,Nickel,LB
+37167,0.09593828,Methane,TON
+37167,0.1239589,PM10 Primary (Filt + Cond),TON
+37167,0.01377079,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.02545128,Sulfur Dioxide,TON
+37159,0.0489823,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.6450082,Benzo[a]Pyrene,LB
+37159,0.1204828,Nickel,LB
+37159,347.4682,Acetaldehyde,LB
+37155,0.0002057136,"Dibenzo[a,h]Anthracene",LB
+37155,0.0001070673,Nitrate portion of PM2.5-PRI,TON
+37133,0.0824897,Anthracene,LB
+37133,0.0012630454,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.12859896,Acenaphthylene,LB
+37133,0.006214968,Manganese,LB
+37133,2.591476,Naphthalene,LB
+37133,0.4699145,Carbon Monoxide,TON
+37133,4.975306,Acetaldehyde,LB
+37133,1.648936e-05,Nitrate portion of PM2.5-PRI,TON
+37133,0.2996238,Acrolein,LB
+37133,0.3032992,Propionaldehyde,LB
+37125,0.008616146,Benzo[a]Pyrene,LB
+37125,0.1182463,Benz[a]Anthracene,LB
+37125,8.15672,Ethyl Benzene,LB
+37125,6.681456,"1,3-Butadiene",LB
+37125,11.393996,Propionaldehyde,LB
+37125,0.002309438,"Benzo[g,h,i,]Perylene",LB
+37125,0.002489856,Nitrous Oxide,TON
+37121,1.3566056,Hexane,LB
+37121,1.094058e-05,Mercury,LB
+37121,0.006489235,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.0278684,Ammonia,TON
+37021,0.2041872,Anthracene,LB
+37021,0.0440128,Benzo[a]Pyrene,LB
+37021,0.2767654,PM25-Primary from certain diesel engines,TON
+37021,0.1747507,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.2794427,Methane,TON
+37019,3.988578,PM2.5 Primary (Filt + Cond),TON
+37019,67.8801,Acrolein,LB
+37019,9.565902,Pyrene,LB
+37019,21.04302,"2,2,4-Trimethylpentane",LB
+37015,8.722574,Ethyl Benzene,LB
+37015,0.6943906,Anthracene,LB
+37015,0.1142852,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.1350966,"1,3-Butadiene",LB
+37015,0.221788,Propionaldehyde,LB
+37015,0.05106214,Phenanthrene,LB
+37015,0.457713,Naphthalene,LB
+37015,5.313593e-05,Nitrate portion of PM2.5-PRI,TON
+37011,1.496578e-08,Chromium (VI),LB
+37011,8.573358e-06,Mercury,LB
+37011,7.126626e-07,Nickel,LB
+37011,0.0005831996,Naphthalene,LB
+37001,4.324308,Propionaldehyde,LB
+37001,7.314126,Xylenes (Mixed Isomers),LB
+37001,0.00407283,"Benzo[g,h,i,]Perylene",LB
+37001,0.0204405,Benzo[b]Fluoranthene,LB
+37001,0.4801611,Volatile Organic Compounds,TON
+37001,2.57421,"1,3-Butadiene",LB
+37075,0.302345,Toluene,LB
+37075,0.0006741092,"Benzo[g,h,i,]Perylene",LB
+37075,0.2467076,Formaldehyde,LB
+37075,5.815478e-06,"Dibenzo[a,h]Anthracene",LB
+37075,0.006995266,Naphthalene,LB
+37075,8.516563e-07,Nitrate portion of PM2.5-PRI,TON
+37075,0.0001548738,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.008749134,Volatile Organic Compounds,TON
+37157,0.3720288,Propionaldehyde,LB
+37157,0.0017387912,Benzo[b]Fluoranthene,LB
+37157,0.002664944,Fluoranthene,LB
+37157,0.004759028,Manganese,LB
+37157,0.0129767,Methane,TON
+37157,0.002202228,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.2684862,Ethyl Benzene,LB
+37125,0.11008284,Propionaldehyde,LB
+37125,2.215698e-05,"Dibenzo[a,h]Anthracene",LB
+37125,0.0005032956,Nickel,LB
+37119,0.01320686,Benzo[b]Fluoranthene,LB
+37119,9.205912,"2,2,4-Trimethylpentane",LB
+37119,0.2282179,PM10 Primary (Filt + Cond),TON
+37013,0.6881904,Hexane,LB
+37013,0.003950606,Nickel,LB
+37013,2.937916,Naphthalene,LB
+37013,0.6644415,Carbon Monoxide,TON
+37013,0.07002685,PM25-Primary from certain diesel engines,TON
+37013,1.065102,Nitrogen Oxides,TON
+37013,0.104415,PM10 Primary (Filt + Cond),TON
+37013,0.1518327,Volatile Organic Compounds,TON
+37013,0.830497,"1,3-Butadiene",LB
+37019,0.7713548,Hexane,LB
+37019,1.4764038,Propionaldehyde,LB
+37019,0.0215489,Manganese,LB
+37019,0.02008467,Methane,TON
+37019,881.6724,Carbon Dioxide,TON
+37019,0.01954943,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.832217,Propionaldehyde,LB
+37015,0.00012161498,Acenaphthene,LB
+37015,0.005395494,Nitrous Oxide,TON
+37015,7.458701e-07,Nitrate portion of PM2.5-PRI,TON
+37015,0.0002718105,Sulfur Dioxide,TON
+37013,0.002021008,Acrolein,LB
+37013,2.780502e-05,Benzo[b]Fluoranthene,LB
+37013,0.03252112,Formaldehyde,LB
+37013,3.648632e-05,Benzo[a]Pyrene,LB
+37013,0.0005620462,Phenanthrene,LB
+37013,1.049357e-07,Nitrate portion of PM2.5-PRI,TON
+37013,9.646233e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.05816824,Anthracene,LB
+37009,0.16744614,Pyrene,LB
+37009,0.003707042,Benzo[b]Fluoranthene,LB
+37009,0.0005531739,Nitrous Oxide,TON
+37009,0.005002876,Ammonia,TON
+37009,9288.798,Toluene,LB
+37009,2239.708,Hexane,LB
+37009,126.9742,Naphthalene,LB
+37009,28075.51,Carbon Dioxide,TON
+37009,0.003244762,Nitrate portion of PM2.5-PRI,TON
+37009,0.5923151,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.02840215,Sulfate Portion of PM2.5-PRI,TON
+37005,707.7418,Ethyl Benzene,LB
+37005,23.4913,Acrolein,LB
+37005,0.000798984,Chromium (VI),LB
+37005,405.492,Acetaldehyde,LB
+37005,56.2643,Naphthalene,LB
+37005,1.007326,Ammonia,TON
+37005,0.001286297,Nitrate portion of PM2.5-PRI,TON
+37005,0.116675,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.01088723,Sulfate Portion of PM2.5-PRI,TON
+37003,0.000961586,Manganese,LB
+37003,0.00013987018,Arsenic,LB
+37003,0.0007112504,Ammonia,TON
+37003,8.204738e-05,Nitrate portion of PM2.5-PRI,TON
+37003,0.03201716,Volatile Organic Compounds,TON
+37003,3093.276,Ethyl Benzene,LB
+37003,3.720334,Anthracene,LB
+37003,1.2333474,Benzo[k]Fluoranthene,LB
+37003,1271.8218,Formaldehyde,LB
+37003,0.03816944,"Dibenzo[a,h]Anthracene",LB
+37003,4257.572,"2,2,4-Trimethylpentane",LB
+37003,4510.588,Benzene,LB
+37003,0.3586858,Nickel,LB
+37003,1.765463,Methane,TON
+37003,88.89699,Nitrogen Oxides,TON
+37003,5.37236,PM10 Primary (Filt + Cond),TON
+37075,1.0083324,Xylenes (Mixed Isomers),LB
+37199,0.11311208,Toluene,LB
+37199,0.10403224,Xylenes (Mixed Isomers),LB
+37199,0.000168882,Arsenic,LB
+37199,2.873612,Acetaldehyde,LB
+37199,0.003037553,PM2.5 Primary (Filt + Cond),TON
+37199,0.02933178,Volatile Organic Compounds,TON
+37187,0.06499324,"Benzo[g,h,i,]Perylene",LB
+37187,0.01644125,Chrysene,LB
+37187,0.017039638,Benz[a]Anthracene,LB
+37187,0.002941416,Nickel,LB
+37187,0.02515515,Methane,TON
+37187,0.003480725,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.01342215,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.03298571,PM10 Primary (Filt + Cond),TON
+37187,0.02362185,PM2.5 Primary (Filt + Cond),TON
+37183,8.000742e-06,Arsenic,LB
+37183,1.930345e-05,Naphthalene,LB
+37183,0.005855683,Nitrogen Oxides,TON
+37183,2.513423e-05,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.0008000846,Benzo[b]Fluoranthene,LB
+37177,0.007570653,Ammonia,TON
+37177,5.22218e-05,Nitrate portion of PM2.5-PRI,TON
+37041,1.4257824,Acetaldehyde,LB
+37041,0.02091408,PM10 Primary (Filt + Cond),TON
+37041,0.0007303003,Sulfate Portion of PM2.5-PRI,TON
+37041,0.006813132,Benz[a]Anthracene,LB
+37041,0.009943586,Acenaphthene,LB
+37041,0.1265421,Carbon Monoxide,TON
+37041,0.255247,Toluene,LB
+37037,0.002440246,Manganese,LB
+37037,0.0438981,Ethyl Benzene,LB
+37037,1.960101e-06,Nitrate portion of PM2.5-PRI,TON
+37037,0.0003189272,Benz[a]Anthracene,LB
+37033,1.0423552e-05,Chromium (VI),LB
+37033,0.00015982118,Benzo[b]Fluoranthene,LB
+37033,9.46668,Acetaldehyde,LB
+37033,0.0002123774,Nitrous Oxide,TON
+37033,0.003417548,Ammonia,TON
+37033,0.003226978,PM2.5 Primary (Filt + Cond),TON
+37027,1.136349,Carbon Monoxide,TON
+37027,0.02480098,Nitrous Oxide,TON
+37027,0.0001319586,Sulfate Portion of PM2.5-PRI,TON
+37027,0.1076765,Volatile Organic Compounds,TON
+37155,4.907876,Xylenes (Mixed Isomers),LB
+37155,0.0017890512,Benz[a]Anthracene,LB
+37155,0.0005330402,Elemental Carbon portion of PM2.5-PRI,TON
+37151,3.787354,PM10 Primary (Filt + Cond),TON
+37151,32.26262,Propionaldehyde,LB
+37151,0.458322,Benzo[a]Pyrene,LB
+37151,0.018735316,"Dibenzo[a,h]Anthracene",LB
+37151,18.25428,Carbon Monoxide,TON
+37151,2.850554,PM10-Primary from certain diesel engines,TON
+37143,0.000872454,Chrysene,LB
+37143,7.541388e-06,Mercury,LB
+37143,0.006899238,Fluorene,LB
+37143,0.0005953895,Organic Carbon portion of PM2.5-PRI,TON
+37139,71.87568,Acrolein,LB
+37139,2.827476,Anthracene,LB
+37139,62.29756,Propionaldehyde,LB
+37139,3.703922,"Benzo[g,h,i,]Perylene",LB
+37139,0.998267,Benzo[b]Fluoranthene,LB
+37139,0.9932458,Benz[a]Anthracene,LB
+37139,3.299356,Acenaphthene,LB
+37139,6.68312,Fluorene,LB
+37139,1.675417,Methane,TON
+37139,1.902579,PM2.5 Primary (Filt + Cond),TON
+37123,5.69384,Ethyl Benzene,LB
+37123,0.00979125,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.4291176,Benz[a]Anthracene,LB
+37123,2.154708,Phenanthrene,LB
+37123,0.1816947,Organic Carbon portion of PM2.5-PRI,TON
+37119,116.6726,Xylenes (Mixed Isomers),LB
+37119,7.540142,Fluoranthene,LB
+37119,0.0894973,Arsenic,LB
+37119,615.3406,Acetaldehyde,LB
+37119,0.2043349,Sulfur Dioxide,TON
+37115,0.011307762,Pyrene,LB
+37115,1.2430484e-06,Chromium (VI),LB
+37115,0.00311386,Benzo[k]Fluoranthene,LB
+37115,7.43255,"2,2,4-Trimethylpentane",LB
+37115,0.3392556,Naphthalene,LB
+37115,0.005282485,Methane,TON
+37101,2.778648e-05,Mercury,LB
+37101,0.002307885,Nitrous Oxide,TON
+37101,6.397399,Nitrogen Oxides,TON
+37101,0.01727906,Sulfate Portion of PM2.5-PRI,TON
+37101,0.772682,Styrene,LB
+37101,2.997476,Propionaldehyde,LB
+37073,0.00382787,"Benzo[g,h,i,]Perylene",LB
+37073,0.006042824,Fluoranthene,LB
+37073,0.018907034,Acenaphthylene,LB
+37073,0.0011271362,Benz[a]Anthracene,LB
+37073,0.215598,Naphthalene,LB
+37073,1.379772,Carbon Monoxide,TON
+37073,0.000311282,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.0001648273,Sulfur Dioxide,TON
+37085,28.34948,Benzene,LB
+37081,0.02342254,Benz[a]Anthracene,LB
+37081,18.428628,Acetaldehyde,LB
+37081,0.10549098,"Benzo[g,h,i,]Perylene",LB
+37081,0.0874243,Fluoranthene,LB
+37081,0.04007958,Benz[a]Anthracene,LB
+37081,0.06705785,Ammonia,TON
+37081,0.3790686,PM10 Primary (Filt + Cond),TON
+37081,90.85158,"Benzo[g,h,i,]Perylene",LB
+37081,24.15654,Benzo[k]Fluoranthene,LB
+37081,353.8278,Acenaphthylene,LB
+37081,0.7835804,"Dibenzo[a,h]Anthracene",LB
+37081,77244.38,Benzene,LB
+37081,26083.36,Acetaldehyde,LB
+37081,19964.01,Carbon Monoxide,TON
+37081,38.88959,Nitrous Oxide,TON
+37081,0.1106348,Nitrate portion of PM2.5-PRI,TON
+37067,0.2817804,Fluoranthene,LB
+37067,0.000705115,Mercury,LB
+37067,0.013480602,Arsenic,LB
+37067,10.546566,"1,3-Butadiene",LB
+37067,441.4636,Toluene,LB
+37067,72.68148,Carbon Monoxide,TON
+37067,3925.83,Carbon Dioxide,TON
+37067,17.87054,Chrysene,LB
+37067,328.9352,Phenanthrene,LB
+37067,1882.656,Nitrogen Oxides,TON
+37067,87.39899,PM10 Primary (Filt + Cond),TON
+37065,0.06029338,Acenaphthylene,LB
+37065,0.0003554214,"Dibenzo[a,h]Anthracene",LB
+37065,0.15505376,Styrene,LB
+37065,0.896987,Toluene,LB
+37043,0.2345264,Ethyl Benzene,LB
+37043,0.358499,Propionaldehyde,LB
+37043,0.0016685646,Benzo[b]Fluoranthene,LB
+37043,0.018011266,Benz[a]Anthracene,LB
+37043,0.0004565112,Arsenic,LB
+37043,0.76388,Naphthalene,LB
+37037,8.342604,"1,3-Butadiene",LB
+37037,0.000927095,"Dibenzo[a,h]Anthracene",LB
+37037,0.02491982,Benz[a]Anthracene,LB
+37037,0.005165946,Nickel,LB
+37037,21.79914,Acetaldehyde,LB
+37037,0.05349505,Nitrous Oxide,TON
+37037,0.01605541,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,1.257412,Volatile Organic Compounds,TON
+37035,0.03320802,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.13040768,Benzo[b]Fluoranthene,LB
+37035,24.4935,Acenaphthylene,LB
+37035,1.560836,Chrysene,LB
+37035,3.513784,PM25-Primary from certain diesel engines,TON
+37035,0.7075889,Ammonia,TON
+37035,4.86382,PM10 Primary (Filt + Cond),TON
+37035,3.652912,PM2.5 Primary (Filt + Cond),TON
+37035,0.019122764,Hexane,LB
+37035,2.1151e-05,Anthracene,LB
+37035,4.032316e-05,"Benzo[g,h,i,]Perylene",LB
+37035,0.00011154646,Acenaphthylene,LB
+37035,0.018321902,"2,2,4-Trimethylpentane",LB
+37035,3.266076e-07,Nickel,LB
+37035,1.248457e-05,Nitrous Oxide,TON
+37031,0.2329312,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,33.8386,Acrolein,LB
+37031,0.01911905,"Benzo[g,h,i,]Perylene",LB
+37025,381.9066,Xylenes (Mixed Isomers),LB
+37025,0.05469108,Benzo[k]Fluoranthene,LB
+37025,55.68746,Formaldehyde,LB
+37025,125.24364,"2,2,4-Trimethylpentane",LB
+37025,0.07605838,Manganese,LB
+37025,0.9438196,Phenanthrene,LB
+37025,9.00678,Naphthalene,LB
+37025,3422.516,Carbon Dioxide,TON
+37025,7.087469,Nitrogen Oxides,TON
+37025,0.1099811,PM2.5 Primary (Filt + Cond),TON
+37027,67.95948,Toluene,LB
+37027,0.006161116,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,6.443896e-06,Chromium (VI),LB
+37027,0.005935312,Benzo[b]Fluoranthene,LB
+37027,6.460066e-05,Mercury,LB
+37175,2685.688,Xylenes (Mixed Isomers),LB
+37175,158.05968,Benzene,LB
+37173,4508.45,Toluene,LB
+37173,1054.7958,"2,2,4-Trimethylpentane",LB
+37159,7.700472,Toluene,LB
+37159,8.164728,Xylenes (Mixed Isomers),LB
+37159,0.004451076,"Benzo[g,h,i,]Perylene",LB
+37159,8.893802,Benzene,LB
+37159,0.003553037,Nitrous Oxide,TON
+37159,0.2615158,PM2.5 Primary (Filt + Cond),TON
+37159,0.01272691,Sulfate Portion of PM2.5-PRI,TON
+37159,0.5281683,Volatile Organic Compounds,TON
+37151,0.4327048,Chrysene,LB
+37151,0.199134,Arsenic,LB
+37151,3.252896,Fluorene,LB
+37151,0.001774761,Nitrate portion of PM2.5-PRI,TON
+37151,0.0170417,Sulfate Portion of PM2.5-PRI,TON
+37151,27.2602,Volatile Organic Compounds,TON
+37141,241.8806,Toluene,LB
+37141,0.115278,Pyrene,LB
+37141,0.0011145552,"Dibenzo[a,h]Anthracene",LB
+37141,0.0004713902,Mercury,LB
+37137,0.6416296,"1,3-Butadiene",LB
+37137,1.5361664,Acrolein,LB
+37137,1.2339004,Toluene,LB
+37137,0.0652045,Acenaphthene,LB
+37137,0.000518352,Nitrous Oxide,TON
+37137,0.05868802,PM10 Primary (Filt + Cond),TON
+37123,2.546727e-07,Sulfate Portion of PM2.5-PRI,TON
+37123,0.018746362,Xylenes (Mixed Isomers),LB
+37123,4.847068e-05,Phenanthrene,LB
+37123,1.371022e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37109,2.73508,Ethyl Benzene,LB
+37109,0.0014729254,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.0014806556,Benzo[a]Pyrene,LB
+37109,4.991628e-05,Arsenic,LB
+37109,0.07345373,Nitrogen Oxides,TON
+37105,0.9411535,PM2.5 Primary (Filt + Cond),TON
+37105,0.05198646,Sulfate Portion of PM2.5-PRI,TON
+37105,29.02302,Acrolein,LB
+37105,32.0895,Toluene,LB
+37105,1.1769782,Anthracene,LB
+37105,1.8202592,Acenaphthylene,LB
+37103,0.9927896,Acenaphthylene,LB
+37103,0.00013767812,Mercury,LB
+37103,0.02878706,Arsenic,LB
+37103,2.020936,Styrene,LB
+37103,4.63555,"1,3-Butadiene",LB
+37103,12.50341,Xylenes (Mixed Isomers),LB
+37103,0.08506224,Benzo[a]Pyrene,LB
+37103,0.003514094,"Dibenzo[a,h]Anthracene",LB
+37103,66.9534,Acetaldehyde,LB
+37103,0.4680286,Acenaphthene,LB
+37103,0.09640025,Methane,TON
+37103,5656.356,Carbon Dioxide,TON
+37103,0.08495756,Ammonia,TON
+37103,18.60821,Nitrogen Oxides,TON
+37103,5.22197,"1,3-Butadiene",LB
+37103,0.00968782,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.005219736,Benzo[k]Fluoranthene,LB
+37103,0.01135194,Arsenic,LB
+37103,0.528493,Acenaphthene,LB
+37103,1.1724166,Fluorene,LB
+37103,2088.328,Carbon Dioxide,TON
+37103,0.01808149,Sulfate Portion of PM2.5-PRI,TON
+37101,0.07413492,Benzo[b]Fluoranthene,LB
+37101,0.248662,Benzo[a]Pyrene,LB
+37101,0.8240506,PM25-Primary from certain diesel engines,TON
+37101,0.3507892,Organic Carbon portion of PM2.5-PRI,TON
+37101,6908.282,Toluene,LB
+37101,295.5192,Formaldehyde,LB
+37101,0.7850334,Acenaphthene,LB
+37101,212.0513,Carbon Monoxide,TON
+37101,5520.679,Carbon Dioxide,TON
+37097,0.04720016,Propionaldehyde,LB
+37097,4.58523e-06,Chromium (VI),LB
+37097,1.0898886,Formaldehyde,LB
+37097,0.001794333,Methane,TON
+37097,0.001533357,Nitrous Oxide,TON
+37097,0.01627382,PM10 Primary (Filt + Cond),TON
+37097,0.006724808,Sulfur Dioxide,TON
+37093,0.03202454,Methane,TON
+37093,0.06366111,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.009579063,Ammonia,TON
+37093,0.243277,PM10 Primary (Filt + Cond),TON
+37089,0.003177322,Hexane,LB
+37089,1.0901414e-07,Nickel,LB
+37089,0.06301177,Carbon Dioxide,TON
+37087,0.002169764,Ethyl Benzene,LB
+37087,0.0002152668,Naphthalene,LB
+37087,0.05780749,Carbon Dioxide,TON
+37081,5.369404e-06,"Dibenzo[a,h]Anthracene",LB
+37081,0.0002302795,Methane,TON
+37081,0.0001918999,Nitrous Oxide,TON
+37081,0.0001031194,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.11745324,Ethyl Benzene,LB
+37081,0.02134032,"1,3-Butadiene",LB
+37081,0.6359136,Toluene,LB
+37081,0.003875148,Propionaldehyde,LB
+37081,2.369828e-07,Chromium (VI),LB
+37081,0.0002339952,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,1.353467,Propionaldehyde,LB
+37059,0.016016,Manganese,LB
+37059,22.46568,Acetaldehyde,LB
+37059,1066.929,Carbon Dioxide,TON
+37059,2.837708,Nitrogen Oxides,TON
+37059,0.00148182,Sulfate Portion of PM2.5-PRI,TON
+37061,0.000645533,Acenaphthylene,LB
+37061,1.293978e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.002791392,PM10 Primary (Filt + Cond),TON
+37055,0.0006077106,PM2.5 Primary (Filt + Cond),TON
+37055,0.0221107,Styrene,LB
+37055,0.07898108,"1,3-Butadiene",LB
+37055,0.3276904,Formaldehyde,LB
+37055,7.165888e-06,"Dibenzo[a,h]Anthracene",LB
+37051,8731.736,Hexane,LB
+37051,11548.302,"2,2,4-Trimethylpentane",LB
+37047,8.660524,Styrene,LB
+37047,0.0157628,Benzo[k]Fluoranthene,LB
+37047,3.371426,Acenaphthylene,LB
+37047,0.7481726,Chrysene,LB
+37047,0.4181,Methane,TON
+37047,3.041069,PM2.5 Primary (Filt + Cond),TON
+37047,0.07081038,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.03397551,Sulfate Portion of PM2.5-PRI,TON
+37047,70.65676,Toluene,LB
+37047,0.007458142,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,27.2228,"2,2,4-Trimethylpentane",LB
+37047,0.18928722,Nickel,LB
+37047,494.8452,Acetaldehyde,LB
+37047,10.146502,Phenanthrene,LB
+37047,75.95863,Carbon Monoxide,TON
+37047,1.06139,PM25-Primary from certain diesel engines,TON
+37047,0.83441,Elemental Carbon portion of PM2.5-PRI,TON
+37177,250.2218,Ethyl Benzene,LB
+37177,1526.1996,Toluene,LB
+37177,0.5954822,"Benzo[g,h,i,]Perylene",LB
+37177,0.5534254,Fluoranthene,LB
+37177,1.6903538,Acenaphthylene,LB
+37177,332.7284,"2,2,4-Trimethylpentane",LB
+37177,0.138002,Benz[a]Anthracene,LB
+37177,386.4064,Benzene,LB
+37177,0.00611699,Mercury,LB
+37177,12.39755,Nitrogen Oxides,TON
+37177,0.1308745,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.1720505,Sulfur Dioxide,TON
+37175,5.847692,Acrolein,LB
+37175,3.913926,Propionaldehyde,LB
+37175,0.015797294,Benzo[b]Fluoranthene,LB
+37175,0.8955478,Phenanthrene,LB
+37175,373.5553,Carbon Dioxide,TON
+37175,0.1669962,PM25-Primary from certain diesel engines,TON
+37175,0.07422449,Organic Carbon portion of PM2.5-PRI,TON
+37161,3.299966,Fluoranthene,LB
+37161,13.035804,"2,2,4-Trimethylpentane",LB
+37161,20.08185,Nitrogen Oxides,TON
+37155,101.01746,Acrolein,LB
+37155,0.05327288,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,2.402366,Benz[a]Anthracene,LB
+37155,121.44176,Benzene,LB
+37155,3.833292,Acenaphthene,LB
+37155,142.76632,Naphthalene,LB
+37155,40.79739,Carbon Monoxide,TON
+37155,0.05248416,Nitrous Oxide,TON
+37155,0.3854541,Sulfate Portion of PM2.5-PRI,TON
+37155,32.95494,Styrene,LB
+37155,0.765905,Chrysene,LB
+37155,12.800028,Fluorene,LB
+37155,14141.48,Carbon Dioxide,TON
+37161,0.09737528,Benzo[b]Fluoranthene,LB
+37161,2.22765,Acenaphthylene,LB
+37161,11.16881,Carbon Monoxide,TON
+37143,4.495788,Propionaldehyde,LB
+37143,5.034642,Xylenes (Mixed Isomers),LB
+37143,0.6095144,Fluorene,LB
+37143,0.3723618,PM25-Primary from certain diesel engines,TON
+37143,433.7214,Toluene,LB
+37143,40.97792,Formaldehyde,LB
+37143,0.0121028,Nickel,LB
+37143,7.001976,Naphthalene,LB
+37131,10.092158,Toluene,LB
+37131,0.947689,Acenaphthylene,LB
+37131,161.26238,Formaldehyde,LB
+37131,15.576082,Benzene,LB
+37131,0.007155258,Arsenic,LB
+37131,0.002180177,Nitrate portion of PM2.5-PRI,TON
+37131,0.07839119,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,40.83518,Xylenes (Mixed Isomers),LB
+37129,0.005622442,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,2.24309,Acenaphthylene,LB
+37129,0.19856018,Chrysene,LB
+37129,480.8168,Formaldehyde,LB
+37129,12.888142,"2,2,4-Trimethylpentane",LB
+37129,0.3866644,Benz[a]Anthracene,LB
+37129,42.48636,Benzene,LB
+37129,0.00014638846,Mercury,LB
+37129,0.0306089,Arsenic,LB
+37129,2.417152,Fluorene,LB
+37129,49.9683,Naphthalene,LB
+37129,0.2688395,Elemental Carbon portion of PM2.5-PRI,TON
+37129,10.57313,Nitrogen Oxides,TON
+37129,0.006775186,Fluoranthene,LB
+37129,4.05912e-05,Nickel,LB
+37129,1.609678,Carbon Monoxide,TON
+37129,0.0003422646,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,2.931904,"1,3-Butadiene",LB
+37121,0.304202,Anthracene,LB
+37121,0.003434672,"Benzo[g,h,i,]Perylene",LB
+37121,0.002202058,"Dibenzo[a,h]Anthracene",LB
+37121,2.722706,"2,2,4-Trimethylpentane",LB
+37111,0.14009152,Styrene,LB
+37111,0.0019577504,Benzo[b]Fluoranthene,LB
+37111,0.9158508,Benzene,LB
+37111,4.222216,Acetaldehyde,LB
+37111,0.06813632,Fluorene,LB
+37111,344.2898,Propionaldehyde,LB
+37111,6.249912,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.1434714,"Dibenzo[a,h]Anthracene",LB
+37111,16.783782,Acenaphthene,LB
+37111,6.692875,Nitrous Oxide,TON
+37111,0.012037214,Nickel,LB
+37111,0.018456314,Arsenic,LB
+37111,0.05951208,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.03283061,Sulfur Dioxide,TON
+37111,8.59738,Volatile Organic Compounds,TON
+37111,5.496466,Styrene,LB
+37111,1.1301064,Acenaphthylene,LB
+37109,5278.426,Ethyl Benzene,LB
+37109,170.35074,Styrene,LB
+37109,33527.32,Toluene,LB
+37109,6.28579,Anthracene,LB
+37109,141.07606,Propionaldehyde,LB
+37109,19594.7,Xylenes (Mixed Isomers),LB
+37109,10.149466,"Benzo[g,h,i,]Perylene",LB
+37109,0.09501546,Mercury,LB
+37109,1.8165962,Arsenic,LB
+37109,379.0768,Naphthalene,LB
+37109,0.9551817,Elemental Carbon portion of PM2.5-PRI,TON
+37109,184.9343,Nitrogen Oxides,TON
+37103,0.00018453048,Propionaldehyde,LB
+37103,1.3668842e-05,Fluoranthene,LB
+37103,0.00291397,Formaldehyde,LB
+37103,1.180429e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37103,1.109789e-05,PM10 Primary (Filt + Cond),TON
+37101,0.003009163,Nitrate portion of PM2.5-PRI,TON
+37101,0.5481665,Organic Carbon portion of PM2.5-PRI,TON
+37101,1282.361,Ethyl Benzene,LB
+37101,0.02157962,"Dibenzo[a,h]Anthracene",LB
+37091,0.1421646,Hexane,LB
+37091,0.0002805774,Pyrene,LB
+37091,8.007916e-06,Arsenic,LB
+37091,0.0003371984,Fluorene,LB
+37091,8.79952e-05,PM2.5 Primary (Filt + Cond),TON
+37089,70.17994,Propionaldehyde,LB
+37089,246.316,Xylenes (Mixed Isomers),LB
+37089,0.15405432,Nickel,LB
+37089,133.4388,Nitrogen Oxides,TON
+37089,0.240563,Anthracene,LB
+37089,3.52678,Propionaldehyde,LB
+37089,0.7146896,Pyrene,LB
+37089,74.43424,Formaldehyde,LB
+37089,0.008007448,Nickel,LB
+37089,0.1899538,PM10-Primary from certain diesel engines,TON
+37089,0.05987167,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.02399228,Ammonia,TON
+37089,0.3137014,PM10 Primary (Filt + Cond),TON
+37117,0.5187186,"1,3-Butadiene",LB
+37117,0.02095928,"Benzo[g,h,i,]Perylene",LB
+37117,0.004242402,Benzo[k]Fluoranthene,LB
+37117,0.0077806,Benzo[a]Pyrene,LB
+37117,0.003837614,Nickel,LB
+37117,0.004665844,Acenaphthene,LB
+37117,0.03353517,PM10 Primary (Filt + Cond),TON
+37175,0.03319764,Benzo[b]Fluoranthene,LB
+37175,0.5033076,Acenaphthene,LB
+37175,1.6394926,Styrene,LB
+37175,8.091958,Toluene,LB
+37175,2.94437,Hexane,LB
+37175,634.9435,Carbon Dioxide,TON
+37165,0.0014793226,Benzo[k]Fluoranthene,LB
+37165,0.1266928,Chrysene,LB
+37165,0.9748696,Anthracene,LB
+37165,0.002718258,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.3245972,PM25-Primary from certain diesel engines,TON
+37165,0.0006914029,Nitrate portion of PM2.5-PRI,TON
+37165,7.82136,Nitrogen Oxides,TON
+37161,422.8764,Ethyl Benzene,LB
+37161,703.2702,Benzene,LB
+37161,0.004850708,Mercury,LB
+37161,12.189,Volatile Organic Compounds,TON
+37157,0.2317484,Acrolein,LB
+37157,0.4582535,Nitrogen Oxides,TON
+37157,0.003737498,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.012391214,Nickel,LB
+37151,0.2312009,PM10-Primary from certain diesel engines,TON
+37151,3.654303,Nitrogen Oxides,TON
+37151,0.3357576,PM10 Primary (Filt + Cond),TON
+37149,0.11071184,Anthracene,LB
+37149,0.2168712,Pyrene,LB
+37149,0.5868258,Acenaphthylene,LB
+37149,1048.6694,Toluene,LB
+37149,6.685504,Naphthalene,LB
+37149,0.05882648,Methane,TON
+37149,917.3734,Carbon Dioxide,TON
+37149,1.871056,Nitrogen Oxides,TON
+37149,0.03483064,Organic Carbon portion of PM2.5-PRI,TON
+37149,4.488098,Volatile Organic Compounds,TON
+37141,29.98928,"1,3-Butadiene",LB
+37141,42.92948,Hexane,LB
+37141,157.60836,Naphthalene,LB
+37141,3.638369,PM25-Primary from certain diesel engines,TON
+37141,0.7547675,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.4151466,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.3719568,Sulfur Dioxide,TON
+37003,14.916316,Propionaldehyde,LB
+37003,0.015831896,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.0621876,Benzo[b]Fluoranthene,LB
+37003,0.4018168,Chrysene,LB
+37003,5.236742e-05,Mercury,LB
+37003,0.003736338,Nitrate portion of PM2.5-PRI,TON
+37075,0.08208826,Ethyl Benzene,LB
+37075,0.004025588,Styrene,LB
+37075,0.00012715492,Anthracene,LB
+37075,0.03354636,Propionaldehyde,LB
+37075,0.2200814,Formaldehyde,LB
+37075,0.0003439624,PM2.5 Primary (Filt + Cond),TON
+37021,42.34632,Toluene,LB
+37021,0.017389692,Anthracene,LB
+37021,36.97742,Formaldehyde,LB
+37021,0.10551788,Phenanthrene,LB
+37147,3.196536,"2,2,4-Trimethylpentane",LB
+37147,0.002361266,Acenaphthene,LB
+37147,0.02705082,Ammonia,TON
+37147,0.0003381579,Sulfate Portion of PM2.5-PRI,TON
+37127,0.0053128,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.003284582,Fluoranthene,LB
+37127,0.002030878,Chrysene,LB
+37127,1.0857528,Ethyl Benzene,LB
+37127,2.292918,Hexane,LB
+37127,0.0017111006,Anthracene,LB
+37121,0.0255418,Volatile Organic Compounds,TON
+37011,0.02289468,"1,3-Butadiene",LB
+37011,4.177922e-08,Chromium (VI),LB
+37011,0.00027042,"Benzo[g,h,i,]Perylene",LB
+37011,0.13204,"2,2,4-Trimethylpentane",LB
+37011,0.0001462597,Methane,TON
+37011,0.07487739,Carbon Monoxide,TON
+37011,0.0001056247,PM2.5 Primary (Filt + Cond),TON
+37011,2.703908e-06,Sulfate Portion of PM2.5-PRI,TON
+37005,0.06716252,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.02026383,Ammonia,TON
+37005,3.104137,Nitrogen Oxides,TON
+37005,0.03195956,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.7766094,Pyrene,LB
+37005,0.5952086,Fluoranthene,LB
+37005,0.4737184,Acenaphthylene,LB
+37005,41.81592,Acetaldehyde,LB
+37005,1.0375522,Phenanthrene,LB
+37053,0.0008169644,Pyrene,LB
+37053,0.0004751848,Benzo[b]Fluoranthene,LB
+37053,0.002377048,Phenanthrene,LB
+37053,0.0217609,Naphthalene,LB
+37053,0.03927592,Nitrogen Oxides,TON
+37053,4.357464e-05,Sulfate Portion of PM2.5-PRI,TON
+37039,0.4741194,Acrolein,LB
+37039,0.008719848,Pyrene,LB
+37039,0.019778916,"Benzo[g,h,i,]Perylene",LB
+37039,0.007812486,Nitrous Oxide,TON
+37013,0.003876441,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.15523658,Anthracene,LB
+37013,0.0006600422,"Benzo[g,h,i,]Perylene",LB
+37013,0.00018010328,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,9.88373e-05,"Dibenzo[a,h]Anthracene",LB
+37005,1.1642426,Ethyl Benzene,LB
+37005,0.2409356,"1,3-Butadiene",LB
+37005,0.001393794,Anthracene,LB
+37005,0.002710252,Pyrene,LB
+37005,4.662854e-07,Chromium (VI),LB
+37005,0.007434276,Acenaphthylene,LB
+37005,0.4878046,Formaldehyde,LB
+37005,0.5760594,Acetaldehyde,LB
+37005,0.003307622,Fluorene,LB
+37005,15.57332,Carbon Dioxide,TON
+37177,0.5712245,Carbon Monoxide,TON
+37177,0.0009880752,PM10 Primary (Filt + Cond),TON
+37177,0.0006510552,Benzo[a]Pyrene,LB
+37177,0.03646502,Propionaldehyde,LB
+37177,0.0004809954,Benzo[k]Fluoranthene,LB
+37173,9.232518,Styrene,LB
+37173,0.1533456,Benzo[a]Pyrene,LB
+37173,0.0035122,"Dibenzo[a,h]Anthracene",LB
+37173,2.122444,Phenanthrene,LB
+37173,0.2549393,Methane,TON
+37173,5055.216,Carbon Dioxide,TON
+37173,0.571103,Fluoranthene,LB
+37171,20.88982,Ethyl Benzene,LB
+37171,153.85798,Toluene,LB
+37171,0.11116736,Acenaphthylene,LB
+37171,0.009117552,Chrysene,LB
+37171,0.1332946,Phenanthrene,LB
+37171,0.04931138,Fluorene,LB
+37171,10.98412,Carbon Monoxide,TON
+37171,153.0362,Carbon Dioxide,TON
+37171,0.008489325,Nitrous Oxide,TON
+37169,0.05792359,Sulfate Portion of PM2.5-PRI,TON
+37169,91.70554,Volatile Organic Compounds,TON
+37169,19145.586,Toluene,LB
+37169,4191.576,"2,2,4-Trimethylpentane",LB
+37169,4.269964,Acenaphthene,LB
+37169,5.957126,PM10 Primary (Filt + Cond),TON
+37149,0.3853857,Nitrogen Oxides,TON
+37149,5.201558e-05,Sulfate Portion of PM2.5-PRI,TON
+37149,82.68537,Carbon Dioxide,TON
+37149,0.002138752,Ammonia,TON
+37153,0.017547332,Acenaphthene,LB
+37153,0.001858828,Methane,TON
+37153,0.2706965,Nitrogen Oxides,TON
+37153,0.04054192,Fluoranthene,LB
+37153,0.02950196,Acenaphthylene,LB
+37153,0.07652258,Styrene,LB
+37153,0.17287312,"1,3-Butadiene",LB
+37153,0.4197452,Acrolein,LB
+37147,4.38458e-05,Chromium (VI),LB
+37147,0.02283126,Benzo[b]Fluoranthene,LB
+37147,0.16514986,Chrysene,LB
+37147,3.869056e-05,Mercury,LB
+37147,21.39704,Naphthalene,LB
+37147,0.2329332,Elemental Carbon portion of PM2.5-PRI,TON
+37147,28.29748,Hexane,LB
+37147,0.10797172,Phenanthrene,LB
+37147,0.004253336,Organic Carbon portion of PM2.5-PRI,TON
+37145,25.23357,Volatile Organic Compounds,TON
+37139,11.501392,Propionaldehyde,LB
+37139,0.15658118,Benzo[a]Pyrene,LB
+37139,100.36344,Acetaldehyde,LB
+37139,2.694068,Phenanthrene,LB
+37139,0.06580035,Ammonia,TON
+37143,0.0014038318,"Benzo[g,h,i,]Perylene",LB
+37143,0.0003831842,Chrysene,LB
+37143,0.4255102,Formaldehyde,LB
+37143,0.02838956,Acrolein,LB
+37143,0.0005033798,Manganese,LB
+37143,0.001373538,Acenaphthene,LB
+37143,0.001407411,Ammonia,TON
+37143,0.07351753,Nitrogen Oxides,TON
+37143,0.0007387902,PM2.5 Primary (Filt + Cond),TON
+37141,148.4093,Formaldehyde,LB
+37141,0.3511378,Benz[a]Anthracene,LB
+37141,2.559898e-05,Mercury,LB
+37141,64.46164,Acetaldehyde,LB
+37141,0.4038253,PM10-Primary from certain diesel engines,TON
+37141,0.02308859,Ammonia,TON
+37141,0.5072911,PM10 Primary (Filt + Cond),TON
+37137,0.0002860186,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.1389432,Acenaphthene,LB
+37137,0.2385376,Fluorene,LB
+37137,0.000850167,Nitrous Oxide,TON
+37133,0.0271201,Benzo[a]Pyrene,LB
+37133,0.9221544,Hexane,LB
+37133,0.002061836,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.02550888,Manganese,LB
+37133,0.002598874,Arsenic,LB
+37133,0.10500802,Acenaphthene,LB
+37133,0.009619407,Sulfate Portion of PM2.5-PRI,TON
+37127,0.0005109566,Chromium (VI),LB
+37127,25.85552,Styrene,LB
+37127,15.807952,Phenanthrene,LB
+37127,1.578051,PM25-Primary from certain diesel engines,TON
+37127,37.62445,Nitrogen Oxides,TON
+37121,10.232698,Xylenes (Mixed Isomers),LB
+37121,7.429306e-07,Manganese,LB
+37121,6.822648e-05,Phenanthrene,LB
+37121,0.08080556,Carbon Dioxide,TON
+37121,0.0002227232,Volatile Organic Compounds,TON
+37121,0.0444687,Toluene,LB
+37121,0.009889146,Hexane,LB
+37117,1.522613,Acrolein,LB
+37117,0.2092994,Pyrene,LB
+37117,213.0991,Carbon Dioxide,TON
+37117,0.05716148,PM10-Primary from certain diesel engines,TON
+37117,0.7896567,Nitrogen Oxides,TON
+37117,0.0231641,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.07675554,PM10 Primary (Filt + Cond),TON
+37117,0.19891022,Hexane,LB
+37117,9.048076e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.2258194,Benzene,LB
+37117,1.46581e-07,Mercury,LB
+37107,0.03408166,Manganese,LB
+37107,2.047944e-05,Mercury,LB
+37107,0.3923267,PM10-Primary from certain diesel engines,TON
+37107,10.34577,Toluene,LB
+37107,0.006852234,"Benzo[g,h,i,]Perylene",LB
+37107,0.00853773,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,150.74876,Formaldehyde,LB
+37107,0.002016071,Nitrate portion of PM2.5-PRI,TON
+37097,199.84854,Benzene,LB
+37097,0.012282652,Nickel,LB
+37097,0.9999168,Phenanthrene,LB
+37097,0.138639,Nitrous Oxide,TON
+37097,0.0658604,Chrysene,LB
+37097,129.85216,"2,2,4-Trimethylpentane",LB
+37097,108.33044,Ethyl Benzene,LB
+37097,3.76527,Acrolein,LB
+37097,399.3906,Xylenes (Mixed Isomers),LB
+37105,0.9986846,Ethyl Benzene,LB
+37105,3.696046,Xylenes (Mixed Isomers),LB
+37105,0.5148288,Formaldehyde,LB
+37105,1.4389358,Benzene,LB
+37105,0.002159241,Methane,TON
+37105,0.0003526897,Organic Carbon portion of PM2.5-PRI,TON
+37105,8338.17,Hexane,LB
+37105,4.12776,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,48.56532,Acenaphthylene,LB
+37105,1.0469416,Nickel,LB
+37105,2.389018,Organic Carbon portion of PM2.5-PRI,TON
+37103,11.89221,Nitrogen Oxides,TON
+37103,0.6300268,Acenaphthylene,LB
+37099,25.55862,Acrolein,LB
+37099,0.01607681,"Benzo[g,h,i,]Perylene",LB
+37099,0.5105986,Chrysene,LB
+37099,1.0892128,Acenaphthene,LB
+37099,4931.887,Carbon Dioxide,TON
+37099,1.7559924e-06,Chromium (VI),LB
+37099,0.002096024,Benzo[b]Fluoranthene,LB
+37099,0.03272206,Acenaphthylene,LB
+37099,0.00021952,Nickel,LB
+37099,0.0003366074,Arsenic,LB
+37099,9.631923e-05,Sulfate Portion of PM2.5-PRI,TON
+37083,2.996558,Anthracene,LB
+37083,0.02786614,"Benzo[g,h,i,]Perylene",LB
+37083,0.121257,Arsenic,LB
+37083,6.783748,Fluorene,LB
+37083,46089.64,Carbon Dioxide,TON
+37083,0.3787401,Sulfate Portion of PM2.5-PRI,TON
+37017,2.53579,Acetaldehyde,LB
+37017,0.4608122,Acrolein,LB
+37017,0.0002629694,"Benzo[g,h,i,]Perylene",LB
+37017,0.00017516564,Benzo[k]Fluoranthene,LB
+37017,0.014182298,Benz[a]Anthracene,LB
+37021,7.350714,Arsenic,LB
+37021,2572.298,Naphthalene,LB
+37021,36504.74,Hexane,LB
+37021,15342.886,Formaldehyde,LB
+37021,21.80758,Benzo[a]Pyrene,LB
+37017,7388.79,Hexane,LB
+37017,9812.212,Benzene,LB
+37017,0.056583,Mercury,LB
+37017,10.052274,Acenaphthene,LB
+37017,4.237327,Nitrous Oxide,TON
+37017,305.6444,Nitrogen Oxides,TON
+37017,0.08407101,Sulfate Portion of PM2.5-PRI,TON
+37009,3.368182,Propionaldehyde,LB
+37009,0.0016197354,"Benzo[g,h,i,]Perylene",LB
+37009,0.007486488,Nickel,LB
+37009,0.001644208,Arsenic,LB
+37009,6.715612,Naphthalene,LB
+37009,0.001312083,Nitrous Oxide,TON
+37009,0.004272012,Sulfur Dioxide,TON
+37015,0.00563888,Arsenic,LB
+37015,0.00411466,Acenaphthene,LB
+37015,5.366614,Carbon Monoxide,TON
+37015,0.006720954,Nitrous Oxide,TON
+37021,0.0014091946,Chrysene,LB
+37021,0.0018703706,Nickel,LB
+37009,0.5483776,"1,3-Butadiene",LB
+37009,0.01997,Acenaphthylene,LB
+37009,0.004342598,Acenaphthene,LB
+37009,0.00216396,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,5.278468e-06,Chromium (VI),LB
+37171,0.0007000416,Benzo[k]Fluoranthene,LB
+37171,0.0005256384,Chrysene,LB
+37171,3.113282e-05,"Dibenzo[a,h]Anthracene",LB
+37171,0.5340566,"2,2,4-Trimethylpentane",LB
+37171,0.001468126,Manganese,LB
+37171,0.0006598016,Nickel,LB
+37171,0.02607304,Naphthalene,LB
+37171,0.006225062,PM10 Primary (Filt + Cond),TON
+37171,0.0006632409,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.002754728,Sulfur Dioxide,TON
+37171,5.404151e-05,Sulfate Portion of PM2.5-PRI,TON
+37151,8.952808,Ethyl Benzene,LB
+37151,1.8498202,"1,3-Butadiene",LB
+37151,9.905926e-05,Chromium (VI),LB
+37151,0.01672853,Benzo[b]Fluoranthene,LB
+37151,0.03123978,Benzo[a]Pyrene,LB
+37151,0.0009930604,Mercury,LB
+37151,0.01558384,Acenaphthene,LB
+37151,0.1199237,Methane,TON
+37151,18.47594,Carbon Monoxide,TON
+37151,0.007615594,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.01509447,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.00018094744,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,9.352576e-05,Benzo[b]Fluoranthene,LB
+37103,7.031982e-05,Chrysene,LB
+37103,4.1532e-06,"Dibenzo[a,h]Anthracene",LB
+37103,0.06410204,Hexane,LB
+37089,3.316808,Toluene,LB
+37089,1.5006646,Hexane,LB
+37089,0.0011557154,Anthracene,LB
+37089,1.5084474e-05,Chromium (VI),LB
+37089,1.914345,Formaldehyde,LB
+37089,0.0018856622,Nickel,LB
+37089,0.001229268,Acenaphthene,LB
+37089,221.2178,Carbon Dioxide,TON
+37089,1.236631e-05,Nitrate portion of PM2.5-PRI,TON
+37089,0.09768318,Nitrogen Oxides,TON
+37021,3.027924,Acenaphthylene,LB
+37021,0.3957588,Benzo[a]Pyrene,LB
+37021,1.3110562,Benz[a]Anthracene,LB
+37021,1.9456004,Anthracene,LB
+37021,44.96322,Xylenes (Mixed Isomers),LB
+37021,1.288039,PM25-Primary from certain diesel engines,TON
+37017,0.05481858,Benzo[b]Fluoranthene,LB
+37017,0.01482464,Arsenic,LB
+37017,0.1655492,Ammonia,TON
+37017,0.0002182163,Nitrate portion of PM2.5-PRI,TON
+37011,0.00532492,"Benzo[g,h,i,]Perylene",LB
+37011,0.16394386,Chrysene,LB
+37011,18.63568,Naphthalene,LB
+37011,0.759766,PM10-Primary from certain diesel engines,TON
+37011,0.001480027,Nitrate portion of PM2.5-PRI,TON
+37011,2.825667,Nitrous Oxide,TON
+37011,1.229737,Organic Carbon portion of PM2.5-PRI,TON
+37011,11.379684,Pyrene,LB
+37011,6.166508,"Benzo[g,h,i,]Perylene",LB
+37011,1.808268,Chrysene,LB
+37011,0.05320572,"Dibenzo[a,h]Anthracene",LB
+37011,4451.086,"2,2,4-Trimethylpentane",LB
+37011,0.7153382,Manganese,LB
+37011,0.0322238,Mercury,LB
+37003,88.35772,Formaldehyde,LB
+37003,38.5301,Acetaldehyde,LB
+37003,407.9408,Carbon Dioxide,TON
+37003,0.008009843,Ammonia,TON
+37003,0.003587875,Sulfur Dioxide,TON
+37001,0.7222336,"Benzo[g,h,i,]Perylene",LB
+37001,157.6897,Carbon Monoxide,TON
+37001,0.4779533,Ammonia,TON
+37001,0.1502217,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.08204694,Sulfur Dioxide,TON
+37199,4.277294,Hexane,LB
+37199,2.028854e-07,Chromium (VI),LB
+37199,0.00577686,"Benzo[g,h,i,]Perylene",LB
+37199,0.0015565016,Chrysene,LB
+37199,1.769543,Formaldehyde,LB
+37199,4.387004,"2,2,4-Trimethylpentane",LB
+37199,2.53594e-05,Nickel,LB
+37199,0.00551771,Acenaphthene,LB
+37199,0.0001794605,Sulfur Dioxide,TON
+37185,3.482944,"2,2,4-Trimethylpentane",LB
+37185,0.366194,Benz[a]Anthracene,LB
+37185,13.939344,Benzene,LB
+37185,0.04281284,Manganese,LB
+37185,0.006724314,Arsenic,LB
+37185,63.85668,Acetaldehyde,LB
+37185,2444.741,Carbon Dioxide,TON
+37185,0.01310768,Sulfate Portion of PM2.5-PRI,TON
+37185,0.001311598,Chrysene,LB
+37185,0.002838654,Benzo[a]Pyrene,LB
+37185,0.0004781368,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.1762476,Nitrogen Oxides,TON
+37189,0.003521006,Arsenic,LB
+37189,0.3955268,Acenaphthene,LB
+37189,0.2809897,PM10-Primary from certain diesel engines,TON
+37189,1.7114892,Styrene,LB
+37189,3.913258,"1,3-Butadiene",LB
+37189,9.998684,Xylenes (Mixed Isomers),LB
+37189,0.6647888,Acenaphthylene,LB
+37189,0.15547512,Chrysene,LB
+37189,0.2676892,Benz[a]Anthracene,LB
+37189,104.63762,Acrolein,LB
+37189,33.00874,Hexane,LB
+37189,84.80272,Xylenes (Mixed Isomers),LB
+37189,0.0002557704,Mercury,LB
+37189,0.4345586,Methane,TON
+37189,0.2564176,Ammonia,TON
+37193,542.7684,Formaldehyde,LB
+37193,0.2218311,Ammonia,TON
+37193,0.013600018,Benzo[k]Fluoranthene,LB
+37193,2.794244,Acenaphthylene,LB
+37185,3169.052,Carbon Dioxide,TON
+37185,0.03418164,Arsenic,LB
+37185,85.70392,Acetaldehyde,LB
+37183,1518.6734,Toluene,LB
+37183,0.6138094,Ammonia,TON
+37183,0.7276816,Fluoranthene,LB
+37183,0.3149676,Benzo[a]Pyrene,LB
+37183,559.4024,Benzene,LB
+37179,0.2253746,Sulfur Dioxide,TON
+37179,0.08791115,Nitrous Oxide,TON
+37179,153.54204,Ethyl Benzene,LB
+37179,0.3456804,Styrene,LB
+37179,0.012866914,Anthracene,LB
+37179,0.02501884,Pyrene,LB
+37179,0.02192356,Fluoranthene,LB
+37179,0.003971018,Benzo[k]Fluoranthene,LB
+37179,0.005154156,Benzo[a]Pyrene,LB
+37179,9.88512e-05,Mercury,LB
+37179,4.818144,Acetaldehyde,LB
+37179,0.01061409,Methane,TON
+37179,7.421074,Carbon Monoxide,TON
+37179,2.041205e-05,Nitrate portion of PM2.5-PRI,TON
+37179,0.03698538,PM10 Primary (Filt + Cond),TON
+37173,1.8060028,Ethyl Benzene,LB
+37173,0.006837257,Ammonia,TON
+37173,2.330563,Nitrogen Oxides,TON
+37173,0.002621537,Sulfate Portion of PM2.5-PRI,TON
+37125,0.15197702,Anthracene,LB
+37125,0.04519684,Benzo[a]Pyrene,LB
+37125,0.04174412,Benz[a]Anthracene,LB
+37125,191.6166,Benzene,LB
+37125,0.17888104,Acenaphthene,LB
+37125,0.1684488,Methane,TON
+37125,81.17817,Carbon Monoxide,TON
+37125,0.06521945,Ammonia,TON
+37125,0.001220754,Sulfate Portion of PM2.5-PRI,TON
+37113,0.014465024,Chrysene,LB
+37113,0.018991152,Benzo[a]Pyrene,LB
+37113,0.02504731,Ammonia,TON
+37109,1.9627784,Formaldehyde,LB
+37109,2.092248,Acetaldehyde,LB
+37109,148.8421,Carbon Dioxide,TON
+37109,0.3547697,Nitrogen Oxides,TON
+37105,10.726136,Acrolein,LB
+37105,10.683254,Toluene,LB
+37105,0.0006734276,Benzo[k]Fluoranthene,LB
+37105,12.859022,Benzene,LB
+37105,0.02216776,Manganese,LB
+37105,0.008807928,Arsenic,LB
+37105,60.03986,Acetaldehyde,LB
+37105,0.09997497,Elemental Carbon portion of PM2.5-PRI,TON
+37101,1.6217656e-05,Chromium (VI),LB
+37101,0.010083014,Benzo[b]Fluoranthene,LB
+37101,0.0031083,Arsenic,LB
+37101,8.315779,Carbon Monoxide,TON
+37101,0.0211863,PM2.5 Primary (Filt + Cond),TON
+37101,1.5492202,"1,3-Butadiene",LB
+37101,13.444214,Hexane,LB
+37101,0.02788372,Pyrene,LB
+37097,1.4376258,Propionaldehyde,LB
+37097,160.01212,Xylenes (Mixed Isomers),LB
+37097,0.04891726,Manganese,LB
+37097,0.03504977,Nitrous Oxide,TON
+37089,17.151372,Hexane,LB
+37089,36.5396,Propionaldehyde,LB
+37089,7.664296,Pyrene,LB
+37089,0.03543964,"Benzo[g,h,i,]Perylene",LB
+37089,64.50854,Benzene,LB
+37089,18.4062,Carbon Monoxide,TON
+37087,0.14874556,Acenaphthylene,LB
+37087,0.018504626,Benzo[a]Pyrene,LB
+37087,0.2635044,Pyrene,LB
+37087,0.0011511728,"Benzo[g,h,i,]Perylene",LB
+37087,0.00552127,Benzo[b]Fluoranthene,LB
+37087,12.498046,Acetaldehyde,LB
+37087,0.08850304,Acenaphthene,LB
+37087,0.19062434,Fluorene,LB
+37087,3.376184,Nitrogen Oxides,TON
+37087,0.2019613,PM10 Primary (Filt + Cond),TON
+37079,0.5446434,Ethyl Benzene,LB
+37079,1.208054,Xylenes (Mixed Isomers),LB
+37079,0.0255964,Chrysene,LB
+37079,16.521838,Formaldehyde,LB
+37079,0.4231176,"2,2,4-Trimethylpentane",LB
+37079,0.11649978,Fluorene,LB
+37079,0.0002338853,Nitrate portion of PM2.5-PRI,TON
+37073,2.010512e-05,Fluoranthene,LB
+37073,4.733542e-06,Benz[a]Anthracene,LB
+37073,0.004441074,Acetaldehyde,LB
+37073,1.3535504e-05,Acenaphthene,LB
+37085,0.3187745,Organic Carbon portion of PM2.5-PRI,TON
+37085,26.64142,Volatile Organic Compounds,TON
+37085,30.32292,Propionaldehyde,LB
+37085,2.56395,Pyrene,LB
+37085,3376.746,Xylenes (Mixed Isomers),LB
+37085,1.4632006,"Benzo[g,h,i,]Perylene",LB
+37085,1113.9938,"2,2,4-Trimethylpentane",LB
+37081,3.198544,Styrene,LB
+37081,0.6008072,Benz[a]Anthracene,LB
+37081,27.87544,Naphthalene,LB
+37081,4128.454,Carbon Dioxide,TON
+37081,0.2566086,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.696399,PM2.5 Primary (Filt + Cond),TON
+37071,0.00632563,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.15853192,Chrysene,LB
+37071,113.11224,Formaldehyde,LB
+37071,1.3334664,Phenanthrene,LB
+37071,0.01304433,Sulfur Dioxide,TON
+37071,0.6105575,Volatile Organic Compounds,TON
+37065,0.2571734,Ethyl Benzene,LB
+37065,0.255066,"1,3-Butadiene",LB
+37065,1.695518e-06,Chromium (VI),LB
+37065,0.005665388,Benzo[a]Pyrene,LB
+37065,0.1500635,Carbon Monoxide,TON
+37063,0.0793928,Arsenic,LB
+37063,217.8138,Acetaldehyde,LB
+37063,0.2578774,Organic Carbon portion of PM2.5-PRI,TON
+37057,80.97332,Hexane,LB
+37057,410.2186,Xylenes (Mixed Isomers),LB
+37057,2.359316,Benz[a]Anthracene,LB
+37057,0.1955798,Arsenic,LB
+37057,22.86108,Phenanthrene,LB
+37057,10.989916,Fluorene,LB
+37057,4.986455,Methane,TON
+37051,0.5565256,PM2.5 Primary (Filt + Cond),TON
+37051,0.11163242,Manganese,LB
+37051,37.52634,Acrolein,LB
+37051,23.81506,Propionaldehyde,LB
+37051,0.2000966,Chrysene,LB
+37051,511.0818,Formaldehyde,LB
+37051,0.07215312,Benzo[a]Pyrene,LB
+37045,76.21632,Hexane,LB
+37045,3.541647,Volatile Organic Compounds,TON
+37045,0.2558918,Formaldehyde,LB
+37045,1.8848086e-05,"Dibenzo[a,h]Anthracene",LB
+37045,0.2892787,Carbon Monoxide,TON
+37045,0.0001303131,Elemental Carbon portion of PM2.5-PRI,TON
+37045,2.311541e-06,Nitrate portion of PM2.5-PRI,TON
+37045,0.0007849603,PM2.5 Primary (Filt + Cond),TON
+37045,2.352679e-05,Sulfate Portion of PM2.5-PRI,TON
+37045,783.4096,Ethyl Benzene,LB
+37045,31.25364,Styrene,LB
+37045,0.0010329612,Chromium (VI),LB
+37045,1.9284038,Fluoranthene,LB
+37045,1.3212384,Acenaphthene,LB
+37045,68.60136,Naphthalene,LB
+37039,23.25986,Volatile Organic Compounds,TON
+37035,8.214778,Acrolein,LB
+37035,2.736,Hexane,LB
+37035,0.8106352,Fluoranthene,LB
+37035,3.621764e-05,Mercury,LB
+37035,45.9939,Acetaldehyde,LB
+37035,0.06593933,Methane,TON
+37035,1387.205,Carbon Dioxide,TON
+37035,0.1189068,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.06268409,PM10-Primary from certain diesel engines,TON
+37035,0.0328282,Organic Carbon portion of PM2.5-PRI,TON
+37035,1.882609,Volatile Organic Compounds,TON
+37035,0.0013180154,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,1.3105164,Fluoranthene,LB
+37035,0.19364476,Benz[a]Anthracene,LB
+37035,146.64864,Acetaldehyde,LB
+37033,186.3791,Hexane,LB
+37033,0.0633118,Chrysene,LB
+37033,62.38274,Volatile Organic Compounds,TON
+37033,2085.88,Ethyl Benzene,LB
+37033,58.74224,Propionaldehyde,LB
+37033,0.002522608,Chromium (VI),LB
+37033,0.515641,Manganese,LB
+37033,1.324126,Methane,TON
+37029,0.0004584046,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,2.811728e-06,Mercury,LB
+37029,0.8360086,Naphthalene,LB
+37029,0.0002503477,Nitrous Oxide,TON
+37029,0.008593047,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.0008082929,Sulfur Dioxide,TON
+37027,0.00867973,Acrolein,LB
+37027,0.0005031532,"Benzo[g,h,i,]Perylene",LB
+37027,3.34522e-05,Manganese,LB
+37027,2.23378e-07,Mercury,LB
+37027,0.0001400317,Nitrous Oxide,TON
+37027,5.266703e-07,Nitrate portion of PM2.5-PRI,TON
+37027,0.0003332083,PM10 Primary (Filt + Cond),TON
+37027,0.01033502,Volatile Organic Compounds,TON
+37175,18.262178,Toluene,LB
+37175,3.953934,Hexane,LB
+37175,0.008437404,Pyrene,LB
+37175,0.007393094,Fluoranthene,LB
+37175,0.001720627,PM2.5 Primary (Filt + Cond),TON
+37171,3.580072,Fluorene,LB
+37171,1.804386,Ammonia,TON
+37171,2.094317,PM10 Primary (Filt + Cond),TON
+37171,1319.9194,Hexane,LB
+37171,3798.552,Xylenes (Mixed Isomers),LB
+37171,0.7539292,Benzo[a]Pyrene,LB
+37165,0.2159322,Pyrene,LB
+37165,0.0010006362,"Benzo[g,h,i,]Perylene",LB
+37165,0.0012789144,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.0539188,Benz[a]Anthracene,LB
+37165,7.706822e-06,Mercury,LB
+37165,0.003424486,Nickel,LB
+37165,0.2588408,Phenanthrene,LB
+37165,0.06013217,PM2.5 Primary (Filt + Cond),TON
+37165,0.7496618,Toluene,LB
+37165,0.2551232,Hexane,LB
+37165,0.00215457,Benzo[b]Fluoranthene,LB
+37165,0.0002971278,"Dibenzo[a,h]Anthracene",LB
+37165,0.2637756,"2,2,4-Trimethylpentane",LB
+37165,1.0833042,Naphthalene,LB
+37165,0.005749077,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,2.269042e-05,Chromium (VI),LB
+37161,0.02325878,Benzo[k]Fluoranthene,LB
+37161,0.3441404,Acenaphthylene,LB
+37161,0.15298416,Fluorene,LB
+37161,0.01178729,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,1.9289716e-08,Chromium (VI),LB
+37153,0.0001294423,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,6.686216e-05,Organic Carbon portion of PM2.5-PRI,TON
+37145,3.373278e-06,Mercury,LB
+37145,0.006732242,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.002184103,Sulfur Dioxide,TON
+37143,0.5023848,Volatile Organic Compounds,TON
+37139,6.395746,Ethyl Benzene,LB
+37129,0.8275918,Methane,TON
+37129,11.270596,Styrene,LB
+37129,8.606076,Pyrene,LB
+37129,0.04984248,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,1.248608,Chrysene,LB
+37141,2.077683,PM10-Primary from certain diesel engines,TON
+37141,0.04151377,Sulfate Portion of PM2.5-PRI,TON
+37141,0.013366732,Benzo[k]Fluoranthene,LB
+37141,0.06743872,Nickel,LB
+37139,1027.002,Hexane,LB
+37133,18.74444,Xylenes (Mixed Isomers),LB
+37133,7.15949e-05,Chromium (VI),LB
+37133,0.994374,Acenaphthylene,LB
+37133,19.033316,Benzene,LB
+37133,8.254292e-05,Mercury,LB
+37133,0.0312723,Nickel,LB
+37133,0.2164246,PM10-Primary from certain diesel engines,TON
+37133,0.0004556289,Nitrate portion of PM2.5-PRI,TON
+37133,0.214085,PM2.5 Primary (Filt + Cond),TON
+37133,1.117388,Volatile Organic Compounds,TON
+37129,0.1691423,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.04311236,Fluorene,LB
+37125,0.2149138,Ethyl Benzene,LB
+37125,0.5031294,Acrolein,LB
+37125,0.464198,Toluene,LB
+37125,0.0450341,Fluoranthene,LB
+37121,0.19281632,Pyrene,LB
+37121,0.0006856594,"Benzo[g,h,i,]Perylene",LB
+37121,1.012888,Carbon Monoxide,TON
+37121,0.0005157587,Nitrous Oxide,TON
+37123,0.0012424778,Manganese,LB
+37123,0.006881096,Fluorene,LB
+37123,0.001774032,Sulfur Dioxide,TON
+37119,0.0015328694,Chromium (VI),LB
+37119,477.247,Benzene,LB
+37119,230.0291,Nitrogen Oxides,TON
+37119,374.2828,Ethyl Benzene,LB
+37119,0.6122368,Anthracene,LB
+37119,0.4683254,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.2623778,Chrysene,LB
+37119,0.4658748,Benzo[a]Pyrene,LB
+37119,0.010746928,"Dibenzo[a,h]Anthracene",LB
+37119,0.2794698,Benz[a]Anthracene,LB
+37107,4144.664,Toluene,LB
+37107,0.00953864,"Dibenzo[a,h]Anthracene",LB
+37107,897.7648,"2,2,4-Trimethylpentane",LB
+37107,6.635352,Phenanthrene,LB
+37107,17780.52,Carbon Dioxide,TON
+37107,0.001382156,Nitrate portion of PM2.5-PRI,TON
+37107,0.01453858,Sulfate Portion of PM2.5-PRI,TON
+37107,21.16856,Volatile Organic Compounds,TON
+37097,78.64478,Propionaldehyde,LB
+37097,1.0657416,Benzo[a]Pyrene,LB
+37097,150.56018,Benzene,LB
+37097,4.649954,Acenaphthene,LB
+37097,1.335323,Methane,TON
+37097,3.989089,PM10-Primary from certain diesel engines,TON
+37101,23.8725,Pyrene,LB
+37101,4.94629,Chrysene,LB
+37101,8.469316,Benzo[a]Pyrene,LB
+37101,15015.928,Benzene,LB
+37101,0.02692995,Nitrate portion of PM2.5-PRI,TON
+37101,4.992997,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.016592826,Pyrene,LB
+37099,23.27176,Xylenes (Mixed Isomers),LB
+37099,0.004565422,PM2.5 Primary (Filt + Cond),TON
+37099,0.1808366,Volatile Organic Compounds,TON
+37093,0.0002064216,Arsenic,LB
+37093,0.006683714,Fluorene,LB
+37093,1.483179,Carbon Monoxide,TON
+37093,0.0008977512,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.0773408,Acrolein,LB
+37093,0.015018802,Acenaphthylene,LB
+37089,0.2512872,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.4018869,Volatile Organic Compounds,TON
+37065,5.458716,Acrolein,LB
+37065,0.4237078,Fluoranthene,LB
+37065,6.502702,Benzene,LB
+37065,0.0274317,Manganese,LB
+37063,0.00181779,Anthracene,LB
+37063,1.5467668,"2,2,4-Trimethylpentane",LB
+37063,2.83328e-05,Arsenic,LB
+37063,0.1095173,Naphthalene,LB
+37063,5.998025,Carbon Dioxide,TON
+37063,0.0002260359,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.001976937,PM10 Primary (Filt + Cond),TON
+37063,0.0003022246,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,3.177342e-05,Sulfate Portion of PM2.5-PRI,TON
+37061,2.520302,Styrene,LB
+37061,0.6232786,Anthracene,LB
+37061,172.5729,Formaldehyde,LB
+37061,16.37482,Benzene,LB
+37061,6.544474,Carbon Monoxide,TON
+37061,0.02344087,Ammonia,TON
+37061,1.011773,Volatile Organic Compounds,TON
+37057,58.197,Formaldehyde,LB
+37057,0.006933872,Arsenic,LB
+37057,67.11864,Acetaldehyde,LB
+37057,1.0471716,Phenanthrene,LB
+37057,0.390018,Fluorene,LB
+37057,0.03114988,Sulfur Dioxide,TON
+37057,0.2022526,Benz[a]Anthracene,LB
+37057,12.630276,Acrolein,LB
+37057,0.9644254,Fluoranthene,LB
+37053,1.8368446e-05,Chromium (VI),LB
+37053,0.15391728,Acenaphthylene,LB
+37053,0.0002564334,"Dibenzo[a,h]Anthracene",LB
+37053,0.06848572,Fluorene,LB
+37053,0.006765043,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.00675406,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.0004588975,Sulfate Portion of PM2.5-PRI,TON
+37047,3.284092,Benzo[a]Pyrene,LB
+37047,2063.944,Acetaldehyde,LB
+37047,1736.119,Carbon Monoxide,TON
+37047,2.472922,Nitrous Oxide,TON
+37047,10.06285,PM10 Primary (Filt + Cond),TON
+37047,2.621042,Sulfur Dioxide,TON
+37043,0.0003897402,Acenaphthene,LB
+37043,3.21073e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.009372676,Acrolein,LB
+37043,0.0001066226,Benzo[b]Fluoranthene,LB
+37037,2.664996,Styrene,LB
+37037,5.874406,Hexane,LB
+37037,0.003031128,Benzo[b]Fluoranthene,LB
+37037,0.04211108,Manganese,LB
+37037,19.62413,Carbon Monoxide,TON
+37037,0.04874115,PM2.5 Primary (Filt + Cond),TON
+37031,1.5471346,Propionaldehyde,LB
+37031,0.0010229154,Benzo[k]Fluoranthene,LB
+37031,0.2129864,Fluorene,LB
+37031,413.5826,Carbon Dioxide,TON
+37031,0.02536237,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.001256118,Nitrous Oxide,TON
+37029,0.0001458784,Sulfur Dioxide,TON
+37029,0.008350256,Anthracene,LB
+37029,0.14498682,Xylenes (Mixed Isomers),LB
+37029,0.000480879,Benzo[b]Fluoranthene,LB
+37029,0.013212762,Acenaphthylene,LB
+37029,6.569956e-05,"Dibenzo[a,h]Anthracene",LB
+37029,0.02818132,Phenanthrene,LB
+37029,0.0434456,Carbon Monoxide,TON
+37029,0.057615,Styrene,LB
+37029,0.0462142,Acrolein,LB
+37029,0.011164398,Acenaphthylene,LB
+37029,0.0006605326,Benz[a]Anthracene,LB
+37029,2.652852,Benzene,LB
+37029,0.12731282,Naphthalene,LB
+37029,1.091903,Carbon Monoxide,TON
+37029,2.672224e-06,Nitrate portion of PM2.5-PRI,TON
+37029,0.06138154,Volatile Organic Compounds,TON
+37149,1.139317,PM10-Primary from certain diesel engines,TON
+37149,11.707692,"1,3-Butadiene",LB
+37149,0.015997592,"Benzo[g,h,i,]Perylene",LB
+37149,0.010645884,Benzo[k]Fluoranthene,LB
+37157,16.695502,Hexane,LB
+37157,2.010876,Anthracene,LB
+37157,56.60084,Xylenes (Mixed Isomers),LB
+37157,0.00019036536,Chromium (VI),LB
+37157,0.03185014,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.017201194,Benzo[k]Fluoranthene,LB
+37157,3.10146,Acenaphthylene,LB
+37157,0.017153254,"Dibenzo[a,h]Anthracene",LB
+37157,0.007432438,Nitrate portion of PM2.5-PRI,TON
+37151,0.18909896,Benzo[a]Pyrene,LB
+37151,0.9280858,Acenaphthene,LB
+37151,0.1727952,Methane,TON
+37151,0.0381317,Ammonia,TON
+37151,0.003455897,Nitrate portion of PM2.5-PRI,TON
+37145,182.38706,Formaldehyde,LB
+37145,0.4409048,"Benzo[g,h,i,]Perylene",LB
+37145,0.04847135,Elemental Carbon portion of PM2.5-PRI,TON
+37143,2.612804,Xylenes (Mixed Isomers),LB
+37143,0.0004966494,"Benzo[g,h,i,]Perylene",LB
+37143,0.0002420022,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,6.800469e-05,Nitrate portion of PM2.5-PRI,TON
+37139,2.838536e-06,Chromium (VI),LB
+37139,0.0004670908,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.0002540022,Benzo[k]Fluoranthene,LB
+37139,0.03759333,PM25-Primary from certain diesel engines,TON
+37141,17.579608,Styrene,LB
+37141,0.17830276,Manganese,LB
+37141,253.0162,Acetaldehyde,LB
+37141,0.06267702,Elemental Carbon portion of PM2.5-PRI,TON
+37135,147.2593,Carbon Monoxide,TON
+37135,0.4890277,Ammonia,TON
+37135,0.4142954,PM10 Primary (Filt + Cond),TON
+37135,0.006086072,"Dibenzo[a,h]Anthracene",LB
+37135,11.041002,Acrolein,LB
+37135,0.4982224,Anthracene,LB
+37135,0.7060712,"Benzo[g,h,i,]Perylene",LB
+37129,1444.264,Hexane,LB
+37129,0.629753,Anthracene,LB
+37129,3145.2,Xylenes (Mixed Isomers),LB
+37129,0.6942246,"Benzo[g,h,i,]Perylene",LB
+37129,0.2022786,Benz[a]Anthracene,LB
+37129,1018.4606,Benzene,LB
+37129,38.2828,Naphthalene,LB
+37127,0.01260537,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.006770418,Benzo[k]Fluoranthene,LB
+37127,0.3193854,Chrysene,LB
+37127,0.5448044,Benz[a]Anthracene,LB
+37127,0.1004085,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,3.1104,Styrene,LB
+37127,0.016126644,Ethyl Benzene,LB
+37127,0.03100834,Hexane,LB
+37127,4.684794e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.015350916,"2,2,4-Trimethylpentane",LB
+37127,3.432606e-07,Mercury,LB
+37127,7.719736e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37127,2.677413e-05,Organic Carbon portion of PM2.5-PRI,TON
+37119,6.346976,Benzo[a]Pyrene,LB
+37119,12.717582,Acenaphthene,LB
+37119,660.5508,Naphthalene,LB
+37119,4.162213,Organic Carbon portion of PM2.5-PRI,TON
+37119,41.64839,PM10 Primary (Filt + Cond),TON
+37119,0.3011071,Sulfate Portion of PM2.5-PRI,TON
+37119,238.5506,Propionaldehyde,LB
+37119,27698.84,Xylenes (Mixed Isomers),LB
+37119,4.036812,Chrysene,LB
+37115,7.716748,"1,3-Butadiene",LB
+37115,20.22626,Acrolein,LB
+37115,21.00774,Toluene,LB
+37115,0.01180168,"Benzo[g,h,i,]Perylene",LB
+37115,7.20413,"2,2,4-Trimethylpentane",LB
+37115,24.2895,Benzene,LB
+37115,0.15674994,Manganese,LB
+37115,0.1041168,Ammonia,TON
+37115,0.1573615,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,26.08698,Propionaldehyde,LB
+37109,0.00015351866,Chromium (VI),LB
+37109,3.631628,Fluoranthene,LB
+37109,6.136244,Phenanthrene,LB
+37109,21.33049,Nitrogen Oxides,TON
+37109,1.899066,PM10 Primary (Filt + Cond),TON
+37107,5.276198,Acrolein,LB
+37107,0.239693,Anthracene,LB
+37107,429.2198,"2,2,4-Trimethylpentane",LB
+37107,0.02065998,Arsenic,LB
+37107,69.47235,Carbon Monoxide,TON
+37107,3.324888,Nitrogen Oxides,TON
+37107,1761.2038,Ethyl Benzene,LB
+37097,0.9490044,Benzene,LB
+37097,2.11803,Carbon Dioxide,TON
+37097,0.019103,Nitrogen Oxides,TON
+37097,2.40571,Xylenes (Mixed Isomers),LB
+37097,0.004804146,Acenaphthylene,LB
+37091,0.0014102738,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.001137308,Chrysene,LB
+37091,0.0014197302,Benzo[a]Pyrene,LB
+37091,1.481464,Acetaldehyde,LB
+37091,0.004416522,Acenaphthene,LB
+37091,4.291944e-06,Nitrate portion of PM2.5-PRI,TON
+37091,0.003708372,PM10 Primary (Filt + Cond),TON
+37091,0.1232787,Volatile Organic Compounds,TON
+37079,0.00876071,Chrysene,LB
+37079,0.15600172,Phenanthrene,LB
+37079,0.009235304,Sulfur Dioxide,TON
+37079,0.0004111128,Sulfate Portion of PM2.5-PRI,TON
+37077,41.81512,Toluene,LB
+37077,2.742804,Acenaphthylene,LB
+37077,0.015028906,"Dibenzo[a,h]Anthracene",LB
+37077,1.6320356,Acenaphthene,LB
+37077,0.07360561,Sulfur Dioxide,TON
+37025,0.02521928,Styrene,LB
+37025,0.2101606,Propionaldehyde,LB
+37025,0.0015944672,Fluoranthene,LB
+37025,0.09734385,Nitrogen Oxides,TON
+37025,0.001709262,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.004408293,PM2.5 Primary (Filt + Cond),TON
+37169,7.55851,Toluene,LB
+37169,0.07242683,Volatile Organic Compounds,TON
+37137,0.19851,Acrolein,LB
+37137,3.965284,Xylenes (Mixed Isomers),LB
+37137,0.007972616,"Benzo[g,h,i,]Perylene",LB
+37137,0.003076008,Manganese,LB
+37137,0.002258584,Arsenic,LB
+37103,2.157872,"2,2,4-Trimethylpentane",LB
+37103,0.05510342,Volatile Organic Compounds,TON
+37089,1.582801,Benzene,LB
+37089,0.0010360916,Arsenic,LB
+37089,0.002385054,PM2.5 Primary (Filt + Cond),TON
+37089,0.002957238,Sulfur Dioxide,TON
+37167,0.249635,"1,3-Butadiene",LB
+37167,4.059214,Xylenes (Mixed Isomers),LB
+37167,0.00284889,Fluoranthene,LB
+37167,0.6035506,Formaldehyde,LB
+37167,1.2110756e-05,Nickel,LB
+37167,0.0018617058,Acenaphthene,LB
+37167,0.010241396,Phenanthrene,LB
+37167,0.0002589475,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.03115658,Volatile Organic Compounds,TON
+37021,0.005444168,"Dibenzo[a,h]Anthracene",LB
+37021,0.04246009,Sulfur Dioxide,TON
+37021,0.02477802,Arsenic,LB
+37021,0.1900755,Methane,TON
+37021,11.85311,Nitrogen Oxides,TON
+37021,0.2308147,PM2.5 Primary (Filt + Cond),TON
+37021,6.534932,Styrene,LB
+37021,928.3466,Toluene,LB
+37021,1.3035396,Acenaphthylene,LB
+37005,1.8944956,Ethyl Benzene,LB
+37005,0.3234674,Acenaphthylene,LB
+37005,0.008750206,Nickel,LB
+37005,24.91226,Acetaldehyde,LB
+37005,0.41485,Fluorene,LB
+37005,0.2674175,PM10-Primary from certain diesel engines,TON
+37005,0.02621318,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.004785609,Sulfate Portion of PM2.5-PRI,TON
+37061,1.0566412,Acrolein,LB
+37061,0.02020644,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,28.72702,Benzene,LB
+37061,0.009126,Nickel,LB
+37061,0.02174594,Fluorene,LB
+37061,0.07336996,Ammonia,TON
+37061,0.6773658,Volatile Organic Compounds,TON
+37035,26.60604,Acetaldehyde,LB
+37035,0.01915837,Methane,TON
+37035,0.009747504,PM2.5 Primary (Filt + Cond),TON
+37035,0.0651747,Styrene,LB
+37035,2.79113,Hexane,LB
+37035,2.995008e-05,Chromium (VI),LB
+37023,0.0007671592,Pyrene,LB
+37023,0.0017376294,Acenaphthylene,LB
+37023,0.00354902,Methane,TON
+37023,0.5459084,Carbon Monoxide,TON
+37023,0.001027567,Nitrous Oxide,TON
+37023,0.003541296,Ammonia,TON
+37143,0.0005486576,Pyrene,LB
+37143,0.6376354,Xylenes (Mixed Isomers),LB
+37143,0.0002798846,Benzo[k]Fluoranthene,LB
+37143,0.4529264,Formaldehyde,LB
+37143,0.934405,Benzene,LB
+37143,0.002541211,Ammonia,TON
+37143,0.02433366,Nitrogen Oxides,TON
+37143,2.113229e-05,Sulfate Portion of PM2.5-PRI,TON
+37017,0.6531882,Propionaldehyde,LB
+37017,4.425244e-06,Chromium (VI),LB
+37017,0.03025604,Benz[a]Anthracene,LB
+37017,0.05728469,PM25-Primary from certain diesel engines,TON
+37017,0.000161797,Nitrate portion of PM2.5-PRI,TON
+37017,0.006731582,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.5580194,Pyrene,LB
+37007,0.005331586,Arsenic,LB
+37007,10.982706,Naphthalene,LB
+37007,0.02369444,Ammonia,TON
+37007,0.01813351,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.00376691,Sulfate Portion of PM2.5-PRI,TON
+37017,12.520808,Formaldehyde,LB
+37017,0.00214572,Nickel,LB
+37017,0.0802334,Fluorene,LB
+37017,0.03352557,Methane,TON
+37017,0.0004462252,Sulfate Portion of PM2.5-PRI,TON
+37017,0.8009465,Volatile Organic Compounds,TON
+37015,0.005952868,Nitrate portion of PM2.5-PRI,TON
+37015,0.5865977,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.8491796,Manganese,LB
+37015,3.385939,Methane,TON
+37015,5.863296,Ammonia,TON
+37015,5.260218,"Benzo[g,h,i,]Perylene",LB
+37015,8.9768,Fluoranthene,LB
+37181,0.04526862,Phenanthrene,LB
+37181,0.016672506,Fluorene,LB
+37181,0.001122029,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.003755676,Organic Carbon portion of PM2.5-PRI,TON
+37181,1.0585438,"1,3-Butadiene",LB
+37181,0.14861302,Acrolein,LB
+37181,1.6949198e-06,Chromium (VI),LB
+37195,0.016080096,Styrene,LB
+37195,0.014256056,Propionaldehyde,LB
+37195,0.0001672841,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.01228642,Volatile Organic Compounds,TON
+37191,0.05324954,Anthracene,LB
+37191,15.066102,Formaldehyde,LB
+37191,0.0005136356,Arsenic,LB
+37191,122.7321,Carbon Dioxide,TON
+37191,0.03648354,PM10-Primary from certain diesel engines,TON
+37191,0.000998277,Sulfate Portion of PM2.5-PRI,TON
+37187,0.0003601572,Phenanthrene,LB
+37187,0.0004083064,Naphthalene,LB
+37187,0.01980877,Volatile Organic Compounds,TON
+37181,9.103834,Ethyl Benzene,LB
+37181,39.87152,Toluene,LB
+37191,0.0001862909,"Dibenzo[a,h]Anthracene",LB
+37191,166.8666,Carbon Dioxide,TON
+37191,0.001530457,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.10259982,Pyrene,LB
+37181,0.1121146,Acenaphthylene,LB
+37181,4.483228e-05,"Dibenzo[a,h]Anthracene",LB
+37181,9.89626,Acetaldehyde,LB
+37181,0.11455752,Fluorene,LB
+37181,2.477624,Naphthalene,LB
+37181,0.00407762,PM10-Primary from certain diesel engines,TON
+37181,0.005141457,PM2.5 Primary (Filt + Cond),TON
+37181,0.001506371,Sulfur Dioxide,TON
+37197,11801.076,Xylenes (Mixed Isomers),LB
+37197,1.0993988,Arsenic,LB
+37197,2.558421,Methane,TON
+37197,0.6062474,Elemental Carbon portion of PM2.5-PRI,TON
+37197,1.914628,Nitrous Oxide,TON
+37197,0.008223044,Nitrate portion of PM2.5-PRI,TON
+37197,134.6449,Nitrogen Oxides,TON
+37195,337.2764,Ethyl Benzene,LB
+37195,10.91245,"1,3-Butadiene",LB
+37195,0.00014595844,Chromium (VI),LB
+37195,0.003622894,"Dibenzo[a,h]Anthracene",LB
+37195,0.10874272,Benz[a]Anthracene,LB
+37195,0.02987892,Manganese,LB
+37195,74.04164,Acetaldehyde,LB
+37195,0.6990994,Fluorene,LB
+37195,0.01810378,Nitrous Oxide,TON
+37183,0.4557424,Pyrene,LB
+37183,0.03362552,Benzo[a]Pyrene,LB
+37183,1.4480576,"1,3-Butadiene",LB
+37183,3.927966,Acrolein,LB
+37183,4.731684,Benzene,LB
+37183,22.3166,Acetaldehyde,LB
+37183,0.1196278,PM10-Primary from certain diesel engines,TON
+37183,0.0005943104,Nitrate portion of PM2.5-PRI,TON
+37183,0.04833133,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.006234224,Sulfur Dioxide,TON
+37185,28.45729,Carbon Monoxide,TON
+37185,0.3870413,PM2.5 Primary (Filt + Cond),TON
+37185,2.598419,Volatile Organic Compounds,TON
+37185,27.7366,Toluene,LB
+37185,26.6419,Xylenes (Mixed Isomers),LB
+37185,0.0001194344,Chromium (VI),LB
+37185,9.676554e-05,Mercury,LB
+37041,1.1445158,Phenanthrene,LB
+37041,0.6456652,Fluorene,LB
+37041,11.065846,Naphthalene,LB
+37041,4.158581,Nitrogen Oxides,TON
+37041,0.8853616,Pyrene,LB
+37041,0.004709266,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,2324.3,Xylenes (Mixed Isomers),LB
+37031,359.994,Acetaldehyde,LB
+37031,0.3528449,Sulfur Dioxide,TON
+37031,18.35969,Volatile Organic Compounds,TON
+37029,1.1109202e-08,Mercury,LB
+37029,3.780496e-06,Nitrous Oxide,TON
+37029,1.505913e-06,Sulfur Dioxide,TON
+37029,0.005630064,Hexane,LB
+37029,0.01613389,Xylenes (Mixed Isomers),LB
+37095,1.5920704,Benzene,LB
+37087,3.886926,Fluoranthene,LB
+37087,1.6226182,Acenaphthene,LB
+37087,50.5056,Nitrogen Oxides,TON
+37087,2.287457,PM2.5 Primary (Filt + Cond),TON
+37087,0.07182748,Sulfur Dioxide,TON
+37087,0.05309491,Sulfate Portion of PM2.5-PRI,TON
+37087,0.0003698862,"Dibenzo[a,h]Anthracene",LB
+37087,12.427372,Benzene,LB
+37087,0.005945187,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.3373514,"1,3-Butadiene",LB
+37083,0.8177414,Acrolein,LB
+37083,0.6843362,Toluene,LB
+37083,0.0990862,Pyrene,LB
+37083,0.02291572,Benz[a]Anthracene,LB
+37083,0.003540448,Methane,TON
+37083,0.0001950074,Nitrous Oxide,TON
+37083,0.06012149,Volatile Organic Compounds,TON
+37079,0.11841324,"1,3-Butadiene",LB
+37079,0.02019814,Acenaphthylene,LB
+37079,0.00010542172,"Dibenzo[a,h]Anthracene",LB
+37079,7.765654e-07,Mercury,LB
+37079,0.01201444,Acenaphthene,LB
+37079,0.401192,Naphthalene,LB
+37079,0.07404177,Carbon Monoxide,TON
+37079,0.000302051,Sulfur Dioxide,TON
+37071,0.1737127,PM10 Primary (Filt + Cond),TON
+37071,8.425762,Ethyl Benzene,LB
+37071,6.44546,Hexane,LB
+37071,0.000556504,"Dibenzo[a,h]Anthracene",LB
+37071,0.04804303,PM10-Primary from certain diesel engines,TON
+37071,0.0441959,PM25-Primary from certain diesel engines,TON
+37071,0.002487623,Nitrous Oxide,TON
+37071,8.019626,Ethyl Benzene,LB
+37071,0.006876114,Benzo[b]Fluoranthene,LB
+37071,0.00588079,Chrysene,LB
+37071,0.001407686,Nickel,LB
+37071,0.002063851,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.2358519,Volatile Organic Compounds,TON
+37053,0.00019395724,Fluoranthene,LB
+37053,0.0002660684,Acenaphthylene,LB
+37053,6.322324e-05,Chrysene,LB
+37053,0.000278983,Arsenic,LB
+37053,0.0003622795,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.009506707,PM10 Primary (Filt + Cond),TON
+37063,7906.74,Hexane,LB
+37041,3.943942e-05,Chromium (VI),LB
+37041,0.08989466,Chrysene,LB
+37041,0.25572,Acenaphthene,LB
+37041,5.7998e-07,Chromium (VI),LB
+37041,4.798818,"2,2,4-Trimethylpentane",LB
+37041,0.018002612,Phenanthrene,LB
+37041,4.314274e-06,Nitrate portion of PM2.5-PRI,TON
+37041,0.1037145,Nitrogen Oxides,TON
+37041,0.001561349,PM2.5 Primary (Filt + Cond),TON
+37037,0.3664816,Ethyl Benzene,LB
+37037,0.0004619784,"Benzo[g,h,i,]Perylene",LB
+37037,0.002195418,Benzo[b]Fluoranthene,LB
+37037,0.03678596,Acenaphthene,LB
+37037,0.003658584,Methane,TON
+37037,0.01088747,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.0002031082,Nitrous Oxide,TON
+37029,8.63791e-05,"Dibenzo[a,h]Anthracene",LB
+37029,0.2158518,Propionaldehyde,LB
+37029,5.423196e-06,Chromium (VI),LB
+37029,5.436656e-05,Mercury,LB
+37029,0.0006778958,Nickel,LB
+37029,0.02288576,Fluorene,LB
+37029,0.009415547,Methane,TON
+37029,5.379659,Carbon Monoxide,TON
+37029,0.009865239,Nitrous Oxide,TON
+37029,0.002165959,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.6841026,Styrene,LB
+37023,0.04510004,Fluoranthene,LB
+37023,0.13947124,Acenaphthylene,LB
+37023,9.163446,Acetaldehyde,LB
+37199,0.0006242078,Manganese,LB
+37199,8.224796e-06,Mercury,LB
+37199,5.497273e-06,Nitrate portion of PM2.5-PRI,TON
+37199,3.853382,Ethyl Benzene,LB
+37199,26.46444,Toluene,LB
+37199,4.23614e-05,"Dibenzo[a,h]Anthracene",LB
+37199,5.258036,Benzene,LB
+37185,5.67843,Xylenes (Mixed Isomers),LB
+37185,0.005443916,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.005794856,Fluorene,LB
+37185,0.0163059,PM10 Primary (Filt + Cond),TON
+37191,3.526992,Hexane,LB
+37191,0.7823458,Acenaphthylene,LB
+37191,3.489384,"2,2,4-Trimethylpentane",LB
+37191,0.3079887,PM10-Primary from certain diesel engines,TON
+37191,65.07614,Hexane,LB
+37191,0.610281,Acrolein,LB
+37191,0.0224478,Anthracene,LB
+37191,0.007461294,Benzo[k]Fluoranthene,LB
+37191,0.002183808,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.07068446,PM10 Primary (Filt + Cond),TON
+37191,0.3927824,Volatile Organic Compounds,TON
+37189,0.0008433378,Mercury,LB
+37189,1.1747576,Phenanthrene,LB
+37189,2.8063,Nitrogen Oxides,TON
+37189,0.0481137,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.02839306,Sulfur Dioxide,TON
+37189,221.626,Ethyl Benzene,LB
+37189,4.746916,Styrene,LB
+37189,0.06343722,Benzo[b]Fluoranthene,LB
+37189,0.06165116,Chrysene,LB
+37181,6617.528,Ethyl Benzene,LB
+37181,0.05447972,Mercury,LB
+37181,108032.6,Carbon Dioxide,TON
+37181,4.779512,Nitrous Oxide,TON
+37023,3.011228,Volatile Organic Compounds,TON
+37023,2.212554,Hexane,LB
+37023,0.0014104958,Benzo[a]Pyrene,LB
+37023,0.0009232698,Benz[a]Anthracene,LB
+37023,0.00017368688,Manganese,LB
+37023,2.718608e-05,Arsenic,LB
+37023,0.0003257723,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.0001271648,Sulfur Dioxide,TON
+37095,1.015274,"1,3-Butadiene",LB
+37095,0.1444082,Propionaldehyde,LB
+37095,0.010461808,Fluoranthene,LB
+37095,2.475574,Acetaldehyde,LB
+37093,0.9234908,Propionaldehyde,LB
+37093,0.000614879,"Dibenzo[a,h]Anthracene",LB
+37093,1.7063118,Benzene,LB
+37093,0.02144092,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.07548325,PM10 Primary (Filt + Cond),TON
+37087,8.278678,Styrene,LB
+37087,0.3209566,Anthracene,LB
+37087,0.00014083574,Chromium (VI),LB
+37087,1.7037922,Acenaphthylene,LB
+37087,606.7154,"2,2,4-Trimethylpentane",LB
+37087,492.6052,Benzene,LB
+37087,0.7572434,Fluorene,LB
+37087,19.414868,Naphthalene,LB
+37087,2311.02,Carbon Dioxide,TON
+37085,2.058288e-05,Chromium (VI),LB
+37085,0.05574292,"Benzo[g,h,i,]Perylene",LB
+37085,0.01496272,Chrysene,LB
+37085,1.1556866,Styrene,LB
+37085,98.44912,Xylenes (Mixed Isomers),LB
+37085,0.015384292,Benz[a]Anthracene,LB
+37085,62.58798,Benzene,LB
+37085,16.150656,Acetaldehyde,LB
+37085,0.03453157,PM2.5 Primary (Filt + Cond),TON
+37077,14.755904,Acrolein,LB
+37077,9.785618,Propionaldehyde,LB
+37077,0.000729618,Benzo[k]Fluoranthene,LB
+37077,0.599243,Acenaphthene,LB
+37077,1.0345604,Fluorene,LB
+37077,1454.394,Carbon Dioxide,TON
+37077,4.221564,Nitrogen Oxides,TON
+37077,0.2029134,PM2.5 Primary (Filt + Cond),TON
+37077,5.361674e-06,Mercury,LB
+37077,0.4611428,Naphthalene,LB
+37077,1.436356e-05,Nitrate portion of PM2.5-PRI,TON
+37077,0.005084657,PM2.5 Primary (Filt + Cond),TON
+37077,0.0004114201,Sulfur Dioxide,TON
+37077,0.000123537,Sulfate Portion of PM2.5-PRI,TON
+37077,0.01507605,Pyrene,LB
+37069,0.0004093832,Chromium (VI),LB
+37069,0.2036678,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,11.43887,Volatile Organic Compounds,TON
+37069,11288.75,Toluene,LB
+37069,300.8348,Benzene,LB
+37069,39.37234,Volatile Organic Compounds,TON
+37045,0.00493806,"Dibenzo[a,h]Anthracene",LB
+37045,2.869288,Phenanthrene,LB
+37045,0.1188832,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.06986741,Sulfur Dioxide,TON
+37045,0.006536842,Sulfate Portion of PM2.5-PRI,TON
+37037,0.00011167334,Chromium (VI),LB
+37037,383.1628,Formaldehyde,LB
+37037,0.289349,Benzo[a]Pyrene,LB
+37037,4.77,Phenanthrene,LB
+37031,13.128396,Ethyl Benzene,LB
+37031,0.019103104,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.07493166,Benzo[b]Fluoranthene,LB
+37031,2.555042,Fluoranthene,LB
+37031,0.010382526,"Dibenzo[a,h]Anthracene",LB
+37031,0.8168548,Benz[a]Anthracene,LB
+37031,2.387968,Fluorene,LB
+37031,0.01919338,Nitrous Oxide,TON
+37031,2264.658,"1,3-Butadiene",LB
+37031,56722.44,Toluene,LB
+37031,12.905852,"Benzo[g,h,i,]Perylene",LB
+37031,2.179882,Arsenic,LB
+37031,5483.28,Acetaldehyde,LB
+37027,0.0011874438,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.0006442862,Benzo[k]Fluoranthene,LB
+37027,0.2511704,Styrene,LB
+37027,1.5976838,Xylenes (Mixed Isomers),LB
+37027,0.2409438,Phenanthrene,LB
+37027,0.006693192,Ammonia,TON
+37169,6.566108,Propionaldehyde,LB
+37169,716.5004,Xylenes (Mixed Isomers),LB
+37153,4.339574,Styrene,LB
+37153,381.0486,"2,2,4-Trimethylpentane",LB
+37153,267.9606,Benzene,LB
+37153,1.0643386,Phenanthrene,LB
+37153,0.3968128,Fluorene,LB
+37153,1198.373,Carbon Dioxide,TON
+37153,0.01109912,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.1727655,Benzo[b]Fluoranthene,LB
+37151,0.04716752,Manganese,LB
+37151,0.5856018,Acenaphthene,LB
+37151,0.2716277,Methane,TON
+37151,2791.618,Xylenes (Mixed Isomers),LB
+37151,0.2377712,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.06215219,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.04110486,Benzene,LB
+37143,1.1095838,Acetaldehyde,LB
+37143,32.84423,Carbon Dioxide,TON
+37143,0.00510693,Nitrous Oxide,TON
+37141,0.12602838,Pyrene,LB
+37141,12.8103,Formaldehyde,LB
+37141,0.008501914,Benzo[a]Pyrene,LB
+37141,0.0003464102,"Dibenzo[a,h]Anthracene",LB
+37141,1.2283676,Benzene,LB
+37141,0.0017270626,Nickel,LB
+37141,0.0311905,PM2.5 Primary (Filt + Cond),TON
+37141,0.0007826727,Sulfate Portion of PM2.5-PRI,TON
+37141,0.07638821,Volatile Organic Compounds,TON
+37139,0.01082897,Ethyl Benzene,LB
+37139,0.07588274,Toluene,LB
+37139,0.000241327,Acenaphthylene,LB
+37139,59.81079,Carbon Dioxide,TON
+37139,1.313915e-06,Nitrate portion of PM2.5-PRI,TON
+37135,0.623103,"2,2,4-Trimethylpentane",LB
+37135,0.06109158,Benz[a]Anthracene,LB
+37135,11.0961,Acetaldehyde,LB
+37135,0.085657,Acenaphthene,LB
+37135,219.0586,Carbon Dioxide,TON
+37135,0.08116701,PM10 Primary (Filt + Cond),TON
+37135,0.8439232,Ethyl Benzene,LB
+37127,907.4834,Carbon Dioxide,TON
+37127,7.535936,Acrolein,LB
+37127,0.001247146,Nitrous Oxide,TON
+37127,0.02822935,PM2.5 Primary (Filt + Cond),TON
+37127,0.5325571,Volatile Organic Compounds,TON
+37127,0.0016777846,Benzo[b]Fluoranthene,LB
+37119,197.45398,Ethyl Benzene,LB
+37119,132.32962,"1,3-Butadiene",LB
+37119,0.002362236,Chromium (VI),LB
+37119,6257.14,Formaldehyde,LB
+37119,0.13003032,"Dibenzo[a,h]Anthracene",LB
+37115,0.0003992856,Mercury,LB
+37115,0.001317294,Sulfate Portion of PM2.5-PRI,TON
+37115,3.982762e-05,Chromium (VI),LB
+37115,0.11783832,"Benzo[g,h,i,]Perylene",LB
+37115,5.162736,"1,3-Butadiene",LB
+37097,1.853382e-05,Chromium (VI),LB
+37097,0.01034894,Benzo[b]Fluoranthene,LB
+37097,0.00143332,"Dibenzo[a,h]Anthracene",LB
+37097,2.03584e-05,Mercury,LB
+37097,21.93036,Acetaldehyde,LB
+37097,0.5955982,Phenanthrene,LB
+37097,0.0006205678,Nitrate portion of PM2.5-PRI,TON
+37097,0.01553808,Sulfate Portion of PM2.5-PRI,TON
+37103,0.9652274,Hexane,LB
+37103,0.13065762,Anthracene,LB
+37103,2.07299,Xylenes (Mixed Isomers),LB
+37103,0.2449146,Fluoranthene,LB
+37103,0.0006202904,Benzo[k]Fluoranthene,LB
+37103,0.06079392,Benz[a]Anthracene,LB
+37103,0.005655668,Nickel,LB
+37103,375.3845,Carbon Dioxide,TON
+37103,0.003305995,Sulfur Dioxide,TON
+37103,0.2380831,Volatile Organic Compounds,TON
+37095,1.5141694,"1,3-Butadiene",LB
+37095,1.339712e-05,Chromium (VI),LB
+37095,0.06599784,Chrysene,LB
+37095,0.001395343,"Dibenzo[a,h]Anthracene",LB
+37095,0.002807698,Arsenic,LB
+37095,0.3340054,Fluorene,LB
+37095,0.04507976,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.1207739,PM2.5 Primary (Filt + Cond),TON
+37079,2.361776,Benzene,LB
+37079,0.0008100762,Manganese,LB
+37079,0.002327752,Ammonia,TON
+37079,0.0431231,Acrolein,LB
+37073,2.974544,"1,3-Butadiene",LB
+37073,0.003683722,"Benzo[g,h,i,]Perylene",LB
+37073,0.4992456,Acenaphthylene,LB
+37073,7.86706e-05,Mercury,LB
+37073,49.23154,Acetaldehyde,LB
+37073,3.713476,Carbon Monoxide,TON
+37073,0.04645812,Sulfate Portion of PM2.5-PRI,TON
+37073,10.328252,Benzene,LB
+37073,3.049916e-05,Mercury,LB
+37073,0.04961642,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,1.0861156,Pyrene,LB
+37073,0.003297016,Benzo[k]Fluoranthene,LB
+37085,0.797211,Acenaphthylene,LB
+37085,0.03695582,Manganese,LB
+37085,0.015812928,Arsenic,LB
+37085,0.0001951211,Nitrate portion of PM2.5-PRI,TON
+37085,0.09117316,Phenanthrene,LB
+37085,2.592306e-05,Nitrate portion of PM2.5-PRI,TON
+37085,0.00470247,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.0247389,Fluoranthene,LB
+37085,0.00532284,Chrysene,LB
+37085,0.00019278974,"Dibenzo[a,h]Anthracene",LB
+37083,4882.754,Ethyl Benzene,LB
+37083,6481.854,"2,2,4-Trimethylpentane",LB
+37083,1.8268496,Arsenic,LB
+37083,7.214676,Acenaphthene,LB
+37083,215.6547,Nitrogen Oxides,TON
+37083,144.9629,Volatile Organic Compounds,TON
+37079,6.152386,Toluene,LB
+37079,1.7718656,Hexane,LB
+37079,0.00011874356,Nickel,LB
+37077,0.5858518,Fluorene,LB
+37077,15.021024,Naphthalene,LB
+37077,0.1347203,Methane,TON
+37077,0.01876484,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.003876743,Sulfate Portion of PM2.5-PRI,TON
+37053,1.7201486,Hexane,LB
+37053,0.4926832,Fluoranthene,LB
+37053,0.01457729,Manganese,LB
+37053,0.1688773,PM10-Primary from certain diesel engines,TON
+37053,0.2126431,PM10 Primary (Filt + Cond),TON
+37053,0.004032407,Sulfur Dioxide,TON
+37061,8.854792,Styrene,LB
+37061,52.64266,Toluene,LB
+37061,17.512536,Hexane,LB
+37061,0.06904594,Arsenic,LB
+37061,0.5656698,Organic Carbon portion of PM2.5-PRI,TON
+37061,87.54653,Carbon Monoxide,TON
+37061,0.01934159,Nitrous Oxide,TON
+37061,7.727254,Volatile Organic Compounds,TON
+37061,81.62768,Toluene,LB
+37051,937.932,Styrene,LB
+37051,5492.608,"1,3-Butadiene",LB
+37051,790.6278,Propionaldehyde,LB
+37051,181.17546,Acenaphthylene,LB
+37051,0.3626658,"Dibenzo[a,h]Anthracene",LB
+37051,39.7735,Acenaphthene,LB
+37051,25.66945,Methane,TON
+37051,48.07159,Ammonia,TON
+37051,1170.109,Nitrogen Oxides,TON
+37043,7.26252,Hexane,LB
+37039,0.2881723,Methane,TON
+37039,1.242954,PM2.5 Primary (Filt + Cond),TON
+37039,1.445057,Volatile Organic Compounds,TON
+37039,12.689046,Propionaldehyde,LB
+37029,0.17137496,Acrolein,LB
+37029,1.2739048e-05,Chromium (VI),LB
+37029,0.0016606864,Benzo[k]Fluoranthene,LB
+37029,4.706464,Benzene,LB
+37029,0.004161871,PM2.5 Primary (Filt + Cond),TON
+37029,0.006736577,Sulfur Dioxide,TON
+37029,0.1103116,Volatile Organic Compounds,TON
+37023,2.529888,Hexane,LB
+37023,2.264042,Benzene,LB
+37017,0.00399777,Chrysene,LB
+37017,0.00472616,Nickel,LB
+37017,0.005742018,Acenaphthene,LB
+37017,666.7315,Carbon Dioxide,TON
+37017,0.010752232,Pyrene,LB
+37017,0.025088,"Benzo[g,h,i,]Perylene",LB
+37177,8.712848e-05,Anthracene,LB
+37177,0.0002374576,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.2402278,Toluene,LB
+37177,0.00018026584,Nickel,LB
+37177,0.00479202,Naphthalene,LB
+37177,0.0003409529,PM2.5 Primary (Filt + Cond),TON
+37177,0.0001132758,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.00040661,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.12293446,"1,3-Butadiene",LB
+37139,0.0014169524,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,3.253036e-05,"Dibenzo[a,h]Anthracene",LB
+37129,2.134712,Hexane,LB
+37129,0.002219688,Benzo[b]Fluoranthene,LB
+37129,5.443646,Benzene,LB
+37129,0.00017921574,Mercury,LB
+37129,0.003426526,Arsenic,LB
+37129,0.001227458,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.00883642,PM2.5 Primary (Filt + Cond),TON
+37103,0.19998874,Ethyl Benzene,LB
+37103,0.0348679,Acrolein,LB
+37103,0.0003386262,Chrysene,LB
+37103,0.0003861376,Benz[a]Anthracene,LB
+37103,0.0010336852,Arsenic,LB
+37087,0.09816057,PM10 Primary (Filt + Cond),TON
+37087,0.0009460758,Sulfate Portion of PM2.5-PRI,TON
+37087,0.5635556,Volatile Organic Compounds,TON
+37087,0.8906272,Acrolein,LB
+37087,0.01624662,Fluoranthene,LB
+37087,0.0005646834,"Dibenzo[a,h]Anthracene",LB
+37087,8.923354,"2,2,4-Trimethylpentane",LB
+37087,0.00932994,Nickel,LB
+37087,0.005425175,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.004605126,"Dibenzo[a,h]Anthracene",LB
+37175,0.446782,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.007014667,Nitrous Oxide,TON
+37175,0.001982987,Nitrate portion of PM2.5-PRI,TON
+37171,17.655106,Ethyl Benzene,LB
+37171,35.60368,Toluene,LB
+37171,1.900748,Anthracene,LB
+37171,0.00011392532,Mercury,LB
+37171,231.271,Acetaldehyde,LB
+37171,58.38586,Naphthalene,LB
+37171,2.498656,PM10-Primary from certain diesel engines,TON
+37171,0.01318746,Nitrous Oxide,TON
+37171,0.2548233,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,4005.302,Carbon Dioxide,TON
+37171,0.08804561,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.0223577,Sulfate Portion of PM2.5-PRI,TON
+37171,16.22894,"1,3-Butadiene",LB
+37171,36.7685,Toluene,LB
+37171,1.3677214,Anthracene,LB
+37171,0.00732508,"Benzo[g,h,i,]Perylene",LB
+37171,0.004245466,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,2.76291,Acenaphthylene,LB
+37159,0.09004882,Ethyl Benzene,LB
+37159,3.001984e-05,"Benzo[g,h,i,]Perylene",LB
+37159,0.0009498698,Acenaphthylene,LB
+37159,0.0008622615,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.13832166,Acenaphthylene,LB
+37155,0.000658026,"Dibenzo[a,h]Anthracene",LB
+37155,2.30929,Benzene,LB
+37155,0.005030226,Manganese,LB
+37155,5.3448e-06,Mercury,LB
+37155,0.17258074,Fluorene,LB
+37155,2.68427,Naphthalene,LB
+37155,0.06707213,PM10-Primary from certain diesel engines,TON
+37155,0.005147401,Ammonia,TON
+37155,0.002256062,Sulfur Dioxide,TON
+37155,4.027112,Toluene,LB
+37155,0.0014024444,Benzo[k]Fluoranthene,LB
+37155,0.011026838,Nickel,LB
+37155,0.3776824,PM10 Primary (Filt + Cond),TON
+37009,9.941598e-06,Arsenic,LB
+37009,7.115813e-05,Organic Carbon portion of PM2.5-PRI,TON
+37009,3.446261e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.000483156,Pyrene,LB
+37009,0.6336618,Xylenes (Mixed Isomers),LB
+37009,8.912594e-05,Chrysene,LB
+37001,49.57884,Styrene,LB
+37001,0.0007112886,Chromium (VI),LB
+37001,0.04812712,"Benzo[g,h,i,]Perylene",LB
+37001,0.013933308,Benzo[k]Fluoranthene,LB
+37001,0.2453242,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.1517942,Sulfur Dioxide,TON
+37001,0.08070725,Sulfate Portion of PM2.5-PRI,TON
+37071,0.003216544,Chrysene,LB
+37071,4.175292,"2,2,4-Trimethylpentane",LB
+37071,3.470607e-05,Nitrate portion of PM2.5-PRI,TON
+37071,0.006668894,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,19.77634,Toluene,LB
+37013,0.013962052,Manganese,LB
+37013,0.008773386,Acenaphthene,LB
+37013,0.06142254,Methane,TON
+37013,0.8959817,Nitrogen Oxides,TON
+37013,0.00768343,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.01781701,PM2.5 Primary (Filt + Cond),TON
+37013,0.5723323,Volatile Organic Compounds,TON
+37005,0.00212789,Styrene,LB
+37005,0.007951152,Acrolein,LB
+37005,0.9162522,Acetaldehyde,LB
+37005,0.0004301439,PM10 Primary (Filt + Cond),TON
+37005,0.0001518017,PM2.5 Primary (Filt + Cond),TON
+37157,5.098592,Ethyl Benzene,LB
+37157,20.20534,Toluene,LB
+37157,0.008171284,Anthracene,LB
+37157,5.70961e-05,Chromium (VI),LB
+37157,0.006924106,Chrysene,LB
+37157,0.007802228,Benz[a]Anthracene,LB
+37157,0.05025744,Phenanthrene,LB
+37157,1.011044,Nitrogen Oxides,TON
+37157,0.0318068,Sulfur Dioxide,TON
+37117,0.0008946444,Acenaphthylene,LB
+37117,1.9737144e-05,Mercury,LB
+37117,0.00019320772,Acenaphthene,LB
+37117,0.010081176,Naphthalene,LB
+37117,0.2767128,Carbon Monoxide,TON
+37117,0.0002797666,Organic Carbon portion of PM2.5-PRI,TON
+37117,1.812881e-05,Sulfate Portion of PM2.5-PRI,TON
+37117,0.11206968,Ethyl Benzene,LB
+37095,8.532622e-05,Benz[a]Anthracene,LB
+37095,1.101526,Acetaldehyde,LB
+37095,0.004934072,Naphthalene,LB
+37095,0.1356292,Carbon Monoxide,TON
+37095,4.83623e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37013,37.0791,Ethyl Benzene,LB
+37013,6.211828,Pyrene,LB
+37013,67.39676,Xylenes (Mixed Isomers),LB
+37013,0.004067112,Benzo[k]Fluoranthene,LB
+37013,0.09857522,Benzo[a]Pyrene,LB
+37013,0.1530652,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.04830742,"Benzo[g,h,i,]Perylene",LB
+37021,0.018149912,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,1.2344896,Naphthalene,LB
+37021,623.6481,Carbon Dioxide,TON
+37021,0.08507337,PM10 Primary (Filt + Cond),TON
+37021,0.01021347,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,3.62605e-05,Chromium (VI),LB
+37011,0.00092159,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.0005034272,Benzo[k]Fluoranthene,LB
+37011,13.974316,Benzene,LB
+37011,64.76288,Acetaldehyde,LB
+37011,0.069238,Methane,TON
+37011,0.007708868,Sulfur Dioxide,TON
+37001,34.0881,Hexane,LB
+37001,5.637992e-06,Chromium (VI),LB
+37001,0.012645522,Benzo[b]Fluoranthene,LB
+37001,0.005030464,Manganese,LB
+37001,0.02012393,Methane,TON
+37001,0.005254351,Sulfur Dioxide,TON
+37051,0.07028824,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.06933224,Benzo[a]Pyrene,LB
+37051,0.001613346,"Dibenzo[a,h]Anthracene",LB
+37051,0.05546398,Arsenic,LB
+37051,304.9092,Acetaldehyde,LB
+37051,1.3639482,Naphthalene,LB
+37051,0.04834707,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.0529583,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.0016308348,Pyrene,LB
+37047,0.000803525,Acenaphthene,LB
+37047,1.410411,Carbon Monoxide,TON
+37023,0.00201851,Fluoranthene,LB
+37023,1.8458998,Formaldehyde,LB
+37023,1.4380942,"2,2,4-Trimethylpentane",LB
+37023,0.002903326,Nitrous Oxide,TON
+37023,1.173466e-05,Nitrate portion of PM2.5-PRI,TON
+37159,3.211224e-05,Chromium (VI),LB
+37159,0.010204338,Acenaphthylene,LB
+37159,3.518796,Formaldehyde,LB
+37159,1.3461398,Ethyl Benzene,LB
+37159,0.001573544,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.01041784,PM2.5 Primary (Filt + Cond),TON
+37111,4.409096,Ethyl Benzene,LB
+37111,1.8829036,Propionaldehyde,LB
+37111,0.015138716,Pyrene,LB
+37111,15.514412,Xylenes (Mixed Isomers),LB
+37111,0.008426706,Benzo[k]Fluoranthene,LB
+37017,0.15732822,Benzene,LB
+37017,0.001428287,Manganese,LB
+37017,0.0002942764,Arsenic,LB
+37017,0.00018818778,Acenaphthene,LB
+37007,15.62044,Acrolein,LB
+37007,2.188176,Pyrene,LB
+37007,0.04926642,Benzo[b]Fluoranthene,LB
+37007,4.659762,"2,2,4-Trimethylpentane",LB
+37007,0.03011398,Nickel,LB
+37007,5.588505,Carbon Monoxide,TON
+37007,0.5765112,Elemental Carbon portion of PM2.5-PRI,TON
+37005,5.271712,Acrolein,LB
+37005,0.2034184,Anthracene,LB
+37005,0.010098722,Benzo[b]Fluoranthene,LB
+37005,1.900288,"2,2,4-Trimethylpentane",LB
+37005,0.04975455,Methane,TON
+37005,0.2647017,PM10-Primary from certain diesel engines,TON
+37001,8.21347,Methane,TON
+37001,8.045657,Nitrous Oxide,TON
+37001,26.31244,Ammonia,TON
+37001,381.5168,Styrene,LB
+37001,0.02064834,Chromium (VI),LB
+37007,6992.934,Toluene,LB
+37061,10.023294,Xylenes (Mixed Isomers),LB
+37043,0.1744688,Carbon Monoxide,TON
+37043,8.95712e-07,Nitrate portion of PM2.5-PRI,TON
+37043,0.0001663595,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.001183162,PM10 Primary (Filt + Cond),TON
+37043,0.0005637053,Sulfur Dioxide,TON
+37043,0.0006874814,"Benzo[g,h,i,]Perylene",LB
+37043,0.0002582882,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.0003045874,Fluorene,LB
+37017,0.1815804,PM25-Primary from certain diesel engines,TON
+37017,6.72225,Nitrogen Oxides,TON
+37017,0.02047787,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.00325877,Sulfate Portion of PM2.5-PRI,TON
+37017,2.80587,"1,3-Butadiene",LB
+37017,0.267948,Anthracene,LB
+37017,4.532564,Propionaldehyde,LB
+37017,0.03172378,Benzo[a]Pyrene,LB
+37015,0.006594608,Benzo[a]Pyrene,LB
+37015,0.02162178,Benz[a]Anthracene,LB
+37015,0.842695,Benzene,LB
+37015,227.7566,Carbon Dioxide,TON
+37011,1.1081026,Acrolein,LB
+37011,0.00323687,Benzo[b]Fluoranthene,LB
+37011,0.0004438002,Benzo[k]Fluoranthene,LB
+37011,1.3269954,Benzene,LB
+37011,0.3348543,Carbon Monoxide,TON
+37199,0.6238748,Toluene,LB
+37199,0.0004816364,Pyrene,LB
+37199,2.052148e-05,Mercury,LB
+37199,0.0002593804,Organic Carbon portion of PM2.5-PRI,TON
+37193,18.95798,Benzene,LB
+37193,2.025222,Pyrene,LB
+37193,3.171932e-05,Chromium (VI),LB
+37193,7.485429,Carbon Monoxide,TON
+37193,0.008625018,Sulfate Portion of PM2.5-PRI,TON
+37193,377.15,Naphthalene,LB
+37193,3.504042,Nitrous Oxide,TON
+37193,11.16807,PM10 Primary (Filt + Cond),TON
+37193,170.35568,Styrene,LB
+37193,1120.1116,"1,3-Butadiene",LB
+37193,0.08650304,"Dibenzo[a,h]Anthracene",LB
+37193,7297.71,"2,2,4-Trimethylpentane",LB
+37191,3.608058,Ethyl Benzene,LB
+37191,6.054995,PM10 Primary (Filt + Cond),TON
+37181,2.020704e-05,"Benzo[g,h,i,]Perylene",LB
+37181,0.0004876372,Acenaphthylene,LB
+37181,1.3009066e-06,Nickel,LB
+37181,0.0002123894,Acenaphthene,LB
+37181,0.0010387434,Phenanthrene,LB
+37181,1.430969e-06,Nitrate portion of PM2.5-PRI,TON
+37181,0.01263194,PM10 Primary (Filt + Cond),TON
+37181,6.268963e-05,Sulfate Portion of PM2.5-PRI,TON
+37199,1.6950382,Ethyl Benzene,LB
+37199,0.005565746,Pyrene,LB
+37199,0.00010199974,"Dibenzo[a,h]Anthracene",LB
+37199,0.00014026756,Mercury,LB
+37199,0.00156325,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.1839343,Volatile Organic Compounds,TON
+37197,0.7090574,Nitrogen Oxides,TON
+37197,0.005096721,Sulfur Dioxide,TON
+37197,0.002458897,Sulfate Portion of PM2.5-PRI,TON
+37197,2.236664,"1,3-Butadiene",LB
+37197,0.00017261498,"Dibenzo[a,h]Anthracene",LB
+37197,7.154604,Benzene,LB
+37197,0.6369268,Phenanthrene,LB
+37195,26.76976,Ethyl Benzene,LB
+37195,60.85736,Acrolein,LB
+37195,2.325472,Acenaphthene,LB
+37195,5.10233,Fluorene,LB
+37195,2.13535,PM10-Primary from certain diesel engines,TON
+37195,0.03008007,Nitrous Oxide,TON
+37195,0.009120583,Nitrate portion of PM2.5-PRI,TON
+37069,0.4324244,Ethyl Benzene,LB
+37069,0.3516208,"2,2,4-Trimethylpentane",LB
+37069,0.00771746,Manganese,LB
+37069,0.008927705,Methane,TON
+37069,0.4471742,Carbon Monoxide,TON
+37069,0.0140474,Organic Carbon portion of PM2.5-PRI,TON
+37067,275.9843,Carbon Monoxide,TON
+37067,388.8384,Acrolein,LB
+37067,303.9518,Xylenes (Mixed Isomers),LB
+37067,0.03891132,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,27.71368,Acenaphthylene,LB
+37067,119.00562,"2,2,4-Trimethylpentane",LB
+37067,462.824,Benzene,LB
+37063,180.73514,Xylenes (Mixed Isomers),LB
+37049,97.50289,Nitrogen Oxides,TON
+37049,39.2645,Ethyl Benzene,LB
+37049,80.1495,Acrolein,LB
+37049,31.39268,Hexane,LB
+37049,0.01690223,Benzo[k]Fluoranthene,LB
+37049,0.7912874,Chrysene,LB
+37037,564.3512,Formaldehyde,LB
+37037,0.011127458,"Dibenzo[a,h]Anthracene",LB
+37037,57.90242,Naphthalene,LB
+37037,0.02354198,Nitrous Oxide,TON
+37037,0.3577643,Ammonia,TON
+37037,0.01728197,"Benzo[g,h,i,]Perylene",LB
+37037,0.011245536,Benzo[k]Fluoranthene,LB
+37035,292.7648,Benzene,LB
+37035,0.0004316483,Nitrate portion of PM2.5-PRI,TON
+37035,0.09506174,Benzo[k]Fluoranthene,LB
+37035,0.37289,"Benzo[g,h,i,]Perylene",LB
+37035,0.1401015,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,12.262786,Benzo[b]Fluoranthene,LB
+37035,244.2092,Phenanthrene,LB
+37035,21.57061,Nitrous Oxide,TON
+37033,11.28148,Ethyl Benzene,LB
+37033,0.00214667,Nitrate portion of PM2.5-PRI,TON
+37033,0.0001513776,Mercury,LB
+37033,0.6827298,Acenaphthene,LB
+37033,11646.46,Carbon Dioxide,TON
+37033,0.0306942,Benzo[b]Fluoranthene,LB
+37033,0.10271082,Benzo[a]Pyrene,LB
+37031,37.00292,"2,2,4-Trimethylpentane",LB
+37023,0.0040951,Toluene,LB
+37023,1.429143e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,2.983702e-07,Manganese,LB
+37023,7.603216e-05,Naphthalene,LB
+37023,4.590686e-07,Nitrous Oxide,TON
+37023,5.46263,Phenanthrene,LB
+37023,0.09707161,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.2942101,Sulfur Dioxide,TON
+37023,0.8603152,Anthracene,LB
+37023,0.289838,Benzo[b]Fluoranthene,LB
+37023,0.2831338,Chrysene,LB
+37159,0.01106642,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.007959376,Benzo[b]Fluoranthene,LB
+37159,8.543728,Formaldehyde,LB
+37159,22.568,"2,2,4-Trimethylpentane",LB
+37159,1.3732786,Naphthalene,LB
+37159,0.003019082,Elemental Carbon portion of PM2.5-PRI,TON
+37157,4226.238,"2,2,4-Trimethylpentane",LB
+37145,0.10589148,Styrene,LB
+37145,0.003859238,Anthracene,LB
+37145,0.003920722,"Benzo[g,h,i,]Perylene",LB
+37145,0.001160406,Benzo[k]Fluoranthene,LB
+37145,0.00308238,Ammonia,TON
+37145,0.0008387251,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.001388267,Sulfur Dioxide,TON
+37143,0.009534318,Anthracene,LB
+37143,0.02641062,Pyrene,LB
+37143,2.669588,Formaldehyde,LB
+37143,0.0004977504,Manganese,LB
+37143,0.0004490796,Ammonia,TON
+37139,0.0005566186,"1,3-Butadiene",LB
+37139,0.014110966,Toluene,LB
+37139,2.795899e-06,Methane,TON
+37139,1.434571e-06,PM2.5 Primary (Filt + Cond),TON
+37127,2.86076,Xylenes (Mixed Isomers),LB
+37127,0.007197346,Benzo[b]Fluoranthene,LB
+37127,0.0010009088,Benzo[k]Fluoranthene,LB
+37127,35.156,Formaldehyde,LB
+37127,0.019683432,Manganese,LB
+37127,0.10113068,Acenaphthene,LB
+37125,0.0215281,"Benzo[g,h,i,]Perylene",LB
+37125,0.6820556,Chrysene,LB
+37125,0.02011702,Arsenic,LB
+37125,1.891749,PM25-Primary from certain diesel engines,TON
+37125,0.1090774,Ammonia,TON
+37125,40.61936,Nitrogen Oxides,TON
+37125,0.5092843,Organic Carbon portion of PM2.5-PRI,TON
+37125,2.633719,Volatile Organic Compounds,TON
+37125,13.444414,Hexane,LB
+37125,0.002995574,Benzo[k]Fluoranthene,LB
+37125,0.05527544,Acenaphthylene,LB
+37125,0.003734274,Benzo[a]Pyrene,LB
+37125,4.253716,Acetaldehyde,LB
+37125,0.002096737,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.01643745,PM10 Primary (Filt + Cond),TON
+37113,3.462478e-06,Mercury,LB
+37113,0.0007239644,Arsenic,LB
+37113,0.3493358,"1,3-Butadiene",LB
+37113,0.8497048,Xylenes (Mixed Isomers),LB
+37113,262.1642,Carbon Dioxide,TON
+37113,0.0497312,PM25-Primary from certain diesel engines,TON
+37113,0.0001469452,Nitrate portion of PM2.5-PRI,TON
+37113,0.03134972,Benzo[a]Pyrene,LB
+37113,1.2279962,Styrene,LB
+37113,2.747742,"1,3-Butadiene",LB
+37113,1.9557888,Hexane,LB
+37113,0.2626426,Anthracene,LB
+37113,0.6336316,Pyrene,LB
+37113,1.0696144e-05,Mercury,LB
+37113,8.805696,Naphthalene,LB
+37109,449.9908,Toluene,LB
+37109,0.007559264,Arsenic,LB
+37109,0.0015664004,Acenaphthene,LB
+37109,0.8864224,Carbon Monoxide,TON
+37109,7.73719,Carbon Dioxide,TON
+37109,0.00252406,"Benzo[g,h,i,]Perylene",LB
+37109,0.004874492,Benz[a]Anthracene,LB
+37109,21.43958,Benzene,LB
+37109,5.829588e-05,Mercury,LB
+37109,0.000726859,Nickel,LB
+37109,0.018376506,Acenaphthene,LB
+37109,0.0996815,Phenanthrene,LB
+37109,0.9540616,Naphthalene,LB
+37109,14.439292,Hexane,LB
+37109,0.004757346,Benzo[k]Fluoranthene,LB
+37109,6.094348,Formaldehyde,LB
+37101,227.5636,Toluene,LB
+37101,195.97028,Xylenes (Mixed Isomers),LB
+37097,0.00685101,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.3601546,Benz[a]Anthracene,LB
+37097,1.594411,Fluorene,LB
+37097,9.974761,Carbon Monoxide,TON
+37097,0.1374751,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.08849735,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,1.490463,Volatile Organic Compounds,TON
+37099,0.0003496408,"Benzo[g,h,i,]Perylene",LB
+37099,0.7655542,Benzene,LB
+37099,0.0002588154,Arsenic,LB
+37099,0.0004855664,Sulfur Dioxide,TON
+37099,0.02892952,Anthracene,LB
+37097,4773.092,Ethyl Benzene,LB
+37093,0.2908294,Anthracene,LB
+37093,0.08212022,Chrysene,LB
+37093,1.851906,Phenanthrene,LB
+37093,0.6927548,Fluorene,LB
+37093,3730.634,Carbon Dioxide,TON
+37093,7.902956,Nitrogen Oxides,TON
+37093,0.07823704,Sulfur Dioxide,TON
+37083,0.2585562,"2,2,4-Trimethylpentane",LB
+37083,0.007948704,Acrolein,LB
+37083,0.008154954,Propionaldehyde,LB
+37083,0.0005193774,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,2.292864e-05,Nickel,LB
+37083,0.0008742692,Fluorene,LB
+37083,0.0007914677,PM10 Primary (Filt + Cond),TON
+37081,21.20404,Styrene,LB
+37081,124.80204,Acrolein,LB
+37081,123.32208,Toluene,LB
+37081,81.1517,Propionaldehyde,LB
+37081,0.2430032,Nickel,LB
+37081,14.119056,Phenanthrene,LB
+37081,0.9774708,Methane,TON
+37081,1.736984,PM25-Primary from certain diesel engines,TON
+37081,0.003979103,Nitrate portion of PM2.5-PRI,TON
+37077,1.4485588e-06,Arsenic,LB
+37077,0.0003243946,Phenanthrene,LB
+37077,0.02757099,Carbon Monoxide,TON
+37077,6.951101e-05,PM10 Primary (Filt + Cond),TON
+37077,7.55775e-09,Chromium (VI),LB
+37077,2.867446e-05,Benzo[b]Fluoranthene,LB
+37077,9.447068e-07,Nickel,LB
+37075,0.002203922,"Benzo[g,h,i,]Perylene",LB
+37075,0.03408098,Benzo[a]Pyrene,LB
+37075,0.01164006,Nickel,LB
+37075,0.1653509,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.002580854,Nitrous Oxide,TON
+37075,0.02420146,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.01845048,Styrene,LB
+37065,0.06985062,"1,3-Butadiene",LB
+37065,0.0002450336,Chrysene,LB
+37065,0.2367178,Acetaldehyde,LB
+37065,0.002200122,PM10 Primary (Filt + Cond),TON
+37065,0.0003210963,Sulfur Dioxide,TON
+37057,0.0004518434,"Dibenzo[a,h]Anthracene",LB
+37057,0.5196546,Ethyl Benzene,LB
+37057,1.2172104,Acrolein,LB
+37057,0.15252632,Pyrene,LB
+37057,0.0017562676,Nickel,LB
+37057,0.01629662,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.014807472,"Benzo[g,h,i,]Perylene",LB
+37055,0.018494946,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,2.49276,Fluoranthene,LB
+37055,43.49288,Naphthalene,LB
+37055,45.65781,Nitrogen Oxides,TON
+37055,3.34799,PM10 Primary (Filt + Cond),TON
+37049,2056.958,Ethyl Benzene,LB
+37041,1.9309734,Formaldehyde,LB
+37041,0.0003353638,Manganese,LB
+37041,7.647922e-05,"Benzo[g,h,i,]Perylene",LB
+37041,0.02253102,Phenanthrene,LB
+37041,0.04109466,Carbon Monoxide,TON
+37041,0.001685706,Organic Carbon portion of PM2.5-PRI,TON
+37031,6765.442,Xylenes (Mixed Isomers),LB
+37029,0.02020936,"Dibenzo[a,h]Anthracene",LB
+37029,5.711112,Fluorene,LB
+37101,0.12087194,Acrolein,LB
+37101,2.847724,Toluene,LB
+37101,1.1983736,Hexane,LB
+37101,0.277991,Propionaldehyde,LB
+37101,0.00328343,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.0016893062,Benzo[b]Fluoranthene,LB
+37101,0.005369718,Acenaphthylene,LB
+37101,1.3209988,"2,2,4-Trimethylpentane",LB
+37101,0.0014451588,Benz[a]Anthracene,LB
+37101,13.447998,Acetaldehyde,LB
+37101,0.01189671,Ammonia,TON
+37093,1.2013028,Hexane,LB
+37093,8.583e-06,Chromium (VI),LB
+37093,0.001581083,Fluoranthene,LB
+37093,0.0007352948,Benz[a]Anthracene,LB
+37093,0.0019462982,Fluorene,LB
+37093,0.001070449,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.003674277,Sulfur Dioxide,TON
+37177,0.0019806324,Acrolein,LB
+37177,3.736698e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,2.634462e-05,Benzo[k]Fluoranthene,LB
+37177,2.513048e-05,Chrysene,LB
+37177,3.737472e-05,Benzo[a]Pyrene,LB
+37177,0.0974177,Benzene,LB
+37177,0.004362592,Naphthalene,LB
+37177,0.003651988,Nitrogen Oxides,TON
+37177,3.873363e-05,Sulfur Dioxide,TON
+37177,0.001265701,Volatile Organic Compounds,TON
+37175,0.3667924,Volatile Organic Compounds,TON
+37175,1.1252334e-05,Chromium (VI),LB
+37175,0.0018594506,"Benzo[g,h,i,]Perylene",LB
+37175,7.61806e-06,Mercury,LB
+37175,0.1410233,PM10-Primary from certain diesel engines,TON
+37175,0.136072,PM2.5 Primary (Filt + Cond),TON
+37167,450.9914,Formaldehyde,LB
+37167,0.2827122,Benzo[a]Pyrene,LB
+37167,1.014364,PM10-Primary from certain diesel engines,TON
+37165,76960.42,Carbon Dioxide,TON
+37165,1.49087,Nitrous Oxide,TON
+37165,0.7908696,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,1.613725,Sulfur Dioxide,TON
+37165,4.837348,"Benzo[g,h,i,]Perylene",LB
+37163,17.824116,Anthracene,LB
+37163,14754.35,"2,2,4-Trimethylpentane",LB
+37163,5.355452,Benz[a]Anthracene,LB
+37163,42.37112,Fluorene,LB
+37163,4909.243,Carbon Monoxide,TON
+37163,0.1904462,Sulfate Portion of PM2.5-PRI,TON
+37145,1.893683,Ethyl Benzene,LB
+37145,4.617308,Acrolein,LB
+37145,1.4185634,Hexane,LB
+37145,0.0012147114,Benzo[k]Fluoranthene,LB
+37145,0.002023726,Arsenic,LB
+37145,2.557116,Carbon Monoxide,TON
+37145,481.969,Carbon Dioxide,TON
+37145,0.1672498,PM2.5 Primary (Filt + Cond),TON
+37139,33.2398,Benzene,LB
+37139,0.18567796,Manganese,LB
+37139,13.226906,Ethyl Benzene,LB
+37139,0.657532,Anthracene,LB
+37139,0.007909754,"Benzo[g,h,i,]Perylene",LB
+37139,0.0377003,Benzo[b]Fluoranthene,LB
+37139,0.005224494,"Dibenzo[a,h]Anthracene",LB
+37139,6.070904,"2,2,4-Trimethylpentane",LB
+37139,0.1132513,Ammonia,TON
+37139,22.69794,Nitrogen Oxides,TON
+37139,1.364075,PM10 Primary (Filt + Cond),TON
+37131,12.420752,"1,3-Butadiene",LB
+37131,0.011070784,"Benzo[g,h,i,]Perylene",LB
+37131,1.2085794,Acenaphthene,LB
+37131,5.291824,Phenanthrene,LB
+37131,2.56474,Fluorene,LB
+37131,0.01571787,Nitrous Oxide,TON
+37131,2.264464,PM10 Primary (Filt + Cond),TON
+37127,206.404,"1,3-Butadiene",LB
+37127,2.474742,Pyrene,LB
+37127,453.5926,Formaldehyde,LB
+37127,0.015554224,"Dibenzo[a,h]Anthracene",LB
+37123,18853.48,Carbon Dioxide,TON
+37123,0.006624064,"Dibenzo[a,h]Anthracene",LB
+37111,0.249327,Xylenes (Mixed Isomers),LB
+37111,2.672306e-05,"Benzo[g,h,i,]Perylene",LB
+37111,63.93836,Formaldehyde,LB
+37111,0.0005801034,Fluorene,LB
+37111,1.557973e-06,Nitrate portion of PM2.5-PRI,TON
+37111,7.589723e-05,Sulfate Portion of PM2.5-PRI,TON
+37007,10.50972,Nitrogen Oxides,TON
+37007,0.9434794,PM10 Primary (Filt + Cond),TON
+37007,1.435899,Volatile Organic Compounds,TON
+37007,8.541136,Ethyl Benzene,LB
+37007,18.892126,Toluene,LB
+37007,0.8793816,Anthracene,LB
+37007,0.011523046,"Benzo[g,h,i,]Perylene",LB
+37007,0.03498194,Nickel,LB
+37015,1090.9838,Toluene,LB
+37015,0.1193116,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.091403,Benzo[k]Fluoranthene,LB
+37015,106.41376,Formaldehyde,LB
+37015,0.1198712,Benzo[a]Pyrene,LB
+37015,0.002751988,Mercury,LB
+37015,0.3424194,PM10 Primary (Filt + Cond),TON
+37015,2.41798,Acenaphthene,LB
+37015,4.89773,Fluorene,LB
+37015,0.9997473,Sulfur Dioxide,TON
+37015,0.003539864,Chromium (VI),LB
+37015,11.027388,Acenaphthylene,LB
+37015,0.757957,Manganese,LB
+37077,0.0003399412,Benzo[b]Fluoranthene,LB
+37077,2.222166e-06,Nitrate portion of PM2.5-PRI,TON
+37025,3.39567,Hexane,LB
+37025,0.13361274,Naphthalene,LB
+37025,2.76466e-05,Nitrate portion of PM2.5-PRI,TON
+37025,0.0003683289,Sulfate Portion of PM2.5-PRI,TON
+37025,3.40982,"2,2,4-Trimethylpentane",LB
+37133,0.004522008,Fluorene,LB
+37133,0.02097316,Methane,TON
+37133,0.0003007023,Sulfate Portion of PM2.5-PRI,TON
+37133,1.3954858,Ethyl Benzene,LB
+37111,0.0001911578,Anthracene,LB
+37111,0.4103328,Xylenes (Mixed Isomers),LB
+37111,0.0013989932,"Benzo[g,h,i,]Perylene",LB
+37111,0.3927734,Formaldehyde,LB
+37111,0.0005750526,Manganese,LB
+37111,0.010502178,Naphthalene,LB
+37111,0.00208015,Methane,TON
+37111,0.3198939,Carbon Monoxide,TON
+37111,0.01321828,Volatile Organic Compounds,TON
+37021,193.60896,"1,3-Butadiene",LB
+37021,316.1736,Propionaldehyde,LB
+37021,0.2285968,Benzo[b]Fluoranthene,LB
+37021,299.3768,Carbon Monoxide,TON
+37021,5.173732,PM25-Primary from certain diesel engines,TON
+37021,1.156752,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.3040403,Sulfur Dioxide,TON
+37013,0.7637742,Anthracene,LB
+37013,1.2469844,Fluoranthene,LB
+37013,1.5469336,Acenaphthylene,LB
+37013,0.012102142,Arsenic,LB
+37013,122.65674,Acetaldehyde,LB
+37013,0.1129173,Methane,TON
+37013,0.273174,PM10-Primary from certain diesel engines,TON
+37013,0.2513257,PM25-Primary from certain diesel engines,TON
+37013,0.2615061,PM2.5 Primary (Filt + Cond),TON
+37013,4.943572,"Benzo[g,h,i,]Perylene",LB
+37013,1.3490986,Benzo[k]Fluoranthene,LB
+37013,20.81728,Acenaphthylene,LB
+37013,1.3554326,Manganese,LB
+37013,0.04451308,Mercury,LB
+37013,0.8510068,Arsenic,LB
+37013,0.0608016,Sulfate Portion of PM2.5-PRI,TON
+37011,0.00607204,Nickel,LB
+37011,11.001876,Acetaldehyde,LB
+37011,0.02134725,Methane,TON
+37011,0.0008482915,Elemental Carbon portion of PM2.5-PRI,TON
+37011,2.49858e-05,Nitrate portion of PM2.5-PRI,TON
+37011,0.004588079,PM2.5 Primary (Filt + Cond),TON
+37011,0.001161976,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,1.2208608,Propionaldehyde,LB
+37011,0.0906234,Fluoranthene,LB
+37005,0.3916546,Acrolein,LB
+37005,0.004709892,Benzo[b]Fluoranthene,LB
+37005,0.08827584,Acenaphthylene,LB
+37005,5.774732,Formaldehyde,LB
+37005,0.005811312,Benzo[a]Pyrene,LB
+37005,0.00034018,Nickel,LB
+37005,1.006957,Naphthalene,LB
+37005,1.63225e-05,Nitrate portion of PM2.5-PRI,TON
+37021,5.059404,Xylenes (Mixed Isomers),LB
+37021,0.016163818,"Benzo[g,h,i,]Perylene",LB
+37021,0.004106554,Fluoranthene,LB
+37021,0.0003093994,Mercury,LB
+37021,0.002272704,Acenaphthene,LB
+37013,9.937688,Ethyl Benzene,LB
+37013,0.2727312,Styrene,LB
+37013,20.0421,Hexane,LB
+37013,0.002829444,Benzo[b]Fluoranthene,LB
+37013,16.742004,"2,2,4-Trimethylpentane",LB
+37013,0.003901314,Nitrous Oxide,TON
+37013,0.001886001,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.003987244,PM2.5 Primary (Filt + Cond),TON
+37013,0.3360083,Volatile Organic Compounds,TON
+37009,8.218224,Propionaldehyde,LB
+37009,0.6569082,Fluoranthene,LB
+37009,0.0004782474,Benzo[k]Fluoranthene,LB
+37009,4.0993,"2,2,4-Trimethylpentane",LB
+37009,0.1030638,Benz[a]Anthracene,LB
+37009,1.3615954,Phenanthrene,LB
+37009,17.332244,Naphthalene,LB
+37009,0.002758497,Nitrous Oxide,TON
+37009,0.1668908,PM10 Primary (Filt + Cond),TON
+37009,0.00733547,Sulfur Dioxide,TON
+37005,0.5484378,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.02405052,Sulfate Portion of PM2.5-PRI,TON
+37005,2185.374,Ethyl Benzene,LB
+37005,1.0637866,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.02443446,"Dibenzo[a,h]Anthracene",LB
+37005,0.2937552,Manganese,LB
+37005,3.812296,Acenaphthene,LB
+37001,0.0546205,Ethyl Benzene,LB
+37001,0.3502426,Toluene,LB
+37001,0.003625316,Manganese,LB
+37001,2.167608e-06,Nickel,LB
+37001,0.4739962,Nitrogen Oxides,TON
+37015,26.23347,Carbon Monoxide,TON
+37015,9.792438e-05,Mercury,LB
+37199,0.0004371631,Ammonia,TON
+37199,0.001366871,Sulfur Dioxide,TON
+37199,0.1465912,Volatile Organic Compounds,TON
+37199,7.01179e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.7738342,"2,2,4-Trimethylpentane",LB
+37199,0.0008565479,Elemental Carbon portion of PM2.5-PRI,TON
+37197,1.4711854,Styrene,LB
+37197,7.659446,Acrolein,LB
+37197,5.132872,Xylenes (Mixed Isomers),LB
+37197,2.028676e-05,Chromium (VI),LB
+37197,0.9806448,Phenanthrene,LB
+37197,0.2147478,PM25-Primary from certain diesel engines,TON
+37197,0.008191152,Sulfur Dioxide,TON
+37197,0.003571732,Sulfate Portion of PM2.5-PRI,TON
+37193,0.1020205,Sulfur Dioxide,TON
+37193,90.20666,Ethyl Benzene,LB
+37193,42.12864,Styrene,LB
+37193,16.150778,Acenaphthylene,LB
+37193,0.9402004,Chrysene,LB
+37193,9.604452,Acenaphthene,LB
+37193,2.85998,Ethyl Benzene,LB
+37193,6.896656,Toluene,LB
+37193,4.1357,Propionaldehyde,LB
+37193,4.205278e-05,Chromium (VI),LB
+37193,87.86378,Formaldehyde,LB
+37193,2.344856,"2,2,4-Trimethylpentane",LB
+37193,0.007619862,Arsenic,LB
+37193,6.920703,Carbon Monoxide,TON
+37195,1.6830854,Styrene,LB
+37195,0.3557408,Anthracene,LB
+37195,2.813102e-05,Chromium (VI),LB
+37195,0.002934394,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.011520704,Benzo[b]Fluoranthene,LB
+37195,0.08667282,Chrysene,LB
+37195,0.0015840938,"Dibenzo[a,h]Anthracene",LB
+37195,10.974774,Benzene,LB
+37195,2.482474e-05,Mercury,LB
+37195,12.77266,Naphthalene,LB
+37195,0.000711101,Nitrate portion of PM2.5-PRI,TON
+37195,0.254789,PM2.5 Primary (Filt + Cond),TON
+37195,0.6772188,Volatile Organic Compounds,TON
+37195,0.1545552,Elemental Carbon portion of PM2.5-PRI,TON
+37195,29.0935,Propionaldehyde,LB
+37195,2.482816,Pyrene,LB
+37195,0.4430908,Chrysene,LB
+37195,1.4807104,Acenaphthene,LB
+37191,37.9791,Toluene,LB
+37191,30.71886,Propionaldehyde,LB
+37191,0.00014336078,Chromium (VI),LB
+37191,4.744518,Fluoranthene,LB
+37191,0.08090852,Nickel,LB
+37191,1.9038826,Acenaphthene,LB
+37191,63.01914,Naphthalene,LB
+37191,10005.5,Carbon Dioxide,TON
+37191,0.1415286,Ammonia,TON
+37191,115.9346,Carbon Monoxide,TON
+37191,2990.039,Carbon Dioxide,TON
+37191,0.02757877,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.00055109,Nitrate portion of PM2.5-PRI,TON
+37191,0.035639,Arsenic,LB
+37185,2.201986,Anthracene,LB
+37185,0.003228904,Chromium (VI),LB
+37185,3.780488,"Benzo[g,h,i,]Perylene",LB
+37185,0.9370226,Benzo[k]Fluoranthene,LB
+37185,0.0326068,"Dibenzo[a,h]Anthracene",LB
+37185,0.403607,Nickel,LB
+37185,913.834,Acetaldehyde,LB
+37181,0.006771495,Methane,TON
+37181,0.09686948,PM10 Primary (Filt + Cond),TON
+37181,0.06923837,PM2.5 Primary (Filt + Cond),TON
+37181,0.9964688,Toluene,LB
+37181,0.0004029458,"Dibenzo[a,h]Anthracene",LB
+37179,0.5099308,Pyrene,LB
+37179,0.003064744,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.343541,Fluorene,LB
+37179,0.002289539,Nitrous Oxide,TON
+37179,0.01610418,Sulfate Portion of PM2.5-PRI,TON
+37191,1.731171,Anthracene,LB
+37191,56.04284,Xylenes (Mixed Isomers),LB
+37191,0.0003196124,Mercury,LB
+37191,0.5182833,Organic Carbon portion of PM2.5-PRI,TON
+37183,113.78142,Pyrene,LB
+37183,98.04608,"Benzo[g,h,i,]Perylene",LB
+37183,99.8131,Fluoranthene,LB
+37183,46.03744,Manganese,LB
+37183,23.02226,Arsenic,LB
+37183,9.597106,Elemental Carbon portion of PM2.5-PRI,TON
+37183,37.27656,Sulfur Dioxide,TON
+37181,252.7468,Benzene,LB
+37031,5.842772,Styrene,LB
+37031,31.94088,Acrolein,LB
+37031,7.659012e-05,Mercury,LB
+37031,0.05022746,Nickel,LB
+37031,0.01601428,Arsenic,LB
+37031,1.763195,PM25-Primary from certain diesel engines,TON
+37031,0.06759279,Organic Carbon portion of PM2.5-PRI,TON
+37031,1.60748,Volatile Organic Compounds,TON
+37031,20.51246,Toluene,LB
+37031,0.004649464,"Benzo[g,h,i,]Perylene",LB
+37031,174.76156,Benzene,LB
+37031,36.13304,Nitrogen Oxides,TON
+37029,0.3841722,PM10-Primary from certain diesel engines,TON
+37029,2.552256,"1,3-Butadiene",LB
+37029,7.335684,Toluene,LB
+37029,0.06879037,PM10-Primary from certain diesel engines,TON
+37029,1.040474,Nitrogen Oxides,TON
+37029,0.06555584,PM2.5 Primary (Filt + Cond),TON
+37119,425.316,Toluene,LB
+37119,33.2763,Pyrene,LB
+37119,53.5349,Phenanthrene,LB
+37119,2.82935,Methane,TON
+37119,137.5782,Nitrogen Oxides,TON
+37119,33.96386,Volatile Organic Compounds,TON
+37101,0.02985244,"Dibenzo[a,h]Anthracene",LB
+37101,2.393454,Benz[a]Anthracene,LB
+37101,0.15735688,Nickel,LB
+37101,3.122734,Acenaphthene,LB
+37101,103.28416,Naphthalene,LB
+37101,2.72634,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.02155458,Nitrous Oxide,TON
+37101,1.042945,Organic Carbon portion of PM2.5-PRI,TON
+37101,936.7598,Formaldehyde,LB
+37101,23.54864,Hexane,LB
+37091,0.5199062,Toluene,LB
+37091,0.36786,Propionaldehyde,LB
+37091,0.0015154694,Benzo[b]Fluoranthene,LB
+37091,0.0002084934,"Dibenzo[a,h]Anthracene",LB
+37091,2.34521e-06,Mercury,LB
+37091,0.04671705,PM10 Primary (Filt + Cond),TON
+37091,0.03317947,PM2.5 Primary (Filt + Cond),TON
+37091,0.001360253,Sulfate Portion of PM2.5-PRI,TON
+37103,0.9561976,Phenanthrene,LB
+37103,5.992012,Nitrogen Oxides,TON
+37103,0.04931014,Benzo[k]Fluoranthene,LB
+37099,0.485364,"1,3-Butadiene",LB
+37099,1.2481916,Acrolein,LB
+37099,0.8110718,Propionaldehyde,LB
+37099,0.0007077238,"Benzo[g,h,i,]Perylene",LB
+37099,0.003486228,Benzo[b]Fluoranthene,LB
+37099,16.525502,Formaldehyde,LB
+37099,6.982584,Acetaldehyde,LB
+37099,0.07502293,PM2.5 Primary (Filt + Cond),TON
+37093,18.994974,Acrolein,LB
+37093,24.29178,Toluene,LB
+37093,0.2108646,Manganese,LB
+37093,0.00015239758,Mercury,LB
+37093,0.04194608,Nickel,LB
+37093,27.2982,Naphthalene,LB
+37093,0.2534924,Organic Carbon portion of PM2.5-PRI,TON
+37093,2.062676,Pyrene,LB
+37091,0.000137734,Nickel,LB
+37091,0.9256726,Acetaldehyde,LB
+37091,4.818831e-05,Sulfate Portion of PM2.5-PRI,TON
+37091,0.04667116,Propionaldehyde,LB
+37091,0.012886486,Acenaphthylene,LB
+37091,0.0007853028,Chrysene,LB
+37091,0.3312868,"1,3-Butadiene",LB
+37071,8.024756,Xylenes (Mixed Isomers),LB
+37071,0.011202996,Benzo[a]Pyrene,LB
+37071,1.9832164,"2,2,4-Trimethylpentane",LB
+37071,5.875098,Benzene,LB
+37071,0.003227262,Methane,TON
+37071,0.0006141983,Sulfate Portion of PM2.5-PRI,TON
+37069,24.5929,Toluene,LB
+37069,0.00741057,"Benzo[g,h,i,]Perylene",LB
+37069,0.013312336,Fluoranthene,LB
+37069,0.002806452,Benzo[a]Pyrene,LB
+37069,10.655908,Benzene,LB
+37069,0.0498091,Phenanthrene,LB
+37069,0.005293755,Methane,TON
+37069,5.399357,Carbon Monoxide,TON
+37069,0.002934915,Sulfur Dioxide,TON
+37069,0.139608,Volatile Organic Compounds,TON
+37067,8.639158,Fluorene,LB
+37067,0.006402295,Nitrate portion of PM2.5-PRI,TON
+37067,2.515735,PM2.5 Primary (Filt + Cond),TON
+37061,0.3775572,"Benzo[g,h,i,]Perylene",LB
+37061,0.461342,Fluoranthene,LB
+37061,0.0013617738,Mercury,LB
+37061,0.016981224,Nickel,LB
+37061,89.49142,Carbon Monoxide,TON
+37057,43.61812,Benzene,LB
+37039,0.0003025506,Volatile Organic Compounds,TON
+37039,0.03911642,Xylenes (Mixed Isomers),LB
+37039,6.184804e-06,Chrysene,LB
+37039,6.547532e-06,Benz[a]Anthracene,LB
+37039,3.075886e-07,Nickel,LB
+37039,0.010617858,Ethyl Benzene,LB
+37043,0.00015975992,Pyrene,LB
+37043,0.2031736,Xylenes (Mixed Isomers),LB
+37043,4.14348e-05,Ammonia,TON
+37043,3.195393e-05,Sulfur Dioxide,TON
+37041,0.13951022,Acenaphthylene,LB
+37041,3.769746e-06,Mercury,LB
+37041,0.1730436,Fluorene,LB
+37041,1.525437,Carbon Monoxide,TON
+37041,0.05359835,PM25-Primary from certain diesel engines,TON
+37041,0.001298108,Nitrous Oxide,TON
+37027,0.0004753286,Chromium (VI),LB
+37027,0.186639,Benzo[b]Fluoranthene,LB
+37027,259.2916,Acetaldehyde,LB
+37027,144.0844,Carbon Monoxide,TON
+37027,0.09763517,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.00744176,Sulfate Portion of PM2.5-PRI,TON
+37023,9.358636e-06,Mercury,LB
+37023,0.8317163,Carbon Monoxide,TON
+37023,0.01067011,Ammonia,TON
+37023,0.1260832,PM2.5 Primary (Filt + Cond),TON
+37023,26.37864,Formaldehyde,LB
+37023,0.0007596708,"Dibenzo[a,h]Anthracene",LB
+37023,1.3007534,Propionaldehyde,LB
+37023,0.0014037728,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.1323092,Acenaphthylene,LB
+37197,242.0406,Ethyl Benzene,LB
+37197,416.7976,Hexane,LB
+37197,1.0068902,Acenaphthylene,LB
+37197,49.9923,Acetaldehyde,LB
+37197,1496.396,Carbon Dioxide,TON
+37197,3.060724,Nitrogen Oxides,TON
+37197,0.05581278,Organic Carbon portion of PM2.5-PRI,TON
+37197,7.488313,Volatile Organic Compounds,TON
+37195,6.769124e-08,Mercury,LB
+37195,0.002149652,Nitrogen Oxides,TON
+37195,6.33258e-05,PM10 Primary (Filt + Cond),TON
+37195,1.010844e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.03951538,Ethyl Benzene,LB
+37195,4.109532e-05,Benzo[a]Pyrene,LB
+37195,0.04927158,"2,2,4-Trimethylpentane",LB
+37195,11.368316,"Benzo[g,h,i,]Perylene",LB
+37195,2.694218,Benzo[b]Fluoranthene,LB
+37195,6213.462,"2,2,4-Trimethylpentane",LB
+37195,1.5065408,Nickel,LB
+37195,6.445924,Acenaphthene,LB
+37195,3.611076,Sulfur Dioxide,TON
+37191,0.00010866512,"Dibenzo[a,h]Anthracene",LB
+37191,28.57036,Toluene,LB
+37187,0.13947696,"1,3-Butadiene",LB
+37187,0.348648,Acrolein,LB
+37187,0.0002223094,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.002924902,Benzo[a]Pyrene,LB
+37187,0.1150873,"2,2,4-Trimethylpentane",LB
+37187,1.9333104,Acetaldehyde,LB
+37187,0.02532541,Volatile Organic Compounds,TON
+37183,0.1397829,Pyrene,LB
+37183,0.14204748,Fluorene,LB
+37183,4.950976,Volatile Organic Compounds,TON
+37183,43.41081,Sulfur Dioxide,TON
+37183,60233.92,Ethyl Benzene,LB
+37183,2382.394,Styrene,LB
+37183,2152.744,Acrolein,LB
+37183,171.02074,Pyrene,LB
+37183,0.10604226,Chromium (VI),LB
+37183,30.88578,Benzo[k]Fluoranthene,LB
+37183,72464.88,"2,2,4-Trimethylpentane",LB
+37183,30.73926,Benz[a]Anthracene,LB
+37183,102.23132,Acenaphthene,LB
+37179,88.419,Acrolein,LB
+37179,31.36068,Hexane,LB
+37179,9.704582,Pyrene,LB
+37179,0.0004610156,Chromium (VI),LB
+37179,1251.5058,Formaldehyde,LB
+37179,2.319958,Benz[a]Anthracene,LB
+37179,4.790103,PM2.5 Primary (Filt + Cond),TON
+37167,1.2822502,Fluoranthene,LB
+37167,0.005074036,"Dibenzo[a,h]Anthracene",LB
+37167,0.4091938,Benz[a]Anthracene,LB
+37167,0.01902111,Ammonia,TON
+37165,0.0004497876,Anthracene,LB
+37165,0.01066859,Propionaldehyde,LB
+37165,0.00232067,Acenaphthylene,LB
+37165,0.000586791,Benzo[a]Pyrene,LB
+37165,1.3600698e-05,"Dibenzo[a,h]Anthracene",LB
+37165,0.0003012242,Benz[a]Anthracene,LB
+37165,1.2699858e-05,Arsenic,LB
+37163,0.02141674,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.0004302367,Nitrate portion of PM2.5-PRI,TON
+37163,0.2132671,PM10 Primary (Filt + Cond),TON
+37163,1233.077,Xylenes (Mixed Isomers),LB
+37163,1.601013,Acenaphthylene,LB
+37163,0.15013704,Benzo[a]Pyrene,LB
+37161,2752.438,Toluene,LB
+37161,1.4524746,Acenaphthylene,LB
+37161,0.3188712,Acenaphthene,LB
+37161,0.64591,Fluorene,LB
+37161,16.557742,Naphthalene,LB
+37161,0.1246162,PM2.5 Primary (Filt + Cond),TON
+37161,11.66029,Volatile Organic Compounds,TON
+37153,1.8437662,Styrene,LB
+37153,3.234498,Hexane,LB
+37153,3.25705e-05,Chromium (VI),LB
+37153,0.004587468,Benzo[b]Fluoranthene,LB
+37153,128.69338,Formaldehyde,LB
+37153,55.9525,Acetaldehyde,LB
+37153,0.1300951,PM25-Primary from certain diesel engines,TON
+37153,0.02804816,Ammonia,TON
+37153,0.004711055,Sulfate Portion of PM2.5-PRI,TON
+37139,0.5664934,Fluorene,LB
+37139,603.9573,Carbon Dioxide,TON
+37139,0.009200386,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,6.858122,Toluene,LB
+37139,2.270674e-05,Chromium (VI),LB
+37139,0.5468712,Acenaphthylene,LB
+37139,2.519472,"2,2,4-Trimethylpentane",LB
+37129,99.17286,Toluene,LB
+37129,110.43646,Xylenes (Mixed Isomers),LB
+37129,0.04463844,"Benzo[g,h,i,]Perylene",LB
+37129,2.39078,Benz[a]Anthracene,LB
+37129,0.08335016,Arsenic,LB
+37129,0.502166,Ammonia,TON
+37129,8.654779,PM10 Primary (Filt + Cond),TON
+37131,0.08153492,Ammonia,TON
+37131,0.02743025,Sulfate Portion of PM2.5-PRI,TON
+37131,0.011260688,"Benzo[g,h,i,]Perylene",LB
+37131,0.606282,Benz[a]Anthracene,LB
+37131,112.95492,Acetaldehyde,LB
+37127,3.95283,Propionaldehyde,LB
+37127,0.812688,Pyrene,LB
+37127,0.0640828,Benzo[a]Pyrene,LB
+37127,7.387222,Benzene,LB
+37127,0.006158762,Arsenic,LB
+37127,8.671564,Naphthalene,LB
+37127,3.456214,Nitrogen Oxides,TON
+37127,0.09187829,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.01127735,Sulfate Portion of PM2.5-PRI,TON
+37123,0.10996318,Anthracene,LB
+37123,0.05711722,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,172.84766,Benzene,LB
+37123,0.008465786,Manganese,LB
+37093,0.005119318,Acenaphthene,LB
+37093,0.02771282,Phenanthrene,LB
+37093,0.0003120376,Elemental Carbon portion of PM2.5-PRI,TON
+37093,4.773616e-05,Sulfate Portion of PM2.5-PRI,TON
+37093,15.157206,Xylenes (Mixed Isomers),LB
+37093,0.003499892,"Benzo[g,h,i,]Perylene",LB
+37093,1.619884,Formaldehyde,LB
+37085,1.9963748e-05,Chromium (VI),LB
+37085,0.16952092,Acenaphthene,LB
+37085,0.3854714,Fluorene,LB
+37085,6.221934,Naphthalene,LB
+37073,0.010346944,Naphthalene,LB
+37073,0.0001109244,Methane,TON
+37073,0.0001127764,Nitrous Oxide,TON
+37073,0.003015128,Volatile Organic Compounds,TON
+37073,0.5363096,Toluene,LB
+37073,0.15300814,Hexane,LB
+37073,0.1062238,"2,2,4-Trimethylpentane",LB
+37085,0.0002064462,Anthracene,LB
+37085,0.0002560992,"Benzo[g,h,i,]Perylene",LB
+37085,2.209588e-06,"Dibenzo[a,h]Anthracene",LB
+37085,0.2008024,"2,2,4-Trimethylpentane",LB
+37085,7.044276e-05,Benz[a]Anthracene,LB
+37085,2.337816e-06,Arsenic,LB
+37085,0.07646899,Carbon Monoxide,TON
+37085,9.316355e-05,Nitrous Oxide,TON
+37085,0.004966842,Nitrogen Oxides,TON
+37199,0.120584,Nitrous Oxide,TON
+37199,0.1777925,PM10 Primary (Filt + Cond),TON
+37199,35.25512,"1,3-Butadiene",LB
+37199,4.672812,Acrolein,LB
+37199,0.0612132,Benzo[k]Fluoranthene,LB
+37199,0.0619892,Chrysene,LB
+37199,72.3259,Formaldehyde,LB
+37199,0.0628592,Benz[a]Anthracene,LB
+37199,12.409674,Naphthalene,LB
+37199,0.1507898,Methane,TON
+37195,0.16389382,Acrolein,LB
+37195,0.007410118,Anthracene,LB
+37195,7.801976e-06,Chromium (VI),LB
+37195,0.00445435,Manganese,LB
+37195,2.497556,Acetaldehyde,LB
+37195,3.103379e-05,Nitrate portion of PM2.5-PRI,TON
+37195,0.02696944,PM10 Primary (Filt + Cond),TON
+37195,0.00602236,Sulfur Dioxide,TON
+37195,0.10342442,Acenaphthylene,LB
+37195,0.007332842,Chrysene,LB
+37195,11.842192,"2,2,4-Trimethylpentane",LB
+37195,9.01072e-05,Mercury,LB
+37195,0.0017227158,Arsenic,LB
+37195,0.01129516,Nitrous Oxide,TON
+37195,0.0545892,PM10 Primary (Filt + Cond),TON
+37195,0.006325598,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,9.092972,Acenaphthylene,LB
+37191,0.006692374,"Dibenzo[a,h]Anthracene",LB
+37191,0.2037098,Nickel,LB
+37191,10138.86,Carbon Dioxide,TON
+37191,0.0321801,Nitrous Oxide,TON
+37181,11.700606,Ethyl Benzene,LB
+37181,17.37272,Propionaldehyde,LB
+37181,0.6874354,Benz[a]Anthracene,LB
+37181,32.22092,Benzene,LB
+37181,3.919684,Phenanthrene,LB
+37173,1.147432e-05,Chromium (VI),LB
+37173,0.03967834,"Benzo[g,h,i,]Perylene",LB
+37173,0.009066196,Benz[a]Anthracene,LB
+37173,0.006443876,Manganese,LB
+37173,0.12975646,Phenanthrene,LB
+37113,6.810946,Methane,TON
+37113,0.9727681,Elemental Carbon portion of PM2.5-PRI,TON
+37113,8.559872,Ammonia,TON
+37113,0.01135394,Nitrate portion of PM2.5-PRI,TON
+37113,3.081688,Benzo[k]Fluoranthene,LB
+37113,3.799246,Benzo[a]Pyrene,LB
+37101,0.0007712464,Chromium (VI),LB
+37101,0.3081404,Nickel,LB
+37101,16.82409,Phenanthrene,LB
+37101,169.32966,Naphthalene,LB
+37101,6.355472,PM25-Primary from certain diesel engines,TON
+37101,4.221523,Elemental Carbon portion of PM2.5-PRI,TON
+37105,111.95036,Xylenes (Mixed Isomers),LB
+37105,0.019665932,Benz[a]Anthracene,LB
+37103,2.92484,Carbon Dioxide,TON
+37103,5.061507e-05,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.0001727809,PM10 Primary (Filt + Cond),TON
+37103,6.129026e-05,Sulfur Dioxide,TON
+37103,0.06575826,Ethyl Benzene,LB
+37103,0.00010392592,Anthracene,LB
+37103,5.205512e-05,Benz[a]Anthracene,LB
+37103,0.03440752,Acetaldehyde,LB
+37097,310.0456,"1,3-Butadiene",LB
+37097,1724.4952,Hexane,LB
+37097,0.7009092,Benzo[b]Fluoranthene,LB
+37097,0.6905592,Benz[a]Anthracene,LB
+37097,0.2461469,Elemental Carbon portion of PM2.5-PRI,TON
+37097,4.217061,PM10 Primary (Filt + Cond),TON
+37097,0.980925,Sulfur Dioxide,TON
+37093,17.013268,Acrolein,LB
+37093,5.302938,Hexane,LB
+37093,1.855951,Fluoranthene,LB
+37093,1.2200696,Acenaphthylene,LB
+37093,0.3650666,Chrysene,LB
+37093,210.8674,Formaldehyde,LB
+37093,20.23702,Benzene,LB
+37093,0.9652382,PM25-Primary from certain diesel engines,TON
+37093,0.003328956,Nitrate portion of PM2.5-PRI,TON
+37093,0.1277805,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,7.809578,"1,3-Butadiene",LB
+37093,0.156152,"Benzo[g,h,i,]Perylene",LB
+37093,59.08558,Formaldehyde,LB
+37093,0.04479008,Benz[a]Anthracene,LB
+37093,0.011547044,Arsenic,LB
+37093,982.9405,Carbon Dioxide,TON
+37093,0.000170048,Nitrate portion of PM2.5-PRI,TON
+37087,0.6999678,Toluene,LB
+37087,0.0005346216,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.05983666,Acenaphthylene,LB
+37087,0.02387776,Benz[a]Anthracene,LB
+37087,0.009829855,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.02682306,PM2.5 Primary (Filt + Cond),TON
+37087,0.0009109173,Sulfur Dioxide,TON
+37087,0.06232244,Volatile Organic Compounds,TON
+37085,10017.98,Carbon Dioxide,TON
+37085,0.6471651,Organic Carbon portion of PM2.5-PRI,TON
+37085,13.9649,Hexane,LB
+37085,36.20902,Xylenes (Mixed Isomers),LB
+37081,0.000204368,Chromium (VI),LB
+37081,1.3055634,Benz[a]Anthracene,LB
+37081,0.00019050526,Mercury,LB
+37081,9.2872,Phenanthrene,LB
+37081,5.631546,Fluorene,LB
+37081,12195.27,Carbon Dioxide,TON
+37077,0.002683236,Manganese,LB
+37077,4.754403e-05,Nitrate portion of PM2.5-PRI,TON
+37077,4.187974e-06,Chromium (VI),LB
+37067,0.07665888,Benzo[b]Fluoranthene,LB
+37067,658.9634,Formaldehyde,LB
+37067,16.476762,"2,2,4-Trimethylpentane",LB
+37067,1.405045,PM10-Primary from certain diesel engines,TON
+37065,1.479921,Styrene,LB
+37065,3.34586,"1,3-Butadiene",LB
+37065,8.15034,Acrolein,LB
+37065,2.589622,Hexane,LB
+37065,0.376469,Anthracene,LB
+37065,6.854458,Xylenes (Mixed Isomers),LB
+37065,0.0815591,Benzo[a]Pyrene,LB
+37065,2.57025,"2,2,4-Trimethylpentane",LB
+37065,0.005917141,Sulfate Portion of PM2.5-PRI,TON
+37065,0.001206652,Nitrate portion of PM2.5-PRI,TON
+37065,0.1574386,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,2125.21,Xylenes (Mixed Isomers),LB
+37065,0.3667088,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.2681734,Chrysene,LB
+37061,0.00017529802,Chrysene,LB
+37061,0.0003328236,Benzo[a]Pyrene,LB
+37061,0.2921426,"2,2,4-Trimethylpentane",LB
+37061,5.58551e-05,Manganese,LB
+37061,0.0002118372,Nitrous Oxide,TON
+37061,0.0005562514,PM10 Primary (Filt + Cond),TON
+37061,0.0003386326,PM2.5 Primary (Filt + Cond),TON
+37057,0.0009168204,Mercury,LB
+37057,44.55648,Phenanthrene,LB
+37057,1.199471,Methane,TON
+37057,4.375585,PM10-Primary from certain diesel engines,TON
+37057,0.07111185,Nitrous Oxide,TON
+37057,169.40162,"1,3-Butadiene",LB
+37057,401.6586,Acrolein,LB
+37055,21.7941,Acrolein,LB
+37055,0.0009423126,Chromium (VI),LB
+37055,1133.7042,Benzene,LB
+37055,0.4042918,Manganese,LB
+37055,381.369,Acetaldehyde,LB
+37055,0.7395161,Methane,TON
+37039,0.012671224,Acenaphthene,LB
+37039,0.02744328,Fluorene,LB
+37039,0.12835426,Ethyl Benzene,LB
+37039,0.09717026,Hexane,LB
+37039,0.00934728,Benz[a]Anthracene,LB
+37041,2.200492,Ethyl Benzene,LB
+37041,5.19997,Acrolein,LB
+37041,0.1752359,Anthracene,LB
+37041,3.474946,Propionaldehyde,LB
+37041,0.2812492,Fluoranthene,LB
+37041,0.3659188,Fluorene,LB
+37041,0.04886307,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.08010816,PM10 Primary (Filt + Cond),TON
+37167,24.99418,Toluene,LB
+37167,0.005069136,Anthracene,LB
+37167,0.0016247864,Benz[a]Anthracene,LB
+37167,0.005935494,Acenaphthene,LB
+37167,0.03221486,Phenanthrene,LB
+37167,0.012022774,Fluorene,LB
+37167,7.264255e-06,Nitrate portion of PM2.5-PRI,TON
+37165,0.0016745714,Chrysene,LB
+37165,0.2283366,"2,2,4-Trimethylpentane",LB
+37165,0.02015274,Acenaphthene,LB
+37165,0.00150392,PM10-Primary from certain diesel engines,TON
+37165,0.0006460156,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.2622688,Ethyl Benzene,LB
+37165,7.32389e-05,"Benzo[g,h,i,]Perylene",LB
+37163,0.0320307,Ethyl Benzene,LB
+37163,0.2127954,Acrolein,LB
+37163,0.0006061788,Pyrene,LB
+37163,5.292596e-05,Benz[a]Anthracene,LB
+37163,85.46732,Carbon Dioxide,TON
+37163,5.877021e-05,Sulfate Portion of PM2.5-PRI,TON
+37151,2.50532,PM10-Primary from certain diesel engines,TON
+37151,0.3488425,Ammonia,TON
+37151,3.695205,PM10 Primary (Filt + Cond),TON
+37151,26.94658,Hexane,LB
+37151,49.6746,Propionaldehyde,LB
+37151,0.19110326,Benzo[b]Fluoranthene,LB
+37137,0.01501834,Pyrene,LB
+37137,0.013160482,Fluoranthene,LB
+37137,0.00241616,Benzo[k]Fluoranthene,LB
+37137,0.0411696,Acenaphthylene,LB
+37137,5.014656e-05,Nickel,LB
+37137,0.0003410099,Sulfur Dioxide,TON
+37133,1.7172474,Hexane,LB
+37133,0.05351042,Methane,TON
+37133,0.05387374,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.7696302,Benz[a]Anthracene,LB
+37133,136.07928,Acetaldehyde,LB
+37133,22.56486,Toluene,LB
+37133,16.235708,Propionaldehyde,LB
+37133,0.00960774,"Dibenzo[a,h]Anthracene",LB
+37131,778.7726,Ethyl Benzene,LB
+37131,22.62566,Volatile Organic Compounds,TON
+37115,0.1429988,Toluene,LB
+37115,1.4618144e-05,"Benzo[g,h,i,]Perylene",LB
+37115,0.6218366,Hexane,LB
+37115,0.1982018,Fluoranthene,LB
+37115,258.0448,Carbon Dioxide,TON
+37115,0.06970636,PM10-Primary from certain diesel engines,TON
+37115,0.0003630991,Nitrate portion of PM2.5-PRI,TON
+37115,0.06813312,PM2.5 Primary (Filt + Cond),TON
+37115,0.002609226,Sulfate Portion of PM2.5-PRI,TON
+37115,0.1568614,Acenaphthylene,LB
+37115,0.00011010898,Mercury,LB
+37115,32.02268,Hexane,LB
+37115,422.297,Carbon Dioxide,TON
+37103,0.2010416,Ethyl Benzene,LB
+37103,0.04156686,Fluorene,LB
+37103,0.002417305,Ammonia,TON
+37103,0.04086669,PM10 Primary (Filt + Cond),TON
+37099,0.4304238,Fluorene,LB
+37099,0.08769398,PM2.5 Primary (Filt + Cond),TON
+37099,0.02927385,Sulfur Dioxide,TON
+37095,0.0003224708,Organic Carbon portion of PM2.5-PRI,TON
+37095,7.441195e-05,Sulfur Dioxide,TON
+37077,2.108166e-05,Mercury,LB
+37077,0.007413034,Sulfur Dioxide,TON
+37075,0.003866656,Arsenic,LB
+37075,0.0499656,Methane,TON
+37075,0.2322152,PM10 Primary (Filt + Cond),TON
+37075,2.279228,"1,3-Butadiene",LB
+37075,1.849209e-05,Mercury,LB
+37075,0.1414278,Manganese,LB
+37065,6.644464,Ethyl Benzene,LB
+37065,10.432256,Propionaldehyde,LB
+37065,1.11985,Pyrene,LB
+37065,0.002110544,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,1.0770566,Acenaphthylene,LB
+37065,21.81764,Naphthalene,LB
+37065,1446.844,Carbon Dioxide,TON
+37065,0.1490588,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.02093804,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.003330192,Acetaldehyde,LB
+37065,4.321427e-06,Organic Carbon portion of PM2.5-PRI,TON
+37065,2.28281e-06,Sulfur Dioxide,TON
+37065,0.00019071452,Acrolein,LB
+37061,1.6057504,Styrene,LB
+37061,0.0445475,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.05235632,Nitrous Oxide,TON
+37061,0.0001350304,Nitrate portion of PM2.5-PRI,TON
+37061,0.02460719,Organic Carbon portion of PM2.5-PRI,TON
+37053,242.8366,Ethyl Benzene,LB
+37053,59.2728,"1,3-Butadiene",LB
+37053,0.6119502,Fluoranthene,LB
+37053,0.8524358,Fluorene,LB
+37053,0.004722708,Sulfate Portion of PM2.5-PRI,TON
+37051,0.008482318,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.11165628,Benzo[a]Pyrene,LB
+37051,0.07602574,Manganese,LB
+37051,65.20634,Acetaldehyde,LB
+37051,0.06416796,Ammonia,TON
+37051,0.1622223,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.8117426,Volatile Organic Compounds,TON
+37049,0.00011240322,Acenaphthylene,LB
+37049,5.692334e-07,"Dibenzo[a,h]Anthracene",LB
+37049,1.2233702e-05,Manganese,LB
+37049,2.454012e-05,Acenaphthene,LB
+37049,0.001276352,Naphthalene,LB
+37049,7.828519e-08,Nitrate portion of PM2.5-PRI,TON
+37049,0.001351817,Nitrogen Oxides,TON
+37049,2.870906e-05,Sulfur Dioxide,TON
+37049,0.0005426152,Acrolein,LB
+37049,0.02294828,Hexane,LB
+37049,0.00033221,Propionaldehyde,LB
+37049,3.81768e-05,Fluoranthene,LB
+37049,1885.3964,Xylenes (Mixed Isomers),LB
+37049,0.1193549,Benzo[b]Fluoranthene,LB
+37049,0.5829386,Fluoranthene,LB
+37049,1.8118444,Acenaphthylene,LB
+37049,0.1659331,Benzo[a]Pyrene,LB
+37049,2.162356,Phenanthrene,LB
+37049,0.09148079,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.2509382,PM10 Primary (Filt + Cond),TON
+37049,0.005004896,Sulfate Portion of PM2.5-PRI,TON
+37173,0.4288044,Nickel,LB
+37173,12.065028,Fluorene,LB
+37173,5.317717,Ammonia,TON
+37173,4.489543,PM10 Primary (Filt + Cond),TON
+37173,2.325724,PM2.5 Primary (Filt + Cond),TON
+37173,0.0601486,Sulfate Portion of PM2.5-PRI,TON
+37173,1.6349262,Benzo[b]Fluoranthene,LB
+37173,8.682756,Fluoranthene,LB
+37173,3938.624,"2,2,4-Trimethylpentane",LB
+37173,1.65611,Benz[a]Anthracene,LB
+37169,1.6420398,"1,3-Butadiene",LB
+37169,0.006686136,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.004001626,Nitrous Oxide,TON
+37169,0.007029431,PM2.5 Primary (Filt + Cond),TON
+37161,18.083404,"1,3-Butadiene",LB
+37161,0.0002758218,Chromium (VI),LB
+37161,1.0069356,Benz[a]Anthracene,LB
+37161,20.51895,Carbon Monoxide,TON
+37161,2.410108,PM25-Primary from certain diesel engines,TON
+37155,44.18908,Ethyl Benzene,LB
+37155,0.03776918,Benzo[k]Fluoranthene,LB
+37155,1.7715288,Chrysene,LB
+37155,0.9209312,Benzo[a]Pyrene,LB
+37155,0.03766602,"Dibenzo[a,h]Anthracene",LB
+37155,15.577536,Phenanthrene,LB
+37155,8.819124,Fluorene,LB
+37155,0.5970688,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,1.2790238e-05,Chromium (VI),LB
+37163,0.010331786,Benz[a]Anthracene,LB
+37163,40.08778,Benzene,LB
+37163,1.796227,Naphthalene,LB
+37163,695.9925,Carbon Dioxide,TON
+37163,0.5217946,Volatile Organic Compounds,TON
+37161,1765.6472,Formaldehyde,LB
+37161,0.16997252,Benzo[a]Pyrene,LB
+37161,170.92468,Benzene,LB
+37161,59.20472,Ethyl Benzene,LB
+37161,10.569146,Fluorene,LB
+37161,34.26512,Nitrogen Oxides,TON
+37161,1.93542,PM10 Primary (Filt + Cond),TON
+37161,1.47516,PM2.5 Primary (Filt + Cond),TON
+37155,26.4725,"1,3-Butadiene",LB
+37155,0.9879162,Fluoranthene,LB
+37155,0.2013236,Chrysene,LB
+37155,34.8953,Naphthalene,LB
+37155,0.03769001,Nitrous Oxide,TON
+37155,0.0008595538,Nitrate portion of PM2.5-PRI,TON
+37155,23.58807,Volatile Organic Compounds,TON
+37153,2.698404,Hexane,LB
+37153,0.2831384,Benz[a]Anthracene,LB
+37153,0.3665446,Acenaphthene,LB
+37153,0.387617,PM10 Primary (Filt + Cond),TON
+37153,0.6377288,Volatile Organic Compounds,TON
+37151,0.009549608,Nitrous Oxide,TON
+37151,0.09738065,Ammonia,TON
+37151,6.084966,Styrene,LB
+37151,30.65992,Toluene,LB
+37151,0.0036951,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.002010652,Benzo[k]Fluoranthene,LB
+37151,40.88992,Benzene,LB
+37135,69.1776,"1,3-Butadiene",LB
+37135,555.1924,Xylenes (Mixed Isomers),LB
+37135,0.0008198958,Chromium (VI),LB
+37135,321.1716,Benzene,LB
+37135,8.327415,PM10-Primary from certain diesel engines,TON
+37135,12.9792,PM10 Primary (Filt + Cond),TON
+37135,0.9458913,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,22.14112,"2,2,4-Trimethylpentane",LB
+37131,1.1366,Volatile Organic Compounds,TON
+37117,5.045098,Toluene,LB
+37117,0.003678604,"Benzo[g,h,i,]Perylene",LB
+37117,0.11638944,Chrysene,LB
+37117,0.567493,Fluorene,LB
+37117,0.02456759,Methane,TON
+37117,2.548171,Carbon Monoxide,TON
+37117,0.08436399,Organic Carbon portion of PM2.5-PRI,TON
+37019,16.43977,Xylenes (Mixed Isomers),LB
+37019,0.0006117072,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.8839718,Acenaphthylene,LB
+37019,8.964418e-05,Mercury,LB
+37019,0.04068016,Nickel,LB
+37019,0.5260914,Acenaphthene,LB
+37019,1468.73,Carbon Dioxide,TON
+37019,0.0302181,Ammonia,TON
+37019,0.04427018,PM2.5 Primary (Filt + Cond),TON
+37003,0.0006962519,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.005613463,PM10 Primary (Filt + Cond),TON
+37003,0.09106068,Acrolein,LB
+37003,0.006702808,Fluoranthene,LB
+37003,1.4558292,Formaldehyde,LB
+37003,0.0002404314,Arsenic,LB
+37001,86.1395,Toluene,LB
+37001,26.11628,Hexane,LB
+37001,0.0003871022,Chromium (VI),LB
+37001,0.02537082,Benzo[k]Fluoranthene,LB
+37001,4.599108,Acenaphthylene,LB
+37001,1041.7502,Formaldehyde,LB
+37001,2.493812,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.3174678,Sulfur Dioxide,TON
+37015,0.006417153,Methane,TON
+37015,0.008042923,PM10 Primary (Filt + Cond),TON
+37015,1.5461954,Xylenes (Mixed Isomers),LB
+37015,0.004215324,"Benzo[g,h,i,]Perylene",LB
+37003,0.008359793,Nitrous Oxide,TON
+37003,1.717052e-05,Chromium (VI),LB
+37143,0.000168123,Pyrene,LB
+37143,9.244156e-05,Benzo[k]Fluoranthene,LB
+37143,0.004536806,Naphthalene,LB
+37143,12.79773,Carbon Dioxide,TON
+37143,0.0002111485,Nitrous Oxide,TON
+37143,0.000650979,Ammonia,TON
+37125,6.284187e-05,Nitrate portion of PM2.5-PRI,TON
+37125,0.008340956,Anthracene,LB
+37125,0.008021396,Benz[a]Anthracene,LB
+37125,0.02203394,Manganese,LB
+37125,0.0512814,Phenanthrene,LB
+37109,0.000985781,Nitrous Oxide,TON
+37109,0.002865261,Ammonia,TON
+37099,0.0005555254,Benz[a]Anthracene,LB
+37099,4.830203e-06,Nitrate portion of PM2.5-PRI,TON
+37099,0.03901676,Volatile Organic Compounds,TON
+37099,0.3145204,Ethyl Benzene,LB
+37099,0.05769888,Acrolein,LB
+37099,1.3377024,Toluene,LB
+37099,7.166842e-06,Chromium (VI),LB
+37013,28.71332,Benzene,LB
+37013,33.69088,Naphthalene,LB
+37013,1.26982,PM25-Primary from certain diesel engines,TON
+37013,1.710483,Volatile Organic Compounds,TON
+37013,0.9798448,Anthracene,LB
+37013,25.8403,Xylenes (Mixed Isomers),LB
+37013,0.007756042,Benzo[k]Fluoranthene,LB
+37007,0.5641486,Acrolein,LB
+37007,1.4599802e-05,Benzo[k]Fluoranthene,LB
+37007,7.581998,Formaldehyde,LB
+37007,0.6774166,Benzene,LB
+37007,0.0005206109,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.0002387121,Sulfate Portion of PM2.5-PRI,TON
+37009,0.2732948,Anthracene,LB
+37009,0.06805244,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.4821145,Volatile Organic Compounds,TON
+37003,1.5422114,"1,3-Butadiene",LB
+37003,0.005031978,Benzo[b]Fluoranthene,LB
+37003,0.001418912,Nitrous Oxide,TON
+37001,0.5398834,"1,3-Butadiene",LB
+37001,1.0995452,Toluene,LB
+37001,0.17810878,Pyrene,LB
+37001,0.004008604,Benzo[b]Fluoranthene,LB
+37001,0.1343454,Fluoranthene,LB
+37001,0.001995644,Nickel,LB
+37001,0.04476965,PM25-Primary from certain diesel engines,TON
+37001,0.06012324,PM10 Primary (Filt + Cond),TON
+37001,0.001171959,Sulfate Portion of PM2.5-PRI,TON
+37057,0.0256586,Arsenic,LB
+37057,0.0393774,Nitrous Oxide,TON
+37057,0.574448,Styrene,LB
+37057,44.51316,Toluene,LB
+37057,0.04231244,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.0342573,Fluoranthene,LB
+37057,0.019300288,Benz[a]Anthracene,LB
+37041,0.0006848894,Fluoranthene,LB
+37041,0.0003599668,Benzo[k]Fluoranthene,LB
+37041,0.0001823635,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.0004195101,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.7627192,Hexane,LB
+37007,0.787156,"2,2,4-Trimethylpentane",LB
+37007,2.010064,Benzene,LB
+37007,0.0006199584,Acenaphthene,LB
+37007,0.00719015,Ammonia,TON
+37007,0.002307793,PM2.5 Primary (Filt + Cond),TON
+37007,0.0008980508,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.003520699,Sulfur Dioxide,TON
+37003,0.89508,Styrene,LB
+37003,0.342578,Pyrene,LB
+37003,0.0008983434,"Benzo[g,h,i,]Perylene",LB
+37003,0.01036881,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.005065187,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.001860606,Sulfate Portion of PM2.5-PRI,TON
+37003,0.002524292,Arsenic,LB
+37007,2.42832,Anthracene,LB
+37007,0.03204634,"Dibenzo[a,h]Anthracene",LB
+37007,0.7478716,Arsenic,LB
+37007,4.948625,Ammonia,TON
+37007,82.95188,Nitrogen Oxides,TON
+37007,0.5643708,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,5.009196,"1,3-Butadiene",LB
+37007,0.7863476,Propionaldehyde,LB
+37007,0.05820976,Fluoranthene,LB
+37007,0.01039411,Chrysene,LB
+37007,35.20986,"2,2,4-Trimethylpentane",LB
+37007,42.2831,Benzene,LB
+37019,0.003049624,Benzo[k]Fluoranthene,LB
+37019,4.523082,"2,2,4-Trimethylpentane",LB
+37019,1.9545476,Phenanthrene,LB
+37019,6.512974,Carbon Monoxide,TON
+37019,0.0363628,Ammonia,TON
+37019,13.82061,Nitrogen Oxides,TON
+37019,0.06081878,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.02060292,Sulfur Dioxide,TON
+37013,0.0029693,Manganese,LB
+37013,0.015111318,Fluorene,LB
+37013,0.004061808,Methane,TON
+37013,8.872514e-06,Nitrate portion of PM2.5-PRI,TON
+37013,0.001857686,Benzo[b]Fluoranthene,LB
+37005,17.806378,Toluene,LB
+37005,0.004137288,Anthracene,LB
+37005,4.458444,Benzene,LB
+37005,2.127094e-05,Arsenic,LB
+37005,0.006488687,Methane,TON
+37199,0.2330588,Benzene,LB
+37199,0.007933834,Acenaphthene,LB
+37199,0.0009911534,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.01418955,Volatile Organic Compounds,TON
+37199,0.1950484,Acrolein,LB
+37199,0.1294811,Propionaldehyde,LB
+37199,0.0239054,Pyrene,LB
+37199,0.1796234,Xylenes (Mixed Isomers),LB
+37199,0.0005057642,Benzo[b]Fluoranthene,LB
+37199,2.513746,Formaldehyde,LB
+37191,0.002252884,Fluoranthene,LB
+37191,1.7605378,Acrolein,LB
+37191,0.000914731,Anthracene,LB
+37191,11.454696,Propionaldehyde,LB
+37191,0.004292446,Pyrene,LB
+37191,5.43473e-08,Chromium (VI),LB
+37191,0.00015323082,"Benzo[g,h,i,]Perylene",LB
+37191,2.58792e-06,Nickel,LB
+37191,0.0014554952,Acenaphthene,LB
+37191,2.446107,Methane,TON
+37191,0.0003146539,Sulfate Portion of PM2.5-PRI,TON
+37189,0.012106812,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.008365922,Benzo[b]Fluoranthene,LB
+37189,0.00014051024,Nickel,LB
+37189,0.0002154652,Arsenic,LB
+37189,0.01800397,PM10 Primary (Filt + Cond),TON
+37137,0.002119778,Anthracene,LB
+37137,0.0488772,Propionaldehyde,LB
+37137,0.003601492,Fluoranthene,LB
+37137,6.52306e-05,Nickel,LB
+37137,0.837096,Acetaldehyde,LB
+37137,1.133736,Carbon Monoxide,TON
+37137,20.81608,Carbon Dioxide,TON
+37137,0.0008207491,Ammonia,TON
+37137,0.002287836,PM10 Primary (Filt + Cond),TON
+37127,3.349124,Arsenic,LB
+37127,431.3158,Naphthalene,LB
+37127,3.595068,Benzo[b]Fluoranthene,LB
+37111,0.312902,Styrene,LB
+37111,1.6139144,Toluene,LB
+37111,0.0006826988,Nitrous Oxide,TON
+37111,0.00466932,Sulfate Portion of PM2.5-PRI,TON
+37111,5.178932,Styrene,LB
+37111,1.2989102,Anthracene,LB
+37111,9.163286e-05,Chromium (VI),LB
+37111,4.377322,Phenanthrene,LB
+37111,0.1719454,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,3.885134,Styrene,LB
+37119,10.14895,"1,3-Butadiene",LB
+37119,6.352656e-05,Chromium (VI),LB
+37119,0.2030938,"Benzo[g,h,i,]Perylene",LB
+37119,0.8124704,Acenaphthylene,LB
+37119,0.07637208,Benzo[a]Pyrene,LB
+37119,43.81328,Acetaldehyde,LB
+37119,62.16326,Carbon Monoxide,TON
+37119,0.000325092,Nitrate portion of PM2.5-PRI,TON
+37119,0.1422509,PM2.5 Primary (Filt + Cond),TON
+37119,0.0685389,Sulfur Dioxide,TON
+37119,2.46392,Volatile Organic Compounds,TON
+37113,1.071253,PM2.5 Primary (Filt + Cond),TON
+37113,13.503166,Xylenes (Mixed Isomers),LB
+37113,5.608076e-05,Chromium (VI),LB
+37113,0.776991,Acenaphthene,LB
+37113,1.714379,Fluorene,LB
+37113,3.400214,Styrene,LB
+37109,94.57182,"1,3-Butadiene",LB
+37109,223.9064,Acrolein,LB
+37109,153.75154,Propionaldehyde,LB
+37109,0.03867372,"Benzo[g,h,i,]Perylene",LB
+37109,0.018414422,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.009991924,Benzo[k]Fluoranthene,LB
+37109,66.88666,"2,2,4-Trimethylpentane",LB
+37109,16.35162,Fluorene,LB
+37109,1.702434,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.04247684,Nitrous Oxide,TON
+37107,2.535036,Fluoranthene,LB
+37107,0.009702994,"Dibenzo[a,h]Anthracene",LB
+37107,168.83942,Acetaldehyde,LB
+37107,2.106856,Volatile Organic Compounds,TON
+37103,0.0012471838,Nickel,LB
+37103,0.10049452,Phenanthrene,LB
+37103,0.00384258,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.007678485,Sulfur Dioxide,TON
+37103,0.133319,Pyrene,LB
+37103,0.0239181,Benzo[k]Fluoranthene,LB
+37103,0.0007616888,"Dibenzo[a,h]Anthracene",LB
+37103,0.02383454,Benz[a]Anthracene,LB
+37103,0.004102372,Nickel,LB
+37103,0.01830998,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.04789397,PM10 Primary (Filt + Cond),TON
+37095,2.949698,Styrene,LB
+37095,0.5493388,Anthracene,LB
+37095,0.013548906,Benzo[a]Pyrene,LB
+37095,0.029456,Nickel,LB
+37095,11.55116,Carbon Monoxide,TON
+37095,0.1752121,PM10-Primary from certain diesel engines,TON
+37095,0.01027326,Sulfur Dioxide,TON
+37083,4.247062,Fluoranthene,LB
+37083,0.014944424,"Dibenzo[a,h]Anthracene",LB
+37083,0.240714,Manganese,LB
+37083,0.14122874,Nickel,LB
+37083,287.067,Acetaldehyde,LB
+37083,72.04728,Naphthalene,LB
+37083,0.02280116,Nitrous Oxide,TON
+37083,34.64884,Propionaldehyde,LB
+37083,0.00023178,Chromium (VI),LB
+37083,0.14342622,Benzo[b]Fluoranthene,LB
+37083,0.019648942,"Dibenzo[a,h]Anthracene",LB
+37083,73.31106,Naphthalene,LB
+37083,0.008341159,Nitrate portion of PM2.5-PRI,TON
+37083,1.922855,PM2.5 Primary (Filt + Cond),TON
+37083,0.07433327,Sulfate Portion of PM2.5-PRI,TON
+37083,3.805293,Volatile Organic Compounds,TON
+37087,74.82898,Ethyl Benzene,LB
+37087,13.694738,"1,3-Butadiene",LB
+37087,0.0721733,Benzo[b]Fluoranthene,LB
+37087,0.01087118,Arsenic,LB
+37087,0.04883524,Sulfur Dioxide,TON
+37083,15.090548,Acrolein,LB
+37083,0.6835196,Anthracene,LB
+37083,15.998868,Propionaldehyde,LB
+37083,0.007347258,"Dibenzo[a,h]Anthracene",LB
+37083,41.45904,Naphthalene,LB
+37083,0.5305369,Methane,TON
+37083,10655.8,Carbon Dioxide,TON
+37083,0.7939417,PM10 Primary (Filt + Cond),TON
+37071,0.1911285,Nickel,LB
+37071,0.05254994,Arsenic,LB
+37071,17.777524,Phenanthrene,LB
+37071,10.296966,Fluorene,LB
+37071,37.57521,Carbon Monoxide,TON
+37071,6.467118,PM25-Primary from certain diesel engines,TON
+37071,0.1513692,Sulfate Portion of PM2.5-PRI,TON
+37071,45.11732,"1,3-Butadiene",LB
+37069,2.866354e-06,Chromium (VI),LB
+37069,0.00623937,Fluoranthene,LB
+37069,0.019467028,Acenaphthylene,LB
+37069,0.0011813784,Chrysene,LB
+37069,1.3585744,Formaldehyde,LB
+37069,0.004274422,Acenaphthene,LB
+37069,0.008658256,Fluorene,LB
+37069,0.003320115,Methane,TON
+37055,0.8334456,"1,3-Butadiene",LB
+37055,0.0009369672,Benzo[k]Fluoranthene,LB
+37055,0.04317988,Chrysene,LB
+37055,0.1933137,Fluorene,LB
+37055,0.0009275378,Nitrous Oxide,TON
+37051,59.62778,Ethyl Benzene,LB
+37051,198.02298,Hexane,LB
+37051,0.02418643,PM10 Primary (Filt + Cond),TON
+37051,3.438258,Hexane,LB
+37051,0.007572538,Pyrene,LB
+37051,0.00254907,Chrysene,LB
+37051,0.0013694628,Arsenic,LB
+37039,6.144096,Acrolein,LB
+37039,5.13552,Xylenes (Mixed Isomers),LB
+37039,0.002313562,Benzo[k]Fluoranthene,LB
+37039,0.1881241,Benz[a]Anthracene,LB
+37039,0.2563378,Acenaphthene,LB
+37039,0.5538224,Fluorene,LB
+37039,2.612064,Carbon Monoxide,TON
+37039,0.002219886,Nitrous Oxide,TON
+37041,1.317401,Nitrogen Oxides,TON
+37041,0.05425872,Anthracene,LB
+37041,0.000238246,Benzo[k]Fluoranthene,LB
+37041,1.6756812,Benzene,LB
+37041,0.000659903,Arsenic,LB
+37037,3.59595,Ethyl Benzene,LB
+37037,0.66495,"1,3-Butadiene",LB
+37037,0.005044348,Anthracene,LB
+37037,0.01004931,Pyrene,LB
+37037,5.645696e-05,Mercury,LB
+37037,0.005760344,Acenaphthene,LB
+37037,0.003893469,Nitrous Oxide,TON
+37037,0.4203958,Nitrogen Oxides,TON
+37037,0.006007343,PM2.5 Primary (Filt + Cond),TON
+37037,0.4745735,Methane,TON
+37037,0.06676198,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.7734665,PM10 Primary (Filt + Cond),TON
+37037,99.09736,"1,3-Butadiene",LB
+37037,0.9989446,Fluoranthene,LB
+37031,26.49862,Toluene,LB
+37031,3.628718,Formaldehyde,LB
+37031,0.0007515803,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.03409199,PM10 Primary (Filt + Cond),TON
+37029,1.3192728e-06,Mercury,LB
+37029,0.02384462,Fluorene,LB
+37029,0.3860788,Naphthalene,LB
+37029,0.01551282,PM25-Primary from certain diesel engines,TON
+37029,1.291533e-06,Chromium (VI),LB
+37029,0.00015156802,"Benzo[g,h,i,]Perylene",LB
+37029,0.00018878244,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.09534036,Anthracene,LB
+37029,237.9594,Xylenes (Mixed Isomers),LB
+37029,0.10090918,"Benzo[g,h,i,]Perylene",LB
+37029,0.03001608,Benz[a]Anthracene,LB
+37029,0.226278,Fluorene,LB
+37029,0.01292188,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,3.834596,Fluorene,LB
+37025,98.30124,Naphthalene,LB
+37025,44.2566,Styrene,LB
+37025,1531.322,Hexane,LB
+37025,3.15793,Pyrene,LB
+37025,0.5331872,Chrysene,LB
+37023,0.8022936,Styrene,LB
+37023,4.714798,Acrolein,LB
+37023,4.8419,Xylenes (Mixed Isomers),LB
+37023,0.002951846,"Benzo[g,h,i,]Perylene",LB
+37023,0.02466442,Manganese,LB
+37023,1.9549836e-05,Mercury,LB
+37023,0.008420092,Nickel,LB
+37023,0.4247798,Fluorene,LB
+37023,1.318877,Carbon Monoxide,TON
+37023,0.1775818,PM10-Primary from certain diesel engines,TON
+37023,0.0008655145,Nitrate portion of PM2.5-PRI,TON
+37023,0.03327753,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.001576656,Nitrous Oxide,TON
+37169,0.001754493,PM2.5 Primary (Filt + Cond),TON
+37169,2.601974e-05,"Dibenzo[a,h]Anthracene",LB
+37169,0.0005312828,Benz[a]Anthracene,LB
+37107,0.05317224,Acrolein,LB
+37107,0.001030759,Pyrene,LB
+37107,0.0009118562,Fluoranthene,LB
+37107,1.4966856,Benzene,LB
+37107,0.008665223,PM10 Primary (Filt + Cond),TON
+37107,0.0008864645,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.0002107004,Acenaphthylene,LB
+37175,2.650928e-06,Manganese,LB
+37175,0.006655176,"1,3-Butadiene",LB
+37175,0.0397631,Hexane,LB
+37175,7.922114e-06,Organic Carbon portion of PM2.5-PRI,TON
+37175,2.798933e-05,PM10 Primary (Filt + Cond),TON
+37171,0.631173,Fluoranthene,LB
+37171,727.9702,"2,2,4-Trimethylpentane",LB
+37171,0.03318916,Manganese,LB
+37171,0.02140716,Nickel,LB
+37171,2823.599,Carbon Dioxide,TON
+37171,0.0005377874,Nitrate portion of PM2.5-PRI,TON
+37161,1.2496536,Anthracene,LB
+37161,37.35692,Xylenes (Mixed Isomers),LB
+37161,1.998636,Acenaphthylene,LB
+37161,0.0002051424,Mercury,LB
+37161,1.1894918,Acenaphthene,LB
+37161,44.90734,Naphthalene,LB
+37161,1.683504,PM25-Primary from certain diesel engines,TON
+37161,2.597841,PM10 Primary (Filt + Cond),TON
+37159,0.07982692,PM2.5 Primary (Filt + Cond),TON
+37159,0.1776382,"Benzo[g,h,i,]Perylene",LB
+37159,0.6603044,Acenaphthylene,LB
+37159,0.04410192,Chrysene,LB
+37161,873.875,"1,3-Butadiene",LB
+37161,4.869268,Anthracene,LB
+37161,15209.608,Xylenes (Mixed Isomers),LB
+37161,0.007055706,Chromium (VI),LB
+37161,25.77688,Acenaphthylene,LB
+37161,2.96691,Benzo[a]Pyrene,LB
+37161,5944.436,Benzene,LB
+37161,2.182848,Manganese,LB
+37161,30.82504,Phenanthrene,LB
+37161,0.7352012,Elemental Carbon portion of PM2.5-PRI,TON
+37161,143.5419,Nitrogen Oxides,TON
+37155,575.2426,Acrolein,LB
+37155,23966.02,Hexane,LB
+37155,27.75776,Anthracene,LB
+37155,54.1668,Pyrene,LB
+37155,0.0227124,Chromium (VI),LB
+37155,9.68169,Benzo[b]Fluoranthene,LB
+37155,13.431342,Benzo[a]Pyrene,LB
+37155,23498.08,"2,2,4-Trimethylpentane",LB
+37155,2.839122,Nickel,LB
+37155,1682.638,Naphthalene,LB
+37155,17.41276,Methane,TON
+37155,2.767695,Elemental Carbon portion of PM2.5-PRI,TON
+37155,1130.077,Nitrogen Oxides,TON
+37153,5.180406,"2,2,4-Trimethylpentane",LB
+37151,29.7672,Ethyl Benzene,LB
+37151,89.486,"2,2,4-Trimethylpentane",LB
+37151,4.593682,Volatile Organic Compounds,TON
+37151,0.631148,Styrene,LB
+37151,0.6863434,Acrolein,LB
+37151,80.55254,Toluene,LB
+37151,0.03234488,"Benzo[g,h,i,]Perylene",LB
+37151,0.00872314,Benzo[b]Fluoranthene,LB
+37151,0.01030343,Sulfur Dioxide,TON
+37151,0.4500998,Volatile Organic Compounds,TON
+37007,33.02018,Carbon Monoxide,TON
+37007,0.3679396,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.08047034,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.5033796,PM2.5 Primary (Filt + Cond),TON
+37007,0.003947182,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.2685368,Benzo[a]Pyrene,LB
+37019,0.03823692,Nickel,LB
+37019,141.5922,Acetaldehyde,LB
+37019,4.148252,Phenanthrene,LB
+37011,0.0009573708,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,2.601545e-06,Nitrate portion of PM2.5-PRI,TON
+37009,0.02143385,Sulfur Dioxide,TON
+37009,5.578666,Ethyl Benzene,LB
+37009,2.112226,Phenanthrene,LB
+37009,2455.034,Carbon Dioxide,TON
+37003,0.2724076,Styrene,LB
+37003,45.32124,Toluene,LB
+37003,0.010903634,"Benzo[g,h,i,]Perylene",LB
+37003,0.003088378,Benzo[b]Fluoranthene,LB
+37003,0.05101316,Acenaphthylene,LB
+37003,10.31957,Benzene,LB
+37003,0.011202166,Acenaphthene,LB
+37003,0.001402537,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.1923229,Nitrogen Oxides,TON
+37085,0.0405251,Naphthalene,LB
+37085,0.08089528,Nitrogen Oxides,TON
+37085,0.001045739,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,7.284118e-06,Chromium (VI),LB
+37085,1.487305,Formaldehyde,LB
+37067,8.12481,Benzene,LB
+37067,0.7453965,Volatile Organic Compounds,TON
+37061,0.3546796,Propionaldehyde,LB
+37061,0.006819634,Acenaphthylene,LB
+37061,0.0013598646,Chrysene,LB
+37061,0.003381118,Benzo[a]Pyrene,LB
+37061,0.00019712274,Mercury,LB
+37061,0.1585581,Nitrogen Oxides,TON
+37061,0.002250699,Organic Carbon portion of PM2.5-PRI,TON
+37013,1.495641,Benzene,LB
+37199,0.00017584342,Benzo[k]Fluoranthene,LB
+37199,0.581982,Benzene,LB
+37199,0.04224942,Fluorene,LB
+37199,0.0002084008,Nitrous Oxide,TON
+37199,0.001246012,Sulfur Dioxide,TON
+37199,3.633004e-06,PM10 Primary (Filt + Cond),TON
+37199,2.323473e-06,PM2.5 Primary (Filt + Cond),TON
+37199,0.000575217,"1,3-Butadiene",LB
+37199,3.603972e-06,Anthracene,LB
+37199,8.606004e-05,Propionaldehyde,LB
+37193,0.0404841,"1,3-Butadiene",LB
+37193,0.001462197,Acenaphthylene,LB
+37193,0.0007292362,Manganese,LB
+37193,0.0001595692,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.002000127,Ammonia,TON
+37193,0.003098979,PM10 Primary (Filt + Cond),TON
+37193,402.6246,Acrolein,LB
+37193,468.5766,Propionaldehyde,LB
+37193,7.148628,Benzo[a]Pyrene,LB
+37193,2.912044,Manganese,LB
+37193,0.09089128,Mercury,LB
+37193,11.00315,Nitrous Oxide,TON
+37193,7.977098,PM2.5 Primary (Filt + Cond),TON
+37185,5.68574e-06,"Dibenzo[a,h]Anthracene",LB
+37185,0.004184016,Acrolein,LB
+37185,0.2390152,Benzene,LB
+37185,3.685398e-05,Manganese,LB
+37185,9.20225e-05,Nitrous Oxide,TON
+37187,0.00012598408,Benzo[k]Fluoranthene,LB
+37187,0.011552018,Chrysene,LB
+37187,15.229726,Acetaldehyde,LB
+37187,0.03894784,PM10-Primary from certain diesel engines,TON
+37187,0.00868084,Ammonia,TON
+37187,0.04661411,PM10 Primary (Filt + Cond),TON
+37187,0.03688045,PM2.5 Primary (Filt + Cond),TON
+37187,0.002225329,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.002464418,"Benzo[g,h,i,]Perylene",LB
+37187,0.0006485834,Benzo[k]Fluoranthene,LB
+37187,0.000925833,Benzo[a]Pyrene,LB
+37187,0.000639788,Benz[a]Anthracene,LB
+37187,2.360774,Benzene,LB
+37187,8.039776e-06,Mercury,LB
+37187,0.00010024926,Nickel,LB
+37187,0.6747136,Acetaldehyde,LB
+37187,0.00413147,Fluorene,LB
+37187,0.001142642,Ammonia,TON
+37187,0.03371172,Propionaldehyde,LB
+37179,0.0003156116,Mercury,LB
+37179,0.006034722,Arsenic,LB
+37179,0.0003089595,Sulfate Portion of PM2.5-PRI,TON
+37177,5.0758e-05,Propionaldehyde,LB
+37177,4.21435e-06,Pyrene,LB
+37177,9.977936e-07,Benzo[b]Fluoranthene,LB
+37177,0.002001186,Hexane,LB
+37197,0.09258839,Volatile Organic Compounds,TON
+37187,3.921134,"1,3-Butadiene",LB
+37187,3.258288,Hexane,LB
+37187,0.6665592,Acenaphthylene,LB
+37187,129.75914,Formaldehyde,LB
+37187,0.008357312,Arsenic,LB
+37187,0.3514696,PM10-Primary from certain diesel engines,TON
+37187,0.3233539,PM25-Primary from certain diesel engines,TON
+37187,0.03946066,Ammonia,TON
+37183,2.096454,"1,3-Butadiene",LB
+37183,0.016570678,Benzo[b]Fluoranthene,LB
+37183,17.831102,"2,2,4-Trimethylpentane",LB
+37183,0.03813837,Nitrous Oxide,TON
+37183,0.02282273,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.013103762,Styrene,LB
+37177,0.06161842,Toluene,LB
+37177,2.60607e-05,Benzo[k]Fluoranthene,LB
+37177,0.00013083522,Nickel,LB
+37177,4.14428e-05,Arsenic,LB
+37177,1.107385e-05,Nitrate portion of PM2.5-PRI,TON
+37023,3.878744,Ethyl Benzene,LB
+37023,0.003393034,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.1752344,Benz[a]Anthracene,LB
+37023,0.003222424,Nitrous Oxide,TON
+37023,0.02146666,Ammonia,TON
+37173,5.97886,Ethyl Benzene,LB
+37173,13.71674,Acrolein,LB
+37173,0.02901006,Benzo[b]Fluoranthene,LB
+37173,0.19302578,Chrysene,LB
+37173,4.806112,"2,2,4-Trimethylpentane",LB
+37173,19.296512,Naphthalene,LB
+37173,0.09235481,Ammonia,TON
+37173,0.1479209,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.0411305,Sulfate Portion of PM2.5-PRI,TON
+37167,4.743678,Styrene,LB
+37167,10.169884,Hexane,LB
+37167,0.016692416,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,405.5056,Formaldehyde,LB
+37167,167.6813,Acetaldehyde,LB
+37167,1.106477,Acenaphthene,LB
+37167,0.01722027,Nitrous Oxide,TON
+37167,0.1188806,Sulfur Dioxide,TON
+37139,1.1647716,"1,3-Butadiene",LB
+37139,0.008875798,"Benzo[g,h,i,]Perylene",LB
+37139,0.003334748,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.003344614,Benzo[a]Pyrene,LB
+37139,7.661784e-05,"Dibenzo[a,h]Anthracene",LB
+37139,0.017692424,Fluorene,LB
+37139,0.4535228,Naphthalene,LB
+37139,0.01507266,Methane,TON
+37139,2.761549,Carbon Monoxide,TON
+37139,0.0004837929,Ammonia,TON
+37139,0.005242104,PM10 Primary (Filt + Cond),TON
+37139,0.172034,Volatile Organic Compounds,TON
+37131,4.820826,Ethyl Benzene,LB
+37131,0.013428098,"Benzo[g,h,i,]Perylene",LB
+37131,0.005045188,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.003368818,Benzo[b]Fluoranthene,LB
+37131,0.4918888,Naphthalene,LB
+37131,0.006787785,PM2.5 Primary (Filt + Cond),TON
+37125,21.04008,Benzene,LB
+37125,1.3707278,Fluorene,LB
+37125,0.392912,PM25-Primary from certain diesel engines,TON
+37125,7.777804,Ethyl Benzene,LB
+37125,0.11760748,Benzo[a]Pyrene,LB
+37113,9.553716,Ethyl Benzene,LB
+37113,3.771412,Styrene,LB
+37113,22.0854,Acrolein,LB
+37113,1.465886,Acenaphthylene,LB
+37113,1.9098208,Fluorene,LB
+37113,0.003495879,Nitrate portion of PM2.5-PRI,TON
+37113,0.9845881,PM10 Primary (Filt + Cond),TON
+37109,0.6102786,"2,2,4-Trimethylpentane",LB
+37109,0.001618477,Arsenic,LB
+37109,0.5757672,Hexane,LB
+37109,1.9011714,Xylenes (Mixed Isomers),LB
+37109,0.0009217587,Nitrous Oxide,TON
+37109,0.0003062544,Nitrate portion of PM2.5-PRI,TON
+37109,0.1885116,PM10 Primary (Filt + Cond),TON
+37109,0.005337583,Sulfur Dioxide,TON
+37105,0.10901474,Fluoranthene,LB
+37105,0.07743032,Acenaphthylene,LB
+37105,0.7706444,Propionaldehyde,LB
+37105,1.3495232,Xylenes (Mixed Isomers),LB
+37105,0.0112154,Methane,TON
+37105,0.5115088,Carbon Monoxide,TON
+37097,0.3748462,Pyrene,LB
+37097,0.004067232,Nickel,LB
+37097,0.008811188,Methane,TON
+37097,0.0005984816,Nitrous Oxide,TON
+37097,0.000451038,Nitrate portion of PM2.5-PRI,TON
+37095,0.12917026,Xylenes (Mixed Isomers),LB
+37095,5.648376e-07,Mercury,LB
+37095,0.007612973,PM25-Primary from certain diesel engines,TON
+37095,0.0006352198,Ammonia,TON
+37089,11.49367,Styrene,LB
+37089,2343.802,Xylenes (Mixed Isomers),LB
+37089,2.384008,Acenaphthylene,LB
+37089,1.0603086,Fluorene,LB
+37089,115.1379,Carbon Monoxide,TON
+37089,0.0295277,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.03793387,Nitrous Oxide,TON
+37089,0.0005843703,Nitrate portion of PM2.5-PRI,TON
+37089,0.0569297,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,5.242204,Benzene,LB
+37079,0.18457574,Acenaphthene,LB
+37079,4.39986,Acrolein,LB
+37087,4655.696,"2,2,4-Trimethylpentane",LB
+37087,524.74,Benzene,LB
+37075,0.002897604,Arsenic,LB
+37075,9.154624,Acetaldehyde,LB
+37075,0.002315169,Elemental Carbon portion of PM2.5-PRI,TON
+37075,4.485022e-05,Nitrate portion of PM2.5-PRI,TON
+37075,0.011434814,Benzo[b]Fluoranthene,LB
+37075,77.23872,"2,2,4-Trimethylpentane",LB
+37059,0.014241696,Benzo[k]Fluoranthene,LB
+37059,0.2737,Methane,TON
+37059,23.87984,Nitrogen Oxides,TON
+37065,0.0006546025,Methane,TON
+37065,5.493764e-07,Nitrate portion of PM2.5-PRI,TON
+37065,0.0003219548,PM10 Primary (Filt + Cond),TON
+37065,0.0005187278,"Benzo[g,h,i,]Perylene",LB
+37065,0.001998452,Acenaphthylene,LB
+37065,0.00013113224,Chrysene,LB
+37059,1.2710022,Fluorene,LB
+37059,0.05507771,Elemental Carbon portion of PM2.5-PRI,TON
+37059,364.5192,Ethyl Benzene,LB
+37059,14.8433,Styrene,LB
+37059,88.44286,"1,3-Butadiene",LB
+37059,1.0431944,Pyrene,LB
+37059,0.17070296,Benzo[k]Fluoranthene,LB
+37057,883.8044,Propionaldehyde,LB
+37057,196.4507,Acenaphthylene,LB
+37057,16.420144,Benzo[a]Pyrene,LB
+37057,0.2391602,Mercury,LB
+37057,234.292,Phenanthrene,LB
+37055,0.03217066,Manganese,LB
+37055,0.003693239,Nitrous Oxide,TON
+37055,0.6848006,Volatile Organic Compounds,TON
+37055,2.145308,Ethyl Benzene,LB
+37055,0.3713016,"1,3-Butadiene",LB
+37055,0.0011753118,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,2.419026e-05,Mercury,LB
+37055,0.00350588,Acenaphthene,LB
+37055,0.002176483,Methane,TON
+37055,4.789125e-06,Nitrate portion of PM2.5-PRI,TON
+37043,2180.762,Ethyl Benzene,LB
+37043,11848.916,Toluene,LB
+37043,0.003239154,Nitrate portion of PM2.5-PRI,TON
+37043,2.362728,PM10 Primary (Filt + Cond),TON
+37043,0.2943075,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,2.073286,Formaldehyde,LB
+37033,2.822281,Carbon Monoxide,TON
+37033,1.227366e-05,Nitrate portion of PM2.5-PRI,TON
+37033,0.1546283,Volatile Organic Compounds,TON
+37025,6.603856,Acenaphthylene,LB
+37025,516.2896,Acetaldehyde,LB
+37027,3.839758,Manganese,LB
+37027,1.0068038,Nickel,LB
+37027,40.40932,Phenanthrene,LB
+37027,15.025918,Fluorene,LB
+37027,143.92794,Propionaldehyde,LB
+37027,3.587552,Benzo[a]Pyrene,LB
+37027,0.139195,Sulfate Portion of PM2.5-PRI,TON
+37023,19.253348,"1,3-Butadiene",LB
+37023,17.73261,Hexane,LB
+37023,0.2051637,Sulfur Dioxide,TON
+37179,2.752372,Styrene,LB
+37179,9.628142,"1,3-Butadiene",LB
+37179,222.6718,Xylenes (Mixed Isomers),LB
+37179,0.004402112,Nickel,LB
+37179,6.53527,Naphthalene,LB
+37179,1720.417,Carbon Dioxide,TON
+37179,0.02463139,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.6990992,Organic Carbon portion of PM2.5-PRI,TON
+37171,43.34748,Propionaldehyde,LB
+37171,0.03385522,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.13276332,Benzo[b]Fluoranthene,LB
+37171,0.018630934,Benzo[k]Fluoranthene,LB
+37171,0.03942304,Nitrous Oxide,TON
+37149,0.008643892,Benzo[a]Pyrene,LB
+37149,0.006967684,Methane,TON
+37149,0.5103393,Carbon Monoxide,TON
+37161,0.8500752,Ethyl Benzene,LB
+37161,0.03457522,Styrene,LB
+37161,0.0012590058,Anthracene,LB
+37161,1.2784076,Benzene,LB
+37161,0.0014218168,Acenaphthene,LB
+37161,0.0008249429,Organic Carbon portion of PM2.5-PRI,TON
+37161,4.412132e-05,Sulfate Portion of PM2.5-PRI,TON
+37147,2.27326e-05,Arsenic,LB
+37147,2.474825e-06,Nitrate portion of PM2.5-PRI,TON
+37147,0.05581914,Styrene,LB
+37147,8.40031,Toluene,LB
+37147,5.313858,Xylenes (Mixed Isomers),LB
+37147,0.0008715556,Benzo[a]Pyrene,LB
+37147,2.391106,"1,3-Butadiene",LB
+37147,0.4558842,Propionaldehyde,LB
+37147,0.04204554,Fluoranthene,LB
+37147,0.13123996,Acenaphthylene,LB
+37147,9.688914,Formaldehyde,LB
+37147,1.4963028,Naphthalene,LB
+37147,0.01282587,Sulfur Dioxide,TON
+37143,0.000409126,Pyrene,LB
+37143,2.407732e-08,Chromium (VI),LB
+37143,0.0010760328,Acenaphthylene,LB
+37143,0.0002353306,Acenaphthene,LB
+37143,4.465033e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.60921,Hexane,LB
+37131,24.25474,Formaldehyde,LB
+37131,0.0003396291,Nitrate portion of PM2.5-PRI,TON
+37131,0.02781278,Organic Carbon portion of PM2.5-PRI,TON
+37131,1.7293172,Toluene,LB
+37111,0.04038004,Benzo[k]Fluoranthene,LB
+37111,0.344549,Acenaphthylene,LB
+37111,0.03708316,Benz[a]Anthracene,LB
+37111,0.000397591,Mercury,LB
+37111,34.63055,Carbon Monoxide,TON
+37111,3.887158,Nitrogen Oxides,TON
+37111,0.03784416,Organic Carbon portion of PM2.5-PRI,TON
+37119,4.137548,"1,3-Butadiene",LB
+37119,0.04811494,Anthracene,LB
+37119,0.11772794,"Benzo[g,h,i,]Perylene",LB
+37119,0.0439138,Benzo[a]Pyrene,LB
+37119,0.0010149088,"Dibenzo[a,h]Anthracene",LB
+37119,31.45016,"2,2,4-Trimethylpentane",LB
+37109,1.624017e-06,Nickel,LB
+37109,0.0003735438,Arsenic,LB
+37109,0.00095771,Phenanthrene,LB
+37109,0.004348898,PM2.5 Primary (Filt + Cond),TON
+37109,0.04703782,Ethyl Benzene,LB
+37109,3.410676e-08,Chromium (VI),LB
+37109,0.0002702834,Fluoranthene,LB
+37109,0.12786422,Benz[a]Anthracene,LB
+37109,20.69796,Benzene,LB
+37109,0.01449238,Arsenic,LB
+37109,6.850182,"1,3-Butadiene",LB
+37109,11.376744,Propionaldehyde,LB
+37109,16.798676,Xylenes (Mixed Isomers),LB
+37109,24.20228,Naphthalene,LB
+37109,0.008364378,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.02337997,Ammonia,TON
+37109,573.6016,Ethyl Benzene,LB
+37109,4279.392,Toluene,LB
+37109,0.7725518,Pyrene,LB
+37109,0.004171888,"Dibenzo[a,h]Anthracene",LB
+37109,0.001806529,Mercury,LB
+37109,2.516344,Phenanthrene,LB
+37109,0.0005245661,Nitrate portion of PM2.5-PRI,TON
+37109,0.275867,PM10 Primary (Filt + Cond),TON
+37109,17.99078,Volatile Organic Compounds,TON
+37107,0.011923138,Acenaphthene,LB
+37107,0.618978,Naphthalene,LB
+37107,4.769298,Carbon Monoxide,TON
+37107,1.5922452,"1,3-Butadiene",LB
+37107,72.58078,Toluene,LB
+37107,0.002987058,Chrysene,LB
+37107,0.003011282,Benz[a]Anthracene,LB
+37097,85.87228,Toluene,LB
+37097,10.684172,Fluoranthene,LB
+37097,2.067708,Chrysene,LB
+37097,1288.3702,Formaldehyde,LB
+37097,32.027,"2,2,4-Trimethylpentane",LB
+37097,37.066,Carbon Monoxide,TON
+37097,6.75187,PM10-Primary from certain diesel engines,TON
+37097,0.1793541,Sulfate Portion of PM2.5-PRI,TON
+37099,36.27744,Acrolein,LB
+37099,53.56814,Xylenes (Mixed Isomers),LB
+37099,0.01838912,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.01026104,Benzo[k]Fluoranthene,LB
+37099,15.061764,"2,2,4-Trimethylpentane",LB
+37099,210.6666,Acetaldehyde,LB
+37137,0.07480289,Ammonia,TON
+37137,0.08131302,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.4180356,Acenaphthylene,LB
+37137,102.49016,Formaldehyde,LB
+37137,2.874748,"2,2,4-Trimethylpentane",LB
+37137,8.948112,Toluene,LB
+37137,2.567488,Hexane,LB
+37123,0.00015385346,Mercury,LB
+37123,0.111352,Nickel,LB
+37123,0.1956028,Methane,TON
+37123,4494.064,Carbon Dioxide,TON
+37123,741.8966,Formaldehyde,LB
+37123,4.435391,Volatile Organic Compounds,TON
+37123,47.2585,Toluene,LB
+37123,0.11312596,Pyrene,LB
+37123,2.308082,Benzene,LB
+37123,0.002579016,Arsenic,LB
+37123,0.004370789,PM25-Primary from certain diesel engines,TON
+37123,0.0002374634,Nitrous Oxide,TON
+37123,0.01237946,PM10 Primary (Filt + Cond),TON
+37115,6.15266e-05,Mercury,LB
+37115,99.22634,Acetaldehyde,LB
+37115,1.515022,Fluorene,LB
+37115,2524.852,Carbon Dioxide,TON
+37115,0.5752768,PM10-Primary from certain diesel engines,TON
+37115,0.007708718,Nitrous Oxide,TON
+37115,0.02164111,Sulfate Portion of PM2.5-PRI,TON
+37113,0.004082478,Acrolein,LB
+37113,0.4536552,Xylenes (Mixed Isomers),LB
+37113,0.2243624,Benzene,LB
+37113,6.415208e-06,Nickel,LB
+37113,0.0001504364,Methane,TON
+37107,9.836964,Ethyl Benzene,LB
+37107,23.215,Acrolein,LB
+37107,7.769978e-05,Chromium (VI),LB
+37107,0.0453642,Manganese,LB
+37107,0.4535697,PM10 Primary (Filt + Cond),TON
+37107,0.01866176,Sulfur Dioxide,TON
+37105,0.006482872,Sulfate Portion of PM2.5-PRI,TON
+37105,0.19839482,Anthracene,LB
+37105,0.0016816026,"Benzo[g,h,i,]Perylene",LB
+37105,2.586654,Carbon Monoxide,TON
+37097,4.47425,Pyrene,LB
+37097,36.36926,Xylenes (Mixed Isomers),LB
+37097,0.013174992,Benzo[k]Fluoranthene,LB
+37101,16115.47,Xylenes (Mixed Isomers),LB
+37099,7274.888,Xylenes (Mixed Isomers),LB
+37099,0.5984588,Nickel,LB
+37099,0.9176586,Arsenic,LB
+37099,0.005607813,Nitrate portion of PM2.5-PRI,TON
+37099,1.388564,Sulfur Dioxide,TON
+37093,219.6124,Formaldehyde,LB
+37093,0.4541142,Benz[a]Anthracene,LB
+37093,1.337576,Fluorene,LB
+37093,0.002459714,Nitrate portion of PM2.5-PRI,TON
+37093,19.84379,Nitrogen Oxides,TON
+37093,0.898342,PM2.5 Primary (Filt + Cond),TON
+37093,17.581288,Toluene,LB
+37091,16.371522,Xylenes (Mixed Isomers),LB
+37091,13.048956,"2,2,4-Trimethylpentane",LB
+37085,0.4155458,Toluene,LB
+37085,0.4938344,Xylenes (Mixed Isomers),LB
+37085,4.530002e-08,Chromium (VI),LB
+37085,0.001838922,Fluoranthene,LB
+37085,0.002547496,Acenaphthylene,LB
+37085,2.601155e-06,Nitrate portion of PM2.5-PRI,TON
+37079,0.11076372,Benzene,LB
+37079,0.000956877,Manganese,LB
+37079,0.007030772,Nitrous Oxide,TON
+37079,3.797982e-05,Sulfate Portion of PM2.5-PRI,TON
+37081,35.56912,Styrene,LB
+37081,0.0687424,Benzo[k]Fluoranthene,LB
+37081,3261.55,Formaldehyde,LB
+37081,0.06800872,"Dibenzo[a,h]Anthracene",LB
+37081,280.1334,Benzene,LB
+37081,2.858524,Methane,TON
+37081,19.63393,PM10 Primary (Filt + Cond),TON
+37081,16.18032,Volatile Organic Compounds,TON
+37081,29.34956,Hexane,LB
+37081,0.6131004,Propionaldehyde,LB
+37081,73.2286,Xylenes (Mixed Isomers),LB
+37081,0.03511846,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.02021538,Benzo[b]Fluoranthene,LB
+37081,0.0526194,Fluoranthene,LB
+37081,0.005871034,Arsenic,LB
+37081,0.18651634,Phenanthrene,LB
+37081,0.04888801,Ammonia,TON
+37081,0.7702106,Styrene,LB
+37079,143.2291,Styrene,LB
+37079,12924.492,Xylenes (Mixed Isomers),LB
+37079,1897.0528,Formaldehyde,LB
+37079,1.545701,Benz[a]Anthracene,LB
+37079,0.4183166,Nickel,LB
+37079,63066.16,Carbon Dioxide,TON
+37079,1.031825,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.002214482,Acenaphthene,LB
+37077,0.012425388,Phenanthrene,LB
+37077,0.03359517,Volatile Organic Compounds,TON
+37077,1.7694898e-07,Chromium (VI),LB
+37077,0.009313788,"Benzo[g,h,i,]Perylene",LB
+37077,0.010195196,Acenaphthylene,LB
+37077,8.028654e-05,"Dibenzo[a,h]Anthracene",LB
+37077,0.0016735836,Benz[a]Anthracene,LB
+37069,4.931712,Styrene,LB
+37069,1.1657784,Acenaphthene,LB
+37069,0.8603554,"1,3-Butadiene",LB
+37069,2.487752,Xylenes (Mixed Isomers),LB
+37069,9.275482e-06,Chromium (VI),LB
+37069,0.02028338,Methane,TON
+37061,14.514238,"1,3-Butadiene",LB
+37061,10.605352,Hexane,LB
+37061,3.17214,Fluorene,LB
+37061,0.09597076,Methane,TON
+37061,7089.551,Carbon Dioxide,TON
+37055,5.796204e-06,Benzo[a]Pyrene,LB
+37055,6.915444e-05,Phenanthrene,LB
+37055,0.000472634,Nitrogen Oxides,TON
+37055,2.398362e-06,Sulfur Dioxide,TON
+37055,3.962396e-08,Chromium (VI),LB
+37055,0.0002859724,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.0001546085,Chrysene,LB
+37055,6.562244e-06,"Dibenzo[a,h]Anthracene",LB
+37055,3.972464e-07,Mercury,LB
+37055,4.953414e-06,Nickel,LB
+37055,0.01238171,Nitrogen Oxides,TON
+37055,5.855902e-05,Sulfur Dioxide,TON
+37049,5.860868e-06,"Benzo[g,h,i,]Perylene",LB
+37049,1.196833e-06,Benz[a]Anthracene,LB
+37049,0.0007210538,Acetaldehyde,LB
+37049,2.308845e-06,PM2.5 Primary (Filt + Cond),TON
+37049,7.934528e-07,Sulfur Dioxide,TON
+37045,7.303111,PM10 Primary (Filt + Cond),TON
+37045,43.58938,Hexane,LB
+37045,0.03442232,"Benzo[g,h,i,]Perylene",LB
+37045,6.458792,Fluoranthene,LB
+37045,135.62116,Benzene,LB
+37045,13.947296,Phenanthrene,LB
+37045,4.370155,PM25-Primary from certain diesel engines,TON
+37045,0.7982878,Ammonia,TON
+37039,15.533036,Acrolein,LB
+37039,0.7341302,Anthracene,LB
+37039,2.107558,Pyrene,LB
+37039,5.248238e-05,Chromium (VI),LB
+37039,0.009432936,"Benzo[g,h,i,]Perylene",LB
+37039,0.011779472,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.0601303,Manganese,LB
+37039,0.008315456,Arsenic,LB
+37039,5.573069,Carbon Monoxide,TON
+37045,0.011668816,"Benzo[g,h,i,]Perylene",LB
+37045,0.014636856,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.007851806,"Dibenzo[a,h]Anthracene",LB
+37045,0.06233482,Manganese,LB
+37045,0.02910432,Nickel,LB
+37045,1.7792676,Fluorene,LB
+37045,27.05644,Naphthalene,LB
+37045,0.0954119,Methane,TON
+37045,0.1155078,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.2849431,Carbon Monoxide,TON
+37033,0.04423915,PM10-Primary from certain diesel engines,TON
+37033,0.002895427,Ammonia,TON
+37033,0.0001052233,Nitrate portion of PM2.5-PRI,TON
+37033,0.2848334,Ethyl Benzene,LB
+37033,0.12289308,Styrene,LB
+37033,0.577795,Toluene,LB
+37033,46.51988,Toluene,LB
+37033,43.84694,Xylenes (Mixed Isomers),LB
+37033,752.494,Formaldehyde,LB
+37033,0.0019068838,"Dibenzo[a,h]Anthracene",LB
+37033,84.63088,Naphthalene,LB
+37033,3606.52,Carbon Dioxide,TON
+37033,0.1226063,Ammonia,TON
+37033,14.25051,Nitrogen Oxides,TON
+37031,1.7083434e-05,"Benzo[g,h,i,]Perylene",LB
+37031,6.418302e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,4.690966e-06,Benzo[b]Fluoranthene,LB
+37031,0.005194158,Formaldehyde,LB
+37031,1.473123e-07,"Dibenzo[a,h]Anthracene",LB
+37031,1.608198e-05,Acenaphthene,LB
+37031,3.257462e-05,Fluorene,LB
+37031,1.992762e-08,Nitrate portion of PM2.5-PRI,TON
+37195,0.001973008,"Dibenzo[a,h]Anthracene",LB
+37195,6.96686,Naphthalene,LB
+37195,0.04346128,Methane,TON
+37195,182.71446,Acetaldehyde,LB
+37195,0.144696,Methane,TON
+37195,1.246661,Elemental Carbon portion of PM2.5-PRI,TON
+37195,43.67701,Nitrogen Oxides,TON
+37189,0.4174946,Propionaldehyde,LB
+37189,0.5129764,Xylenes (Mixed Isomers),LB
+37189,0.0002140684,"Dibenzo[a,h]Anthracene",LB
+37189,0.04543924,Volatile Organic Compounds,TON
+37183,1.828618,Methane,TON
+37183,3560.18,Ethyl Benzene,LB
+37183,77.12178,Styrene,LB
+37021,23.87542,Styrene,LB
+37021,96.7391,Propionaldehyde,LB
+37021,0.0006667432,Chromium (VI),LB
+37021,13.967718,Fluoranthene,LB
+37021,1.4196392,Benzo[a]Pyrene,LB
+37021,5.616208,Acenaphthene,LB
+37021,2.032165,Methane,TON
+37021,7.633505,PM25-Primary from certain diesel engines,TON
+37021,4.263057,Elemental Carbon portion of PM2.5-PRI,TON
+37021,1.030253,Ammonia,TON
+37021,185.0443,Nitrogen Oxides,TON
+37017,4.183076,Fluorene,LB
+37017,0.08407599,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.646514,PM2.5 Primary (Filt + Cond),TON
+37017,0.04019915,Sulfur Dioxide,TON
+37017,43.09354,Xylenes (Mixed Isomers),LB
+37015,0.209654,Pyrene,LB
+37015,1.817592,Benzene,LB
+37015,0.05308341,PM25-Primary from certain diesel engines,TON
+37015,0.001845145,Sulfur Dioxide,TON
+37015,4.649826,Acrolein,LB
+37015,1.4138094,Hexane,LB
+37015,0.4607218,Pyrene,LB
+37015,3.062058,Xylenes (Mixed Isomers),LB
+37015,0.0017197396,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.3598872,Fluoranthene,LB
+37015,1.3330048,"2,2,4-Trimethylpentane",LB
+37015,0.08998644,Benz[a]Anthracene,LB
+37015,0.08450694,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.02521172,Sulfur Dioxide,TON
+37013,4.339948,Styrene,LB
+37013,7.706484,"1,3-Butadiene",LB
+37013,3.720316,Acrolein,LB
+37013,804.3736,Xylenes (Mixed Isomers),LB
+37013,7.49822e-05,Chromium (VI),LB
+37013,43.70566,Acetaldehyde,LB
+37013,0.19591772,Acenaphthene,LB
+37013,1.0642852,Phenanthrene,LB
+37013,0.08960419,Methane,TON
+37013,0.0002169559,Nitrate portion of PM2.5-PRI,TON
+37013,0.07454362,PM2.5 Primary (Filt + Cond),TON
+37013,0.01969934,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.4948902,Hexane,LB
+37003,0.013702452,Propionaldehyde,LB
+37003,0.000209821,Benzo[b]Fluoranthene,LB
+37003,0.2067512,Acetaldehyde,LB
+37003,0.003474712,Phenanthrene,LB
+37003,0.0012923384,Fluorene,LB
+37003,9.04214e-05,Ammonia,TON
+37067,8.217268,Formaldehyde,LB
+37067,0.0003309774,"Dibenzo[a,h]Anthracene",LB
+37067,0.02966688,Phenanthrene,LB
+37067,8.690424,Carbon Monoxide,TON
+37067,0.01361818,Nitrous Oxide,TON
+37067,0.4092724,Volatile Organic Compounds,TON
+37027,0.0008533326,Acenaphthene,LB
+37027,141.5218,Carbon Dioxide,TON
+37027,0.06929241,Volatile Organic Compounds,TON
+37027,0.1300522,"1,3-Butadiene",LB
+37027,0.0014718994,Fluoranthene,LB
+37027,1.3546702,Formaldehyde,LB
+37133,0.1548772,Ammonia,TON
+37133,0.02651738,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.001914731,Sulfate Portion of PM2.5-PRI,TON
+37133,1.257385,Volatile Organic Compounds,TON
+37133,10.169672,Ethyl Benzene,LB
+37133,0.1065642,"Benzo[g,h,i,]Perylene",LB
+37133,0.04003794,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.0301464,Fluoranthene,LB
+37133,0.018043202,Benz[a]Anthracene,LB
+37069,0.0002379688,Pyrene,LB
+37069,0.0002128152,Acenaphthylene,LB
+37069,8.305858e-07,Nickel,LB
+37069,0.007803311,Nitrous Oxide,TON
+37053,1.5088492,"1,3-Butadiene",LB
+37053,1.7470532,"2,2,4-Trimethylpentane",LB
+37053,0.298914,Volatile Organic Compounds,TON
+37053,6.25574,"Benzo[g,h,i,]Perylene",LB
+37053,1.5333712,Manganese,LB
+37053,1.358996,Organic Carbon portion of PM2.5-PRI,TON
+37053,2.114202,Sulfur Dioxide,TON
+37051,0.1007097,Arsenic,LB
+37051,7.191636,Phenanthrene,LB
+37051,0.3863996,Benzo[b]Fluoranthene,LB
+37047,1.0081044e-05,Chromium (VI),LB
+37047,0.001396661,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,27.01226,Formaldehyde,LB
+37047,0.08511434,Acenaphthene,LB
+37047,3.05076,Nitrogen Oxides,TON
+37041,1.9749908,Ethyl Benzene,LB
+37041,0.2012548,Acenaphthene,LB
+37041,0.001334244,Nitrous Oxide,TON
+37041,0.0007665194,Nitrate portion of PM2.5-PRI,TON
+37031,0.007264254,Fluoranthene,LB
+37031,0.02286148,Acenaphthylene,LB
+37031,0.0012368448,Chrysene,LB
+37031,0.002712112,Manganese,LB
+37031,0.2607906,Naphthalene,LB
+37031,0.003469259,Nitrous Oxide,TON
+37031,7.632553e-05,Sulfate Portion of PM2.5-PRI,TON
+37017,50.19304,Acetaldehyde,LB
+37017,1.0184152,Phenanthrene,LB
+37017,0.01709832,Organic Carbon portion of PM2.5-PRI,TON
+37017,3.835302,Ethyl Benzene,LB
+37017,1.65217,Styrene,LB
+37017,0.3128584,Anthracene,LB
+37017,0.010740988,Benzo[a]Pyrene,LB
+37019,3.056052,Propionaldehyde,LB
+37019,0.002003998,Benzo[k]Fluoranthene,LB
+37019,0.3083756,Acenaphthylene,LB
+37019,2.512947,Nitrogen Oxides,TON
+37019,0.1700952,PM2.5 Primary (Filt + Cond),TON
+37019,0.03196025,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.008612588,Sulfate Portion of PM2.5-PRI,TON
+37015,0.05422262,Benzo[a]Pyrene,LB
+37015,0.07512262,PM10 Primary (Filt + Cond),TON
+37015,0.01331545,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,113.62358,Ethyl Benzene,LB
+37015,185.50442,Hexane,LB
+37015,0.2138274,Pyrene,LB
+37015,421.7054,Xylenes (Mixed Isomers),LB
+37015,0.05416554,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.0004400532,Acenaphthylene,LB
+37167,0.00017445328,Acenaphthene,LB
+37167,0.01305306,PM10 Primary (Filt + Cond),TON
+37021,18.881578,Naphthalene,LB
+37021,2.15788,Styrene,LB
+37021,13.342934,Acrolein,LB
+37021,4.322612e-05,Chromium (VI),LB
+37021,0.005365734,"Dibenzo[a,h]Anthracene",LB
+37017,0.1061966,Anthracene,LB
+37017,0.2016868,Pyrene,LB
+37017,2.269566e-05,Chromium (VI),LB
+37017,0.001663151,Elemental Carbon portion of PM2.5-PRI,TON
+37017,4.904775e-05,Nitrate portion of PM2.5-PRI,TON
+37021,7.133048,"1,3-Butadiene",LB
+37021,1.3256524,Propionaldehyde,LB
+37021,0.0008321138,"Dibenzo[a,h]Anthracene",LB
+37021,38.71142,Carbon Monoxide,TON
+37021,0.2224531,PM10 Primary (Filt + Cond),TON
+37021,0.05748749,PM2.5 Primary (Filt + Cond),TON
+37011,0.03172926,Methane,TON
+37011,0.0360834,Benzo[a]Pyrene,LB
+37011,0.0006636973,Nitrate portion of PM2.5-PRI,TON
+37081,0.015240316,Pyrene,LB
+37081,0.013499346,Fluoranthene,LB
+37081,0.02273984,Arsenic,LB
+37081,0.1553893,PM10 Primary (Filt + Cond),TON
+37081,0.01552579,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.05065932,Sulfur Dioxide,TON
+37081,0.5920609,Volatile Organic Compounds,TON
+37051,75.74588,Toluene,LB
+37043,3.819398,Toluene,LB
+37043,9.358498e-05,Mercury,LB
+37043,22.15952,Acetaldehyde,LB
+37043,0.0006776976,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.1953319,Nitrogen Oxides,TON
+37043,0.1101684,Volatile Organic Compounds,TON
+37031,0.00012090164,Mercury,LB
+37031,0.0023115,Arsenic,LB
+37031,0.0008847468,Acenaphthene,LB
+37031,0.005072176,Phenanthrene,LB
+37031,0.13296342,"1,3-Butadiene",LB
+37031,0.04618612,Naphthalene,LB
+37037,0.09642316,Acrolein,LB
+37037,1.171399e-05,Chromium (VI),LB
+37037,1.1280554,"2,2,4-Trimethylpentane",LB
+37037,159.7369,Carbon Dioxide,TON
+37037,0.00983035,Ammonia,TON
+37037,0.07732579,Nitrogen Oxides,TON
+37135,0.0007086874,Mercury,LB
+37135,6.963324,Hexane,LB
+37135,15.683174,Formaldehyde,LB
+37129,16.998304,Xylenes (Mixed Isomers),LB
+37103,0.2207218,Acrolein,LB
+37103,0.002096566,Anthracene,LB
+37103,4.556172,Xylenes (Mixed Isomers),LB
+37103,5.015572,Formaldehyde,LB
+37103,0.012863626,Phenanthrene,LB
+37103,0.3389206,Nitrogen Oxides,TON
+37175,1.0029152,Manganese,LB
+37175,1112.3244,Acetaldehyde,LB
+37175,6.111538,Fluorene,LB
+37175,559.5792,Carbon Monoxide,TON
+37175,70.35968,Styrene,LB
+37175,479.1132,"1,3-Butadiene",LB
+37175,58.17336,Propionaldehyde,LB
+37167,111.91448,Acrolein,LB
+37167,9.072696,Pyrene,LB
+37167,24.53198,Acenaphthylene,LB
+37167,10.898074,Fluorene,LB
+37167,279.4524,Naphthalene,LB
+37167,2.584134,Methane,TON
+37167,0.6841324,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.008726523,Nitrate portion of PM2.5-PRI,TON
+37155,0.08064072,Benzo[k]Fluoranthene,LB
+37155,154.13112,Benzene,LB
+37155,45.09306,Acetaldehyde,LB
+37155,8.109745,Nitrogen Oxides,TON
+37155,0.07683908,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.1500291,PM2.5 Primary (Filt + Cond),TON
+37149,5.634354,"1,3-Butadiene",LB
+37149,9.152974,Propionaldehyde,LB
+37149,1.6411146,Pyrene,LB
+37149,0.5962573,Elemental Carbon portion of PM2.5-PRI,TON
+37149,21.28775,Nitrogen Oxides,TON
+37149,0.02646573,Sulfur Dioxide,TON
+37149,5.183544e-05,Chromium (VI),LB
+37149,0.3770132,Benz[a]Anthracene,LB
+37153,47.80294,Toluene,LB
+37153,0.00577746,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,3.509862,Fluoranthene,LB
+37153,755.4458,Formaldehyde,LB
+37153,0.6937809,PM10-Primary from certain diesel engines,TON
+37153,0.6382838,PM25-Primary from certain diesel engines,TON
+37153,0.01278489,Nitrous Oxide,TON
+37153,0.05588427,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,4.532284,Volatile Organic Compounds,TON
+37143,0.455644,Propionaldehyde,LB
+37143,0.7424798,Xylenes (Mixed Isomers),LB
+37143,3.273662e-06,Mercury,LB
+37143,0.000684468,Arsenic,LB
+37143,0.02408207,PM2.5 Primary (Filt + Cond),TON
+37137,2.561568,Ethyl Benzene,LB
+37137,0.2178366,Acenaphthene,LB
+37137,2797.184,Carbon Dioxide,TON
+37137,0.2963754,PM25-Primary from certain diesel engines,TON
+37137,0.06494423,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.004638307,PM2.5 Primary (Filt + Cond),TON
+37131,0.2265014,Styrene,LB
+37131,1.1012206e-05,Chromium (VI),LB
+37131,0.000200455,"Benzo[g,h,i,]Perylene",LB
+37131,0.0003219652,Benzo[b]Fluoranthene,LB
+37131,167.5095,Carbon Dioxide,TON
+37119,0.528811,Benz[a]Anthracene,LB
+37119,4.980652,Fluorene,LB
+37119,8.84014,Nitrogen Oxides,TON
+37119,0.134503,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.0017272918,Propionaldehyde,LB
+37119,0.0004797594,"Benzo[g,h,i,]Perylene",LB
+37119,0.04537103,Carbon Monoxide,TON
+37119,14.08076,Carbon Dioxide,TON
+37107,0.0016577478,Manganese,LB
+37107,1.203116e-06,Mercury,LB
+37107,0.8245166,Naphthalene,LB
+37107,0.10829412,Styrene,LB
+37107,0.4934496,Xylenes (Mixed Isomers),LB
+37107,1.4391524e-06,Chromium (VI),LB
+37107,0.00546559,Benzo[a]Pyrene,LB
+37107,0.0002226694,"Dibenzo[a,h]Anthracene",LB
+37103,0.09651664,"1,3-Butadiene",LB
+37103,0.1581699,Propionaldehyde,LB
+37103,0.0225789,Fluoranthene,LB
+37103,2.949634,Formaldehyde,LB
+37103,0.02105472,Fluorene,LB
+37103,0.3248014,Naphthalene,LB
+37103,5.818738e-05,Nitrous Oxide,TON
+37103,0.0002216459,Sulfate Portion of PM2.5-PRI,TON
+37099,5.407462,Toluene,LB
+37099,0.002454642,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.009639738,Benzo[b]Fluoranthene,LB
+37099,0.5066792,Fluoranthene,LB
+37099,2.055448,"2,2,4-Trimethylpentane",LB
+37099,8.01263,Benzene,LB
+37099,9.311982,Naphthalene,LB
+37099,0.1857231,PM2.5 Primary (Filt + Cond),TON
+37099,0.008007338,Sulfur Dioxide,TON
+37097,20.59668,Acrolein,LB
+37097,8478.302,Toluene,LB
+37097,2021.732,Hexane,LB
+37097,408.2558,Formaldehyde,LB
+37097,0.4587702,Benzo[a]Pyrene,LB
+37097,2.183778,Fluorene,LB
+37097,0.06639027,Nitrous Oxide,TON
+37097,0.8535332,Ammonia,TON
+37095,0.001766674,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.0455998,Chrysene,LB
+37095,0.00901414,Nickel,LB
+37095,0.1948164,PM25-Primary from certain diesel engines,TON
+37095,0.1137444,Nickel,LB
+37095,237.0126,"1,3-Butadiene",LB
+37095,1.470718,Anthracene,LB
+37095,0.001451306,Nitrate portion of PM2.5-PRI,TON
+37085,0.1556106,Acrolein,LB
+37085,0.00325108,Benzo[k]Fluoranthene,LB
+37085,0.0002003591,Sulfate Portion of PM2.5-PRI,TON
+37083,0.4283876,Pyrene,LB
+37083,0.11652314,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.1132886,PM2.5 Primary (Filt + Cond),TON
+37077,11.707998,Styrene,LB
+37077,30.2735,"1,3-Butadiene",LB
+37077,0.1062749,Benzo[b]Fluoranthene,LB
+37077,0.7497484,Chrysene,LB
+37077,1848.8538,Formaldehyde,LB
+37077,1.3306978,Benz[a]Anthracene,LB
+37077,2.936144,Acenaphthene,LB
+37077,12.972522,Phenanthrene,LB
+37077,6.214006,Fluorene,LB
+37077,31.51051,Carbon Monoxide,TON
+37077,0.03560648,Nitrous Oxide,TON
+37077,0.342928,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.3442108,Sulfate Portion of PM2.5-PRI,TON
+37077,8.097902,Pyrene,LB
+37077,0.0003637694,Chromium (VI),LB
+37077,0.476402,Chrysene,LB
+37077,34.9996,"2,2,4-Trimethylpentane",LB
+37077,0.3204471,Methane,TON
+37077,0.002273473,Nitrate portion of PM2.5-PRI,TON
+37071,0.002947187,Methane,TON
+37071,0.6704553,Carbon Monoxide,TON
+37071,5.312133,Carbon Dioxide,TON
+37071,0.001095894,PM2.5 Primary (Filt + Cond),TON
+37071,0.0010615816,Benzo[a]Pyrene,LB
+37071,36.29622,Volatile Organic Compounds,TON
+37071,19.924914,Acrolein,LB
+37071,0.2899544,Benzo[b]Fluoranthene,LB
+37071,0.2899544,Benzo[k]Fluoranthene,LB
+37071,0.3884406,Benzo[a]Pyrene,LB
+37071,1882.8536,"2,2,4-Trimethylpentane",LB
+37071,0.04537156,Nickel,LB
+37071,0.06957254,Arsenic,LB
+37071,228.375,Acetaldehyde,LB
+37069,1.5604462,Styrene,LB
+37069,8.746748,"1,3-Butadiene",LB
+37069,1.301737,Acrolein,LB
+37069,0.05651092,Anthracene,LB
+37069,0.004033296,Arsenic,LB
+37069,0.3596548,Phenanthrene,LB
+37069,0.13445244,Fluorene,LB
+37069,27.49334,Carbon Monoxide,TON
+37069,2.267507,Nitrogen Oxides,TON
+37069,1.335949,Volatile Organic Compounds,TON
+37067,74.21928,Ethyl Benzene,LB
+37067,105.36886,Propionaldehyde,LB
+37067,0.08727056,"Benzo[g,h,i,]Perylene",LB
+37067,0.3022094,Nickel,LB
+37061,14.957162,Naphthalene,LB
+37061,1303.116,Carbon Dioxide,TON
+37061,0.03141547,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,7.580046,Propionaldehyde,LB
+37061,0.04919922,Benzo[a]Pyrene,LB
+37061,0.002005884,"Dibenzo[a,h]Anthracene",LB
+37061,3.123264,"2,2,4-Trimethylpentane",LB
+37043,0.0030348,"1,3-Butadiene",LB
+37043,1.82294e-05,Anthracene,LB
+37043,8.952394e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,9.691622e-05,Acenaphthylene,LB
+37043,8.962846e-06,Benzo[a]Pyrene,LB
+37043,6.396098e-06,Benz[a]Anthracene,LB
+37043,0.00011567426,Phenanthrene,LB
+37043,0.1101175,Carbon Dioxide,TON
+37043,2.170986e-07,Sulfate Portion of PM2.5-PRI,TON
+37065,3.397936,Toluene,LB
+37065,0.0012804986,Chrysene,LB
+37065,0.003203871,Nitrous Oxide,TON
+37065,1.344274e-05,Nitrate portion of PM2.5-PRI,TON
+37065,0.002333168,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.0018110626,Fluorene,LB
+37111,1.492428,Carbon Monoxide,TON
+37111,0.000526062,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.02586304,Styrene,LB
+37111,1.1066986e-05,Chromium (VI),LB
+37111,1.0575948,"2,2,4-Trimethylpentane",LB
+37111,0.09134398,Nitrogen Oxides,TON
+37111,0.01125492,PM10 Primary (Filt + Cond),TON
+37111,0.06631929,Volatile Organic Compounds,TON
+37169,68.76394,Formaldehyde,LB
+37169,1.0175106,Phenanthrene,LB
+37169,45.12594,Carbon Monoxide,TON
+37169,0.01480695,Nitrous Oxide,TON
+37163,5.531666,Pyrene,LB
+37163,0.0002794454,Chromium (VI),LB
+37163,1.2589986,Benz[a]Anthracene,LB
+37163,70.94846,Naphthalene,LB
+37163,3.929472,PM10 Primary (Filt + Cond),TON
+37163,0.1974964,Sulfur Dioxide,TON
+37163,0.1541057,Sulfate Portion of PM2.5-PRI,TON
+37149,0.12353472,Anthracene,LB
+37149,2.51192,Xylenes (Mixed Isomers),LB
+37149,0.0011406774,"Dibenzo[a,h]Anthracene",LB
+37149,0.01654962,Methane,TON
+37149,0.1133589,PM10-Primary from certain diesel engines,TON
+37149,0.1450784,PM10 Primary (Filt + Cond),TON
+37149,0.004105573,Sulfur Dioxide,TON
+37149,0.476856,Fluorene,LB
+37149,0.09561659,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.3981376,Volatile Organic Compounds,TON
+37149,1.0845706e-05,Mercury,LB
+37149,0.9887498,Styrene,LB
+37145,0.006652927,Ammonia,TON
+37145,0.004764626,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.018719896,Benzo[b]Fluoranthene,LB
+37145,0.009523504,Nickel,LB
+37145,0.002396352,Arsenic,LB
+37199,3.557318,Fluorene,LB
+37199,1.835613,PM10 Primary (Filt + Cond),TON
+37199,33.61434,Propionaldehyde,LB
+37199,0.7832492,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,1821.3974,Benzene,LB
+37199,0.015338198,Mercury,LB
+37199,1.756241,Acenaphthene,LB
+37187,2.4561,Benzene,LB
+37187,1.046586,Carbon Monoxide,TON
+37187,241.6905,Carbon Dioxide,TON
+37187,0.01341024,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.8436652,Ethyl Benzene,LB
+37187,1.3751576,Xylenes (Mixed Isomers),LB
+37187,25.04784,Formaldehyde,LB
+37181,0.2747626,Propionaldehyde,LB
+37181,2.248808,Acetaldehyde,LB
+37181,0.06236686,Phenanthrene,LB
+37181,0.0364002,Fluorene,LB
+37181,0.0004453289,Sulfur Dioxide,TON
+37181,69.50178,Benzene,LB
+37181,0.02085662,Manganese,LB
+37181,0.06616568,Acenaphthene,LB
+37181,0.04515274,Nitrous Oxide,TON
+37179,946.4012,Benzene,LB
+37169,0.11889208,Xylenes (Mixed Isomers),LB
+37169,1.0639344e-05,"Benzo[g,h,i,]Perylene",LB
+37169,0.0011178632,Manganese,LB
+37169,1.0481436e-05,Mercury,LB
+37169,0.0006258768,Naphthalene,LB
+37169,0.4200328,Carbon Monoxide,TON
+37169,0.7641872,Acrolein,LB
+37169,0.254985,Hexane,LB
+37169,0.361719,Carbon Monoxide,TON
+37169,0.0003814797,Nitrous Oxide,TON
+37169,0.002380958,Sulfur Dioxide,TON
+37169,3.340314,Benz[a]Anthracene,LB
+37169,0.997395,Arsenic,LB
+37169,2.11255,Organic Carbon portion of PM2.5-PRI,TON
+37169,44553.3,Toluene,LB
+37169,29204.92,Xylenes (Mixed Isomers),LB
+37165,4.531325e-05,Sulfate Portion of PM2.5-PRI,TON
+37165,0.07572128,Toluene,LB
+37165,0.00509817,Nitrous Oxide,TON
+37165,344.4318,Naphthalene,LB
+37165,4.056698,Methane,TON
+37165,1.7665396,Chrysene,LB
+37165,2094.376,Formaldehyde,LB
+37165,4618.25,"2,2,4-Trimethylpentane",LB
+37165,1.518815,Manganese,LB
+37155,0.04209362,Nickel,LB
+37155,2.22163,Phenanthrene,LB
+37155,3.52265,Styrene,LB
+37155,0.674066,Anthracene,LB
+37161,13446.224,Hexane,LB
+37161,0.13066172,"Dibenzo[a,h]Anthracene",LB
+37161,17.694178,Acenaphthene,LB
+37161,1.398352,Elemental Carbon portion of PM2.5-PRI,TON
+37161,3.779968,Sulfur Dioxide,TON
+37141,3.246496,Acenaphthylene,LB
+37141,16.84324,"2,2,4-Trimethylpentane",LB
+37141,8.350886,Styrene,LB
+37141,48.0796,Toluene,LB
+37141,31.91072,Propionaldehyde,LB
+37141,50.07894,Xylenes (Mixed Isomers),LB
+37141,0.03448698,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,4.630586,Fluoranthene,LB
+37141,68.74952,Naphthalene,LB
+37141,0.3748349,Methane,TON
+37141,0.07834467,Sulfur Dioxide,TON
+37139,0.018059168,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.012884066,Chrysene,LB
+37139,0.013249584,Benz[a]Anthracene,LB
+37139,0.0001821034,Mercury,LB
+37139,0.0921119,Fluorene,LB
+37139,0.00445907,Elemental Carbon portion of PM2.5-PRI,TON
+37137,1.2272372,Acetaldehyde,LB
+37137,0.018886376,Fluorene,LB
+37137,0.01291552,PM2.5 Primary (Filt + Cond),TON
+37133,8.232762,Benzo[a]Pyrene,LB
+37133,0.1880936,"Dibenzo[a,h]Anthracene",LB
+37133,0.2289524,Mercury,LB
+37133,8125.972,Acetaldehyde,LB
+37133,47.93556,Fluorene,LB
+37133,13.52065,Nitrous Oxide,TON
+37133,0.306539,Sulfate Portion of PM2.5-PRI,TON
+37133,461.7592,Acrolein,LB
+37129,20.50214,Ethyl Benzene,LB
+37129,101.72628,Toluene,LB
+37129,75.02856,Xylenes (Mixed Isomers),LB
+37129,0.010550584,Benzo[k]Fluoranthene,LB
+37129,0.012978056,Benzo[a]Pyrene,LB
+37129,0.003036143,Elemental Carbon portion of PM2.5-PRI,TON
+37127,12.243748,Styrene,LB
+37127,84.01334,Xylenes (Mixed Isomers),LB
+37127,0.05229156,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.0281568,"Dibenzo[a,h]Anthracene",LB
+37127,26.86846,"2,2,4-Trimethylpentane",LB
+37127,0.9895053,Organic Carbon portion of PM2.5-PRI,TON
+37125,106.15108,Propionaldehyde,LB
+37125,10.694122,Pyrene,LB
+37125,127.67862,Xylenes (Mixed Isomers),LB
+37125,8.732054,Fluoranthene,LB
+37125,0.6637726,Chrysene,LB
+37125,0.007150184,"Dibenzo[a,h]Anthracene",LB
+37125,186.81338,Benzene,LB
+37125,1.063642,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.3852274,Ammonia,TON
+37125,65.5716,Ethyl Benzene,LB
+37125,28.73178,Styrene,LB
+37007,2.512924,Acrolein,LB
+37007,238.0742,Hexane,LB
+37007,0.19421364,Fluoranthene,LB
+37007,0.6049954,Acenaphthylene,LB
+37007,0.03743674,Chrysene,LB
+37007,176.82768,Benzene,LB
+37007,0.0005289354,Mercury,LB
+37007,29.35462,Acetaldehyde,LB
+37007,6.896866,Naphthalene,LB
+37077,0.01272672,Manganese,LB
+37077,0.01012579,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.03478238,Acenaphthylene,LB
+37077,7.64178,"2,2,4-Trimethylpentane",LB
+37053,0.008398988,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.004466606,Benzo[k]Fluoranthene,LB
+37053,8.997958,Formaldehyde,LB
+37053,0.004376014,Nickel,LB
+37053,0.2293078,Naphthalene,LB
+37053,615.4871,Carbon Dioxide,TON
+37053,2.987808e-05,Nitrate portion of PM2.5-PRI,TON
+37053,0.5575603,Nitrogen Oxides,TON
+37053,0.005403304,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.2897548,Volatile Organic Compounds,TON
+37029,0.4830308,Toluene,LB
+37029,0.214555,Hexane,LB
+37029,0.000312724,Fluoranthene,LB
+37029,0.0001689617,Benz[a]Anthracene,LB
+37029,0.5936406,Benzene,LB
+37029,2.121876,Acetaldehyde,LB
+37029,0.0010403744,Phenanthrene,LB
+37029,0.0002462284,Organic Carbon portion of PM2.5-PRI,TON
+37015,9.203862,Toluene,LB
+37015,3.910406,Xylenes (Mixed Isomers),LB
+37141,0.6589142,Ethyl Benzene,LB
+37141,0.006639452,"Benzo[g,h,i,]Perylene",LB
+37141,1.7768356,Formaldehyde,LB
+37141,0.002461744,Benzo[a]Pyrene,LB
+37141,1.907097,Carbon Monoxide,TON
+37141,0.001714102,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.08669858,Volatile Organic Compounds,TON
+37117,1.1283712,Hexane,LB
+37093,0.0058958,Acenaphthene,LB
+37093,6.206993,Carbon Monoxide,TON
+37091,0.10678804,Ethyl Benzene,LB
+37085,37540.74,Toluene,LB
+37085,21843.94,Xylenes (Mixed Isomers),LB
+37085,0.012490756,Chromium (VI),LB
+37085,4.296464,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,3.886256,Manganese,LB
+37085,425.542,Naphthalene,LB
+37085,4.441351,Nitrous Oxide,TON
+37085,3.796373,Sulfur Dioxide,TON
+37077,0.5741274,Phenanthrene,LB
+37077,0.1433458,PM10-Primary from certain diesel engines,TON
+37077,0.0015059384,"Dibenzo[a,h]Anthracene",LB
+37077,0.01106462,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.05451797,Ammonia,TON
+37077,3.587451,Nitrogen Oxides,TON
+37077,0.06647957,PM2.5 Primary (Filt + Cond),TON
+37077,0.01925447,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.02954608,Sulfur Dioxide,TON
+37077,1.54308,Styrene,LB
+37077,7.700572,"1,3-Butadiene",LB
+37077,1.285365,Propionaldehyde,LB
+37077,3.666104e-05,Chromium (VI),LB
+37077,0.1635124,"Benzo[g,h,i,]Perylene",LB
+37059,0.02136716,"Benzo[g,h,i,]Perylene",LB
+37059,2.653518,PM25-Primary from certain diesel engines,TON
+37059,3.770782,Acenaphthylene,LB
+37059,0.63026,Chrysene,LB
+37059,0.012797462,"Dibenzo[a,h]Anthracene",LB
+37059,1.081157,Pyrene,LB
+37059,0.14620848,Chrysene,LB
+37059,0.019987158,Manganese,LB
+37059,1.3376352,Phenanthrene,LB
+37059,12.466606,Naphthalene,LB
+37059,0.2795445,PM2.5 Primary (Filt + Cond),TON
+37057,0.02579034,Styrene,LB
+37057,0.0009099414,Anthracene,LB
+37057,0.0004659506,Benzo[a]Pyrene,LB
+37057,2.292582e-05,Manganese,LB
+37057,6.437218e-06,Arsenic,LB
+37057,0.0001106515,Elemental Carbon portion of PM2.5-PRI,TON
+37057,1.022627e-05,Sulfate Portion of PM2.5-PRI,TON
+37055,0.00561368,Benzo[a]Pyrene,LB
+37055,0.0002108376,Arsenic,LB
+37055,0.0001396337,Nitrous Oxide,TON
+37055,0.2581009,Nitrogen Oxides,TON
+37051,5.756474,Acrolein,LB
+37043,0.0007237234,Benzo[b]Fluoranthene,LB
+37043,3.358262,"2,2,4-Trimethylpentane",LB
+37043,6.08484e-05,Nickel,LB
+37043,0.1403754,Naphthalene,LB
+37043,0.002254803,Methane,TON
+37043,0.0008834082,Nitrous Oxide,TON
+37043,0.0005109655,Organic Carbon portion of PM2.5-PRI,TON
+37039,2.00573,Pyrene,LB
+37039,0.008546176,"Benzo[g,h,i,]Perylene",LB
+37039,0.2652232,Chrysene,LB
+37039,0.7081506,Acenaphthene,LB
+37039,0.1531777,Methane,TON
+37039,0.2035075,Organic Carbon portion of PM2.5-PRI,TON
+37039,1.5295416,"2,2,4-Trimethylpentane",LB
+37039,0.10155994,Benz[a]Anthracene,LB
+37039,7.302232,Naphthalene,LB
+37039,0.1582223,PM10-Primary from certain diesel engines,TON
+37039,2.286228,"1,3-Butadiene",LB
+37039,3.536868,Xylenes (Mixed Isomers),LB
+37039,0.0164128,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,6.155612e-05,"Benzo[g,h,i,]Perylene",LB
+37025,6.314948e-05,Fluoranthene,LB
+37025,0.0001939527,Acenaphthylene,LB
+37025,0.0007738212,Propionaldehyde,LB
+37171,0.03037528,"1,3-Butadiene",LB
+37171,0.0006979106,Acenaphthylene,LB
+37171,73.59498,Formaldehyde,LB
+37171,0.2615956,Benzene,LB
+37171,0.002835914,Manganese,LB
+37171,2.772366e-05,Mercury,LB
+37171,2.268965e-06,Nitrate portion of PM2.5-PRI,TON
+37167,2914.344,Toluene,LB
+37167,17.396266,Propionaldehyde,LB
+37167,0.7611372,"Benzo[g,h,i,]Perylene",LB
+37167,0.2859594,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.224241,Benzo[k]Fluoranthene,LB
+37167,0.005964264,Mercury,LB
+37161,1.1737962e-05,Styrene,LB
+37161,0.006200002,Carbon Dioxide,TON
+37161,2.598022e-05,Nitrogen Oxides,TON
+37141,0.6209269,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.008769697,Nitrate portion of PM2.5-PRI,TON
+37141,149.8094,Nitrogen Oxides,TON
+37141,779.8478,"1,3-Butadiene",LB
+37141,7.636286,Fluoranthene,LB
+37141,2.68735,Benzo[a]Pyrene,LB
+37127,0.00016342992,Chromium (VI),LB
+37127,52.7532,Benzene,LB
+37127,0.0294088,Arsenic,LB
+37127,1.617364,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.01294178,Nitrous Oxide,TON
+37127,0.00789242,Nitrate portion of PM2.5-PRI,TON
+37121,0.007298948,Benzo[b]Fluoranthene,LB
+37121,0.0244821,Benzo[a]Pyrene,LB
+37121,0.0009966864,"Dibenzo[a,h]Anthracene",LB
+37121,0.2667436,Fluorene,LB
+37121,0.08367609,PM25-Primary from certain diesel engines,TON
+37121,0.03526944,Elemental Carbon portion of PM2.5-PRI,TON
+37121,1.386727,Nitrogen Oxides,TON
+37121,0.1090014,PM10 Primary (Filt + Cond),TON
+37121,0.01410937,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.22774,Volatile Organic Compounds,TON
+37111,7.362324e-05,Manganese,LB
+37111,0.02169008,Naphthalene,LB
+37111,0.2084442,Carbon Monoxide,TON
+37111,11.37059,Carbon Dioxide,TON
+37111,1.397985e-06,Nitrate portion of PM2.5-PRI,TON
+37111,0.009631694,Styrene,LB
+37111,1.1590538,Toluene,LB
+37111,0.0007476482,Pyrene,LB
+37111,0.001911954,Acenaphthylene,LB
+37113,1.7407534e-05,Mercury,LB
+37113,0.6620242,"1,3-Butadiene",LB
+37113,0.0902394,Propionaldehyde,LB
+37113,1.7364768e-06,Chromium (VI),LB
+37101,3.431442,Hexane,LB
+37101,0.02862074,Benzo[b]Fluoranthene,LB
+37101,0.0217245,Nickel,LB
+37101,1.5621288,Phenanthrene,LB
+37101,14.252516,Naphthalene,LB
+37101,51.47032,Ethyl Benzene,LB
+37101,7.332172,Acenaphthylene,LB
+37101,72.86978,Nitrogen Oxides,TON
+37101,5.813316,PM10 Primary (Filt + Cond),TON
+37101,0.04458798,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,3.023042,Volatile Organic Compounds,TON
+37101,1.3678508,Anthracene,LB
+37101,27.3228,Propionaldehyde,LB
+37101,2.743334,Pyrene,LB
+37101,0.05365582,Benzo[a]Pyrene,LB
+37101,0.00222737,"Dibenzo[a,h]Anthracene",LB
+37101,0.08470222,Nickel,LB
+37101,2.87993,Fluorene,LB
+37101,1.110756,Phenanthrene,LB
+37101,0.1352725,Methane,TON
+37101,11.51993,Nitrogen Oxides,TON
+37101,0.3515096,Pyrene,LB
+37101,0.09346402,Benz[a]Anthracene,LB
+37099,2.531068,Toluene,LB
+37099,0.0015326388,"Benzo[g,h,i,]Perylene",LB
+37099,0.0010526636,Benzo[k]Fluoranthene,LB
+37099,0.04874926,Chrysene,LB
+37099,0.0010503448,"Dibenzo[a,h]Anthracene",LB
+37099,1.133083e-05,Mercury,LB
+37099,0.2250858,Fluorene,LB
+37099,391.0841,Carbon Dioxide,TON
+37015,0.3217504,Formaldehyde,LB
+37015,0.0003578076,Arsenic,LB
+37015,0.0001645095,Acenaphthene,LB
+37015,0.008587682,Naphthalene,LB
+37015,0.2533896,Carbon Monoxide,TON
+37015,31.06117,Carbon Dioxide,TON
+37015,9.72144e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.0005640649,PM2.5 Primary (Filt + Cond),TON
+37015,0.0002052068,Benzo[k]Fluoranthene,LB
+37163,0.6238554,"2,2,4-Trimethylpentane",LB
+37163,0.003264968,Phenanthrene,LB
+37163,5.204419e-05,Sulfate Portion of PM2.5-PRI,TON
+37163,0.0688467,"1,3-Butadiene",LB
+37163,0.5463446,Hexane,LB
+37163,1.1910928,Xylenes (Mixed Isomers),LB
+37163,0.18212454,Acrolein,LB
+37163,0.0002040878,Mercury,LB
+37163,0.002544748,Nickel,LB
+37163,0.08794376,Naphthalene,LB
+37163,0.0009151032,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.00013658794,Benzo[k]Fluoranthene,LB
+37149,0.0004235752,Acenaphthylene,LB
+37149,0.0005283822,Phenanthrene,LB
+37149,0.004752318,Naphthalene,LB
+37149,0.0001851445,Nitrous Oxide,TON
+37105,0.6262484,Acrolein,LB
+37105,5.861572,Hexane,LB
+37105,0.010866294,Fluoranthene,LB
+37105,0.03542642,Phenanthrene,LB
+37017,0.002944298,Sulfate Portion of PM2.5-PRI,TON
+37017,0.892241,Ethyl Benzene,LB
+37017,8.74952e-06,Chromium (VI),LB
+37017,0.0720114,Benz[a]Anthracene,LB
+37017,0.0043838,Nickel,LB
+37017,0.08417334,Acenaphthene,LB
+37017,0.3389976,Phenanthrene,LB
+37017,0.07902778,PM10-Primary from certain diesel engines,TON
+37017,0.0007766276,Nitrous Oxide,TON
+37017,0.00039006,Nitrate portion of PM2.5-PRI,TON
+37007,0.005139482,Benzo[b]Fluoranthene,LB
+37007,0.01723824,Benzo[a]Pyrene,LB
+37007,5.946338e-06,Mercury,LB
+37007,368.7669,Carbon Dioxide,TON
+37007,3.435331,Nitrogen Oxides,TON
+37007,0.02456918,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.001739266,Sulfate Portion of PM2.5-PRI,TON
+37017,0.217483,Hexane,LB
+37017,0.00499567,Propionaldehyde,LB
+37017,0.0003705638,"Benzo[g,h,i,]Perylene",LB
+37017,0.000387678,Fluoranthene,LB
+37017,0.2758134,Benzene,LB
+37017,0.013575708,Naphthalene,LB
+37017,0.1144686,Carbon Monoxide,TON
+37017,4.150507e-07,Nitrate portion of PM2.5-PRI,TON
+37017,0.0002980154,PM10 Primary (Filt + Cond),TON
+37017,0.0001495302,PM2.5 Primary (Filt + Cond),TON
+37017,4.284913e-06,Sulfate Portion of PM2.5-PRI,TON
+37003,0.016774088,Nickel,LB
+37003,151.3947,Acetaldehyde,LB
+37003,2588.814,Carbon Dioxide,TON
+37003,0.03118959,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.0003162676,Nitrate portion of PM2.5-PRI,TON
+37003,0.05539161,Organic Carbon portion of PM2.5-PRI,TON
+37003,7.446804,Volatile Organic Compounds,TON
+37003,261.2786,Ethyl Benzene,LB
+37003,8.098496,Acrolein,LB
+37003,0.10502184,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.10195504,Chrysene,LB
+37003,315.1526,"2,2,4-Trimethylpentane",LB
+37059,3.635068,Ethyl Benzene,LB
+37059,0.01142569,Benzo[a]Pyrene,LB
+37059,0.004474056,Nickel,LB
+37059,0.006411728,Acenaphthene,LB
+37059,0.012987522,Fluorene,LB
+37059,0.04540006,PM10 Primary (Filt + Cond),TON
+37059,0.4040476,Volatile Organic Compounds,TON
+37047,22.81778,Toluene,LB
+37047,2.491904,Propionaldehyde,LB
+37047,0.0198787,Pyrene,LB
+37047,10.443958,"2,2,4-Trimethylpentane",LB
+37047,0.018769816,Manganese,LB
+37047,0.004442256,Elemental Carbon portion of PM2.5-PRI,TON
+37125,1.029577e-05,Nitrate portion of PM2.5-PRI,TON
+37125,1.6755918,Hexane,LB
+37125,1.4302406e-05,Chromium (VI),LB
+37199,168.0892,Nitrogen Oxides,TON
+37199,4.125745,PM10 Primary (Filt + Cond),TON
+37197,26.1989,Styrene,LB
+37197,111.52766,Toluene,LB
+37197,0.02240934,"Benzo[g,h,i,]Perylene",LB
+37197,0.11648052,Benzo[a]Pyrene,LB
+37197,1.580822,PM10-Primary from certain diesel engines,TON
+37197,1.491655,PM2.5 Primary (Filt + Cond),TON
+37197,69.55856,Toluene,LB
+37195,0.018544982,Nickel,LB
+37195,9.125792,Naphthalene,LB
+37195,0.19323668,Anthracene,LB
+37195,0.01441394,Ammonia,TON
+37195,0.0001108201,Nitrate portion of PM2.5-PRI,TON
+37193,0.5116436,Pyrene,LB
+37193,0.08954484,Benzo[k]Fluoranthene,LB
+37193,1.3961036,Acenaphthylene,LB
+37193,0.08965678,Benz[a]Anthracene,LB
+37193,6.794804,Styrene,LB
+37193,5.880114,Acrolein,LB
+37193,0.0011724124,Mercury,LB
+37193,1928.006,Carbon Dioxide,TON
+37193,0.01797546,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.00722148,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.004838978,Benzo[b]Fluoranthene,LB
+37187,1.838841,"1,3-Butadiene",LB
+37187,0.013724298,Acenaphthene,LB
+37187,193.9416,Carbon Dioxide,TON
+37187,0.5361564,Nitrogen Oxides,TON
+37181,0.003891158,Styrene,LB
+37181,0.003191954,Propionaldehyde,LB
+37181,0.0002907708,Pyrene,LB
+37181,0.0003394952,Fluorene,LB
+37181,0.008712302,Naphthalene,LB
+37181,0.07286832,Carbon Monoxide,TON
+37181,3.900819e-07,Nitrate portion of PM2.5-PRI,TON
+37181,0.0002346105,PM10 Primary (Filt + Cond),TON
+37181,3.076006e-06,"Dibenzo[a,h]Anthracene",LB
+37181,0.11024184,"2,2,4-Trimethylpentane",LB
+37181,2.521668e-05,Manganese,LB
+37189,1.136094,Acenaphthene,LB
+37189,8.722475,Carbon Monoxide,TON
+37189,4063.869,Carbon Dioxide,TON
+37189,0.01432946,Nitrous Oxide,TON
+37189,11.276088,"1,3-Butadiene",LB
+37189,402.2934,Formaldehyde,LB
+37185,349.5098,Xylenes (Mixed Isomers),LB
+37185,4.404416e-05,Chromium (VI),LB
+37185,0.12602068,"Benzo[g,h,i,]Perylene",LB
+37185,0.005505688,Nickel,LB
+37185,0.09523074,Ammonia,TON
+37185,0.01494845,Sulfur Dioxide,TON
+37179,0.2797372,"Dibenzo[a,h]Anthracene",LB
+37179,1979.3716,Naphthalene,LB
+37179,0.04141386,Nitrate portion of PM2.5-PRI,TON
+37179,131716.48,Toluene,LB
+37179,30438.38,Hexane,LB
+37193,0.01330637,Nickel,LB
+37193,11.935554,Naphthalene,LB
+37193,8.639908,Acrolein,LB
+37193,6.814716,Toluene,LB
+37193,0.16282202,Benz[a]Anthracene,LB
+37193,0.01552681,Ammonia,TON
+37193,0.2380949,PM2.5 Primary (Filt + Cond),TON
+37183,5.83301e-05,Chromium (VI),LB
+37183,0.0556931,Benzo[b]Fluoranthene,LB
+37183,0.05341386,Chrysene,LB
+37183,132.9481,Hexane,LB
+37183,212.4194,Benzene,LB
+37183,0.18108304,Acenaphthene,LB
+37183,9.404394,Naphthalene,LB
+37085,0.14168046,Benz[a]Anthracene,LB
+37085,3.227978,Ethyl Benzene,LB
+37085,0.03267672,Manganese,LB
+37085,0.3227426,Acenaphthene,LB
+37085,0.03357269,Methane,TON
+37085,3.724151,Carbon Monoxide,TON
+37085,0.5681708,Fluoranthene,LB
+37085,147.44616,Toluene,LB
+37085,976.5438,Acetaldehyde,LB
+37085,19.913828,Phenanthrene,LB
+37085,246.7042,Naphthalene,LB
+37085,0.4746647,Ammonia,TON
+37085,45.18039,Nitrogen Oxides,TON
+37085,0.00866237,Benzo[k]Fluoranthene,LB
+37085,0.008610638,"Dibenzo[a,h]Anthracene",LB
+37085,55.31282,"2,2,4-Trimethylpentane",LB
+37085,1.6391408,Benz[a]Anthracene,LB
+37085,212.0426,Benzene,LB
+37085,0.0004692254,Mercury,LB
+37067,4.313222,Hexane,LB
+37067,0.07972902,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.02262635,Sulfur Dioxide,TON
+37067,1.9479114,Phenanthrene,LB
+37063,0.000364441,Acenaphthene,LB
+37063,0.004571565,Ammonia,TON
+37063,2.87948e-05,"Benzo[g,h,i,]Perylene",LB
+37063,4.228012e-06,Nitrate portion of PM2.5-PRI,TON
+37063,0.005732756,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.08865924,Ethyl Benzene,LB
+37063,0.03587252,"1,3-Butadiene",LB
+37063,90.03768,Formaldehyde,LB
+37063,0.3576704,Benzene,LB
+37063,3.482628e-05,Mercury,LB
+37063,2.894726e-06,Nickel,LB
+37053,0.002516807,Nitrate portion of PM2.5-PRI,TON
+37053,3.919138e-05,Mercury,LB
+37053,1.3573172,Fluorene,LB
+37053,0.06214336,Manganese,LB
+37053,0.0001691904,Nickel,LB
+37053,0.005521956,Acenaphthene,LB
+37053,5.780069e-06,Nitrate portion of PM2.5-PRI,TON
+37053,0.00101917,Organic Carbon portion of PM2.5-PRI,TON
+37053,6.135171e-05,Sulfate Portion of PM2.5-PRI,TON
+37053,0.1348786,Volatile Organic Compounds,TON
+37053,7.881962,Hexane,LB
+37045,0.09567652,Sulfate Portion of PM2.5-PRI,TON
+37045,2.42102,Acenaphthene,LB
+37045,0.03423446,"Benzo[g,h,i,]Perylene",LB
+37045,1.8411264,Benz[a]Anthracene,LB
+37047,2.171567,Ammonia,TON
+37047,2.205181,PM10 Primary (Filt + Cond),TON
+37047,0.02416229,Sulfate Portion of PM2.5-PRI,TON
+37047,1207.4648,Ethyl Benzene,LB
+37047,0.560044,Chrysene,LB
+37047,1444.5798,"2,2,4-Trimethylpentane",LB
+37047,2040.24,Benzene,LB
+37047,0.01702802,Mercury,LB
+37047,0.3255534,Arsenic,LB
+37047,1.354727,Methane,TON
+37047,543.6421,Carbon Monoxide,TON
+37045,272.6464,Xylenes (Mixed Isomers),LB
+37045,0.0131319,Elemental Carbon portion of PM2.5-PRI,TON
+37045,4.87019,Nitrogen Oxides,TON
+37045,0.001959757,Sulfate Portion of PM2.5-PRI,TON
+37045,2.178932,Volatile Organic Compounds,TON
+37033,0.06045346,Styrene,LB
+37033,0.002236952,Anthracene,LB
+37033,0.0506527,Propionaldehyde,LB
+37033,0.0007672308,Manganese,LB
+37033,0.00017861094,Nickel,LB
+37033,5.64827e-06,Nitrate portion of PM2.5-PRI,TON
+37033,0.04957039,Volatile Organic Compounds,TON
+37025,0.0015927766,Hexane,LB
+37025,1.2303588e-06,Anthracene,LB
+37025,1.529971e-06,Benzo[a]Pyrene,LB
+37025,7.220022e-05,Naphthalene,LB
+37025,3.837764e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37025,1.699403e-06,Nitrous Oxide,TON
+37025,3.244556e-06,PM2.5 Primary (Filt + Cond),TON
+37025,3.027955e-06,Sulfur Dioxide,TON
+37029,0.04830626,Naphthalene,LB
+37029,2.519706,Toluene,LB
+37029,0.0004979944,PM2.5 Primary (Filt + Cond),TON
+37029,0.0002524328,Benzo[k]Fluoranthene,LB
+37029,0.004236422,Acenaphthylene,LB
+37029,7.614266e-06,"Dibenzo[a,h]Anthracene",LB
+37029,0.01389602,Volatile Organic Compounds,TON
+37029,4.144874e-05,Nickel,LB
+37175,0.0002435948,Arsenic,LB
+37175,0.0005493069,PM2.5 Primary (Filt + Cond),TON
+37175,0.0002208555,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.0438186,Propionaldehyde,LB
+37155,0.00514174,Fluoranthene,LB
+37155,0.003747976,Benz[a]Anthracene,LB
+37155,0.0004771132,Mercury,LB
+37155,0.14320924,Naphthalene,LB
+37155,0.02667079,Methane,TON
+37155,0.002040915,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.2207227,Volatile Organic Compounds,TON
+37105,1.9003734,Ethyl Benzene,LB
+37105,15.162222,Toluene,LB
+37177,9.193418,Formaldehyde,LB
+37177,31.30118,Benzene,LB
+37177,0.04896658,Fluorene,LB
+37177,0.01105411,Methane,TON
+37177,0.007527232,Benzo[b]Fluoranthene,LB
+37177,0.007194478,Chrysene,LB
+37177,0.6732274,Volatile Organic Compounds,TON
+37169,0.00011372186,Fluoranthene,LB
+37169,2.300758e-05,Chrysene,LB
+37169,0.07806686,Benzene,LB
+37169,0.00015678996,Fluorene,LB
+37169,6.312772e-05,Methane,TON
+37169,0.03157047,Carbon Monoxide,TON
+37169,7.733246e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37169,4.88914e-05,Nitrous Oxide,TON
+37169,3.351461e-05,PM2.5 Primary (Filt + Cond),TON
+37169,7.413035e-06,Sulfur Dioxide,TON
+37165,0.17995248,Anthracene,LB
+37165,6.127108,Naphthalene,LB
+37165,0.1881519,PM10 Primary (Filt + Cond),TON
+37165,0.3294649,Volatile Organic Compounds,TON
+37163,8.040578,Nitrogen Oxides,TON
+37163,0.677871,Anthracene,LB
+37163,0.2659526,Chrysene,LB
+37163,0.005584226,"Dibenzo[a,h]Anthracene",LB
+37163,17.9285,Benzene,LB
+37163,0.6277854,Acenaphthene,LB
+37163,2.312728,Phenanthrene,LB
+37163,0.006425133,Nitrous Oxide,TON
+37161,63.79128,Acetaldehyde,LB
+37161,0.0033125,Nitrous Oxide,TON
+37161,0.02038057,Nitrous Oxide,TON
+37161,1.3701114e-05,Chromium (VI),LB
+37161,0.012178248,Benzo[b]Fluoranthene,LB
+37161,743.4244,Carbon Dioxide,TON
+37159,890.6944,Ethyl Benzene,LB
+37159,0.3113472,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,1.1670874,Fluoranthene,LB
+37159,300.6022,Formaldehyde,LB
+37159,0.002967532,Mercury,LB
+37159,0.03700334,Nickel,LB
+37159,41.45512,Naphthalene,LB
+37151,0.01582929,Nitrate portion of PM2.5-PRI,TON
+37151,0.6869664,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,11.44386,Volatile Organic Compounds,TON
+37151,2.429848,Benz[a]Anthracene,LB
+37151,0.03590376,Propionaldehyde,LB
+37151,0.002965982,"Benzo[g,h,i,]Perylene",LB
+37151,0.00191366,Methane,TON
+37151,0.0001895886,Ammonia,TON
+37151,0.001071561,PM2.5 Primary (Filt + Cond),TON
+37139,2.858312,Styrene,LB
+37139,6.4319,"1,3-Butadiene",LB
+37139,15.358662,Acrolein,LB
+37139,83.93064,Acetaldehyde,LB
+37139,1.135981,Volatile Organic Compounds,TON
+37191,13.733264,"2,2,4-Trimethylpentane",LB
+37191,0.012112514,Nickel,LB
+37191,0.018572544,Arsenic,LB
+37191,0.1007072,Methane,TON
+37191,0.006687165,Elemental Carbon portion of PM2.5-PRI,TON
+37191,1.5097078,"1,3-Butadiene",LB
+37191,0.02617854,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.010565572,Chrysene,LB
+37191,0.01599364,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,21328.82,Ethyl Benzene,LB
+37159,30.18406,Anthracene,LB
+37159,191.76318,Phenanthrene,LB
+37159,18.49346,Methane,TON
+37159,0.04105096,Nitrate portion of PM2.5-PRI,TON
+37159,4.855155,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,51.5071,Fluoranthene,LB
+37159,9.77193,Benzo[k]Fluoranthene,LB
+37153,0.6963086,Hexane,LB
+37153,0.1003016,Fluoranthene,LB
+37153,0.7361718,"2,2,4-Trimethylpentane",LB
+37153,0.014605386,Benz[a]Anthracene,LB
+37153,2.908132,Naphthalene,LB
+37153,0.006297145,PM2.5 Primary (Filt + Cond),TON
+37147,4.971184,Volatile Organic Compounds,TON
+37147,30.81982,Ethyl Benzene,LB
+37147,26.43926,"1,3-Butadiene",LB
+37147,8.60153,Pyrene,LB
+37147,0.01145863,Nitrate portion of PM2.5-PRI,TON
+37147,0.9333175,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.461558,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,14.94232,Styrene,LB
+37145,80.27296,Acrolein,LB
+37145,54.80772,Propionaldehyde,LB
+37145,0.0001955614,Chromium (VI),LB
+37145,0.6852111,PM25-Primary from certain diesel engines,TON
+37145,17.3086,Nitrogen Oxides,TON
+37145,59.58696,Hexane,LB
+37145,0.0974148,Pyrene,LB
+37145,0.014550566,Chrysene,LB
+37145,0.005489925,Elemental Carbon portion of PM2.5-PRI,TON
+37145,6.262604e-05,Arsenic,LB
+37145,3.142604,Acetaldehyde,LB
+37145,0.01943128,Fluorene,LB
+37145,3.986479e-05,Sulfate Portion of PM2.5-PRI,TON
+37145,1.3086382,"1,3-Butadiene",LB
+37145,0.2068194,Propionaldehyde,LB
+37141,0.0007038062,Acenaphthylene,LB
+37141,0.6363662,Methane,TON
+37141,0.01977425,Nitrous Oxide,TON
+37141,0.01127689,PM2.5 Primary (Filt + Cond),TON
+37135,0.02450353,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,2.084898,Propionaldehyde,LB
+37135,0.002261914,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.008874734,Benzo[b]Fluoranthene,LB
+37135,0.12540562,Acenaphthene,LB
+37135,1.295096,Carbon Monoxide,TON
+37135,0.875085,Ethyl Benzene,LB
+37135,0.002459416,Pyrene,LB
+37135,0.000763029,Benzo[a]Pyrene,LB
+37135,1.7555876e-05,"Dibenzo[a,h]Anthracene",LB
+37135,1.8705482e-05,Arsenic,LB
+37093,1077.7266,Hexane,LB
+37093,21.24872,Volatile Organic Compounds,TON
+37091,0.0002118294,Acrolein,LB
+37091,0.0002328784,Propionaldehyde,LB
+37091,3.920946e-06,Benzo[b]Fluoranthene,LB
+37091,1.675106e-05,Fluoranthene,LB
+37091,3.920946e-06,Benzo[k]Fluoranthene,LB
+37091,8.051476e-07,Manganese,LB
+37091,0.0004174798,Nitrogen Oxides,TON
+37091,5.921549e-06,PM2.5 Primary (Filt + Cond),TON
+37083,0.0227824,Benzo[a]Pyrene,LB
+37083,6.235604e-05,Mercury,LB
+37083,0.0362178,Nickel,LB
+37083,0.0004587665,Nitrate portion of PM2.5-PRI,TON
+37083,7.904134,Ethyl Benzene,LB
+37083,7.650362,"1,3-Butadiene",LB
+37083,5.987778,Hexane,LB
+37083,0.003281324,"Benzo[g,h,i,]Perylene",LB
+37083,0.0009460358,Benzo[k]Fluoranthene,LB
+37083,1.304437,Acenaphthylene,LB
+37081,194297.3,Toluene,LB
+37081,29.40696,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,202.8602,Acenaphthylene,LB
+37081,12916.332,Formaldehyde,LB
+37081,26.95554,Manganese,LB
+37081,123.355,PM10 Primary (Filt + Cond),TON
+37081,39.71981,PM2.5 Primary (Filt + Cond),TON
+37081,935.8178,Volatile Organic Compounds,TON
+37079,3.085859,Volatile Organic Compounds,TON
+37079,0.032132,Benzo[k]Fluoranthene,LB
+37077,0.019476642,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,313.463,Formaldehyde,LB
+37077,0.05323758,Nickel,LB
+37077,0.09189685,Methane,TON
+37077,0.004415738,Nitrate portion of PM2.5-PRI,TON
+37073,1273.0312,Hexane,LB
+37073,0.001337022,Chromium (VI),LB
+37073,355.3982,Formaldehyde,LB
+37073,0.542448,Benzo[a]Pyrene,LB
+37073,0.378039,Benz[a]Anthracene,LB
+37073,2.46939,Fluorene,LB
+37073,260.4195,Carbon Monoxide,TON
+37069,0.0002109732,"Dibenzo[a,h]Anthracene",LB
+37069,0.001245921,Manganese,LB
+37069,0.019958804,Acenaphthene,LB
+37069,0.66593,Naphthalene,LB
+37069,0.1228361,Carbon Monoxide,TON
+37069,0.005501405,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.01615419,PM2.5 Primary (Filt + Cond),TON
+37059,1.5312392,Propionaldehyde,LB
+37059,0.002311216,Organic Carbon portion of PM2.5-PRI,TON
+37059,6.580789e-05,Sulfate Portion of PM2.5-PRI,TON
+37061,7847.904,Xylenes (Mixed Isomers),LB
+37049,1.9867022,Styrene,LB
+37049,4.481656,"1,3-Butadiene",LB
+37049,7.331582,Propionaldehyde,LB
+37049,0.11373066,Chrysene,LB
+37049,2.813168e-05,Mercury,LB
+37049,1.4251214,Phenanthrene,LB
+37047,1.166858e-07,Sulfate Portion of PM2.5-PRI,TON
+37047,8.183266e-09,Mercury,LB
+37047,5.741628e-06,Pyrene,LB
+37047,9.762072e-06,"Benzo[g,h,i,]Perylene",LB
+37043,0.7477438,Ethyl Benzene,LB
+37043,0.02574668,Styrene,LB
+37043,0.0011690646,"Benzo[g,h,i,]Perylene",LB
+37043,0.005973288,Phenanthrene,LB
+37043,1.440295e-06,Nitrate portion of PM2.5-PRI,TON
+37043,0.0004014182,Sulfur Dioxide,TON
+37047,3.681842e-05,Arsenic,LB
+37047,0.982878,Carbon Monoxide,TON
+37047,0.0006373974,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.001244716,PM2.5 Primary (Filt + Cond),TON
+37047,0.0480155,Acrolein,LB
+37047,2.404096,Hexane,LB
+37047,0.0012350532,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.9534918,Formaldehyde,LB
+37047,0.000886284,Benz[a]Anthracene,LB
+37047,402.0786,Styrene,LB
+37047,874.0006,Naphthalene,LB
+37047,6.711705,Nitrous Oxide,TON
+37047,4.257915,Sulfur Dioxide,TON
+37041,3.287154,Benzene,LB
+37041,2.846219e-06,Nitrate portion of PM2.5-PRI,TON
+37041,0.003515872,PM10 Primary (Filt + Cond),TON
+37041,0.7678196,Formaldehyde,LB
+37037,46.99065,Volatile Organic Compounds,TON
+37033,0.8480654,Xylenes (Mixed Isomers),LB
+37033,0.0002137512,Benzo[b]Fluoranthene,LB
+37033,0.0006061698,Fluoranthene,LB
+37033,0.0003606366,Benzo[a]Pyrene,LB
+37033,0.0001002285,Ammonia,TON
+37033,1.051623e-05,Sulfate Portion of PM2.5-PRI,TON
+37141,0.3415502,Styrene,LB
+37141,38.96136,Xylenes (Mixed Isomers),LB
+37141,0.010354768,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.0002376062,"Dibenzo[a,h]Anthracene",LB
+37141,0.014512842,Acenaphthene,LB
+37141,3.817212,Ethyl Benzene,LB
+37141,14.101364,Xylenes (Mixed Isomers),LB
+37141,0.003422572,Benzo[k]Fluoranthene,LB
+37141,0.02897734,Acenaphthylene,LB
+37141,0.0001334235,"Dibenzo[a,h]Anthracene",LB
+37141,0.008673948,Ammonia,TON
+37141,0.1136601,Volatile Organic Compounds,TON
+37125,0.9640785,Volatile Organic Compounds,TON
+37125,12.14533,Toluene,LB
+37125,0.497609,Anthracene,LB
+37125,0.225007,Benz[a]Anthracene,LB
+37125,15.857074,Benzene,LB
+37125,3.020698e-05,Mercury,LB
+37125,0.01899328,Nickel,LB
+37107,5.356992,Styrene,LB
+37107,9.095068,Hexane,LB
+37107,1.3858158,Anthracene,LB
+37107,22.84986,Xylenes (Mixed Isomers),LB
+37107,0.09334626,Benzo[b]Fluoranthene,LB
+37107,0.012794868,Benzo[k]Fluoranthene,LB
+37107,0.05103068,Nickel,LB
+37107,0.015163366,Arsenic,LB
+37107,2.74088,Fluorene,LB
+37107,2.139001,Volatile Organic Compounds,TON
+37107,53.60344,Xylenes (Mixed Isomers),LB
+37107,0.007500156,Chrysene,LB
+37107,0.007625498,Benz[a]Anthracene,LB
+37107,0.0017961142,Arsenic,LB
+37107,502.6533,Carbon Dioxide,TON
+37107,0.01272257,Nitrous Oxide,TON
+37107,3.837406e-05,Nitrate portion of PM2.5-PRI,TON
+37087,23.34872,"1,3-Butadiene",LB
+37087,7.45901,Pyrene,LB
+37087,0.02268648,Benzo[k]Fluoranthene,LB
+37087,0.02263002,"Dibenzo[a,h]Anthracene",LB
+37087,72.81346,Benzene,LB
+37087,0.0002502602,Mercury,LB
+37087,34.94411,Nitrogen Oxides,TON
+37073,0.08456644,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.5356291,PM10 Primary (Filt + Cond),TON
+37073,0.003533736,"Benzo[g,h,i,]Perylene",LB
+37081,0.2490162,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.3635174,Acenaphthene,LB
+37081,18.889856,Naphthalene,LB
+37081,0.1429223,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.007143914,"Dibenzo[a,h]Anthracene",LB
+37053,0.0002031142,Mercury,LB
+37053,9.775752,Carbon Monoxide,TON
+37053,1.391397,PM10-Primary from certain diesel engines,TON
+37053,0.8122953,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.2825983,Organic Carbon portion of PM2.5-PRI,TON
+37053,2.195534,PM10 Primary (Filt + Cond),TON
+37053,0.1607748,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.1283602,Sulfate Portion of PM2.5-PRI,TON
+37067,0.4633278,Pyrene,LB
+37067,0.18752402,Benzo[a]Pyrene,LB
+37067,294.4146,Benzene,LB
+37067,0.03658499,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.011082908,Manganese,LB
+37061,0.1290126,PM25-Primary from certain diesel engines,TON
+37061,0.000837797,Nitrous Oxide,TON
+37061,0.0003068334,Nitrate portion of PM2.5-PRI,TON
+37061,0.00547444,Sulfate Portion of PM2.5-PRI,TON
+37061,2.118622,Acrolein,LB
+37061,0.2529594,Pyrene,LB
+37061,27.3332,Formaldehyde,LB
+37043,4.612588e-05,Chromium (VI),LB
+37043,38.12808,Acetaldehyde,LB
+37043,0.0007658254,Nitrate portion of PM2.5-PRI,TON
+37043,0.03890164,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.03627838,Sulfate Portion of PM2.5-PRI,TON
+37039,3.327748,Benzene,LB
+37039,1.6486868e-05,Mercury,LB
+37039,3.913824,Naphthalene,LB
+37039,0.005806701,PM10-Primary from certain diesel engines,TON
+37039,0.1961361,Volatile Organic Compounds,TON
+37039,6.274268e-05,Benzo[k]Fluoranthene,LB
+37039,1.0099074,"2,2,4-Trimethylpentane",LB
+37047,0.1325233,Acrolein,LB
+37047,0.134251,Propionaldehyde,LB
+37047,5.40443e-06,Chromium (VI),LB
+37047,0.002314228,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.0008897146,Benzo[k]Fluoranthene,LB
+37039,0.013903308,Acenaphthylene,LB
+37039,2.144524e-05,Nickel,LB
+37039,0.00305217,Acenaphthene,LB
+37039,0.1584916,Naphthalene,LB
+37039,1.001598,Carbon Monoxide,TON
+37039,0.003393827,Sulfate Portion of PM2.5-PRI,TON
+37039,8.785622,Styrene,LB
+37039,0.6160024,Pyrene,LB
+37039,0.0969494,Chrysene,LB
+37039,365.793,Benzene,LB
+37039,0.7526274,Fluorene,LB
+37039,19.289804,Naphthalene,LB
+37039,0.0320818,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.3004697,Ammonia,TON
+37039,0.06735258,Organic Carbon portion of PM2.5-PRI,TON
+37037,62.51378,Toluene,LB
+37037,8.877166e-06,Mercury,LB
+37037,0.0166949,Acenaphthene,LB
+37037,0.8670244,Naphthalene,LB
+37037,0.374207,Nitrogen Oxides,TON
+37037,0.003821264,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.001695884,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.3099293,Volatile Organic Compounds,TON
+37035,0.5408424,Hexane,LB
+37035,0.21409,Pyrene,LB
+37035,4.226122e-06,Chromium (VI),LB
+37035,0.0006171858,"Dibenzo[a,h]Anthracene",LB
+37035,0.002430426,Nickel,LB
+37031,0.009796706,Anthracene,LB
+37031,0.018919836,Pyrene,LB
+37031,0.002275388,Benzo[b]Fluoranthene,LB
+37031,0.0005938148,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.01253325,PM10 Primary (Filt + Cond),TON
+37025,0.12219348,Benz[a]Anthracene,LB
+37025,0.007998646,Nickel,LB
+37025,0.03860608,Methane,TON
+37025,1.717952,Carbon Monoxide,TON
+37025,0.6385544,Styrene,LB
+37025,0.03806244,Benzo[a]Pyrene,LB
+37199,0.428913,Anthracene,LB
+37199,6.28782,Propionaldehyde,LB
+37199,0.00677875,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.8509016,Fluorene,LB
+37199,12.704232,Naphthalene,LB
+37199,0.03044079,Methane,TON
+37193,0.0001871755,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.001044693,PM10 Primary (Filt + Cond),TON
+37193,6.874325e-05,Sulfur Dioxide,TON
+37193,0.0006758846,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.53842,Acetaldehyde,LB
+37195,0.2500876,Benz[a]Anthracene,LB
+37195,0.00010354438,Mercury,LB
+37195,0.05147154,Nickel,LB
+37195,0.8841464,Anthracene,LB
+37195,0.004764496,"Benzo[g,h,i,]Perylene",LB
+37195,0.002787278,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.0109367,Benzo[b]Fluoranthene,LB
+37195,1.4510262,Fluoranthene,LB
+37195,0.0399646,Benzo[b]Fluoranthene,LB
+37195,25.7189,Formaldehyde,LB
+37195,0.06603666,Benzo[a]Pyrene,LB
+37195,62.97356,"2,2,4-Trimethylpentane",LB
+37195,0.03701782,Benz[a]Anthracene,LB
+37195,86.68234,Benzene,LB
+37195,0.00941254,Arsenic,LB
+37195,0.16298192,Fluorene,LB
+37195,0.07312672,Ammonia,TON
+37195,0.02326188,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.0002147328,Acrolein,LB
+37189,1.9094802e-05,Pyrene,LB
+37189,6.612038e-06,Benzo[a]Pyrene,LB
+37189,1.2776314e-06,Manganese,LB
+37189,1.7856332e-07,Nickel,LB
+37189,1.970392e-06,Sulfur Dioxide,TON
+37019,11.942978,Acrolein,LB
+37019,1285.9726,Hexane,LB
+37019,136.19494,Acetaldehyde,LB
+37019,0.6227598,Acenaphthene,LB
+37019,4029.468,Carbon Dioxide,TON
+37019,0.007561989,Sulfate Portion of PM2.5-PRI,TON
+37019,22.66074,Volatile Organic Compounds,TON
+37015,0.9100174,PM10-Primary from certain diesel engines,TON
+37015,0.5495714,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.2037339,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.08903581,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,5.932546,Ethyl Benzene,LB
+37015,11.045316,Toluene,LB
+37015,1.4842434,Fluoranthene,LB
+37015,1.042526,Acenaphthylene,LB
+37015,177.00906,Formaldehyde,LB
+37015,0.1449669,Benzo[a]Pyrene,LB
+37003,0.05096712,Benzo[b]Fluoranthene,LB
+37003,1.7051966,Fluoranthene,LB
+37003,0.1709467,Benzo[a]Pyrene,LB
+37003,0.003967895,Nitrous Oxide,TON
+37003,0.00295891,Nitrate portion of PM2.5-PRI,TON
+37023,16.863642,Acenaphthylene,LB
+37023,0.3696662,Manganese,LB
+37023,10.028958,Acenaphthene,LB
+37023,15249.14,Carbon Dioxide,TON
+37023,56.857,Nitrogen Oxides,TON
+37003,45.63136,Carbon Dioxide,TON
+37003,7.621432,Ethyl Benzene,LB
+37003,0.00639302,"Benzo[g,h,i,]Perylene",LB
+37039,0.0006831834,Acenaphthylene,LB
+37039,0.4266358,Benzene,LB
+37039,0.0004094265,PM2.5 Primary (Filt + Cond),TON
+37035,0.0012030888,Benz[a]Anthracene,LB
+37035,0.6000042,Ethyl Benzene,LB
+37035,1.0064594,Hexane,LB
+37035,0.00721197,"Benzo[g,h,i,]Perylene",LB
+37035,0.009638856,Methane,TON
+37037,17.631812,Benzene,LB
+37037,0.006543674,Nickel,LB
+37037,0.006354778,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.02815371,Sulfur Dioxide,TON
+37037,0.0005328439,Sulfate Portion of PM2.5-PRI,TON
+37037,0.4261276,Volatile Organic Compounds,TON
+37037,3.641706,Ethyl Benzene,LB
+37037,0.013673242,Benzo[a]Pyrene,LB
+37165,2.76674e-06,Chromium (VI),LB
+37165,0.0016938198,"Benzo[g,h,i,]Perylene",LB
+37165,0.0006278168,Benzo[a]Pyrene,LB
+37165,0.2735132,"2,2,4-Trimethylpentane",LB
+37165,0.03322751,Nitrogen Oxides,TON
+37147,0.4523652,Styrene,LB
+37147,0.02429514,Arsenic,LB
+37147,2431.684,Carbon Dioxide,TON
+37137,3.098518,Toluene,LB
+37119,1.8857064,Styrene,LB
+37119,161.74956,Toluene,LB
+37119,0.09750784,Benzo[b]Fluoranthene,LB
+37119,4.712585,Volatile Organic Compounds,TON
+37091,0.00081355,Nickel,LB
+37091,0.001336066,Nitrous Oxide,TON
+37091,0.005569972,Ammonia,TON
+37091,0.05443377,Nitrogen Oxides,TON
+37091,0.002657853,Sulfur Dioxide,TON
+37091,0.09235776,"1,3-Butadiene",LB
+37091,0.0004772116,Chrysene,LB
+37173,4.492126,Ethyl Benzene,LB
+37173,0.4676996,Acenaphthene,LB
+37193,3.780878,Volatile Organic Compounds,TON
+37193,6.997498,Styrene,LB
+37193,31.8699,Propionaldehyde,LB
+37193,4.465206,Pyrene,LB
+37193,0.011806982,"Dibenzo[a,h]Anthracene",LB
+37193,27.01966,"2,2,4-Trimethylpentane",LB
+37193,1.206848,Methane,TON
+37193,0.4899738,Organic Carbon portion of PM2.5-PRI,TON
+37185,10.992782,"1,3-Butadiene",LB
+37185,0.03963052,Benzo[b]Fluoranthene,LB
+37185,1.9335186,Fluoranthene,LB
+37185,1.0690514,Acenaphthene,LB
+37185,4.66664,Phenanthrene,LB
+37185,59.31688,Naphthalene,LB
+37185,11.61891,Carbon Monoxide,TON
+37185,15947.47,Carbon Dioxide,TON
+37185,1.272355,PM25-Primary from certain diesel engines,TON
+37195,3.213628e-06,"Dibenzo[a,h]Anthracene",LB
+37195,6.682482e-05,Benz[a]Anthracene,LB
+37195,0.0018193924,Styrene,LB
+37195,0.0019315246,Acrolein,LB
+37195,0.08032426,Hexane,LB
+37195,0.0001631665,Pyrene,LB
+37195,5.97214e-05,Chrysene,LB
+37195,0.0001384062,Benzo[a]Pyrene,LB
+37189,0.2788176,Pyrene,LB
+37189,0.0009541214,Nitrous Oxide,TON
+37189,0.003283027,Sulfate Portion of PM2.5-PRI,TON
+37187,0.0001890636,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.05512004,Styrene,LB
+37187,0.0488685,Propionaldehyde,LB
+37187,5.326892,Xylenes (Mixed Isomers),LB
+37179,6.135924,Acenaphthylene,LB
+37179,0.8550766,Benzo[a]Pyrene,LB
+37179,14.78992,Phenanthrene,LB
+37179,1.102954,Methane,TON
+37179,2.952075,PM10-Primary from certain diesel engines,TON
+37179,0.01528453,Nitrate portion of PM2.5-PRI,TON
+37179,49.10454,Nitrogen Oxides,TON
+37179,0.6233537,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.09397886,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.00215719,"Dibenzo[a,h]Anthracene",LB
+37023,17.474832,"1,3-Butadiene",LB
+37023,132.40784,Hexane,LB
+37023,45.99726,Acetaldehyde,LB
+37023,0.7898794,Phenanthrene,LB
+37023,0.05196101,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.2505786,PM10 Primary (Filt + Cond),TON
+37023,0.002994488,Sulfate Portion of PM2.5-PRI,TON
+37199,17.627248,Ethyl Benzene,LB
+37199,65.20708,Xylenes (Mixed Isomers),LB
+37199,0.00688101,Chrysene,LB
+37199,0.0002053154,"Dibenzo[a,h]Anthracene",LB
+37199,0.000847902,Nickel,LB
+37199,0.01057886,Ammonia,TON
+37199,0.01052141,PM2.5 Primary (Filt + Cond),TON
+37197,27.34538,Propionaldehyde,LB
+37197,5.978834,Phenanthrene,LB
+37197,59.3848,Naphthalene,LB
+37197,0.01919389,Nitrous Oxide,TON
+37197,0.1337242,Sulfate Portion of PM2.5-PRI,TON
+37195,0.9588792,Ethyl Benzene,LB
+37195,0.0003057285,Nitrate portion of PM2.5-PRI,TON
+37195,0.1405804,PM2.5 Primary (Filt + Cond),TON
+37193,0.005742884,Benz[a]Anthracene,LB
+37193,1.7224126,Propionaldehyde,LB
+37193,0.006546772,Benzo[k]Fluoranthene,LB
+37193,0.03928513,Ammonia,TON
+37185,0.013454052,Benzo[k]Fluoranthene,LB
+37185,0.00187765,Nickel,LB
+37185,0.138713,Phenanthrene,LB
+37185,0.02487533,PM2.5 Primary (Filt + Cond),TON
+37197,29.95426,Toluene,LB
+37197,0.018773454,Pyrene,LB
+37197,0.01634433,"Benzo[g,h,i,]Perylene",LB
+37197,3.287318,Formaldehyde,LB
+37197,0.00612189,Benzo[a]Pyrene,LB
+37197,0.1679643,Volatile Organic Compounds,TON
+37183,0.13162008,Pyrene,LB
+37183,4.009242,Naphthalene,LB
+37183,0.1376172,PM10 Primary (Filt + Cond),TON
+37183,0.05585739,PM2.5 Primary (Filt + Cond),TON
+37183,0.06679094,Anthracene,LB
+37017,0.03413612,Phenanthrene,LB
+37017,0.003126167,Methane,TON
+37017,9.252104e-06,Nitrate portion of PM2.5-PRI,TON
+37015,120.53298,Toluene,LB
+37015,0.0284908,"Benzo[g,h,i,]Perylene",LB
+37015,0.000137591,Mercury,LB
+37015,9.731556,Acetaldehyde,LB
+37015,0.02484829,Methane,TON
+37015,500.0999,Carbon Dioxide,TON
+37003,0.268257,Acenaphthylene,LB
+37003,0.3191656,Phenanthrene,LB
+37003,0.248156,Propionaldehyde,LB
+37003,1.7075516e-06,Chromium (VI),LB
+37003,0.002740492,Benzo[b]Fluoranthene,LB
+37003,0.002740492,Benzo[k]Fluoranthene,LB
+37003,0.002796672,Benzo[a]Pyrene,LB
+37003,0.07688532,Phenanthrene,LB
+37003,0.004697446,Methane,TON
+37057,0.0017839904,Manganese,LB
+37057,0.02118216,Styrene,LB
+37057,0.09142068,"1,3-Butadiene",LB
+37057,0.03822976,Naphthalene,LB
+37057,0.002408556,PM2.5 Primary (Filt + Cond),TON
+37057,6.712318e-05,Sulfate Portion of PM2.5-PRI,TON
+37007,0.00546233,Naphthalene,LB
+37007,0.012304432,"1,3-Butadiene",LB
+37007,0.10206432,Hexane,LB
+37007,0.0004851516,Acenaphthylene,LB
+37165,0.002360852,Benzo[a]Pyrene,LB
+37165,3.184988,Benzene,LB
+37165,194.954,Carbon Dioxide,TON
+37165,0.01567834,PM10 Primary (Filt + Cond),TON
+37159,0.02880328,Styrene,LB
+37159,0.10275738,Acrolein,LB
+37159,0.969366,Hexane,LB
+37159,0.005429594,Sulfur Dioxide,TON
+37139,1.9188742e-06,Chromium (VI),LB
+37139,0.0002597166,Benzo[k]Fluoranthene,LB
+37139,1.1191566e-05,"Dibenzo[a,h]Anthracene",LB
+37139,0.0002265984,Benz[a]Anthracene,LB
+37139,0.0003677848,Arsenic,LB
+37139,0.0002602338,Acenaphthene,LB
+37139,34.70329,Carbon Dioxide,TON
+37139,1.844693e-06,Nitrate portion of PM2.5-PRI,TON
+37139,0.02472751,Nitrogen Oxides,TON
+37139,0.000310922,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.330121,"1,3-Butadiene",LB
+37175,5.27107,Xylenes (Mixed Isomers),LB
+37175,0.012820618,Acenaphthylene,LB
+37175,1.446516,"2,2,4-Trimethylpentane",LB
+37175,0.9220838,Acetaldehyde,LB
+37175,0.015263136,Phenanthrene,LB
+37175,0.005965097,PM10 Primary (Filt + Cond),TON
+37173,0.003088874,Styrene,LB
+37173,0.002506318,Acrolein,LB
+37173,0.10095042,Hexane,LB
+37173,0.2753204,Xylenes (Mixed Isomers),LB
+37173,0.13888564,Benzene,LB
+37173,4.25988e-07,Mercury,LB
+37173,0.0401993,Acetaldehyde,LB
+37173,0.05970453,Carbon Monoxide,TON
+37173,5.65423e-05,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.014308872,Chrysene,LB
+37171,0.00719661,Benzo[a]Pyrene,LB
+37171,0.000293448,"Dibenzo[a,h]Anthracene",LB
+37171,0.0022356,Manganese,LB
+37171,0.0004792544,Arsenic,LB
+37171,0.03937216,Acenaphthene,LB
+37171,0.13956698,Phenanthrene,LB
+37159,0.0006296254,Arsenic,LB
+37159,0.0005141834,Benzo[k]Fluoranthene,LB
+37161,0.71503,"1,3-Butadiene",LB
+37161,0.009999036,Pyrene,LB
+37161,0.008775132,Fluoranthene,LB
+37161,0.0004505318,Nickel,LB
+37161,0.03203788,Phenanthrene,LB
+37161,0.3043834,Naphthalene,LB
+37161,0.004450717,Methane,TON
+37161,128.0339,Carbon Dioxide,TON
+37161,0.0007578234,Elemental Carbon portion of PM2.5-PRI,TON
+37151,8.550305e-06,Nitrate portion of PM2.5-PRI,TON
+37151,0.0003149192,Sulfur Dioxide,TON
+37151,6.236384,Hexane,LB
+37151,7.09419e-05,"Dibenzo[a,h]Anthracene",LB
+37143,0.004192142,"Benzo[g,h,i,]Perylene",LB
+37143,0.005012846,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.12932718,Chrysene,LB
+37143,0.06572446,Benzo[a]Pyrene,LB
+37143,0.3479112,Acenaphthene,LB
+37143,7075.197,Carbon Dioxide,TON
+37143,0.3650125,Elemental Carbon portion of PM2.5-PRI,TON
+37143,16.83162,Nitrogen Oxides,TON
+37143,0.2745454,Phenanthrene,LB
+37143,2.922658,Naphthalene,LB
+37143,1.437837,Propionaldehyde,LB
+37143,6.298882e-06,Chromium (VI),LB
+37143,0.000390906,Benzo[k]Fluoranthene,LB
+37143,26.33298,Formaldehyde,LB
+37143,0.000389866,"Dibenzo[a,h]Anthracene",LB
+37143,24.98144,Acrolein,LB
+37143,1.366272,Fluoranthene,LB
+37143,311.7892,Formaldehyde,LB
+37143,0.208891,Benz[a]Anthracene,LB
+37143,6.805288e-05,Mercury,LB
+37143,34.57604,Naphthalene,LB
+37143,1983.96,Carbon Dioxide,TON
+37141,273.7934,Acetaldehyde,LB
+37141,1.8393962,Acenaphthene,LB
+37141,7.043846,Phenanthrene,LB
+37141,2.673377,PM25-Primary from certain diesel engines,TON
+37141,3.987725,PM10 Primary (Filt + Cond),TON
+37141,2.817337,PM2.5 Primary (Filt + Cond),TON
+37141,48.48914,Acrolein,LB
+37141,658.1288,Formaldehyde,LB
+37141,0.01495189,"Dibenzo[a,h]Anthracene",LB
+37141,17.596674,"2,2,4-Trimethylpentane",LB
+37139,18.214586,Hexane,LB
+37139,4.06362,Pyrene,LB
+37139,4.132906,Acenaphthylene,LB
+37139,724.4152,Formaldehyde,LB
+37139,0.07412406,Benzo[a]Pyrene,LB
+37139,37.16601,Carbon Monoxide,TON
+37139,0.6205196,PM10-Primary from certain diesel engines,TON
+37139,0.1299151,Ammonia,TON
+37139,0.001476184,Nitrate portion of PM2.5-PRI,TON
+37139,13.92223,Nitrogen Oxides,TON
+37139,0.05633191,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,21.60402,Ethyl Benzene,LB
+37135,0.00018322186,Chromium (VI),LB
+37135,3.150872,PM25-Primary from certain diesel engines,TON
+37135,0.01519142,Nitrous Oxide,TON
+37135,0.1656302,Ammonia,TON
+37135,0.08636511,Sulfate Portion of PM2.5-PRI,TON
+37143,10546.54,Toluene,LB
+37143,5.44142,Pyrene,LB
+37143,0.7936722,Benzo[b]Fluoranthene,LB
+37143,0.819688,Chrysene,LB
+37117,8.16219,Styrene,LB
+37117,18.34709,"1,3-Butadiene",LB
+37117,29.86942,Propionaldehyde,LB
+37117,539.4692,Formaldehyde,LB
+37117,0.001833129,"Dibenzo[a,h]Anthracene",LB
+37117,0.4667435,PM25-Primary from certain diesel engines,TON
+37117,0.06989519,Organic Carbon portion of PM2.5-PRI,TON
+37117,2.896952e-05,Pyrene,LB
+37117,1.0287454e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.005490314,Formaldehyde,LB
+37117,0.010115348,Ethyl Benzene,LB
+37119,7.005154,Ethyl Benzene,LB
+37119,0.010681808,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,18.506382,Benzene,LB
+37119,0.019265582,Arsenic,LB
+37119,21.9106,Naphthalene,LB
+37119,6.279781,Carbon Monoxide,TON
+37119,0.06561546,Sulfur Dioxide,TON
+37113,0.9017778,Pyrene,LB
+37113,1.5231552e-05,Chromium (VI),LB
+37113,2.336366,"2,2,4-Trimethylpentane",LB
+37113,40.11778,Acetaldehyde,LB
+37113,3.315574,Carbon Monoxide,TON
+37113,0.0370731,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.0002982034,Fluoranthene,LB
+37105,0.02183078,Benz[a]Anthracene,LB
+37105,0.03210554,Acenaphthene,LB
+37105,1.0319058,Naphthalene,LB
+37105,0.003691731,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.5792098,Toluene,LB
+37105,0.3927228,Acrolein,LB
+37105,0.014268044,Anthracene,LB
+37105,30.17894,Xylenes (Mixed Isomers),LB
+37105,0.01962404,"Benzo[g,h,i,]Perylene",LB
+37105,0.008385863,Ammonia,TON
+37093,0.02546542,Fluorene,LB
+37093,0.11721638,Ethyl Benzene,LB
+37093,0.281562,Acrolein,LB
+37093,0.012787592,Anthracene,LB
+37093,0.00010352894,"Dibenzo[a,h]Anthracene",LB
+37093,0.007967305,PM2.5 Primary (Filt + Cond),TON
+37089,0.01004317,Styrene,LB
+37089,0.006507334,Acrolein,LB
+37089,1.477249,Toluene,LB
+37089,0.00012523484,Benz[a]Anthracene,LB
+37089,2.340808e-06,Nickel,LB
+37089,3.589428e-06,Arsenic,LB
+37089,0.0004848957,Methane,TON
+37089,0.1233595,Carbon Monoxide,TON
+37089,0.0001535609,Nitrous Oxide,TON
+37089,8.909183e-05,Organic Carbon portion of PM2.5-PRI,TON
+37089,4.089609e-06,Sulfate Portion of PM2.5-PRI,TON
+37089,0.014201654,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.01057721,Benzo[b]Fluoranthene,LB
+37089,44.4974,Benzene,LB
+37089,0.0225888,Manganese,LB
+37089,0.0015777876,Nickel,LB
+37089,0.002419218,Arsenic,LB
+37089,11.123138,Acetaldehyde,LB
+37089,0.03755032,Acenaphthene,LB
+37089,0.07606262,Fluorene,LB
+37089,698.6155,Carbon Dioxide,TON
+37089,1.339182,Nitrogen Oxides,TON
+37073,0.0005725489,Nitrate portion of PM2.5-PRI,TON
+37073,0.02032246,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.01448574,Arsenic,LB
+37073,2037.66,Carbon Dioxide,TON
+37073,0.2840933,PM25-Primary from certain diesel engines,TON
+37085,0.7164166,Acenaphthene,LB
+37079,2.150446e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37079,9.048182e-05,Nitrous Oxide,TON
+37079,0.003667916,Acrolein,LB
+37067,0.019172912,Ethyl Benzene,LB
+37067,0.00019618238,Acenaphthylene,LB
+37067,3.023647e-05,Sulfate Portion of PM2.5-PRI,TON
+37067,0.02319,Volatile Organic Compounds,TON
+37063,1.227068,PM10-Primary from certain diesel engines,TON
+37063,17.97285,Nitrogen Oxides,TON
+37063,1.687901,PM10 Primary (Filt + Cond),TON
+37063,1.188174,PM2.5 Primary (Filt + Cond),TON
+37063,35.03514,Acrolein,LB
+37063,0.0211334,"Benzo[g,h,i,]Perylene",LB
+37063,0.6702252,Chrysene,LB
+37063,193.37544,Acetaldehyde,LB
+37063,0.1875179,Methane,TON
+37063,57.809,"1,3-Butadiene",LB
+37063,43.37736,Hexane,LB
+37063,4.864528,Anthracene,LB
+37063,9.710776,Pyrene,LB
+37063,42.35594,"2,2,4-Trimethylpentane",LB
+37063,1.655269,PM10-Primary from certain diesel engines,TON
+37063,0.04630364,Pyrene,LB
+37063,64.02962,Xylenes (Mixed Isomers),LB
+37063,0.01452484,Benzo[k]Fluoranthene,LB
+37063,0.1205704,Acenaphthylene,LB
+37063,0.013299458,Benz[a]Anthracene,LB
+37063,0.6103554,Styrene,LB
+37063,0.4989252,Propionaldehyde,LB
+37063,0.007863372,Manganese,LB
+37063,0.0010605622,Nickel,LB
+37063,0.14527886,Phenanthrene,LB
+37063,11.69986,Carbon Monoxide,TON
+37063,0.008223208,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,114.87224,Xylenes (Mixed Isomers),LB
+37067,0.018331858,Benzo[b]Fluoranthene,LB
+37067,49.85036,Benzene,LB
+37067,13.871846,Acetaldehyde,LB
+37067,0.0049398,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.001029616,Sulfate Portion of PM2.5-PRI,TON
+37065,0.001880478,Nitrate portion of PM2.5-PRI,TON
+37065,45.58936,Propionaldehyde,LB
+37065,4.832174,Pyrene,LB
+37065,0.7453429,PM25-Primary from certain diesel engines,TON
+37063,4.64918,Pyrene,LB
+37063,0.003102422,Chromium (VI),LB
+37063,3.310944,"Benzo[g,h,i,]Perylene",LB
+37063,2.771722,Acenaphthene,LB
+37063,2.101624,Methane,TON
+37063,0.3037131,Elemental Carbon portion of PM2.5-PRI,TON
+37063,1.18064,Sulfur Dioxide,TON
+37047,0.3436742,Hexane,LB
+37047,0.13656204,Pyrene,LB
+37047,0.000597971,"Benzo[g,h,i,]Perylene",LB
+37047,0.002879132,Benzo[b]Fluoranthene,LB
+37047,13.672302,Formaldehyde,LB
+37047,0.004756356,Methane,TON
+37047,0.0002729566,Nitrous Oxide,TON
+37047,0.002987114,Ammonia,TON
+37047,0.04619036,PM10 Primary (Filt + Cond),TON
+37199,0.1110639,Benzo[a]Pyrene,LB
+37199,0.0091418,Arsenic,LB
+37199,75.38718,Acetaldehyde,LB
+37199,0.5258902,Acenaphthene,LB
+37199,0.006158306,Nitrous Oxide,TON
+37199,6.562349,Nitrogen Oxides,TON
+37199,0.158295,Organic Carbon portion of PM2.5-PRI,TON
+37195,16.339576,"2,2,4-Trimethylpentane",LB
+37195,0.02428646,PM10 Primary (Filt + Cond),TON
+37195,0.0004230578,Sulfate Portion of PM2.5-PRI,TON
+37183,0.6525384,Benzo[a]Pyrene,LB
+37183,574.5146,Benzene,LB
+37183,671.2886,Naphthalene,LB
+37183,7.96996,PM10 Primary (Filt + Cond),TON
+37181,0.9793378,"1,3-Butadiene",LB
+37181,4.02864e-07,Chromium (VI),LB
+37181,0.003357932,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.06510836,Chrysene,LB
+37179,26.84128,Benzene,LB
+37179,0.02284472,Organic Carbon portion of PM2.5-PRI,TON
+37019,6.175326,Pyrene,LB
+37019,3.551924,Acenaphthylene,LB
+37019,326.312,Acetaldehyde,LB
+37019,2.114158,Acenaphthene,LB
+37019,4.575066,Fluorene,LB
+37013,27.5212,Acrolein,LB
+37013,1.1867176,Anthracene,LB
+37013,2.566642,Fluoranthene,LB
+37013,0.477582,Chrysene,LB
+37013,9.436036,"2,2,4-Trimethylpentane",LB
+37013,32.96922,Benzene,LB
+37013,153.6979,Acetaldehyde,LB
+37013,0.01390562,Nitrous Oxide,TON
+37013,1.24523,PM10 Primary (Filt + Cond),TON
+37013,0.03372279,Sulfate Portion of PM2.5-PRI,TON
+37019,43.02054,Pyrene,LB
+37019,400191.5,Carbon Dioxide,TON
+37019,740.0387,Nitrogen Oxides,TON
+37011,0.03445288,Acenaphthylene,LB
+37011,0.014801968,Benz[a]Anthracene,LB
+37011,0.0004306134,Arsenic,LB
+37011,0.04445812,Fluorene,LB
+37011,0.01802276,Elemental Carbon portion of PM2.5-PRI,TON
+37011,8.69318e-07,Chromium (VI),LB
+37011,0.00158288,Benz[a]Anthracene,LB
+37011,2.25051,Carbon Monoxide,TON
+37011,0.0007190904,Sulfur Dioxide,TON
+37019,0.003826424,Nickel,LB
+37019,5.881304,Toluene,LB
+37151,0.00443383,Arsenic,LB
+37151,0.00419442,Fluorene,LB
+37151,0.01775813,Methane,TON
+37151,0.1722083,Nitrogen Oxides,TON
+37135,0.002343302,Fluorene,LB
+37135,0.06047118,Naphthalene,LB
+37135,0.01123454,Methane,TON
+37135,257.5171,Carbon Dioxide,TON
+37135,0.0008554516,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.003026368,Nitrous Oxide,TON
+37135,1.8852214,Formaldehyde,LB
+37135,0.002182752,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.0001635288,Sulfate Portion of PM2.5-PRI,TON
+37159,0.12384848,Fluorene,LB
+37159,0.03446273,Methane,TON
+37159,1006.221,Carbon Dioxide,TON
+37159,0.9254379,Volatile Organic Compounds,TON
+37159,162.69766,Toluene,LB
+37141,4.004438,Benzo[b]Fluoranthene,LB
+37141,22.52684,Fluoranthene,LB
+37141,4.044472,Chrysene,LB
+37141,5.13655,Benzo[a]Pyrene,LB
+37141,0.11661864,Mercury,LB
+37141,31.41182,Fluorene,LB
+37141,805.1144,Naphthalene,LB
+37141,6.716524,Nitrous Oxide,TON
+37141,2.950689,Organic Carbon portion of PM2.5-PRI,TON
+37137,4.077642e-07,Nitrate portion of PM2.5-PRI,TON
+37137,9.482976e-09,Chromium (VI),LB
+37137,0.8992772,Acetaldehyde,LB
+37123,0.13723496,Ethyl Benzene,LB
+37123,0.01070823,PM2.5 Primary (Filt + Cond),TON
+37123,0.0003075336,Sulfate Portion of PM2.5-PRI,TON
+37123,0.0001117212,Benzo[k]Fluoranthene,LB
+37123,0.10329832,"2,2,4-Trimethylpentane",LB
+37123,0.013560136,Acenaphthene,LB
+37123,0.2251957,Nitrogen Oxides,TON
+37121,0.001828796,PM2.5 Primary (Filt + Cond),TON
+37121,0.010325648,Ethyl Benzene,LB
+37121,0.00014939604,Acenaphthylene,LB
+37199,0.02068928,"1,3-Butadiene",LB
+37199,0.003298134,Acrolein,LB
+37191,0.00215189,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,1.413643,Acenaphthylene,LB
+37191,0.03885354,Manganese,LB
+37191,2063.18,Carbon Dioxide,TON
+37191,0.1859978,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.2670698,PM2.5 Primary (Filt + Cond),TON
+37191,6.94431,Hexane,LB
+37191,0.6989888,Anthracene,LB
+37187,14.031198,Toluene,LB
+37181,91.63834,Toluene,LB
+37181,0.013933076,"Benzo[g,h,i,]Perylene",LB
+37181,0.0002689004,Mercury,LB
+37181,0.05622682,Arsenic,LB
+37181,3.106046,Fluorene,LB
+37181,15.86193,Carbon Monoxide,TON
+37181,0.3628822,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.2010086,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.18884922,Acrolein,LB
+37161,0.2279428,Toluene,LB
+37161,0.000280674,Fluoranthene,LB
+37161,4.408312e-05,Benz[a]Anthracene,LB
+37161,0.000318946,Arsenic,LB
+37161,0.0010374462,Naphthalene,LB
+37161,0.4559594,Methane,TON
+37161,0.6136483,Carbon Monoxide,TON
+37161,0.0004636637,Sulfur Dioxide,TON
+37157,0.0005893596,Chromium (VI),LB
+37157,0.2403628,Benzo[k]Fluoranthene,LB
+37157,910.9732,Benzene,LB
+37157,4.99454,Phenanthrene,LB
+37157,1.864824,Fluorene,LB
+37157,187.1398,Carbon Monoxide,TON
+37157,0.08295944,Elemental Carbon portion of PM2.5-PRI,TON
+37157,23.13149,Nitrogen Oxides,TON
+37157,0.1096152,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,1.231641,Nitrogen Oxides,TON
+37151,0.6392264,Acrolein,LB
+37151,0.005060586,Manganese,LB
+37151,11.282144,Acetaldehyde,LB
+37151,1.7696766,Naphthalene,LB
+37151,15.0167,Carbon Monoxide,TON
+37149,193.1928,Styrene,LB
+37149,5496.196,Hexane,LB
+37149,9.080364,"Benzo[g,h,i,]Perylene",LB
+37149,7906.838,Benzene,LB
+37149,0.05109354,Mercury,LB
+37149,0.009893649,Nitrate portion of PM2.5-PRI,TON
+37149,0.8565065,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.012827174,Manganese,LB
+37145,0.0006421244,Mercury,LB
+37145,0.00800747,Nickel,LB
+37145,0.9427898,Phenanthrene,LB
+37145,0.0001882583,Nitrate portion of PM2.5-PRI,TON
+37145,0.06459563,PM2.5 Primary (Filt + Cond),TON
+37145,7.153975,Volatile Organic Compounds,TON
+37135,0.5870438,Styrene,LB
+37135,0.0009033147,Sulfate Portion of PM2.5-PRI,TON
+37133,13.715954,"Benzo[g,h,i,]Perylene",LB
+37133,3.45825,Benzo[k]Fluoranthene,LB
+37133,3.201868,Chrysene,LB
+37133,2.396734,Nickel,LB
+37133,0.01855495,Nitrate portion of PM2.5-PRI,TON
+37133,2.817673,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,242.8998,Acetaldehyde,LB
+37125,21.5138,Carbon Monoxide,TON
+37125,2.136492,PM10-Primary from certain diesel engines,TON
+37125,0.2988671,Ammonia,TON
+37125,0.005254483,Nitrate portion of PM2.5-PRI,TON
+37117,0.000215669,Nickel,LB
+37117,0.002660484,Acenaphthene,LB
+37117,57.55113,Carbon Dioxide,TON
+37117,0.001791083,Nitrous Oxide,TON
+37117,0.1520695,Nitrogen Oxides,TON
+37117,0.001206222,Sulfur Dioxide,TON
+37123,2.33008,Ethyl Benzene,LB
+37123,1.7614476,Hexane,LB
+37123,0.2486792,Anthracene,LB
+37123,1.3975628e-05,Chromium (VI),LB
+37123,0.00373826,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.00200549,"Dibenzo[a,h]Anthracene",LB
+37123,0.008613248,Nickel,LB
+37123,0.02523265,Methane,TON
+37123,0.1960696,PM10-Primary from certain diesel engines,TON
+37123,0.08345498,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.09509594,Acrolein,LB
+37123,4.841758,Hexane,LB
+37123,0.001799111,Benzo[k]Fluoranthene,LB
+37123,7.037052e-06,Nitrate portion of PM2.5-PRI,TON
+37123,0.001275893,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.000554216,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.1072385,Volatile Organic Compounds,TON
+37123,2.263296,Benz[a]Anthracene,LB
+37123,8459.854,Benzene,LB
+37123,450.1574,Naphthalene,LB
+37123,2013.507,Carbon Monoxide,TON
+37123,1.512051,Organic Carbon portion of PM2.5-PRI,TON
+37115,4.478752,Fluorene,LB
+37115,114.84228,Naphthalene,LB
+37115,0.2736338,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.03232041,Sulfate Portion of PM2.5-PRI,TON
+37115,1.902495,Anthracene,LB
+37115,5394.89,Xylenes (Mixed Isomers),LB
+37115,1.1100428,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.0001986337,Sulfate Portion of PM2.5-PRI,TON
+37099,29.23746,Toluene,LB
+37099,0.009613312,Anthracene,LB
+37099,0.02277388,Fluorene,LB
+37099,0.5837748,Naphthalene,LB
+37099,0.004776813,Nitrous Oxide,TON
+37099,0.002707295,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.5495712,Styrene,LB
+37095,3.284448,Acrolein,LB
+37095,0.007143594,Benzo[b]Fluoranthene,LB
+37095,0.0009944926,Benzo[k]Fluoranthene,LB
+37095,0.2141644,Acenaphthylene,LB
+37095,18.432962,Acetaldehyde,LB
+37095,0.1161883,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.0121916,Sulfur Dioxide,TON
+37095,0.933407,Nitrogen Oxides,TON
+37095,0.07184296,Volatile Organic Compounds,TON
+37095,0.03910314,Anthracene,LB
+37095,11.688606,Formaldehyde,LB
+37095,0.2790478,"2,2,4-Trimethylpentane",LB
+37095,0.017995952,Benz[a]Anthracene,LB
+37095,0.12614682,Phenanthrene,LB
+37095,0.001883256,Methane,TON
+37095,0.02567859,PM25-Primary from certain diesel engines,TON
+37091,18.78692,Propionaldehyde,LB
+37091,20.85128,Xylenes (Mixed Isomers),LB
+37091,0.0017044234,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.0486066,Nickel,LB
+37091,1.172416,Acenaphthene,LB
+37091,19.43165,Carbon Monoxide,TON
+37091,73.22647,Carbon Dioxide,TON
+37089,0.04432518,Anthracene,LB
+37089,0.12357584,Pyrene,LB
+37089,0.002576988,Benzo[b]Fluoranthene,LB
+37089,0.016871356,Chrysene,LB
+37089,0.002718896,Manganese,LB
+37089,0.15121482,Phenanthrene,LB
+37089,0.08858492,Fluorene,LB
+37089,0.02766479,PM25-Primary from certain diesel engines,TON
+37089,0.01057354,Elemental Carbon portion of PM2.5-PRI,TON
+37089,17.35788,Carbon Monoxide,TON
+37089,15.86924,Acrolein,LB
+37089,18.018752,Toluene,LB
+37089,19.583178,Xylenes (Mixed Isomers),LB
+37089,0.00205416,"Benzo[g,h,i,]Perylene",LB
+37089,0.0465638,Chrysene,LB
+37087,0.7121854,Anthracene,LB
+37087,2.003608,Pyrene,LB
+37087,0.02709686,Ammonia,TON
+37087,9.024244,Nitrogen Oxides,TON
+37073,0.006895018,Phenanthrene,LB
+37073,0.002049515,PM10 Primary (Filt + Cond),TON
+37073,0.02597327,Volatile Organic Compounds,TON
+37073,0.16477,"1,3-Butadiene",LB
+37073,0.0013001888,"Benzo[g,h,i,]Perylene",LB
+37081,319.2107,Volatile Organic Compounds,TON
+37065,0.02725924,Elemental Carbon portion of PM2.5-PRI,TON
+37065,1.9617644,Acrolein,LB
+37065,1.9291958,Toluene,LB
+37065,9.750836e-06,Mercury,LB
+37063,0.003358614,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,5.462508,Benzene,LB
+37063,0.29917,PM25-Primary from certain diesel engines,TON
+37063,0.19536,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.0007822463,Nitrate portion of PM2.5-PRI,TON
+37059,0.4556202,Acenaphthylene,LB
+37059,0.008621706,Arsenic,LB
+37053,5.453436,Ethyl Benzene,LB
+37053,11.155292,Toluene,LB
+37053,0.0007756804,Benzo[k]Fluoranthene,LB
+37053,0.1274963,Benz[a]Anthracene,LB
+37053,1.4634978,Phenanthrene,LB
+37053,17.992694,Naphthalene,LB
+37053,0.1751632,PM25-Primary from certain diesel engines,TON
+37041,5.25803e-06,Mercury,LB
+37041,4.37077e-07,Nickel,LB
+37041,3.642925e-07,Nitrate portion of PM2.5-PRI,TON
+37041,0.00330799,PM10 Primary (Filt + Cond),TON
+37041,0.02182485,PM2.5 Primary (Filt + Cond),TON
+37041,0.94263,Acrolein,LB
+37035,1.7389016,Ethyl Benzene,LB
+37035,3.982608,Toluene,LB
+37035,0.5055526,Pyrene,LB
+37035,0.001569378,Benzo[k]Fluoranthene,LB
+37035,0.03278784,Manganese,LB
+37035,1.7617878e-05,Mercury,LB
+37035,0.2521433,PM10-Primary from certain diesel engines,TON
+37035,0.02034815,Ammonia,TON
+37035,0.2483352,PM2.5 Primary (Filt + Cond),TON
+37033,0.0001359566,Arsenic,LB
+37033,29.23997,Carbon Dioxide,TON
+37033,0.01187542,PM25-Primary from certain diesel engines,TON
+37033,0.005137245,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.2027525,Nitrogen Oxides,TON
+37033,0.05795994,Organic Carbon portion of PM2.5-PRI,TON
+37033,3.67656,Toluene,LB
+37033,3.54336,Xylenes (Mixed Isomers),LB
+37033,57.32644,Formaldehyde,LB
+37033,0.0016896632,"Dibenzo[a,h]Anthracene",LB
+37033,5.493332,Benzene,LB
+37033,7.434648e-06,Mercury,LB
+37033,0.19651754,Acenaphthene,LB
+37033,0.01603694,Methane,TON
+37029,0.0002891646,Chrysene,LB
+37029,0.3132954,Formaldehyde,LB
+37029,0.00014548468,Arsenic,LB
+37029,0.05138534,Naphthalene,LB
+37125,3.449122,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,7.253808,Acenaphthene,LB
+37125,0.01160791,Nitrate portion of PM2.5-PRI,TON
+37125,160.1047,Volatile Organic Compounds,TON
+37121,1.6360906e-07,Chromium (VI),LB
+37121,0.006304932,Fluoranthene,LB
+37121,3.420112,"2,2,4-Trimethylpentane",LB
+37121,0.0012541092,Benz[a]Anthracene,LB
+37121,0.0005104599,Elemental Carbon portion of PM2.5-PRI,TON
+37111,13924.748,Toluene,LB
+37111,6238.778,Xylenes (Mixed Isomers),LB
+37111,3257.75,"2,2,4-Trimethylpentane",LB
+37101,32.48744,Naphthalene,LB
+37101,0.0003988263,Nitrate portion of PM2.5-PRI,TON
+37101,8.590024,"1,3-Butadiene",LB
+37101,14.546492,Propionaldehyde,LB
+37101,1.1110064,Fluoranthene,LB
+37101,0.00013106826,Mercury,LB
+37103,0.16455804,Hexane,LB
+37103,0.4036222,Xylenes (Mixed Isomers),LB
+37103,0.0002942726,"Benzo[g,h,i,]Perylene",LB
+37103,9.997957e-05,Methane,TON
+37103,0.0001601041,PM2.5 Primary (Filt + Cond),TON
+37103,0.00321782,Volatile Organic Compounds,TON
+37101,45.77078,Ethyl Benzene,LB
+37101,69.0913,Hexane,LB
+37101,0.0446756,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.4252762,Acenaphthylene,LB
+37101,44.03314,"2,2,4-Trimethylpentane",LB
+37101,0.006872472,Arsenic,LB
+37101,0.0373367,Sulfur Dioxide,TON
+37101,0.00201968,Sulfate Portion of PM2.5-PRI,TON
+37099,3.636649,Carbon Dioxide,TON
+37099,1.466918e-06,Nitrate portion of PM2.5-PRI,TON
+37099,0.0001213525,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.012702674,Styrene,LB
+37099,1.8601242,Toluene,LB
+37099,0.4090076,Hexane,LB
+37095,0.0009959282,Propionaldehyde,LB
+37095,4.960974e-05,"Benzo[g,h,i,]Perylene",LB
+37095,0.04176328,"2,2,4-Trimethylpentane",LB
+37095,5.434948e-08,Nitrate portion of PM2.5-PRI,TON
+37095,1.971396e-05,PM2.5 Primary (Filt + Cond),TON
+37095,5.035546e-07,Sulfate Portion of PM2.5-PRI,TON
+37091,0.7722598,Benzo[b]Fluoranthene,LB
+37091,0.58411,Manganese,LB
+37073,11.605138,Toluene,LB
+37075,3.31067,Xylenes (Mixed Isomers),LB
+37075,1.39544e-05,Chromium (VI),LB
+37075,0.6763736,Phenanthrene,LB
+37075,790.5366,Carbon Dioxide,TON
+37075,0.2455631,PM2.5 Primary (Filt + Cond),TON
+37075,0.3184664,Volatile Organic Compounds,TON
+37071,0.17526302,Anthracene,LB
+37071,0.3233554,"Benzo[g,h,i,]Perylene",LB
+37071,0.01588314,Nickel,LB
+37071,10.53174,Naphthalene,LB
+37071,0.0004220051,Nitrate portion of PM2.5-PRI,TON
+37071,9.600573,Nitrogen Oxides,TON
+37071,0.1681348,PM2.5 Primary (Filt + Cond),TON
+37059,1.3033108,Styrene,LB
+37059,2.91569,"1,3-Butadiene",LB
+37059,0.274527,Anthracene,LB
+37059,0.6491112,Pyrene,LB
+37059,0.002297798,"Benzo[g,h,i,]Perylene",LB
+37059,0.06748792,Chrysene,LB
+37059,0.00242262,Arsenic,LB
+37059,0.188084,PM25-Primary from certain diesel engines,TON
+37059,0.01975802,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,2.014042e-05,Chromium (VI),LB
+37055,0.08874178,Fluorene,LB
+37055,4.739959e-05,Nitrate portion of PM2.5-PRI,TON
+37055,1.707723,Nitrogen Oxides,TON
+37055,0.01730051,Sulfur Dioxide,TON
+37055,0.8037313,Volatile Organic Compounds,TON
+37055,11079.346,Toluene,LB
+37051,0.11625872,Toluene,LB
+37051,2.35796e-05,Anthracene,LB
+37051,0.0001963897,Naphthalene,LB
+37051,0.0001480378,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.644171,Propionaldehyde,LB
+37039,0.0002685022,"Dibenzo[a,h]Anthracene",LB
+37039,10.831284,Acetaldehyde,LB
+37037,0.781421,Ethyl Benzene,LB
+37037,0.6003354,Hexane,LB
+37037,0.11626596,Acenaphthylene,LB
+37037,0.04979672,Benz[a]Anthracene,LB
+37037,770.3026,Carbon Dioxide,TON
+37029,2.096598,Benzene,LB
+37029,0.2028106,Nitrogen Oxides,TON
+37029,0.001885308,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.005141917,PM2.5 Primary (Filt + Cond),TON
+37057,15894.274,Xylenes (Mixed Isomers),LB
+37057,944.709,Benzene,LB
+37053,0.05924604,Arsenic,LB
+37053,1.535589,PM10 Primary (Filt + Cond),TON
+37053,81.39186,Toluene,LB
+37053,0.03426566,Benzo[b]Fluoranthene,LB
+37053,5.676818,Fluoranthene,LB
+37053,30.86442,"2,2,4-Trimethylpentane",LB
+37053,0.9246766,Benz[a]Anthracene,LB
+37045,57.1277,Acrolein,LB
+37045,3.616036,Acenaphthylene,LB
+37045,0.000382681,Mercury,LB
+37045,23.29251,Carbon Monoxide,TON
+37045,2.060702,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.007464467,Nitrate portion of PM2.5-PRI,TON
+37043,0.2408658,Toluene,LB
+37043,0.0006902398,Benzo[b]Fluoranthene,LB
+37043,0.01437022,PM25-Primary from certain diesel engines,TON
+37043,0.01511277,PM2.5 Primary (Filt + Cond),TON
+37043,0.001689577,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,30992.8,Toluene,LB
+37039,16.27378,Pyrene,LB
+37039,0.00493388,Chromium (VI),LB
+37037,19.003646,Ethyl Benzene,LB
+37027,15.096994,Hexane,LB
+37027,60.47924,Xylenes (Mixed Isomers),LB
+37027,0.0002364106,Chromium (VI),LB
+37027,24529.09,Carbon Dioxide,TON
+37027,0.3599672,Ammonia,TON
+37011,40.58896,Toluene,LB
+37011,0.012021994,Benzo[b]Fluoranthene,LB
+37011,0.1214835,Ammonia,TON
+37011,0.0008592681,Nitrate portion of PM2.5-PRI,TON
+37011,11.83735,Nitrogen Oxides,TON
+37011,0.02999824,Sulfur Dioxide,TON
+37005,17.24516,Ethyl Benzene,LB
+37005,0.0011299624,Benzo[k]Fluoranthene,LB
+37005,0.3266464,Benz[a]Anthracene,LB
+37005,49.3173,Benzene,LB
+37005,0.1560636,Methane,TON
+37005,0.3233394,PM25-Primary from certain diesel engines,TON
+37005,0.000635946,Nitrate portion of PM2.5-PRI,TON
+37005,0.4180139,PM10 Primary (Filt + Cond),TON
+37005,0.0004882598,Benzo[a]Pyrene,LB
+37005,0.4885334,"2,2,4-Trimethylpentane",LB
+37005,1.4636028,Toluene,LB
+37005,1.078972,Carbon Monoxide,TON
+37005,0.09211148,Volatile Organic Compounds,TON
+37003,0.11914206,Xylenes (Mixed Isomers),LB
+37003,6.937376e-05,Chrysene,LB
+37003,8.14653e-07,Nitrate portion of PM2.5-PRI,TON
+37003,0.001363386,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.741385,Benz[a]Anthracene,LB
+37001,10.59425,Carbon Monoxide,TON
+37001,2103.308,Carbon Dioxide,TON
+37001,0.01021791,Nitrous Oxide,TON
+37001,0.01826693,Sulfur Dioxide,TON
+37001,0.01814567,Sulfate Portion of PM2.5-PRI,TON
+37001,1.0868242,Anthracene,LB
+37001,3.09252,Pyrene,LB
+37001,0.4337248,Chrysene,LB
+37001,22.18602,Toluene,LB
+37177,57.82648,Formaldehyde,LB
+37193,0.004627424,Benzo[b]Fluoranthene,LB
+37193,20.99042,Formaldehyde,LB
+37193,0.1474962,Fluorene,LB
+37193,0.7229132,Carbon Monoxide,TON
+37193,2.147255,Nitrogen Oxides,TON
+37193,0.1005207,PM2.5 Primary (Filt + Cond),TON
+37185,0.016339878,Styrene,LB
+37185,0.0006487422,Benzo[k]Fluoranthene,LB
+37185,0.0012193404,Benzo[a]Pyrene,LB
+37185,2.835618e-05,"Dibenzo[a,h]Anthracene",LB
+37185,0.668807,"2,2,4-Trimethylpentane",LB
+37185,0.001126745,Nitrous Oxide,TON
+37185,4.178249e-06,Nitrate portion of PM2.5-PRI,TON
+37185,0.005012957,PM10 Primary (Filt + Cond),TON
+37185,0.04193715,Volatile Organic Compounds,TON
+37185,15.571012,Acetaldehyde,LB
+37185,0.02867904,Methane,TON
+37185,0.4453678,Styrene,LB
+37185,2.752926,Acrolein,LB
+37185,0.9414954,Hexane,LB
+37185,0.08335686,Anthracene,LB
+37185,1.492348e-05,Chromium (VI),LB
+37185,0.000364878,"Benzo[g,h,i,]Perylene",LB
+37185,0.0015013094,Benzo[a]Pyrene,LB
+37185,4.683722,Ethyl Benzene,LB
+37185,0.853944,"1,3-Butadiene",LB
+37185,29.56404,Toluene,LB
+37185,0.0202927,"Benzo[g,h,i,]Perylene",LB
+37185,0.03145634,Acenaphthylene,LB
+37185,2.170748,Acetaldehyde,LB
+37185,0.01211627,PM10 Primary (Filt + Cond),TON
+37185,0.000235878,Sulfate Portion of PM2.5-PRI,TON
+37185,0.1430079,Volatile Organic Compounds,TON
+37191,0.00018585328,Chromium (VI),LB
+37191,0.02550484,"Benzo[g,h,i,]Perylene",LB
+37191,0.8035596,Chrysene,LB
+37191,57.8556,Benzene,LB
+37191,16.433702,Hexane,LB
+37191,5.68018,Pyrene,LB
+37191,0.0771925,Sulfate Portion of PM2.5-PRI,TON
+37187,0.015572926,Chrysene,LB
+37187,0.0002890162,Nitrous Oxide,TON
+37187,0.0001422145,Nitrate portion of PM2.5-PRI,TON
+37183,21.45902,Ethyl Benzene,LB
+37179,8.01629e-05,Fluoranthene,LB
+37179,0.017757826,Formaldehyde,LB
+37179,2.656304e-05,Benzo[a]Pyrene,LB
+37179,0.0012354222,Styrene,LB
+37179,0.0009771946,Propionaldehyde,LB
+37019,0.3644042,Acrolein,LB
+37019,6.300956,Formaldehyde,LB
+37019,0.004956468,Manganese,LB
+37019,0.019514904,Acenaphthene,LB
+37019,206.9748,Carbon Dioxide,TON
+37019,0.008445343,PM2.5 Primary (Filt + Cond),TON
+37015,0.00415763,PM10-Primary from certain diesel engines,TON
+37015,0.01312425,PM10 Primary (Filt + Cond),TON
+37009,0.1413193,Nitrogen Oxides,TON
+37009,0.08897202,Hexane,LB
+37009,0.002232018,Benzo[a]Pyrene,LB
+37009,0.1165644,Ethyl Benzene,LB
+37001,0.018376202,Benzo[b]Fluoranthene,LB
+37001,2.481186,Acenaphthylene,LB
+37001,0.06160522,Benzo[a]Pyrene,LB
+37001,0.00010974534,Mercury,LB
+37001,198.51202,Acetaldehyde,LB
+37001,4.105792,Phenanthrene,LB
+37001,50.04086,Naphthalene,LB
+37001,0.4861472,PM25-Primary from certain diesel engines,TON
+37001,9.932085,Nitrogen Oxides,TON
+37001,0.027753,Sulfur Dioxide,TON
+37063,0.003939944,Nitrous Oxide,TON
+37063,0.008434077,Sulfur Dioxide,TON
+37063,0.0001714046,Sulfate Portion of PM2.5-PRI,TON
+37063,0.03631842,Styrene,LB
+37063,0.15973566,"1,3-Butadiene",LB
+37025,0.04501632,Nitrous Oxide,TON
+37025,0.02829784,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.002002318,Sulfate Portion of PM2.5-PRI,TON
+37025,0.02170446,Benzo[k]Fluoranthene,LB
+37025,10.683914,Ethyl Benzene,LB
+37025,43.794,Toluene,LB
+37025,0.04090716,Benzo[a]Pyrene,LB
+37017,4.52099,Styrene,LB
+37017,0.015051634,"Benzo[g,h,i,]Perylene",LB
+37017,0.01887278,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.07412332,Benzo[b]Fluoranthene,LB
+37017,2.51851,Fluoranthene,LB
+37017,340.6226,Formaldehyde,LB
+37017,0.1001254,Ammonia,TON
+37009,2.97537,Toluene,LB
+37009,0.07862702,Anthracene,LB
+37009,0.00679948,Nickel,LB
+37009,191.3243,Carbon Dioxide,TON
+37009,0.004566259,PM10-Primary from certain diesel engines,TON
+37009,0.2441944,Nitrogen Oxides,TON
+37005,1.1051524,Ethyl Benzene,LB
+37005,0.257513,Pyrene,LB
+37005,0.004715666,Benzo[b]Fluoranthene,LB
+37005,2.999728e-06,Mercury,LB
+37005,14.217368,Acetaldehyde,LB
+37005,0.3469718,Phenanthrene,LB
+37005,3.566324,Naphthalene,LB
+37005,0.0563124,PM2.5 Primary (Filt + Cond),TON
+37059,0.0010651238,Fluoranthene,LB
+37059,0.0006713458,Benzo[k]Fluoranthene,LB
+37059,0.0012543466,Benzo[a]Pyrene,LB
+37059,2.916542e-05,"Dibenzo[a,h]Anthracene",LB
+37059,0.003534842,Phenanthrene,LB
+37059,4.62899e-06,Nitrate portion of PM2.5-PRI,TON
+37059,0.006843314,PM10 Primary (Filt + Cond),TON
+37013,0.0018156888,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.001793934,Benzo[a]Pyrene,LB
+37013,1.359683,Carbon Monoxide,TON
+37169,9.75511e-07,Chromium (VI),LB
+37169,0.0006405044,Acenaphthylene,LB
+37169,0.2544484,Formaldehyde,LB
+37169,0.15173536,"2,2,4-Trimethylpentane",LB
+37169,9.77925e-06,Mercury,LB
+37169,0.000186971,Arsenic,LB
+37169,0.00013865486,Acenaphthene,LB
+37169,17.04765,Carbon Dioxide,TON
+37169,0.0003990094,PM2.5 Primary (Filt + Cond),TON
+37169,0.00051819,Sulfur Dioxide,TON
+37115,0.00410977,Manganese,LB
+37115,0.00304039,Acenaphthene,LB
+37115,0.004995888,Nitrous Oxide,TON
+37115,1.713154,Ethyl Benzene,LB
+37115,0.005724106,Pyrene,LB
+37115,1.5778294e-05,Chromium (VI),LB
+37115,0.014013266,Acenaphthylene,LB
+37177,5.48651e-05,Arsenic,LB
+37177,3.598504e-05,Acenaphthene,LB
+37177,0.00187721,Nitrous Oxide,TON
+37177,0.0354955,Toluene,LB
+37177,0.06873637,Nitrogen Oxides,TON
+37177,1.006675e-05,Sulfate Portion of PM2.5-PRI,TON
+37195,36.47706,Propionaldehyde,LB
+37195,0.016426438,"Dibenzo[a,h]Anthracene",LB
+37195,0.0338853,Nitrous Oxide,TON
+37195,4.901029,PM10 Primary (Filt + Cond),TON
+37195,4.586094,Fluoranthene,LB
+37189,0.000670777,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,3.507224e-05,Mercury,LB
+37189,0.001978438,Phenanthrene,LB
+37189,0.2055196,Ethyl Benzene,LB
+37189,0.010108216,Styrene,LB
+37189,0.05300228,"1,3-Butadiene",LB
+37185,0.004682798,Nitrous Oxide,TON
+37185,0.2444377,Nitrogen Oxides,TON
+37185,0.003661975,PM2.5 Primary (Filt + Cond),TON
+37185,0.8413558,Propionaldehyde,LB
+37191,4.355368,Xylenes (Mixed Isomers),LB
+37191,0.002304684,"Benzo[g,h,i,]Perylene",LB
+37191,0.004109568,Arsenic,LB
+37191,5.516266,Naphthalene,LB
+37191,0.03589841,Methane,TON
+37191,0.2065223,PM10 Primary (Filt + Cond),TON
+37191,1.48579,"1,3-Butadiene",LB
+37181,23.8604,Toluene,LB
+37181,8.273184,Hexane,LB
+37181,0.0203275,Arsenic,LB
+37181,3.89364,Phenanthrene,LB
+37181,0.3577546,Elemental Carbon portion of PM2.5-PRI,TON
+37181,1.228955,PM10 Primary (Filt + Cond),TON
+37181,0.1479396,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.3866656,Volatile Organic Compounds,TON
+37039,3.209932,Xylenes (Mixed Isomers),LB
+37157,0.3320576,Hexane,LB
+37157,0.7278358,Xylenes (Mixed Isomers),LB
+37157,0.000604598,Fluoranthene,LB
+37157,0.0007414178,Benzo[a]Pyrene,LB
+37157,0.0003422742,Benz[a]Anthracene,LB
+37157,0.984231,Benzene,LB
+37157,4.360774,Acetaldehyde,LB
+37157,0.0004791409,Organic Carbon portion of PM2.5-PRI,TON
+37161,6.07861,Xylenes (Mixed Isomers),LB
+37161,1.4942988,Benzene,LB
+37145,2.038456,Xylenes (Mixed Isomers),LB
+37145,0.0006157288,Chrysene,LB
+37145,0.04857286,Naphthalene,LB
+37145,0.008266592,PM10 Primary (Filt + Cond),TON
+37125,2.355002,Ethyl Benzene,LB
+37125,2.192914,Hexane,LB
+37125,0.1800438,Volatile Organic Compounds,TON
+37177,0.4192362,Acenaphthylene,LB
+37177,0.02572246,Chrysene,LB
+37177,0.0008152704,Mercury,LB
+37177,0.04113256,PM2.5 Primary (Filt + Cond),TON
+37177,0.1534417,Pyrene,LB
+37177,8.132428e-05,Chromium (VI),LB
+37177,0.0944337,"Benzo[g,h,i,]Perylene",LB
+37175,0.161967,Styrene,LB
+37175,0.9163514,"1,3-Butadiene",LB
+37175,0.001671092,Benz[a]Anthracene,LB
+37175,7.211118,Benzene,LB
+37175,2.528651,Carbon Monoxide,TON
+37175,0.006051974,PM10 Primary (Filt + Cond),TON
+37175,0.0007389939,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,51.8848,Toluene,LB
+37163,3.653846,Acenaphthylene,LB
+37163,4.765446,Fluorene,LB
+37163,1.755704,PM25-Primary from certain diesel engines,TON
+37163,15.686618,"1,3-Butadiene",LB
+37163,5.035896,Pyrene,LB
+37163,0.0225344,"Benzo[g,h,i,]Perylene",LB
+37163,0.7131186,Chrysene,LB
+37163,0.015113984,"Dibenzo[a,h]Anthracene",LB
+37163,1.5958884,Acenaphthene,LB
+37163,13.70765,Carbon Monoxide,TON
+37163,0.5216529,Organic Carbon portion of PM2.5-PRI,TON
+37163,2.234953,PM2.5 Primary (Filt + Cond),TON
+37163,0.06348135,Sulfur Dioxide,TON
+37163,110.7503,Acrolein,LB
+37163,7.620398,Pyrene,LB
+37163,0.004659388,"Dibenzo[a,h]Anthracene",LB
+37163,0.9893446,Benz[a]Anthracene,LB
+37163,131.69728,Benzene,LB
+37163,0.2142794,Nickel,LB
+37163,12.342362,Phenanthrene,LB
+37163,87.48571,Carbon Monoxide,TON
+37173,0.04587758,Chrysene,LB
+37173,0.3690926,Fluorene,LB
+37173,6.16275,Naphthalene,LB
+37173,0.007502694,Ammonia,TON
+37173,4.82707,Nitrogen Oxides,TON
+37173,0.1646183,PM10 Primary (Filt + Cond),TON
+37185,18819.5,Toluene,LB
+37185,12731.328,Xylenes (Mixed Isomers),LB
+37185,1.61092,Benzo[k]Fluoranthene,LB
+37185,310.9464,Naphthalene,LB
+37185,1439.756,Carbon Monoxide,TON
+37185,4.123789,PM10 Primary (Filt + Cond),TON
+37185,0.5490962,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.05634042,Benzo[k]Fluoranthene,LB
+37181,6.90777,"1,3-Butadiene",LB
+37181,2.342424,Nitrogen Oxides,TON
+37001,13.899336,Hexane,LB
+37001,0.07204226,Acenaphthylene,LB
+37001,0.013581128,Chrysene,LB
+37001,0.0007763606,"Dibenzo[a,h]Anthracene",LB
+37001,192.42902,Acetaldehyde,LB
+37127,0.0007120572,Anthracene,LB
+37127,0.00227958,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.0011659656,Benzo[k]Fluoranthene,LB
+37127,0.002247688,Benzo[a]Pyrene,LB
+37127,0.004278236,Phenanthrene,LB
+37127,1.124279,Carbon Monoxide,TON
+37127,0.0005659821,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.001524658,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.7677524,Propionaldehyde,LB
+37101,0.006448238,Pyrene,LB
+37101,0.00807553,Benzo[a]Pyrene,LB
+37101,0.005825234,Nickel,LB
+37177,0.003121676,Naphthalene,LB
+37177,0.02777948,Carbon Monoxide,TON
+37177,2.898007e-05,Nitrous Oxide,TON
+37161,0.0001098222,Nickel,LB
+37161,0.9834868,Naphthalene,LB
+37161,0.0001593712,Sulfate Portion of PM2.5-PRI,TON
+37161,0.408318,Propionaldehyde,LB
+37161,45.39178,Xylenes (Mixed Isomers),LB
+37161,0.007880742,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.4950814,"1,3-Butadiene",LB
+37151,0.05520656,Anthracene,LB
+37151,0.8128354,Propionaldehyde,LB
+37151,1.0237432,Xylenes (Mixed Isomers),LB
+37151,0.1894832,Phenanthrene,LB
+37151,0.005714533,Methane,TON
+37151,0.3118458,Carbon Monoxide,TON
+37151,0.001073713,Sulfate Portion of PM2.5-PRI,TON
+37139,0.006455535,PM2.5 Primary (Filt + Cond),TON
+37139,0.001094023,Sulfate Portion of PM2.5-PRI,TON
+37139,0.1583229,Volatile Organic Compounds,TON
+37139,1.0613492,Ethyl Benzene,LB
+37139,0.06322184,Anthracene,LB
+37139,1.3861966,Propionaldehyde,LB
+37139,0.005820688,Chrysene,LB
+37139,33.1949,Formaldehyde,LB
+37139,0.005824672,Nickel,LB
+37141,10.1275,Acrolein,LB
+37141,3.146326,Hexane,LB
+37141,7.561832,Xylenes (Mixed Isomers),LB
+37141,0.0019414438,Benzo[k]Fluoranthene,LB
+37141,0.0019360908,"Dibenzo[a,h]Anthracene",LB
+37141,3.043764,"2,2,4-Trimethylpentane",LB
+37141,0.03475208,Manganese,LB
+37141,1.3278518,Phenanthrene,LB
+37131,44.82188,Formaldehyde,LB
+37131,154.40618,Benzene,LB
+37125,2.463136,Propionaldehyde,LB
+37125,53.67674,Formaldehyde,LB
+37125,0.11334352,Benz[a]Anthracene,LB
+37121,0.03292204,Acrolein,LB
+37121,7.60912e-07,Chromium (VI),LB
+37121,0.002403268,Fluoranthene,LB
+37121,0.0006672654,Benzo[a]Pyrene,LB
+37121,1.5298108e-05,"Dibenzo[a,h]Anthracene",LB
+37121,1.4982334,"2,2,4-Trimethylpentane",LB
+37121,7.62821e-06,Mercury,LB
+37121,0.001201365,Ammonia,TON
+37121,0.03322034,Volatile Organic Compounds,TON
+37111,4.959942,Fluoranthene,LB
+37111,0.3376064,Benzo[a]Pyrene,LB
+37111,222.9486,Xylenes (Mixed Isomers),LB
+37111,0.0004863542,Mercury,LB
+37111,0.10169452,Arsenic,LB
+37111,0.0334428,Nitrous Oxide,TON
+37111,0.3250273,Sulfur Dioxide,TON
+37157,1.694807,Ethyl Benzene,LB
+37157,51.93552,Formaldehyde,LB
+37157,0.6078748,Phenanthrene,LB
+37157,3.364554,"1,3-Butadiene",LB
+37157,8.381352,Xylenes (Mixed Isomers),LB
+37157,0.0015893774,Benzo[b]Fluoranthene,LB
+37157,0.578472,Fluorene,LB
+37157,529.8976,Carbon Dioxide,TON
+37157,0.855236,Nitrogen Oxides,TON
+37157,0.004576335,Sulfur Dioxide,TON
+37157,0.002137368,Sulfate Portion of PM2.5-PRI,TON
+37157,0.0016227002,Benzo[b]Fluoranthene,LB
+37157,0.007834268,Fluoranthene,LB
+37157,0.0015615292,Chrysene,LB
+37157,0.005340286,Acenaphthene,LB
+37157,0.003794603,PM10 Primary (Filt + Cond),TON
+37153,37.2591,Benzene,LB
+37153,0.00011973616,Mercury,LB
+37153,1.2542698,Acenaphthene,LB
+37153,0.04421444,Sulfur Dioxide,TON
+37153,0.0004921046,Benzo[k]Fluoranthene,LB
+37153,0.08784062,Acenaphthylene,LB
+37153,0.02297012,Chrysene,LB
+37153,1.5391802,Benzene,LB
+37153,0.008366552,Manganese,LB
+37153,0.5160566,"1,3-Butadiene",LB
+37153,5.86189e-06,Chromium (VI),LB
+37153,0.11437178,Fluorene,LB
+37153,0.003833401,Sulfur Dioxide,TON
+37151,0.5498488,Acenaphthene,LB
+37151,19.184362,Naphthalene,LB
+37151,0.004150686,"Benzo[g,h,i,]Perylene",LB
+37151,0.9241942,Acenaphthylene,LB
+37151,2.383072,Styrene,LB
+37149,1.0992264,Ethyl Benzene,LB
+37149,0.02873074,Acrolein,LB
+37149,0.03815088,Propionaldehyde,LB
+37149,0.001057343,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,1.3042932e-05,Nickel,LB
+37149,1.9998424e-05,Arsenic,LB
+37149,0.5784848,Acetaldehyde,LB
+37149,0.6361,Carbon Monoxide,TON
+37149,0.0002299358,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,143.23394,Acrolein,LB
+37147,118.02536,Toluene,LB
+37147,10.13734,Acenaphthylene,LB
+37147,0.0003600182,Mercury,LB
+37147,1.629031,PM10-Primary from certain diesel engines,TON
+37147,1.498614,PM25-Primary from certain diesel engines,TON
+37147,11195.066,"2,2,4-Trimethylpentane",LB
+37147,0.1747866,Mercury,LB
+37147,19.97657,Ammonia,TON
+37147,3.358266,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.00716702,Pyrene,LB
+37139,0.2248222,Naphthalene,LB
+37139,0.001701069,Ammonia,TON
+37139,0.0008735207,Organic Carbon portion of PM2.5-PRI,TON
+37135,921.3534,Ethyl Benzene,LB
+37135,36.87378,Styrene,LB
+37135,1219.8536,Hexane,LB
+37135,1.3482544,Anthracene,LB
+37135,483.712,Formaldehyde,LB
+37135,0.4968064,Benz[a]Anthracene,LB
+37135,81.54664,Naphthalene,LB
+37135,0.02455697,Sulfate Portion of PM2.5-PRI,TON
+37131,0.1167069,Hexane,LB
+37131,0.04540716,Pyrene,LB
+37131,0.02577162,Acenaphthylene,LB
+37131,0.003167032,Benzo[a]Pyrene,LB
+37131,49.24904,Carbon Dioxide,TON
+37131,0.004427639,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.0003631814,Pyrene,LB
+37131,0.0004947654,"Benzo[g,h,i,]Perylene",LB
+37131,1.3562188e-05,Arsenic,LB
+37131,0.01109847,Nitrogen Oxides,TON
+37123,0.2015806,Styrene,LB
+37123,11.398318,Hexane,LB
+37123,0.01470216,Pyrene,LB
+37123,0.012916778,Fluoranthene,LB
+37123,1.9073894e-05,Mercury,LB
+37123,2.74843,Acetaldehyde,LB
+37123,0.01177041,PM10 Primary (Filt + Cond),TON
+37115,0.1233884,Acrolein,LB
+37115,27.22666,Toluene,LB
+37115,0.004532108,PM10 Primary (Filt + Cond),TON
+37115,0.003248162,PM2.5 Primary (Filt + Cond),TON
+37115,0.0002700713,Sulfur Dioxide,TON
+37115,0.1356878,Volatile Organic Compounds,TON
+37115,2.137128,Benz[a]Anthracene,LB
+37115,0.03576482,Mercury,LB
+37115,164.0821,Propionaldehyde,LB
+37115,2.088412,Benzo[b]Fluoranthene,LB
+37115,2.088412,Benzo[k]Fluoranthene,LB
+37115,1.437626,Organic Carbon portion of PM2.5-PRI,TON
+37115,1.439939,Sulfur Dioxide,TON
+37115,129.3664,Volatile Organic Compounds,TON
+37113,6.156462,Carbon Monoxide,TON
+37113,501.9009,Carbon Dioxide,TON
+37113,1.0837504,Styrene,LB
+37113,0.2018334,Anthracene,LB
+37113,7.992048,Xylenes (Mixed Isomers),LB
+37113,0.0008470116,"Benzo[g,h,i,]Perylene",LB
+37113,0.000212594,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,92.45794,Formaldehyde,LB
+37113,0.04343236,Benz[a]Anthracene,LB
+37113,0.015713836,Manganese,LB
+37113,0.07256286,Methane,TON
+37109,16.181368,Toluene,LB
+37109,16.300336,Xylenes (Mixed Isomers),LB
+37109,0.0315918,Manganese,LB
+37109,0.2426992,PM2.5 Primary (Filt + Cond),TON
+37109,0.0139565,Sulfur Dioxide,TON
+37109,1.325276,Volatile Organic Compounds,TON
+37109,529.8248,Styrene,LB
+37109,3095.202,"1,3-Butadiene",LB
+37109,19.154442,"Benzo[g,h,i,]Perylene",LB
+37109,5.677766,Benzo[k]Fluoranthene,LB
+37109,5.751286,Chrysene,LB
+37109,0.12541134,Mercury,LB
+37109,2.380387,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.2122391,Sulfate Portion of PM2.5-PRI,TON
+37099,3.04092,Chrysene,LB
+37099,3482.934,Formaldehyde,LB
+37099,22.5591,Fluorene,LB
+37099,4.997945,PM2.5 Primary (Filt + Cond),TON
+37089,0.725806,Hexane,LB
+37089,0.09190114,Anthracene,LB
+37089,0.0008439304,Benzo[k]Fluoranthene,LB
+37089,0.03086896,Organic Carbon portion of PM2.5-PRI,TON
+37081,257.74,Acrolein,LB
+37081,10.517086,Anthracene,LB
+37081,306.97,Xylenes (Mixed Isomers),LB
+37081,2.210832,Benzo[a]Pyrene,LB
+37081,0.09049718,"Dibenzo[a,h]Anthracene",LB
+37081,9.626604,Acenaphthene,LB
+37081,21.34238,Fluorene,LB
+37081,53246.09,Carbon Dioxide,TON
+37081,18.1991,Volatile Organic Compounds,TON
+37077,73.25594,Toluene,LB
+37077,50.28216,"2,2,4-Trimethylpentane",LB
+37077,0.06403696,Nickel,LB
+37077,0.09818986,Arsenic,LB
+37077,0.6491172,Acenaphthene,LB
+37077,158.3499,Carbon Monoxide,TON
+37077,0.007930505,Sulfate Portion of PM2.5-PRI,TON
+37077,380.8164,Ethyl Benzene,LB
+37077,12.381404,Acrolein,LB
+37077,200.5416,Formaldehyde,LB
+37069,3.556876,Ethyl Benzene,LB
+37069,0.07493724,Benzo[a]Pyrene,LB
+37069,0.00356354,Arsenic,LB
+37069,0.003994674,Nitrous Oxide,TON
+37069,3.673597,Nitrogen Oxides,TON
+37069,0.04557537,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.3149296,Xylenes (Mixed Isomers),LB
+37065,1.8576142e-05,"Benzo[g,h,i,]Perylene",LB
+37065,2.46206e-05,Mercury,LB
+37065,0.000561961,Fluorene,LB
+37065,0.6845783,Methane,TON
+37065,0.4355056,Nitrogen Oxides,TON
+37067,4.687914,Xylenes (Mixed Isomers),LB
+37067,0.00961366,Acenaphthylene,LB
+37067,0.683922,Formaldehyde,LB
+37067,1.5656384,"2,2,4-Trimethylpentane",LB
+37067,0.00066504,Benz[a]Anthracene,LB
+37067,0.0002160878,Manganese,LB
+37067,2.739598e-05,Arsenic,LB
+37067,0.6094933,Carbon Monoxide,TON
+37067,0.0002053129,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.0002694263,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,25.26684,Ethyl Benzene,LB
+37051,0.014454462,Benzo[b]Fluoranthene,LB
+37051,0.01115499,Manganese,LB
+37051,0.00010855316,Mercury,LB
+37051,0.0243219,Methane,TON
+37051,491.3954,Carbon Dioxide,TON
+37051,0.06635168,PM10 Primary (Filt + Cond),TON
+37051,0.8039347,Volatile Organic Compounds,TON
+37143,2503.074,Toluene,LB
+37143,442.7928,Hexane,LB
+37117,2.355084,Hexane,LB
+37117,4.970316,Propionaldehyde,LB
+37117,0.03348908,Chrysene,LB
+37117,0.3069878,Acenaphthene,LB
+37117,0.8301616,Phenanthrene,LB
+37117,0.07338711,Elemental Carbon portion of PM2.5-PRI,TON
+37117,1.979623,Nitrogen Oxides,TON
+37117,0.1291034,PM10 Primary (Filt + Cond),TON
+37111,0.03303868,Fluorene,LB
+37111,0.006167406,Ammonia,TON
+37111,0.03007417,PM10 Primary (Filt + Cond),TON
+37111,0.01908291,PM2.5 Primary (Filt + Cond),TON
+37111,67.54074,Toluene,LB
+37111,0.009733412,Benz[a]Anthracene,LB
+37121,100.03548,Acrolein,LB
+37121,8.79794,Pyrene,LB
+37121,0.2511504,Nickel,LB
+37121,28.86332,Phenanthrene,LB
+37121,909.0349,Carbon Monoxide,TON
+37121,125.3155,Nitrogen Oxides,TON
+37121,0.3784345,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.1700677,PM10 Primary (Filt + Cond),TON
+37115,0.1349678,PM2.5 Primary (Filt + Cond),TON
+37115,7.288544e-06,Mercury,LB
+37115,0.00605645,Nickel,LB
+37115,0.19102264,Acenaphthene,LB
+37115,0.02873891,Methane,TON
+37115,0.1428838,PM10-Primary from certain diesel engines,TON
+37115,0.006583381,Ammonia,TON
+37115,10.5848,Acrolein,LB
+37115,1.3972346,Pyrene,LB
+37115,0.007665118,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.3340872,Benz[a]Anthracene,LB
+37115,0.6612572,PM10-Primary from certain diesel engines,TON
+37115,0.002631017,Nitrous Oxide,TON
+37115,0.7906171,PM10 Primary (Filt + Cond),TON
+37115,0.6252421,PM2.5 Primary (Filt + Cond),TON
+37113,0.18639792,Acrolein,LB
+37113,0.0001177616,Anthracene,LB
+37113,2.39393e-08,Chromium (VI),LB
+37113,5.221106e-05,Sulfate Portion of PM2.5-PRI,TON
+37099,0.0811311,Acrolein,LB
+37099,4.362724,Benzene,LB
+37099,0.002023566,Manganese,LB
+37099,0.008189532,Fluorene,LB
+37099,8.039904e-05,Sulfate Portion of PM2.5-PRI,TON
+37099,0.07301527,Volatile Organic Compounds,TON
+37095,0.497178,Acrolein,LB
+37095,36.0498,Hexane,LB
+37095,0.011248058,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,31.82404,"2,2,4-Trimethylpentane",LB
+37095,5.727356,Acetaldehyde,LB
+37095,0.02442719,Ammonia,TON
+37079,0.1236301,Styrene,LB
+37079,0.106525,Propionaldehyde,LB
+37079,0.0019051854,Benzo[b]Fluoranthene,LB
+37079,0.01048203,Fluorene,LB
+37079,0.2150267,Nitrogen Oxides,TON
+37079,0.006059345,PM10 Primary (Filt + Cond),TON
+37081,35.53226,"1,3-Butadiene",LB
+37081,3.928576,Anthracene,LB
+37081,58.84512,Propionaldehyde,LB
+37081,0.821192,Benzo[a]Pyrene,LB
+37081,35.55867,Carbon Monoxide,TON
+37081,2.653545,PM25-Primary from certain diesel engines,TON
+37081,1.153413,Organic Carbon portion of PM2.5-PRI,TON
+37057,191.16754,Toluene,LB
+37057,0.03997842,Anthracene,LB
+37057,115.22436,Xylenes (Mixed Isomers),LB
+37057,15.06838,Formaldehyde,LB
+37057,0.0002707588,Arsenic,LB
+37057,15.119204,Acetaldehyde,LB
+37057,0.01777133,Nitrous Oxide,TON
+37057,0.003520841,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,3.330548,Ethyl Benzene,LB
+37055,5.512756,Propionaldehyde,LB
+37055,0.013176184,Benzo[b]Fluoranthene,LB
+37055,9.574494,Benzene,LB
+37055,0.0362105,Manganese,LB
+37055,0.01619051,Ammonia,TON
+37055,7.236403,Nitrogen Oxides,TON
+37055,0.5965125,Volatile Organic Compounds,TON
+37053,7.422184,Ethyl Benzene,LB
+37053,32.50598,Toluene,LB
+37053,1.145398,Volatile Organic Compounds,TON
+37049,0.017911,Nitrous Oxide,TON
+37049,3.716476e-06,Nitrate portion of PM2.5-PRI,TON
+37049,0.004658486,Pyrene,LB
+37049,0.0001669978,"Benzo[g,h,i,]Perylene",LB
+37049,0.002445222,Fluoranthene,LB
+37049,5.649392,Pyrene,LB
+37049,33.0965,Xylenes (Mixed Isomers),LB
+37049,48.48188,Benzene,LB
+37049,9094.344,Carbon Dioxide,TON
+37049,0.06353051,Sulfate Portion of PM2.5-PRI,TON
+37035,34.53456,"1,3-Butadiene",LB
+37035,101.67346,Toluene,LB
+37035,0.2098036,Benzo[b]Fluoranthene,LB
+37035,0.02909818,"Dibenzo[a,h]Anthracene",LB
+37035,0.3364411,Sulfate Portion of PM2.5-PRI,TON
+37035,6.553139,Volatile Organic Compounds,TON
+37013,0.000222174,Mercury,LB
+37013,0.4755699,Methane,TON
+37013,0.003368057,Nitrate portion of PM2.5-PRI,TON
+37013,13.450074,Ethyl Benzene,LB
+37013,16.698206,Propionaldehyde,LB
+37013,2.651532,Pyrene,LB
+37013,44.59134,Xylenes (Mixed Isomers),LB
+37013,0.011433974,"Benzo[g,h,i,]Perylene",LB
+37013,8.753318,Ethyl Benzene,LB
+37013,3.976924,Styrene,LB
+37013,16.486274,Toluene,LB
+37013,1.0200972,Anthracene,LB
+37013,14.5338,Propionaldehyde,LB
+37013,0.4325506,Chrysene,LB
+37013,261.4784,Formaldehyde,LB
+37013,0.005588597,Nitrous Oxide,TON
+37013,0.3189847,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.1439578,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,472.0608,Formaldehyde,LB
+37021,0.01150773,"Dibenzo[a,h]Anthracene",LB
+37021,0.3663428,Benzo[b]Fluoranthene,LB
+37021,0.08297344,Arsenic,LB
+37021,268.8789,Carbon Monoxide,TON
+37021,0.001478559,Nitrate portion of PM2.5-PRI,TON
+37021,12.80195,Nitrogen Oxides,TON
+37005,0.011938606,Chrysene,LB
+37005,0.01893639,Methane,TON
+37005,0.002759609,Nitrous Oxide,TON
+37005,0.5755781,Nitrogen Oxides,TON
+37005,0.000498431,Sulfate Portion of PM2.5-PRI,TON
+37005,0.03571654,Anthracene,LB
+37085,30.3862,Toluene,LB
+37085,12.910708,Xylenes (Mixed Isomers),LB
+37049,12.246708,"2,2,4-Trimethylpentane",LB
+37049,10.832264,Hexane,LB
+37049,0.06160088,"Benzo[g,h,i,]Perylene",LB
+37049,0.010585802,Benz[a]Anthracene,LB
+37049,31.1924,Benzene,LB
+37049,0.011075544,Acenaphthene,LB
+37049,0.06298946,Phenanthrene,LB
+37049,0.02681,Nitrous Oxide,TON
+37113,323.9748,Ethyl Benzene,LB
+37113,1191.4354,Xylenes (Mixed Isomers),LB
+37113,553.8948,Benzene,LB
+37113,0.0596807,Arsenic,LB
+37113,1.140853,Fluorene,LB
+37113,29.23954,Naphthalene,LB
+37113,0.3534954,Methane,TON
+37113,108.7575,Carbon Monoxide,TON
+37113,0.3944836,Ammonia,TON
+37113,0.2131638,PM2.5 Primary (Filt + Cond),TON
+37113,0.1205063,Sulfur Dioxide,TON
+37099,1.1360224,Anthracene,LB
+37099,3.123428,Pyrene,LB
+37099,0.7224982,Benz[a]Anthracene,LB
+37099,0.06927708,Nickel,LB
+37099,11.34099,Carbon Monoxide,TON
+37099,0.9663231,Elemental Carbon portion of PM2.5-PRI,TON
+37099,2.028313,Volatile Organic Compounds,TON
+37095,0.0002686796,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,3.585316,Benzene,LB
+37095,0.1249552,Acenaphthene,LB
+37095,0.005628826,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.002283466,Sulfur Dioxide,TON
+37095,1.2646622,Ethyl Benzene,LB
+37095,0.5444746,Styrene,LB
+37095,1.2316136,"1,3-Butadiene",LB
+37083,1.1931254e-05,Benz[a]Anthracene,LB
+37083,0.0003358468,Acrolein,LB
+37083,0.05587008,Toluene,LB
+37083,0.018811356,Benzene,LB
+37083,0.0009840498,Naphthalene,LB
+37073,3.080636,Naphthalene,LB
+37073,1.124248,Carbon Monoxide,TON
+37073,0.003665636,Ammonia,TON
+37073,0.01520778,Organic Carbon portion of PM2.5-PRI,TON
+37073,2.241798,Acrolein,LB
+37073,5.876246e-06,Chromium (VI),LB
+37073,0.1716914,Fluoranthene,LB
+37065,6980.488,Ethyl Benzene,LB
+37065,8648.278,Hexane,LB
+37065,1.2813158,Arsenic,LB
+37065,137427.7,Carbon Dioxide,TON
+37061,0.0002809202,Benzo[k]Fluoranthene,LB
+37061,0.1216128,Phenanthrene,LB
+37061,0.003705262,Methane,TON
+37061,0.002266307,Ammonia,TON
+37051,1.855586,Methane,TON
+37051,7.90278,PM10-Primary from certain diesel engines,TON
+37051,189.73622,Xylenes (Mixed Isomers),LB
+37051,0.0007903394,Chromium (VI),LB
+37049,39961.08,Xylenes (Mixed Isomers),LB
+37049,26.1048,Fluoranthene,LB
+37049,81.73816,Acenaphthylene,LB
+37049,4.737882,Chrysene,LB
+37049,5571.346,Formaldehyde,LB
+37049,4129.406,Carbon Monoxide,TON
+37035,4.821306,Phenanthrene,LB
+37035,7420.852,Toluene,LB
+37035,0.001015778,Nitrate portion of PM2.5-PRI,TON
+37035,31.56756,Volatile Organic Compounds,TON
+37035,4.041444,Acenaphthylene,LB
+37027,0.007179856,Acenaphthene,LB
+37027,0.2830324,Nitrogen Oxides,TON
+37027,0.005589774,"Benzo[g,h,i,]Perylene",LB
+37027,0.003365389,PM2.5 Primary (Filt + Cond),TON
+37027,0.1423437,Volatile Organic Compounds,TON
+37027,0.16714114,Styrene,LB
+37027,28.94514,Toluene,LB
+37027,0.01185984,Pyrene,LB
+37027,0.001402368,Methane,TON
+37027,0.3865248,Carbon Monoxide,TON
+37027,0.001202948,PM10 Primary (Filt + Cond),TON
+37027,4.180394,Toluene,LB
+37027,0.0018053988,Fluoranthene,LB
+37027,0.01878619,Acrolein,LB
+37045,2.520536,Acrolein,LB
+37045,1.640064,Propionaldehyde,LB
+37045,1.1623432e-05,Chromium (VI),LB
+37045,3.020562,Benzene,LB
+37045,0.2214398,Fluorene,LB
+37039,0.4075826,"1,3-Butadiene",LB
+37039,0.003610376,"Benzo[g,h,i,]Perylene",LB
+37039,0.0013891068,Manganese,LB
+37039,71.01105,Carbon Dioxide,TON
+37039,0.0008596973,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.0003910928,Nitrate portion of PM2.5-PRI,TON
+37027,0.2575858,PM10 Primary (Filt + Cond),TON
+37027,874.3546,Hexane,LB
+37027,1883.4926,Xylenes (Mixed Isomers),LB
+37027,0.3501152,"Benzo[g,h,i,]Perylene",LB
+37027,0.1065293,Benz[a]Anthracene,LB
+37027,0.02479018,Arsenic,LB
+37007,0.019006114,Ethyl Benzene,LB
+37007,0.011658476,"1,3-Butadiene",LB
+37007,0.775032,Propionaldehyde,LB
+37007,0.09730278,Benzene,LB
+37007,7.384342e-07,Nickel,LB
+37007,0.001254321,Ammonia,TON
+37007,0.003581562,Elemental Carbon portion of PM2.5-PRI,TON
+37007,5.177678e-05,Nitrate portion of PM2.5-PRI,TON
+37007,0.004162823,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.314614,Acrolein,LB
+37007,0.00012150024,"Dibenzo[a,h]Anthracene",LB
+37007,0.09971524,"2,2,4-Trimethylpentane",LB
+37007,3.162088,Benzene,LB
+37007,0.006008962,Fluorene,LB
+37019,0.1641067,Methane,TON
+37019,0.337421,PM25-Primary from certain diesel engines,TON
+37019,0.0627482,Organic Carbon portion of PM2.5-PRI,TON
+37019,8.26579,Hexane,LB
+37019,0.12418704,Chrysene,LB
+37019,9.61415e-05,Mercury,LB
+37011,1.5572302,Pyrene,LB
+37011,0.006799668,"Benzo[g,h,i,]Perylene",LB
+37011,0.8831696,Acenaphthylene,LB
+37011,0.2127882,Chrysene,LB
+37011,0.04309668,Manganese,LB
+37011,0.5254912,Acenaphthene,LB
+37011,0.3983254,PM10-Primary from certain diesel engines,TON
+37009,0.006239216,"Benzo[g,h,i,]Perylene",LB
+37009,6.996968,Carbon Monoxide,TON
+37009,0.01059745,Nitrous Oxide,TON
+37009,0.001734943,Nitrate portion of PM2.5-PRI,TON
+37009,0.08776029,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.003151548,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.01323412,Fluoranthene,LB
+37009,0.00316705,Benzo[a]Pyrene,LB
+37009,0.0002268834,Arsenic,LB
+37009,0.001622339,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.186448,Propionaldehyde,LB
+37005,0.19648154,Anthracene,LB
+37005,0.5261866,Pyrene,LB
+37005,0.010329082,Benzo[b]Fluoranthene,LB
+37005,0.08384088,Methane,TON
+37005,0.290844,PM25-Primary from certain diesel engines,TON
+37005,0.1918667,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.003916069,Nitrous Oxide,TON
+37005,57.66734,Formaldehyde,LB
+37005,0.0001692027,Nitrate portion of PM2.5-PRI,TON
+37005,0.001322105,Sulfate Portion of PM2.5-PRI,TON
+37005,108.81282,Ethyl Benzene,LB
+37005,0.1633382,Anthracene,LB
+37005,3.817778,Propionaldehyde,LB
+37003,8.263554e-08,Chrysene,LB
+37003,1.245746e-07,Benzo[a]Pyrene,LB
+37003,8.58229e-08,Benz[a]Anthracene,LB
+37003,7.164714e-08,Manganese,LB
+37003,7.392822e-08,Organic Carbon portion of PM2.5-PRI,TON
+37003,3.952424e-06,Volatile Organic Compounds,TON
+37001,60.3913,Pyrene,LB
+37001,13.544578,Benzo[a]Pyrene,LB
+37001,73.47686,Fluorene,LB
+37001,7.533936,Organic Carbon portion of PM2.5-PRI,TON
+37001,620.648,Volatile Organic Compounds,TON
+37185,0.0003476736,PM2.5 Primary (Filt + Cond),TON
+37185,0.06416756,Ethyl Benzene,LB
+37185,0.00011174308,Acenaphthene,LB
+37185,0.0009512949,Ammonia,TON
+37055,0.0006758738,Benz[a]Anthracene,LB
+37055,7.780036,Acetaldehyde,LB
+37055,0.006122168,Methane,TON
+37055,0.005871166,Ammonia,TON
+37055,6.263742e-06,Nitrate portion of PM2.5-PRI,TON
+37055,0.01208775,PM10 Primary (Filt + Cond),TON
+37043,0.0005736216,Methane,TON
+37043,0.0004343479,Ammonia,TON
+37043,0.006818658,Acrolein,LB
+37043,0.06764822,"2,2,4-Trimethylpentane",LB
+37167,0.010000948,Styrene,LB
+37167,3.301066e-05,Mercury,LB
+37167,0.000631097,Arsenic,LB
+37167,0.003048561,Methane,TON
+37167,0.06651319,PM10 Primary (Filt + Cond),TON
+37167,0.02800756,Sulfur Dioxide,TON
+37167,4.390344,Ethyl Benzene,LB
+37167,0.9111584,"1,3-Butadiene",LB
+37167,5.030464e-05,Chromium (VI),LB
+37167,0.007335518,Benzo[b]Fluoranthene,LB
+37167,0.005704932,Chrysene,LB
+37167,16.04197,Formaldehyde,LB
+37175,0.003901195,PM2.5 Primary (Filt + Cond),TON
+37175,2.013096e-08,Chromium (VI),LB
+37175,1.2323854e-05,"Benzo[g,h,i,]Perylene",LB
+37173,2.168844,Styrene,LB
+37173,3.966184e-05,Chromium (VI),LB
+37173,0.11251284,"Benzo[g,h,i,]Perylene",LB
+37173,0.03008486,Benzo[k]Fluoranthene,LB
+37173,1.407672,Nitrogen Oxides,TON
+37173,0.01021795,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.001270196,Methane,TON
+37165,0.001283879,Nitrous Oxide,TON
+37165,0.0009054717,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.001595902,Sulfur Dioxide,TON
+37165,0.2184484,"1,3-Butadiene",LB
+37165,0.00349406,Fluoranthene,LB
+37165,0.0010308836,Chrysene,LB
+37027,16.694364,Toluene,LB
+37027,7.092986,Xylenes (Mixed Isomers),LB
+37173,1.677511e-06,Nitrate portion of PM2.5-PRI,TON
+37173,0.01366289,Volatile Organic Compounds,TON
+37173,0.429322,Xylenes (Mixed Isomers),LB
+37173,0.0004913866,Benzo[a]Pyrene,LB
+37173,1.1431422e-05,"Dibenzo[a,h]Anthracene",LB
+37173,0.2165264,"2,2,4-Trimethylpentane",LB
+37173,0.0004813598,Manganese,LB
+37153,0.006722188,Styrene,LB
+37153,0.001076393,Acenaphthylene,LB
+37153,0.0002092142,Chrysene,LB
+37153,0.448229,Formaldehyde,LB
+37153,0.682616,Benzene,LB
+37153,0.3470387,Carbon Monoxide,TON
+37153,0.0003451388,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.11556858,Ethyl Benzene,LB
+37123,0.000236269,Benzo[k]Fluoranthene,LB
+37123,1.0354504e-05,"Dibenzo[a,h]Anthracene",LB
+37123,0.0002002044,Acenaphthene,LB
+37123,0.0011434908,Phenanthrene,LB
+37123,0.000459333,Nitrous Oxide,TON
+37109,0.02255804,Nitrous Oxide,TON
+37109,0.02834088,PM2.5 Primary (Filt + Cond),TON
+37109,0.6962323,Volatile Organic Compounds,TON
+37109,9.44761,Hexane,LB
+37109,2.518552,Propionaldehyde,LB
+37109,7.375504e-05,Chromium (VI),LB
+37109,0.0198507,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.010561982,Benzo[b]Fluoranthene,LB
+37093,3.93846,Xylenes (Mixed Isomers),LB
+37175,0.05593073,Volatile Organic Compounds,TON
+37175,0.06570502,Styrene,LB
+37175,0.3605176,"1,3-Butadiene",LB
+37175,2.758216,Hexane,LB
+37175,0.004660742,Pyrene,LB
+37175,6074.444,Ethyl Benzene,LB
+37175,2.775228,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.7811842,Arsenic,LB
+37175,1.019049,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,170.8722,Volatile Organic Compounds,TON
+37167,0.008044834,Benzo[b]Fluoranthene,LB
+37167,0.17582194,Acenaphthylene,LB
+37167,0.9395774,"2,2,4-Trimethylpentane",LB
+37167,0.005008964,Nickel,LB
+37167,0.4238288,Phenanthrene,LB
+37167,0.8522721,Carbon Monoxide,TON
+37167,408.3134,Carbon Dioxide,TON
+37167,1.7367842,Propionaldehyde,LB
+37167,0.2163292,Styrene,LB
+37167,1.2860664,Acrolein,LB
+37167,0.8319176,Propionaldehyde,LB
+37167,5.358006e-06,Chromium (VI),LB
+37167,0.04079382,Benz[a]Anthracene,LB
+37167,0.002608242,Nickel,LB
+37167,7.208944,Acetaldehyde,LB
+37167,0.11321978,Fluorene,LB
+37167,0.05006776,Elemental Carbon portion of PM2.5-PRI,TON
+37159,40.23322,Ethyl Benzene,LB
+37159,3.719622,Anthracene,LB
+37159,0.0003196432,Chromium (VI),LB
+37159,5.734442,Acenaphthylene,LB
+37159,0.03178606,"Dibenzo[a,h]Anthracene",LB
+37159,2.551528,Benz[a]Anthracene,LB
+37159,3.412696,Acenaphthene,LB
+37159,7.5412,Fluorene,LB
+37159,28.22472,Carbon Monoxide,TON
+37159,2.63763,PM25-Primary from certain diesel engines,TON
+37159,0.04989482,Nitrous Oxide,TON
+37159,0.01385134,Nitrate portion of PM2.5-PRI,TON
+37149,29.63892,Toluene,LB
+37149,0.012938714,"Benzo[g,h,i,]Perylene",LB
+37149,1.958842,Acenaphthylene,LB
+37149,0.19811458,Benzo[a]Pyrene,LB
+37149,35.66508,Benzene,LB
+37149,0.1252359,Manganese,LB
+37149,1.769847,PM25-Primary from certain diesel engines,TON
+37151,1.4654474,Chrysene,LB
+37151,0.4701222,Manganese,LB
+37151,8.222636e-05,Chromium (VI),LB
+37151,1.3635204,Acenaphthylene,LB
+37151,0.014008678,Benzo[a]Pyrene,LB
+37151,2.190442,Phenanthrene,LB
+37139,5.619052,Acrolein,LB
+37139,0.6833678,Pyrene,LB
+37139,5.28994,Xylenes (Mixed Isomers),LB
+37139,6.717974,Benzene,LB
+37139,0.00206347,Arsenic,LB
+37139,0.2271534,Acenaphthene,LB
+37139,0.4886512,Fluorene,LB
+37139,0.1714606,PM10-Primary from certain diesel engines,TON
+37139,0.0008793136,Nitrate portion of PM2.5-PRI,TON
+37139,0.0683326,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.00012201042,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.0005213818,Fluoranthene,LB
+37199,0.000122658,Benzo[a]Pyrene,LB
+37199,2.800898e-06,"Dibenzo[a,h]Anthracene",LB
+37199,0.2283651,Carbon Monoxide,TON
+37199,0.0001514,Ammonia,TON
+37199,0.01258561,Nitrogen Oxides,TON
+37199,4.909084e-06,Sulfate Portion of PM2.5-PRI,TON
+37195,0.17462446,Propionaldehyde,LB
+37195,0.0014956654,Pyrene,LB
+37195,2.09198,Benzene,LB
+37195,0.0004916795,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.004363606,Sulfur Dioxide,TON
+37195,0.05035148,Volatile Organic Compounds,TON
+37197,1.7032014,Propionaldehyde,LB
+37197,0.0004242492,Mercury,LB
+37197,0.03421689,Sulfur Dioxide,TON
+37197,0.0240531,Fluoranthene,LB
+37197,0.005162964,Chrysene,LB
+37197,5.222698,Formaldehyde,LB
+37197,13.199978,"2,2,4-Trimethylpentane",LB
+37197,9.199572e-05,Nickel,LB
+37197,5.6697,Carbon Monoxide,TON
+37189,1.020905,Acrolein,LB
+37189,1.0357786,Toluene,LB
+37189,0.043911,Anthracene,LB
+37189,0.009460868,Benzo[a]Pyrene,LB
+37189,0.008619233,Methane,TON
+37189,0.05993888,PM10-Primary from certain diesel engines,TON
+37189,0.05514388,PM25-Primary from certain diesel engines,TON
+37187,6.208366e-05,Chromium (VI),LB
+37187,238.9802,Formaldehyde,LB
+37187,0.0265862,Manganese,LB
+37187,105.3993,Acetaldehyde,LB
+37187,0.1976914,PM25-Primary from certain diesel engines,TON
+37179,0.0004293154,Nitrate portion of PM2.5-PRI,TON
+37179,0.01437499,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,1.0870036,"1,3-Butadiene",LB
+37179,0.02466214,Benzo[a]Pyrene,LB
+37177,0.6694531,Carbon Monoxide,TON
+37177,0.001191832,PM25-Primary from certain diesel engines,TON
+37177,6.619613e-05,Nitrous Oxide,TON
+37177,0.06298693,Nitrogen Oxides,TON
+37177,0.003774058,PM10 Primary (Filt + Cond),TON
+37177,0.16729164,"1,3-Butadiene",LB
+37177,0.001547697,Chrysene,LB
+37177,5.88551,Formaldehyde,LB
+37177,1.4984364e-05,"Dibenzo[a,h]Anthracene",LB
+37173,14.480002,Acrolein,LB
+37173,14.311712,Xylenes (Mixed Isomers),LB
+37173,0.00797369,"Benzo[g,h,i,]Perylene",LB
+37173,0.009893254,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.2512806,Chrysene,LB
+37173,0.05603106,Ammonia,TON
+37173,0.1848629,Organic Carbon portion of PM2.5-PRI,TON
+37173,4.52109,Acrolein,LB
+37173,0.3040042,Pyrene,LB
+37173,3.973128,Xylenes (Mixed Isomers),LB
+37173,0.019168252,Chrysene,LB
+37173,0.005158558,Benzo[a]Pyrene,LB
+37173,0.0002129188,"Dibenzo[a,h]Anthracene",LB
+37173,0.01433754,Ammonia,TON
+37173,0.3304131,Volatile Organic Compounds,TON
+37041,7.153736,Ethyl Benzene,LB
+37041,0.0009183356,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.9249812,Fluoranthene,LB
+37041,0.012081372,Benzo[a]Pyrene,LB
+37041,0.13716504,Benz[a]Anthracene,LB
+37041,0.02802628,Nickel,LB
+37041,1.8778558,Phenanthrene,LB
+37041,0.167905,PM10-Primary from certain diesel engines,TON
+37041,0.1239185,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.1588302,PM2.5 Primary (Filt + Cond),TON
+37041,1.265521,Volatile Organic Compounds,TON
+37033,132.77744,Benzene,LB
+37033,0.006564076,Manganese,LB
+37033,0.0991533,Acenaphthene,LB
+37033,0.08499556,Anthracene,LB
+37033,0.16595926,Pyrene,LB
+37033,0.005454884,Nitrous Oxide,TON
+37033,0.05739577,PM10 Primary (Filt + Cond),TON
+37031,17.553804,Ethyl Benzene,LB
+37031,13.762056,Hexane,LB
+37031,4.198992,Pyrene,LB
+37031,0.3171354,Benzo[a]Pyrene,LB
+37031,0.490374,Manganese,LB
+37031,23668.35,Carbon Dioxide,TON
+37031,0.005749619,Nitrate portion of PM2.5-PRI,TON
+37031,0.356266,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,26976.84,Hexane,LB
+37025,50.31104,Fluoranthene,LB
+37025,25483.3,"2,2,4-Trimethylpentane",LB
+37025,69.87228,Fluorene,LB
+37025,2550.714,"1,3-Butadiene",LB
+37025,27.43566,Pyrene,LB
+37025,24.15668,"Benzo[g,h,i,]Perylene",LB
+37025,0.2083638,"Dibenzo[a,h]Anthracene",LB
+37025,3.31559,Nickel,LB
+37025,5.084082,Arsenic,LB
+37025,2.292002,Elemental Carbon portion of PM2.5-PRI,TON
+37025,45.50316,PM10 Primary (Filt + Cond),TON
+37025,4.876314,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.127424,Fluoranthene,LB
+37173,5.378612e-06,Mercury,LB
+37173,6.969248,Acetaldehyde,LB
+37173,0.1141516,Fluorene,LB
+37097,1.067808,Nitrogen Oxides,TON
+37097,0.01166513,Sulfur Dioxide,TON
+37097,1.8931252,"1,3-Butadiene",LB
+37097,0.03332668,Pyrene,LB
+37097,0.009144462,Benzo[b]Fluoranthene,LB
+37097,6.451612,Formaldehyde,LB
+37081,3.540209,Ammonia,TON
+37081,2.362563,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,169.13498,"1,3-Butadiene",LB
+37081,0.6916468,Benzo[b]Fluoranthene,LB
+37081,0.09683784,"Dibenzo[a,h]Anthracene",LB
+37081,4.463588,Toluene,LB
+37081,0.004889854,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.003340614,Fluoranthene,LB
+37081,6.697252e-05,Mercury,LB
+37081,0.0018543732,Acenaphthene,LB
+37081,424.2345,Carbon Dioxide,TON
+37077,0.018623706,"Benzo[g,h,i,]Perylene",LB
+37077,0.006922916,Benzo[a]Pyrene,LB
+37077,0.003483596,Benz[a]Anthracene,LB
+37077,0.003404616,Methane,TON
+37077,0.017331,PM10 Primary (Filt + Cond),TON
+37077,0.002403897,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.0002392559,Sulfate Portion of PM2.5-PRI,TON
+37075,0.3464334,Styrene,LB
+37075,2.406286,Benzene,LB
+37075,0.01447276,Methane,TON
+37075,0.001005596,Nitrous Oxide,TON
+37075,0.008412962,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.001092328,Sulfur Dioxide,TON
+37071,44.02248,"1,3-Butadiene",LB
+37071,112.26776,Toluene,LB
+37071,117.31318,Xylenes (Mixed Isomers),LB
+37071,17.448196,Phenanthrene,LB
+37071,3.466961,PM25-Primary from certain diesel engines,TON
+37071,0.01848075,Nitrate portion of PM2.5-PRI,TON
+37071,8.135058,Volatile Organic Compounds,TON
+37071,0.0009859524,Benzo[k]Fluoranthene,LB
+37071,3.940828e-05,"Dibenzo[a,h]Anthracene",LB
+37071,0.00073764,Manganese,LB
+37071,0.003285484,Fluorene,LB
+37071,68.20122,Carbon Dioxide,TON
+37071,1.1165222,Hexane,LB
+37063,1.3607792,"1,3-Butadiene",LB
+37063,0.9931444,Hexane,LB
+37063,0.00225341,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.2327932,Acenaphthylene,LB
+37063,17.495292,Acetaldehyde,LB
+37063,0.1024444,PM10-Primary from certain diesel engines,TON
+37063,0.0005094243,Nitrate portion of PM2.5-PRI,TON
+37057,5.721204,Volatile Organic Compounds,TON
+37057,0.1931128,Nickel,LB
+37057,0.11918398,Arsenic,LB
+37057,11.144208,Phenanthrene,LB
+37057,0.7728055,Organic Carbon portion of PM2.5-PRI,TON
+37057,18.11981,Propionaldehyde,LB
+37057,153.7248,Acetaldehyde,LB
+37057,38.65008,Naphthalene,LB
+37057,0.06609086,PM25-Primary from certain diesel engines,TON
+37055,5.991556,Fluorene,LB
+37055,153.6363,Naphthalene,LB
+37055,774.541,Carbon Monoxide,TON
+37055,0.9492519,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.8911634,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.03386038,"Dibenzo[a,h]Anthracene",LB
+37053,5.73764,"1,3-Butadiene",LB
+37053,2.488646,Propionaldehyde,LB
+37053,0.04574868,Benz[a]Anthracene,LB
+37053,0.01250849,Manganese,LB
+37053,0.3123972,Fluorene,LB
+37053,0.009217276,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.02151067,Sulfur Dioxide,TON
+37047,0.8025942,Fluoranthene,LB
+37047,0.002255976,Nitrous Oxide,TON
+37047,0.7797241,Volatile Organic Compounds,TON
+37039,0.0363514,Anthracene,LB
+37039,0.7776356,Xylenes (Mixed Isomers),LB
+37039,0.05581356,Acenaphthylene,LB
+37039,0.2728466,"2,2,4-Trimethylpentane",LB
+37039,0.03320366,Acenaphthene,LB
+37039,0.05131487,PM10-Primary from certain diesel engines,TON
+37039,0.03072211,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.003951373,Ammonia,TON
+37039,0.002034201,Sulfate Portion of PM2.5-PRI,TON
+37037,10.415136,Ethyl Benzene,LB
+37037,0.005447952,Benz[a]Anthracene,LB
+37037,0.002931212,Manganese,LB
+37037,0.000520652,Nickel,LB
+37037,4.57438,Acetaldehyde,LB
+37037,0.014216272,Acenaphthene,LB
+37037,171.455,Carbon Dioxide,TON
+37037,2.712665e-05,Nitrate portion of PM2.5-PRI,TON
+37037,0.6385102,Nitrogen Oxides,TON
+37029,0.0524608,Acrolein,LB
+37029,0.00010863278,Arsenic,LB
+37029,0.09273084,Methane,TON
+37029,0.000141399,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.003625336,PM10 Primary (Filt + Cond),TON
+37027,14.698734,Ethyl Benzene,LB
+37027,5.224204,Styrene,LB
+37027,39.96072,Xylenes (Mixed Isomers),LB
+37027,0.01191891,Benzo[k]Fluoranthene,LB
+37027,2.050484,Acenaphthylene,LB
+37027,0.2870248,Benzo[a]Pyrene,LB
+37027,0.9351744,Benz[a]Anthracene,LB
+37027,186.99956,Acetaldehyde,LB
+37027,13273.2,Carbon Dioxide,TON
+37173,0.005141914,Propionaldehyde,LB
+37173,2.711188e-05,Arsenic,LB
+37173,0.0986652,Acetaldehyde,LB
+37173,7.439686,Carbon Dioxide,TON
+37173,0.0007344268,PM10 Primary (Filt + Cond),TON
+37173,0.0002212695,PM2.5 Primary (Filt + Cond),TON
+37171,14105.39,Ethyl Benzene,LB
+37171,3242.97,"1,3-Butadiene",LB
+37171,25.7415,"Benzo[g,h,i,]Perylene",LB
+37171,5.794414,Sulfur Dioxide,TON
+37169,33.1481,Toluene,LB
+37165,25.18496,Naphthalene,LB
+37165,3698.714,Carbon Dioxide,TON
+37165,1.06669,PM25-Primary from certain diesel engines,TON
+37165,7.540112,Ethyl Benzene,LB
+37165,3.418892,Styrene,LB
+37165,13.611034,Xylenes (Mixed Isomers),LB
+37165,21.69172,Benzene,LB
+37165,0.09017312,Manganese,LB
+37163,3273.47,Hexane,LB
+37157,22.77478,Benzene,LB
+37157,147375.3,Carbon Dioxide,TON
+37157,214.9713,Nitrogen Oxides,TON
+37157,3.092013,Sulfur Dioxide,TON
+37157,39923.96,Toluene,LB
+37157,7.63031,Anthracene,LB
+37157,170.78252,Propionaldehyde,LB
+37157,13.128492,Fluoranthene,LB
+37157,4.626012,Benzo[a]Pyrene,LB
+37157,3233.668,Acetaldehyde,LB
+37157,206.5776,Styrene,LB
+37147,57.36586,Acrolein,LB
+37147,2.733892,Anthracene,LB
+37147,0.02559536,Benzo[k]Fluoranthene,LB
+37147,0.2476035,Methane,TON
+37147,3.457613,PM10-Primary from certain diesel engines,TON
+37147,3.180914,PM25-Primary from certain diesel engines,TON
+37147,4.752317,PM10 Primary (Filt + Cond),TON
+37147,0.08962225,Sulfate Portion of PM2.5-PRI,TON
+37145,0.013084342,"Benzo[g,h,i,]Perylene",LB
+37145,0.4124,Chrysene,LB
+37145,8.282944,"2,2,4-Trimethylpentane",LB
+37145,0.7039564,Benz[a]Anthracene,LB
+37145,89.42903,Volatile Organic Compounds,TON
+37145,18461.774,Toluene,LB
+37145,0.03673744,Mercury,LB
+37145,0.7023842,Arsenic,LB
+37129,75.73396,Propionaldehyde,LB
+37129,1.107656,Benzo[a]Pyrene,LB
+37129,0.17893378,Nickel,LB
+37129,785.6932,Acetaldehyde,LB
+37129,7.435419,PM2.5 Primary (Filt + Cond),TON
+37129,1.353879,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.2566106,Styrene,LB
+37129,0.5824816,"1,3-Butadiene",LB
+37129,1.4420234,Acrolein,LB
+37129,1.2870212,Toluene,LB
+37129,0.9609452,Propionaldehyde,LB
+37129,0.17988802,Pyrene,LB
+37129,0.0007939452,"Benzo[g,h,i,]Perylene",LB
+37129,0.003842982,Benzo[b]Fluoranthene,LB
+37129,0.1364747,Fluoranthene,LB
+37129,0.09922656,Acenaphthylene,LB
+37129,0.04278136,Benz[a]Anthracene,LB
+37129,0.005173638,Manganese,LB
+37129,0.008071472,Methane,TON
+37141,0.02917676,Chrysene,LB
+37141,0.1158083,PM10-Primary from certain diesel engines,TON
+37141,2.535807,Nitrogen Oxides,TON
+37141,0.01160832,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.02062964,Pyrene,LB
+37137,0.00010825886,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.0004252138,Benzo[b]Fluoranthene,LB
+37137,7.11606e-05,Arsenic,LB
+37137,0.004616982,PM25-Primary from certain diesel engines,TON
+37137,2.501627e-05,Nitrate portion of PM2.5-PRI,TON
+37137,0.001990621,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.001235921,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.6685894,Ethyl Benzene,LB
+37137,0.0745022,Pyrene,LB
+37137,2.252404e-05,"Dibenzo[a,h]Anthracene",LB
+37137,0.5885516,"2,2,4-Trimethylpentane",LB
+37131,2.11012,"1,3-Butadiene",LB
+37131,4.29794,Toluene,LB
+37131,0.230348,Anthracene,LB
+37131,6.101776,Benzene,LB
+37131,9.273398e-06,Mercury,LB
+37131,0.0019390314,Arsenic,LB
+37131,28.12542,Acetaldehyde,LB
+37131,0.4594354,Fluorene,LB
+37131,0.00837589,Ammonia,TON
+37131,0.003213528,Sulfate Portion of PM2.5-PRI,TON
+37131,0.1246654,Methane,TON
+37131,0.02857811,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,29.33004,Xylenes (Mixed Isomers),LB
+37131,0.006586754,"Benzo[g,h,i,]Perylene",LB
+37131,0.011877644,Benzo[b]Fluoranthene,LB
+37131,2.186954,Fluoranthene,LB
+37131,0.001640132,"Dibenzo[a,h]Anthracene",LB
+37125,18.178596,Ethyl Benzene,LB
+37113,0.08807658,PM10 Primary (Filt + Cond),TON
+37113,6.808344e-06,Chromium (VI),LB
+37113,0.000760719,Benzo[k]Fluoranthene,LB
+37113,23.43982,Formaldehyde,LB
+37113,6.84698e-06,Mercury,LB
+37113,0.0717736,Acenaphthene,LB
+37113,0.2870782,Phenanthrene,LB
+37113,0.01237686,Methane,TON
+37113,0.007127857,Ammonia,TON
+37109,138.31126,"1,3-Butadiene",LB
+37109,0.0006867376,Chromium (VI),LB
+37109,1.3991048,Fluoranthene,LB
+37109,952.4838,Benzene,LB
+37109,331.632,Acetaldehyde,LB
+37109,202.0147,Carbon Monoxide,TON
+37109,12311.79,Carbon Dioxide,TON
+37109,16.37022,Volatile Organic Compounds,TON
+37097,31.5371,Toluene,LB
+37097,0.0009007712,Benzo[k]Fluoranthene,LB
+37097,35.52694,Benzene,LB
+37097,0.09054788,Manganese,LB
+37097,0.00018250078,Mercury,LB
+37097,0.292172,Methane,TON
+37097,36.76891,Carbon Monoxide,TON
+37097,0.004435026,Nitrous Oxide,TON
+37091,0.653079,PM10 Primary (Filt + Cond),TON
+37091,0.4668351,PM2.5 Primary (Filt + Cond),TON
+37091,5.215928e-05,Chromium (VI),LB
+37091,0.010075092,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.03956754,Benzo[b]Fluoranthene,LB
+37091,5.22844e-05,Mercury,LB
+37091,20.70268,Naphthalene,LB
+37105,9.473674,Hexane,LB
+37105,0.13850312,Propionaldehyde,LB
+37105,0.012522558,Pyrene,LB
+37105,0.003169322,Benzo[k]Fluoranthene,LB
+37105,7.83558,"2,2,4-Trimethylpentane",LB
+37105,0.0019506308,Manganese,LB
+37105,0.000291337,Nickel,LB
+37101,0.0005763384,"Benzo[g,h,i,]Perylene",LB
+37101,0.0002281834,Fluoranthene,LB
+37101,0.0002140296,Benzo[a]Pyrene,LB
+37101,14.16093,Carbon Dioxide,TON
+37101,3.62438e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37099,3.651614,"1,3-Butadiene",LB
+37099,6.042616,Propionaldehyde,LB
+37099,10.90332,Benzene,LB
+37099,0.012771212,Nickel,LB
+37099,741.4798,Carbon Dioxide,TON
+37167,6.884344,Xylenes (Mixed Isomers),LB
+37129,9.491206,Ethyl Benzene,LB
+37129,34.72178,Xylenes (Mixed Isomers),LB
+37129,0.03502052,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.009812218,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.0015782822,Benzo[a]Pyrene,LB
+37131,3.671558e-05,"Dibenzo[a,h]Anthracene",LB
+37131,0.0011035938,Nickel,LB
+37131,0.0013091764,Fluorene,LB
+37131,0.03374812,Naphthalene,LB
+37131,1.169062,Carbon Monoxide,TON
+37131,0.0003887291,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.007746838,PM10 Primary (Filt + Cond),TON
+37131,0.04848373,Volatile Organic Compounds,TON
+37177,0.4813714,Benzo[a]Pyrene,LB
+37177,1303.4234,Benzene,LB
+37177,0.174222,Arsenic,LB
+37175,0.13199386,Acenaphthene,LB
+37175,0.06012355,Methane,TON
+37169,1.1895044,Hexane,LB
+37169,47.3349,Formaldehyde,LB
+37169,1.189772,"2,2,4-Trimethylpentane",LB
+37169,0.0002986537,Nitrate portion of PM2.5-PRI,TON
+37169,0.07975136,Acrolein,LB
+37169,9.991628,Xylenes (Mixed Isomers),LB
+37169,2.065558e-06,Chromium (VI),LB
+37169,0.00587261,Fluoranthene,LB
+37169,0.017915658,Acenaphthylene,LB
+37169,0.0214593,Phenanthrene,LB
+37169,0.08127251,Volatile Organic Compounds,TON
+37153,0.01773759,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,1.9626644,Acenaphthylene,LB
+37153,0.4568118,Chrysene,LB
+37153,2.495684,Fluorene,LB
+37153,13664.06,Carbon Dioxide,TON
+37153,1.163258,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.1970539,Ammonia,TON
+37153,0.116665,Sulfur Dioxide,TON
+37153,2.14647,Volatile Organic Compounds,TON
+37135,0.12583658,Acenaphthene,LB
+37135,0.696694,Phenanthrene,LB
+37135,0.0004257672,Nitrate portion of PM2.5-PRI,TON
+37137,4.70861,Styrene,LB
+37137,19.92364,Xylenes (Mixed Isomers),LB
+37137,317.035,Formaldehyde,LB
+37137,30.27504,Benzene,LB
+37137,0.03435558,Manganese,LB
+37137,0.01266442,Arsenic,LB
+37137,0.0940967,Methane,TON
+37137,0.2570447,PM10-Primary from certain diesel engines,TON
+37129,100.74332,Toluene,LB
+37129,0.01421692,Methane,TON
+37129,0.001163386,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.00635252,Benzo[b]Fluoranthene,LB
+37065,0.004850292,Chrysene,LB
+37065,5.844092,"2,2,4-Trimethylpentane",LB
+37065,0.005181062,Nickel,LB
+37065,0.005508752,Acenaphthene,LB
+37065,0.3681061,Volatile Organic Compounds,TON
+37137,0.02692822,Acrolein,LB
+37137,0.0011151584,Acenaphthylene,LB
+37137,0.0002420222,Acenaphthene,LB
+37137,0.002010374,Methane,TON
+37133,4.910338,Hexane,LB
+37175,0.12673612,Fluoranthene,LB
+37175,0.0005352342,Benzo[k]Fluoranthene,LB
+37175,16.402678,Formaldehyde,LB
+37175,0.013097158,Benzo[a]Pyrene,LB
+37175,0.2079766,Benzene,LB
+37175,4.594213e-05,Organic Carbon portion of PM2.5-PRI,TON
+37175,9.373347e-05,PM2.5 Primary (Filt + Cond),TON
+37175,5.260813e-05,Sulfur Dioxide,TON
+37165,0.12253642,Styrene,LB
+37165,0.6141314,"1,3-Butadiene",LB
+37165,0.002235928,Benzo[k]Fluoranthene,LB
+37165,0.02378256,Acenaphthylene,LB
+37165,0.0012575874,Manganese,LB
+37165,64.48001,Carbon Dioxide,TON
+37165,0.2368714,Nitrogen Oxides,TON
+37159,0.7457278,Nitrogen Oxides,TON
+37159,9.768248,Ethyl Benzene,LB
+37159,0.3052634,Acrolein,LB
+37159,58.13034,Toluene,LB
+37159,0.009777882,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.005928176,Benz[a]Anthracene,LB
+37155,31.0449,Hexane,LB
+37155,0.017974766,Benzo[b]Fluoranthene,LB
+37155,0.017974766,Benzo[k]Fluoranthene,LB
+37155,0.014792742,Chrysene,LB
+37155,0.03120686,Benzo[a]Pyrene,LB
+37155,0.0016087,Arsenic,LB
+37155,9.163176e-05,Nitrate portion of PM2.5-PRI,TON
+37155,0.03172994,PM2.5 Primary (Filt + Cond),TON
+37147,34.06742,Xylenes (Mixed Isomers),LB
+37147,0.01273771,Nitrous Oxide,TON
+37147,0.1081381,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.03010282,Sulfur Dioxide,TON
+37147,0.02250218,Sulfate Portion of PM2.5-PRI,TON
+37147,0.07057836,Benzo[a]Pyrene,LB
+37147,4.092298,Phenanthrene,LB
+37143,1.3086316,Styrene,LB
+37143,0.316435,Anthracene,LB
+37143,0.11275468,Chrysene,LB
+37143,0.03977884,Manganese,LB
+37143,45.7366,Acetaldehyde,LB
+37143,1.1555222,Phenanthrene,LB
+37143,0.004419528,Nitrous Oxide,TON
+37141,1.6799078,Hexane,LB
+37141,0.7918986,Formaldehyde,LB
+37141,0.000806986,Benz[a]Anthracene,LB
+37141,55.57226,Carbon Dioxide,TON
+37141,0.005901495,PM10 Primary (Filt + Cond),TON
+37141,0.001164612,Sulfur Dioxide,TON
+37127,0.2434878,Styrene,LB
+37127,0.00932626,Anthracene,LB
+37127,0.00476145,Chrysene,LB
+37127,3.138584,Acetaldehyde,LB
+37127,0.6415259,Nitrogen Oxides,TON
+37127,0.004122687,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,1003.547,Carbon Dioxide,TON
+37111,0.2556762,PM2.5 Primary (Filt + Cond),TON
+37111,2.253286e-05,Chromium (VI),LB
+37111,0.6621506,Fluoranthene,LB
+37111,0.6414422,Acenaphthylene,LB
+37111,0.0403272,Benzo[a]Pyrene,LB
+37111,47.04156,Acetaldehyde,LB
+37111,11.936514,Naphthalene,LB
+37111,3.225314,Propionaldehyde,LB
+37111,5.715176,Xylenes (Mixed Isomers),LB
+37111,3.491876e-05,Mercury,LB
+37111,0.5429314,Phenanthrene,LB
+37111,7.139166,Naphthalene,LB
+37111,0.6353096,Nitrogen Oxides,TON
+37111,0.004949453,Sulfur Dioxide,TON
+37001,13.220152,"2,2,4-Trimethylpentane",LB
+37001,3.679786,Benzene,LB
+37177,0.0007716118,Anthracene,LB
+37177,1.6643962,Xylenes (Mixed Isomers),LB
+37177,0.004469832,"Benzo[g,h,i,]Perylene",LB
+37177,0.0016581216,Benzo[a]Pyrene,LB
+37177,0.0013644552,Manganese,LB
+37177,0.0012444908,Arsenic,LB
+37177,0.1255692,Nitrogen Oxides,TON
+37177,0.001038274,Organic Carbon portion of PM2.5-PRI,TON
+37135,2.482804,Hexane,LB
+37135,9.03837,Xylenes (Mixed Isomers),LB
+37079,0.0007429018,Pyrene,LB
+37079,0.4691846,"2,2,4-Trimethylpentane",LB
+37079,4.393236,Acetaldehyde,LB
+37079,0.002171048,Phenanthrene,LB
+37079,0.003401032,Methane,TON
+37079,0.0005280093,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.00373997,PM10 Primary (Filt + Cond),TON
+37079,0.00212537,"Benzo[g,h,i,]Perylene",LB
+37079,0.0003228012,Chrysene,LB
+37171,8.212616,"1,3-Butadiene",LB
+37171,0.08939882,Pyrene,LB
+37171,0.018089314,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.014081416,Benzo[b]Fluoranthene,LB
+37171,0.2453482,Acenaphthylene,LB
+37171,62.16012,Benzene,LB
+37171,20.09466,Acetaldehyde,LB
+37171,2.797908,Naphthalene,LB
+37171,0.02341966,PM2.5 Primary (Filt + Cond),TON
+37171,0.008146388,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,377.7408,Benzene,LB
+37165,0.2216286,Acenaphthene,LB
+37165,0.05349149,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.001417333,Nitrous Oxide,TON
+37165,0.3725964,Acenaphthylene,LB
+37165,67.73172,Formaldehyde,LB
+37165,0.0003257706,"Dibenzo[a,h]Anthracene",LB
+37165,1.6951676,"2,2,4-Trimethylpentane",LB
+37161,0.011189862,Anthracene,LB
+37161,38.26704,Xylenes (Mixed Isomers),LB
+37161,2.570328e-06,Chromium (VI),LB
+37161,0.01053401,Methane,TON
+37149,0.9083232,Ethyl Benzene,LB
+37149,8.453432e-07,Chromium (VI),LB
+37149,0.0013539336,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.008104148,Acenaphthylene,LB
+37149,2.055834,Benzene,LB
+37149,0.5732064,Acetaldehyde,LB
+37149,0.001240303,Ammonia,TON
+37149,0.0004963729,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.001017895,Sulfur Dioxide,TON
+37149,4.811104e-05,Sulfate Portion of PM2.5-PRI,TON
+37147,26178.94,Toluene,LB
+37147,11728.894,Xylenes (Mixed Isomers),LB
+37147,699.0262,Benzene,LB
+37019,0.10556416,Hexane,LB
+37019,0.05176744,"2,2,4-Trimethylpentane",LB
+37019,1.8690102e-05,Arsenic,LB
+37019,0.000237864,Fluorene,LB
+37019,0.00610635,Naphthalene,LB
+37019,6.418932e-05,Methane,TON
+37019,0.0001417439,Sulfur Dioxide,TON
+37019,4.128692e-06,Sulfate Portion of PM2.5-PRI,TON
+37017,9222.744,Toluene,LB
+37017,245.469,Benzene,LB
+37015,104.35188,Acetaldehyde,LB
+37015,0.7510214,Acenaphthene,LB
+37015,0.2546019,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.053575,Benzo[b]Fluoranthene,LB
+37015,0.007347924,Benzo[k]Fluoranthene,LB
+37007,298.147,Hexane,LB
+37007,0.5720938,Fluoranthene,LB
+37007,1.7940462,Acenaphthylene,LB
+37007,0.10323514,Benz[a]Anthracene,LB
+37007,0.0004082134,Nitrate portion of PM2.5-PRI,TON
+37003,0.11974076,Manganese,LB
+37003,7.066404e-05,Mercury,LB
+37003,0.03757152,Nickel,LB
+37003,0.7576304,Acenaphthene,LB
+37003,1.6762578,Fluorene,LB
+37003,26.42866,Naphthalene,LB
+37003,3.283644,Styrene,LB
+37003,0.010894402,"Benzo[g,h,i,]Perylene",LB
+37003,0.0536247,Benzo[b]Fluoranthene,LB
+37001,0.02778092,Methane,TON
+37001,0.1473166,PM10 Primary (Filt + Cond),TON
+37001,0.0005838154,"Dibenzo[a,h]Anthracene",LB
+37001,2.126404,Anthracene,LB
+37001,13.507146,Phenanthrene,LB
+37041,0.00015109728,Acenaphthene,LB
+37041,0.0008750079,Ammonia,TON
+37041,0.001012276,PM10 Primary (Filt + Cond),TON
+37149,0.09466734,Styrene,LB
+37149,0.321021,"1,3-Butadiene",LB
+37149,0.3166668,Acrolein,LB
+37149,2.309862e-05,Chromium (VI),LB
+37149,0.004426942,Arsenic,LB
+37149,0.0002440059,Sulfate Portion of PM2.5-PRI,TON
+37149,0.198908,Volatile Organic Compounds,TON
+37173,0.8626916,Naphthalene,LB
+37173,0.8997372,Nitrogen Oxides,TON
+37193,24.72334,Propionaldehyde,LB
+37193,0.11576878,Benzo[b]Fluoranthene,LB
+37193,0.3883158,Benzo[a]Pyrene,LB
+37193,2.290905,PM10-Primary from certain diesel engines,TON
+37193,2.172621,PM2.5 Primary (Filt + Cond),TON
+37191,2.685202,Naphthalene,LB
+37191,0.006343785,Sulfur Dioxide,TON
+37191,0.0064256,Sulfate Portion of PM2.5-PRI,TON
+37191,0.00529631,Benzo[b]Fluoranthene,LB
+37191,0.12298846,Acenaphthylene,LB
+37191,0.03388718,Chrysene,LB
+37191,0.315107,Styrene,LB
+37191,0.725955,"1,3-Butadiene",LB
+37191,0.0010718024,"Benzo[g,h,i,]Perylene",LB
+37189,11.147278,Ethyl Benzene,LB
+37189,4.009806,Styrene,LB
+37189,0.011727846,"Benzo[g,h,i,]Perylene",LB
+37189,0.6275994,Benz[a]Anthracene,LB
+37189,2.0122,Fluorene,LB
+37189,10.14773,Carbon Monoxide,TON
+37189,1.949421,PM10 Primary (Filt + Cond),TON
+37189,0.09352615,Sulfur Dioxide,TON
+37187,3.556324,Xylenes (Mixed Isomers),LB
+37187,0.0007008556,Benzo[k]Fluoranthene,LB
+37187,9.610012e-06,Mercury,LB
+37187,0.08677329,Nitrogen Oxides,TON
+37187,3.850086e-05,Sulfate Portion of PM2.5-PRI,TON
+37183,88.5032,Acrolein,LB
+37183,3.48404,Anthracene,LB
+37183,0.05400968,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,2.348892,Benz[a]Anthracene,LB
+37183,7.112884,Fluorene,LB
+37183,1.031905,Methane,TON
+37183,65.97428,Toluene,LB
+37183,0.0311452,Pyrene,LB
+37183,3.42048e-06,Chromium (VI),LB
+37183,6.083906,Formaldehyde,LB
+37183,0.10166988,Phenanthrene,LB
+37183,0.3709455,Nitrogen Oxides,TON
+37183,0.002860464,Sulfur Dioxide,TON
+37181,0.0019911434,Fluoranthene,LB
+37181,5.461152e-05,"Dibenzo[a,h]Anthracene",LB
+37181,13.534132,Acetaldehyde,LB
+37181,0.0006200473,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.0010774344,Anthracene,LB
+37059,0.0003582756,Anthracene,LB
+37059,0.4277526,Benzene,LB
+37059,2.471068e-05,Arsenic,LB
+37059,0.0022488,Phenanthrene,LB
+37059,0.0002027007,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.0016666438,Pyrene,LB
+37059,0.0011749908,"Benzo[g,h,i,]Perylene",LB
+37059,0.8105916,Hexane,LB
+37059,0.001210132,Methane,TON
+37059,0.000109379,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.0006175482,PM10 Primary (Filt + Cond),TON
+37057,4.104916,Acrolein,LB
+37057,1.3969888,Hexane,LB
+37057,0.002056998,"Benzo[g,h,i,]Perylene",LB
+37057,0.15584326,Acenaphthene,LB
+37057,3622.544,Xylenes (Mixed Isomers),LB
+37057,0.2242386,Arsenic,LB
+37057,0.1590068,Elemental Carbon portion of PM2.5-PRI,TON
+37057,28.23329,Volatile Organic Compounds,TON
+37051,50.83308,"2,2,4-Trimethylpentane",LB
+37051,4.99139,Acenaphthene,LB
+37051,20.4445,Phenanthrene,LB
+37051,30248.84,Carbon Dioxide,TON
+37051,9.510324,Volatile Organic Compounds,TON
+37049,0.600406,"1,3-Butadiene",LB
+37049,1.5695638,Acrolein,LB
+37049,0.528305,Hexane,LB
+37049,7.220438e-06,Chromium (VI),LB
+37049,0.02834246,Chrysene,LB
+37049,2.211666,Naphthalene,LB
+37049,2.010318,Nitrogen Oxides,TON
+37049,0.005370723,Sulfate Portion of PM2.5-PRI,TON
+37049,0.1120645,Volatile Organic Compounds,TON
+37047,78.89578,Toluene,LB
+37047,0.005964858,Ammonia,TON
+37047,0.02275661,PM10 Primary (Filt + Cond),TON
+37045,0.9880452,"1,3-Butadiene",LB
+37045,8.085884,Hexane,LB
+37045,0.015082282,Pyrene,LB
+37045,0.0064365,Benzo[a]Pyrene,LB
+37045,0.00874234,Acenaphthene,LB
+37045,0.04795706,Phenanthrene,LB
+37045,0.005392044,Nitrous Oxide,TON
+37045,0.02245037,PM10 Primary (Filt + Cond),TON
+37045,0.00806059,PM2.5 Primary (Filt + Cond),TON
+37025,248.1444,Toluene,LB
+37025,0.05886302,"Benzo[g,h,i,]Perylene",LB
+37025,17.961768,Fluoranthene,LB
+37025,3844.458,Formaldehyde,LB
+37025,0.5060758,Nickel,LB
+37025,0.1999493,Sulfur Dioxide,TON
+37157,0.00010609638,Acenaphthene,LB
+37157,0.005509514,Naphthalene,LB
+37157,0.5077195,Carbon Dioxide,TON
+37157,1.014933e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37157,4.518132e-05,PM2.5 Primary (Filt + Cond),TON
+37157,7.634204,Benzene,LB
+37157,0.3686374,Naphthalene,LB
+37157,3.473398,Carbon Monoxide,TON
+37157,0.004522146,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.00450058,Benzo[a]Pyrene,LB
+37139,0.06321584,Anthracene,LB
+37139,5.762324e-06,Chromium (VI),LB
+37139,0.09416812,Acenaphthylene,LB
+37139,0.2261896,Phenanthrene,LB
+37139,0.001988987,Sulfur Dioxide,TON
+37135,2924.794,"1,3-Butadiene",LB
+37135,47137.32,Xylenes (Mixed Isomers),LB
+37135,6.795252,Benzo[b]Fluoranthene,LB
+37135,0.221706,"Dibenzo[a,h]Anthracene",LB
+37135,2.321086,Nickel,LB
+37135,7.518392,Sulfur Dioxide,TON
+37133,0.005775724,Nitrous Oxide,TON
+37133,0.02414573,PM10 Primary (Filt + Cond),TON
+37133,0.1439886,Volatile Organic Compounds,TON
+37133,8.47057e-05,"Dibenzo[a,h]Anthracene",LB
+37125,5.797576,Hexane,LB
+37125,0.005789972,Anthracene,LB
+37125,0.0015714096,Chrysene,LB
+37125,3.7226e-05,"Dibenzo[a,h]Anthracene",LB
+37125,1.4063686e-05,Mercury,LB
+37125,0.00017535798,Nickel,LB
+37125,1.7313064,Pyrene,LB
+37125,0.0007831234,Chromium (VI),LB
+37125,0.3411438,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.001112613,Nitrate portion of PM2.5-PRI,TON
+37125,0.019208,Nickel,LB
+37125,97.79303,Carbon Monoxide,TON
+37125,2524.257,Carbon Dioxide,TON
+37125,0.3229287,Ammonia,TON
+37125,876.585,Hexane,LB
+37121,3554.366,Xylenes (Mixed Isomers),LB
+37121,6.731142,Acenaphthylene,LB
+37121,0.4319618,Chrysene,LB
+37121,421.3674,Formaldehyde,LB
+37115,30.06658,"1,3-Butadiene",LB
+37115,55.70118,Xylenes (Mixed Isomers),LB
+37115,7.963916,Phenanthrene,LB
+37115,4782.889,Carbon Dioxide,TON
+37115,16.78011,Nitrogen Oxides,TON
+37113,0.006846796,Anthracene,LB
+37113,0.00226098,Benzo[k]Fluoranthene,LB
+37113,0.0022221,Chrysene,LB
+37113,1.3528232e-05,Mercury,LB
+37113,0.00016867726,Nickel,LB
+37113,0.415704,Naphthalene,LB
+37109,4.87943,Phenanthrene,LB
+37109,0.003999288,Nitrate portion of PM2.5-PRI,TON
+37109,0.449284,Chrysene,LB
+37109,0.4490634,Ethyl Benzene,LB
+37109,0.9070562,Toluene,LB
+37109,0.0006991698,"Benzo[g,h,i,]Perylene",LB
+37109,0.07495104,Acenaphthylene,LB
+37109,0.000479634,"Dibenzo[a,h]Anthracene",LB
+37109,0.001439068,Nickel,LB
+37109,0.0004638638,Arsenic,LB
+37109,0.10071358,Fluorene,LB
+37109,0.0002965648,Nitrous Oxide,TON
+37109,0.5566502,Nitrogen Oxides,TON
+37109,0.0009411001,Sulfur Dioxide,TON
+37109,0.07849543,Volatile Organic Compounds,TON
+37089,0.19327732,Hexane,LB
+37089,0.00012353126,Benzo[k]Fluoranthene,LB
+37089,0.0761119,Formaldehyde,LB
+37089,1.5193012e-06,Mercury,LB
+37089,0.06798693,Carbon Monoxide,TON
+37087,0.000659372,Mercury,LB
+37087,0.1378692,Arsenic,LB
+37087,29.98066,Phenanthrene,LB
+37087,19501.48,Carbon Dioxide,TON
+37087,0.517199,Organic Carbon portion of PM2.5-PRI,TON
+37087,3.176158,PM2.5 Primary (Filt + Cond),TON
+37083,0.0019568594,"Dibenzo[a,h]Anthracene",LB
+37083,5.43338,Benzene,LB
+37083,2.076062e-05,Mercury,LB
+37083,0.02790533,Methane,TON
+37083,0.1880768,PM10-Primary from certain diesel engines,TON
+37083,0.02085526,Ammonia,TON
+37083,4.546108,Acrolein,LB
+37083,0.0019608048,Benzo[k]Fluoranthene,LB
+37083,0.09088066,Chrysene,LB
+37049,4.284116,Ethyl Benzene,LB
+37049,10.741246,Toluene,LB
+37049,0.02891836,Chrysene,LB
+37049,0.00542302,Benzo[a]Pyrene,LB
+37049,0.0002266542,"Dibenzo[a,h]Anthracene",LB
+37049,0.02491352,Manganese,LB
+37049,0.3560732,Acenaphthene,LB
+37049,0.6136384,Fluorene,LB
+37049,0.02018548,PM25-Primary from certain diesel engines,TON
+37043,0.0205009,Benzo[a]Pyrene,LB
+37043,11.616062,Acetaldehyde,LB
+37043,0.2722476,Phenanthrene,LB
+37043,13.4575,Carbon Monoxide,TON
+37043,0.002994185,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.003148664,Nitrous Oxide,TON
+37043,433.981,Toluene,LB
+37043,0.014837596,Benzo[k]Fluoranthene,LB
+37043,0.0006053875,Sulfate Portion of PM2.5-PRI,TON
+37035,361.2304,Xylenes (Mixed Isomers),LB
+37035,0.2729998,Nickel,LB
+37035,274.8982,Naphthalene,LB
+37035,0.01813579,Nitrate portion of PM2.5-PRI,TON
+37035,1.462258,Organic Carbon portion of PM2.5-PRI,TON
+37025,10.705866,Hexane,LB
+37025,21.35376,Propionaldehyde,LB
+37025,0.0181347,"Benzo[g,h,i,]Perylene",LB
+37025,0.01211846,Benzo[k]Fluoranthene,LB
+37025,426.3384,Formaldehyde,LB
+37025,11.01754,"2,2,4-Trimethylpentane",LB
+37025,0.13026896,Manganese,LB
+37025,45.60858,Naphthalene,LB
+37025,1.01379,PM10-Primary from certain diesel engines,TON
+37025,0.9326892,PM25-Primary from certain diesel engines,TON
+37025,0.01591022,Nitrous Oxide,TON
+37025,0.9893338,PM2.5 Primary (Filt + Cond),TON
+37025,0.02714421,Sulfate Portion of PM2.5-PRI,TON
+37167,5.62131,Acetaldehyde,LB
+37167,2.27628,"1,3-Butadiene",LB
+37167,26.93914,Hexane,LB
+37167,0.02805892,Pyrene,LB
+37167,0.001813341,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.000138195,Sulfate Portion of PM2.5-PRI,TON
+37167,0.00373588,Benzo[b]Fluoranthene,LB
+37167,0.02457524,Fluoranthene,LB
+37167,0.003986166,Chrysene,LB
+37167,0.004276164,Benzo[a]Pyrene,LB
+37163,0.3949446,Phenanthrene,LB
+37163,0.008583373,Ammonia,TON
+37163,1.3208082,"2,2,4-Trimethylpentane",LB
+37163,0.18003908,Fluoranthene,LB
+37157,2.634578,PM10 Primary (Filt + Cond),TON
+37157,0.05590302,Sulfate Portion of PM2.5-PRI,TON
+37139,35.08464,Toluene,LB
+37139,9.72528,Hexane,LB
+37139,0.009111498,Fluoranthene,LB
+37139,0.0009215544,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,6.089558,Acenaphthene,LB
+37135,1.732198,PM10-Primary from certain diesel engines,TON
+37135,1.593618,PM25-Primary from certain diesel engines,TON
+37135,0.03553015,Nitrous Oxide,TON
+37135,10.6719,Volatile Organic Compounds,TON
+37135,45.1068,"2,2,4-Trimethylpentane",LB
+37135,145.00622,Acrolein,LB
+37135,0.05340888,Benzo[b]Fluoranthene,LB
+37141,3460.156,"2,2,4-Trimethylpentane",LB
+37133,0.004005402,"1,3-Butadiene",LB
+37133,0.06409962,Hexane,LB
+37133,9.427116e-05,Fluoranthene,LB
+37133,0.0002801184,Acenaphthylene,LB
+37133,6.120824e-05,Acenaphthene,LB
+37133,5.132971,Carbon Dioxide,TON
+37133,7.854535e-05,PM2.5 Primary (Filt + Cond),TON
+37131,0.005149686,Arsenic,LB
+37131,667.4645,Carbon Dioxide,TON
+37131,0.006569128,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.0003692338,"Dibenzo[a,h]Anthracene",LB
+37131,3.02307,"1,3-Butadiene",LB
+37131,0.504053,Pyrene,LB
+37131,0.008951248,Benzo[a]Pyrene,LB
+37127,0.0003386934,Benz[a]Anthracene,LB
+37127,1.492594,Nitrogen Oxides,TON
+37127,0.03425486,PM2.5 Primary (Filt + Cond),TON
+37127,0.01854072,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.0007188866,Benz[a]Anthracene,LB
+37125,41.6207,Acetaldehyde,LB
+37125,0.002679006,Acenaphthene,LB
+37125,4.460201,Methane,TON
+37125,0.02670027,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.04025961,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,22.03432,Xylenes (Mixed Isomers),LB
+37105,1.5295072,Styrene,LB
+37105,3.489958,"1,3-Butadiene",LB
+37105,1.8737226e-05,Mercury,LB
+37105,4.237579,Carbon Monoxide,TON
+37105,0.0475082,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.007357998,Sulfate Portion of PM2.5-PRI,TON
+37105,0.3801006,Anthracene,LB
+37105,1.0716,Pyrene,LB
+37105,0.004727608,"Benzo[g,h,i,]Perylene",LB
+37105,0.02284884,Benzo[b]Fluoranthene,LB
+37105,0.813402,Fluoranthene,LB
+37105,0.003126194,Benzo[k]Fluoranthene,LB
+37073,0.005608346,"1,3-Butadiene",LB
+37073,0.1252632,Benzene,LB
+37073,5.00714e-05,Nickel,LB
+37073,7.677576e-05,Arsenic,LB
+37073,0.0003804899,Methane,TON
+37073,2.350541e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.0001060354,Nitrous Oxide,TON
+37073,4.253128e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.0001972409,Sulfur Dioxide,TON
+37073,0.010388516,Propionaldehyde,LB
+37073,4.633264e-05,Benzo[b]Fluoranthene,LB
+37121,0.3646018,Benzene,LB
+37121,0.0006390247,Ammonia,TON
+37121,0.0008101391,PM10 Primary (Filt + Cond),TON
+37121,0.0002800047,PM2.5 Primary (Filt + Cond),TON
+37121,0.0003855918,Sulfur Dioxide,TON
+37121,6.919108e-06,Sulfate Portion of PM2.5-PRI,TON
+37121,0.00369747,Styrene,LB
+37121,0.013751908,Acrolein,LB
+37121,0.00011638934,Anthracene,LB
+37121,0.228601,Formaldehyde,LB
+37095,0.2441152,Xylenes (Mixed Isomers),LB
+37095,0.2225136,Formaldehyde,LB
+37095,0.0002328728,Benzo[a]Pyrene,LB
+37095,0.0002038776,Arsenic,LB
+37095,0.00011676208,Acenaphthene,LB
+37095,0.001083991,Methane,TON
+37095,9.260728e-06,Sulfate Portion of PM2.5-PRI,TON
+37095,0.0018379756,Benzo[a]Pyrene,LB
+37095,0.0008933884,Benz[a]Anthracene,LB
+37095,3.21706,Benzene,LB
+37095,0.2908288,Propionaldehyde,LB
+37095,0.004949244,"Benzo[g,h,i,]Perylene",LB
+37095,0.0018594894,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.0012065276,Acenaphthene,LB
+37095,6.128196e-06,Nitrate portion of PM2.5-PRI,TON
+37095,0.1434805,Nitrogen Oxides,TON
+37095,0.006892657,PM10 Primary (Filt + Cond),TON
+37083,0.19534024,Ethyl Benzene,LB
+37083,0.009828054,Styrene,LB
+37083,0.0006873062,Pyrene,LB
+37083,0.6644316,Formaldehyde,LB
+37083,0.0019562252,Phenanthrene,LB
+37083,0.001166905,PM2.5 Primary (Filt + Cond),TON
+37083,0.001776587,Sulfur Dioxide,TON
+37083,3.336898e-05,Sulfate Portion of PM2.5-PRI,TON
+37021,1.3083542e-05,Arsenic,LB
+37021,0.4229448,Acetaldehyde,LB
+37021,1.865987e-06,Nitrate portion of PM2.5-PRI,TON
+37021,0.0006623672,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.0003359953,Organic Carbon portion of PM2.5-PRI,TON
+37021,8.738258,Benzo[k]Fluoranthene,LB
+37021,8.293292,Benz[a]Anthracene,LB
+37017,0.0019179688,Benz[a]Anthracene,LB
+37017,0.007181162,Acenaphthene,LB
+37017,0.3728252,Naphthalene,LB
+37017,0.001208752,Organic Carbon portion of PM2.5-PRI,TON
+37015,1.308861,PM10 Primary (Filt + Cond),TON
+37015,0.09171606,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,7.515288,Ethyl Benzene,LB
+37015,0.2551394,Chrysene,LB
+37015,20.6994,Benzene,LB
+37015,96.73406,Acetaldehyde,LB
+37015,2.513404,Phenanthrene,LB
+37015,0.9312496,PM25-Primary from certain diesel engines,TON
+37011,0.491333,Anthracene,LB
+37011,2.618692,Acenaphthylene,LB
+37011,3.122048,Phenanthrene,LB
+37011,0.4878406,PM10 Primary (Filt + Cond),TON
+37009,14.98871,Toluene,LB
+37009,1.4930412,Pyrene,LB
+37009,0.02861678,Benzo[b]Fluoranthene,LB
+37009,193.0581,Formaldehyde,LB
+37009,0.5494916,Acenaphthene,LB
+37009,6.28184,Carbon Monoxide,TON
+37009,0.007217215,Nitrous Oxide,TON
+37009,0.08581976,Ammonia,TON
+37009,0.5003142,Naphthalene,LB
+37009,0.0002821008,Sulfur Dioxide,TON
+37009,6.140294e-05,Sulfate Portion of PM2.5-PRI,TON
+37003,1689.3866,"2,2,4-Trimethylpentane",LB
+37189,0.5755688,"1,3-Butadiene",LB
+37189,4.077694e-05,"Dibenzo[a,h]Anthracene",LB
+37189,0.000311772,Nickel,LB
+37189,0.0004780606,Arsenic,LB
+37189,0.2323904,Naphthalene,LB
+37189,0.0004863502,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.008355571,PM10 Primary (Filt + Cond),TON
+37189,6.426823e-05,Sulfate Portion of PM2.5-PRI,TON
+37177,0.859565,Styrene,LB
+37177,2.78761,Hexane,LB
+37177,3.925558,Propionaldehyde,LB
+37177,0.0013449984,Benzo[k]Fluoranthene,LB
+37177,0.3518122,Acenaphthylene,LB
+37177,0.06378842,Chrysene,LB
+37177,0.11156584,Benz[a]Anthracene,LB
+37177,8.709644,Benzene,LB
+37177,0.05533349,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.26091,"1,3-Butadiene",LB
+37167,0.537044,Toluene,LB
+37167,0.4279436,Propionaldehyde,LB
+37167,0.08192698,Pyrene,LB
+37167,0.0003638528,"Benzo[g,h,i,]Perylene",LB
+37167,0.19966,"2,2,4-Trimethylpentane",LB
+37167,0.000882828,Nickel,LB
+37167,0.09849728,Phenanthrene,LB
+37167,0.8809264,Naphthalene,LB
+37167,0.001320046,Ammonia,TON
+37195,0.5411648,Ethyl Benzene,LB
+37195,0.4087064,Hexane,LB
+37195,0.8753874,Propionaldehyde,LB
+37195,1.0564574,Xylenes (Mixed Isomers),LB
+37195,3.829278e-06,Chromium (VI),LB
+37195,164.0992,Carbon Dioxide,TON
+37195,0.01829105,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.8243674,Nitrogen Oxides,TON
+37193,4.369476e-05,Pyrene,LB
+37193,1.8320444e-09,Chromium (VI),LB
+37193,9.914776e-06,Benz[a]Anthracene,LB
+37193,1.8366218e-08,Mercury,LB
+37193,0.00013986688,Phenanthrene,LB
+37193,2.149081e-05,PM10 Primary (Filt + Cond),TON
+37053,2.43353,Acetaldehyde,LB
+37053,0.0010396,Sulfur Dioxide,TON
+37053,0.00591903,Styrene,LB
+37053,0.0493262,Propionaldehyde,LB
+37053,2.017018e-06,Chromium (VI),LB
+37053,0.0002331724,Benzo[b]Fluoranthene,LB
+37053,0.0003541496,Fluoranthene,LB
+37053,0.0009470592,Acenaphthylene,LB
+37053,1.924965e-05,Sulfate Portion of PM2.5-PRI,TON
+37045,0.0012643754,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.0008816814,Fluoranthene,LB
+37045,2.90238e-05,"Dibenzo[a,h]Anthracene",LB
+37045,0.6952425,Carbon Monoxide,TON
+37045,0.0013625,Nitrous Oxide,TON
+37045,0.006772368,PM10 Primary (Filt + Cond),TON
+37045,0.0007064314,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.002779388,Sulfur Dioxide,TON
+37045,0.01631012,Arsenic,LB
+37045,0.01141983,Acenaphthene,LB
+37045,0.3303248,Styrene,LB
+37045,10.08145,Hexane,LB
+37045,23.31484,Xylenes (Mixed Isomers),LB
+37045,0.01966026,Fluoranthene,LB
+37151,0.16153208,Propionaldehyde,LB
+37151,0.003987542,"Benzo[g,h,i,]Perylene",LB
+37151,0.0005986566,Chrysene,LB
+37151,3.4395e-05,"Dibenzo[a,h]Anthracene",LB
+37147,1.288153,Hexane,LB
+37147,0.0011406748,Anthracene,LB
+37147,0.007640994,"Benzo[g,h,i,]Perylene",LB
+37147,0.0007883464,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.003760331,Nitrous Oxide,TON
+37107,0.05876452,Methane,TON
+37107,0.003802881,Elemental Carbon portion of PM2.5-PRI,TON
+37107,16.01934,Xylenes (Mixed Isomers),LB
+37107,0.006995664,Benz[a]Anthracene,LB
+37107,96.26344,Acetaldehyde,LB
+37107,4.47699,Ethyl Benzene,LB
+37093,27.58611,Carbon Dioxide,TON
+37093,0.0002001628,Benzo[k]Fluoranthene,LB
+37093,0.3954554,Formaldehyde,LB
+37013,10.737536,Benzene,LB
+37017,6.11626,Pyrene,LB
+37017,1.728347,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.03967542,"Dibenzo[a,h]Anthracene",LB
+37017,0.0486524,Mercury,LB
+37017,0.606638,Nickel,LB
+37017,903.4225,Carbon Monoxide,TON
+37017,104.8226,Nitrogen Oxides,TON
+37017,2.050659,PM2.5 Primary (Filt + Cond),TON
+37009,206.9118,Propionaldehyde,LB
+37009,16.76038,Pyrene,LB
+37009,3.130114,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.8904598,Manganese,LB
+37009,4.322348,Nitrous Oxide,TON
+37009,0.7653175,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,4012.964,Ethyl Benzene,LB
+37001,7820.836,"2,2,4-Trimethylpentane",LB
+37197,0.05520752,"Benzo[g,h,i,]Perylene",LB
+37197,0.011700906,Benzo[b]Fluoranthene,LB
+37197,0.011700906,Benzo[k]Fluoranthene,LB
+37197,0.009539244,Chrysene,LB
+37197,0.000475935,"Dibenzo[a,h]Anthracene",LB
+37197,0.02027473,PM2.5 Primary (Filt + Cond),TON
+37189,0.09562522,Fluoranthene,LB
+37189,20.12822,Formaldehyde,LB
+37189,0.017384626,Benz[a]Anthracene,LB
+37189,0.03585011,Ammonia,TON
+37189,0.01174425,Organic Carbon portion of PM2.5-PRI,TON
+37189,243.9018,Toluene,LB
+37189,0.016947264,Benzo[b]Fluoranthene,LB
+37183,72.68076,Styrene,LB
+37183,0.14468222,"Dibenzo[a,h]Anthracene",LB
+37183,1.1108688,Nickel,LB
+37183,29.98848,PM10-Primary from certain diesel engines,TON
+37183,17.82844,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.8182291,Carbon Monoxide,TON
+37185,0.0001605077,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.0009873318,Ammonia,TON
+37185,0.02024854,Volatile Organic Compounds,TON
+37185,1.0303468,Hexane,LB
+37185,2.545724,Xylenes (Mixed Isomers),LB
+37185,0.002067334,Fluoranthene,LB
+37185,0.4462512,Formaldehyde,LB
+37185,0.0005977006,Manganese,LB
+37185,6.905768e-06,Mercury,LB
+37191,0.16502178,Fluoranthene,LB
+37191,0.0011826544,"Dibenzo[a,h]Anthracene",LB
+37191,0.2270292,Fluorene,LB
+37191,0.04351464,Sulfur Dioxide,TON
+37191,2.142675,Volatile Organic Compounds,TON
+37191,8581.69,Xylenes (Mixed Isomers),LB
+37179,4.457404,Acrolein,LB
+37179,0.18084596,Anthracene,LB
+37179,8.675592e-05,Chromium (VI),LB
+37179,0.3069022,Fluoranthene,LB
+37179,161.2201,"2,2,4-Trimethylpentane",LB
+37179,0.08394888,Manganese,LB
+37179,69.54858,Acetaldehyde,LB
+37179,97.37156,Carbon Monoxide,TON
+37179,3577.523,Carbon Dioxide,TON
+37179,0.3815218,PM10 Primary (Filt + Cond),TON
+37067,2.657478e-05,Mercury,LB
+37067,8.177792e-06,Nitrate portion of PM2.5-PRI,TON
+37067,0.1679948,Nitrogen Oxides,TON
+37067,0.00120099,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.003853575,Sulfur Dioxide,TON
+37067,0.002984626,Pyrene,LB
+37067,0.002372352,Benzo[a]Pyrene,LB
+37061,0.0008947392,Chromium (VI),LB
+37061,1.0549,PM10 Primary (Filt + Cond),TON
+37061,0.3332838,Sulfur Dioxide,TON
+37061,0.01261403,Sulfate Portion of PM2.5-PRI,TON
+37053,762.9702,Ethyl Benzene,LB
+37053,6355.524,Toluene,LB
+37049,22.51012,Toluene,LB
+37049,0.1119456,Propionaldehyde,LB
+37049,0.00251869,Benzo[k]Fluoranthene,LB
+37049,0.003123932,Manganese,LB
+37049,4.949616e-05,Mercury,LB
+37049,1.8816632,Acetaldehyde,LB
+37049,0.012185924,Fluorene,LB
+37049,0.3693964,Nitrogen Oxides,TON
+37049,0.005241766,PM2.5 Primary (Filt + Cond),TON
+37047,0.0006389995,Sulfur Dioxide,TON
+37047,0.0445586,Ethyl Benzene,LB
+37047,0.000447424,Fluoranthene,LB
+37047,0.000288863,Acenaphthene,LB
+37047,0.0006312066,Fluorene,LB
+37047,0.0007263166,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.004495182,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.002077668,"Benzo[g,h,i,]Perylene",LB
+37041,0.002164762,Fluoranthene,LB
+37041,0.006654044,Acenaphthylene,LB
+37041,1.5795186,Benzene,LB
+37041,0.7313274,Carbon Monoxide,TON
+37041,0.001177698,Ammonia,TON
+37041,0.0009267283,PM2.5 Primary (Filt + Cond),TON
+37035,0.0002763844,"Dibenzo[a,h]Anthracene",LB
+37035,0.001952464,Arsenic,LB
+37035,0.01271593,Methane,TON
+37035,0.007783846,Sulfur Dioxide,TON
+37035,0.3295379,Volatile Organic Compounds,TON
+37035,1.0186626e-05,Chromium (VI),LB
+37031,0.0002493804,Acenaphthylene,LB
+37031,2.16989e-05,Benz[a]Anthracene,LB
+37031,0.00011062078,Fluorene,LB
+37031,0.002837712,Naphthalene,LB
+37031,0.002295226,Nitrogen Oxides,TON
+37031,0.0001463606,PM10 Primary (Filt + Cond),TON
+37027,0.04503504,"Benzo[g,h,i,]Perylene",LB
+37027,0.015065534,"Dibenzo[a,h]Anthracene",LB
+37027,13033.42,Carbon Dioxide,TON
+37027,16.71267,Volatile Organic Compounds,TON
+37023,15.15587,Toluene,LB
+37023,11.881732,Propionaldehyde,LB
+37023,3.120168e-05,Mercury,LB
+37023,0.01248516,Sulfate Portion of PM2.5-PRI,TON
+37023,1.295315,Volatile Organic Compounds,TON
+37023,0.0006004626,Nickel,LB
+37023,58.72294,Xylenes (Mixed Isomers),LB
+37023,22.77798,Benzene,LB
+37023,15.731658,Ethyl Benzene,LB
+37023,0.5239238,Styrene,LB
+37023,631.9044,Styrene,LB
+37023,545.267,Propionaldehyde,LB
+37023,7.328636,Benzo[k]Fluoranthene,LB
+37023,7.24179,Chrysene,LB
+37023,0.2239306,"Dibenzo[a,h]Anthracene",LB
+37023,1.8140418,Nickel,LB
+37023,13.54227,Methane,TON
+37023,293247.8,Carbon Dioxide,TON
+37119,99.3767,Acrolein,LB
+37119,1.4995398,Benzo[k]Fluoranthene,LB
+37119,1081.178,Carbon Monoxide,TON
+37119,0.06468967,Sulfate Portion of PM2.5-PRI,TON
+37113,0.1317284,PM2.5 Primary (Filt + Cond),TON
+37113,1.9539876,Styrene,LB
+37113,9.682772,Toluene,LB
+37113,3.516212,Hexane,LB
+37113,0.60732,Fluoranthene,LB
+37113,7.158449,Carbon Monoxide,TON
+37113,0.1378479,PM10-Primary from certain diesel engines,TON
+37105,6.567312,Acrolein,LB
+37105,6.989174,Toluene,LB
+37105,4.185858,Propionaldehyde,LB
+37105,0.3887022,Pyrene,LB
+37105,0.4196738,Acenaphthylene,LB
+37105,0.2497508,Acenaphthene,LB
+37105,0.06451403,Methane,TON
+37105,0.01595982,PM25-Primary from certain diesel engines,TON
+37105,0.003622489,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.01325652,Ammonia,TON
+37105,0.0001132865,Nitrate portion of PM2.5-PRI,TON
+37105,0.730724,Nitrogen Oxides,TON
+37105,0.005490734,Sulfur Dioxide,TON
+37091,0.429681,Fluoranthene,LB
+37091,0.5437692,Acenaphthylene,LB
+37091,0.3234498,Acenaphthene,LB
+37091,0.04010725,Methane,TON
+37091,0.01394057,Organic Carbon portion of PM2.5-PRI,TON
+37089,35.30434,Fluoranthene,LB
+37089,17202.388,"2,2,4-Trimethylpentane",LB
+37089,48.9861,Fluorene,LB
+37089,1255.6634,Naphthalene,LB
+37087,7.518324,"1,3-Butadiene",LB
+37087,0.1897832,Benz[a]Anthracene,LB
+37087,0.04667599,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.3714076,PM10 Primary (Filt + Cond),TON
+37087,1.362009,Volatile Organic Compounds,TON
+37079,0.4271999,Methane,TON
+37079,1.00423,PM10-Primary from certain diesel engines,TON
+37079,0.923888,PM25-Primary from certain diesel engines,TON
+37079,0.1818218,Organic Carbon portion of PM2.5-PRI,TON
+37079,1.450461,PM10 Primary (Filt + Cond),TON
+37079,37.81444,Xylenes (Mixed Isomers),LB
+37079,0.00446798,Benzo[k]Fluoranthene,LB
+37079,0.0043829,"Dibenzo[a,h]Anthracene",LB
+37087,5806.766,Benzene,LB
+37087,1.129272,Nickel,LB
+37087,0.9560808,Elemental Carbon portion of PM2.5-PRI,TON
+37087,11.40377,Ammonia,TON
+37087,111.9824,Volatile Organic Compounds,TON
+37087,14136.21,Xylenes (Mixed Isomers),LB
+37087,4.38352,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.003503584,Benzo[k]Fluoranthene,LB
+37075,0.003606154,Benz[a]Anthracene,LB
+37075,0.005216811,Ammonia,TON
+37075,0.00519487,PM2.5 Primary (Filt + Cond),TON
+37075,0.001410492,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,5.297748,Acrolein,LB
+37063,1.2210038,Acenaphthylene,LB
+37063,0.12325308,Chrysene,LB
+37063,13.871248,Naphthalene,LB
+37063,0.1488446,Methane,TON
+37063,8329.09,Carbon Dioxide,TON
+37063,0.3188722,Ammonia,TON
+37063,0.1745438,Sulfur Dioxide,TON
+37063,4.381967,Volatile Organic Compounds,TON
+37059,10.244222,Ethyl Benzene,LB
+37059,1.642816,Pyrene,LB
+37059,21.3981,Xylenes (Mixed Isomers),LB
+37059,309.2826,Formaldehyde,LB
+37059,0.03545546,Manganese,LB
+37059,0.9959418,Acenaphthene,LB
+37059,2.704674,Phenanthrene,LB
+37059,0.005850397,Nitrous Oxide,TON
+37059,0.3430462,Styrene,LB
+37059,40.47668,Xylenes (Mixed Isomers),LB
+37059,0.008262252,Benzo[k]Fluoranthene,LB
+37059,0.0018606582,Manganese,LB
+37059,0.0003748446,Nickel,LB
+37059,0.014355708,Acenaphthene,LB
+37059,0.3436863,Volatile Organic Compounds,TON
+37057,0.3355504,Organic Carbon portion of PM2.5-PRI,TON
+37057,2.46116,Volatile Organic Compounds,TON
+37057,11.832376,Hexane,LB
+37057,0.01776729,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.0095491,Benzo[k]Fluoranthene,LB
+37057,0.009540144,"Dibenzo[a,h]Anthracene",LB
+37057,12.629924,"2,2,4-Trimethylpentane",LB
+37057,0.03421924,Nickel,LB
+37057,0.010027818,Arsenic,LB
+37057,2473.492,Carbon Dioxide,TON
+37055,0.012350166,Pyrene,LB
+37055,1.542548e-06,Chromium (VI),LB
+37055,0.00750511,Acenaphthene,LB
+37051,8.08382,Benz[a]Anthracene,LB
+37051,498.464,Styrene,LB
+37051,25334.64,Hexane,LB
+37051,34.9004,"Benzo[g,h,i,]Perylene",LB
+37051,21.67618,Acenaphthene,LB
+37051,663797.2,Carbon Dioxide,TON
+37043,0.9061416,Ethyl Benzene,LB
+37043,0.0013793008,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,1.023265,Nitrogen Oxides,TON
+37043,0.02552116,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.063715,PM2.5 Primary (Filt + Cond),TON
+37045,5.39326,Ethyl Benzene,LB
+37045,2.364216,Styrene,LB
+37045,10.703024,Toluene,LB
+37045,8.733328,Propionaldehyde,LB
+37045,1.26696,Pyrene,LB
+37045,0.06636592,Benzo[a]Pyrene,LB
+37045,17.88064,Naphthalene,LB
+37045,0.3712687,PM25-Primary from certain diesel engines,TON
+37045,0.2310375,Elemental Carbon portion of PM2.5-PRI,TON
+37025,31.20678,Hexane,LB
+37025,0.0271902,"Benzo[g,h,i,]Perylene",LB
+37025,0.007219946,Benzo[k]Fluoranthene,LB
+37025,0.01021944,Benzo[a]Pyrene,LB
+37029,119.1767,Hexane,LB
+37029,0.002907082,Nickel,LB
+37029,6.630848e-05,Nitrate portion of PM2.5-PRI,TON
+37029,0.01273957,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.005708341,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,54.13246,Xylenes (Mixed Isomers),LB
+37027,0.00010607534,"Dibenzo[a,h]Anthracene",LB
+37027,2.63109e-05,Mercury,LB
+37027,0.01505973,Methane,TON
+37027,0.5084493,Nitrogen Oxides,TON
+37147,0.3014076,Xylenes (Mixed Isomers),LB
+37147,2.634632e-08,Chromium (VI),LB
+37147,1.5092804e-05,Mercury,LB
+37147,1.200172,Methane,TON
+37147,1.819648e-06,Nitrate portion of PM2.5-PRI,TON
+37147,0.01826621,PM2.5 Primary (Filt + Cond),TON
+37147,0.00995434,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.004696734,Arsenic,LB
+37145,51.57592,Acetaldehyde,LB
+37145,0.0963877,PM25-Primary from certain diesel engines,TON
+37145,1.665126,Styrene,LB
+37145,9.334042,Acrolein,LB
+37145,3.002504,Hexane,LB
+37145,0.0008484114,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.000461637,Benzo[k]Fluoranthene,LB
+37145,0.04034522,Chrysene,LB
+37139,1.9469968,Ethyl Benzene,LB
+37139,0.016543496,Phenanthrene,LB
+37139,0.006145708,Fluorene,LB
+37139,62.12272,Carbon Dioxide,TON
+37139,0.1475736,Nitrogen Oxides,TON
+37135,0.04037862,Manganese,LB
+37135,0.0740316,Ammonia,TON
+37135,6.471552,Hexane,LB
+37135,0.6622978,Anthracene,LB
+37135,12.979504,Propionaldehyde,LB
+37135,1.096468,Fluoranthene,LB
+37127,0.013818018,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.009151044,Chrysene,LB
+37127,0.013814144,Benzo[a]Pyrene,LB
+37127,0.01487073,Ammonia,TON
+37123,0.07084584,PM25-Primary from certain diesel engines,TON
+37123,1.9362512,Acrolein,LB
+37123,0.0015334652,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.00602223,Benzo[b]Fluoranthene,LB
+37123,8.634658e-06,Mercury,LB
+37121,0.02242704,Styrene,LB
+37121,0.08437776,Propionaldehyde,LB
+37121,0.15212868,Benzene,LB
+37121,0.0003283284,Manganese,LB
+37121,0.011101456,Fluorene,LB
+37121,0.003911491,PM10-Primary from certain diesel engines,TON
+37115,65.22812,Xylenes (Mixed Isomers),LB
+37115,10.62523,Carbon Monoxide,TON
+37113,0.007659008,Carbon Monoxide,TON
+37113,2.650075e-06,Ammonia,TON
+37113,0.01500498,Hexane,LB
+37113,1.5815372e-05,Anthracene,LB
+37113,3.093812e-05,Pyrene,LB
+37113,2.282862e-05,"Benzo[g,h,i,]Perylene",LB
+37113,5.959812e-06,Benzo[b]Fluoranthene,LB
+37113,0.005718842,Formaldehyde,LB
+37113,1.9692916e-07,"Dibenzo[a,h]Anthracene",LB
+37113,1.5266384e-08,Mercury,LB
+37107,0.0002091363,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.1689371,Nitrogen Oxides,TON
+37107,0.02695748,Volatile Organic Compounds,TON
+37105,10.07118,Ethyl Benzene,LB
+37105,7.515348,"2,2,4-Trimethylpentane",LB
+37105,0.13853878,Manganese,LB
+37105,1.0074046,Acenaphthene,LB
+37105,3.830682,Phenanthrene,LB
+37105,33.35594,Naphthalene,LB
+37097,4.272828e-05,Chromium (VI),LB
+37097,1.029855,Fluoranthene,LB
+37097,61.37218,Acetaldehyde,LB
+37097,6.158955,Nitrogen Oxides,TON
+37103,14.972098,Hexane,LB
+37103,6.258244,Hexane,LB
+37103,0.001768298,Organic Carbon portion of PM2.5-PRI,TON
+37093,3.318784,Propionaldehyde,LB
+37093,0.02554528,Benzo[a]Pyrene,LB
+37093,0.0010437534,"Dibenzo[a,h]Anthracene",LB
+37093,0.03710379,Organic Carbon portion of PM2.5-PRI,TON
+37083,2.442032,Propionaldehyde,LB
+37083,87.63178,Formaldehyde,LB
+37083,0.2950534,Benzene,LB
+37083,0.0005241274,Arsenic,LB
+37083,9.189366,Acetaldehyde,LB
+37073,2.835862,Benzene,LB
+37073,0.1681386,Fluorene,LB
+37073,0.001600325,Sulfur Dioxide,TON
+37073,1.0034958,Ethyl Benzene,LB
+37073,0.1589146,Pyrene,LB
+37075,0.4931284,Pyrene,LB
+37075,0.01270036,Nickel,LB
+37075,0.2984398,PM10-Primary from certain diesel engines,TON
+37075,0.2745646,PM25-Primary from certain diesel engines,TON
+37075,0.003593788,Nitrous Oxide,TON
+37075,8.54616,Nitrogen Oxides,TON
+37067,0.8701206,Pyrene,LB
+37067,0.004004526,"Benzo[g,h,i,]Perylene",LB
+37067,0.5964094,Fluorene,LB
+37067,2.718552,Carbon Monoxide,TON
+37067,0.43382,PM10-Primary from certain diesel engines,TON
+37067,0.003870371,Nitrous Oxide,TON
+37067,0.101899,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.434385,PM2.5 Primary (Filt + Cond),TON
+37063,1.077001e-05,Chromium (VI),LB
+37063,0.014697178,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.0281104,Acenaphthene,LB
+37063,578.1549,Carbon Dioxide,TON
+37063,0.01002233,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.01211758,Sulfur Dioxide,TON
+37063,0.5327718,Sulfate Portion of PM2.5-PRI,TON
+37063,10.966844,Chrysene,LB
+37063,37.39622,Acenaphthene,LB
+37063,18.95436,Nitrous Oxide,TON
+37043,0.9846506,Styrene,LB
+37043,6.029438,Toluene,LB
+37043,0.4897924,Fluoranthene,LB
+37043,78.8544,Formaldehyde,LB
+37043,0.145226,Benz[a]Anthracene,LB
+37043,0.02603848,Manganese,LB
+37043,0.2283886,Acenaphthene,LB
+37043,0.03801192,Ammonia,TON
+37043,0.000746948,Nitrate portion of PM2.5-PRI,TON
+37043,0.0643144,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.001042648,Sulfate Portion of PM2.5-PRI,TON
+37043,0.2849824,Phenanthrene,LB
+37043,0.1811896,Fluorene,LB
+37043,198.5425,Carbon Dioxide,TON
+37043,0.006922594,Ammonia,TON
+37033,1.0328188,Fluorene,LB
+37033,8.254288,Toluene,LB
+37033,0.0315084,Benzo[b]Fluoranthene,LB
+37033,0.8099836,PM10 Primary (Filt + Cond),TON
+37033,0.649791,PM2.5 Primary (Filt + Cond),TON
+37033,0.8263793,Volatile Organic Compounds,TON
+37031,0.333759,Anthracene,LB
+37031,9.905768,Benzene,LB
+37031,0.2310045,PM10-Primary from certain diesel engines,TON
+37163,87.32842,Acrolein,LB
+37163,41.8765,"2,2,4-Trimethylpentane",LB
+37163,28.9931,Carbon Monoxide,TON
+37163,41283.32,Carbon Dioxide,TON
+37163,5.267147,PM10 Primary (Filt + Cond),TON
+37163,3.534261,PM2.5 Primary (Filt + Cond),TON
+37163,0.3491378,Sulfur Dioxide,TON
+37159,0.018165696,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,1.096903,Acenaphthene,LB
+37159,0.04156084,Ammonia,TON
+37155,1.120143,PM10 Primary (Filt + Cond),TON
+37155,0.06960788,Benzo[b]Fluoranthene,LB
+37155,1.7383056,Acenaphthylene,LB
+37155,0.009507178,"Dibenzo[a,h]Anthracene",LB
+37151,0.16989288,Propionaldehyde,LB
+37151,0.8025852,Acetaldehyde,LB
+37151,0.1111335,Carbon Monoxide,TON
+37151,15.30794,Carbon Dioxide,TON
+37151,0.003305997,Nitrous Oxide,TON
+37151,0.001960534,PM10 Primary (Filt + Cond),TON
+37151,0.0007790076,PM2.5 Primary (Filt + Cond),TON
+37147,5.515676,Xylenes (Mixed Isomers),LB
+37147,0.0501712,Benzo[a]Pyrene,LB
+37147,0.16070914,Benz[a]Anthracene,LB
+37147,0.1916685,Acenaphthene,LB
+37147,0.4372658,Fluorene,LB
+37147,0.04509487,Methane,TON
+37147,0.05965828,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.002474038,Formaldehyde,LB
+37145,0.0010547598,"1,3-Butadiene",LB
+37145,0.0002444051,Nitrogen Oxides,TON
+37133,0.0002630556,"Dibenzo[a,h]Anthracene",LB
+37133,0.008742348,Benz[a]Anthracene,LB
+37133,0.02166334,Manganese,LB
+37133,0.00013757668,Mercury,LB
+37133,0.05210602,Pyrene,LB
+37133,0.03131544,Acenaphthene,LB
+37133,0.01272577,Methane,TON
+37121,2.754196,Ethyl Benzene,LB
+37121,5.50758e-07,Chromium (VI),LB
+37121,5.521412e-06,Mercury,LB
+37121,0.1132992,Nitrogen Oxides,TON
+37119,3.782568,Benz[a]Anthracene,LB
+37119,724.266,Acetaldehyde,LB
+37119,0.8468958,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,82.25446,Propionaldehyde,LB
+37119,11.794588,Fluoranthene,LB
+37111,105.67032,Propionaldehyde,LB
+37111,9.299604,Pyrene,LB
+37111,0.007160614,Chromium (VI),LB
+37111,8.656936,"Benzo[g,h,i,]Perylene",LB
+37111,8.159908,Fluoranthene,LB
+37111,5687.566,Benzene,LB
+37111,5.466142,Acenaphthene,LB
+37111,160.2873,Nitrogen Oxides,TON
+37111,3.823372,PM2.5 Primary (Filt + Cond),TON
+37099,2.363096,Hexane,LB
+37099,0.3421776,Pyrene,LB
+37099,0.0001496152,Benzo[k]Fluoranthene,LB
+37099,0.003447924,Benzo[a]Pyrene,LB
+37099,0.02075595,Ammonia,TON
+37099,0.007943583,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.07960439,PM10 Primary (Filt + Cond),TON
+37095,0.0001939522,Benzo[b]Fluoranthene,LB
+37095,0.2395834,Formaldehyde,LB
+37095,3.336962e-06,Mercury,LB
+37095,0.04057134,Naphthalene,LB
+37095,11.12174,Carbon Dioxide,TON
+37095,6.539605e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.0001069764,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.0003632306,"Benzo[g,h,i,]Perylene",LB
+37095,0.00013646696,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.00013808498,Benzo[a]Pyrene,LB
+37095,0.0003283244,Methane,TON
+37091,89.34759,Volatile Organic Compounds,TON
+37091,110.30624,Propionaldehyde,LB
+37091,24.45768,Acenaphthylene,LB
+37091,0.03545742,"Dibenzo[a,h]Anthracene",LB
+37091,1808.396,Acetaldehyde,LB
+37091,1.696589,PM2.5 Primary (Filt + Cond),TON
+37091,0.04189954,Sulfate Portion of PM2.5-PRI,TON
+37083,10.51083,Styrene,LB
+37083,4530.651,Carbon Dioxide,TON
+37083,0.1551436,Ammonia,TON
+37083,0.6380974,PM2.5 Primary (Filt + Cond),TON
+37079,1001.1852,Toluene,LB
+37079,233.6136,Hexane,LB
+37079,0.0002252164,Chromium (VI),LB
+37079,0.00241923,"Dibenzo[a,h]Anthracene",LB
+37079,0.1534875,Nitrous Oxide,TON
+37079,0.0003219822,Nitrate portion of PM2.5-PRI,TON
+37079,0.05925929,Organic Carbon portion of PM2.5-PRI,TON
+37071,14.269612,Propionaldehyde,LB
+37071,0.00414329,"Dibenzo[a,h]Anthracene",LB
+37071,0.1498871,Organic Carbon portion of PM2.5-PRI,TON
+37071,2.92918,Fluoranthene,LB
+37071,0.5561806,Chrysene,LB
+37071,627.0314,Formaldehyde,LB
+37071,0.6999994,Manganese,LB
+37071,0.018173334,Mercury,LB
+37071,0.3474512,Arsenic,LB
+37071,53.79146,Nitrogen Oxides,TON
+37071,0.3595801,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,11.887568,Styrene,LB
+37061,132.16098,Benzene,LB
+37061,2.948124,Acenaphthene,LB
+37061,0.03948116,Nitrous Oxide,TON
+37061,0.7021497,Ammonia,TON
+37061,4.97902,Anthracene,LB
+37061,3.192288,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,1725.3214,Formaldehyde,LB
+37061,31.50106,Phenanthrene,LB
+37047,2.61852,Styrene,LB
+37047,14.092318,Acrolein,LB
+37047,0.008439886,"Benzo[g,h,i,]Perylene",LB
+37047,175.16558,Formaldehyde,LB
+37047,4.291694,"2,2,4-Trimethylpentane",LB
+37047,0.4557248,Benz[a]Anthracene,LB
+37047,0.5990354,Acenaphthene,LB
+37047,2.227122,Phenanthrene,LB
+37047,5.712853,Carbon Monoxide,TON
+37047,1210.17,Carbon Dioxide,TON
+37047,8.275169,Nitrogen Oxides,TON
+37045,0.0005796939,Sulfur Dioxide,TON
+37045,0.02478862,"1,3-Butadiene",LB
+37045,1.6479644,Propionaldehyde,LB
+37045,0.0003687812,Fluoranthene,LB
+37045,1.8930698e-06,Nickel,LB
+37045,7.785274,Acetaldehyde,LB
+37045,0.001242773,Phenanthrene,LB
+37043,0.06681502,Toluene,LB
+37043,0.06147776,Xylenes (Mixed Isomers),LB
+37043,6.28685e-06,"Benzo[g,h,i,]Perylene",LB
+37043,3.031414e-05,Chrysene,LB
+37043,0.0004872892,Manganese,LB
+37043,0.0001003958,Arsenic,LB
+37043,0.1463596,Methane,TON
+37043,0.004292677,Nitrous Oxide,TON
+37043,6.935242e-05,Mercury,LB
+37043,5.556636,Styrene,LB
+37043,23.84102,Toluene,LB
+37043,1.0324,Anthracene,LB
+37043,8.56018e-05,Chromium (VI),LB
+37043,6.964493,Nitrogen Oxides,TON
+37043,0.03766757,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.3579431,PM10 Primary (Filt + Cond),TON
+37043,0.0174063,Sulfur Dioxide,TON
+37045,0.00013964822,Mercury,LB
+37045,279.1204,Acetaldehyde,LB
+37045,0.01420137,Nitrous Oxide,TON
+37045,0.09294973,Sulfur Dioxide,TON
+37045,34.72894,Propionaldehyde,LB
+37045,7.21109,Pyrene,LB
+37045,39.90394,Xylenes (Mixed Isomers),LB
+37045,0.03310404,"Benzo[g,h,i,]Perylene",LB
+37045,5.427892,Fluoranthene,LB
+37045,1.0542672,Chrysene,LB
+37045,0.2702914,Manganese,LB
+37045,191.09734,Acrolein,LB
+37045,10209.154,Hexane,LB
+37045,5.436546,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,6.770353,PM2.5 Primary (Filt + Cond),TON
+37045,3.996524,Sulfur Dioxide,TON
+37039,0.05683552,Benzo[a]Pyrene,LB
+37039,0.00692246,Nickel,LB
+37039,920.657,Carbon Dioxide,TON
+37027,0.0136594,Benzo[k]Fluoranthene,LB
+37027,0.333692,Benzo[a]Pyrene,LB
+37027,13.850838,"2,2,4-Trimethylpentane",LB
+37027,1.139388,PM10-Primary from certain diesel engines,TON
+37027,0.02094045,Nitrous Oxide,TON
+37175,7.396257e-05,Nitrate portion of PM2.5-PRI,TON
+37175,0.00546672,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.4339118,Volatile Organic Compounds,TON
+37175,0.1844718,Anthracene,LB
+37175,83.45646,Formaldehyde,LB
+37175,0.002507232,Benzo[a]Pyrene,LB
+37175,500.7707,Carbon Dioxide,TON
+37175,0.01054695,PM10-Primary from certain diesel engines,TON
+37159,13.087032,Xylenes (Mixed Isomers),LB
+37159,0.009149462,Arsenic,LB
+37153,0.00010718138,Anthracene,LB
+37153,9.94617e-07,Nickel,LB
+37153,4.486346,Acetaldehyde,LB
+37153,0.000795054,Phenanthrene,LB
+37153,0.001725256,Ammonia,TON
+37153,0.004295492,PM2.5 Primary (Filt + Cond),TON
+37153,0.002427507,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.3015765,PM2.5 Primary (Filt + Cond),TON
+37137,0.003082668,"Benzo[g,h,i,]Perylene",LB
+37137,0.5218242,Fluoranthene,LB
+37137,63.78738,Formaldehyde,LB
+37137,6.12192,Benzene,LB
+37137,0.02111304,Manganese,LB
+37137,1.4130212e-05,Mercury,LB
+37137,0.4776102,Fluorene,LB
+37137,7.110988,Naphthalene,LB
+37137,0.01721969,Methane,TON
+37137,0.2925097,PM25-Primary from certain diesel engines,TON
+37131,0.15863982,Propionaldehyde,LB
+37131,0.013558538,Pyrene,LB
+37131,0.019735042,"Benzo[g,h,i,]Perylene",LB
+37131,0.003626698,Chrysene,LB
+37131,0.007350116,Benzo[a]Pyrene,LB
+37131,0.0002313138,Nickel,LB
+37131,2.150662e-05,Nitrate portion of PM2.5-PRI,TON
+37131,0.001634589,Sulfur Dioxide,TON
+37131,0.0002283624,Sulfate Portion of PM2.5-PRI,TON
+37127,10.68684,PM10 Primary (Filt + Cond),TON
+37127,264.5378,Toluene,LB
+37127,63.62282,Hexane,LB
+37127,0.04948048,"Benzo[g,h,i,]Perylene",LB
+37127,0.03168566,"Dibenzo[a,h]Anthracene",LB
+37121,2.884044,Ethyl Benzene,LB
+37121,0.005149984,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.13082106,Chrysene,LB
+37121,0.02278395,Methane,TON
+37121,0.4031097,PM2.5 Primary (Filt + Cond),TON
+37111,0.293212,Methane,TON
+37111,0.03100718,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,1.314438,Methane,TON
+37117,0.2992312,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.00397992,Nitrate portion of PM2.5-PRI,TON
+37117,3.93045,PM10 Primary (Filt + Cond),TON
+37117,0.8060298,Chrysene,LB
+37107,6.999474e-05,Acrolein,LB
+37107,9.279884e-07,Benzo[b]Fluoranthene,LB
+37107,0.003670886,Benzene,LB
+37107,2.876214e-06,Methane,TON
+37107,3.382153e-09,Nitrate portion of PM2.5-PRI,TON
+37107,8.603673e-05,Nitrogen Oxides,TON
+37107,1.2282026,Toluene,LB
+37107,0.0002643214,Anthracene,LB
+37107,0.750681,Xylenes (Mixed Isomers),LB
+37107,0.000106514,Benzo[a]Pyrene,LB
+37107,1.6650834e-05,Manganese,LB
+37107,0.0001086787,PM2.5 Primary (Filt + Cond),TON
+37107,1.169268e-05,Sulfur Dioxide,TON
+37103,180.0799,"1,3-Butadiene",LB
+37103,3183.028,Xylenes (Mixed Isomers),LB
+37103,1.9393744,"Benzo[g,h,i,]Perylene",LB
+37103,0.4297674,Chrysene,LB
+37103,0.4540652,Benz[a]Anthracene,LB
+37103,0.0208584,Mercury,LB
+37103,432.9356,Acetaldehyde,LB
+37103,0.5131623,Nitrous Oxide,TON
+37097,5010.97,"1,3-Butadiene",LB
+37097,27717.34,Hexane,LB
+37097,42.36544,"Benzo[g,h,i,]Perylene",LB
+37097,6.268346,Arsenic,LB
+37097,1898.0036,Naphthalene,LB
+37097,22.15098,Methane,TON
+37097,623827.9,Carbon Dioxide,TON
+37097,0.05142925,Nitrate portion of PM2.5-PRI,TON
+37097,54.78981,PM10 Primary (Filt + Cond),TON
+37097,0.549525,Sulfate Portion of PM2.5-PRI,TON
+37053,0.281405,Styrene,LB
+37053,0.0013221116,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.16691432,Fluoranthene,LB
+37053,0.0556096,Benz[a]Anthracene,LB
+37053,0.2661252,Phenanthrene,LB
+37015,18.77232,Acrolein,LB
+37015,5.980998,Hexane,LB
+37015,6.806332e-05,Chromium (VI),LB
+37015,0.003280848,"Benzo[g,h,i,]Perylene",LB
+37015,0.006736156,Benzo[b]Fluoranthene,LB
+37015,22.38842,Benzene,LB
+37015,0.2479997,PM25-Primary from certain diesel engines,TON
+37015,0.000455813,Nitrate portion of PM2.5-PRI,TON
+37015,0.03582341,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.4777204,Phenanthrene,LB
+37011,575.1161,Carbon Dioxide,TON
+37011,0.0118304,Sulfur Dioxide,TON
+37009,0.07094996,Propionaldehyde,LB
+37009,1.306556e-06,Chromium (VI),LB
+37009,0.0013865184,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,3.391032,"2,2,4-Trimethylpentane",LB
+37009,3.79756,Benzene,LB
+37009,0.00025043,Arsenic,LB
+37009,0.003609196,Acenaphthene,LB
+37009,0.003262794,Methane,TON
+37009,1.589319,Carbon Monoxide,TON
+37009,0.002668505,Nitrous Oxide,TON
+37009,4.257863e-06,Nitrate portion of PM2.5-PRI,TON
+37009,0.0007287799,Organic Carbon portion of PM2.5-PRI,TON
+37009,3.56106e-05,Sulfate Portion of PM2.5-PRI,TON
+37009,1.2969298,Styrene,LB
+37009,1.100772,Acrolein,LB
+37009,230.8994,Toluene,LB
+37009,0.018401666,Benzo[a]Pyrene,LB
+37009,0.001355548,Nickel,LB
+37009,0.05488874,Acenaphthene,LB
+37009,1.467126,Nitrogen Oxides,TON
+37009,0.0003541675,Sulfate Portion of PM2.5-PRI,TON
+37001,0.07147048,Chrysene,LB
+37001,156.87078,"2,2,4-Trimethylpentane",LB
+37001,0.0008066756,Mercury,LB
+37001,22.9241,"1,3-Butadiene",LB
+37001,0.1490693,Methane,TON
+37001,0.06973152,Sulfur Dioxide,TON
+37007,1.6938712,Benzo[b]Fluoranthene,LB
+37007,4979.104,"2,2,4-Trimethylpentane",LB
+37007,14.207834,Fluorene,LB
+37007,1614.524,Carbon Monoxide,TON
+37007,0.006457787,Nitrate portion of PM2.5-PRI,TON
+37057,0.014390718,Phenanthrene,LB
+37057,0.006166412,Nitrous Oxide,TON
+37057,0.005948672,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,3.13383,"2,2,4-Trimethylpentane",LB
+37057,0.07266356,Styrene,LB
+37013,0.4721664,Hexane,LB
+37013,0.0004403328,Anthracene,LB
+37013,0.11585808,Propionaldehyde,LB
+37013,3.178029e-06,Nitrate portion of PM2.5-PRI,TON
+37013,0.004875138,PM10 Primary (Filt + Cond),TON
+37123,0.002969706,"Benzo[g,h,i,]Perylene",LB
+37123,0.0005895658,Benzo[k]Fluoranthene,LB
+37123,0.002525644,Acenaphthylene,LB
+37123,0.8990616,Formaldehyde,LB
+37123,0.6236668,Hexane,LB
+37123,0.662169,"2,2,4-Trimethylpentane",LB
+37123,1.749411,Benzene,LB
+37123,6.29198,Acetaldehyde,LB
+37123,0.0011066366,Fluorene,LB
+37123,81.81789,Carbon Dioxide,TON
+37123,0.001138764,Nitrous Oxide,TON
+37123,3.78844e-06,Nitrate portion of PM2.5-PRI,TON
+37017,0.0010584204,Benzo[k]Fluoranthene,LB
+37017,2.427654e-05,Mercury,LB
+37017,5.601857e-05,Sulfate Portion of PM2.5-PRI,TON
+37017,0.07233642,Volatile Organic Compounds,TON
+37073,0.009793448,Styrene,LB
+37073,0.000324435,Benzo[b]Fluoranthene,LB
+37073,0.0008430604,Manganese,LB
+37073,0.001910387,Phenanthrene,LB
+37073,0.0007354252,Nitrous Oxide,TON
+37073,0.0004060289,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.8337418,Hexane,LB
+37071,0.001868165,Arsenic,LB
+37071,0.09019273,Nitrogen Oxides,TON
+37071,0.001536505,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.0002538598,Mercury,LB
+37045,0.00316537,Nickel,LB
+37045,0.09679988,Naphthalene,LB
+37045,0.0017542488,Anthracene,LB
+37045,0.003735056,Pyrene,LB
+37045,0.002416932,Benzo[k]Fluoranthene,LB
+37045,3.05356,Formaldehyde,LB
+37045,0.004592522,Benzo[a]Pyrene,LB
+37019,0.0017592826,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.000693946,Chrysene,LB
+37019,0.0007271726,Acenaphthene,LB
+37019,0.006985543,Ammonia,TON
+37019,0.0112371,PM10 Primary (Filt + Cond),TON
+37019,0.00288855,PM2.5 Primary (Filt + Cond),TON
+37019,8.340223e-05,Sulfate Portion of PM2.5-PRI,TON
+37173,8.3159,Benzene,LB
+37173,0.017742182,Phenanthrene,LB
+37173,0.01101129,Sulfur Dioxide,TON
+37173,0.1914744,Volatile Organic Compounds,TON
+37173,0.002884552,Anthracene,LB
+37173,0.7558966,Propionaldehyde,LB
+37173,6.18456,Xylenes (Mixed Isomers),LB
+37173,0.015786568,"Benzo[g,h,i,]Perylene",LB
+37173,0.003157258,Benzo[b]Fluoranthene,LB
+37173,0.014477556,Acenaphthylene,LB
+37065,8.781706,"1,3-Butadiene",LB
+37065,0.09375542,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,367.4848,"2,2,4-Trimethylpentane",LB
+37065,0.1109251,Methane,TON
+37065,7.285096,Volatile Organic Compounds,TON
+37057,65.84782,Propionaldehyde,LB
+37057,8.411712,Fluoranthene,LB
+37057,6.488804,Acenaphthylene,LB
+37057,1475.5648,Formaldehyde,LB
+37057,14.881298,Phenanthrene,LB
+37057,0.1493589,Sulfate Portion of PM2.5-PRI,TON
+37057,7.417142,Volatile Organic Compounds,TON
+37055,4.569616e-05,Mercury,LB
+37055,0.592498,Phenanthrene,LB
+37055,8.122152,Naphthalene,LB
+37055,0.07752771,Methane,TON
+37055,0.01571332,Ammonia,TON
+37055,6.97513,Toluene,LB
+37055,0.15975548,Anthracene,LB
+37055,0.3007398,Pyrene,LB
+37055,0.0007654034,Benzo[b]Fluoranthene,LB
+37055,0.00011164582,Benzo[k]Fluoranthene,LB
+37045,20.95094,"2,2,4-Trimethylpentane",LB
+37045,0.0005262242,Nickel,LB
+37045,0.005401902,Nitrous Oxide,TON
+37045,0.02564168,PM10 Primary (Filt + Cond),TON
+37045,0.003676498,Sulfur Dioxide,TON
+37045,0.08742522,Acenaphthylene,LB
+37043,390.1856,Toluene,LB
+37043,0.0395017,Benzo[a]Pyrene,LB
+37043,0.008960172,Nickel,LB
+37043,0.6720604,Phenanthrene,LB
+37035,0.9975885,Volatile Organic Compounds,TON
+37035,0.7104156,Acrolein,LB
+37035,0.0012681118,Arsenic,LB
+37035,2.015868,Naphthalene,LB
+37035,6.572314e-05,Nitrate portion of PM2.5-PRI,TON
+37031,10.78497,Toluene,LB
+37031,10.784772,Xylenes (Mixed Isomers),LB
+37031,2.737406e-05,Chromium (VI),LB
+37031,0.12550916,Benzo[a]Pyrene,LB
+37031,17.186434,Naphthalene,LB
+37031,0.06458385,Methane,TON
+37031,0.1366817,Elemental Carbon portion of PM2.5-PRI,TON
+37025,35.31882,"1,3-Butadiene",LB
+37025,1.3954596,Fluoranthene,LB
+37025,361.4152,Formaldehyde,LB
+37025,1755.0884,"2,2,4-Trimethylpentane",LB
+37025,1300.0608,Benzene,LB
+37025,0.09557264,Manganese,LB
+37025,1.9342934,Fluorene,LB
+37025,221.6845,Carbon Monoxide,TON
+37025,5706.668,Carbon Dioxide,TON
+37025,0.01158955,Sulfate Portion of PM2.5-PRI,TON
+37171,22.63058,Toluene,LB
+37171,7.371976,Hexane,LB
+37171,0.01096401,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.005886482,"Dibenzo[a,h]Anthracene",LB
+37171,1558.964,Carbon Dioxide,TON
+37171,0.01357629,Sulfur Dioxide,TON
+37167,49.41718,Benzene,LB
+37167,1.264346,Nitrogen Oxides,TON
+37167,4.687644,"1,3-Butadiene",LB
+37167,0.1922644,Acenaphthylene,LB
+37167,13.209762,Formaldehyde,LB
+37157,0.02181592,"Benzo[g,h,i,]Perylene",LB
+37157,0.005471738,Benzo[k]Fluoranthene,LB
+37157,0.005049398,Chrysene,LB
+37157,0.5901695,Nitrogen Oxides,TON
+37151,0.1158715,PM2.5 Primary (Filt + Cond),TON
+37151,0.04971,Sulfur Dioxide,TON
+37151,129.44514,Ethyl Benzene,LB
+37151,3.774834,Propionaldehyde,LB
+37151,479.6362,Xylenes (Mixed Isomers),LB
+37151,59.44692,Formaldehyde,LB
+37151,0.10335068,Benzo[a]Pyrene,LB
+37151,0.06654954,Benz[a]Anthracene,LB
+37151,0.1720562,Methane,TON
+37151,2370.968,Carbon Dioxide,TON
+37151,0.02353393,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.09098237,Ammonia,TON
+37141,7.468988,"1,3-Butadiene",LB
+37141,1.2738112,Pyrene,LB
+37141,6.832926e-05,Chromium (VI),LB
+37141,1.2742552,Acenaphthylene,LB
+37141,21.68614,Benzene,LB
+37141,6.14638e-05,Mercury,LB
+37141,0.08464578,Methane,TON
+37141,0.004768481,Nitrous Oxide,TON
+37141,0.05731919,Ammonia,TON
+37141,0.264195,PM2.5 Primary (Filt + Cond),TON
+37129,5.47451,Acenaphthylene,LB
+37129,0.03681282,"Dibenzo[a,h]Anthracene",LB
+37129,0.11665624,Nickel,LB
+37129,4.239333,PM25-Primary from certain diesel engines,TON
+37129,0.02813624,Nitrous Oxide,TON
+37129,79.48656,Nitrogen Oxides,TON
+37129,0.1387166,Sulfate Portion of PM2.5-PRI,TON
+37129,5.749331,Volatile Organic Compounds,TON
+37125,0.10725254,Benzo[b]Fluoranthene,LB
+37125,0.015262158,Benzo[k]Fluoranthene,LB
+37125,4.033808,Fluorene,LB
+37125,25.65907,Carbon Monoxide,TON
+37125,2.811149,PM25-Primary from certain diesel engines,TON
+37125,0.6045256,Organic Carbon portion of PM2.5-PRI,TON
+37125,3.786673,Volatile Organic Compounds,TON
+37125,86.61718,Xylenes (Mixed Isomers),LB
+37121,11.762472,Xylenes (Mixed Isomers),LB
+37121,0.05344556,Manganese,LB
+37121,0.0156914,Arsenic,LB
+37121,0.118404,Methane,TON
+37121,0.4462743,PM25-Primary from certain diesel engines,TON
+37121,0.2946275,Elemental Carbon portion of PM2.5-PRI,TON
+37111,6.542758e-05,Acenaphthylene,LB
+37111,7.616798e-06,Chrysene,LB
+37111,3.772182e-07,"Dibenzo[a,h]Anthracene",LB
+37111,3.277612e-07,Nickel,LB
+37111,5.02565e-07,Arsenic,LB
+37111,0.004432228,Acetaldehyde,LB
+37111,7.91385e-05,Phenanthrene,LB
+37111,5.355293e-06,Nitrous Oxide,TON
+37111,0.04313728,Toluene,LB
+37111,1.623933e-05,PM2.5 Primary (Filt + Cond),TON
+37017,2.348792,Hexane,LB
+37017,591.2307,Carbon Dioxide,TON
+37019,0.014523698,Fluorene,LB
+37019,0.00486354,Methane,TON
+37019,234.9461,Carbon Dioxide,TON
+37019,0.01971021,PM10 Primary (Filt + Cond),TON
+37019,0.004922633,Sulfur Dioxide,TON
+37019,4.48954,Ethyl Benzene,LB
+37019,0.012134992,Pyrene,LB
+37019,0.010645024,Fluoranthene,LB
+37017,0.002109942,Benzo[b]Fluoranthene,LB
+37017,0.01194852,Fluoranthene,LB
+37017,0.00822865,Acenaphthene,LB
+37017,0.427208,Naphthalene,LB
+37017,0.002726275,Ammonia,TON
+37013,0.02576749,PM2.5 Primary (Filt + Cond),TON
+37013,46.77034,Ethyl Benzene,LB
+37013,0.00017894892,Mercury,LB
+37115,0.00235697,Benzo[a]Pyrene,LB
+37115,63.93347,Carbon Dioxide,TON
+37115,7.668282e-06,Nitrate portion of PM2.5-PRI,TON
+37115,0.1612148,Nitrogen Oxides,TON
+37115,2.350602,Ethyl Benzene,LB
+37115,0.00647912,Pyrene,LB
+37115,0.16819006,Hexane,LB
+37115,0.0004217114,"Benzo[g,h,i,]Perylene",LB
+37115,0.0011615118,Phenanthrene,LB
+37115,0.0001556005,Methane,TON
+37101,123.8118,Carbon Dioxide,TON
+37101,0.06906135,Volatile Organic Compounds,TON
+37101,0.002902328,Manganese,LB
+37101,175.4103,Ethyl Benzene,LB
+37101,94.09306,"1,3-Butadiene",LB
+37101,5680.464,Formaldehyde,LB
+37101,1.2042984,Benzo[a]Pyrene,LB
+37101,4.403544,Benz[a]Anthracene,LB
+37101,40.6377,Phenanthrene,LB
+37101,128781.7,Carbon Dioxide,TON
+37101,10.7586,PM25-Primary from certain diesel engines,TON
+37101,17.38884,PM10 Primary (Filt + Cond),TON
+37101,11.51834,PM2.5 Primary (Filt + Cond),TON
+37101,0.009032574,Arsenic,LB
+37101,0.221321,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.03367589,Ammonia,TON
+37101,12.29984,Nitrogen Oxides,TON
+37101,0.02083038,Sulfur Dioxide,TON
+37101,5.197716,"1,3-Butadiene",LB
+37101,12.853932,Acrolein,LB
+37087,4.242746,Anthracene,LB
+37087,2717.996,Formaldehyde,LB
+37087,0.178839,Nickel,LB
+37087,19.872534,Phenanthrene,LB
+37087,9.48241,Fluorene,LB
+37087,245.647,Naphthalene,LB
+37087,44.34239,Carbon Monoxide,TON
+37087,0.005439094,Chrysene,LB
+37087,0.006012584,Benz[a]Anthracene,LB
+37087,7.641964,Hexane,LB
+37087,0.0535947,Phenanthrene,LB
+37087,0.5015682,Naphthalene,LB
+37087,0.00426867,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.584188,Pyrene,LB
+37081,3.424238,Xylenes (Mixed Isomers),LB
+37081,0.003094626,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.4439638,Fluoranthene,LB
+37081,0.3307738,Acenaphthylene,LB
+37081,56.7131,Formaldehyde,LB
+37081,0.04077494,Benzo[a]Pyrene,LB
+37081,7.871264e-06,Mercury,LB
+37081,0.0016458134,Arsenic,LB
+37081,0.05335041,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.177248,PM10 Primary (Filt + Cond),TON
+37081,0.0234885,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.003596434,Sulfur Dioxide,TON
+37081,3653.868,Hexane,LB
+37081,0.7081922,Benzo[k]Fluoranthene,LB
+37081,27.75481,Nitrogen Oxides,TON
+37077,1.5972046,Arsenic,LB
+37077,1514.281,Carbon Monoxide,TON
+37077,9.720031,PM10 Primary (Filt + Cond),TON
+37077,4113.702,Ethyl Benzene,LB
+37077,6252.474,Hexane,LB
+37077,2.37612,Benzo[k]Fluoranthene,LB
+37077,2.12431,Chrysene,LB
+37065,10.10332,Ethyl Benzene,LB
+37065,7.796364,Hexane,LB
+37065,0.04727314,Benzo[b]Fluoranthene,LB
+37065,0.00662618,Benzo[k]Fluoranthene,LB
+37065,1.4505524,Acenaphthylene,LB
+37065,32.30384,Naphthalene,LB
+37065,0.1036085,Sulfur Dioxide,TON
+37051,0.03422112,Sulfur Dioxide,TON
+37051,10.152832,Ethyl Benzene,LB
+37051,6.248764e-05,Mercury,LB
+37051,1.9349888,Fluorene,LB
+37051,10.52026,Carbon Monoxide,TON
+37051,0.018622762,Acrolein,LB
+37051,0.0002091078,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,1.5394336e-05,Arsenic,LB
+37051,0.3029102,Acetaldehyde,LB
+37051,0.3046886,Carbon Monoxide,TON
+37051,0.0006622704,PM10 Primary (Filt + Cond),TON
+37051,8.321037e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.3561536,Hexane,LB
+37049,0.000402385,Benzo[k]Fluoranthene,LB
+37049,0.03304884,Benz[a]Anthracene,LB
+37049,1.3415474,Benzene,LB
+37049,0.002433562,Ammonia,TON
+37049,0.570074,Nitrogen Oxides,TON
+37045,0.8773428,Styrene,LB
+37045,1.7082914,Hexane,LB
+37045,0.00405755,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.34112,Acenaphthylene,LB
+37045,0.0534342,Benzo[a]Pyrene,LB
+37045,0.06942685,Elemental Carbon portion of PM2.5-PRI,TON
+37047,34.54506,Xylenes (Mixed Isomers),LB
+37047,0.009938896,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.006651838,Benzo[b]Fluoranthene,LB
+37047,0.009914834,Benzo[a]Pyrene,LB
+37047,9.16366e-05,Mercury,LB
+37047,495.6539,Carbon Dioxide,TON
+37047,0.01038856,Sulfur Dioxide,TON
+37041,0.8922096,Toluene,LB
+37041,0.0005023418,"Benzo[g,h,i,]Perylene",LB
+37041,0.0003254034,Fluoranthene,LB
+37041,2.316314e-06,Nickel,LB
+37041,1.219472,Carbon Dioxide,TON
+37041,4.138562e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,2.556802e-05,Sulfur Dioxide,TON
+37041,0.004326146,Volatile Organic Compounds,TON
+37031,23.40118,Formaldehyde,LB
+37031,63.221,"2,2,4-Trimethylpentane",LB
+37031,0.4024776,Phenanthrene,LB
+37031,0.15076866,Fluorene,LB
+37031,3.862962,Naphthalene,LB
+37029,0.711859,"1,3-Butadiene",LB
+37029,0.12166582,Acenaphthylene,LB
+37029,0.0008527808,Arsenic,LB
+37019,0.9016922,Benzene,LB
+37019,2.323072e-06,Nickel,LB
+37019,20.35202,Acetaldehyde,LB
+37019,0.006876268,Naphthalene,LB
+37019,0.004020224,Ammonia,TON
+37019,1.535348,Nitrogen Oxides,TON
+37019,0.000813467,Anthracene,LB
+37007,0.2932202,Styrene,LB
+37007,0.0013833884,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.0581616,Benz[a]Anthracene,LB
+37007,0.2730074,Phenanthrene,LB
+37007,0.06295678,PM10-Primary from certain diesel engines,TON
+37007,0.0003156747,Nitrate portion of PM2.5-PRI,TON
+37007,0.8721147,Nitrogen Oxides,TON
+37009,5.200012,Ethyl Benzene,LB
+37009,17.269054,Hexane,LB
+37009,19.612396,Xylenes (Mixed Isomers),LB
+37003,3.494552,Styrene,LB
+37003,7.963126,"1,3-Butadiene",LB
+37003,0.2610806,Pyrene,LB
+37003,5.329684e-05,Chromium (VI),LB
+37003,0.05467532,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.04196624,Chrysene,LB
+37003,0.8531078,Phenanthrene,LB
+37003,880.5771,Carbon Dioxide,TON
+37003,0.01194765,Nitrous Oxide,TON
+37003,1.752877,Nitrogen Oxides,TON
+37003,0.01480072,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,3.593026,Carbon Monoxide,TON
+37065,0.002527336,Nitrous Oxide,TON
+37065,0.001578007,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.001654682,Sulfur Dioxide,TON
+37065,0.012699242,"Benzo[g,h,i,]Perylene",LB
+37065,0.00316447,Benzo[b]Fluoranthene,LB
+37065,0.00316447,Benzo[k]Fluoranthene,LB
+37061,0.3967776,Styrene,LB
+37061,0.015464116,Anthracene,LB
+37061,0.009189478,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.0002108754,"Dibenzo[a,h]Anthracene",LB
+37061,20.86208,Benzene,LB
+37061,0.008940504,Sulfur Dioxide,TON
+37057,0.001309937,Nickel,LB
+37057,0.002008578,Arsenic,LB
+37057,0.02257722,Acenaphthene,LB
+37057,0.00325095,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.01717375,PM2.5 Primary (Filt + Cond),TON
+37057,0.03401956,Fluoranthene,LB
+37057,0.009151788,Benz[a]Anthracene,LB
+37055,2.792146,Fluoranthene,LB
+37055,0.01152915,"Dibenzo[a,h]Anthracene",LB
+37055,34.43058,Benzene,LB
+37055,0.0202165,Arsenic,LB
+37055,1.1286236,Acenaphthene,LB
+37055,2.535604,Fluorene,LB
+37055,0.8842084,PM25-Primary from certain diesel engines,TON
+37055,0.309823,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.1039966,Ammonia,TON
+37051,0.1277462,Anthracene,LB
+37051,0.249319,Pyrene,LB
+37051,0.008246,Nickel,LB
+37051,7.742482,Naphthalene,LB
+37051,63.12884,Carbon Monoxide,TON
+37051,0.09682466,Ammonia,TON
+37047,0.11101328,Anthracene,LB
+37047,3.851654,Xylenes (Mixed Isomers),LB
+37047,0.0002084736,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.0001152256,Benzo[k]Fluoranthene,LB
+37047,47.44916,Formaldehyde,LB
+37047,0.5757934,Pyrene,LB
+37047,0.5048062,Fluoranthene,LB
+37047,0.0014373886,Mercury,LB
+37047,2353.941,Carbon Dioxide,TON
+37047,0.1437969,PM2.5 Primary (Filt + Cond),TON
+37033,0.03347942,Propionaldehyde,LB
+37033,0.0019871994,"Benzo[g,h,i,]Perylene",LB
+37033,1.3488748,"2,2,4-Trimethylpentane",LB
+37033,0.0005034746,Benz[a]Anthracene,LB
+37033,0.0003645922,Organic Carbon portion of PM2.5-PRI,TON
+37031,4888.402,Benzene,LB
+37031,110279.9,Carbon Dioxide,TON
+37031,21771.9,Toluene,LB
+37031,12497.926,Xylenes (Mixed Isomers),LB
+37031,6.717938,Fluoranthene,LB
+37069,0.02689836,Styrene,LB
+37069,1.1908742,Hexane,LB
+37069,0.004875686,"Benzo[g,h,i,]Perylene",LB
+37069,4.20572e-05,"Dibenzo[a,h]Anthracene",LB
+37069,0.001266957,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.0016115938,Benz[a]Anthracene,LB
+37047,2.74936,Carbon Monoxide,TON
+37047,0.01936863,PM10 Primary (Filt + Cond),TON
+37171,2.3444,Benzene,LB
+37105,0.004781882,PM10 Primary (Filt + Cond),TON
+37105,0.0007897678,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.324396,"2,2,4-Trimethylpentane",LB
+37105,0.0006563698,Arsenic,LB
+37105,3.255352,Acetaldehyde,LB
+37105,0.0005650404,Fluorene,LB
+37105,0.0010547864,Benzo[b]Fluoranthene,LB
+37105,4.680538e-05,"Dibenzo[a,h]Anthracene",LB
+37105,1.0191248,"2,2,4-Trimethylpentane",LB
+37105,0.0009051644,Benz[a]Anthracene,LB
+37105,8.9569,Acetaldehyde,LB
+37197,0.004047522,Mercury,LB
+37197,0.0773823,Arsenic,LB
+37197,198.98164,Acetaldehyde,LB
+37197,0.5132283,PM10 Primary (Filt + Cond),TON
+37197,0.16562768,Chrysene,LB
+37197,181.26934,Formaldehyde,LB
+37191,0.0010916478,Acrolein,LB
+37191,0.018357452,Formaldehyde,LB
+37191,0.0002787694,Phenanthrene,LB
+37191,3.016188e-05,Methane,TON
+37191,0.01749763,Carbon Monoxide,TON
+37191,2.947465,Carbon Dioxide,TON
+37191,5.321324,Benzo[k]Fluoranthene,LB
+37191,8.844236,PM2.5 Primary (Filt + Cond),TON
+37189,8.602368,Acrolein,LB
+37189,0.003093318,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,107.73106,Formaldehyde,LB
+37189,0.0007466987,Nitrate portion of PM2.5-PRI,TON
+37189,0.03765608,Naphthalene,LB
+37189,0.0009263002,Methane,TON
+37189,6.540086e-08,Chromium (VI),LB
+37189,0.0018144868,"Benzo[g,h,i,]Perylene",LB
+37181,0.16141606,Styrene,LB
+37181,0.004124516,Chrysene,LB
+37181,0.009299454,Manganese,LB
+37181,0.006026324,Arsenic,LB
+37181,0.03157351,Ammonia,TON
+37181,0.004533163,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.3528731,Volatile Organic Compounds,TON
+37081,1.0859944,Styrene,LB
+37081,3.781818,Acrolein,LB
+37081,0.2603578,"Benzo[g,h,i,]Perylene",LB
+37081,0.09781874,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.17443768,Acenaphthylene,LB
+37081,77.32888,Formaldehyde,LB
+37081,0.0964971,Benzo[a]Pyrene,LB
+37081,0.04348484,Benz[a]Anthracene,LB
+37081,0.07604824,Fluorene,LB
+37009,4.966706,Toluene,LB
+37009,1.863696,"2,2,4-Trimethylpentane",LB
+37009,0.5187534,Benzene,LB
+37141,0.00950471,Nickel,LB
+37141,0.052012,Phenanthrene,LB
+37141,0.08335347,Methane,TON
+37141,0.01199158,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.08299158,PM10 Primary (Filt + Cond),TON
+37199,0.001173598,PM2.5 Primary (Filt + Cond),TON
+37199,0.04426278,Propionaldehyde,LB
+37199,0.003782344,Pyrene,LB
+37197,12.029896,Toluene,LB
+37197,0.0010240418,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.939374,Acenaphthylene,LB
+37197,173.97308,Formaldehyde,LB
+37197,0.9560922,Fluorene,LB
+37197,18.941032,Naphthalene,LB
+37197,0.005868706,Sulfate Portion of PM2.5-PRI,TON
+37185,0.664081,Hexane,LB
+37187,0.05841864,Ethyl Benzene,LB
+37187,0.001909746,Acrolein,LB
+37187,0.2157016,Xylenes (Mixed Isomers),LB
+37187,7.34263e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,3.96748e-05,Chrysene,LB
+37187,0.03340458,Formaldehyde,LB
+37187,0.10599394,Benzene,LB
+37187,5.23299e-05,Ammonia,TON
+37187,2.127395e-07,Nitrate portion of PM2.5-PRI,TON
+37187,1.944457e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,1.3915808,Acrolein,LB
+37183,32.40828,Toluene,LB
+37183,0.01215688,Anthracene,LB
+37181,0.0946004,Styrene,LB
+37181,9.276238,Xylenes (Mixed Isomers),LB
+37181,0.018619984,Acenaphthylene,LB
+37181,0.004008878,Benzo[a]Pyrene,LB
+37181,9.282472e-05,"Dibenzo[a,h]Anthracene",LB
+37181,2.803568e-05,Mercury,LB
+37181,0.2557456,Nitrogen Oxides,TON
+37179,0.03155184,PM10 Primary (Filt + Cond),TON
+37179,0.004808703,Sulfur Dioxide,TON
+37179,36.399,Hexane,LB
+37179,0.004904402,Benzo[b]Fluoranthene,LB
+37179,0.005459474,Chrysene,LB
+37179,28.8133,Benzene,LB
+37007,7.5266,"2,2,4-Trimethylpentane",LB
+37007,0.0015226676,Benz[a]Anthracene,LB
+37007,1.9390968,Acetaldehyde,LB
+37007,0.3079622,Naphthalene,LB
+37007,5.795398e-06,Nitrate portion of PM2.5-PRI,TON
+37007,0.005749357,PM10 Primary (Filt + Cond),TON
+37007,0.7803852,"1,3-Butadiene",LB
+37007,0.10878588,Acrolein,LB
+37007,17.818526,Xylenes (Mixed Isomers),LB
+37007,0.009233516,Fluoranthene,LB
+37007,2.079934,Acetaldehyde,LB
+37007,0.0004350314,Ammonia,TON
+37013,265.079,Acrolein,LB
+37013,23.72428,Pyrene,LB
+37013,31582.52,Xylenes (Mixed Isomers),LB
+37013,14055.036,Benzene,LB
+37013,78.03868,Phenanthrene,LB
+37003,0.04294052,Benzo[b]Fluoranthene,LB
+37003,0.14379594,Benzo[a]Pyrene,LB
+37003,7.21155,"2,2,4-Trimethylpentane",LB
+37003,0.000130737,Mercury,LB
+37003,2.594496,Phenanthrene,LB
+37003,0.1592391,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,1.1072542,"1,3-Butadiene",LB
+37001,0.00783394,Benzo[b]Fluoranthene,LB
+37001,0.0030087,Arsenic,LB
+37001,0.2481278,Fluorene,LB
+37001,0.02542448,Methane,TON
+37001,1.229552,Carbon Monoxide,TON
+37001,0.2763642,PM10 Primary (Filt + Cond),TON
+37001,0.02221158,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.3215126,Ethyl Benzene,LB
+37043,0.2993938,Hexane,LB
+37037,1.7889486,Ethyl Benzene,LB
+37037,14.273566,Toluene,LB
+37037,5.355996,"2,2,4-Trimethylpentane",LB
+37171,0.001093501,Anthracene,LB
+37171,0.2776846,Propionaldehyde,LB
+37171,0.001538867,Benzo[b]Fluoranthene,LB
+37171,0.00206511,Fluoranthene,LB
+37171,0.00015195898,Mercury,LB
+37171,13.442176,Acetaldehyde,LB
+37171,0.002333408,Fluorene,LB
+37171,0.001965049,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.004473136,PM2.5 Primary (Filt + Cond),TON
+37145,0.5326726,Toluene,LB
+37145,0.0003821064,Benzo[a]Pyrene,LB
+37145,0.6570922,Benzene,LB
+37141,0.009745978,Styrene,LB
+37141,0.0812166,Propionaldehyde,LB
+37141,0.0015625094,Acenaphthylene,LB
+37141,1.8526054e-05,"Dibenzo[a,h]Anthracene",LB
+37141,3.913808,Acetaldehyde,LB
+37141,0.0019316024,Phenanthrene,LB
+37141,61.22343,Carbon Dioxide,TON
+37131,0.8541942,Benzene,LB
+37099,0.0293904,"Benzo[g,h,i,]Perylene",LB
+37099,0.008961554,Fluoranthene,LB
+37099,0.02404808,Acenaphthylene,LB
+37099,5.226548,"2,2,4-Trimethylpentane",LB
+37099,0.005498228,Nickel,LB
+37099,0.010528856,Fluorene,LB
+37099,0.04091682,Ammonia,TON
+37099,0.007112847,Organic Carbon portion of PM2.5-PRI,TON
+37101,7.491178,Ethyl Benzene,LB
+37097,0.0248537,Nickel,LB
+37097,246.6292,Acetaldehyde,LB
+37097,0.0001982126,Nitrate portion of PM2.5-PRI,TON
+37097,2.838985,Nitrogen Oxides,TON
+37097,0.08152919,PM2.5 Primary (Filt + Cond),TON
+37097,42.86664,Formaldehyde,LB
+37171,0.3726802,Styrene,LB
+37171,0.02435188,Fluoranthene,LB
+37171,0.01282819,Benzo[a]Pyrene,LB
+37171,14.297182,"2,2,4-Trimethylpentane",LB
+37171,0.08775198,Phenanthrene,LB
+37171,0.004130549,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.000399482,Sulfate Portion of PM2.5-PRI,TON
+37169,12.170192,Formaldehyde,LB
+37169,0.076087,Fluorene,LB
+37169,0.00500204,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.001900865,Ammonia,TON
+37169,4.527197e-05,Nitrate portion of PM2.5-PRI,TON
+37149,5.013132,"1,3-Butadiene",LB
+37149,37.6462,Hexane,LB
+37149,0.0002789196,Mercury,LB
+37149,0.005332884,Arsenic,LB
+37149,2.249578,Naphthalene,LB
+37149,1068.516,Carbon Dioxide,TON
+37149,0.001654819,Sulfate Portion of PM2.5-PRI,TON
+37149,0.7897021,Volatile Organic Compounds,TON
+37141,0.0008338258,Anthracene,LB
+37141,0.0014845304,Fluoranthene,LB
+37141,2.344496e-05,Arsenic,LB
+37141,0.0009855855,Methane,TON
+37137,1.818797,Methane,TON
+37137,625.2506,Carbon Monoxide,TON
+37137,59.57882,Acrolein,LB
+37137,0.018455434,"Dibenzo[a,h]Anthracene",LB
+37137,2214.742,"2,2,4-Trimethylpentane",LB
+37129,1733.1162,Ethyl Benzene,LB
+37129,9998.512,Toluene,LB
+37129,864.6222,Formaldehyde,LB
+37121,22.25972,Hexane,LB
+37121,6.859538,Formaldehyde,LB
+37121,0.00017016948,"Dibenzo[a,h]Anthracene",LB
+37121,0.000938672,Arsenic,LB
+37121,0.4621934,Volatile Organic Compounds,TON
+37117,0.00011925278,"Benzo[g,h,i,]Perylene",LB
+37117,2.17664e-05,"Dibenzo[a,h]Anthracene",LB
+37117,0.006158738,Benz[a]Anthracene,LB
+37117,0.002004611,PM10-Primary from certain diesel engines,TON
+37117,0.0001256564,Nitrous Oxide,TON
+37117,0.002517425,PM2.5 Primary (Filt + Cond),TON
+37117,0.00069691,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.003485308,"Benzo[g,h,i,]Perylene",LB
+37117,0.0013095576,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,3.747912,Benzene,LB
+37117,0.9806814,Acetaldehyde,LB
+37117,0.003214578,Acenaphthene,LB
+37117,0.006511488,Fluorene,LB
+37117,0.001611028,Nitrous Oxide,TON
+37117,0.001993651,Ammonia,TON
+37117,0.002080274,PM2.5 Primary (Filt + Cond),TON
+37117,0.8026118,Arsenic,LB
+37117,2506.626,Acetaldehyde,LB
+37101,128.32838,"1,3-Butadiene",LB
+37101,209.473,Propionaldehyde,LB
+37101,1.239679,Chrysene,LB
+37101,3832.938,Formaldehyde,LB
+37101,94.1467,"2,2,4-Trimethylpentane",LB
+37101,34.13754,Phenanthrene,LB
+37101,22.15032,Fluorene,LB
+37101,25385.51,Carbon Dioxide,TON
+37101,0.2219087,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,7.049358e-05,Mercury,LB
+37091,0.1043236,Methane,TON
+37091,5.253356,Carbon Monoxide,TON
+37091,0.4919934,Anthracene,LB
+37103,0.00258169,Pyrene,LB
+37103,3.509362,Xylenes (Mixed Isomers),LB
+37103,0.006816826,Acenaphthylene,LB
+37103,1.2239958,"2,2,4-Trimethylpentane",LB
+37103,1.5820706,Benzene,LB
+37103,0.000158852,Nickel,LB
+37103,0.0004533923,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.009915578,PM25-Primary from certain diesel engines,TON
+37095,5.384986e-05,Nitrate portion of PM2.5-PRI,TON
+37095,3.849204,Formaldehyde,LB
+37095,0.003061698,Benzo[a]Pyrene,LB
+37095,1.6416372,Acetaldehyde,LB
+37095,0.002012111,Methane,TON
+37095,40.45499,Carbon Dioxide,TON
+37093,17.57442,"2,2,4-Trimethylpentane",LB
+37093,0.5198888,Benz[a]Anthracene,LB
+37093,0.08404388,Manganese,LB
+37093,79.35444,Naphthalene,LB
+37093,3943.331,Carbon Dioxide,TON
+37093,0.1266178,Ammonia,TON
+37089,9.245882e-05,Chromium (VI),LB
+37089,161.43794,Acetaldehyde,LB
+37089,0.3668995,PM25-Primary from certain diesel engines,TON
+37089,0.2455268,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.009956109,Nitrous Oxide,TON
+37089,0.02352598,Sulfur Dioxide,TON
+37083,0.8064452,"1,3-Butadiene",LB
+37083,9.96478e-06,Mercury,LB
+37083,2.795866,Naphthalene,LB
+37083,0.02373407,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.01132824,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.4289548,Styrene,LB
+37083,2.610688,Acrolein,LB
+37083,0.00015604838,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.9387122,"2,2,4-Trimethylpentane",LB
+37083,0.007381942,PM10-Primary from certain diesel engines,TON
+37083,0.003721266,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.09442,Phenanthrene,LB
+37053,0.4976306,Propionaldehyde,LB
+37053,0.07175246,Fluoranthene,LB
+37053,0.05061282,Acenaphthylene,LB
+37053,3.641318e-06,Mercury,LB
+37053,0.11800492,Phenanthrene,LB
+37053,0.326599,Carbon Monoxide,TON
+37053,0.0003619092,Nitrous Oxide,TON
+37053,0.0459259,PM2.5 Primary (Filt + Cond),TON
+37053,0.002251825,Sulfate Portion of PM2.5-PRI,TON
+37197,0.0004064748,Manganese,LB
+37197,1.8815096e-05,Mercury,LB
+37197,0.0002345956,Nickel,LB
+37197,0.0001159096,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.001750115,PM10 Primary (Filt + Cond),TON
+37197,0.0004043982,Pyrene,LB
+37197,1.8769296e-06,Chromium (VI),LB
+37197,0.0002555846,Benzo[k]Fluoranthene,LB
+37197,0.210115,"2,2,4-Trimethylpentane",LB
+37193,565.8938,Ethyl Benzene,LB
+37193,292.8708,Formaldehyde,LB
+37191,0.7281882,Hexane,LB
+37191,7.028332e-06,Chromium (VI),LB
+37191,0.004369094,"Benzo[g,h,i,]Perylene",LB
+37191,0.001641513,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.4186156,Ethyl Benzene,LB
+37191,0.0008785218,Nickel,LB
+37191,0.003611999,Sulfur Dioxide,TON
+37187,0.4275244,Benz[a]Anthracene,LB
+37187,0.015589656,Mercury,LB
+37187,1.990604,Ammonia,TON
+37187,35.50484,Nitrogen Oxides,TON
+37179,0.787276,Anthracene,LB
+37179,1.9344366,Pyrene,LB
+37179,0.03032814,Benzo[b]Fluoranthene,LB
+37179,1.5070076,Fluoranthene,LB
+37179,0.8269336,Acenaphthene,LB
+37171,81.96562,Ethyl Benzene,LB
+37171,16.741848,Styrene,LB
+37171,43.34146,"1,3-Butadiene",LB
+37171,3.94082,Anthracene,LB
+37171,2657.638,Formaldehyde,LB
+37171,982.728,Acetaldehyde,LB
+37171,7.593897,PM10 Primary (Filt + Cond),TON
+37171,168.7405,Formaldehyde,LB
+37171,18.335908,Naphthalene,LB
+37171,7.690227,Carbon Monoxide,TON
+37171,0.3168801,PM25-Primary from certain diesel engines,TON
+37171,0.001003062,Nitrate portion of PM2.5-PRI,TON
+37171,0.4769065,PM10 Primary (Filt + Cond),TON
+37171,0.01717992,Sulfur Dioxide,TON
+37171,5.582764,Ethyl Benzene,LB
+37171,5.317786,"1,3-Butadiene",LB
+37171,4.239532,Hexane,LB
+37171,8.772082,Propionaldehyde,LB
+37171,0.9045314,Fluoranthene,LB
+37171,0.002106022,Benzo[k]Fluoranthene,LB
+37149,164.83892,Ethyl Benzene,LB
+37149,0.09027866,Benz[a]Anthracene,LB
+37149,0.0449774,Manganese,LB
+37149,0.2881588,Acenaphthene,LB
+37149,0.1396669,PM2.5 Primary (Filt + Cond),TON
+37149,1342.5004,Hexane,LB
+37137,0.2135576,Fluoranthene,LB
+37137,51.61154,Acetaldehyde,LB
+37137,31.20662,Carbon Monoxide,TON
+37137,0.0001303736,Nitrate portion of PM2.5-PRI,TON
+37137,0.02344933,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.1257316,Anthracene,LB
+37135,18.126886,Benzene,LB
+37133,0.06249178,Arsenic,LB
+37133,33.47727,Nitrogen Oxides,TON
+37133,9.712454,Styrene,LB
+37133,22.64812,"1,3-Butadiene",LB
+37133,0.549271,Benzo[a]Pyrene,LB
+37133,1.7817196,Benz[a]Anthracene,LB
+37129,0.01235876,Sulfate Portion of PM2.5-PRI,TON
+37129,1.435671,Volatile Organic Compounds,TON
+37129,0.5690112,Anthracene,LB
+37129,30.41414,Xylenes (Mixed Isomers),LB
+37129,0.3175166,Methane,TON
+37129,25.84343,Carbon Monoxide,TON
+37125,0.083869,Anthracene,LB
+37125,0.0104745,Ammonia,TON
+37125,0.2399046,Pyrene,LB
+37125,0.0010780846,"Benzo[g,h,i,]Perylene",LB
+37125,0.1818712,Fluoranthene,LB
+37125,0.003924852,Nickel,LB
+37123,0.572715,Propionaldehyde,LB
+37123,0.802222,Xylenes (Mixed Isomers),LB
+37123,0.05893586,Acenaphthylene,LB
+37123,0.0002880566,"Dibenzo[a,h]Anthracene",LB
+37123,317.4752,Carbon Dioxide,TON
+37123,0.07296484,PM10 Primary (Filt + Cond),TON
+37123,0.004973137,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.14888232,Chrysene,LB
+37121,123.43994,Formaldehyde,LB
+37121,0.003124116,"Dibenzo[a,h]Anthracene",LB
+37121,11.138312,Benzene,LB
+37121,0.00629854,Arsenic,LB
+37121,1162.44,Carbon Dioxide,TON
+37121,0.3875914,Anthracene,LB
+37121,6.016402,Propionaldehyde,LB
+37121,0.1007575,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.004751534,"Benzo[g,h,i,]Perylene",LB
+37121,0.005810072,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.3410928,Fluoranthene,LB
+37123,0.04516022,Chrysene,LB
+37123,1.3048374,"2,2,4-Trimethylpentane",LB
+37123,5.388544,Benzene,LB
+37123,0.010770782,Manganese,LB
+37123,24.59262,Acetaldehyde,LB
+37123,0.08754952,Elemental Carbon portion of PM2.5-PRI,TON
+37123,4.992293,Nitrogen Oxides,TON
+37119,0.03152532,Chrysene,LB
+37119,27.35788,Acetaldehyde,LB
+37119,0.05511852,Methane,TON
+37119,3.202169,Nitrogen Oxides,TON
+37119,0.06771961,PM2.5 Primary (Filt + Cond),TON
+37119,1.806467,Volatile Organic Compounds,TON
+37119,2.07201,Styrene,LB
+37119,1.8109408,Acrolein,LB
+37119,101.9985,Benzene,LB
+37113,0.08315203,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,86.84498,Toluene,LB
+37113,6.087722,Fluoranthene,LB
+37113,7116.448,Carbon Dioxide,TON
+37113,0.7679175,Elemental Carbon portion of PM2.5-PRI,TON
+37105,1.529178,Propionaldehyde,LB
+37105,0.15294122,Acenaphthylene,LB
+37105,0.2057576,Fluorene,LB
+37105,0.001187776,Nitrous Oxide,TON
+37105,1.421966,Nitrogen Oxides,TON
+37091,2.669082,Propionaldehyde,LB
+37091,0.005388306,Benzo[b]Fluoranthene,LB
+37091,0.2933288,Fluoranthene,LB
+37091,0.2826782,Acenaphthylene,LB
+37091,0.018072244,Benzo[a]Pyrene,LB
+37091,0.01171152,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,1.4790346,Manganese,LB
+37093,8.584426,Acenaphthene,LB
+37093,4.903399,Methane,TON
+37093,0.5819637,Elemental Carbon portion of PM2.5-PRI,TON
+37093,1.8780306,Benzo[b]Fluoranthene,LB
+37093,12.362844,Fluoranthene,LB
+37079,0.00592879,"Benzo[g,h,i,]Perylene",LB
+37079,0.14248038,Chrysene,LB
+37079,451.9438,Formaldehyde,LB
+37079,1.5624766,Acenaphthene,LB
+37079,2.707292,Volatile Organic Compounds,TON
+37073,2.035172,Acetaldehyde,LB
+37073,0.00016967196,Fluorene,LB
+37073,0.0001926826,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.004881871,Nitrous Oxide,TON
+37073,0.08109628,Acrolein,LB
+37073,19.61952,Phenanthrene,LB
+37073,188.016,Naphthalene,LB
+37073,97.5391,Nitrogen Oxides,TON
+37073,3.08201,Anthracene,LB
+37073,74.40054,Propionaldehyde,LB
+37073,5.975264,Pyrene,LB
+37073,0.8494276,Benzo[k]Fluoranthene,LB
+37073,2130.202,Ethyl Benzene,LB
+37073,0.02327002,"Dibenzo[a,h]Anthracene",LB
+37073,0.02850562,Sulfate Portion of PM2.5-PRI,TON
+37079,633.1402,Ethyl Benzene,LB
+37067,0.007515717,Ammonia,TON
+37067,2.16705,Nitrogen Oxides,TON
+37067,2.957808,Propionaldehyde,LB
+37067,0.03953396,Benzo[a]Pyrene,LB
+37067,0.01241225,Methane,TON
+37067,0.011700596,Manganese,LB
+37067,0.0154043,Sulfur Dioxide,TON
+37067,0.011202994,Benz[a]Anthracene,LB
+37067,0.4053994,Acrolein,LB
+37067,17.54512,Hexane,LB
+37067,0.017793688,Anthracene,LB
+37067,43.90932,Xylenes (Mixed Isomers),LB
+37065,28.2603,Naphthalene,LB
+37065,7.343054,Carbon Monoxide,TON
+37065,6.39716,Hexane,LB
+37065,2.861894,Pyrene,LB
+37065,0.00893456,Benzo[k]Fluoranthene,LB
+37059,1.725411,Sulfur Dioxide,TON
+37059,3545.246,Ethyl Benzene,LB
+37059,100.07112,Propionaldehyde,LB
+37059,0.005693118,Chromium (VI),LB
+37059,1.8151454,Benzo[b]Fluoranthene,LB
+37059,1.6819888,Chrysene,LB
+37059,4738.366,"2,2,4-Trimethylpentane",LB
+37059,82246.61,Carbon Dioxide,TON
+37059,7.441519,Ammonia,TON
+37043,0.10371274,Acrolein,LB
+37043,0.0129702,Pyrene,LB
+37043,7.049936e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.0002611161,Ammonia,TON
+37043,9.472501e-05,Sulfur Dioxide,TON
+37043,0.004258338,Acenaphthene,LB
+37043,0.01584196,Phenanthrene,LB
+37043,1.1533062,Styrene,LB
+37043,6.63724,Toluene,LB
+37043,0.00242085,Benzo[k]Fluoranthene,LB
+37043,2.325474,"2,2,4-Trimethylpentane",LB
+37043,0.195594,Benz[a]Anthracene,LB
+37043,37.79918,Acetaldehyde,LB
+37043,0.07785777,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.0002002244,Chromium (VI),LB
+37037,0.016138254,Benzo[k]Fluoranthene,LB
+37037,0.3933188,Benzo[a]Pyrene,LB
+37037,54.48398,Benzene,LB
+37037,8884.1,Carbon Dioxide,TON
+37037,1.526119,PM10-Primary from certain diesel engines,TON
+37035,0.04210378,Benzo[k]Fluoranthene,LB
+37035,6.657444,Acenaphthylene,LB
+37035,0.1596243,Sulfur Dioxide,TON
+37035,6.909803,Volatile Organic Compounds,TON
+37035,512.859,Acetaldehyde,LB
+37035,3.959656,Acenaphthene,LB
+37035,15.414276,Phenanthrene,LB
+37035,8.896154,Fluorene,LB
+37035,129.64204,Naphthalene,LB
+37035,18391.93,Carbon Dioxide,TON
+37027,1285.713,Carbon Dioxide,TON
+37027,0.009519414,Sulfate Portion of PM2.5-PRI,TON
+37027,0.379606,Anthracene,LB
+37027,0.18870056,Benz[a]Anthracene,LB
+37027,0.02915106,"Benzo[g,h,i,]Perylene",LB
+37027,0.9320466,Chrysene,LB
+37027,0.019849794,Arsenic,LB
+37027,14.6674,Carbon Monoxide,TON
+37027,0.008549112,Nitrate portion of PM2.5-PRI,TON
+37023,237.0882,Acetaldehyde,LB
+37023,7.061852,Phenanthrene,LB
+37023,6.06491,Pyrene,LB
+37023,0.01893763,Benzo[k]Fluoranthene,LB
+37023,3.198685,Volatile Organic Compounds,TON
+37023,43.3228,Acrolein,LB
+37023,29.49064,Propionaldehyde,LB
+37159,0.061114,Nickel,LB
+37159,0.02239464,Arsenic,LB
+37159,33.28036,Naphthalene,LB
+37159,0.03085596,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.07202139,PM2.5 Primary (Filt + Cond),TON
+37159,0.01563816,Sulfur Dioxide,TON
+37159,10.182866,Ethyl Benzene,LB
+37159,0.00011474664,Chromium (VI),LB
+37159,0.017192066,Benzo[a]Pyrene,LB
+37159,7.901344,"2,2,4-Trimethylpentane",LB
+37149,0.002014906,Benzo[b]Fluoranthene,LB
+37149,0.0002821904,Benzo[k]Fluoranthene,LB
+37149,0.4740372,Acenaphthylene,LB
+37149,0.05869772,Benz[a]Anthracene,LB
+37149,2.538572e-05,Mercury,LB
+37149,0.7536966,Phenanthrene,LB
+37149,0.4817504,Fluorene,LB
+37149,0.03430153,Methane,TON
+37149,671.3539,Carbon Dioxide,TON
+37149,0.1199747,PM10 Primary (Filt + Cond),TON
+37153,0.16128672,Benzo[k]Fluoranthene,LB
+37153,0.05177156,Nickel,LB
+37153,33.03274,Naphthalene,LB
+37153,0.0006498708,Nitrate portion of PM2.5-PRI,TON
+37153,0.1164844,Organic Carbon portion of PM2.5-PRI,TON
+37147,84.21484,Naphthalene,LB
+37147,3.083084,PM25-Primary from certain diesel engines,TON
+37147,4.154606,Volatile Organic Compounds,TON
+37147,67.87792,Toluene,LB
+37147,0.000335103,Chromium (VI),LB
+37147,822.9346,Formaldehyde,LB
+37147,1.5030392,Acrolein,LB
+37147,1.2598112,Toluene,LB
+37147,0.06748318,Anthracene,LB
+37147,0.18935614,Pyrene,LB
+37147,0.13463954,Fluorene,LB
+37147,147.5414,Carbon Dioxide,TON
+37147,0.0002325528,Nitrate portion of PM2.5-PRI,TON
+37147,0.732163,Nitrogen Oxides,TON
+37147,0.01868938,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.0583885,PM10 Primary (Filt + Cond),TON
+37135,45.51136,Benzene,LB
+37015,0.005480177,Nitrogen Oxides,TON
+37015,1.889265e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.0002062654,Pyrene,LB
+37015,6.42084e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,1.2232198,Benzene,LB
+37199,0.001965602,Nickel,LB
+37199,0.04060936,Acenaphthene,LB
+37199,0.01227486,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.0003955732,Nitrous Oxide,TON
+37199,0.5083981,Nitrogen Oxides,TON
+37199,0.4404462,Ethyl Benzene,LB
+37199,0.0006073528,"Benzo[g,h,i,]Perylene",LB
+37191,70.89138,Naphthalene,LB
+37191,810.6178,Ethyl Benzene,LB
+37191,4593.094,Toluene,LB
+37191,0.011089668,"Dibenzo[a,h]Anthracene",LB
+37187,1.1028544,Toluene,LB
+37187,0.10167178,Propionaldehyde,LB
+37187,4.609058e-06,Chromium (VI),LB
+37187,0.000341495,Chrysene,LB
+37187,0.6903572,Formaldehyde,LB
+37187,4.88451,Acetaldehyde,LB
+37187,3.252657e-05,Sulfate Portion of PM2.5-PRI,TON
+37187,0.03964846,Manganese,LB
+37187,0.3516624,Acenaphthene,LB
+37187,0.045135,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.03611756,Sulfur Dioxide,TON
+37187,0.6462671,Volatile Organic Compounds,TON
+37187,3.48418,"1,3-Butadiene",LB
+37187,5.834774,Propionaldehyde,LB
+37187,5.136928e-05,Chromium (VI),LB
+37187,0.004101442,"Benzo[g,h,i,]Perylene",LB
+37195,0.03672868,"Benzo[g,h,i,]Perylene",LB
+37195,0.5197667,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,9.141376,Volatile Organic Compounds,TON
+37195,3.894796,Acenaphthene,LB
+37187,0.000362751,Styrene,LB
+37187,0.013416916,Hexane,LB
+37187,0.0003129036,Propionaldehyde,LB
+37187,1.219916e-05,Methane,TON
+37187,0.00648022,Carbon Monoxide,TON
+37187,9.101716e-06,Nitrous Oxide,TON
+37187,2.240998e-05,Fluoranthene,LB
+37187,6.917618e-05,Acenaphthylene,LB
+37187,4.765416e-06,Chrysene,LB
+37187,7.42151e-06,Benzo[a]Pyrene,LB
+37183,0.0069587,Benzo[k]Fluoranthene,LB
+37183,0.012786066,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,3.0222,Phenanthrene,LB
+37183,0.04929553,Sulfur Dioxide,TON
+37181,11.36218,Benzene,LB
+37181,52.50948,Acetaldehyde,LB
+37181,0.3932874,Acenaphthene,LB
+37181,1.0694334,Phenanthrene,LB
+37181,7.088801,Carbon Monoxide,TON
+37181,0.006686657,Sulfur Dioxide,TON
+37179,0.00013673406,Mercury,LB
+37179,0.00685767,Phenanthrene,LB
+37179,1.517632,Carbon Monoxide,TON
+37179,0.0011499,Chrysene,LB
+37179,6.703562e-05,"Dibenzo[a,h]Anthracene",LB
+37179,0.0013080454,Benz[a]Anthracene,LB
+37181,88.28742,"1,3-Butadiene",LB
+37181,464.3674,Hexane,LB
+37181,0.16686834,Benzo[k]Fluoranthene,LB
+37181,0.16674894,Chrysene,LB
+37181,192.72006,Formaldehyde,LB
+37181,213.2318,Acetaldehyde,LB
+37181,0.6243504,Acenaphthene,LB
+37181,3.388348,Phenanthrene,LB
+37179,2.005896,Anthracene,LB
+37177,0.357553,"2,2,4-Trimethylpentane",LB
+37177,0.10372934,Fluorene,LB
+37177,1.5899302,Naphthalene,LB
+37177,0.03747793,PM25-Primary from certain diesel engines,TON
+37177,0.03847466,PM2.5 Primary (Filt + Cond),TON
+37177,0.4737226,"1,3-Butadiene",LB
+37177,1.1467566,Acrolein,LB
+37177,0.1475052,Pyrene,LB
+37043,3.971476,Toluene,LB
+37043,1.5809132,Hexane,LB
+37043,1.879874,Carbon Monoxide,TON
+37043,0.3782202,PM10 Primary (Filt + Cond),TON
+37043,0.005607895,Sulfate Portion of PM2.5-PRI,TON
+37043,0.0568973,Acrolein,LB
+37043,0.0752806,Propionaldehyde,LB
+37043,0.00339364,"Benzo[g,h,i,]Perylene",LB
+37043,0.0009617402,Benzo[b]Fluoranthene,LB
+37043,1.8710794e-05,Nickel,LB
+37043,0.0003613547,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.00146821,Nitrous Oxide,TON
+37043,0.06340864,Volatile Organic Compounds,TON
+37037,0.0484553,Pyrene,LB
+37037,0.15705434,Phenanthrene,LB
+37037,0.05843428,Fluorene,LB
+37037,0.002751816,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.00013652714,Chromium (VI),LB
+37037,0.099576,Benzo[b]Fluoranthene,LB
+37037,0.3200106,Acenaphthene,LB
+37037,0.1564745,Methane,TON
+37037,0.1378929,PM2.5 Primary (Filt + Cond),TON
+37029,0.0013250082,Benzo[k]Fluoranthene,LB
+37029,0.300567,Benz[a]Anthracene,LB
+37029,2883.142,Carbon Dioxide,TON
+37029,0.373734,PM25-Primary from certain diesel engines,TON
+37029,0.00746659,Nitrous Oxide,TON
+37029,0.0006619714,Nitrate portion of PM2.5-PRI,TON
+37029,0.02502125,Sulfur Dioxide,TON
+37025,2.836172,Benz[a]Anthracene,LB
+37025,14.964606,Phenanthrene,LB
+37025,141.70026,Naphthalene,LB
+37025,18641.48,Carbon Dioxide,TON
+37025,0.6363849,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.1696646,Sulfate Portion of PM2.5-PRI,TON
+37025,37.28526,"2,2,4-Trimethylpentane",LB
+37069,0.1303338,Benzo[a]Pyrene,LB
+37069,1.059349,PM25-Primary from certain diesel engines,TON
+37069,24.90146,Nitrogen Oxides,TON
+37069,8.179504,Volatile Organic Compounds,TON
+37069,85.1789,Toluene,LB
+37069,34.14386,Hexane,LB
+37069,81.02622,Xylenes (Mixed Isomers),LB
+37069,6.311872,Fluoranthene,LB
+37067,149.9268,Acrolein,LB
+37067,176.52614,Toluene,LB
+37067,0.2972212,Benzo[b]Fluoranthene,LB
+37067,11.55629,Fluoranthene,LB
+37067,0.0419853,Benzo[k]Fluoranthene,LB
+37067,2103.158,Formaldehyde,LB
+37067,180.97558,Benzene,LB
+37067,0.001209524,Mercury,LB
+37067,61.4815,Carbon Monoxide,TON
+37067,8.508651,PM10-Primary from certain diesel engines,TON
+37059,0.16834076,Hexane,LB
+37059,0.0230589,Anthracene,LB
+37059,0.0001779884,"Dibenzo[a,h]Anthracene",LB
+37059,0.014762076,Benz[a]Anthracene,LB
+37059,0.0003119888,Arsenic,LB
+37065,102.06032,Acrolein,LB
+37065,1489.8164,Formaldehyde,LB
+37065,5.014736,Acenaphthene,LB
+37065,10.157734,Fluorene,LB
+37065,260.5494,Naphthalene,LB
+37065,110371.2,Carbon Dioxide,TON
+37065,0.7124185,Elemental Carbon portion of PM2.5-PRI,TON
+37049,8.170756e-06,"Dibenzo[a,h]Anthracene",LB
+37049,5.112992e-07,Mercury,LB
+37049,0.2947768,Acetaldehyde,LB
+37049,0.0009136956,Acenaphthene,LB
+37049,0.004964242,Phenanthrene,LB
+37049,0.001032902,Methane,TON
+37049,4.375887e-05,Sulfur Dioxide,TON
+37049,0.02221852,Styrene,LB
+37045,55.22874,Toluene,LB
+37045,0.006385928,Benzo[b]Fluoranthene,LB
+37045,0.09893154,Acenaphthylene,LB
+37045,0.006202714,Chrysene,LB
+37045,0.00879047,Benzo[a]Pyrene,LB
+37045,0.006386412,Benz[a]Anthracene,LB
+37045,0.001818418,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.756749,Nitrogen Oxides,TON
+37045,0.3151891,Volatile Organic Compounds,TON
+37041,5.852876,Styrene,LB
+37041,36.883,"1,3-Butadiene",LB
+37041,0.2122824,Anthracene,LB
+37041,0.07424588,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.07486808,Benzo[a]Pyrene,LB
+37041,1.3508246,Phenanthrene,LB
+37041,12.938694,Naphthalene,LB
+37041,0.134392,Nitrous Oxide,TON
+37029,137.48398,"1,3-Butadiene",LB
+37029,1.4847448,Pyrene,LB
+37029,45.82446,Naphthalene,LB
+37029,0.1039423,Elemental Carbon portion of PM2.5-PRI,TON
+37023,8.589098,Pyrene,LB
+37023,244.5074,Xylenes (Mixed Isomers),LB
+37023,0.0004158714,Chromium (VI),LB
+37023,0.04156612,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,60.5967,"2,2,4-Trimethylpentane",LB
+37023,149.10522,Benzene,LB
+37023,0.11483848,Arsenic,LB
+37023,3.2906,Acenaphthene,LB
+37023,179.93132,Naphthalene,LB
+37023,124.7659,Nitrogen Oxides,TON
+37023,0.08535538,Nickel,LB
+37023,7.344704,Phenanthrene,LB
+37023,1.64319,PM10-Primary from certain diesel engines,TON
+37023,0.6189895,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.2242276,Manganese,LB
+37133,37.88016,Styrene,LB
+37133,1.685817,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.1276574,Sulfate Portion of PM2.5-PRI,TON
+37133,0.011459856,Benzo[k]Fluoranthene,LB
+37133,2749.784,Formaldehyde,LB
+37131,0.009365506,Nitrous Oxide,TON
+37131,0.2221724,Organic Carbon portion of PM2.5-PRI,TON
+37131,1.609043,PM10 Primary (Filt + Cond),TON
+37131,0.08219705,Sulfur Dioxide,TON
+37131,1.6953104,Fluoranthene,LB
+37131,1.3362802,Acenaphthylene,LB
+37129,23846.38,Hexane,LB
+37129,8.975264,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,41.09522,Fluoranthene,LB
+37129,8684.13,Formaldehyde,LB
+37129,153.59538,Phenanthrene,LB
+37129,17.04878,Nitrous Oxide,TON
+37127,0.4345446,Hexane,LB
+37127,0.06186442,Anthracene,LB
+37127,0.9294616,Propionaldehyde,LB
+37127,0.04107332,Benz[a]Anthracene,LB
+37127,3.139592e-06,Mercury,LB
+37127,0.002059574,Nickel,LB
+37127,0.0006564544,Arsenic,LB
+37127,0.12337726,Fluorene,LB
+37127,0.0431183,PM10-Primary from certain diesel engines,TON
+37127,0.01532249,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.01715419,Organic Carbon portion of PM2.5-PRI,TON
+37113,1.8744664e-06,Chromium (VI),LB
+37113,0.0015823018,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.0010679226,Chrysene,LB
+37113,3.11638,"2,2,4-Trimethylpentane",LB
+37113,0.0011064268,Benz[a]Anthracene,LB
+37113,3.788364,Benzene,LB
+37113,1.1715994,Acetaldehyde,LB
+37113,63.17947,Carbon Dioxide,TON
+37113,3388.22,Xylenes (Mixed Isomers),LB
+37113,199.63792,Benzene,LB
+37107,14075.176,Xylenes (Mixed Isomers),LB
+37107,1.8404182,Benzo[k]Fluoranthene,LB
+37107,119.75136,Styrene,LB
+37107,5385.606,Benzene,LB
+37107,5.117446,Acenaphthene,LB
+37107,9.286275,Ammonia,TON
+37091,132.5066,Benzene,LB
+37091,0.006178607,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.05983464,PM10 Primary (Filt + Cond),TON
+37091,0.001290546,Sulfate Portion of PM2.5-PRI,TON
+37091,0.17094568,Pyrene,LB
+37091,0.14986314,Fluoranthene,LB
+37071,8.963778,Organic Carbon portion of PM2.5-PRI,TON
+37071,12.05416,Sulfur Dioxide,TON
+37071,11.854374,Benz[a]Anthracene,LB
+37071,0.2932774,Mercury,LB
+37071,231.96,Phenanthrene,LB
+37071,870.2146,Propionaldehyde,LB
+37071,194.55996,Acenaphthylene,LB
+37069,2.772824,Styrene,LB
+37069,0.0009591282,"Dibenzo[a,h]Anthracene",LB
+37069,1.1100022,Fluorene,LB
+37069,0.006843286,Sulfate Portion of PM2.5-PRI,TON
+37069,1.7320122,Benzo[b]Fluoranthene,LB
+37069,2.49878,Benzo[a]Pyrene,LB
+37069,1.1355252,Arsenic,LB
+37069,0.008124124,Nitrate portion of PM2.5-PRI,TON
+37069,14386.834,Xylenes (Mixed Isomers),LB
+37055,93.49842,Formaldehyde,LB
+37055,0.011534826,Nickel,LB
+37055,12.706822,Naphthalene,LB
+37055,0.1640488,PM10 Primary (Filt + Cond),TON
+37055,0.2091392,Anthracene,LB
+37055,0.0896932,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,37.14842,Acrolein,LB
+37047,0.01517209,Benzo[k]Fluoranthene,LB
+37045,1.1006348,Xylenes (Mixed Isomers),LB
+37045,0.0007779976,"Benzo[g,h,i,]Perylene",LB
+37045,0.000959831,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.2119138,Phenanthrene,LB
+37045,145.1606,Carbon Dioxide,TON
+37045,0.04384532,PM10-Primary from certain diesel engines,TON
+37045,0.04033749,PM25-Primary from certain diesel engines,TON
+37045,0.01540338,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.00116548,Sulfate Portion of PM2.5-PRI,TON
+37045,7.752176,Hexane,LB
+37045,0.8162262,Anthracene,LB
+37045,0.3456756,PM10-Primary from certain diesel engines,TON
+37045,0.2360662,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.2341206,Benz[a]Anthracene,LB
+37041,1.4227884e-05,Fluoranthene,LB
+37041,3.03592e-06,Benz[a]Anthracene,LB
+37041,5.84481e-06,Nitrous Oxide,TON
+37041,0.701563,Benzo[b]Fluoranthene,LB
+37041,13.717266,Acenaphthylene,LB
+37041,4.97146,Pyrene,LB
+37041,1039.0644,Acetaldehyde,LB
+37041,16.327784,Phenanthrene,LB
+37041,613.9602,Carbon Monoxide,TON
+37041,0.4504426,Organic Carbon portion of PM2.5-PRI,TON
+37037,1.21957,Hexane,LB
+37037,4.343906,Benzene,LB
+37037,0.00427557,Arsenic,LB
+37037,0.13924172,Acenaphthene,LB
+37037,0.5660972,Phenanthrene,LB
+37037,0.05080699,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.02269694,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,5.794214,Hexane,LB
+37037,0.07249968,Chrysene,LB
+37037,24.6222,Naphthalene,LB
+37037,0.2365217,PM10-Primary from certain diesel engines,TON
+37171,6.329948,Toluene,LB
+37171,0.5795782,Fluoranthene,LB
+37171,0.4029148,Acenaphthylene,LB
+37171,0.10974228,Chrysene,LB
+37171,2.183308,"2,2,4-Trimethylpentane",LB
+37171,2.833944e-05,Mercury,LB
+37171,0.2223418,PM10-Primary from certain diesel engines,TON
+37171,0.009080456,Sulfur Dioxide,TON
+37161,0.05982266,Anthracene,LB
+37161,0.0007647226,"Benzo[g,h,i,]Perylene",LB
+37161,0.02409908,Chrysene,LB
+37161,0.010948,Methane,TON
+37145,126.20454,Acetaldehyde,LB
+37145,0.3196442,Methane,TON
+37145,9.589547,Carbon Monoxide,TON
+37145,1.325331,PM2.5 Primary (Filt + Cond),TON
+37145,0.1217997,Sulfate Portion of PM2.5-PRI,TON
+37135,81.8598,Acrolein,LB
+37135,0.0003716624,Chromium (VI),LB
+37135,0.0305012,Benzo[k]Fluoranthene,LB
+37135,1097.6488,Formaldehyde,LB
+37135,29.02054,"2,2,4-Trimethylpentane",LB
+37135,12.50263,Phenanthrene,LB
+37135,1.170072,Elemental Carbon portion of PM2.5-PRI,TON
+37135,2.901619,PM2.5 Primary (Filt + Cond),TON
+37135,0.1463156,Sulfate Portion of PM2.5-PRI,TON
+37135,0.2399284,Styrene,LB
+37135,0.200013,Acrolein,LB
+37143,0.11225576,Pyrene,LB
+37143,0.02922398,Benzo[a]Pyrene,LB
+37143,0.0006701078,"Dibenzo[a,h]Anthracene",LB
+37143,18.82611,Carbon Monoxide,TON
+37143,0.003872846,Nitrous Oxide,TON
+37143,0.9792282,Nitrogen Oxides,TON
+37143,2.294132,Volatile Organic Compounds,TON
+37141,72.05364,Xylenes (Mixed Isomers),LB
+37141,0.290764,Ethyl Benzene,LB
+37141,0.002417288,Phenanthrene,LB
+37141,0.02305486,Naphthalene,LB
+37133,29.78194,Ethyl Benzene,LB
+37133,29.04306,"1,3-Butadiene",LB
+37133,0.03048258,"Dibenzo[a,h]Anthracene",LB
+37133,2.314342,Elemental Carbon portion of PM2.5-PRI,TON
+37133,1.2776602,Hexane,LB
+37133,0.0003518806,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.002809706,Fluoranthene,LB
+37133,0.008932732,Acenaphthylene,LB
+37133,0.0003606086,Benzo[a]Pyrene,LB
+37133,1.3457386,"2,2,4-Trimethylpentane",LB
+37133,3.293922e-05,Arsenic,LB
+37133,0.010613878,Phenanthrene,LB
+37133,0.7048476,Carbon Monoxide,TON
+37133,0.04034624,Nitrogen Oxides,TON
+37129,2.805266e-06,Mercury,LB
+37129,0.004908086,Acrolein,LB
+37129,0.6876336,Toluene,LB
+37129,0.2309592,Hexane,LB
+37129,0.0004262072,Pyrene,LB
+37129,0.1322941,"2,2,4-Trimethylpentane",LB
+37117,7.360258e-05,Mercury,LB
+37117,0.00874561,Nitrous Oxide,TON
+37117,0.0755653,Ammonia,TON
+37117,0.274027,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.6730672,PM2.5 Primary (Filt + Cond),TON
+37117,2.589082,Pyrene,LB
+37125,4.99621e-06,Mercury,LB
+37125,0.13363694,Phenanthrene,LB
+37125,0.01214905,Nitrous Oxide,TON
+37125,0.3536046,Nitrogen Oxides,TON
+37125,0.001255917,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,16.44223,Ethyl Benzene,LB
+37125,0.03566592,Fluoranthene,LB
+37119,0.003975398,Benzo[k]Fluoranthene,LB
+37119,0.06220794,Acenaphthylene,LB
+37119,0.005333802,Manganese,LB
+37119,0.0742166,Phenanthrene,LB
+37119,0.7091458,Naphthalene,LB
+37119,124.5829,Carbon Dioxide,TON
+37119,0.004263986,Ammonia,TON
+37119,1.911773e-05,Nitrate portion of PM2.5-PRI,TON
+37119,0.02672622,PM10 Primary (Filt + Cond),TON
+37107,1.1481876,Styrene,LB
+37107,8.711604,Naphthalene,LB
+37107,0.02716723,Methane,TON
+37107,0.01420305,Ammonia,TON
+37107,0.1737933,PM2.5 Primary (Filt + Cond),TON
+37089,985.1972,Hexane,LB
+37089,1.227839,Ammonia,TON
+37089,32.77074,Nitrogen Oxides,TON
+37083,11.167162,Acrolein,LB
+37083,3.505686,Hexane,LB
+37083,1.4380234,Pyrene,LB
+37083,0.006332816,"Benzo[g,h,i,]Perylene",LB
+37083,139.42688,Formaldehyde,LB
+37083,0.1027708,Benzo[a]Pyrene,LB
+37083,0.4722128,Acenaphthene,LB
+37083,0.3834931,PM25-Primary from certain diesel engines,TON
+37083,0.001813468,Nitrate portion of PM2.5-PRI,TON
+37083,0.3934017,PM2.5 Primary (Filt + Cond),TON
+37079,0.0014269622,Arsenic,LB
+37079,0.006248238,Methane,TON
+37079,430.5532,Carbon Dioxide,TON
+37079,0.1136102,PM10-Primary from certain diesel engines,TON
+37079,0.02512594,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.28061,Volatile Organic Compounds,TON
+37079,1.0080356e-05,Chromium (VI),LB
+37087,0.004407584,Fluoranthene,LB
+37087,0.01213542,Acenaphthylene,LB
+37087,0.00468409,Benzo[a]Pyrene,LB
+37087,0.00010881104,"Dibenzo[a,h]Anthracene",LB
+37087,2.325112,Benzene,LB
+37087,1.9181992e-06,Mercury,LB
+37087,0.014848492,Phenanthrene,LB
+37087,0.00244074,Methane,TON
+37087,0.001074263,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.0002670685,Sulfur Dioxide,TON
+37087,7.676252,Toluene,LB
+37087,0.012622248,"Benzo[g,h,i,]Perylene",LB
+37085,1.3426642,Propionaldehyde,LB
+37085,0.036021,Chrysene,LB
+37085,0.7414896,"2,2,4-Trimethylpentane",LB
+37085,0.016920966,Manganese,LB
+37085,0.17867092,Fluorene,LB
+37085,0.07745044,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.0003370298,Benzo[k]Fluoranthene,LB
+37075,0.000451199,Benzo[a]Pyrene,LB
+37075,1.2792466,Benzene,LB
+37075,0.0001295602,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.02442774,Acrolein,LB
+37075,0.05112471,Nitrogen Oxides,TON
+37075,0.000244116,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.001534776,PM10 Primary (Filt + Cond),TON
+37075,0.0003475524,Sulfur Dioxide,TON
+37075,1.292612e-05,Sulfate Portion of PM2.5-PRI,TON
+37071,0.001484406,Pyrene,LB
+37071,141.3128,Formaldehyde,LB
+37071,0.00011867744,Benz[a]Anthracene,LB
+37071,0.4213574,Benzene,LB
+37071,1.486939,Carbon Monoxide,TON
+37071,0.003926895,Ammonia,TON
+37071,4.384218e-06,Nitrate portion of PM2.5-PRI,TON
+37071,0.658376,Nitrogen Oxides,TON
+37067,33.73906,"1,3-Butadiene",LB
+37067,55.56066,Propionaldehyde,LB
+37067,11.003294,Pyrene,LB
+37067,0.06259348,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.8246768,Benzo[a]Pyrene,LB
+37067,0.00016942422,Mercury,LB
+37067,3.420614,Acenaphthene,LB
+37053,4.399034,Hexane,LB
+37053,9.455078,Carbon Dioxide,TON
+37053,4.990712e-06,Nitrate portion of PM2.5-PRI,TON
+37053,0.0003823462,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,2.118682e-05,Chromium (VI),LB
+37051,0.002772234,"Benzo[g,h,i,]Perylene",LB
+37051,0.013791158,Benzo[b]Fluoranthene,LB
+37051,0.0019169718,Benzo[k]Fluoranthene,LB
+37051,0.04622072,Benzo[a]Pyrene,LB
+37051,0.18403518,Acenaphthene,LB
+37051,0.4159464,Fluorene,LB
+37051,0.4789934,PM10 Primary (Filt + Cond),TON
+37051,77.50242,"1,3-Butadiene",LB
+37051,0.012797702,"Dibenzo[a,h]Anthracene",LB
+37051,62.67866,"2,2,4-Trimethylpentane",LB
+37051,2.449183,PM2.5 Primary (Filt + Cond),TON
+37051,14.00923,Volatile Organic Compounds,TON
+37049,0.347587,Acrolein,LB
+37049,6.532236e-06,Chromium (VI),LB
+37049,5.215346,Formaldehyde,LB
+37049,7.574814,"2,2,4-Trimethylpentane",LB
+37049,0.007195013,Methane,TON
+37049,0.6417085,Nitrogen Oxides,TON
+37041,0.001170234,Anthracene,LB
+37041,0.0004001634,Benzo[b]Fluoranthene,LB
+37041,0.006226702,Acenaphthylene,LB
+37041,3.632378e-05,Manganese,LB
+37041,1.883602,Carbon Dioxide,TON
+37041,0.0004120747,Nitrous Oxide,TON
+37033,0.019032444,Hexane,LB
+37033,3.686872e-05,"Benzo[g,h,i,]Perylene",LB
+37033,4.55862e-08,Mercury,LB
+37033,5.684092e-07,Nickel,LB
+37033,8.809177e-06,Methane,TON
+37033,1.479881e-05,Nitrous Oxide,TON
+37033,2.684897e-05,PM10 Primary (Filt + Cond),TON
+37033,3.848346e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,4.46599,Hexane,LB
+37159,0.3666586,Volatile Organic Compounds,TON
+37111,1.904667,Ethyl Benzene,LB
+37111,5.702414,"2,2,4-Trimethylpentane",LB
+37091,5.634528,Toluene,LB
+37169,0.2719606,Styrene,LB
+37169,0.6252186,"1,3-Butadiene",LB
+37169,1.6273576,Acrolein,LB
+37169,0.003304298,Nickel,LB
+37169,0.2509902,Phenanthrene,LB
+37169,0.01393077,Methane,TON
+37169,0.05753267,PM10-Primary from certain diesel engines,TON
+37169,0.009529648,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.338311,Chrysene,LB
+37165,1.0881972,Acenaphthene,LB
+37163,0.012082102,Styrene,LB
+37163,0.009810244,Acrolein,LB
+37163,0.0001938165,Chrysene,LB
+37163,0.227742,Carbon Monoxide,TON
+37163,1.012033e-06,Nitrate portion of PM2.5-PRI,TON
+37163,1.033681e-05,Sulfate Portion of PM2.5-PRI,TON
+37157,124.45622,Phenanthrene,LB
+37157,0.2144111,Sulfate Portion of PM2.5-PRI,TON
+37155,0.02773134,Chrysene,LB
+37155,0.02949042,Benz[a]Anthracene,LB
+37155,0.05141481,Ammonia,TON
+37155,0.13042404,"Benzo[g,h,i,]Perylene",LB
+37153,0.1094647,Toluene,LB
+37153,0.00013493624,Acenaphthylene,LB
+37153,0.0015369686,Naphthalene,LB
+37153,1.670912e-05,Nitrous Oxide,TON
+37153,3.852685e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.000546028,Volatile Organic Compounds,TON
+37153,6.099994e-06,"Dibenzo[a,h]Anthracene",LB
+37153,0.17751186,Ethyl Benzene,LB
+37153,0.00612457,Propionaldehyde,LB
+37153,0.6532404,Xylenes (Mixed Isomers),LB
+37153,0.0014879752,Acenaphthylene,LB
+37153,0.0001468547,Organic Carbon portion of PM2.5-PRI,TON
+37153,7.655725e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,38.32214,Ethyl Benzene,LB
+37175,0.00017493404,Mercury,LB
+37175,0.04790082,Sulfur Dioxide,TON
+37173,0.2246926,"1,3-Butadiene",LB
+37173,0.001420715,Anthracene,LB
+37173,0.0007920424,Benzo[a]Pyrene,LB
+37173,1.2764808,"2,2,4-Trimethylpentane",LB
+37173,9.5265e-07,Mercury,LB
+37173,1.1877644e-05,Nickel,LB
+37173,0.0001298859,Ammonia,TON
+37155,0.396721,Anthracene,LB
+37155,7.849902,Xylenes (Mixed Isomers),LB
+37155,0.7201632,Acenaphthylene,LB
+37155,0.03540488,Manganese,LB
+37155,1.3062602,Phenanthrene,LB
+37155,0.8068862,Fluorene,LB
+37155,1799.782,Carbon Dioxide,TON
+37155,0.3047029,PM10-Primary from certain diesel engines,TON
+37149,3.736932,Propionaldehyde,LB
+37149,0.04877004,Chrysene,LB
+37149,0.002110364,Arsenic,LB
+37149,0.6840136,Phenanthrene,LB
+37149,0.0003817971,Nitrate portion of PM2.5-PRI,TON
+37149,0.4016443,Volatile Organic Compounds,TON
+37149,0.0013132038,Manganese,LB
+37149,1.2555518,"1,3-Butadiene",LB
+37149,42.08388,Toluene,LB
+37149,10.286306,Hexane,LB
+37149,0.03931974,"Benzo[g,h,i,]Perylene",LB
+37157,0.6351239,Nitrogen Oxides,TON
+37157,0.9168036,Toluene,LB
+37157,0.7344142,Propionaldehyde,LB
+37157,0.0004535326,Benzo[k]Fluoranthene,LB
+37157,2.66061e-06,Mercury,LB
+37153,0.2297786,Styrene,LB
+37153,11.576228,Hexane,LB
+37153,0.007154172,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,3.119348,Formaldehyde,LB
+37153,10.188004,"2,2,4-Trimethylpentane",LB
+37153,0.0016891192,Manganese,LB
+37153,0.0002703236,Nickel,LB
+37153,0.2174159,Volatile Organic Compounds,TON
+37147,4481.696,Toluene,LB
+37147,0.5213104,Anthracene,LB
+37147,0.297983,Methane,TON
+37129,1.0529516e-05,Mercury,LB
+37129,0.002201632,Arsenic,LB
+37129,0.1942088,Volatile Organic Compounds,TON
+37141,0.09127062,Benzo[b]Fluoranthene,LB
+37141,1.3326406,Acenaphthylene,LB
+37141,521.6986,"2,2,4-Trimethylpentane",LB
+37141,2053.094,Carbon Dioxide,TON
+37141,3.940334,Nitrogen Oxides,TON
+37137,0.2177325,PM2.5 Primary (Filt + Cond),TON
+37137,0.009074368,Sulfur Dioxide,TON
+37137,6.976552,Acrolein,LB
+37137,4.49494,Propionaldehyde,LB
+37137,7.533988,Xylenes (Mixed Isomers),LB
+37137,2.48791e-05,Chromium (VI),LB
+37137,0.018584872,Benzo[b]Fluoranthene,LB
+37137,0.204286,Benz[a]Anthracene,LB
+37133,13.79694,Styrene,LB
+37133,0.6866892,Benzo[a]Pyrene,LB
+37133,3.182517,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.03241562,Ethyl Benzene,LB
+37125,0.0010154568,Propionaldehyde,LB
+37125,0.01464564,Formaldehyde,LB
+37125,1.3169914e-06,Manganese,LB
+37125,3.982154e-05,Methane,TON
+37125,0.0181822,Carbon Monoxide,TON
+37125,3.446014e-05,Nitrous Oxide,TON
+37125,2.983363e-08,Nitrate portion of PM2.5-PRI,TON
+37125,0.0008404004,Nitrogen Oxides,TON
+37125,5.230078e-06,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.6301458,Acrolein,LB
+37115,2.876526e-06,Chromium (VI),LB
+37115,0.0003945076,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.0568689,Fluoranthene,LB
+37115,0.0002132938,"Dibenzo[a,h]Anthracene",LB
+37115,0.0002580308,Nitrous Oxide,TON
+37115,0.003074435,Ammonia,TON
+37115,0.8995703,Nitrogen Oxides,TON
+37115,0.007712401,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.003752723,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.0002630973,Nitrate portion of PM2.5-PRI,TON
+37115,6.208094,Nitrogen Oxides,TON
+37115,766.4592,Toluene,LB
+37115,176.8563,Hexane,LB
+37115,520.8598,Xylenes (Mixed Isomers),LB
+37115,0.08809924,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.4228588,Hexane,LB
+37107,0.0007472678,"Benzo[g,h,i,]Perylene",LB
+37107,0.08373548,Acenaphthylene,LB
+37107,0.0011478854,Arsenic,LB
+37107,431.0284,Carbon Dioxide,TON
+37107,0.0006604954,Nitrous Oxide,TON
+37107,0.003755445,Sulfate Portion of PM2.5-PRI,TON
+37103,0.01554975,Styrene,LB
+37103,0.000716415,"Benzo[g,h,i,]Perylene",LB
+37103,1.753827,Carbon Dioxide,TON
+37103,6.143744e-05,Ammonia,TON
+37103,0.0004352799,PM10 Primary (Filt + Cond),TON
+37103,6.538051e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,78.60117,Carbon Monoxide,TON
+37099,10428.89,Carbon Dioxide,TON
+37099,6.906586,Fluoranthene,LB
+37099,8.60834,Acenaphthylene,LB
+37099,1514.7144,Formaldehyde,LB
+37099,37.32512,"2,2,4-Trimethylpentane",LB
+37099,1.1605258,Benz[a]Anthracene,LB
+37097,16767.204,Hexane,LB
+37097,6.445466,Benzo[b]Fluoranthene,LB
+37097,16490.206,Benzene,LB
+37097,84.74268,Phenanthrene,LB
+37097,4319.867,Carbon Monoxide,TON
+37097,410778.7,Carbon Dioxide,TON
+37097,8.615476,Sulfur Dioxide,TON
+37093,0.04504518,Methane,TON
+37093,0.2913961,Nitrogen Oxides,TON
+37093,0.002653825,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.002563691,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.4535256,Styrene,LB
+37093,0.0010625484,Benzo[a]Pyrene,LB
+37093,0.017890372,Benz[a]Anthracene,LB
+37093,0.008993582,Manganese,LB
+37085,9.076068,Styrene,LB
+37085,0.2708046,Manganese,LB
+37085,2.11195,Acenaphthene,LB
+37085,0.5362593,Methane,TON
+37085,0.09111898,Sulfate Portion of PM2.5-PRI,TON
+37079,1.094307,Volatile Organic Compounds,TON
+37079,197.7102,Formaldehyde,LB
+37079,18.113118,Benzene,LB
+37079,0.0553956,Manganese,LB
+37079,4.618216,Carbon Monoxide,TON
+37073,0.06038682,Ethyl Benzene,LB
+37073,0.05848982,"1,3-Butadiene",LB
+37073,0.01824752,Pyrene,LB
+37073,4.1953e-07,Chromium (VI),LB
+37073,7.51956e-05,Arsenic,LB
+37073,0.0220925,Phenanthrene,LB
+37073,0.004297728,PM25-Primary from certain diesel engines,TON
+37073,0.001682971,Elemental Carbon portion of PM2.5-PRI,TON
+37087,7.274355e-05,Nitrate portion of PM2.5-PRI,TON
+37087,0.03979023,PM10 Primary (Filt + Cond),TON
+37087,0.004630323,Sulfur Dioxide,TON
+37087,20.8328,Benzene,LB
+37087,0.003523658,Manganese,LB
+37087,1.0735114,Naphthalene,LB
+37087,0.01502632,Methane,TON
+37087,9.272673,Carbon Monoxide,TON
+37085,19.095528,"1,3-Butadiene",LB
+37085,0.00018381688,Chromium (VI),LB
+37085,1067.4116,"2,2,4-Trimethylpentane",LB
+37085,0.95486,Fluorene,LB
+37085,0.3864269,Ammonia,TON
+37085,0.04949511,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.0623671,Sulfur Dioxide,TON
+37071,49.07372,Ethyl Benzene,LB
+37071,2.343826,Acrolein,LB
+37071,0.08885586,Anthracene,LB
+37071,179.32442,Xylenes (Mixed Isomers),LB
+37071,44.54824,"2,2,4-Trimethylpentane",LB
+37071,0.10424196,Acenaphthene,LB
+37071,37.40254,Carbon Monoxide,TON
+37071,3.396943,Nitrogen Oxides,TON
+37071,0.05833267,PM2.5 Primary (Filt + Cond),TON
+37059,0.004911882,"1,3-Butadiene",LB
+37059,7.862918e-05,Fluorene,LB
+37059,8.104845e-06,Ammonia,TON
+37059,6.795984e-06,Sulfur Dioxide,TON
+37059,0.0006616471,Volatile Organic Compounds,TON
+37007,2.179053e-05,Nitrate portion of PM2.5-PRI,TON
+37007,0.0002578856,Sulfate Portion of PM2.5-PRI,TON
+37007,0.10141472,Styrene,LB
+37007,0.380043,"1,3-Butadiene",LB
+37007,7.098628,Xylenes (Mixed Isomers),LB
+37007,0.002562728,Chrysene,LB
+37001,0.2849952,Acrolein,LB
+37001,0.003293874,Benzo[k]Fluoranthene,LB
+37001,3.917682,Carbon Monoxide,TON
+37163,10.99365,Xylenes (Mixed Isomers),LB
+37163,0.2479406,Volatile Organic Compounds,TON
+37113,0.05995486,Propionaldehyde,LB
+37113,0.5646924,Toluene,LB
+37113,0.7160308,Benzene,LB
+37097,0.0010362114,Anthracene,LB
+37097,0.0012870304,Chrysene,LB
+37097,0.00621604,Phenanthrene,LB
+37097,254.7205,Carbon Dioxide,TON
+37021,155.33338,Toluene,LB
+37021,0.3560808,Benzo[b]Fluoranthene,LB
+37021,0.799723,Manganese,LB
+37021,0.2019382,Nickel,LB
+37021,5.147482,Acenaphthene,LB
+37021,11.450152,Fluorene,LB
+37021,0.5890891,Ammonia,TON
+37021,0.02114523,Nitrate portion of PM2.5-PRI,TON
+37017,0.9540176,Anthracene,LB
+37017,0.00740999,Benzo[k]Fluoranthene,LB
+37017,0.1751608,Manganese,LB
+37017,0.0002459516,Mercury,LB
+37017,0.2810239,Ammonia,TON
+37017,0.1463883,Sulfate Portion of PM2.5-PRI,TON
+37021,0.003795686,Styrene,LB
+37021,0.0002606606,Fluoranthene,LB
+37009,2.00416,Pyrene,LB
+37009,0.04036364,Benzo[b]Fluoranthene,LB
+37009,0.00553688,Benzo[k]Fluoranthene,LB
+37009,2070.719,Carbon Dioxide,TON
+37009,0.05424027,Ammonia,TON
+37005,0.03826378,Styrene,LB
+37005,0.08762198,"1,3-Butadiene",LB
+37005,0.009385432,Anthracene,LB
+37005,0.2300124,Xylenes (Mixed Isomers),LB
+37005,7.443154e-05,Benzo[k]Fluoranthene,LB
+37005,0.003528654,Chrysene,LB
+37005,7.411112e-05,"Dibenzo[a,h]Anthracene",LB
+37005,0.018953166,Fluorene,LB
+37005,0.1144945,Carbon Monoxide,TON
+37005,0.0005299589,Sulfur Dioxide,TON
+37005,0.01615765,Volatile Organic Compounds,TON
+37005,6.577476,Hexane,LB
+37003,1888.9062,"1,3-Butadiene",LB
+37003,4186.538,Formaldehyde,LB
+37003,0.07455944,"Dibenzo[a,h]Anthracene",LB
+37003,8.64267,PM10 Primary (Filt + Cond),TON
+37001,73.33062,Hexane,LB
+37001,90.2876,"2,2,4-Trimethylpentane",LB
+37001,52.79465,Carbon Monoxide,TON
+37197,25.50796,Toluene,LB
+37197,16.057696,Xylenes (Mixed Isomers),LB
+37197,0.03174096,Acenaphthylene,LB
+37197,7.307924,Benzene,LB
+37197,0.0005849178,Nickel,LB
+37197,0.0008968706,Arsenic,LB
+37197,2.156294,Acetaldehyde,LB
+37197,0.004005357,Nitrous Oxide,TON
+37191,0.0683235,Styrene,LB
+37191,6.708798,Toluene,LB
+37191,0.004125664,Fluoranthene,LB
+37191,0.00281043,Benzo[k]Fluoranthene,LB
+37191,0.001506589,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.001883905,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.0010128444,"Dibenzo[a,h]Anthracene",LB
+37181,0.004893208,Nickel,LB
+37181,0.2138708,Fluorene,LB
+37181,0.6591407,Carbon Monoxide,TON
+37181,0.9979922,Ethyl Benzene,LB
+37181,0.0350556,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.003410232,Sulfate Portion of PM2.5-PRI,TON
+37197,0.6463214,"1,3-Butadiene",LB
+37197,1.494627,Xylenes (Mixed Isomers),LB
+37197,0.13938046,Fluoranthene,LB
+37197,2.249702,Naphthalene,LB
+37197,0.7077585,Carbon Monoxide,TON
+37197,0.01789553,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.1031493,PM2.5 Primary (Filt + Cond),TON
+37197,0.008340102,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,3.883746,Acrolein,LB
+37185,3.39061,Toluene,LB
+37185,1.2433884,Hexane,LB
+37185,0.000645083,"Benzo[g,h,i,]Perylene",LB
+37185,1.2442774,"2,2,4-Trimethylpentane",LB
+37185,0.002953687,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.001754986,Sulfate Portion of PM2.5-PRI,TON
+37179,0.0021544,Phenanthrene,LB
+37179,0.002452776,Naphthalene,LB
+37179,179.1372,Carbon Dioxide,TON
+37179,5.994395e-06,Nitrate portion of PM2.5-PRI,TON
+37177,0.0012021614,Benzo[b]Fluoranthene,LB
+37177,0.004031656,Benzo[a]Pyrene,LB
+37177,0.0148094,PM10-Primary from certain diesel engines,TON
+37177,0.01423133,PM2.5 Primary (Filt + Cond),TON
+37177,0.00244159,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.0005479547,Sulfate Portion of PM2.5-PRI,TON
+37173,3.562088e-05,Anthracene,LB
+37173,0.0008470236,Propionaldehyde,LB
+37173,6.16489e-05,Fluoranthene,LB
+37173,0.0002249432,Phenanthrene,LB
+37173,2.255184e-05,Nitrous Oxide,TON
+37173,6.085314e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,40.1413,Pyrene,LB
+37027,54737.54,Xylenes (Mixed Isomers),LB
+37027,0.010859804,Chromium (VI),LB
+37027,18.913386,"Benzo[g,h,i,]Perylene",LB
+37027,24.30244,Acenaphthene,LB
+37055,1.599448,PM25-Primary from certain diesel engines,TON
+37055,1.672579,PM2.5 Primary (Filt + Cond),TON
+37055,2.072946,Volatile Organic Compounds,TON
+37055,27.98508,Acrolein,LB
+37055,8.707416,Hexane,LB
+37055,2.011104,Acenaphthylene,LB
+37055,0.16055476,Manganese,LB
+37055,2.71805,Fluorene,LB
+37039,0.7986998,Benzo[b]Fluoranthene,LB
+37039,3.596812,Fluoranthene,LB
+37039,13.284288,Phenanthrene,LB
+37039,4.941222,Fluorene,LB
+37039,3.041384,PM10 Primary (Filt + Cond),TON
+37039,0.3562714,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.6795184,Anthracene,LB
+37175,1.9423898,Pyrene,LB
+37175,16.282058,Xylenes (Mixed Isomers),LB
+37175,0.01081718,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,1.4711468,Fluoranthene,LB
+37175,0.005824578,Benzo[k]Fluoranthene,LB
+37175,2.40759,Phenanthrene,LB
+37175,0.002541369,Nitrate portion of PM2.5-PRI,TON
+37175,0.4786704,PM2.5 Primary (Filt + Cond),TON
+37169,0.005991538,"Dibenzo[a,h]Anthracene",LB
+37169,43.63732,Benzene,LB
+37169,1.0241698,Acenaphthene,LB
+37169,0.7848629,Methane,TON
+37169,16796.78,Carbon Dioxide,TON
+37169,1.433144,PM10-Primary from certain diesel engines,TON
+37169,2.316256,Volatile Organic Compounds,TON
+37161,0.3826804,Pyrene,LB
+37161,38.7404,Formaldehyde,LB
+37161,0.02961794,Benzo[a]Pyrene,LB
+37161,0.001209932,"Dibenzo[a,h]Anthracene",LB
+37161,1.0137858,"2,2,4-Trimethylpentane",LB
+37161,0.462961,Phenanthrene,LB
+37161,487.3132,Carbon Dioxide,TON
+37161,0.1530948,PM10 Primary (Filt + Cond),TON
+37161,0.1045553,PM2.5 Primary (Filt + Cond),TON
+37159,67.90904,Hexane,LB
+37159,0.2357218,Nickel,LB
+37159,3.865862,Methane,TON
+37155,12.35257,Acenaphthylene,LB
+37155,1.8634022,Chrysene,LB
+37155,0.3567398,Nickel,LB
+37155,15.608668,Fluorene,LB
+37155,424.2882,Naphthalene,LB
+37155,78.73333,Carbon Monoxide,TON
+37155,285.3845,Nitrogen Oxides,TON
+37155,17.97548,Volatile Organic Compounds,TON
+37149,0.017510834,Manganese,LB
+37149,0.2181774,Acenaphthene,LB
+37149,0.04065968,PM10 Primary (Filt + Cond),TON
+37149,0.0015795362,Benzo[b]Fluoranthene,LB
+37163,0.05150908,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.03397264,Benz[a]Anthracene,LB
+37163,106.81714,Benzene,LB
+37163,0.001585123,Sulfate Portion of PM2.5-PRI,TON
+37157,9.39229e-06,Mercury,LB
+37157,0.0160502,Methane,TON
+37157,0.1301583,Volatile Organic Compounds,TON
+37157,8.68165e-06,Chromium (VI),LB
+37155,10.121428,Anthracene,LB
+37155,8.307406,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.0261917,Nitrate portion of PM2.5-PRI,TON
+37155,8.257512,Benzo[a]Pyrene,LB
+37155,0.2118158,Mercury,LB
+37121,147.22952,Ethyl Benzene,LB
+37121,5.16618,Propionaldehyde,LB
+37121,0.2153672,"Benzo[g,h,i,]Perylene",LB
+37121,1.1801634,Acenaphthylene,LB
+37121,0.081503,Benzo[a]Pyrene,LB
+37121,0.066889,Benz[a]Anthracene,LB
+37121,0.1537283,Ammonia,TON
+37121,5.818117,Nitrogen Oxides,TON
+37121,0.04233127,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.1818611,PM10 Primary (Filt + Cond),TON
+37121,0.001904325,Sulfate Portion of PM2.5-PRI,TON
+37105,27.30404,Acrolein,LB
+37105,2.815164,Pyrene,LB
+37105,0.014600226,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.04326884,Arsenic,LB
+37105,0.9827006,Acenaphthene,LB
+37105,16030.22,Carbon Dioxide,TON
+37101,0.011034288,Styrene,LB
+37101,1.6590596,Toluene,LB
+37101,0.00206799,Acenaphthylene,LB
+37101,4.693686e-06,"Dibenzo[a,h]Anthracene",LB
+37101,0.002469592,Phenanthrene,LB
+37101,0.1505572,Carbon Monoxide,TON
+37101,4.869046e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37101,2.090091e-05,Sulfur Dioxide,TON
+37085,2875.826,"1,3-Butadiene",LB
+37085,16206.15,Hexane,LB
+37085,5.505254,Benz[a]Anthracene,LB
+37079,41.47366,Acrolein,LB
+37079,2084.466,Hexane,LB
+37079,2.963082,Fluoranthene,LB
+37079,716.7994,Acetaldehyde,LB
+37079,0.8458577,Nitrous Oxide,TON
+37079,1.171563,PM2.5 Primary (Filt + Cond),TON
+37077,0.9242722,Acrolein,LB
+37077,0.04174512,Anthracene,LB
+37077,0.11660428,Pyrene,LB
+37077,11.539834,Formaldehyde,LB
+37077,0.2219775,Carbon Monoxide,TON
+37077,109.5266,Carbon Dioxide,TON
+37077,0.0002026991,Nitrous Oxide,TON
+37067,274.8552,Acrolein,LB
+37067,0.10702296,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.4194264,Benzo[b]Fluoranthene,LB
+37067,17.303154,Fluoranthene,LB
+37067,401.1926,Naphthalene,LB
+37067,13.5736,PM10-Primary from certain diesel engines,TON
+37067,0.02780175,Nitrate portion of PM2.5-PRI,TON
+37067,2.438331,Organic Carbon portion of PM2.5-PRI,TON
+37067,1.255061,Sulfate Portion of PM2.5-PRI,TON
+37057,0.8144694,Xylenes (Mixed Isomers),LB
+37057,1.2256408e-07,Chromium (VI),LB
+37057,0.00016984084,Benz[a]Anthracene,LB
+37057,0.0006821218,Acenaphthene,LB
+37057,384.5235,Carbon Dioxide,TON
+37057,0.08883687,Nitrous Oxide,TON
+37057,1.288961,Nitrogen Oxides,TON
+37057,0.05268183,PM10 Primary (Filt + Cond),TON
+37051,1.8178322,Xylenes (Mixed Isomers),LB
+37051,26.54936,Formaldehyde,LB
+37051,5.17858e-06,Mercury,LB
+37051,0.0860235,Acenaphthene,LB
+37051,0.06420584,PM10-Primary from certain diesel engines,TON
+37051,0.05906744,PM25-Primary from certain diesel engines,TON
+37051,0.8483748,"1,3-Butadiene",LB
+37049,0.04917369,Organic Carbon portion of PM2.5-PRI,TON
+37049,2.186488,Propionaldehyde,LB
+37049,0.3319074,Fluoranthene,LB
+37049,0.2989002,Fluorene,LB
+37047,1.4867594,Hexane,LB
+37047,0.2120604,Anthracene,LB
+37047,3.0316,Propionaldehyde,LB
+37047,0.01830096,Manganese,LB
+37047,0.0008503106,Nitrate portion of PM2.5-PRI,TON
+37047,2.627802,Nitrogen Oxides,TON
+37043,0.03815802,Anthracene,LB
+37043,6.737414e-06,Mercury,LB
+37043,0.002448978,PM10-Primary from certain diesel engines,TON
+37043,0.007264768,PM10 Primary (Filt + Cond),TON
+37043,0.0009145883,Sulfur Dioxide,TON
+37143,0.003786716,Pyrene,LB
+37143,4.051616,Formaldehyde,LB
+37143,0.003427004,Benzo[a]Pyrene,LB
+37143,0.00308066,Manganese,LB
+37143,0.01290955,Ammonia,TON
+37143,1.148168e-05,Nitrate portion of PM2.5-PRI,TON
+37143,0.2424919,Nitrogen Oxides,TON
+37107,0.009628646,Methane,TON
+37107,0.09487186,Volatile Organic Compounds,TON
+37107,0.0010764086,Anthracene,LB
+37107,1.8697794,Formaldehyde,LB
+37107,6.398858e-05,"Dibenzo[a,h]Anthracene",LB
+37107,1.519503,"2,2,4-Trimethylpentane",LB
+37163,1007.0782,"1,3-Butadiene",LB
+37163,137.93156,Acrolein,LB
+37163,8.936898,"Benzo[g,h,i,]Perylene",LB
+37163,2.126888,Chrysene,LB
+37151,9615.238,Ethyl Benzene,LB
+37151,258.6106,Propionaldehyde,LB
+37151,35687.2,Xylenes (Mixed Isomers),LB
+37151,19.732614,"Benzo[g,h,i,]Perylene",LB
+37151,0.1702126,"Dibenzo[a,h]Anthracene",LB
+37151,4.611308,Manganese,LB
+37151,1.9430824,Nickel,LB
+37151,73.13656,Phenanthrene,LB
+37147,0.008806498,Acenaphthene,LB
+37147,0.01783872,Fluorene,LB
+37147,0.510151,Nitrogen Oxides,TON
+37147,0.002926134,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.005093511,Sulfur Dioxide,TON
+37147,20.20314,Xylenes (Mixed Isomers),LB
+37147,0.013080968,Fluoranthene,LB
+37147,0.004793678,Benzo[a]Pyrene,LB
+37143,0.397144,Anthracene,LB
+37143,3.546254e-05,Chromium (VI),LB
+37143,0.8563184,Fluoranthene,LB
+37143,0.6142002,Acenaphthylene,LB
+37143,0.15843804,Chrysene,LB
+37143,0.08215484,Benzo[a]Pyrene,LB
+37143,0.003356784,"Dibenzo[a,h]Anthracene",LB
+37143,0.2706218,Benz[a]Anthracene,LB
+37143,0.007789324,Arsenic,LB
+37143,0.03802723,Ammonia,TON
+37143,0.001464736,Nitrate portion of PM2.5-PRI,TON
+37143,0.293306,PM2.5 Primary (Filt + Cond),TON
+37143,0.05379086,Styrene,LB
+37143,0.002092806,Manganese,LB
+37143,0.01245018,Acenaphthene,LB
+37143,0.0484396,Phenanthrene,LB
+37143,0.002511654,Methane,TON
+37143,0.0001539232,Nitrous Oxide,TON
+37143,0.4090242,Nitrogen Oxides,TON
+37143,0.004209099,Organic Carbon portion of PM2.5-PRI,TON
+37143,1.976605,Carbon Dioxide,TON
+37143,1.164987e-06,Nitrate portion of PM2.5-PRI,TON
+37143,0.0004271828,PM2.5 Primary (Filt + Cond),TON
+37143,8.40009e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,4.192658e-05,Sulfur Dioxide,TON
+37137,0.0002850687,Nitrate portion of PM2.5-PRI,TON
+37137,0.009277078,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.07984162,Anthracene,LB
+37137,0.07498708,Acenaphthene,LB
+37137,0.0225005,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.2398898,Benzene,LB
+37137,6.254516e-07,Mercury,LB
+37137,0.000204207,Acenaphthene,LB
+37137,3.313515,Carbon Dioxide,TON
+37137,1.378106e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37137,8.78018e-05,Ammonia,TON
+37137,0.003113606,Volatile Organic Compounds,TON
+37129,0.007514408,Nitrous Oxide,TON
+37129,0.4857914,Nitrogen Oxides,TON
+37129,0.2434194,Acrolein,LB
+37129,0.00313643,Benzo[b]Fluoranthene,LB
+37129,0.05486044,Acenaphthylene,LB
+37129,8.047982,"2,2,4-Trimethylpentane",LB
+37129,0.0653751,Phenanthrene,LB
+37117,5.133858,Acrolein,LB
+37117,0.001948503,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.05594362,Chrysene,LB
+37117,0.0256738,Benzo[a]Pyrene,LB
+37117,6.089716,Benzene,LB
+37117,0.008784344,Nickel,LB
+37117,0.0019295086,Arsenic,LB
+37117,27.78372,Acetaldehyde,LB
+37117,0.4277648,Fluorene,LB
+37117,569.3473,Carbon Dioxide,TON
+37121,0.1233284,Styrene,LB
+37121,4.173748,Hexane,LB
+37121,10.520002,Xylenes (Mixed Isomers),LB
+37121,0.0019788698,Benzo[a]Pyrene,LB
+37121,0.005568668,Acenaphthene,LB
+37121,0.002512414,Ammonia,TON
+37113,0.11327478,"1,3-Butadiene",LB
+37113,0.02678658,Fluoranthene,LB
+37113,0.04298754,Phenanthrene,LB
+37113,0.008870906,PM10-Primary from certain diesel engines,TON
+37113,7.773684e-05,Nitrous Oxide,TON
+37113,0.003572016,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.0002501486,Sulfate Portion of PM2.5-PRI,TON
+37193,8.604042,Styrene,LB
+37193,1.983411,Acenaphthene,LB
+37193,0.3165209,Methane,TON
+37193,15.11272,Carbon Monoxide,TON
+37193,0.05304781,Sulfur Dioxide,TON
+37197,0.6501506,Xylenes (Mixed Isomers),LB
+37197,0.0008095346,"Benzo[g,h,i,]Perylene",LB
+37197,0.17629028,Ethyl Benzene,LB
+37197,0.005794936,Acrolein,LB
+37197,0.2470118,Hexane,LB
+37197,0.005907482,Propionaldehyde,LB
+37197,0.000620652,Fluorene,LB
+37197,0.1436101,Carbon Monoxide,TON
+37197,8.666888e-07,Nitrate portion of PM2.5-PRI,TON
+37197,7.402448e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.014246382,Fluoranthene,LB
+37189,0.0445951,Acenaphthylene,LB
+37189,7.153252,Ethyl Benzene,LB
+37189,0.002639388,Benz[a]Anthracene,LB
+37189,10.46472,Benzene,LB
+37189,0.0017332034,Manganese,LB
+37189,0.019840892,Fluorene,LB
+37189,0.008548685,Methane,TON
+37189,74.08568,Carbon Dioxide,TON
+37189,1.041774e-05,Nitrate portion of PM2.5-PRI,TON
+37187,0.005548218,Manganese,LB
+37187,0.000916414,Arsenic,LB
+37187,0.3673416,Phenanthrene,LB
+37187,0.0003877269,Nitrate portion of PM2.5-PRI,TON
+37187,0.0788523,PM2.5 Primary (Filt + Cond),TON
+37187,0.4374404,Styrene,LB
+37181,0.0004890636,Fluoranthene,LB
+37181,0.0003333438,Benzo[k]Fluoranthene,LB
+37181,43.30462,Carbon Dioxide,TON
+37181,0.003123559,PM10 Primary (Filt + Cond),TON
+37105,1.4076732e-05,Nickel,LB
+37105,8.716008e-05,Acenaphthene,LB
+37105,8.466593e-05,Methane,TON
+37105,3.364028e-07,Nitrate portion of PM2.5-PRI,TON
+37105,0.000340251,PM10 Primary (Filt + Cond),TON
+37105,0.001375807,Volatile Organic Compounds,TON
+37105,0.0001040569,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,5.86187e-05,Benzo[b]Fluoranthene,LB
+37105,5.86187e-05,Benzo[k]Fluoranthene,LB
+37105,0.03006556,Formaldehyde,LB
+37105,0.04570092,Ethyl Benzene,LB
+37105,0.00791229,"1,3-Butadiene",LB
+37105,0.001661303,Acrolein,LB
+37105,0.07219372,Hexane,LB
+37105,7.757486e-05,Anthracene,LB
+37105,0.16838988,Xylenes (Mixed Isomers),LB
+37093,22.1217,Phenanthrene,LB
+37093,1.971217,Methane,TON
+37093,0.4209368,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.6719369,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,86.85103,Volatile Organic Compounds,TON
+37083,0.0015479372,Anthracene,LB
+37083,1.1852102e-07,Chromium (VI),LB
+37083,2.401834e-05,"Dibenzo[a,h]Anthracene",LB
+37083,1.1881724e-06,Mercury,LB
+37083,1.481518e-05,Nickel,LB
+37083,5.020799,Carbon Dioxide,TON
+37083,0.0006343471,Nitrous Oxide,TON
+37077,6.35318,Benzo[a]Pyrene,LB
+37077,15499.46,Benzene,LB
+37077,288.7678,Acrolein,LB
+37077,13.680256,Anthracene,LB
+37077,0.1800022,Sulfate Portion of PM2.5-PRI,TON
+37077,269.9183,Volatile Organic Compounds,TON
+37057,11268.742,Ethyl Benzene,LB
+37057,17281.278,Hexane,LB
+37057,6.147532,Benzo[k]Fluoranthene,LB
+37057,15488.994,"2,2,4-Trimethylpentane",LB
+37057,2.519156,Nickel,LB
+37057,3.86256,Arsenic,LB
+37057,5770.624,Acetaldehyde,LB
+37057,32.30686,Fluorene,LB
+37057,24.53637,PM10 Primary (Filt + Cond),TON
+37051,0.014141558,Manganese,LB
+37051,0.002121124,Nickel,LB
+37051,0.017728984,Acenaphthene,LB
+37177,0.803308,Toluene,LB
+37177,0.0003894506,"Benzo[g,h,i,]Perylene",LB
+37177,0.0850809,Fluoranthene,LB
+37177,0.02091996,Benz[a]Anthracene,LB
+37177,0.03226575,PM2.5 Primary (Filt + Cond),TON
+37177,0.001141965,Sulfur Dioxide,TON
+37173,0.07085932,Ethyl Benzene,LB
+37173,0.14533026,Toluene,LB
+37173,9.091388e-05,"Benzo[g,h,i,]Perylene",LB
+37173,0.002853274,Chrysene,LB
+37173,0.00489948,Benz[a]Anthracene,LB
+37173,4.276454e-05,Nitrous Oxide,TON
+37173,0.0004515133,Ammonia,TON
+37173,0.01231021,Volatile Organic Compounds,TON
+37173,3.824852,Pyrene,LB
+37173,0.003761726,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.4825254,Benz[a]Anthracene,LB
+37173,0.00015628126,Mercury,LB
+37173,41.41727,Carbon Monoxide,TON
+37173,0.1584637,Ammonia,TON
+37173,0.03567694,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,2.850858,Fluorene,LB
+37167,0.02673076,Nitrous Oxide,TON
+37167,0.02013038,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,2.903858,Fluoranthene,LB
+37199,0.03750536,Methane,TON
+37199,0.06933171,Ammonia,TON
+37199,0.03317411,PM2.5 Primary (Filt + Cond),TON
+37199,1.8317366,Styrene,LB
+37199,153.70038,Hexane,LB
+37199,335.809,Xylenes (Mixed Isomers),LB
+37197,0.02176976,Benzo[b]Fluoranthene,LB
+37197,118.59798,Formaldehyde,LB
+37197,2.990506,"2,2,4-Trimethylpentane",LB
+37197,1.645502e-05,Mercury,LB
+37197,0.05025439,Methane,TON
+37193,0.03488074,"1,3-Butadiene",LB
+37193,0.3563946,Acrolein,LB
+37193,8.018248e-05,Benz[a]Anthracene,LB
+37193,2.100936e-05,Mercury,LB
+37193,1.746479e-06,Nickel,LB
+37193,7.436896,Acetaldehyde,LB
+37193,0.001550198,Phenanthrene,LB
+37193,0.0007631639,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.5244587,Nitrogen Oxides,TON
+37193,0.002945611,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.004843176,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.00010621282,Benzo[k]Fluoranthene,LB
+37185,1.6850086,Acetaldehyde,LB
+37185,0.012840402,Acenaphthene,LB
+37185,0.12851634,Ethyl Benzene,LB
+37185,2.292402,Pyrene,LB
+37185,0.012742246,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.119618,Methane,TON
+37185,0.6256147,PM25-Primary from certain diesel engines,TON
+37185,0.07716917,Ammonia,TON
+37185,0.0001910986,Acenaphthylene,LB
+37185,0.00217212,Naphthalene,LB
+37185,6.120049e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37185,8.040746e-06,Sulfur Dioxide,TON
+37195,2.198784,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,24.2528,Pyrene,LB
+37195,4.40981,Benzo[b]Fluoranthene,LB
+37195,4.40981,Benzo[k]Fluoranthene,LB
+37195,238531,Carbon Dioxide,TON
+37195,7.028638,Nitrous Oxide,TON
+37189,0.0005642398,"Benzo[g,h,i,]Perylene",LB
+37189,0.016512264,Manganese,LB
+37189,3.456106e-05,Mercury,LB
+37189,0.07627177,Methane,TON
+37189,0.01190869,Ammonia,TON
+37189,0.00248643,Sulfate Portion of PM2.5-PRI,TON
+37187,0.1230405,Nitrogen Oxides,TON
+37187,2.504758,Ethyl Benzene,LB
+37187,0.05786438,Acrolein,LB
+37187,4.679244,Hexane,LB
+37187,9.41751,Xylenes (Mixed Isomers),LB
+37187,4.797794e-05,"Dibenzo[a,h]Anthracene",LB
+37183,0.02823536,Nitrous Oxide,TON
+37181,0.13885876,Chrysene,LB
+37181,0.2373402,Benz[a]Anthracene,LB
+37181,41.4389,Acetaldehyde,LB
+37181,0.002662162,Nitrous Oxide,TON
+37181,0.01189507,Ammonia,TON
+37181,0.1003097,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.5564686,Volatile Organic Compounds,TON
+37181,1.729243e-05,Chromium (VI),LB
+37181,0.5055632,Acenaphthylene,LB
+37181,0.9092704,Phenanthrene,LB
+37181,0.047947,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.5124615,Volatile Organic Compounds,TON
+37181,0.017008102,Benzo[b]Fluoranthene,LB
+37181,0.02526314,Arsenic,LB
+37181,277.7098,Acetaldehyde,LB
+37181,5.69109,Phenanthrene,LB
+37181,0.1217956,Ammonia,TON
+37181,0.7071671,PM10 Primary (Filt + Cond),TON
+37181,0.5411684,PM2.5 Primary (Filt + Cond),TON
+37181,0.01726728,Sulfate Portion of PM2.5-PRI,TON
+37185,0.8468258,Styrene,LB
+37185,4.386026,Acrolein,LB
+37185,1.3319932,Hexane,LB
+37185,0.3314624,Fluoranthene,LB
+37185,52.92434,Formaldehyde,LB
+37185,0.0003513111,Nitrate portion of PM2.5-PRI,TON
+37185,0.1295333,PM2.5 Primary (Filt + Cond),TON
+37195,0.594001,Anthracene,LB
+37195,1.6607316,Pyrene,LB
+37195,76.50384,Acetaldehyde,LB
+37195,1.1930624,Fluorene,LB
+37195,0.4596342,PM10-Primary from certain diesel engines,TON
+37195,0.002100963,Nitrate portion of PM2.5-PRI,TON
+37195,0.01205124,Sulfur Dioxide,TON
+37187,0.0388724,Ethyl Benzene,LB
+37187,0.06249926,Hexane,LB
+37187,0.0001163264,Fluoranthene,LB
+37187,0.0003110644,Acenaphthylene,LB
+37187,7.633552e-05,Nickel,LB
+37187,0.0003830416,Phenanthrene,LB
+37187,0.0006467724,Methane,TON
+37187,10.25808,Carbon Dioxide,TON
+37187,0.000527526,Ammonia,TON
+37187,9.058368e-05,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.10457084,Propionaldehyde,LB
+37187,0.019076696,Pyrene,LB
+37187,5.419878e-05,"Dibenzo[a,h]Anthracene",LB
+37067,681.9792,Acrolein,LB
+37067,138503.22,Toluene,LB
+37067,13.149772,Benzo[k]Fluoranthene,LB
+37067,7.284358,Nickel,LB
+37067,0.06953743,Nitrate portion of PM2.5-PRI,TON
+37073,1.682658e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,5.790534e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,3.60032e-05,Chrysene,LB
+37073,3.011746e-07,Mercury,LB
+37073,5.16193e-05,Ammonia,TON
+37021,0.7112482,Propionaldehyde,LB
+37021,0.2059452,Phenanthrene,LB
+37021,0.01237691,Nitrous Oxide,TON
+37041,0.0007355226,Nickel,LB
+37041,2.163972e-05,Nitrate portion of PM2.5-PRI,TON
+37041,0.008254895,PM2.5 Primary (Filt + Cond),TON
+37041,18.726972,Hexane,LB
+37041,0.03061276,Pyrene,LB
+37041,45.70756,Xylenes (Mixed Isomers),LB
+37059,0.0005943616,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.2819594,"2,2,4-Trimethylpentane",LB
+37059,0.3661855,Carbon Monoxide,TON
+37059,0.0006231698,Nitrous Oxide,TON
+37081,27.77012,Ethyl Benzene,LB
+37081,1.932582,Anthracene,LB
+37081,2.386518,Acenaphthene,LB
+37081,0.6250755,Methane,TON
+37081,0.05416687,Sulfur Dioxide,TON
+37081,0.02878783,Sulfate Portion of PM2.5-PRI,TON
+37139,0.4984188,Benzene,LB
+37139,0.0001013753,Nitrous Oxide,TON
+37139,6.243924e-05,Nitrate portion of PM2.5-PRI,TON
+37139,0.0003070856,Sulfate Portion of PM2.5-PRI,TON
+37139,0.03084541,Volatile Organic Compounds,TON
+37139,0.1746063,Ethyl Benzene,LB
+37139,0.4185398,Acrolein,LB
+37139,0.1317197,Hexane,LB
+37139,9.809598e-07,Chromium (VI),LB
+37139,0.0002706028,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,5.239364,Formaldehyde,LB
+37163,2.419628,Phenanthrene,LB
+37163,0.2808725,PM25-Primary from certain diesel engines,TON
+37163,0.005275739,Nitrous Oxide,TON
+37163,0.2902932,PM2.5 Primary (Filt + Cond),TON
+37163,6.873556,Hexane,LB
+37163,0.0011222608,"Dibenzo[a,h]Anthracene",LB
+37099,2.08504e-05,Benz[a]Anthracene,LB
+37099,1.054447e-05,Ammonia,TON
+37099,0.0013015042,Acrolein,LB
+37099,0.00011133078,Pyrene,LB
+37099,6.054976e-09,Chromium (VI),LB
+37099,3.021986e-05,Benzo[a]Pyrene,LB
+37197,7.53386,Styrene,LB
+37197,17.202424,"1,3-Butadiene",LB
+37197,0.02847232,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.7276126,Chrysene,LB
+37197,0.3749748,Benzo[a]Pyrene,LB
+37197,0.015319394,"Dibenzo[a,h]Anthracene",LB
+37197,0.09213332,Nickel,LB
+37197,61.0602,Naphthalene,LB
+37197,1.448063,PM25-Primary from certain diesel engines,TON
+37197,11182.028,Toluene,LB
+37197,298.096,Benzene,LB
+37187,2.974274,Acrolein,LB
+37187,0.04068516,Benzo[b]Fluoranthene,LB
+37187,154.45108,Benzene,LB
+37187,1844.249,Carbon Dioxide,TON
+37187,0.01287772,Elemental Carbon portion of PM2.5-PRI,TON
+37187,2.613456,Volatile Organic Compounds,TON
+37187,81.03036,Styrene,LB
+37187,463.9674,"1,3-Butadiene",LB
+37187,7295.986,Xylenes (Mixed Isomers),LB
+37187,2.810864,"Benzo[g,h,i,]Perylene",LB
+37187,0.3623152,Manganese,LB
+37187,0.2193866,Nickel,LB
+37187,1133.2754,Acetaldehyde,LB
+37197,0.00016646678,Acrolein,LB
+37197,1.1722974e-07,Nickel,LB
+37197,0.00296163,Acetaldehyde,LB
+37193,0.0280586,PM2.5 Primary (Filt + Cond),TON
+37193,0.05829986,Acenaphthylene,LB
+37193,0.9768706,Benzene,LB
+37193,0.0763534,Fluorene,LB
+37193,0.003122657,Methane,TON
+37185,0.4632514,Propionaldehyde,LB
+37185,3.546416e-06,Chromium (VI),LB
+37185,0.06291534,Fluoranthene,LB
+37185,0.011095458,Chrysene,LB
+37185,0.1042603,Phenanthrene,LB
+37067,31.8681,"1,3-Butadiene",LB
+37067,0.0003411812,Chromium (VI),LB
+37067,28.467,"2,2,4-Trimethylpentane",LB
+37067,24.55188,Nitrogen Oxides,TON
+37135,0.0002685136,Chromium (VI),LB
+37135,0.4532584,Methane,TON
+37111,1.7098926,Styrene,LB
+37111,3.87177,"1,3-Butadiene",LB
+37005,0.004229316,Manganese,LB
+37005,8.611136e-06,Mercury,LB
+37005,235.5183,Carbon Dioxide,TON
+37005,0.04601016,PM10 Primary (Filt + Cond),TON
+37005,0.2471742,Pyrene,LB
+37005,0.003179776,Benzo[a]Pyrene,LB
+37005,0.00013125224,"Dibenzo[a,h]Anthracene",LB
+37007,0.0006150872,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.05634124,Acenaphthylene,LB
+37007,0.13100994,Phenanthrene,LB
+37007,0.05243482,PM10-Primary from certain diesel engines,TON
+37007,1.077854,Nitrogen Oxides,TON
+37007,0.05097986,PM2.5 Primary (Filt + Cond),TON
+37089,2.456452e-06,Nickel,LB
+37089,2.453365,Methane,TON
+37089,182.9165,Carbon Dioxide,TON
+37089,0.00333938,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.5184488,Toluene,LB
+37089,0.00014126924,"Benzo[g,h,i,]Perylene",LB
+37089,0.3756923,Volatile Organic Compounds,TON
+37177,0.007668308,Acenaphthene,LB
+37177,0.011443678,Fluoranthene,LB
+37177,0.002944838,Benzo[k]Fluoranthene,LB
+37197,12.190836,Anthracene,LB
+37197,14.020238,"Benzo[g,h,i,]Perylene",LB
+37197,3.956778,Benzo[b]Fluoranthene,LB
+37197,20.80488,Fluoranthene,LB
+37197,64.9503,Acenaphthylene,LB
+37197,740.528,Naphthalene,LB
+37197,11.77484,Ammonia,TON
+37197,0.01536064,Nitrate portion of PM2.5-PRI,TON
+37197,438.8422,Nitrogen Oxides,TON
+37197,231.4723,Volatile Organic Compounds,TON
+37197,340.0822,Styrene,LB
+37189,1.0832026,Ethyl Benzene,LB
+37189,0.003049528,Fluoranthene,LB
+37189,0.002093332,Acenaphthene,LB
+37189,2.812779e-06,Nitrate portion of PM2.5-PRI,TON
+37181,6.13014,Hexane,LB
+37181,23.54374,Benzene,LB
+37181,1.272724,PM10-Primary from certain diesel engines,TON
+37181,0.004900218,Nitrous Oxide,TON
+37179,0.07933945,Methane,TON
+37179,3.911589,Nitrogen Oxides,TON
+37179,0.01399527,Sulfate Portion of PM2.5-PRI,TON
+37179,3.415128,Ethyl Benzene,LB
+37179,2.862674,"1,3-Butadiene",LB
+37179,8.44021,Toluene,LB
+37179,0.07433406,Benzo[a]Pyrene,LB
+37179,2.836624,"2,2,4-Trimethylpentane",LB
+37173,0.014451182,"1,3-Butadiene",LB
+37173,0.1419152,Toluene,LB
+37173,9.48726e-07,Nickel,LB
+37173,3.640936,Acetaldehyde,LB
+37173,0.0006829032,Phenanthrene,LB
+37173,0.007862477,PM10 Primary (Filt + Cond),TON
+37173,0.03768711,Volatile Organic Compounds,TON
+37193,118.86742,Benzene,LB
+37193,0.625258,Phenanthrene,LB
+37193,0.2330262,Fluorene,LB
+37193,0.05101776,PM2.5 Primary (Filt + Cond),TON
+37185,0.03634778,Benzo[b]Fluoranthene,LB
+37185,0.12179268,Benzo[a]Pyrene,LB
+37185,0.005035818,"Dibenzo[a,h]Anthracene",LB
+37185,6.737746,"1,3-Butadiene",LB
+37185,0.08599364,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,4.261274e-05,Chromium (VI),LB
+37191,0.010364688,"Benzo[g,h,i,]Perylene",LB
+37191,0.006928878,Benzo[k]Fluoranthene,LB
+37191,0.3272936,Chrysene,LB
+37191,0.006922704,"Dibenzo[a,h]Anthracene",LB
+37191,3.53825e-05,Mercury,LB
+37191,1628.185,Carbon Dioxide,TON
+37191,0.008307889,Nitrous Oxide,TON
+37191,3.21717,Styrene,LB
+37191,7.312646,"1,3-Butadiene",LB
+37191,5.89061,Hexane,LB
+37189,1014.1144,Benzene,LB
+37189,147.82538,"1,3-Butadiene",LB
+37189,0.993673,"Benzo[g,h,i,]Perylene",LB
+37189,0.2809422,Benzo[k]Fluoranthene,LB
+37189,13021.27,Carbon Dioxide,TON
+37189,0.1398915,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.592108,Fluoranthene,LB
+37187,1.5715798e-05,Mercury,LB
+37187,0.9277008,Phenanthrene,LB
+37187,8.153842,Naphthalene,LB
+37187,0.01715141,Methane,TON
+37187,0.3766308,PM10-Primary from certain diesel engines,TON
+37187,0.0009703372,Nitrate portion of PM2.5-PRI,TON
+37187,8.192268,Nitrogen Oxides,TON
+37187,0.01045332,Sulfur Dioxide,TON
+37183,5.451886,Pyrene,LB
+37183,0.01979476,"Benzo[g,h,i,]Perylene",LB
+37183,0.01104424,Benzo[k]Fluoranthene,LB
+37183,4.1316,Acenaphthylene,LB
+37183,872.5868,Formaldehyde,LB
+37183,4.745268,Fluorene,LB
+37183,0.8820319,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.2146305,Ammonia,TON
+37183,0.4284806,Organic Carbon portion of PM2.5-PRI,TON
+37183,1.78192,PM2.5 Primary (Filt + Cond),TON
+37183,235.356,Propionaldehyde,LB
+37183,3.944902,Benzo[b]Fluoranthene,LB
+37183,0.12812288,"Dibenzo[a,h]Anthracene",LB
+37183,657.1028,Naphthalene,LB
+37183,6.196674,Sulfur Dioxide,TON
+37179,17.697878,"2,2,4-Trimethylpentane",LB
+37173,0.0010538414,Benzo[b]Fluoranthene,LB
+37173,1.6854514,"2,2,4-Trimethylpentane",LB
+37173,0.00019142036,Nickel,LB
+37173,0.001499218,Methane,TON
+37173,0.000338039,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.0007031474,Sulfur Dioxide,TON
+37095,0.08069737,Volatile Organic Compounds,TON
+37095,2.40634e-06,Chromium (VI),LB
+37095,0.0007102302,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.03142606,Benz[a]Anthracene,LB
+37095,0.0014829836,Nickel,LB
+37095,80.40603,Carbon Dioxide,TON
+37095,0.03496547,PM10-Primary from certain diesel engines,TON
+37089,2.221562,Styrene,LB
+37089,12.259016,Acrolein,LB
+37089,1.1717454,Pyrene,LB
+37089,0.9800836,Fluorene,LB
+37089,0.3322769,PM10-Primary from certain diesel engines,TON
+37089,11.12587,Nitrogen Oxides,TON
+37079,3.807552e-05,Chromium (VI),LB
+37079,0.004410696,Benzo[k]Fluoranthene,LB
+37079,0.473948,Acenaphthene,LB
+37079,1.0269232,Fluorene,LB
+37079,0.03137543,Ammonia,TON
+37079,0.1519503,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.8334168,PM10 Primary (Filt + Cond),TON
+37073,0.02249742,Benzo[a]Pyrene,LB
+37073,0.005822536,Manganese,LB
+37073,0.08326408,PM10-Primary from certain diesel engines,TON
+37059,0.12243548,Acrolein,LB
+37059,0.003651804,Benzo[b]Fluoranthene,LB
+37059,0.0001440978,"Dibenzo[a,h]Anthracene",LB
+37059,0.002434498,Manganese,LB
+37059,0.3544208,Nitrogen Oxides,TON
+37059,0.003528016,Organic Carbon portion of PM2.5-PRI,TON
+37049,15.518808,Toluene,LB
+37049,0.000898245,Benzo[k]Fluoranthene,LB
+37049,0.0296177,Manganese,LB
+37049,0.0296158,Nickel,LB
+37049,0.211886,PM2.5 Primary (Filt + Cond),TON
+37037,0.006198396,Benzo[k]Fluoranthene,LB
+37037,1.176785,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.06384218,Sulfate Portion of PM2.5-PRI,TON
+37037,129.66922,Toluene,LB
+37033,963.3484,Hexane,LB
+37033,1274.0948,"2,2,4-Trimethylpentane",LB
+37033,18.99352,Volatile Organic Compounds,TON
+37025,1171.085,Acetaldehyde,LB
+37025,0.1014628,Nitrous Oxide,TON
+37025,0.00017955674,Chromium (VI),LB
+37025,0.003673114,Benzo[k]Fluoranthene,LB
+37025,0.003649644,"Dibenzo[a,h]Anthracene",LB
+37025,59.03884,Benzene,LB
+37025,1.9398672,Acenaphthene,LB
+37025,5.611664,Phenanthrene,LB
+37025,0.3819872,Methane,TON
+37025,0.4435166,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.3996238,Toluene,LB
+37013,0.2988408,Propionaldehyde,LB
+37013,2.478238,Acetaldehyde,LB
+37013,0.004949414,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.2414501,Nitrogen Oxides,TON
+37015,1.3716848e-05,Chrysene,LB
+37015,0.0002469074,Phenanthrene,LB
+37015,8.169863e-06,Ammonia,TON
+37015,5.907037e-08,Nitrate portion of PM2.5-PRI,TON
+37005,1.3875118,Xylenes (Mixed Isomers),LB
+37005,0.002770504,Nickel,LB
+37005,0.0006085104,Arsenic,LB
+37005,0.245479,Phenanthrene,LB
+37005,182.4938,Carbon Dioxide,TON
+37005,0.0001554543,Nitrate portion of PM2.5-PRI,TON
+37005,0.06088712,PM10 Primary (Filt + Cond),TON
+37005,0.005160855,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.004600586,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.002447852,Anthracene,LB
+37067,0.6060698,Propionaldehyde,LB
+37067,0.003006564,Chrysene,LB
+37067,0.005093,Fluorene,LB
+37067,0.1315166,Naphthalene,LB
+37063,4.995978,Hexane,LB
+37049,0.004453956,Nitrous Oxide,TON
+37049,2.494512,Formaldehyde,LB
+37017,0.0004373496,Pyrene,LB
+37017,0.0002567246,Benzo[b]Fluoranthene,LB
+37017,0.0002567246,Benzo[k]Fluoranthene,LB
+37017,0.0002861574,Nickel,LB
+37017,0.3253992,Carbon Monoxide,TON
+37017,38.34159,Carbon Dioxide,TON
+37017,1.450585,Volatile Organic Compounds,TON
+37017,8.264218,"1,3-Butadiene",LB
+37017,13.427368,Propionaldehyde,LB
+37017,0.05856022,Benzo[b]Fluoranthene,LB
+37017,1.4138106,Acenaphthylene,LB
+37017,240.1306,Formaldehyde,LB
+37017,0.196415,Benzo[a]Pyrene,LB
+37017,3.121244,Phenanthrene,LB
+37017,25.84143,Nitrogen Oxides,TON
+37013,0.0005040398,Acenaphthylene,LB
+37013,1.6447784e-05,Mercury,LB
+37013,0.0002131776,Acenaphthene,LB
+37013,1.592792e-06,Nitrate portion of PM2.5-PRI,TON
+37013,6.436402e-05,Sulfate Portion of PM2.5-PRI,TON
+37011,0.0937274,Fluorene,LB
+37011,0.01976512,PM2.5 Primary (Filt + Cond),TON
+37011,0.009596125,Sulfur Dioxide,TON
+37027,0.01864077,Nitrous Oxide,TON
+37027,0.02569962,PM2.5 Primary (Filt + Cond),TON
+37027,4.66595,Ethyl Benzene,LB
+37027,0.007773818,Benzo[b]Fluoranthene,LB
+37027,0.03719074,Acenaphthylene,LB
+37027,21.67844,Benzene,LB
+37027,0.00616509,Nickel,LB
+37027,0.009453036,Arsenic,LB
+37027,102.68308,Acetaldehyde,LB
+37189,0.04931592,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.008963631,Sulfate Portion of PM2.5-PRI,TON
+37189,8.698192,Ethyl Benzene,LB
+37189,8.302328,"1,3-Butadiene",LB
+37189,0.7051036,Anthracene,LB
+37189,13.689728,Propionaldehyde,LB
+37189,18.355332,Xylenes (Mixed Isomers),LB
+37189,1.4144918,Acenaphthylene,LB
+37189,0.10148164,Chrysene,LB
+37189,1.4674656,Fluorene,LB
+37189,28.58198,Naphthalene,LB
+37189,0.2855471,PM10-Primary from certain diesel engines,TON
+37189,0.005443754,Nitrous Oxide,TON
+37073,63.56592,Ethyl Benzene,LB
+37073,2.085552,Acrolein,LB
+37063,0.0008744162,Mercury,LB
+37063,652.3182,Acetaldehyde,LB
+37063,114.12186,Acrolein,LB
+37063,12.016252,Pyrene,LB
+37063,0.03494438,Benzo[k]Fluoranthene,LB
+37063,43.9832,"2,2,4-Trimethylpentane",LB
+37145,0.00015454514,Anthracene,LB
+37145,2.945316e-08,Chromium (VI),LB
+37145,0.0003076664,Fluoranthene,LB
+37145,0.0011300212,Phenanthrene,LB
+37145,0.0004529092,Fluorene,LB
+37145,2.018152e-06,Nitrate portion of PM2.5-PRI,TON
+37189,3.271678e-05,Benz[a]Anthracene,LB
+37189,1.1769932e-06,Nickel,LB
+37189,0.0002707162,Arsenic,LB
+37189,0.03285077,Volatile Organic Compounds,TON
+37183,0.002988052,Benzo[k]Fluoranthene,LB
+37183,0.07095992,Benzo[a]Pyrene,LB
+37183,0.011314398,Arsenic,LB
+37183,0.3031241,Elemental Carbon portion of PM2.5-PRI,TON
+37183,10.63261,Nitrogen Oxides,TON
+37183,0.9443902,PM10 Primary (Filt + Cond),TON
+37057,1.142416,Phenanthrene,LB
+37057,4.178288,Nitrogen Oxides,TON
+37057,0.09513129,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.01156702,Sulfur Dioxide,TON
+37057,8.884084,Xylenes (Mixed Isomers),LB
+37057,3.262124e-05,Chromium (VI),LB
+37191,3.862868,Ethyl Benzene,LB
+37191,1.376143,Styrene,LB
+37191,9.67512,Toluene,LB
+37191,2.990434,Hexane,LB
+37191,0.001394686,Benzo[b]Fluoranthene,LB
+37191,0.00019543854,"Dibenzo[a,h]Anthracene",LB
+37191,0.3213716,Acenaphthene,LB
+37153,3.034312,"1,3-Butadiene",LB
+37153,2.137934,Hexane,LB
+37153,0.001460776,"Dibenzo[a,h]Anthracene",LB
+37153,8.3462,Benzene,LB
+37153,0.011554388,Nickel,LB
+37153,0.128756,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.02404966,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.004447252,Sulfur Dioxide,TON
+37075,0.1646606,Acrolein,LB
+37075,3.33894,Formaldehyde,LB
+37075,0.002416714,Benzo[a]Pyrene,LB
+37075,0.0018529306,Manganese,LB
+37075,0.009015866,Phenanthrene,LB
+37069,15.335904,Formaldehyde,LB
+37069,0.012493164,Benzo[a]Pyrene,LB
+37069,0.0002903142,"Dibenzo[a,h]Anthracene",LB
+37069,17.405678,Toluene,LB
+37069,6.926966,Hexane,LB
+37069,0.014069048,Pyrene,LB
+37069,0.015572434,Manganese,LB
+37069,0.0004588204,Mercury,LB
+37069,95.72992,Acetaldehyde,LB
+37069,0.3898188,Naphthalene,LB
+37019,1.7137884,"1,3-Butadiene",LB
+37019,0.08331326,"Benzo[g,h,i,]Perylene",LB
+37019,0.016455308,Benzo[k]Fluoranthene,LB
+37019,16.447958,"2,2,4-Trimethylpentane",LB
+37019,0.014250376,Benz[a]Anthracene,LB
+37019,176.08304,Acetaldehyde,LB
+37019,0.7558282,Naphthalene,LB
+37019,8.993896,Toluene,LB
+37019,1.9906626,Hexane,LB
+37019,0.0006932526,Benzo[k]Fluoranthene,LB
+37019,0.011455444,Acenaphthylene,LB
+37019,0.002515558,Acenaphthene,LB
+37019,0.7349981,Carbon Monoxide,TON
+37019,0.0002322808,Ammonia,TON
+37019,0.0001370723,Sulfur Dioxide,TON
+37015,0.1085862,Acrolein,LB
+37015,0.1225844,Propionaldehyde,LB
+37015,0.009905508,Pyrene,LB
+37015,2.442778,Carbon Monoxide,TON
+37015,0.0007830512,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.0003370488,Arsenic,LB
+37015,0.0002495169,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.004813819,PM10 Primary (Filt + Cond),TON
+37015,0.0566352,Styrene,LB
+37011,915.4054,Ethyl Benzene,LB
+37011,30.56152,Acrolein,LB
+37011,0.4874,Benzo[b]Fluoranthene,LB
+37011,74.23422,Naphthalene,LB
+37011,0.394683,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.444745,Toluene,LB
+37005,0.10871024,Hexane,LB
+37003,0.095738,Pyrene,LB
+37003,0.00435229,Manganese,LB
+37003,0.866698,Nitrogen Oxides,TON
+37003,0.005111767,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.003353119,PM25-Primary from certain diesel engines,TON
+37003,0.02142326,PM10 Primary (Filt + Cond),TON
+37003,0.1994769,Volatile Organic Compounds,TON
+37003,16.063642,Acetaldehyde,LB
+37003,4.01416,Naphthalene,LB
+37003,0.0317234,Methane,TON
+37051,3.556932,Ethyl Benzene,LB
+37051,0.16482538,Styrene,LB
+37051,0.03302918,Phenanthrene,LB
+37051,0.004505008,Elemental Carbon portion of PM2.5-PRI,TON
+37051,7.198785e-05,Nitrate portion of PM2.5-PRI,TON
+37051,0.1515682,PM10 Primary (Filt + Cond),TON
+37051,7.995682,Hexane,LB
+37051,0.008275202,Benzo[k]Fluoranthene,LB
+37051,0.005697986,Acenaphthene,LB
+37017,0.5681994,Ethyl Benzene,LB
+37017,0.0010189446,Benzo[k]Fluoranthene,LB
+37017,0.000782389,Chrysene,LB
+37017,4.42974e-05,"Dibenzo[a,h]Anthracene",LB
+37017,3.03595,Benzene,LB
+37017,0.001467824,Nickel,LB
+37017,0.0923466,Nitrogen Oxides,TON
+37017,0.001298934,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.009114312,Styrene,LB
+37009,0.0014501408,Acenaphthylene,LB
+37009,0.975664,Benzene,LB
+37009,0.0006382556,Fluorene,LB
+37009,0.016411664,Naphthalene,LB
+37009,0.002436302,Methane,TON
+37009,0.002026187,PM10 Primary (Filt + Cond),TON
+37009,1.70393e-05,Sulfate Portion of PM2.5-PRI,TON
+37145,0.03363304,PM10 Primary (Filt + Cond),TON
+37145,0.0002808384,Sulfate Portion of PM2.5-PRI,TON
+37017,27.99694,Benzene,LB
+37017,1.5285184,Acenaphthylene,LB
+37013,5.119642,Propionaldehyde,LB
+37013,4.958328,Xylenes (Mixed Isomers),LB
+37013,1.8138012e-05,Chromium (VI),LB
+37013,2.13004,"2,2,4-Trimethylpentane",LB
+37013,0.000683323,Nitrate portion of PM2.5-PRI,TON
+37013,0.05306016,Organic Carbon portion of PM2.5-PRI,TON
+37021,10070.064,Toluene,LB
+37021,0.3645871,Elemental Carbon portion of PM2.5-PRI,TON
+37021,84.70663,Nitrogen Oxides,TON
+37021,0.8546353,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.5992646,Benzo[a]Pyrene,LB
+37019,0.5735307,Methane,TON
+37019,2.131716,PM10-Primary from certain diesel engines,TON
+37019,0.0327997,Nitrous Oxide,TON
+37019,2.108311,PM2.5 Primary (Filt + Cond),TON
+37011,0.013201356,Acenaphthylene,LB
+37011,0.8533634,Formaldehyde,LB
+37011,0.001035793,Benzo[a]Pyrene,LB
+37011,1.508558,"2,2,4-Trimethylpentane",LB
+37011,0.001764853,Methane,TON
+37011,0.1046128,Nitrogen Oxides,TON
+37011,7.640508,Toluene,LB
+37011,0.004818958,Pyrene,LB
+37011,5.463376,Xylenes (Mixed Isomers),LB
+37003,0.2548436,Pyrene,LB
+37003,0.1250049,Acenaphthylene,LB
+37003,22.97084,Formaldehyde,LB
+37003,9.943382,Acetaldehyde,LB
+37003,0.296241,Phenanthrene,LB
+37003,0.16913196,Fluorene,LB
+37003,0.009350453,Methane,TON
+37003,0.5330855,Carbon Monoxide,TON
+37003,0.06219602,PM2.5 Primary (Filt + Cond),TON
+37179,3.757798e-05,"Dibenzo[a,h]Anthracene",LB
+37179,5.37496,Benzene,LB
+37179,2.858788e-06,Mercury,LB
+37179,0.005958328,Acenaphthene,LB
+37179,0.0003099765,Ammonia,TON
+37179,4.726448e-06,Nitrate portion of PM2.5-PRI,TON
+37179,0.09194895,Nitrogen Oxides,TON
+37179,0.1070813,Volatile Organic Compounds,TON
+37197,0.0306712,Phenanthrene,LB
+37197,7.232382,Carbon Monoxide,TON
+37197,0.003639794,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.3333575,Volatile Organic Compounds,TON
+37197,3.261036e-05,Chromium (VI),LB
+37197,0.005633568,Benzo[k]Fluoranthene,LB
+37197,0.0003269224,Mercury,LB
+37197,0.0040763,Nickel,LB
+37193,0.005688948,Benzo[k]Fluoranthene,LB
+37193,0.006855364,Manganese,LB
+37193,0.0006587524,Nickel,LB
+37193,0.0010100774,Arsenic,LB
+37193,0.04009252,Fluorene,LB
+37193,0.007573248,Ammonia,TON
+37193,0.004160045,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.005994997,Sulfur Dioxide,TON
+37183,4.348862,Fluoranthene,LB
+37183,0.00217311,Benzo[k]Fluoranthene,LB
+37183,0.0553211,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.0005353276,Chromium (VI),LB
+37183,0.1165594,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.09587403,Sulfur Dioxide,TON
+37199,22.42678,Acetaldehyde,LB
+37199,0.02395008,Methane,TON
+37199,0.05853672,PM10 Primary (Filt + Cond),TON
+37199,1.7230974,Ethyl Benzene,LB
+37199,52.14502,Formaldehyde,LB
+37199,4.839286,Benzene,LB
+37197,0.15389744,Xylenes (Mixed Isomers),LB
+37197,42.67394,Formaldehyde,LB
+37197,1.3795092e-05,Mercury,LB
+37197,0.0003989324,Fluorene,LB
+37197,0.000406774,Sulfur Dioxide,TON
+37195,0.2739032,Styrene,LB
+37195,10.1062,"2,2,4-Trimethylpentane",LB
+37195,0.010887796,Benz[a]Anthracene,LB
+37195,0.02518582,Manganese,LB
+37195,0.0008707716,Mercury,LB
+37195,15.08778,Carbon Monoxide,TON
+37195,1.125206,Acrolein,LB
+37195,0.00028453,Benz[a]Anthracene,LB
+37195,1.7129328e-06,Nickel,LB
+37195,0.004446206,Phenanthrene,LB
+37195,0.04160086,PM10 Primary (Filt + Cond),TON
+37195,0.0002245485,Sulfate Portion of PM2.5-PRI,TON
+37189,8.423456,Toluene,LB
+37189,3.160894,"2,2,4-Trimethylpentane",LB
+37183,203.9004,Toluene,LB
+37183,0.012716224,"Dibenzo[a,h]Anthracene",LB
+37183,225.2288,Benzene,LB
+37183,0.0008022808,Mercury,LB
+37183,1.900036,Methane,TON
+37183,1.601745,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.497789,Organic Carbon portion of PM2.5-PRI,TON
+37183,2.534059,PM2.5 Primary (Filt + Cond),TON
+37141,101.5862,Xylenes (Mixed Isomers),LB
+37141,0.0003886724,Mercury,LB
+37141,0.3918834,Ammonia,TON
+37129,126.84754,Toluene,LB
+37129,45.72326,Hexane,LB
+37129,127.98018,Xylenes (Mixed Isomers),LB
+37123,0.00311426,Styrene,LB
+37123,0.436976,Toluene,LB
+37123,1.849505e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.006705515,Nitrogen Oxides,TON
+37109,0.08757736,Benzo[b]Fluoranthene,LB
+37109,3.589966,Fluoranthene,LB
+37109,1.756738,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.005522115,Nitrate portion of PM2.5-PRI,TON
+37109,0.5034461,Organic Carbon portion of PM2.5-PRI,TON
+37109,4.081077,PM10 Primary (Filt + Cond),TON
+37109,2.79097,PM2.5 Primary (Filt + Cond),TON
+37107,0.0003555976,Benzo[a]Pyrene,LB
+37107,2.433488e-05,Manganese,LB
+37107,0.14443134,Acetaldehyde,LB
+37107,0.002476262,Phenanthrene,LB
+37107,0.0001894934,Organic Carbon portion of PM2.5-PRI,TON
+37097,8.456704,Styrene,LB
+37097,0.02537168,Benzo[b]Fluoranthene,LB
+37097,3.459828,Fluorene,LB
+37097,3.56814,Volatile Organic Compounds,TON
+37091,0.0015159488,Benzo[k]Fluoranthene,LB
+37091,0.001881258,Nitrous Oxide,TON
+37091,1.7929882,Ethyl Benzene,LB
+37091,1.3592534,Hexane,LB
+37091,2.842702,Propionaldehyde,LB
+37091,0.5262174,Pyrene,LB
+37103,1.3781602,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,1.064306,Benzo[b]Fluoranthene,LB
+37103,18.306868,Acenaphthylene,LB
+37103,1288.6532,Formaldehyde,LB
+37103,0.0316339,"Dibenzo[a,h]Anthracene",LB
+37103,0.004240376,Nitrate portion of PM2.5-PRI,TON
+37103,1.580415,PM2.5 Primary (Filt + Cond),TON
+37095,0.09819055,Methane,TON
+37095,0.01183608,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.02620974,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.001376632,Sulfate Portion of PM2.5-PRI,TON
+37093,0.17681694,Acrolein,LB
+37093,2.952406e-08,Chromium (VI),LB
+37093,3.332378,Acetaldehyde,LB
+37093,0.3238972,Methane,TON
+37093,0.001509908,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.004808264,PM2.5 Primary (Filt + Cond),TON
+37093,18.526528,Toluene,LB
+37093,2.121036e-07,Chromium (VI),LB
+37093,1.5081908,Formaldehyde,LB
+37093,0.02525138,Phenanthrene,LB
+37093,8.585852,Carbon Dioxide,TON
+37087,0.007202004,Benzo[b]Fluoranthene,LB
+37087,2.291526,"1,3-Butadiene",LB
+37087,4.666818,Toluene,LB
+37087,3.755416,Propionaldehyde,LB
+37087,0.232612,Acenaphthene,LB
+37087,5.715884,Nitrogen Oxides,TON
+37087,0.2245993,PM10 Primary (Filt + Cond),TON
+37087,0.0186679,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,2.1431,Styrene,LB
+37083,11.101002,Acrolein,LB
+37083,0.04957968,Benzo[a]Pyrene,LB
+37083,0.019203792,Nickel,LB
+37083,0.3221347,PM25-Primary from certain diesel engines,TON
+37083,0.830998,Volatile Organic Compounds,TON
+37079,0.19058224,Hexane,LB
+37079,0.000212762,"Dibenzo[a,h]Anthracene",LB
+37079,0.19374906,"2,2,4-Trimethylpentane",LB
+37079,0.017179656,Benz[a]Anthracene,LB
+37079,0.0005516842,Arsenic,LB
+37079,1.829121,Naphthalene,LB
+37079,0.0006633398,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.0005352453,Sulfate Portion of PM2.5-PRI,TON
+37079,1.4528492,Xylenes (Mixed Isomers),LB
+37087,0.04893667,Volatile Organic Compounds,TON
+37087,0.3685314,"1,3-Butadiene",LB
+37087,9.804054,Toluene,LB
+37087,0.0010869074,Chrysene,LB
+37087,0.8959074,Formaldehyde,LB
+37087,0.0011646682,Benz[a]Anthracene,LB
+37087,0.002765572,Acenaphthene,LB
+37087,0.1437351,Naphthalene,LB
+37087,0.0004488556,Elemental Carbon portion of PM2.5-PRI,TON
+37087,5.59554e-06,Nitrate portion of PM2.5-PRI,TON
+37083,10283.874,Hexane,LB
+37083,21.45722,Fluoranthene,LB
+37083,1.967297,Manganese,LB
+37083,0.08291914,Mercury,LB
+37083,8.247106,Methane,TON
+37083,1.17539,Elemental Carbon portion of PM2.5-PRI,TON
+37083,5.785748,Nitrous Oxide,TON
+37083,11.90597,PM10 Primary (Filt + Cond),TON
+37075,6.699376e-05,Anthracene,LB
+37075,2.465718e-05,Benzo[b]Fluoranthene,LB
+37075,8.057258e-07,"Dibenzo[a,h]Anthracene",LB
+37075,0.0004248402,Phenanthrene,LB
+37075,2.5004e-05,Ammonia,TON
+37075,9.102298e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,8.99189e-07,Sulfate Portion of PM2.5-PRI,TON
+37071,0.2323788,"Dibenzo[a,h]Anthracene",LB
+37071,6.347866,Benz[a]Anthracene,LB
+37071,35.49916,Fluorene,LB
+37071,0.03489581,Nitrate portion of PM2.5-PRI,TON
+37071,8.516941,Sulfur Dioxide,TON
+37071,10.122528,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,79.96002,Acenaphthylene,LB
+37069,29.52172,Acrolein,LB
+37069,1.8711038,Acenaphthylene,LB
+37069,35.5086,Benzene,LB
+37069,0.04583524,Nickel,LB
+37069,9.101242,Carbon Monoxide,TON
+37069,4865.166,Carbon Dioxide,TON
+37069,0.8492607,PM25-Primary from certain diesel engines,TON
+37069,0.04144744,Sulfur Dioxide,TON
+37069,0.303605,Acetaldehyde,LB
+37069,0.0001353658,Ammonia,TON
+37069,0.0005301434,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.000349328,Benzo[k]Fluoranthene,LB
+37069,1.2165788e-05,"Dibenzo[a,h]Anthracene",LB
+37069,0.750257,"2,2,4-Trimethylpentane",LB
+37069,0.00013916572,Anthracene,LB
+37069,4.100292e-05,Benzo[b]Fluoranthene,LB
+37069,0.05273692,Formaldehyde,LB
+37069,5.170836e-05,Benzo[a]Pyrene,LB
+37069,1.1962576e-06,Nickel,LB
+37069,9.699726e-05,PM10 Primary (Filt + Cond),TON
+37063,103.39294,"2,2,4-Trimethylpentane",LB
+37063,75.36116,Carbon Monoxide,TON
+37063,86.67262,Hexane,LB
+37063,124.33896,Propionaldehyde,LB
+37063,398.1596,Xylenes (Mixed Isomers),LB
+37059,135.3171,Acrolein,LB
+37059,42.17978,Hexane,LB
+37059,0.005881804,Benzo[k]Fluoranthene,LB
+37059,1.015015,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.1035857,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.003614682,Benz[a]Anthracene,LB
+37059,0.005383891,Ammonia,TON
+37059,0.02162616,PM10 Primary (Filt + Cond),TON
+37059,0.004382264,Sulfur Dioxide,TON
+37055,66.592,Phenanthrene,LB
+37055,7218.054,Ethyl Benzene,LB
+37055,26558.22,Xylenes (Mixed Isomers),LB
+37055,55.91534,Acenaphthylene,LB
+37055,3.758898,Benzo[a]Pyrene,LB
+37055,0.0856148,"Dibenzo[a,h]Anthracene",LB
+37047,6.83639,Styrene,LB
+37047,31.82518,Toluene,LB
+37047,25.3442,Propionaldehyde,LB
+37047,0.6926591,PM10 Primary (Filt + Cond),TON
+37047,0.01834997,Sulfate Portion of PM2.5-PRI,TON
+37039,1.8907922e-05,Mercury,LB
+37039,0.0002357594,Nickel,LB
+37039,0.0003615158,Arsenic,LB
+37039,0.00167648,PM2.5 Primary (Filt + Cond),TON
+37039,0.0537946,Acrolein,LB
+37039,6.691928,Xylenes (Mixed Isomers),LB
+37039,2.846186e-05,"Dibenzo[a,h]Anthracene",LB
+37041,2929.402,Xylenes (Mixed Isomers),LB
+37041,1.6998388,Fluoranthene,LB
+37041,329.3776,Formaldehyde,LB
+37041,0.4732178,Benzo[a]Pyrene,LB
+37041,433.3692,Acetaldehyde,LB
+37041,26.08853,Nitrogen Oxides,TON
+37041,0.3505233,Sulfur Dioxide,TON
+37035,33.12524,Hexane,LB
+37035,0.252285,Benzo[b]Fluoranthene,LB
+37035,2.786122,Benz[a]Anthracene,LB
+37027,0.02973724,Acenaphthene,LB
+37027,0.06458926,Fluorene,LB
+37027,0.1699291,Carbon Monoxide,TON
+37027,0.000197736,Nitrous Oxide,TON
+37027,0.3265069,Nitrogen Oxides,TON
+37027,13.468512,Naphthalene,LB
+37027,0.001498323,Nitrous Oxide,TON
+37027,0.02743221,PM2.5 Primary (Filt + Cond),TON
+37027,0.0001925713,"Dibenzo[a,h]Anthracene",LB
+37027,4.160082,Ethyl Benzene,LB
+37027,0.3020286,Anthracene,LB
+37027,0.0012820754,"Benzo[g,h,i,]Perylene",LB
+37027,54.6601,Toluene,LB
+37023,3.626916,Hexane,LB
+37023,0.3476616,Anthracene,LB
+37023,0.6671468,Pyrene,LB
+37023,6.324794e-05,Chromium (VI),LB
+37023,0.0003169158,Benzo[k]Fluoranthene,LB
+37023,0.7222156,Acenaphthylene,LB
+37023,0.03682304,Chrysene,LB
+37023,1.1778132,Phenanthrene,LB
+37023,0.08866621,Methane,TON
+37023,0.001599113,Nitrous Oxide,TON
+37023,0.03582875,PM2.5 Primary (Filt + Cond),TON
+37023,0.01141907,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,272.227,Benzene,LB
+37011,2.387898,Hexane,LB
+37011,0.04826182,Propionaldehyde,LB
+37011,0.761913,Formaldehyde,LB
+37011,0.013422034,Phenanthrene,LB
+37011,0.1281542,Naphthalene,LB
+37011,38.10194,Carbon Dioxide,TON
+37001,1.116935,Chrysene,LB
+37001,67.89878,Benzene,LB
+37001,0.00016336464,Mercury,LB
+37001,0.1867366,Ammonia,TON
+37001,67.87207,Nitrogen Oxides,TON
+37001,3.299131,PM2.5 Primary (Filt + Cond),TON
+37001,23.29204,"1,3-Butadiene",LB
+37055,0.05449652,Acrolein,LB
+37055,0.0011722808,Benzo[a]Pyrene,LB
+37055,0.0005342352,Benz[a]Anthracene,LB
+37003,0.06026062,Acrolein,LB
+37003,0.0010986074,Fluorene,LB
+37003,0.02823522,Naphthalene,LB
+37003,49.08981,Carbon Dioxide,TON
+37003,0.0002215527,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.002995838,Ammonia,TON
+37173,0.05558321,Volatile Organic Compounds,TON
+37161,0.0005434418,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.0002836918,Benzo[b]Fluoranthene,LB
+37161,0.0002761032,Nickel,LB
+37161,0.000231728,Acenaphthene,LB
+37161,0.001918084,Ammonia,TON
+37157,2.241976,Ethyl Benzene,LB
+37141,2.502964,Ethyl Benzene,LB
+37139,4.98371,"2,2,4-Trimethylpentane",LB
+37139,0.009491922,Fluorene,LB
+37139,0.244144,Naphthalene,LB
+37139,0.002065229,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.009852236,Nitrous Oxide,TON
+37139,0.0161141,Sulfur Dioxide,TON
+37139,0.3138776,Volatile Organic Compounds,TON
+37087,3.467682e-06,Chromium (VI),LB
+37087,2.069158e-05,"Dibenzo[a,h]Anthracene",LB
+37087,3.232316,Acetaldehyde,LB
+37087,57.90601,Carbon Dioxide,TON
+37087,0.0007031719,Nitrous Oxide,TON
+37021,0.0003578006,Chromium (VI),LB
+37021,1.262182,Benzo[a]Pyrene,LB
+37021,4.078448,Benz[a]Anthracene,LB
+37021,3.949967,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.3565468,Ammonia,TON
+37021,8.793189,Volatile Organic Compounds,TON
+37021,20.44094,Hexane,LB
+37021,0.009185804,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,4.040396,Acenaphthylene,LB
+37021,0.004978654,"Dibenzo[a,h]Anthracene",LB
+37021,0.8353273,PM25-Primary from certain diesel engines,TON
+37021,0.002294078,Nitrate portion of PM2.5-PRI,TON
+37021,0.888966,PM2.5 Primary (Filt + Cond),TON
+37021,20633.6,Xylenes (Mixed Isomers),LB
+37015,0.110797,Acrolein,LB
+37015,0.00588127,"Benzo[g,h,i,]Perylene",LB
+37015,0.02231968,Acenaphthylene,LB
+37015,2.421516,"2,2,4-Trimethylpentane",LB
+37015,0.2543518,Naphthalene,LB
+37015,0.002225355,Methane,TON
+37015,0.2417831,Nitrogen Oxides,TON
+37015,0.001392197,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,80.3515,"1,3-Butadiene",LB
+37009,0.899752,Pyrene,LB
+37009,350.956,"2,2,4-Trimethylpentane",LB
+37009,532.5446,Benzene,LB
+37009,0.002682256,Mercury,LB
+37009,4821.16,Carbon Dioxide,TON
+37009,0.4028669,PM10 Primary (Filt + Cond),TON
+37009,0.004279111,Sulfate Portion of PM2.5-PRI,TON
+37009,8.658667,Volatile Organic Compounds,TON
+37001,77.62712,Toluene,LB
+37001,0.04770784,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.6281834,Benzo[a]Pyrene,LB
+37001,3.655086,PM10 Primary (Filt + Cond),TON
+37001,0.4405785,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.1172259,Sulfur Dioxide,TON
+37001,0.1177374,Sulfate Portion of PM2.5-PRI,TON
+37085,0.012377434,"Benzo[g,h,i,]Perylene",LB
+37085,0.0018480692,Chrysene,LB
+37085,0.004589182,Benzo[a]Pyrene,LB
+37085,0.0001067525,"Dibenzo[a,h]Anthracene",LB
+37085,2.666556,"2,2,4-Trimethylpentane",LB
+37085,0.008044148,Manganese,LB
+37085,0.002012746,Acenaphthene,LB
+37085,0.005551584,Nitrous Oxide,TON
+37071,1.1734166,Naphthalene,LB
+37071,0.1787579,Methane,TON
+37071,3195.285,Carbon Dioxide,TON
+37071,0.1650208,Ammonia,TON
+37063,1.6222016,Acrolein,LB
+37063,0.015164352,Anthracene,LB
+37063,0.02853608,Fluoranthene,LB
+37063,0.015666728,Chrysene,LB
+37063,0.0013676796,Mercury,LB
+37063,2494.08,Carbon Dioxide,TON
+37005,1.0320124,Hexane,LB
+37005,3.514516,Benzene,LB
+37005,0.008876087,Methane,TON
+37005,5.313718e-05,Sulfate Portion of PM2.5-PRI,TON
+37159,0.01958042,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.01772396,Benzo[k]Fluoranthene,LB
+37159,0.013503096,Chrysene,LB
+37159,0.0007767436,"Dibenzo[a,h]Anthracene",LB
+37177,0.0005465072,PM10 Primary (Filt + Cond),TON
+37177,0.04344466,Hexane,LB
+37177,6.465488e-05,Benzo[b]Fluoranthene,LB
+37177,8.52104e-05,Fluoranthene,LB
+37177,0.00011118412,Arsenic,LB
+37177,0.002468974,Naphthalene,LB
+37177,0.08167194,Carbon Monoxide,TON
+37161,0.0010351464,Benz[a]Anthracene,LB
+37161,1.428017,Carbon Monoxide,TON
+37133,0.000637077,Anthracene,LB
+37133,7.795776e-06,Chromium (VI),LB
+37133,0.000857739,Benzo[b]Fluoranthene,LB
+37133,0.0011966566,Fluoranthene,LB
+37133,0.002625252,Manganese,LB
+37133,7.815136e-05,Mercury,LB
+37133,0.0352588,Naphthalene,LB
+37133,0.0004493675,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.07164333,Nitrogen Oxides,TON
+37131,9.896728,Benzene,LB
+37131,0.0002603982,Mercury,LB
+37131,0.004978456,Arsenic,LB
+37131,0.00343165,Anthracene,LB
+37131,0.8926778,Propionaldehyde,LB
+37131,0.007592152,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.00017424816,"Dibenzo[a,h]Anthracene",LB
+37117,0.019878248,Styrene,LB
+37117,0.07458984,Acrolein,LB
+37117,0.00380586,"Benzo[g,h,i,]Perylene",LB
+37117,0.0014116026,Benzo[a]Pyrene,LB
+37117,0.8501832,"2,2,4-Trimethylpentane",LB
+37117,0.0013920168,Fluorene,LB
+37117,0.0009738478,Organic Carbon portion of PM2.5-PRI,TON
+37159,12.66402,Styrene,LB
+37159,29.5669,"1,3-Butadiene",LB
+37159,0.0004155144,Chromium (VI),LB
+37159,6.911892,Fluoranthene,LB
+37159,4.984214,Acenaphthylene,LB
+37159,464.638,Acetaldehyde,LB
+37159,33.36767,Carbon Monoxide,TON
+37159,0.6024127,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.002980178,Manganese,LB
+37163,0.003886844,Sulfur Dioxide,TON
+37163,0.16744422,Acrolein,LB
+37153,0.018207488,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.0003100132,Mercury,LB
+37153,7.046502,Phenanthrene,LB
+37153,2.060636,PM25-Primary from certain diesel engines,TON
+37153,0.005340501,Nitrate portion of PM2.5-PRI,TON
+37153,0.4261396,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.2089975,Sulfur Dioxide,TON
+37151,13.232442,Hexane,LB
+37151,0.02960748,"Benzo[g,h,i,]Perylene",LB
+37151,1.6442664,"1,3-Butadiene",LB
+37151,0.02743064,Fluorene,LB
+37151,0.01299818,PM2.5 Primary (Filt + Cond),TON
+37145,0.0007948254,Benzo[b]Fluoranthene,LB
+37145,0.019760262,Acenaphthylene,LB
+37145,0.09480664,"2,2,4-Trimethylpentane",LB
+37145,6.23609e-07,Mercury,LB
+37145,0.0004116516,Nickel,LB
+37145,1.6008848,Acetaldehyde,LB
+37145,4.709954e-05,Nitrate portion of PM2.5-PRI,TON
+37145,0.0002453232,Sulfur Dioxide,TON
+37145,52.59286,Toluene,LB
+37145,27.1607,Xylenes (Mixed Isomers),LB
+37145,11.86958,"2,2,4-Trimethylpentane",LB
+37145,44.52712,Carbon Dioxide,TON
+37145,0.2391563,Volatile Organic Compounds,TON
+37167,0.05346532,Acrolein,LB
+37167,0.002895548,Anthracene,LB
+37167,8.135448,Xylenes (Mixed Isomers),LB
+37167,0.0011433662,Benzo[a]Pyrene,LB
+37167,3.091404,Benzene,LB
+37167,1.8032054e-05,Nickel,LB
+37167,0.005722672,Methane,TON
+37167,0.0008889101,Nitrous Oxide,TON
+37167,0.001169924,PM2.5 Primary (Filt + Cond),TON
+37167,0.0001167759,Sulfur Dioxide,TON
+37003,0.9226746,PM2.5 Primary (Filt + Cond),TON
+37003,19.66381,Styrene,LB
+37003,44.09468,"1,3-Butadiene",LB
+37003,78.46058,Toluene,LB
+37003,31.96732,Hexane,LB
+37003,7.313942,Pyrene,LB
+37003,30.62396,"2,2,4-Trimethylpentane",LB
+37003,0.1345408,Nickel,LB
+37003,5128.811,Carbon Dioxide,TON
+37003,0.9664942,PM10-Primary from certain diesel engines,TON
+37077,1.7260734,Propionaldehyde,LB
+37077,0.295342,Xylenes (Mixed Isomers),LB
+37077,2.224918e-06,Nitrate portion of PM2.5-PRI,TON
+37067,0.2583991,Methane,TON
+37067,41.33114,Carbon Monoxide,TON
+37067,1.939326,Volatile Organic Compounds,TON
+37079,0.016895512,Acrolein,LB
+37079,0.000208962,Nickel,LB
+37079,0.001623948,Methane,TON
+37121,0.686853,Toluene,LB
+37121,0.06962596,Fluoranthene,LB
+37121,0.0002865778,Benzo[k]Fluoranthene,LB
+37121,0.013361606,Chrysene,LB
+37121,0.02269146,Benz[a]Anthracene,LB
+37121,0.02267248,PM25-Primary from certain diesel engines,TON
+37121,0.0002780649,Nitrous Oxide,TON
+37121,0.02372833,PM2.5 Primary (Filt + Cond),TON
+37121,0.05134115,Volatile Organic Compounds,TON
+37127,399.7594,Acetaldehyde,LB
+37127,0.2951934,Sulfur Dioxide,TON
+37127,2.804936,Anthracene,LB
+37127,43.67046,Propionaldehyde,LB
+37127,0.17538844,Benzo[b]Fluoranthene,LB
+37127,4.30733,Acenaphthylene,LB
+37179,10.097138,Fluoranthene,LB
+37179,180.6784,Nitrogen Oxides,TON
+37081,7.588004e-07,Benz[a]Anthracene,LB
+37081,0.00313024,Benzene,LB
+37081,7.195654e-06,Fluorene,LB
+37081,0.008973989,Methane,TON
+37081,4.469694e-05,Ammonia,TON
+37081,2.733455e-05,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.0009437117,Volatile Organic Compounds,TON
+37081,2.266506e-06,Anthracene,LB
+37081,0.0213153,Propionaldehyde,LB
+37035,0.002873834,"Dibenzo[a,h]Anthracene",LB
+37035,0.6439939,PM10-Primary from certain diesel engines,TON
+37035,0.5924666,PM25-Primary from certain diesel engines,TON
+37035,0.001357992,Nitrate portion of PM2.5-PRI,TON
+37035,0.8399009,PM10 Primary (Filt + Cond),TON
+37035,0.6186322,PM2.5 Primary (Filt + Cond),TON
+37035,44.57338,Acrolein,LB
+37035,29.63298,Propionaldehyde,LB
+37035,0.0001535808,Chromium (VI),LB
+37035,2.520696,Fluoranthene,LB
+37035,3.055206,Acenaphthylene,LB
+37035,0.2196174,Chrysene,LB
+37161,0.007880909,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.1903601,Styrene,LB
+37161,4.326808e-05,Chromium (VI),LB
+37161,0.012385062,Benzo[a]Pyrene,LB
+37099,0.04446418,"1,3-Butadiene",LB
+37099,0.0008631248,Benzo[a]Pyrene,LB
+37099,2.008036e-05,"Dibenzo[a,h]Anthracene",LB
+37099,1.047762,Benzene,LB
+37099,0.00352073,Methane,TON
+37099,0.001988729,Sulfur Dioxide,TON
+37165,1.6645656,Fluoranthene,LB
+37165,0.002870376,Nitrate portion of PM2.5-PRI,TON
+37165,0.03395434,Nickel,LB
+37159,3.495394,Toluene,LB
+37159,0.7801626,Hexane,LB
+37159,0.0003545006,Benzo[k]Fluoranthene,LB
+37159,1.2744284e-05,"Dibenzo[a,h]Anthracene",LB
+37159,1.563252e-06,Nitrate portion of PM2.5-PRI,TON
+37151,5.543736,Fluoranthene,LB
+37151,4.288498,Acenaphthylene,LB
+37151,26.47276,"2,2,4-Trimethylpentane",LB
+37151,0.446713,Manganese,LB
+37151,0.00049155,Mercury,LB
+37151,69.71026,Acrolein,LB
+37151,80.00918,Toluene,LB
+37151,0.03100256,"Benzo[g,h,i,]Perylene",LB
+37151,3.999916,PM10-Primary from certain diesel engines,TON
+37151,0.04248961,Nitrous Oxide,TON
+37135,0.0007462554,Chrysene,LB
+37135,0.0004021788,Benz[a]Anthracene,LB
+37135,0.006747518,Phenanthrene,LB
+37135,2.957756,Carbon Monoxide,TON
+37135,1.701762,Nitrogen Oxides,TON
+37135,0.06132345,PM10 Primary (Filt + Cond),TON
+37171,0.002424544,Benzo[a]Pyrene,LB
+37171,1.032227e-06,Mercury,LB
+37171,0.00235194,Methane,TON
+37171,1.4910262,Hexane,LB
+37169,39.98442,Hexane,LB
+37169,0.02148804,"Benzo[g,h,i,]Perylene",LB
+37169,0.0366324,Benzo[b]Fluoranthene,LB
+37169,0.005037744,"Dibenzo[a,h]Anthracene",LB
+37169,38.52568,"2,2,4-Trimethylpentane",LB
+37169,0.1744701,Nickel,LB
+37169,1.437548,PM10 Primary (Filt + Cond),TON
+37169,0.08862862,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.03075972,Sulfate Portion of PM2.5-PRI,TON
+37159,79.51262,Xylenes (Mixed Isomers),LB
+37159,211.2973,Carbon Dioxide,TON
+37159,0.004432013,Sulfur Dioxide,TON
+37149,4.426649e-05,PM10 Primary (Filt + Cond),TON
+37149,3.205692e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.008037674,Formaldehyde,LB
+37149,3.171152e-05,Benzo[a]Pyrene,LB
+37149,1.5877834e-05,Benz[a]Anthracene,LB
+37149,0.00013550742,Phenanthrene,LB
+37149,9.140159e-08,Nitrate portion of PM2.5-PRI,TON
+37149,0.007765752,Pyrene,LB
+37149,0.00316208,Benz[a]Anthracene,LB
+37149,4.397348,Benzene,LB
+37149,1.233696,Acetaldehyde,LB
+37149,0.002485426,Methane,TON
+37149,0.002091644,Nitrous Oxide,TON
+37149,0.005296247,Ammonia,TON
+37149,0.003696922,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.01017838,Sulfur Dioxide,TON
+37151,0.007128646,Benzo[b]Fluoranthene,LB
+37151,0.02389072,Benzo[a]Pyrene,LB
+37151,0.003199582,Arsenic,LB
+37147,12.9256,Styrene,LB
+37147,8.71817,Pyrene,LB
+37147,1.9833918,Benz[a]Anthracene,LB
+37147,122.23926,Benzene,LB
+37147,146.1338,Naphthalene,LB
+37147,35.95468,Carbon Monoxide,TON
+37147,0.05659483,Nitrous Oxide,TON
+37147,0.01148859,Nitrate portion of PM2.5-PRI,TON
+37147,133.8964,Nitrogen Oxides,TON
+37147,6.672024,Volatile Organic Compounds,TON
+37147,3547.592,"1,3-Butadiene",LB
+37147,478.8294,Acrolein,LB
+37147,87620.9,Toluene,LB
+37147,0.018506466,Chromium (VI),LB
+37147,6.836276,Benz[a]Anthracene,LB
+37147,138.0188,Phenanthrene,LB
+37147,13.52369,Nitrous Oxide,TON
+37147,0.02948289,Nitrate portion of PM2.5-PRI,TON
+37147,5.137448,Organic Carbon portion of PM2.5-PRI,TON
+37147,4.22574,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.16808514,Pyrene,LB
+37145,0.008266466,Chrysene,LB
+37145,0.0011898856,Benzo[a]Pyrene,LB
+37145,0.006877234,Manganese,LB
+37143,0.00637838,Benzo[b]Fluoranthene,LB
+37143,0.04189726,Chrysene,LB
+37143,0.00465452,Ammonia,TON
+37133,0.2770756,Benzo[a]Pyrene,LB
+37133,0.2783519,PM2.5 Primary (Filt + Cond),TON
+37133,10.71442,Propionaldehyde,LB
+37133,1.1502756,Pyrene,LB
+37133,0.7359774,"Benzo[g,h,i,]Perylene",LB
+37133,0.2017068,Benzo[b]Fluoranthene,LB
+37131,0.365162,Ethyl Benzene,LB
+37131,0.7825876,Toluene,LB
+37131,0.07851446,Fluoranthene,LB
+37131,0.00721464,Benzo[a]Pyrene,LB
+37131,4.008642e-06,Mercury,LB
+37131,0.3602998,Carbon Monoxide,TON
+37131,309.2744,Carbon Dioxide,TON
+37131,0.05226996,PM25-Primary from certain diesel engines,TON
+37131,1.289524,Nitrogen Oxides,TON
+37095,0.085532,Ethyl Benzene,LB
+37095,0.03204924,Styrene,LB
+37095,4.954124e-06,Benzo[k]Fluoranthene,LB
+37095,0.0006135912,Chrysene,LB
+37095,0.02077604,Phenanthrene,LB
+37093,0.0015308658,"Benzo[g,h,i,]Perylene",LB
+37093,0.0005087472,Benzo[k]Fluoranthene,LB
+37093,0.012342628,Benzo[a]Pyrene,LB
+37093,0.002167607,Nitrous Oxide,TON
+37093,0.01899482,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.004249619,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.01879692,PM2.5 Primary (Filt + Cond),TON
+37073,0.05481598,Styrene,LB
+37073,0.12484612,"1,3-Butadiene",LB
+37073,0.2976396,Xylenes (Mixed Isomers),LB
+37073,0.02124158,Acenaphthylene,LB
+37073,0.005544108,Chrysene,LB
+37073,4.066936,Formaldehyde,LB
+37073,0.002030263,Methane,TON
+37001,0.02216016,Pyrene,LB
+37001,0.01050963,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,4.225244,Formaldehyde,LB
+37001,9.65232,"2,2,4-Trimethylpentane",LB
+37001,0.006925108,Manganese,LB
+37001,0.001582072,Arsenic,LB
+37001,322.9141,Carbon Dioxide,TON
+37001,3.439605e-05,Nitrate portion of PM2.5-PRI,TON
+37055,0.1120908,PM10 Primary (Filt + Cond),TON
+37055,0.03522533,Sulfur Dioxide,TON
+37055,0.014197356,Pyrene,LB
+37055,0.007741844,Benzo[b]Fluoranthene,LB
+37055,0.005964266,Chrysene,LB
+37055,0.0003354152,"Dibenzo[a,h]Anthracene",LB
+37055,0.04174638,Phenanthrene,LB
+37033,6.11215e-05,Nickel,LB
+37033,9.355316e-05,Acenaphthene,LB
+37033,0.0006604377,Methane,TON
+37033,0.18886506,Xylenes (Mixed Isomers),LB
+37033,6.94496e-05,Benz[a]Anthracene,LB
+37033,0.0005067475,PM10 Primary (Filt + Cond),TON
+37011,6.794432,Toluene,LB
+37011,0.002090564,Nickel,LB
+37011,0.01817016,Phenanthrene,LB
+37011,0.0003916455,PM2.5 Primary (Filt + Cond),TON
+37011,0.1553732,Hexane,LB
+37011,0.0002772416,Benzo[a]Pyrene,LB
+37011,0.000307465,Manganese,LB
+37173,0.782397,Toluene,LB
+37173,0.996202,Benzene,LB
+37173,3.838824e-05,Mercury,LB
+37173,0.0004786606,Nickel,LB
+37173,3.650644,Acetaldehyde,LB
+37173,0.0003167684,Acenaphthene,LB
+37173,0.4537111,Carbon Monoxide,TON
+37173,0.0004488649,Organic Carbon portion of PM2.5-PRI,TON
+37175,4.983412,Toluene,LB
+37175,2.117356,Xylenes (Mixed Isomers),LB
+37175,1.8699794,"2,2,4-Trimethylpentane",LB
+37155,7.32733e-05,Mercury,LB
+37155,0.0005536036,Acenaphthene,LB
+37155,0.001451446,Nitrous Oxide,TON
+37155,0.002422551,PM2.5 Primary (Filt + Cond),TON
+37155,0.0008857434,Benzo[k]Fluoranthene,LB
+37155,0.6129094,"2,2,4-Trimethylpentane",LB
+37149,0.8504788,Ethyl Benzene,LB
+37139,0.9317182,Hexane,LB
+37139,0.8338008,Benzene,LB
+37119,0.4010574,Styrene,LB
+37119,0.013449812,Anthracene,LB
+37119,0.02919508,Pyrene,LB
+37119,0.0419165,Benzo[a]Pyrene,LB
+37119,0.04525794,Arsenic,LB
+37119,0.1385574,Methane,TON
+37119,3630.804,Carbon Dioxide,TON
+37087,0.0007901684,Anthracene,LB
+37087,0.003346818,Manganese,LB
+37087,166.7917,Carbon Dioxide,TON
+37007,8.775844,Carbon Monoxide,TON
+37007,0.7455651,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.002542061,Nitrate portion of PM2.5-PRI,TON
+37007,0.238276,Organic Carbon portion of PM2.5-PRI,TON
+37007,1.936464,PM10 Primary (Filt + Cond),TON
+37007,0.0059763,"Dibenzo[a,h]Anthracene",LB
+37007,8.221764,"2,2,4-Trimethylpentane",LB
+37007,25.59276,Toluene,LB
+37007,2.064224,Pyrene,LB
+37177,4.239654,Acrolein,LB
+37177,0.17134056,Anthracene,LB
+37177,0.0606341,Chrysene,LB
+37177,0.0005351164,Nitrate portion of PM2.5-PRI,TON
+37177,6.508413,Nitrogen Oxides,TON
+37175,30.25468,Ethyl Benzene,LB
+37175,0.8878188,Propionaldehyde,LB
+37175,111.90298,Xylenes (Mixed Isomers),LB
+37175,0.0014228374,Nickel,LB
+37175,17.83366,Carbon Monoxide,TON
+37175,458.0315,Carbon Dioxide,TON
+37175,0.0003803369,Sulfate Portion of PM2.5-PRI,TON
+37165,21.86788,"2,2,4-Trimethylpentane",LB
+37163,1.2514048,Phenanthrene,LB
+37163,1076.867,Carbon Dioxide,TON
+37163,6.87254,Toluene,LB
+37163,0.003347538,"Benzo[g,h,i,]Perylene",LB
+37163,0.003399934,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.01335574,Benzo[b]Fluoranthene,LB
+37161,0.13324432,Styrene,LB
+37161,0.2308522,Hexane,LB
+37161,0.01251074,Chrysene,LB
+37161,0.000616015,Sulfate Portion of PM2.5-PRI,TON
+37159,264.4462,Acetaldehyde,LB
+37159,3.467454,Fluorene,LB
+37159,66.68666,Naphthalene,LB
+37159,0.1307516,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.7095418,PM2.5 Primary (Filt + Cond),TON
+37159,0.06378306,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.02417937,Sulfate Portion of PM2.5-PRI,TON
+37159,8.603416,Styrene,LB
+37159,47.93494,Acrolein,LB
+37159,0.009710438,"Benzo[g,h,i,]Perylene",LB
+37159,15.374792,"2,2,4-Trimethylpentane",LB
+37155,11.778712,Styrene,LB
+37155,48.73116,Xylenes (Mixed Isomers),LB
+37155,0.03939928,Arsenic,LB
+37155,4.016267,PM10-Primary from certain diesel engines,TON
+37159,829.4104,Acetaldehyde,LB
+37159,2.41377,Ammonia,TON
+37159,11.119644,Acenaphthylene,LB
+37159,8051.474,Toluene,LB
+37159,1859.5892,Hexane,LB
+37159,4.067906,Pyrene,LB
+37159,5.577676,Benzo[k]Fluoranthene,LB
+37159,5.03382,Chrysene,LB
+37159,5.32906,Benz[a]Anthracene,LB
+37159,78.0916,Phenanthrene,LB
+37153,0.9934046,Acrolein,LB
+37153,2.645504e-05,Chromium (VI),LB
+37153,0.0205183,Benz[a]Anthracene,LB
+37153,0.00330684,Nickel,LB
+37153,16.26596,Acetaldehyde,LB
+37153,0.10593944,Fluorene,LB
+37147,31.22844,Naphthalene,LB
+37147,0.003849692,Nitrate portion of PM2.5-PRI,TON
+37147,9.075596,"1,3-Butadiene",LB
+37147,14.962476,Propionaldehyde,LB
+37139,153.31876,Propionaldehyde,LB
+37139,0.5100744,Nickel,LB
+37137,1089.1772,Hexane,LB
+37137,0.3898374,Benzo[a]Pyrene,LB
+37137,939.5218,"2,2,4-Trimethylpentane",LB
+37137,1055.4506,Benzene,LB
+37137,0.1422322,Nickel,LB
+37137,5.354064,Phenanthrene,LB
+37133,0.010155536,Arsenic,LB
+37133,0.7508264,Acenaphthene,LB
+37133,24.97292,Naphthalene,LB
+37133,0.006657327,Nitrous Oxide,TON
+37133,0.1257754,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.7810182,PM10 Primary (Filt + Cond),TON
+37133,0.006226544,"Benzo[g,h,i,]Perylene",LB
+37133,1.329278,Fluoranthene,LB
+37133,0.18447642,Chrysene,LB
+37133,0.3333934,Benz[a]Anthracene,LB
+37131,194.32792,Ethyl Benzene,LB
+37131,714.9228,Xylenes (Mixed Isomers),LB
+37131,0.362434,"Benzo[g,h,i,]Perylene",LB
+37131,0.0657111,Manganese,LB
+37131,0.03361554,Nickel,LB
+37131,112.92444,Acetaldehyde,LB
+37131,0.0004158953,Nitrate portion of PM2.5-PRI,TON
+37123,0.0008319742,Naphthalene,LB
+37123,0.0002418172,Fluoranthene,LB
+37117,8.98569,Ethyl Benzene,LB
+37117,6.848348,"1,3-Butadiene",LB
+37117,0.00013699506,Chromium (VI),LB
+37117,0.0378302,Arsenic,LB
+37117,1.4859216,Fluorene,LB
+37117,0.2235985,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.1170025,Sulfur Dioxide,TON
+37111,0.357165,Fluorene,LB
+37111,0.1520874,PM2.5 Primary (Filt + Cond),TON
+37111,3.660312,Xylenes (Mixed Isomers),LB
+37111,0.07803724,Chrysene,LB
+37111,0.11509308,Acrolein,LB
+37111,1.8347996,Acetaldehyde,LB
+37111,0.00612934,Acenaphthene,LB
+37111,0.012415778,Fluorene,LB
+37111,170.515,Carbon Dioxide,TON
+37111,0.007287426,Ammonia,TON
+37111,0.008488223,PM2.5 Primary (Filt + Cond),TON
+37111,0.002548314,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,73.72918,Fluoranthene,LB
+37119,50.14866,PM2.5 Primary (Filt + Cond),TON
+37119,1653.5156,Acrolein,LB
+37119,48.1755,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,26.95984,Chrysene,LB
+37119,80639.2,Benzene,LB
+37119,1.6662776,Mercury,LB
+37019,0.0003166984,Styrene,LB
+37019,0.009660874,Hexane,LB
+37019,3.417976e-06,Sulfur Dioxide,TON
+37019,0.000218731,Volatile Organic Compounds,TON
+37019,3.193566e-07,Nickel,LB
+37017,6196.613,Carbon Dioxide,TON
+37017,67.4288,"1,3-Butadiene",LB
+37017,0.1514716,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.1210426,Benzo[k]Fluoranthene,LB
+37195,104.36024,Benzene,LB
+37195,0.1492857,Manganese,LB
+37195,0.2726155,Ammonia,TON
+37195,16.07409,Styrene,LB
+37195,0.0002982584,Chromium (VI),LB
+37187,4.661938,"1,3-Butadiene",LB
+37187,6.42733,Hexane,LB
+37187,0.018938538,Benzo[b]Fluoranthene,LB
+37187,0.01984504,Arsenic,LB
+37187,0.9683864,Fluorene,LB
+37187,0.3653863,Methane,TON
+37187,0.001406886,Nitrate portion of PM2.5-PRI,TON
+37167,194.93134,Acrolein,LB
+37167,60.19112,Hexane,LB
+37167,0.0005206684,Chromium (VI),LB
+37167,0.008719426,Benzo[k]Fluoranthene,LB
+37167,0.314396,Nickel,LB
+37167,8.40711,Acenaphthene,LB
+37167,14.2802,Fluorene,LB
+37161,0.3421742,Acenaphthene,LB
+37161,12.34914,Naphthalene,LB
+37161,0.01827036,PM10-Primary from certain diesel engines,TON
+37161,0.0001287827,Nitrate portion of PM2.5-PRI,TON
+37161,0.006578038,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,8.78058,Acrolein,LB
+37161,0.000367292,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,3.070438,"2,2,4-Trimethylpentane",LB
+37157,0.57879,Fluoranthene,LB
+37157,0.1165844,Benz[a]Anthracene,LB
+37157,20.52596,Naphthalene,LB
+37135,6.01378,"1,3-Butadiene",LB
+37135,1.4014492,Pyrene,LB
+37135,17.282564,Benzene,LB
+37135,0.0698254,Manganese,LB
+37135,14.29261,Nitrogen Oxides,TON
+37135,0.02123267,Sulfur Dioxide,TON
+37137,0.002378438,Ammonia,TON
+37137,8.801802e-05,Nitrate portion of PM2.5-PRI,TON
+37137,0.2555535,Nitrogen Oxides,TON
+37137,0.003186743,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.16810292,Hexane,LB
+37137,0.5314878,Xylenes (Mixed Isomers),LB
+37137,2.139186e-06,Chromium (VI),LB
+37137,0.0014982872,Benzo[b]Fluoranthene,LB
+37137,6.697366,Formaldehyde,LB
+37137,0.001014364,Nickel,LB
+37137,2.821456,Acetaldehyde,LB
+37137,0.004133241,Methane,TON
+37131,8.413428e-05,Acenaphthene,LB
+37131,0.000399033,Phenanthrene,LB
+37131,0.183641,Methane,TON
+37131,0.0009228212,Ammonia,TON
+37131,0.0001843074,Sulfur Dioxide,TON
+37129,0.1380881,Nitrous Oxide,TON
+37129,604.0778,Toluene,LB
+37129,162.74624,Hexane,LB
+37129,0.15781404,Anthracene,LB
+37129,0.04113414,Benzo[b]Fluoranthene,LB
+37129,0.04113414,Benzo[k]Fluoranthene,LB
+37123,8.496566,"1,3-Butadiene",LB
+37123,0.8809212,Anthracene,LB
+37123,2.358286,Pyrene,LB
+37123,0.0001274036,Chromium (VI),LB
+37123,292.0452,Formaldehyde,LB
+37123,0.02887868,Arsenic,LB
+37123,0.857691,Acenaphthene,LB
+37123,1.7908482,Fluorene,LB
+37123,0.152748,Ammonia,TON
+37117,10.802384,Xylenes (Mixed Isomers),LB
+37117,4.865114e-05,Chromium (VI),LB
+37117,1.5499354,Fluoranthene,LB
+37117,1.0730598,Acenaphthylene,LB
+37117,0.06146384,Manganese,LB
+37117,0.09545083,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,1650.1998,"2,2,4-Trimethylpentane",LB
+37105,0.009417939,Nitrate portion of PM2.5-PRI,TON
+37105,1.6901,Organic Carbon portion of PM2.5-PRI,TON
+37105,4.11719,Anthracene,LB
+37105,8.100092,Pyrene,LB
+37105,7.107034,Fluoranthene,LB
+37105,1.6494514,Chrysene,LB
+37105,0.670848,Elemental Carbon portion of PM2.5-PRI,TON
+37103,14.586632,Ethyl Benzene,LB
+37103,2.455466,Pyrene,LB
+37103,0.002971362,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.15145138,Chrysene,LB
+37103,435.7474,Formaldehyde,LB
+37103,0.02193202,Arsenic,LB
+37103,3.953008,Phenanthrene,LB
+37103,0.331585,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.01344787,Sulfate Portion of PM2.5-PRI,TON
+37095,1.709298e-05,Nitrous Oxide,TON
+37095,1.129109e-05,PM10 Primary (Filt + Cond),TON
+37095,0.00376672,"1,3-Butadiene",LB
+37095,0.10429902,Toluene,LB
+37095,2.171662e-05,Anthracene,LB
+37095,3.68772e-05,Fluoranthene,LB
+37095,8.185464e-07,Manganese,LB
+37095,1.716812e-07,Nickel,LB
+37095,5.16993e-05,Fluorene,LB
+37093,2.561568,Hexane,LB
+37093,0.002219786,"Benzo[g,h,i,]Perylene",LB
+37093,0.0006668042,Benzo[b]Fluoranthene,LB
+37093,0.005387296,Fluorene,LB
+37093,0.0002213844,Elemental Carbon portion of PM2.5-PRI,TON
+37093,3.258577e-06,Nitrate portion of PM2.5-PRI,TON
+37087,1.9208848,Hexane,LB
+37087,0.003636504,"Benzo[g,h,i,]Perylene",LB
+37087,0.002514256,Benzo[k]Fluoranthene,LB
+37087,0.00250863,"Dibenzo[a,h]Anthracene",LB
+37087,0.204676,PM25-Primary from certain diesel engines,TON
+37087,3.375921,Nitrogen Oxides,TON
+37087,0.08721914,Organic Carbon portion of PM2.5-PRI,TON
+37083,11.829162,Ethyl Benzene,LB
+37083,28.72502,Acrolein,LB
+37083,8.876712,Hexane,LB
+37083,0.011167486,Benzo[k]Fluoranthene,LB
+37083,10.32797,Carbon Monoxide,TON
+37083,0.303449,Acenaphthylene,LB
+37083,0.0004055762,Mercury,LB
+37083,0.04768958,Methane,TON
+37085,0.02187668,"2,2,4-Trimethylpentane",LB
+37085,3.783814e-06,Nickel,LB
+37085,8.42499e-05,Fluorene,LB
+37085,0.002163018,Naphthalene,LB
+37085,2.002594e-05,Nitrous Oxide,TON
+37085,1.230406e-07,Nitrate portion of PM2.5-PRI,TON
+37075,9.57064e-06,Chromium (VI),LB
+37075,0.00013277892,Benzo[k]Fluoranthene,LB
+37075,0.00013191228,"Dibenzo[a,h]Anthracene",LB
+37075,2.990508,Acrolein,LB
+37075,0.008273907,Ammonia,TON
+37075,0.03625678,PM2.5 Primary (Filt + Cond),TON
+37075,0.00204193,Sulfur Dioxide,TON
+37075,3.868906e-06,Chromium (VI),LB
+37075,0.002043108,Nickel,LB
+37075,0.02608022,Acenaphthene,LB
+37075,0.07348814,Phenanthrene,LB
+37075,0.6788817,Carbon Monoxide,TON
+37075,8.01357e-05,Nitrous Oxide,TON
+37075,0.003937272,PM10 Primary (Filt + Cond),TON
+37069,0.18893144,Benzo[a]Pyrene,LB
+37069,0.06352866,Ammonia,TON
+37069,0.003268801,Nitrate portion of PM2.5-PRI,TON
+37069,21.63561,Nitrogen Oxides,TON
+37067,11.19804,Volatile Organic Compounds,TON
+37053,0.001451952,Methane,TON
+37053,0.004782138,Organic Carbon portion of PM2.5-PRI,TON
+37053,1.0055344e-06,Chromium (VI),LB
+37053,0.0010243196,Benzo[b]Fluoranthene,LB
+37053,0.003435894,Benzo[a]Pyrene,LB
+37053,0.4700328,Benzene,LB
+37153,0.4279904,Volatile Organic Compounds,TON
+37153,0.0004018578,Mercury,LB
+37113,0.0250657,"Benzo[g,h,i,]Perylene",LB
+37113,0.003901506,Nickel,LB
+37113,0.03425924,Phenanthrene,LB
+37097,54.40192,Toluene,LB
+37083,16.288422,Formaldehyde,LB
+37083,0.015047246,Benzo[a]Pyrene,LB
+37083,19.984134,Benzene,LB
+37083,0.3901306,Naphthalene,LB
+37083,0.0005493798,Sulfate Portion of PM2.5-PRI,TON
+37169,0.2065316,Anthracene,LB
+37169,0.008554687,Ammonia,TON
+37169,0.03875703,PM10 Primary (Filt + Cond),TON
+37169,0.004075169,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,7.300032,Xylenes (Mixed Isomers),LB
+37169,0.4333468,Acenaphthylene,LB
+37169,415.8308,Carbon Dioxide,TON
+37157,0.010915952,Nickel,LB
+37157,0.1781482,PM10-Primary from certain diesel engines,TON
+37157,0.5030582,Volatile Organic Compounds,TON
+37145,1736.4158,"1,3-Butadiene",LB
+37145,250.1934,Propionaldehyde,LB
+37145,20.07548,Pyrene,LB
+37145,3.154348,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,2.736348,Benzo[b]Fluoranthene,LB
+37145,0.07244464,"Dibenzo[a,h]Anthracene",LB
+37145,4164.78,Acetaldehyde,LB
+37145,283.2646,Nitrogen Oxides,TON
+37199,0.7331614,Styrene,LB
+37199,8.340146e-06,Chromium (VI),LB
+37199,6.185024e-06,Mercury,LB
+37199,23.30938,Acetaldehyde,LB
+37199,270.2495,Carbon Dioxide,TON
+37199,0.04557597,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.01865122,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.003324777,Sulfur Dioxide,TON
+37193,1.744857,Formaldehyde,LB
+37193,4.753474e-05,"Dibenzo[a,h]Anthracene",LB
+37193,0.0009568174,Benz[a]Anthracene,LB
+37193,0.002922048,Manganese,LB
+37193,0.007834503,Methane,TON
+37193,140.5177,Carbon Dioxide,TON
+37193,0.0005694378,Elemental Carbon portion of PM2.5-PRI,TON
+37193,9.060522e-05,Sulfate Portion of PM2.5-PRI,TON
+37193,1.5654384,Phenanthrene,LB
+37193,0.998437,Fluorene,LB
+37193,0.06500993,Methane,TON
+37193,1059.613,Carbon Dioxide,TON
+37193,0.01433128,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.9704308,Pyrene,LB
+37193,0.0008095286,"Dibenzo[a,h]Anthracene",LB
+37193,0.0418209,Pyrene,LB
+37193,75.61658,Xylenes (Mixed Isomers),LB
+37193,0.02454181,PM10 Primary (Filt + Cond),TON
+37193,0.003143275,Sulfur Dioxide,TON
+37185,0.0008932766,Benz[a]Anthracene,LB
+37185,3.944191e-06,Nitrate portion of PM2.5-PRI,TON
+37185,0.001385254,PM2.5 Primary (Filt + Cond),TON
+37189,4.812548,Styrene,LB
+37189,1.2355898,Anthracene,LB
+37189,1.50539,PM2.5 Primary (Filt + Cond),TON
+37181,115.26062,Acrolein,LB
+37181,23217.06,Toluene,LB
+37181,14006,Xylenes (Mixed Isomers),LB
+37181,0.06477752,"Dibenzo[a,h]Anthracene",LB
+37181,5062.838,"2,2,4-Trimethylpentane",LB
+37181,3.388234,PM2.5 Primary (Filt + Cond),TON
+37181,1.852,Sulfur Dioxide,TON
+37077,6.449338,"2,2,4-Trimethylpentane",LB
+37051,0.15624692,"1,3-Butadiene",LB
+37051,0.12959122,Acrolein,LB
+37051,0.008686372,Sulfur Dioxide,TON
+37041,0.003353742,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.003481788,Fluoranthene,LB
+37041,0.009762732,Acenaphthylene,LB
+37041,0.003314538,Benzo[a]Pyrene,LB
+37041,2.205624,"2,2,4-Trimethylpentane",LB
+37041,0.0001184689,Mercury,LB
+37031,0.0010830378,Fluoranthene,LB
+37031,1.1991006,Formaldehyde,LB
+37031,1.8165184,Benzene,LB
+37031,6.15396e-05,Mercury,LB
+37031,0.0007673038,Nickel,LB
+37031,0.0006223826,Acenaphthene,LB
+37031,0.0003922366,Elemental Carbon portion of PM2.5-PRI,TON
+37031,7.769615e-05,Sulfate Portion of PM2.5-PRI,TON
+37031,24.54442,Toluene,LB
+37097,0.002624512,Chrysene,LB
+37097,0.006731026,Benzo[a]Pyrene,LB
+37097,0.007478046,Arsenic,LB
+37089,11.7301,Carbon Monoxide,TON
+37089,0.01450331,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.9999056,Acrolein,LB
+37089,0.01919789,Pyrene,LB
+37089,0.016970596,Fluoranthene,LB
+37089,0.011602144,Benzo[k]Fluoranthene,LB
+37089,0.04497154,Acenaphthylene,LB
+37087,20.4766,Toluene,LB
+37169,21.13524,Benzene,LB
+37169,1.3686124,Fluorene,LB
+37169,0.8952383,PM25-Primary from certain diesel engines,TON
+37169,0.0596463,Sulfate Portion of PM2.5-PRI,TON
+37165,21.73004,Ethyl Benzene,LB
+37165,122.7317,Toluene,LB
+37165,0.01457996,Chrysene,LB
+37165,0.0750183,Fluorene,LB
+37165,17.62982,Carbon Monoxide,TON
+37165,0.01594603,Organic Carbon portion of PM2.5-PRI,TON
+37163,0.000301862,"Dibenzo[a,h]Anthracene",LB
+37163,1.0054382,Benzene,LB
+37163,0.0014800302,Nickel,LB
+37163,0.0004688098,Arsenic,LB
+37163,4.643222,Acetaldehyde,LB
+37163,0.002235107,Ammonia,TON
+37163,0.01036845,Organic Carbon portion of PM2.5-PRI,TON
+37163,0.0009080175,Sulfur Dioxide,TON
+37155,154.8485,Xylenes (Mixed Isomers),LB
+37155,123.42306,"2,2,4-Trimethylpentane",LB
+37157,6.325772,Ethyl Benzene,LB
+37157,4.804286,Hexane,LB
+37157,13.434082,Xylenes (Mixed Isomers),LB
+37157,0.000890512,Benzo[k]Fluoranthene,LB
+37157,191.22252,Formaldehyde,LB
+37157,0.14530584,Benz[a]Anthracene,LB
+37157,17.802624,Benzene,LB
+37157,0.02730124,Nickel,LB
+37157,1.0601776,Fluorene,LB
+37157,0.1993934,PM2.5 Primary (Filt + Cond),TON
+37157,0.006795343,Sulfate Portion of PM2.5-PRI,TON
+37157,2.017136,PM10-Primary from certain diesel engines,TON
+37157,44.95449,Nitrogen Oxides,TON
+37157,0.1435079,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.05395289,Sulfate Portion of PM2.5-PRI,TON
+37157,6.647598,Anthracene,LB
+37157,139.5243,Xylenes (Mixed Isomers),LB
+37157,0.000514249,Chromium (VI),LB
+37157,0.015225792,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,56.49288,"2,2,4-Trimethylpentane",LB
+37157,224.308,Benzene,LB
+37157,2.217688,Styrene,LB
+37157,1.8443008,Acrolein,LB
+37157,382.9158,Toluene,LB
+37157,91.76682,Hexane,LB
+37157,233.4478,Xylenes (Mixed Isomers),LB
+37157,0.0421674,Benzo[a]Pyrene,LB
+37157,83.67896,"2,2,4-Trimethylpentane",LB
+37157,0.006611716,Arsenic,LB
+37157,40.34438,Carbon Monoxide,TON
+37157,0.01040964,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.02311536,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.01599169,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.02266716,Manganese,LB
+37147,901.6376,Carbon Dioxide,TON
+37147,0.1489978,PM10-Primary from certain diesel engines,TON
+37147,0.1370778,PM25-Primary from certain diesel engines,TON
+37135,0.00952643,Arsenic,LB
+37135,1941.599,Carbon Dioxide,TON
+37135,0.1242867,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.01673101,Sulfate Portion of PM2.5-PRI,TON
+37135,8.234528,"1,3-Butadiene",LB
+37135,0.2047646,Benzo[a]Pyrene,LB
+37119,33.50672,Benzo[k]Fluoranthene,LB
+37119,106342.42,Benzene,LB
+37119,24.73124,Arsenic,LB
+37119,549.6278,Phenanthrene,LB
+37119,31.04166,Organic Carbon portion of PM2.5-PRI,TON
+37117,8.117873e-05,Methane,TON
+37117,0.04739617,Carbon Monoxide,TON
+37117,1.875319,Carbon Dioxide,TON
+37117,0.001985773,Volatile Organic Compounds,TON
+37117,0.002180046,Acrolein,LB
+37117,0.002202958,Propionaldehyde,LB
+37117,2.898466e-08,Chromium (VI),LB
+37117,3.845964e-05,Benzo[k]Fluoranthene,LB
+37117,0.000522369,Acenaphthylene,LB
+37117,1.2908754e-06,"Dibenzo[a,h]Anthracene",LB
+37117,0.08168924,"2,2,4-Trimethylpentane",LB
+37107,0.4480384,Styrene,LB
+37107,2.760838,Xylenes (Mixed Isomers),LB
+37107,0.02754514,Benzo[a]Pyrene,LB
+37107,0.012745272,Manganese,LB
+37107,1.1327836e-05,Mercury,LB
+37107,0.01190358,Ammonia,TON
+37107,0.1900868,Volatile Organic Compounds,TON
+37097,0.019439926,Benzo[a]Pyrene,LB
+37097,0.0004482108,"Dibenzo[a,h]Anthracene",LB
+37097,0.003391882,Elemental Carbon portion of PM2.5-PRI,TON
+37097,1.180763,Nitrogen Oxides,TON
+37097,0.0006720116,Sulfate Portion of PM2.5-PRI,TON
+37085,0.0351517,Benz[a]Anthracene,LB
+37085,6.680194,Acetaldehyde,LB
+37085,0.10810418,Fluorene,LB
+37085,1.687107,Naphthalene,LB
+37085,0.03765996,PM10-Primary from certain diesel engines,TON
+37143,1.6598352,Fluoranthene,LB
+37143,323.8548,Formaldehyde,LB
+37143,0.184333,Nickel,LB
+37143,1.1288318,Acenaphthene,LB
+37143,58.62476,Naphthalene,LB
+37143,0.6024825,Methane,TON
+37137,0.02860888,"1,3-Butadiene",LB
+37137,8.940262e-05,Chrysene,LB
+37137,1.3427326e-05,Manganese,LB
+37133,21.46534,"1,3-Butadiene",LB
+37133,0.0004601682,Mercury,LB
+37133,24.52835,Carbon Monoxide,TON
+37133,0.5247199,Ammonia,TON
+37133,3.28086,PM2.5 Primary (Filt + Cond),TON
+37133,4.218348,Volatile Organic Compounds,TON
+37127,211.753,Xylenes (Mixed Isomers),LB
+37127,0.03904074,Benzo[k]Fluoranthene,LB
+37127,0.03464666,Chrysene,LB
+37127,0.001423293,"Dibenzo[a,h]Anthracene",LB
+37127,0.03692028,Benz[a]Anthracene,LB
+37127,4.824208,Naphthalene,LB
+37127,0.01239654,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.0001971437,Nitrate portion of PM2.5-PRI,TON
+37127,0.002143226,Sulfate Portion of PM2.5-PRI,TON
+37117,3.060522,Styrene,LB
+37117,1.192013,Acenaphthylene,LB
+37117,0.2746056,Chrysene,LB
+37117,6.370466,"2,2,4-Trimethylpentane",LB
+37117,0.09006734,Manganese,LB
+37117,102.07868,Acetaldehyde,LB
+37117,25.61058,Naphthalene,LB
+37117,26.77669,Nitrogen Oxides,TON
+37115,0.8104692,Styrene,LB
+37115,0.000756487,"Dibenzo[a,h]Anthracene",LB
+37115,5.031878,Benzene,LB
+37115,0.1123746,PM25-Primary from certain diesel engines,TON
+37115,0.004030843,Sulfur Dioxide,TON
+37115,0.316303,Volatile Organic Compounds,TON
+37097,57.18544,Ethyl Benzene,LB
+37097,150.87588,Toluene,LB
+37097,4.918784,Anthracene,LB
+37097,0.16805846,Arsenic,LB
+37097,4.504086,Acenaphthene,LB
+37097,1.590858,Methane,TON
+37097,48.34021,Carbon Monoxide,TON
+37105,1888.3788,Toluene,LB
+37105,0.4880884,Anthracene,LB
+37105,0.834879,Fluoranthene,LB
+37105,0.05918998,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.0007847793,Nitrate portion of PM2.5-PRI,TON
+37105,0.3125198,PM2.5 Primary (Filt + Cond),TON
+37105,0.008396304,Sulfate Portion of PM2.5-PRI,TON
+37073,0.2925854,Ethyl Benzene,LB
+37073,0.0002975978,"Dibenzo[a,h]Anthracene",LB
+37073,0.8164994,Benzene,LB
+37073,3.794462,Acetaldehyde,LB
+37073,0.9545232,Naphthalene,LB
+37073,91.6552,Carbon Dioxide,TON
+37073,0.0002585375,Nitrous Oxide,TON
+37073,0.0333603,PM10 Primary (Filt + Cond),TON
+37073,0.0009406837,Sulfate Portion of PM2.5-PRI,TON
+37073,0.04943138,Volatile Organic Compounds,TON
+37073,0.03456164,Anthracene,LB
+37073,7.18062e-06,Chromium (VI),LB
+37073,2.510192e-05,Benzo[k]Fluoranthene,LB
+37073,0.003792076,Nickel,LB
+37077,46.13444,Xylenes (Mixed Isomers),LB
+37077,227.131,Acetaldehyde,LB
+37077,56.8483,Naphthalene,LB
+37077,2.273483,PM25-Primary from certain diesel engines,TON
+37077,0.1903341,Sulfur Dioxide,TON
+37053,0.3113078,Fluorene,LB
+37053,0.1111679,PM10-Primary from certain diesel engines,TON
+37053,0.06461838,Elemental Carbon portion of PM2.5-PRI,TON
+37053,1.6134454,"1,3-Butadiene",LB
+37053,2.969626,Xylenes (Mixed Isomers),LB
+37061,6.170146,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,120.80856,Benzene,LB
+37049,0.04176264,Manganese,LB
+37049,0.08580679,Methane,TON
+37049,0.08928319,Nitrous Oxide,TON
+37049,0.03229497,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.2155762,PM10 Primary (Filt + Cond),TON
+37049,0.05049025,Sulfur Dioxide,TON
+37047,24.36858,Ethyl Benzene,LB
+37047,54.20348,Xylenes (Mixed Isomers),LB
+37047,0.16212612,Benzo[b]Fluoranthene,LB
+37047,18.94935,"2,2,4-Trimethylpentane",LB
+37047,68.0988,Benzene,LB
+37047,316.2764,Acetaldehyde,LB
+37047,8.873666,Phenanthrene,LB
+37047,79.58156,Naphthalene,LB
+37047,1.939247,PM25-Primary from certain diesel engines,TON
+37047,0.8331377,Elemental Carbon portion of PM2.5-PRI,TON
+37047,2.809577,PM10 Primary (Filt + Cond),TON
+37047,0.08251051,Sulfur Dioxide,TON
+37039,0.05053136,Volatile Organic Compounds,TON
+37039,0.1937438,Toluene,LB
+37039,8.7416e-05,Chrysene,LB
+37039,0.1568531,Benzene,LB
+37039,4.933654,Acetaldehyde,LB
+37039,0.0004106086,Fluorene,LB
+37043,0.2701238,Chrysene,LB
+37043,791.7392,"2,2,4-Trimethylpentane",LB
+37043,0.2802914,Benz[a]Anthracene,LB
+37043,328.5422,Acetaldehyde,LB
+37043,177.8296,Carbon Monoxide,TON
+37043,0.00122531,Nitrate portion of PM2.5-PRI,TON
+37043,0.01154159,Sulfate Portion of PM2.5-PRI,TON
+37033,0.02029034,Ethyl Benzene,LB
+37033,0.0223804,"1,3-Butadiene",LB
+37033,0.0003212542,Fluoranthene,LB
+37033,0.0004519942,Acenaphthylene,LB
+37033,1.104328e-05,Mercury,LB
+37033,0.0002111384,Arsenic,LB
+37033,0.000974308,Phenanthrene,LB
+37033,0.0005324993,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.05342755,Volatile Organic Compounds,TON
+37033,0.000676188,"Dibenzo[a,h]Anthracene",LB
+37033,0.2486202,Phenanthrene,LB
+37033,186.2704,Carbon Dioxide,TON
+37033,0.0002857739,Nitrate portion of PM2.5-PRI,TON
+37033,0.07502298,PM10 Primary (Filt + Cond),TON
+37029,3.029642,"1,3-Butadiene",LB
+37029,104.41678,Formaldehyde,LB
+37029,0.03176178,Manganese,LB
+37029,0.2389583,PM25-Primary from certain diesel engines,TON
+37029,0.3652142,PM10 Primary (Filt + Cond),TON
+37029,0.01069634,Sulfur Dioxide,TON
+37027,269.8592,Xylenes (Mixed Isomers),LB
+37027,0.0002185588,Mercury,LB
+37027,0.00272542,Nickel,LB
+37027,0.01426193,Organic Carbon portion of PM2.5-PRI,TON
+37129,10.647024,Anthracene,LB
+37129,20.8453,Pyrene,LB
+37129,4.115936,Benzo[b]Fluoranthene,LB
+37129,13516.058,Benzene,LB
+37129,320552.9,Carbon Dioxide,TON
+37129,1.656255,Elemental Carbon portion of PM2.5-PRI,TON
+37129,21.34284,Ammonia,TON
+37021,0.3731682,Phenanthrene,LB
+37021,0.2212012,Fluorene,LB
+37021,0.07035268,PM25-Primary from certain diesel engines,TON
+37021,0.00440494,Ammonia,TON
+37021,0.09340928,PM10 Primary (Filt + Cond),TON
+37055,0.01552322,Nitrous Oxide,TON
+37055,0.004002694,Ammonia,TON
+37055,3.62823e-06,Nitrate portion of PM2.5-PRI,TON
+37055,1.9411152,Propionaldehyde,LB
+37055,0.000744857,Pyrene,LB
+37151,22653.74,Ethyl Benzene,LB
+37151,689.779,Acrolein,LB
+37151,28688.5,Hexane,LB
+37151,13.23684,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,10.126808,Benzo[b]Fluoranthene,LB
+37151,10.299054,Benz[a]Anthracene,LB
+37151,37.66816,Acenaphthene,LB
+37151,29.25956,Ammonia,TON
+37139,1.0523866,Pyrene,LB
+37139,0.19061722,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.16108456,Benz[a]Anthracene,LB
+37139,3.450666,Phenanthrene,LB
+37139,0.0522688,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.0006200458,Nitrate portion of PM2.5-PRI,TON
+37101,0.69663,Styrene,LB
+37101,0.0284636,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.016654512,Benzo[b]Fluoranthene,LB
+37101,9.681248,Formaldehyde,LB
+37101,0.015239654,Benz[a]Anthracene,LB
+37101,8.519532e-05,Nitrate portion of PM2.5-PRI,TON
+37117,0.11920642,Benzo[b]Fluoranthene,LB
+37117,144.3089,Formaldehyde,LB
+37117,0.12238494,Benz[a]Anthracene,LB
+37117,0.2966163,Methane,TON
+37117,106.1535,Carbon Monoxide,TON
+37117,0.4191632,Ammonia,TON
+37117,0.0859774,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.459016,PM10 Primary (Filt + Cond),TON
+37189,0.350833,Ethyl Benzene,LB
+37189,1.3719222,Toluene,LB
+37189,0.5228464,Hexane,LB
+37189,0.000571019,Anthracene,LB
+37189,0.003437892,"Benzo[g,h,i,]Perylene",LB
+37189,0.001409583,Nitrous Oxide,TON
+37189,5.542547e-05,Sulfate Portion of PM2.5-PRI,TON
+37189,0.03967132,Volatile Organic Compounds,TON
+37185,1.8865266,Ethyl Benzene,LB
+37185,0.8372782,Styrene,LB
+37185,0.00260523,"Benzo[g,h,i,]Perylene",LB
+37185,0.0017282996,Benzo[k]Fluoranthene,LB
+37185,0.007474034,Nickel,LB
+37185,24.80726,Acetaldehyde,LB
+37185,1.72732,Carbon Monoxide,TON
+37185,0.1552762,PM25-Primary from certain diesel engines,TON
+37185,0.1989645,PM10 Primary (Filt + Cond),TON
+37185,0.1591901,PM2.5 Primary (Filt + Cond),TON
+37185,0.003486007,Sulfur Dioxide,TON
+37185,0.00293972,Sulfate Portion of PM2.5-PRI,TON
+37169,0.06385162,PM25-Primary from certain diesel engines,TON
+37169,0.04638918,Elemental Carbon portion of PM2.5-PRI,TON
+37169,1.408964,Nitrogen Oxides,TON
+37169,0.01173543,Organic Carbon portion of PM2.5-PRI,TON
+37169,6.013748,Acrolein,LB
+37169,0.3991148,Pyrene,LB
+37169,5.76801,Xylenes (Mixed Isomers),LB
+37169,0.0005608054,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.05442516,Benz[a]Anthracene,LB
+37127,3392.918,Toluene,LB
+37127,0.16074026,Benzo[b]Fluoranthene,LB
+37127,2.640666,Phenanthrene,LB
+37127,0.1292853,Organic Carbon portion of PM2.5-PRI,TON
+37127,14.84675,Volatile Organic Compounds,TON
+37133,0.09258566,Benzene,LB
+37133,4.514084,Acetaldehyde,LB
+37133,0.001015397,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.0001458001,Sulfate Portion of PM2.5-PRI,TON
+37133,0.18644176,Propionaldehyde,LB
+37133,1.8921906,Pyrene,LB
+37133,1164.352,Benzene,LB
+37133,0.01531912,Sulfate Portion of PM2.5-PRI,TON
+37127,11.536678,Ethyl Benzene,LB
+37127,4.689822,Styrene,LB
+37127,26.91906,Acrolein,LB
+37127,1.844552,Pyrene,LB
+37127,0.0122205,Benzo[b]Fluoranthene,LB
+37127,149.6233,Acetaldehyde,LB
+37127,1.892771,Fluorene,LB
+37127,18.35016,Carbon Monoxide,TON
+37127,3019.941,Carbon Dioxide,TON
+37127,0.3720499,PM25-Primary from certain diesel engines,TON
+37127,0.3912785,PM2.5 Primary (Filt + Cond),TON
+37127,0.03344275,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,4.702736e-06,Chromium (VI),LB
+37127,0.013239838,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.02648208,Fluoranthene,LB
+37127,0.01301677,Methane,TON
+37127,7.928724e-05,Benzo[k]Fluoranthene,LB
+37127,0.0012278624,Acenaphthylene,LB
+37127,0.0005459736,Fluorene,LB
+37127,0.0003230932,Methane,TON
+37127,0.000101463,Nitrous Oxide,TON
+37127,1.660216e-05,Ammonia,TON
+37127,5.495437e-05,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.2232284,Hexane,LB
+37121,0.4726972,Naphthalene,LB
+37121,0.1517069,Carbon Monoxide,TON
+37121,5.219625e-05,Nitrate portion of PM2.5-PRI,TON
+37121,0.004358788,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.002153523,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,5.627569e-05,Sulfate Portion of PM2.5-PRI,TON
+37117,0.05318262,Volatile Organic Compounds,TON
+37117,48.276,Formaldehyde,LB
+37117,1.5660004e-05,Mercury,LB
+37111,12.585536,Toluene,LB
+37111,2.786784,"2,2,4-Trimethylpentane",LB
+37111,3.303178,Benzene,LB
+37111,2.780928e-05,Nickel,LB
+37111,1.1885166,Acetaldehyde,LB
+37111,0.18912644,Naphthalene,LB
+37111,0.0019654,PM2.5 Primary (Filt + Cond),TON
+37125,0.000343124,Arsenic,LB
+37125,0.015524148,Acenaphthene,LB
+37125,0.006141886,Nitrous Oxide,TON
+37125,0.363628,Styrene,LB
+37125,0.02230568,Fluoranthene,LB
+37125,0.003232188,Benzo[k]Fluoranthene,LB
+37123,7622.686,Xylenes (Mixed Isomers),LB
+37123,1.0047476,Benz[a]Anthracene,LB
+37123,155.8963,Naphthalene,LB
+37123,49131.41,Carbon Dioxide,TON
+37123,0.3496276,Elemental Carbon portion of PM2.5-PRI,TON
+37115,834.7942,Hexane,LB
+37115,1104.0606,"2,2,4-Trimethylpentane",LB
+37107,0.014609938,Benzo[b]Fluoranthene,LB
+37107,1.2124276,Acrolein,LB
+37107,155.6351,Xylenes (Mixed Isomers),LB
+37107,1.6825934e-05,Chromium (VI),LB
+37107,1.948904,Nitrogen Oxides,TON
+37103,1.6342604e-08,Chromium (VI),LB
+37103,28.25882,Formaldehyde,LB
+37103,0.0008168624,Manganese,LB
+37103,0.00011641622,Acenaphthene,LB
+37103,0.0002541428,Fluorene,LB
+37103,0.370671,Carbon Monoxide,TON
+37103,49.24066,Carbon Dioxide,TON
+37097,4.54628e-05,"Benzo[g,h,i,]Perylene",LB
+37097,0.01619703,PM2.5 Primary (Filt + Cond),TON
+37097,0.1868602,Volatile Organic Compounds,TON
+37091,207.89,Ethyl Benzene,LB
+37091,0.3041896,Anthracene,LB
+37091,7.156868,Propionaldehyde,LB
+37091,0.0919282,Benz[a]Anthracene,LB
+37091,18.529558,Naphthalene,LB
+37091,0.02915554,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.280958,Ammonia,TON
+37091,0.003100008,Sulfate Portion of PM2.5-PRI,TON
+37089,0.0232392,Benzo[k]Fluoranthene,LB
+37089,869.7698,Formaldehyde,LB
+37089,62.17972,Acrolein,LB
+37089,7.347376,Pyrene,LB
+37089,0.5253752,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,23.76368,"1,3-Butadiene",LB
+37087,69.744,Toluene,LB
+37087,5.653986,Fluoranthene,LB
+37087,0.0227245,Benzo[k]Fluoranthene,LB
+37087,28418.8,Carbon Dioxide,TON
+37087,0.009601031,Nitrate portion of PM2.5-PRI,TON
+37073,2.52521,Ethyl Benzene,LB
+37073,1.8966434,Hexane,LB
+37073,0.8290212,Pyrene,LB
+37073,2.059332e-05,Chromium (VI),LB
+37073,0.4418864,Acenaphthylene,LB
+37073,1.5604656e-05,Mercury,LB
+37073,2.252184,Carbon Monoxide,TON
+37073,0.382714,PM10-Primary from certain diesel engines,TON
+37073,10.32372,Ethyl Benzene,LB
+37073,15.331682,Hexane,LB
+37073,0.00385038,Benzo[b]Fluoranthene,LB
+37073,0.015146906,Acenaphthene,LB
+37073,205.6451,Carbon Dioxide,TON
+37073,0.5910911,Nitrogen Oxides,TON
+37073,0.3087899,Volatile Organic Compounds,TON
+37067,5.354998,Nitrogen Oxides,TON
+37067,29.84342,Propionaldehyde,LB
+37067,0.010314224,Benzo[b]Fluoranthene,LB
+37067,2.28677,Fluoranthene,LB
+37067,0.14233854,Manganese,LB
+37059,0.00019550642,Chromium (VI),LB
+37059,0.02214038,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,3.218856,Fluoranthene,LB
+37059,0.012096414,Benzo[k]Fluoranthene,LB
+37059,2.43101,Acenaphthylene,LB
+37059,13.078826,"2,2,4-Trimethylpentane",LB
+37059,2.244245,PM2.5 Primary (Filt + Cond),TON
+37057,18.303418,Xylenes (Mixed Isomers),LB
+37057,0.005005444,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.06587506,Benzo[a]Pyrene,LB
+37057,0.07138758,Manganese,LB
+37057,0.009342022,Arsenic,LB
+37057,98.23156,Acetaldehyde,LB
+37057,24.65514,Naphthalene,LB
+37057,0.04309554,Ammonia,TON
+37057,0.1014022,Organic Carbon portion of PM2.5-PRI,TON
+37051,9.531414,Anthracene,LB
+37051,2.406196,Manganese,LB
+37049,42.07918,Toluene,LB
+37049,44.89204,Xylenes (Mixed Isomers),LB
+37049,0.1059027,Benzo[b]Fluoranthene,LB
+37049,0.01452392,"Dibenzo[a,h]Anthracene",LB
+37049,12.67667,Carbon Monoxide,TON
+37039,0.09788832,Organic Carbon portion of PM2.5-PRI,TON
+37039,4.93855,Pyrene,LB
+37039,5254.684,Carbon Dioxide,TON
+37039,0.5775856,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.3275608,Acenaphthene,LB
+37031,0.02324534,Nitrous Oxide,TON
+37031,12.10798,Volatile Organic Compounds,TON
+37031,6.288138,Acrolein,LB
+37031,0.08634886,Benzo[b]Fluoranthene,LB
+37025,11.802538,Propionaldehyde,LB
+37025,227.8046,Formaldehyde,LB
+37025,2.315738,Phenanthrene,LB
+37025,8.689866,Carbon Monoxide,TON
+37025,2896.483,Carbon Dioxide,TON
+37025,0.007903236,Nitrous Oxide,TON
+37025,0.04133476,Ammonia,TON
+37025,0.501265,PM2.5 Primary (Filt + Cond),TON
+37025,7.149354,"1,3-Butadiene",LB
+37085,0.00230823,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.03958238,Manganese,LB
+37085,0.01795028,Sulfur Dioxide,TON
+37085,19419.77,Toluene,LB
+37075,2.439251,Carbon Dioxide,TON
+37075,0.00317999,Pyrene,LB
+37075,1.4951522e-05,"Dibenzo[a,h]Anthracene",LB
+37075,0.0005149934,Benz[a]Anthracene,LB
+37075,1.0689136e-05,Arsenic,LB
+37063,11.483232,Ethyl Benzene,LB
+37063,0.009790912,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.005290582,"Dibenzo[a,h]Anthracene",LB
+37063,32.53636,Benzene,LB
+37059,3.217054,Xylenes (Mixed Isomers),LB
+37059,0.06757288,Chrysene,LB
+37059,1.1247734,"2,2,4-Trimethylpentane",LB
+37059,0.014473304,Manganese,LB
+37059,0.9668969,Carbon Monoxide,TON
+37059,0.000617697,Nitrate portion of PM2.5-PRI,TON
+37059,2.013137,Nitrogen Oxides,TON
+37059,0.2450943,Volatile Organic Compounds,TON
+37059,0.4589464,Pyrene,LB
+37061,0.0003360034,Fluoranthene,LB
+37061,0.0013801708,Manganese,LB
+37061,0.0011592804,Naphthalene,LB
+37055,6.538248,Xylenes (Mixed Isomers),LB
+37055,0.0008576826,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.004000586,Fluoranthene,LB
+37055,0.0002148228,Ammonia,TON
+37055,0.0001267548,Sulfur Dioxide,TON
+37055,1.992752e-05,Sulfate Portion of PM2.5-PRI,TON
+37053,0.04818692,"1,3-Butadiene",LB
+37053,0.0006566738,Pyrene,LB
+37053,0.00017966426,Benz[a]Anthracene,LB
+37053,0.1828189,Carbon Monoxide,TON
+37053,0.0133527,Nitrogen Oxides,TON
+37053,0.0001747299,Organic Carbon portion of PM2.5-PRI,TON
+37047,2.912633,Volatile Organic Compounds,TON
+37039,5.315368,Ethyl Benzene,LB
+37039,0.002781002,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.002788454,Benzo[a]Pyrene,LB
+37039,0.0003120428,Arsenic,LB
+37033,0.0006912637,Ammonia,TON
+37033,1.7977626e-05,"Dibenzo[a,h]Anthracene",LB
+37023,9.978084,Propionaldehyde,LB
+37023,1.0671868,Fluorene,LB
+37023,4.083948,Nitrogen Oxides,TON
+37023,0.01761938,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,3.045594,Organic Carbon portion of PM2.5-PRI,TON
+37023,19.89159,PM10 Primary (Filt + Cond),TON
+37173,517.8512,Acetaldehyde,LB
+37173,30.01858,Acrolein,LB
+37173,1.2429786,Anthracene,LB
+37173,0.4911796,Chrysene,LB
+37173,0.018886778,"Dibenzo[a,h]Anthracene",LB
+37173,1493.3762,Benzene,LB
+37167,57980.84,Toluene,LB
+37167,1.0916572,Nickel,LB
+37167,3.586547,Sulfur Dioxide,TON
+37167,293.8342,Volatile Organic Compounds,TON
+37159,0.006988916,Nickel,LB
+37159,0.2650026,Fluorene,LB
+37159,0.1257377,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.2231199,Volatile Organic Compounds,TON
+37155,0.2263228,Toluene,LB
+37155,2.067786e-05,"Benzo[g,h,i,]Perylene",LB
+37155,0.0003213094,Fluoranthene,LB
+37155,0.0004653094,Acenaphthylene,LB
+37155,9.864848e-05,Chrysene,LB
+37155,0.00204423,Organic Carbon portion of PM2.5-PRI,TON
+37155,6.371654e-05,Sulfate Portion of PM2.5-PRI,TON
+37149,39.1536,Ethyl Benzene,LB
+37149,64.66336,Propionaldehyde,LB
+37149,0.0003492846,Chromium (VI),LB
+37149,0.005664612,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.07448772,Benzo[a]Pyrene,LB
+37149,28.57364,"2,2,4-Trimethylpentane",LB
+37149,0.2048214,Nickel,LB
+37149,4.03605,Acenaphthene,LB
+37149,0.1206579,Organic Carbon portion of PM2.5-PRI,TON
+37161,11.055764,Toluene,LB
+37161,0.007037256,"Benzo[g,h,i,]Perylene",LB
+37161,0.03422146,Benzo[b]Fluoranthene,LB
+37161,0.00467377,"Dibenzo[a,h]Anthracene",LB
+37161,14.9296,Benzene,LB
+37161,5.771172,Carbon Monoxide,TON
+37161,0.008596539,Sulfate Portion of PM2.5-PRI,TON
+37137,0.6992706,Ethyl Benzene,LB
+37137,0.0217646,Acrolein,LB
+37137,0.0008962658,Anthracene,LB
+37137,0.0017434644,Pyrene,LB
+37137,0.0002858228,Benz[a]Anthracene,LB
+37137,0.005696662,Phenanthrene,LB
+37137,0.05449694,Naphthalene,LB
+37137,0.0009921443,Ammonia,TON
+37137,0.0518317,Nitrogen Oxides,TON
+37137,0.02126167,Volatile Organic Compounds,TON
+37137,0.0002807452,Benzo[b]Fluoranthene,LB
+37137,0.0003676188,Benzo[a]Pyrene,LB
+37131,0.01831053,Chrysene,LB
+37131,0.004547664,Arsenic,LB
+37131,0.2344658,Phenanthrene,LB
+37117,0.03793872,Benzo[b]Fluoranthene,LB
+37117,0.006587142,Nickel,LB
+37117,0.12807156,Acenaphthene,LB
+37117,0.6962122,Phenanthrene,LB
+37107,0.016262388,"Benzo[g,h,i,]Perylene",LB
+37107,5.066696,Fluoranthene,LB
+37107,3.734396,Acenaphthene,LB
+37107,6.400444,Fluorene,LB
+37107,119.05516,Naphthalene,LB
+37107,0.01733022,Nitrous Oxide,TON
+37107,22.32312,Toluene,LB
+37107,3.164884e-05,Mercury,LB
+37107,0.02972244,Phenanthrene,LB
+37107,0.0005199549,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.0010230938,"Dibenzo[a,h]Anthracene",LB
+37099,0.07690884,Methane,TON
+37099,5.585606e-05,Chromium (VI),LB
+37099,0.007428392,Benzo[b]Fluoranthene,LB
+37093,0.2310098,Hexane,LB
+37093,0.4508898,Propionaldehyde,LB
+37093,0.0912839,Pyrene,LB
+37093,0.7219866,Xylenes (Mixed Isomers),LB
+37093,0.0002917984,Benzo[k]Fluoranthene,LB
+37093,0.0013733372,Nickel,LB
+37093,0.005537796,Methane,TON
+37093,0.01053639,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.06637163,PM10 Primary (Filt + Cond),TON
+37093,0.005822434,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,4.504786,Manganese,LB
+37087,23.30792,Acenaphthene,LB
+37087,73741.98,Toluene,LB
+37087,20.04252,Anthracene,LB
+37087,50090.36,Xylenes (Mixed Isomers),LB
+37087,11.412894,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,7.810312,Benzo[k]Fluoranthene,LB
+37087,106.261,Acenaphthylene,LB
+37085,0.1225394,"Benzo[g,h,i,]Perylene",LB
+37085,0.03161872,Benzo[b]Fluoranthene,LB
+37085,0.02969514,Chrysene,LB
+37085,4.941242,Naphthalene,LB
+37081,5.00747,"1,3-Butadiene",LB
+37081,0.04665506,"Benzo[g,h,i,]Perylene",LB
+37081,1.9451842,Naphthalene,LB
+37081,11.66709,Carbon Monoxide,TON
+37081,0.02999011,PM10 Primary (Filt + Cond),TON
+37081,0.004398096,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,3.873172e-05,Anthracene,LB
+37075,2.816114e-05,Chrysene,LB
+37075,0.00013053332,Fluorene,LB
+37075,0.0009254305,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.00247765,Anthracene,LB
+37075,0.008636174,Phenanthrene,LB
+37075,0.004983026,Fluorene,LB
+37075,0.01637488,Carbon Monoxide,TON
+37075,0.0006816633,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.0006421212,Benzo[b]Fluoranthene,LB
+37049,0.0006421212,Benzo[k]Fluoranthene,LB
+37049,0.003064656,Phenanthrene,LB
+37049,0.06925874,"1,3-Butadiene",LB
+37035,0.5085226,Styrene,LB
+37035,0.03440654,Pyrene,LB
+37035,0.015254932,Chrysene,LB
+37035,0.04581028,Manganese,LB
+37035,0.02495622,Arsenic,LB
+37007,1.0104958,Ethyl Benzene,LB
+37007,0.8420756,Benzene,LB
+37115,2.31251e-05,Mercury,LB
+37115,0.0002883452,Nickel,LB
+37115,0.0002360919,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.03916964,"1,3-Butadiene",LB
+37115,0.0004972236,Pyrene,LB
+37115,0.001261612,"Benzo[g,h,i,]Perylene",LB
+37115,0.0002534238,Benzo[b]Fluoranthene,LB
+37169,0.0002102554,"Benzo[g,h,i,]Perylene",LB
+37169,0.16849932,Ethyl Benzene,LB
+37169,0.12758962,Hexane,LB
+37169,5.076616,Formaldehyde,LB
+37169,0.5560634,Naphthalene,LB
+37169,0.1041994,Carbon Monoxide,TON
+37167,4.98308,Propionaldehyde,LB
+37167,0.0010311164,"Benzo[g,h,i,]Perylene",LB
+37167,0.510699,Fluorene,LB
+37167,0.0001073472,Nitrate portion of PM2.5-PRI,TON
+37167,0.7535321,Nitrogen Oxides,TON
+37167,0.007545845,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.05030294,PM10 Primary (Filt + Cond),TON
+37167,0.005222198,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,5.048448e-06,"Benzo[g,h,i,]Perylene",LB
+37021,2.099542,Acetaldehyde,LB
+37021,0.2130793,Carbon Monoxide,TON
+37021,0.0005309672,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.004937433,PM10 Primary (Filt + Cond),TON
+37011,4.625694,"1,3-Butadiene",LB
+37011,0.4799498,Anthracene,LB
+37011,1.2885282,Pyrene,LB
+37011,0.005419054,"Benzo[g,h,i,]Perylene",LB
+37011,1.722087,Phenanthrene,LB
+37011,0.65807,PM10-Primary from certain diesel engines,TON
+37011,0.00585786,Nitrous Oxide,TON
+37009,0.01353445,Nitrous Oxide,TON
+37009,0.001499136,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.0003406428,Sulfur Dioxide,TON
+37009,0.12988512,Benzene,LB
+37009,1.2545764e-05,Mercury,LB
+37009,1.043008e-06,Nickel,LB
+37009,0.5556592,Carbon Monoxide,TON
+37005,8.337826e-09,Chromium (VI),LB
+37005,0.00013538136,Acenaphthylene,LB
+37005,3.970314e-07,Nickel,LB
+37005,1.5749446,Acetaldehyde,LB
+37005,0.0001534257,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.4779856,Styrene,LB
+37155,0.04212422,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.04155648,Benzo[a]Pyrene,LB
+37155,0.05492394,PM2.5 Primary (Filt + Cond),TON
+37135,0.03001144,Styrene,LB
+37135,12.252172,Acetaldehyde,LB
+37135,0.0010375078,Acenaphthene,LB
+37127,3.542592,Hexane,LB
+37121,0.2032572,Hexane,LB
+37121,0.0001308381,Chrysene,LB
+37121,0.0001261407,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.01427602,Volatile Organic Compounds,TON
+37121,6.933572e-06,"Dibenzo[a,h]Anthracene",LB
+37121,0.0003075426,Manganese,LB
+37121,0.0002752848,Arsenic,LB
+37121,0.001553175,Methane,TON
+37007,3.96074,Propionaldehyde,LB
+37007,0.7698406,Pyrene,LB
+37007,0.015069782,Manganese,LB
+37007,0.07586899,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.2472538,PM10 Primary (Filt + Cond),TON
+37007,4.872802,Toluene,LB
+37007,0.2689292,Anthracene,LB
+37189,0.03766356,"Dibenzo[a,h]Anthracene",LB
+37189,0.7631346,Arsenic,LB
+37189,17.69674,Phenanthrene,LB
+37189,2.794206,Anthracene,LB
+37189,5.476266,Pyrene,LB
+37189,4.365766,"Benzo[g,h,i,]Perylene",LB
+37189,1.1121798,Benzo[b]Fluoranthene,LB
+37179,0.01954578,Anthracene,LB
+37179,44.59688,Xylenes (Mixed Isomers),LB
+37179,0.0016656956,Mercury,LB
+37179,0.0207684,Nickel,LB
+37179,0.02119706,Acenaphthene,LB
+37179,3010.136,Carbon Dioxide,TON
+37179,2.289178,Nitrogen Oxides,TON
+37179,0.2833282,PM10 Primary (Filt + Cond),TON
+37179,0.09146717,Sulfur Dioxide,TON
+37179,24.02638,"1,3-Butadiene",LB
+37179,61.83362,Acrolein,LB
+37179,3.418476,Fluoranthene,LB
+37179,0.00022111,Mercury,LB
+37179,345.9704,Acetaldehyde,LB
+37087,0.02173752,"1,3-Butadiene",LB
+37087,0.2220986,Acrolein,LB
+37087,0.231192,Xylenes (Mixed Isomers),LB
+37087,52.78042,Formaldehyde,LB
+37087,1.9164624e-05,Mercury,LB
+37087,104.3945,Carbon Dioxide,TON
+37087,0.0005522006,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.002827596,Ammonia,TON
+37087,1.733877e-06,Nitrate portion of PM2.5-PRI,TON
+37075,214.3032,Benzene,LB
+37075,0.03135558,Manganese,LB
+37075,2281.277,Carbon Dioxide,TON
+37069,0.0014555718,Acetaldehyde,LB
+37069,2.303836e-05,Phenanthrene,LB
+37069,6.18198e-06,Fluoranthene,LB
+37065,0.05657734,Benzo[b]Fluoranthene,LB
+37065,0.007952436,"Dibenzo[a,h]Anthracene",LB
+37065,20.27774,"2,2,4-Trimethylpentane",LB
+37065,52.67782,Benzene,LB
+37065,257.1828,Acetaldehyde,LB
+37065,1.692528,PM25-Primary from certain diesel engines,TON
+37065,0.3269551,Ammonia,TON
+37063,4.44226e-05,Chromium (VI),LB
+37063,0.887551,Fluoranthene,LB
+37063,1.4549196,Phenanthrene,LB
+37063,0.806226,Fluorene,LB
+37063,0.3168044,PM25-Primary from certain diesel engines,TON
+37063,0.01904384,Sulfate Portion of PM2.5-PRI,TON
+37055,0.016469968,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,343.2008,Formaldehyde,LB
+37055,0.02994484,Arsenic,LB
+37055,0.9475236,Acenaphthene,LB
+37055,1.337744,PM25-Primary from certain diesel engines,TON
+37055,0.003828583,Nitrate portion of PM2.5-PRI,TON
+37049,17.869518,"2,2,4-Trimethylpentane",LB
+37049,0.3522158,Styrene,LB
+37049,21.9681,Hexane,LB
+37049,0.02204482,Fluoranthene,LB
+37049,0.5297528,Nitrogen Oxides,TON
+37035,0.036902,Toluene,LB
+37035,6.48216e-06,Benz[a]Anthracene,LB
+37035,4.509056e-05,Arsenic,LB
+37035,0.8698372,Acetaldehyde,LB
+37035,6.149094e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37035,6.740582e-05,Sulfur Dioxide,TON
+37033,0.1835595,Organic Carbon portion of PM2.5-PRI,TON
+37033,11.022796,Propionaldehyde,LB
+37033,0.03702348,Benzo[b]Fluoranthene,LB
+37033,0.246346,Chrysene,LB
+37033,214.5804,Formaldehyde,LB
+37033,0.1241084,Benzo[a]Pyrene,LB
+37033,0.06437408,Manganese,LB
+37027,1.1960872,"1,3-Butadiene",LB
+37027,0.001915051,"Benzo[g,h,i,]Perylene",LB
+37027,0.4956294,Phenanthrene,LB
+37027,1.521256,Nitrogen Oxides,TON
+37023,13.276126,Formaldehyde,LB
+37023,2.386312e-06,Mercury,LB
+37023,5.80859,Acetaldehyde,LB
+37023,0.04460232,Acenaphthene,LB
+37023,1.4676812,Naphthalene,LB
+37023,0.004259725,Methane,TON
+37023,0.002463517,Ammonia,TON
+37023,0.01317942,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.000904193,Sulfate Portion of PM2.5-PRI,TON
+37077,0.6905186,Ethyl Benzene,LB
+37077,0.03319032,Styrene,LB
+37077,0.002320926,Pyrene,LB
+37077,1.5180234e-05,Chromium (VI),LB
+37077,0.002053678,Fluoranthene,LB
+37077,0.00232422,Fluorene,LB
+37077,0.01345983,Ammonia,TON
+37077,0.01361099,PM10 Primary (Filt + Cond),TON
+37077,0.006391743,Sulfur Dioxide,TON
+37175,0.2162448,Ethyl Benzene,LB
+37175,0.0003200448,Benzo[b]Fluoranthene,LB
+37175,0.0002513564,Chrysene,LB
+37175,0.00106312,PM2.5 Primary (Filt + Cond),TON
+37167,1.104922,Carbon Monoxide,TON
+37167,0.00418024,Sulfur Dioxide,TON
+37167,1.8882184,Xylenes (Mixed Isomers),LB
+37167,9.748194e-05,Mercury,LB
+37137,0.01205366,"1,3-Butadiene",LB
+37137,8.794246e-05,Benzo[b]Fluoranthene,LB
+37137,0.10163562,"2,2,4-Trimethylpentane",LB
+37137,4.480025e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.0001042398,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.0221632,"Benzo[g,h,i,]Perylene",LB
+37123,0.008326858,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,12.72067,Benzene,LB
+37123,0.00354607,Nickel,LB
+37123,0.001890768,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.02853527,Ammonia,TON
+37123,0.6134242,Nitrogen Oxides,TON
+37121,0.002329038,Acenaphthene,LB
+37121,0.003863013,Nitrous Oxide,TON
+37121,1.019371e-05,Nitrate portion of PM2.5-PRI,TON
+37121,1.7820532,Hexane,LB
+37121,0.003239654,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.0017864134,Benzo[k]Fluoranthene,LB
+37121,7.439574e-05,"Dibenzo[a,h]Anthracene",LB
+37121,0.0015872902,Benz[a]Anthracene,LB
+37175,6.094064,"1,3-Butadiene",LB
+37175,3.954536e-05,Chromium (VI),LB
+37175,0.012502588,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.04910696,Benzo[b]Fluoranthene,LB
+37175,0.006720656,Benzo[k]Fluoranthene,LB
+37175,0.3118128,Chrysene,LB
+37175,0.6196864,Acenaphthene,LB
+37175,5.050882,Carbon Monoxide,TON
+37175,0.003865836,Nitrous Oxide,TON
+37175,16.98649,Nitrogen Oxides,TON
+37175,1044.3912,Xylenes (Mixed Isomers),LB
+37175,0.3770094,"Benzo[g,h,i,]Perylene",LB
+37175,0.09747796,Manganese,LB
+37175,170.10654,Acetaldehyde,LB
+37175,0.04061018,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.0004519372,Nitrate portion of PM2.5-PRI,TON
+37171,0.17518808,Pyrene,LB
+37171,0.04833876,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,109.02398,Benzene,LB
+37171,0.00019067562,Mercury,LB
+37171,15.241458,"1,3-Butadiene",LB
+37171,5.416686,Naphthalene,LB
+37171,0.05069555,PM2.5 Primary (Filt + Cond),TON
+37169,3690.481,Carbon Dioxide,TON
+37169,0.03150429,Sulfur Dioxide,TON
+37169,0.9480708,Anthracene,LB
+37169,0.05690578,Benzo[b]Fluoranthene,LB
+37169,316.1582,Formaldehyde,LB
+37167,0.001014214,"Dibenzo[a,h]Anthracene",LB
+37167,0.002729832,Arsenic,LB
+37167,5.007066,Acrolein,LB
+37167,1.503644e-05,Chromium (VI),LB
+37167,719.3818,Carbon Dioxide,TON
+37167,0.1334399,PM25-Primary from certain diesel engines,TON
+37167,0.002011116,Nitrous Oxide,TON
+37167,0.03679525,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.006223135,Sulfur Dioxide,TON
+37167,2.645296,Phenanthrene,LB
+37167,0.0006553257,Nitrate portion of PM2.5-PRI,TON
+37167,4.158374,Styrene,LB
+37167,0.7967636,Anthracene,LB
+37149,9.7791,Phenanthrene,LB
+37149,28273.19,Carbon Dioxide,TON
+37149,3.357113,PM10 Primary (Filt + Cond),TON
+37045,8.129492,Toluene,LB
+37045,0.2604334,Anthracene,LB
+37045,0.0011836298,"Benzo[g,h,i,]Perylene",LB
+37045,2.836518,"2,2,4-Trimethylpentane",LB
+37045,0.007207769,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.006588468,Sulfur Dioxide,TON
+37041,6.583648,Propionaldehyde,LB
+37041,0.002174126,"Dibenzo[a,h]Anthracene",LB
+37041,5.653852,"2,2,4-Trimethylpentane",LB
+37041,0.05065332,Manganese,LB
+37041,0.02102536,Nickel,LB
+37041,17.59462,Naphthalene,LB
+37035,0.02361566,"Dibenzo[a,h]Anthracene",LB
+37035,0.7681494,Benz[a]Anthracene,LB
+37035,0.694525,Manganese,LB
+37035,617.7958,Carbon Monoxide,TON
+37035,1592.1626,Ethyl Benzene,LB
+37035,51.07984,Acrolein,LB
+37035,0.7489338,Chrysene,LB
+37033,7.720286,Ethyl Benzene,LB
+37033,5.8559,Hexane,LB
+37033,5.291274,Carbon Monoxide,TON
+37033,0.06032884,Ammonia,TON
+37033,0.02072166,Sulfur Dioxide,TON
+37033,1.333683,Volatile Organic Compounds,TON
+37029,2.046528e-05,Chromium (VI),LB
+37029,0.5446566,Fluorene,LB
+37029,1210.788,Carbon Dioxide,TON
+37029,0.01054546,Sulfur Dioxide,TON
+37019,30.11114,"1,3-Butadiene",LB
+37019,34.48482,Hexane,LB
+37019,146.7143,Xylenes (Mixed Isomers),LB
+37019,0.05393539,Nitrous Oxide,TON
+37019,7.311529,PM10 Primary (Filt + Cond),TON
+37019,0.4423094,Sulfate Portion of PM2.5-PRI,TON
+37019,6.216942,Volatile Organic Compounds,TON
+37009,0.258343,Ethyl Benzene,LB
+37009,0.3912656,Propionaldehyde,LB
+37009,2.303238e-06,Mercury,LB
+37009,3.339468,Acetaldehyde,LB
+37009,0.02373836,Acenaphthene,LB
+37009,0.001459872,Sulfur Dioxide,TON
+37009,0.0004996612,Mercury,LB
+37009,0.0001515933,Nitrate portion of PM2.5-PRI,TON
+37009,0.05152761,PM2.5 Primary (Filt + Cond),TON
+37009,0.01707222,Sulfur Dioxide,TON
+37009,0.001568227,Sulfate Portion of PM2.5-PRI,TON
+37005,1.31629e-07,Arsenic,LB
+37005,0.00016418414,Acrolein,LB
+37005,7.375836e-06,Anthracene,LB
+37005,3.91424e-05,Acenaphthylene,LB
+37005,0.0002391572,Anthracene,LB
+37005,0.0770956,Formaldehyde,LB
+37005,6.744816e-05,Benz[a]Anthracene,LB
+37005,5.693638e-07,Mercury,LB
+37005,0.0002812568,Acenaphthene,LB
+37005,0.0003222773,PM10 Primary (Filt + Cond),TON
+37033,1.8925242,Ethyl Benzene,LB
+37033,0.09709498,Styrene,LB
+37033,0.3398688,Acrolein,LB
+37033,0.004622362,Benzo[a]Pyrene,LB
+37033,0.002289542,Benz[a]Anthracene,LB
+37033,0.00679925,Fluorene,LB
+37033,0.01521811,Ammonia,TON
+37033,0.002737725,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.008036882,Sulfur Dioxide,TON
+37009,0.2064661,Carbon Monoxide,TON
+37009,0.02930242,"1,3-Butadiene",LB
+37009,0.000977394,Acenaphthylene,LB
+37009,8.701562e-06,"Dibenzo[a,h]Anthracene",LB
+37009,0.212205,"2,2,4-Trimethylpentane",LB
+37143,14.342192,Hexane,LB
+37143,0.012432128,Anthracene,LB
+37143,6.61228e-06,Chromium (VI),LB
+37143,0.7568576,Naphthalene,LB
+37143,0.01238918,Methane,TON
+37143,0.01297626,Nitrous Oxide,TON
+37129,6716.382,"2,2,4-Trimethylpentane",LB
+37129,762.7678,Benzene,LB
+37125,0.0224948,"Benzo[g,h,i,]Perylene",LB
+37125,0.0272353,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,683.5634,Formaldehyde,LB
+37125,0.3586918,Benzo[a]Pyrene,LB
+37125,7251.429,Carbon Dioxide,TON
+37125,1.200387,PM25-Primary from certain diesel engines,TON
+37125,0.2509163,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,2593.054,"1,3-Butadiene",LB
+37125,346.7058,Acrolein,LB
+37125,5.651168,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,4.536222,Benzo[k]Fluoranthene,LB
+37125,3.969252,Manganese,LB
+37121,3.284884,"1,3-Butadiene",LB
+37121,0.05619456,Anthracene,LB
+37121,0.10962304,Pyrene,LB
+37121,125.12426,"2,2,4-Trimethylpentane",LB
+37121,0.00394549,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.05409162,Ammonia,TON
+37119,4.318312,Manganese,LB
+37119,118900.4,Carbon Dioxide,TON
+37119,1.415722,Benzo[b]Fluoranthene,LB
+37119,0.19508896,Benzo[k]Fluoranthene,LB
+37119,30.45622,Acenaphthylene,LB
+37119,349.7004,Naphthalene,LB
+37119,0.8596235,Organic Carbon portion of PM2.5-PRI,TON
+37119,3.892716,PM2.5 Primary (Filt + Cond),TON
+37119,0.4842617,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.08349048,Benzo[b]Fluoranthene,LB
+37099,1.004614,PM10-Primary from certain diesel engines,TON
+37099,0.9242986,PM25-Primary from certain diesel engines,TON
+37091,0.0280404,Phenanthrene,LB
+37091,0.1256864,Styrene,LB
+37091,19.389356,Toluene,LB
+37071,0.01267218,Benzo[k]Fluoranthene,LB
+37071,0.012139408,Benz[a]Anthracene,LB
+37071,296.0732,Carbon Dioxide,TON
+37071,0.0105909,Nitrous Oxide,TON
+37063,0.02498498,Pyrene,LB
+37063,0.017392356,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.06336458,Acenaphthylene,LB
+37063,0.017209962,Benzo[a]Pyrene,LB
+37063,0.0018241106,Nickel,LB
+37065,2.12947,Ethyl Benzene,LB
+37065,0.0015774178,Benzo[k]Fluoranthene,LB
+37065,1.0820394,Formaldehyde,LB
+37065,5.948876e-05,"Dibenzo[a,h]Anthracene",LB
+37065,0.003337758,Acenaphthene,LB
+37065,0.01832712,Phenanthrene,LB
+37065,0.00676063,Fluorene,LB
+37065,0.003140738,PM2.5 Primary (Filt + Cond),TON
+37061,0.002017752,"Dibenzo[a,h]Anthracene",LB
+37061,0.004384408,Arsenic,LB
+37061,2.08505e-05,Chromium (VI),LB
+37061,0.2438241,PM10 Primary (Filt + Cond),TON
+37049,110.05542,Xylenes (Mixed Isomers),LB
+37049,0.04266734,Benzo[b]Fluoranthene,LB
+37049,0.5642744,Chrysene,LB
+37049,0.2095064,Manganese,LB
+37049,0.000367249,Mercury,LB
+37049,9.776242,Fluorene,LB
+37049,1.456391,PM10-Primary from certain diesel engines,TON
+37049,1.397738,PM2.5 Primary (Filt + Cond),TON
+37049,0.1120927,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,7.876163e-06,Sulfate Portion of PM2.5-PRI,TON
+37047,0.016692274,Naphthalene,LB
+37047,7.478008e-07,Nitrate portion of PM2.5-PRI,TON
+37047,0.0001406391,Organic Carbon portion of PM2.5-PRI,TON
+37047,7.094932e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.0001561273,Sulfur Dioxide,TON
+37045,3660.198,"1,3-Butadiene",LB
+37045,7.189266,Chrysene,LB
+37045,2.193508,Elemental Carbon portion of PM2.5-PRI,TON
+37045,5.270939,Organic Carbon portion of PM2.5-PRI,TON
+37035,15.688868,"1,3-Butadiene",LB
+37035,1.7371952,Anthracene,LB
+37035,4.962158,Pyrene,LB
+37035,0.014777342,Benzo[k]Fluoranthene,LB
+37035,0.01476747,"Dibenzo[a,h]Anthracene",LB
+37035,3.466704,Fluorene,LB
+37035,0.4562207,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.00646301,Nitrate portion of PM2.5-PRI,TON
+37035,1.628041,PM10 Primary (Filt + Cond),TON
+37025,0.8204908,Ethyl Benzene,LB
+37025,1.984232,Acrolein,LB
+37025,1.5531176,Toluene,LB
+37025,0.6167546,Hexane,LB
+37025,0.1427774,Acenaphthylene,LB
+37025,0.18140696,Fluorene,LB
+37025,2.739742,Naphthalene,LB
+37025,0.060614,PM10-Primary from certain diesel engines,TON
+37027,3.123278,Styrene,LB
+37027,7.086498,"1,3-Butadiene",LB
+37027,5.637012,Hexane,LB
+37027,2.260512,Pyrene,LB
+37027,0.012634946,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.16650438,Benzo[a]Pyrene,LB
+37027,2.680022e-05,Mercury,LB
+37027,1230.698,Carbon Dioxide,TON
+37023,1.5903836,Propionaldehyde,LB
+37023,7.205944,Acetaldehyde,LB
+37023,0.005620083,Sulfate Portion of PM2.5-PRI,TON
+37023,103.23276,Acetaldehyde,LB
+37023,0.4572388,Acenaphthene,LB
+37023,5.113459,Nitrogen Oxides,TON
+37171,36.56148,Ethyl Benzene,LB
+37171,96.1988,Xylenes (Mixed Isomers),LB
+37171,5.221866,Acenaphthylene,LB
+37171,0.6115888,Benzo[a]Pyrene,LB
+37171,0.02501508,"Dibenzo[a,h]Anthracene",LB
+37171,0.2968028,Manganese,LB
+37171,0.0703795,Arsenic,LB
+37171,45.93539,Nitrogen Oxides,TON
+37165,0.12988382,Propionaldehyde,LB
+37165,13.892154,Xylenes (Mixed Isomers),LB
+37165,0.008489444,"Benzo[g,h,i,]Perylene",LB
+37165,4.809126,"2,2,4-Trimethylpentane",LB
+37163,0.8862804,Ethyl Benzene,LB
+37163,0.03524944,Chrysene,LB
+37163,0.0603767,Benz[a]Anthracene,LB
+37163,2.48158,Benzene,LB
+37163,715.3151,Carbon Dioxide,TON
+37163,0.1343292,PM10-Primary from certain diesel engines,TON
+37163,0.1235859,PM25-Primary from certain diesel engines,TON
+37163,0.1786169,PM10 Primary (Filt + Cond),TON
+37159,167.27248,"1,3-Butadiene",LB
+37159,304.3812,Toluene,LB
+37159,122.40636,Hexane,LB
+37159,4866.366,Formaldehyde,LB
+37159,0.0008998324,Mercury,LB
+37159,2154.598,Acetaldehyde,LB
+37159,27807.55,Carbon Dioxide,TON
+37159,0.08166219,Nitrous Oxide,TON
+37159,0.129018,Sulfate Portion of PM2.5-PRI,TON
+37145,0.6286848,Hexane,LB
+37145,10.656754,Acetaldehyde,LB
+37131,0.0011900582,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.005853684,Nickel,LB
+37131,18.728514,Acetaldehyde,LB
+37131,402.5838,Carbon Dioxide,TON
+37131,3.69301e-07,Chromium (VI),LB
+37131,0.010054932,Fluoranthene,LB
+37131,0.002227608,Benzo[k]Fluoranthene,LB
+37131,0.003216586,Benzo[a]Pyrene,LB
+37131,5.46343,"2,2,4-Trimethylpentane",LB
+37131,0.006820596,Acenaphthene,LB
+37131,0.3542332,Naphthalene,LB
+37131,0.003182619,PM2.5 Primary (Filt + Cond),TON
+37131,0.0003284699,Sulfur Dioxide,TON
+37121,32.94288,Acrolein,LB
+37121,8.34118e-05,Chromium (VI),LB
+37121,0.005008498,"Benzo[g,h,i,]Perylene",LB
+37121,1.778134,Fluoranthene,LB
+37121,6.75797e-05,Mercury,LB
+37121,3.603392,Phenanthrene,LB
+37121,0.1234039,Methane,TON
+37121,19.89946,Carbon Monoxide,TON
+37121,0.06803682,Ammonia,TON
+37121,0.01702745,Sulfur Dioxide,TON
+37117,0.0006418706,Nickel,LB
+37117,0.000203316,Arsenic,LB
+37117,0.5515818,Naphthalene,LB
+37117,0.01295605,PM10-Primary from certain diesel engines,TON
+37117,0.01624907,PM10 Primary (Filt + Cond),TON
+37117,0.0003653307,Sulfate Portion of PM2.5-PRI,TON
+37117,0.2665222,Propionaldehyde,LB
+37117,0.00015062888,"Dibenzo[a,h]Anthracene",LB
+37111,57.82354,"1,3-Butadiene",LB
+37111,0.0004436418,Chromium (VI),LB
+37111,41.66306,"2,2,4-Trimethylpentane",LB
+37111,10773.92,Carbon Dioxide,TON
+37111,0.3650153,Ammonia,TON
+37123,7.078554,Benzene,LB
+37123,0.001918847,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.01275688,PM10 Primary (Filt + Cond),TON
+37123,0.004169417,PM2.5 Primary (Filt + Cond),TON
+37123,4.661748,Hexane,LB
+37123,0.00314982,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,16.045898,Acetaldehyde,LB
+37177,0.1160003,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.008460277,Ammonia,TON
+37177,4.034975,Nitrogen Oxides,TON
+37177,2.025376,Propionaldehyde,LB
+37177,8.564098,Toluene,LB
+37177,2.254282,Hexane,LB
+37177,0.000671358,Benzo[k]Fluoranthene,LB
+37177,0.08749958,Naphthalene,LB
+37177,0.0001804286,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.0004953538,Nitrous Oxide,TON
+37177,0.0005751859,Ammonia,TON
+37177,3.095602e-06,Nitrate portion of PM2.5-PRI,TON
+37171,0.2395462,Fluoranthene,LB
+37171,0.02110472,Benzo[a]Pyrene,LB
+37171,0.01601098,Manganese,LB
+37171,1096.46,Carbon Dioxide,TON
+37171,4.030012,Nitrogen Oxides,TON
+37171,0.2023288,Volatile Organic Compounds,TON
+37165,0.001009425,Nitrate portion of PM2.5-PRI,TON
+37165,2.464822,"1,3-Butadiene",LB
+37165,4.803904,Xylenes (Mixed Isomers),LB
+37165,7.086488,Benzene,LB
+37165,0.9356532,Phenanthrene,LB
+37163,0.788618,Styrene,LB
+37163,1.796376,"1,3-Butadiene",LB
+37163,0.00282688,"Benzo[g,h,i,]Perylene",LB
+37163,1.9147696e-05,Mercury,LB
+37163,0.1607022,PM25-Primary from certain diesel engines,TON
+37163,0.1681144,PM2.5 Primary (Filt + Cond),TON
+37153,0.00235426,Nitrous Oxide,TON
+37153,0.07659538,Volatile Organic Compounds,TON
+37153,15.06653,Toluene,LB
+37153,3.082672e-06,Chromium (VI),LB
+37153,0.003719524,Benzo[a]Pyrene,LB
+37153,8.604264e-05,"Dibenzo[a,h]Anthracene",LB
+37149,0.12962856,Ethyl Benzene,LB
+37149,0.0008387028,"Benzo[g,h,i,]Perylene",LB
+37149,0.00017483826,Benzo[b]Fluoranthene,LB
+37149,0.012355648,Naphthalene,LB
+37149,0.0001356222,Methane,TON
+37149,0.0001762422,Ammonia,TON
+37149,0.0004446795,PM10 Primary (Filt + Cond),TON
+37135,0.2289974,Xylenes (Mixed Isomers),LB
+37135,9.294946e-05,Chrysene,LB
+37135,0.0002146512,Benzo[a]Pyrene,LB
+37135,0.17010082,Benzene,LB
+37127,100.53502,Phenanthrene,LB
+37127,2531.968,"1,3-Butadiene",LB
+37127,8.421844,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,5780.746,Formaldehyde,LB
+37111,1.385732,Pyrene,LB
+37111,1.0506956,Fluoranthene,LB
+37111,12.858532,Benzene,LB
+37111,0.02683578,Manganese,LB
+37111,59.20972,Acetaldehyde,LB
+37111,14.959402,Naphthalene,LB
+37111,0.05710564,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.05197934,Acenaphthene,LB
+37087,0.02307904,Methane,TON
+37087,131.29266,Toluene,LB
+37087,0.04500164,Anthracene,LB
+37087,60.87476,Benzene,LB
+37087,0.02442184,Manganese,LB
+37071,30.32888,Toluene,LB
+37071,1.612804,Anthracene,LB
+37071,4.643072,Pyrene,LB
+37071,2.461058,Acenaphthylene,LB
+37071,1.4638596,Acenaphthene,LB
+37071,5.54045,Phenanthrene,LB
+37071,16.52016,Nitrogen Oxides,TON
+37071,0.4820821,Organic Carbon portion of PM2.5-PRI,TON
+37071,1.614708,PM10 Primary (Filt + Cond),TON
+37071,0.0273619,Sulfate Portion of PM2.5-PRI,TON
+37071,2.585118,Volatile Organic Compounds,TON
+37063,0.0543557,Arsenic,LB
+37063,0.149876,PM2.5 Primary (Filt + Cond),TON
+37051,9.98294,Volatile Organic Compounds,TON
+37051,1723.401,Formaldehyde,LB
+37051,43.04766,"2,2,4-Trimethylpentane",LB
+37033,0.8853842,Hexane,LB
+37033,0.0009178762,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.0004957704,Benzo[k]Fluoranthene,LB
+37033,0.0004944018,"Dibenzo[a,h]Anthracene",LB
+37033,0.12045046,Acenaphthene,LB
+37033,0.3647168,Phenanthrene,LB
+37033,0.00988254,Methane,TON
+37031,4.002626e-06,"Dibenzo[a,h]Anthracene",LB
+37031,0.5535134,Benzene,LB
+37177,4.743038,Ethyl Benzene,LB
+37177,8.968482,Toluene,LB
+37177,0.4017854,Anthracene,LB
+37177,8.5744,Xylenes (Mixed Isomers),LB
+37177,0.0019082854,"Benzo[g,h,i,]Perylene",LB
+37177,0.0004543496,"Dibenzo[a,h]Anthracene",LB
+37177,0.1374295,PM25-Primary from certain diesel engines,TON
+37177,0.1112991,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.0357555,Ammonia,TON
+37173,15.004644,Acetaldehyde,LB
+37173,0.001929439,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.002484454,Sulfur Dioxide,TON
+37173,1.6858572,Propionaldehyde,LB
+37173,3.066396,Xylenes (Mixed Isomers),LB
+37173,1.9589498e-05,Chromium (VI),LB
+37173,0.16860396,Acenaphthylene,LB
+37173,0.0017732762,Benzo[a]Pyrene,LB
+37015,2.336408,Ethyl Benzene,LB
+37015,0.003335132,"Benzo[g,h,i,]Perylene",LB
+37015,0.002204038,Arsenic,LB
+37015,0.23662,Acenaphthene,LB
+37015,0.8829918,Phenanthrene,LB
+37015,0.5158852,Fluorene,LB
+37015,0.07866735,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.003876759,Sulfur Dioxide,TON
+37149,49.83319,Volatile Organic Compounds,TON
+37149,10148.286,Toluene,LB
+37149,4.364464,Pyrene,LB
+37149,1.727491,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,3.83116,Fluoranthene,LB
+37149,0.9588824,Chrysene,LB
+37061,0.004363396,Benzo[b]Fluoranthene,LB
+37061,0.003684278,Chrysene,LB
+37061,6.694574,"2,2,4-Trimethylpentane",LB
+37061,0.003020532,Manganese,LB
+37173,22.14258,Acrolein,LB
+37173,0.6395378,Anthracene,LB
+37173,0.3466588,Benz[a]Anthracene,LB
+37173,132.37712,Acetaldehyde,LB
+37173,32.55276,Naphthalene,LB
+37173,0.1717206,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.08059532,Propionaldehyde,LB
+37173,1.691685,Carbon Monoxide,TON
+37173,0.001554541,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.0017603992,Benzo[b]Fluoranthene,LB
+37173,0.0017603992,Benzo[k]Fluoranthene,LB
+37173,0.0015400126,Chrysene,LB
+37199,0.425785,Hexane,LB
+37195,0.0014559698,Anthracene,LB
+37195,2.41126e-05,Chromium (VI),LB
+37195,0.002248036,Benzo[k]Fluoranthene,LB
+37195,0.008783252,Phenanthrene,LB
+37195,0.001097231,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.02089936,Ammonia,TON
+37057,33.7059,Xylenes (Mixed Isomers),LB
+37057,2.556054,Acenaphthylene,LB
+37057,0.16975012,Chrysene,LB
+37057,0.002061272,"Dibenzo[a,h]Anthracene",LB
+37057,0.02459176,Arsenic,LB
+37057,0.6522089,PM10 Primary (Filt + Cond),TON
+37057,0.03665788,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,53.616,Benzene,LB
+37051,62.6095,Naphthalene,LB
+37051,16.8274,Carbon Monoxide,TON
+37051,1.390597,PM25-Primary from certain diesel engines,TON
+37051,0.5282968,Elemental Carbon portion of PM2.5-PRI,TON
+37051,19.118616,Ethyl Benzene,LB
+37051,44.86554,Acrolein,LB
+37051,4.402454,Fluoranthene,LB
+37049,6.500756,Styrene,LB
+37049,1.608569,Anthracene,LB
+37049,573.4284,Formaldehyde,LB
+37049,0.10264908,Nickel,LB
+37049,235.4306,Acetaldehyde,LB
+37049,2.171325,PM25-Primary from certain diesel engines,TON
+37049,2.905003,Volatile Organic Compounds,TON
+37049,14.049242,Toluene,LB
+37049,0.009618288,"Benzo[g,h,i,]Perylene",LB
+37049,0.0473588,Benzo[b]Fluoranthene,LB
+37049,0.3046154,Chrysene,LB
+37049,89.14312,Acetaldehyde,LB
+37049,0.7371855,PM10 Primary (Filt + Cond),TON
+37045,64.58504,Hexane,LB
+37045,0.03716416,"Benzo[g,h,i,]Perylene",LB
+37045,2567.45,Formaldehyde,LB
+37045,248.614,Benzene,LB
+37045,0.4679939,Ammonia,TON
+37045,0.3748013,Organic Carbon portion of PM2.5-PRI,TON
+37045,2.272262,PM2.5 Primary (Filt + Cond),TON
+37045,0.006608302,Benzo[a]Pyrene,LB
+37045,0.00015160058,"Dibenzo[a,h]Anthracene",LB
+37045,0.0010292112,Manganese,LB
+37045,0.02394022,Methane,TON
+37035,0.04030366,Benzo[b]Fluoranthene,LB
+37035,8.502146,"2,2,4-Trimethylpentane",LB
+37035,0.04105624,Nickel,LB
+37035,25.76765,Nitrogen Oxides,TON
+37033,2.470102,Carbon Monoxide,TON
+37033,0.04563873,PM10-Primary from certain diesel engines,TON
+37033,7.872336e-05,Nitrate portion of PM2.5-PRI,TON
+37033,0.9210311,Nitrogen Oxides,TON
+37033,3.726046,Acrolein,LB
+37033,0.0006023028,"Benzo[g,h,i,]Perylene",LB
+37033,0.0010624148,Benzo[b]Fluoranthene,LB
+37033,0.2575442,Acenaphthylene,LB
+37033,4.447666,Benzene,LB
+37027,4.415992,Styrene,LB
+37027,1.7336572,Pyrene,LB
+37027,0.0015804876,Benzo[k]Fluoranthene,LB
+37027,0.00157283,"Dibenzo[a,h]Anthracene",LB
+37027,30.03168,Benzene,LB
+37027,1.017339,Acenaphthene,LB
+37027,0.02960107,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,1.163472e-07,Chromium (VI),LB
+37023,0.0010687366,Chrysene,LB
+37023,0.6123668,Formaldehyde,LB
+37023,1.4543502e-05,Nickel,LB
+37023,0.001888925,Acenaphthene,LB
+37023,0.001262286,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.0001672389,Sulfur Dioxide,TON
+37157,3.39881,Fluoranthene,LB
+37157,1.5572514,Acenaphthene,LB
+37157,4.441932,Pyrene,LB
+37157,19.043696,Ethyl Benzene,LB
+37135,0.002626724,Styrene,LB
+37135,0.00019363856,Pyrene,LB
+37135,0.0001701499,Fluoranthene,LB
+37135,0.03605392,Formaldehyde,LB
+37135,2.24724e-06,"Dibenzo[a,h]Anthracene",LB
+37135,1.6536422e-07,Mercury,LB
+37135,0.03493398,Acetaldehyde,LB
+37135,6.267129e-05,Methane,TON
+37135,4.784918e-05,Nitrous Oxide,TON
+37135,2.846279e-07,Nitrate portion of PM2.5-PRI,TON
+37135,2.348297e-05,Sulfur Dioxide,TON
+37137,1.179938e-05,Nitrate portion of PM2.5-PRI,TON
+37137,0.01582251,PM10 Primary (Filt + Cond),TON
+37137,0.00321101,Manganese,LB
+37137,0.01278691,Acenaphthene,LB
+37137,0.06924784,Phenanthrene,LB
+37137,0.02590052,Fluorene,LB
+37137,0.003516166,Benzo[a]Pyrene,LB
+37137,75.7336,Benzene,LB
+37137,0.2973002,Phenanthrene,LB
+37131,1.8287822,Benzo[b]Fluoranthene,LB
+37131,118.62942,Acrolein,LB
+37131,0.03972142,Mercury,LB
+37131,339.944,Naphthalene,LB
+37131,6.201176,Ammonia,TON
+37129,8.614096,Ethyl Benzene,LB
+37129,17.323496,Xylenes (Mixed Isomers),LB
+37129,0.10627672,Benzo[a]Pyrene,LB
+37129,0.4056892,Benz[a]Anthracene,LB
+37129,0.00193404,Nitrate portion of PM2.5-PRI,TON
+37129,0.02650217,Sulfur Dioxide,TON
+37123,23.133,Acrolein,LB
+37123,1.006508,Anthracene,LB
+37123,9.66804e-05,Mercury,LB
+37123,7.028857,Carbon Monoxide,TON
+37123,0.1277536,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.2063462,Hexane,LB
+37117,0.02823774,Anthracene,LB
+37117,2.759728e-06,Chromium (VI),LB
+37117,0.0004574816,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.004041284,Manganese,LB
+37117,200.6747,Carbon Dioxide,TON
+37117,0.03863526,PM2.5 Primary (Filt + Cond),TON
+37115,0.11690654,Ethyl Benzene,LB
+37115,0.38435,Naphthalene,LB
+37115,4.193988,Acrolein,LB
+37115,1.438688,Hexane,LB
+37115,0.012525504,Nickel,LB
+37115,0.004320751,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.01058851,PM2.5 Primary (Filt + Cond),TON
+37113,35.82516,Nitrogen Oxides,TON
+37113,0.05156074,Nickel,LB
+37113,0.03916918,Arsenic,LB
+37113,0.7673362,Acenaphthene,LB
+37113,1.184731,PM25-Primary from certain diesel engines,TON
+37113,0.0439808,Benzo[b]Fluoranthene,LB
+37113,0.2887592,Chrysene,LB
+37107,1.4909372,Anthracene,LB
+37107,4.291532,Pyrene,LB
+37107,0.3127846,Methane,TON
+37107,0.4575809,Organic Carbon portion of PM2.5-PRI,TON
+37107,1.720669,PM10 Primary (Filt + Cond),TON
+37107,3.247224,Fluoranthene,LB
+37107,0.6113496,Chrysene,LB
+37107,472.269,Formaldehyde,LB
+37107,0.01302783,"Dibenzo[a,h]Anthracene",LB
+37107,1.2790128,"1,3-Butadiene",LB
+37107,3.270378,Acrolein,LB
+37107,1.902007e-05,Chromium (VI),LB
+37107,0.0004607396,"Benzo[g,h,i,]Perylene",LB
+37107,0.003784164,Arsenic,LB
+37107,0.02570324,Methane,TON
+37107,0.0004804219,Nitrous Oxide,TON
+37107,0.003934882,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.001166317,Sulfate Portion of PM2.5-PRI,TON
+37107,1946.7176,"1,3-Butadiene",LB
+37107,11.951712,"Benzo[g,h,i,]Perylene",LB
+37107,0.0819099,Mercury,LB
+37107,1.5660114,Arsenic,LB
+37107,1.08711,Elemental Carbon portion of PM2.5-PRI,TON
+37107,12.47149,Ammonia,TON
+37107,3.44365,Sulfur Dioxide,TON
+37097,0.0010377584,Chromium (VI),LB
+37097,17.639308,Fluoranthene,LB
+37097,0.06370956,Benzo[k]Fluoranthene,LB
+37097,1.5005954,Benzo[a]Pyrene,LB
+37097,153.34018,"2,2,4-Trimethylpentane",LB
+37097,11.9802,PM2.5 Primary (Filt + Cond),TON
+37097,0.964069,Sulfur Dioxide,TON
+37091,0.483732,Ethyl Benzene,LB
+37091,0.19589412,Styrene,LB
+37091,1.1274026,Acrolein,LB
+37091,0.15167728,Pyrene,LB
+37091,0.011756336,Benzo[a]Pyrene,LB
+37091,0.03775042,Benz[a]Anthracene,LB
+37091,0.03798429,PM25-Primary from certain diesel engines,TON
+37091,0.05481874,PM10 Primary (Filt + Cond),TON
+37099,0.05503028,"Benzo[g,h,i,]Perylene",LB
+37099,0.0206751,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,23.22101,Carbon Monoxide,TON
+37099,2.441217,Nitrogen Oxides,TON
+37099,0.0112678,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,2.605636e-06,Mercury,LB
+37095,0.003731114,Fluorene,LB
+37095,0.0956128,Naphthalene,LB
+37095,5.99025,Xylenes (Mixed Isomers),LB
+37095,0.0004917852,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.4984144,"1,3-Butadiene",LB
+37095,0.002603822,"Benzo[g,h,i,]Perylene",LB
+37095,2.177364e-05,Arsenic,LB
+37095,0.004726835,Methane,TON
+37095,1.234082,Carbon Monoxide,TON
+37095,4.831578,Carbon Dioxide,TON
+37091,0.001938302,Anthracene,LB
+37091,0.0006476356,Benzo[b]Fluoranthene,LB
+37091,0.0005029299,Organic Carbon portion of PM2.5-PRI,TON
+37089,80.0896,Ethyl Benzene,LB
+37089,4.89291e-05,Chromium (VI),LB
+37089,0.17031156,"Benzo[g,h,i,]Perylene",LB
+37089,0.19044554,Fluoranthene,LB
+37089,0.04360782,Benzo[k]Fluoranthene,LB
+37089,0.0407626,Chrysene,LB
+37089,40.96404,Formaldehyde,LB
+37089,0.0014689968,"Dibenzo[a,h]Anthracene",LB
+37089,0.0004904998,Mercury,LB
+37089,41.54472,Acetaldehyde,LB
+37089,0.09989012,Methane,TON
+37089,0.09804809,Nitrous Oxide,TON
+37089,0.03640836,Organic Carbon portion of PM2.5-PRI,TON
+37089,2.352292,Volatile Organic Compounds,TON
+37075,1.793842e-06,Nitrate portion of PM2.5-PRI,TON
+37075,0.0007302483,PM2.5 Primary (Filt + Cond),TON
+37075,4.447094e-07,Chromium (VI),LB
+37075,0.9323592,"2,2,4-Trimethylpentane",LB
+37075,0.00927213,Phenanthrene,LB
+37075,0.0888094,Naphthalene,LB
+37075,0.001092669,Methane,TON
+37071,2.693614,Propionaldehyde,LB
+37071,0.5382844,Pyrene,LB
+37071,0.002470944,"Benzo[g,h,i,]Perylene",LB
+37071,0.07841956,Chrysene,LB
+37071,0.6594672,Phenanthrene,LB
+37071,53.86452,Acrolein,LB
+37071,3.81499,Pyrene,LB
+37071,0.006754564,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.08888968,Benzo[a]Pyrene,LB
+37071,0.09580156,Manganese,LB
+37071,6.136402,Phenanthrene,LB
+37071,0.7147885,PM10-Primary from certain diesel engines,TON
+37071,0.6906918,PM2.5 Primary (Filt + Cond),TON
+37059,1961.361,"1,3-Butadiene",LB
+37059,262.3354,Acrolein,LB
+37059,293.7152,Propionaldehyde,LB
+37059,4.788028,Benzo[a]Pyrene,LB
+37059,13943.552,Benzene,LB
+37059,0.0686754,Mercury,LB
+37059,77.66102,Phenanthrene,LB
+37059,743.2618,Naphthalene,LB
+37059,10.7506,Ammonia,TON
+37059,5.307978,PM2.5 Primary (Filt + Cond),TON
+37059,2.855558,Sulfur Dioxide,TON
+37051,24.01812,Benzene,LB
+37051,0.09199874,Manganese,LB
+37051,0.03670418,Arsenic,LB
+37051,2.067154,Phenanthrene,LB
+37051,1.1343188,Acenaphthylene,LB
+37051,0.0513244,PM10-Primary from certain diesel engines,TON
+37051,0.01185157,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.0002966249,Nitrate portion of PM2.5-PRI,TON
+37051,2.151146,Nitrogen Oxides,TON
+37051,0.0825345,PM2.5 Primary (Filt + Cond),TON
+37049,1.5833778,Pyrene,LB
+37049,0.3351884,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,962.0232,Benzene,LB
+37049,0.953006,Acenaphthene,LB
+37049,0.01096091,Sulfate Portion of PM2.5-PRI,TON
+37037,31694.64,Xylenes (Mixed Isomers),LB
+37037,5.246678,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,21.00498,Fluoranthene,LB
+37037,3.961356,Benzo[k]Fluoranthene,LB
+37037,1.751594,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,4.263631,Sulfur Dioxide,TON
+37035,17372.166,Hexane,LB
+37035,72.86588,Acenaphthylene,LB
+37035,5.563098,Chrysene,LB
+37035,16722.966,Benzene,LB
+37035,15.967886,Acenaphthene,LB
+37035,3888.996,Carbon Monoxide,TON
+37035,28.19963,Ammonia,TON
+37035,12.25585,PM2.5 Primary (Filt + Cond),TON
+37035,4.021496,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,10.028448,Acrolein,LB
+37171,10.634628,Xylenes (Mixed Isomers),LB
+37171,12.10866,Carbon Monoxide,TON
+37149,0.00013421616,"Dibenzo[a,h]Anthracene",LB
+37149,0.03689748,Fluorene,LB
+37149,0.07751428,Styrene,LB
+37149,0.018402096,Anthracene,LB
+37149,0.0009808226,Benzo[b]Fluoranthene,LB
+37149,0.007784041,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.001290953,Ammonia,TON
+37149,0.0004107811,Sulfate Portion of PM2.5-PRI,TON
+37149,0.03120649,Volatile Organic Compounds,TON
+37157,24.49164,Hexane,LB
+37157,0.4840542,Propionaldehyde,LB
+37157,0.009330928,Benzo[b]Fluoranthene,LB
+37157,9.536006,Acetaldehyde,LB
+37157,0.07391923,PM10 Primary (Filt + Cond),TON
+37157,0.01308634,Sulfur Dioxide,TON
+37155,0.003833164,Acrolein,LB
+37155,8.613116e-05,Chrysene,LB
+37155,0.0788125,Formaldehyde,LB
+37155,0.2195544,Benzene,LB
+37155,0.07836992,Acetaldehyde,LB
+37155,0.0002432842,Acenaphthene,LB
+37153,18.052022,Toluene,LB
+37153,3.336034,Pyrene,LB
+37153,17.107574,Xylenes (Mixed Isomers),LB
+37153,8.175489,Carbon Monoxide,TON
+37153,0.02745228,Sulfate Portion of PM2.5-PRI,TON
+37147,7.45177,Naphthalene,LB
+37147,2672.366,Carbon Dioxide,TON
+37147,132.15404,Hexane,LB
+37147,6.313092e-05,Chromium (VI),LB
+37147,0.0012055834,"Dibenzo[a,h]Anthracene",LB
+37147,112.04714,"2,2,4-Trimethylpentane",LB
+37147,0.04005608,Benz[a]Anthracene,LB
+37147,0.06089228,Manganese,LB
+37147,1.2705896e-07,Chromium (VI),LB
+37147,8.847668e-05,Benzo[b]Fluoranthene,LB
+37147,7.44319e-05,Chrysene,LB
+37147,0.00014968364,Benzo[a]Pyrene,LB
+37147,3.463932e-06,"Dibenzo[a,h]Anthracene",LB
+37147,0.00016059602,Acenaphthene,LB
+37147,0.0008857608,Phenanthrene,LB
+37141,0.18330672,Anthracene,LB
+37141,0.2195087,PM10 Primary (Filt + Cond),TON
+37141,2.686716,Hexane,LB
+37141,0.0009621546,"Benzo[g,h,i,]Perylene",LB
+37141,0.0013134174,Benzo[b]Fluoranthene,LB
+37141,0.014473868,Arsenic,LB
+37141,1089.32,Carbon Dioxide,TON
+37133,0.002008404,Benzo[b]Fluoranthene,LB
+37133,0.0002935582,Benzo[k]Fluoranthene,LB
+37133,0.0389642,Chrysene,LB
+37133,21.51724,Naphthalene,LB
+37121,0.003167838,Manganese,LB
+37121,0.004010954,Nickel,LB
+37121,0.00149859,Arsenic,LB
+37121,0.002519065,PM25-Primary from certain diesel engines,TON
+37121,0.000169444,Nitrous Oxide,TON
+37121,0.2590418,Styrene,LB
+37121,1.0236358,Propionaldehyde,LB
+37123,0.02586356,Benzo[a]Pyrene,LB
+37123,0.0005970244,"Dibenzo[a,h]Anthracene",LB
+37123,0.03777872,Acenaphthene,LB
+37123,0.7452597,Volatile Organic Compounds,TON
+37111,0.003674828,Benz[a]Anthracene,LB
+37111,0.004825908,Manganese,LB
+37111,4.466104e-05,Mercury,LB
+37111,2.86216,Acetaldehyde,LB
+37111,0.5027764,Naphthalene,LB
+37111,0.8932244,"1,3-Butadiene",LB
+37111,0.2176658,Acrolein,LB
+37111,0.003857634,Benzo[k]Fluoranthene,LB
+37111,3.197854,Formaldehyde,LB
+37111,0.1397328,Volatile Organic Compounds,TON
+37107,0.5232536,Chrysene,LB
+37107,2.244489,PM10-Primary from certain diesel engines,TON
+37107,2.065024,PM25-Primary from certain diesel engines,TON
+37107,0.2059143,Sulfur Dioxide,TON
+37085,0.012337762,Anthracene,LB
+37085,0.02792254,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.01471467,Benzo[b]Fluoranthene,LB
+37085,0.01471467,Benzo[k]Fluoranthene,LB
+37085,0.013075222,Nickel,LB
+37085,0.02004878,Arsenic,LB
+37085,0.013282866,Acenaphthene,LB
+37085,0.07556674,Phenanthrene,LB
+37085,0.1100541,Methane,TON
+37085,0.03177112,Nitrous Oxide,TON
+37085,0.09879402,Ammonia,TON
+37085,0.0001008255,Nitrate portion of PM2.5-PRI,TON
+37085,0.001185531,Sulfate Portion of PM2.5-PRI,TON
+37063,0.004948824,Benz[a]Anthracene,LB
+37063,0.01879568,Manganese,LB
+37063,0.0040919,Acenaphthene,LB
+37063,0.01101794,Nitrous Oxide,TON
+37063,0.986351,Propionaldehyde,LB
+37063,0.0043345,Chrysene,LB
+37033,1.660911,Toluene,LB
+37033,0.0010498786,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.000429164,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.0010375734,Benzo[a]Pyrene,LB
+37033,0.0009655342,Arsenic,LB
+37033,0.0013346278,Fluorene,LB
+37021,42.29164,Toluene,LB
+37021,4.417166,Benzene,LB
+37001,0.2541964,Propionaldehyde,LB
+37001,0.006754468,"Benzo[g,h,i,]Perylene",LB
+37001,0.001187816,Nickel,LB
+37001,0.006047434,Phenanthrene,LB
+37001,0.00282874,Nitrous Oxide,TON
+37001,0.00513205,Sulfur Dioxide,TON
+37149,0.076704,Propionaldehyde,LB
+37149,0.5517936,Formaldehyde,LB
+37149,3.483318,Acetaldehyde,LB
+37149,0.003910637,Ammonia,TON
+37149,0.001057577,PM2.5 Primary (Filt + Cond),TON
+37149,0.0003072998,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,39.0809,Ethyl Benzene,LB
+37157,4.962426,Fluoranthene,LB
+37157,0.14679258,Nickel,LB
+37157,2.430164,Acenaphthene,LB
+37157,3.732282,PM10-Primary from certain diesel engines,TON
+37157,5.743238,PM10 Primary (Filt + Cond),TON
+37157,15.246692,Acrolein,LB
+37157,14.457942,Xylenes (Mixed Isomers),LB
+37157,0.010125054,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.2587628,Chrysene,LB
+37157,0.6150476,Acenaphthene,LB
+37157,1.3286282,Fluorene,LB
+37155,1.823049,Ammonia,TON
+37155,0.002035339,Nitrate portion of PM2.5-PRI,TON
+37155,0.225241,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.5394179,Sulfur Dioxide,TON
+37155,27.32324,Acrolein,LB
+37155,0.4594614,Benzo[b]Fluoranthene,LB
+37155,2.15253,Fluoranthene,LB
+37147,2.265416,Acenaphthene,LB
+37147,12.295898,Phenanthrene,LB
+37147,117.6192,Naphthalene,LB
+37147,1.519613,Methane,TON
+37147,531.2753,Carbon Monoxide,TON
+37147,0.002799257,Nitrate portion of PM2.5-PRI,TON
+37143,0.007237747,PM10 Primary (Filt + Cond),TON
+37143,0.07005359,Volatile Organic Compounds,TON
+37143,1.0194262,Acrolein,LB
+37143,0.000120039,"Benzo[g,h,i,]Perylene",LB
+37143,0.000428612,Benzo[a]Pyrene,LB
+37143,0.002992466,Nickel,LB
+37143,0.001514968,Arsenic,LB
+37177,4.721464,"2,2,4-Trimethylpentane",LB
+37197,111.02682,Acrolein,LB
+37197,56.7355,Propionaldehyde,LB
+37197,240.3304,Xylenes (Mixed Isomers),LB
+37197,0.02302374,"Benzo[g,h,i,]Perylene",LB
+37197,0.09150856,Benzo[b]Fluoranthene,LB
+37197,0.000480938,Mercury,LB
+37197,0.13237768,Nickel,LB
+37197,166.28648,Naphthalene,LB
+37197,3.079249,PM25-Primary from certain diesel engines,TON
+37197,0.5956537,Ammonia,TON
+37197,6.986092,Volatile Organic Compounds,TON
+37197,0.1869597,Benzo[a]Pyrene,LB
+37197,25.46516,Benzene,LB
+37197,1.391014,PM10-Primary from certain diesel engines,TON
+37197,32.29381,Nitrogen Oxides,TON
+37197,0.2640061,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.002234204,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.005644178,Nickel,LB
+37147,0.03145564,Nickel,LB
+37147,0.1235663,Methane,TON
+37147,0.7299326,Acenaphthylene,LB
+37147,4.283916,"2,2,4-Trimethylpentane",LB
+37147,0.03847491,PM2.5 Primary (Filt + Cond),TON
+37147,0.01340699,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,1.357069,Acenaphthylene,LB
+37145,0.007196426,"Dibenzo[a,h]Anthracene",LB
+37145,0.12425158,Manganese,LB
+37145,1.7598048,Fluorene,LB
+37145,0.01081279,Nitrous Oxide,TON
+37145,0.1202811,Ammonia,TON
+37145,0.2629963,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.06682956,Sulfur Dioxide,TON
+37145,1.2151532e-08,Chromium (VI),LB
+37145,9.47082e-05,"Benzo[g,h,i,]Perylene",LB
+37145,1.5187864e-06,Nickel,LB
+37145,2.328788e-06,Arsenic,LB
+37145,0.0332723,Acetaldehyde,LB
+37145,8.67483e-05,Methane,TON
+37145,1.72577e-05,Sulfur Dioxide,TON
+37145,0.0019571234,Acrolein,LB
+37145,0.008758604,"Benzo[g,h,i,]Perylene",LB
+37145,7.554652e-05,"Dibenzo[a,h]Anthracene",LB
+37145,7.350036,"2,2,4-Trimethylpentane",LB
+37145,0.00321504,Benz[a]Anthracene,LB
+37145,0.014196926,Acenaphthene,LB
+37145,0.007757681,Methane,TON
+37145,1.371962e-05,Nitrate portion of PM2.5-PRI,TON
+37145,0.002201858,Organic Carbon portion of PM2.5-PRI,TON
+37143,8.224874e-08,Chromium (VI),LB
+37143,1.9393626e-06,"Dibenzo[a,h]Anthracene",LB
+37143,0.0905603,Acetaldehyde,LB
+37143,0.0002591828,Acenaphthene,LB
+37143,4.350077,Carbon Dioxide,TON
+37143,0.0001229271,Nitrous Oxide,TON
+37143,0.0001157095,Ammonia,TON
+37143,0.0001247419,PM2.5 Primary (Filt + Cond),TON
+37115,0.008779822,Nickel,LB
+37115,0.003160678,Arsenic,LB
+37115,409.2309,Carbon Dioxide,TON
+37115,1.299012,Nitrogen Oxides,TON
+37115,0.9495172,Styrene,LB
+37115,0.3671402,Acenaphthylene,LB
+37115,68.45712,Formaldehyde,LB
+37113,2.745194,Propionaldehyde,LB
+37113,0.0006163868,Mercury,LB
+37113,0.007685356,Nickel,LB
+37113,8.558722,Naphthalene,LB
+37095,53.89008,"1,3-Butadiene",LB
+37095,1513.958,Toluene,LB
+37095,0.1069278,Chrysene,LB
+37095,0.352488,Acenaphthene,LB
+37095,82.11383,Carbon Monoxide,TON
+37095,0.1901388,PM2.5 Primary (Filt + Cond),TON
+37079,0.0009960854,Styrene,LB
+37079,0.15936326,Toluene,LB
+37079,0.0002266574,Phenanthrene,LB
+37079,0.2237845,Carbon Dioxide,TON
+37081,1.7299476,Styrene,LB
+37081,0.00407093,Benzo[k]Fluoranthene,LB
+37081,12.67623,Benzene,LB
+37081,4273.242,Carbon Dioxide,TON
+37077,62.58072,Formaldehyde,LB
+37077,0.1993512,Anthracene,LB
+37077,1.7730774e-05,Chromium (VI),LB
+37077,0.1580931,PM25-Primary from certain diesel engines,TON
+37077,0.1029749,Elemental Carbon portion of PM2.5-PRI,TON
+37077,5.289553,Nitrogen Oxides,TON
+37077,0.9423522,Styrene,LB
+37077,5.597448,Acrolein,LB
+37077,0.00645973,Arsenic,LB
+37077,31.37156,Acetaldehyde,LB
+37077,0.374979,Fluorene,LB
+37077,7.871154,Naphthalene,LB
+37077,0.01388825,PM25-Primary from certain diesel engines,TON
+37077,0.0006390983,Nitrous Oxide,TON
+37077,0.004253115,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,70.17018,Carbon Dioxide,TON
+37075,0.01276962,PM25-Primary from certain diesel engines,TON
+37075,0.003042928,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.01342821,PM2.5 Primary (Filt + Cond),TON
+37075,0.006824918,Benz[a]Anthracene,LB
+37075,0.00019809848,Arsenic,LB
+37075,0.009508288,Acenaphthene,LB
+37075,0.00169103,Methane,TON
+37063,98.34538,Acrolein,LB
+37063,13.819234,Pyrene,LB
+37063,10.401194,Fluoranthene,LB
+37063,0.0435413,"Dibenzo[a,h]Anthracene",LB
+37063,117.15276,Benzene,LB
+37063,0.18585624,Nickel,LB
+37063,3.328218e-06,Manganese,LB
+37063,8.777848e-06,Phenanthrene,LB
+37063,6.205863e-06,Ammonia,TON
+37063,1.115243e-08,Nitrate portion of PM2.5-PRI,TON
+37063,0.0007972418,Ethyl Benzene,LB
+37063,6.698902e-08,"Dibenzo[a,h]Anthracene",LB
+37063,1.3563252e-06,Benz[a]Anthracene,LB
+37053,3.044976,Styrene,LB
+37053,7.048436,"1,3-Butadiene",LB
+37053,18.821088,Acrolein,LB
+37053,106.45264,Acetaldehyde,LB
+37053,0.6118364,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.2299309,Organic Carbon portion of PM2.5-PRI,TON
+37053,1.482402,PM10 Primary (Filt + Cond),TON
+37053,0.1153729,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.07223381,Sulfur Dioxide,TON
+37053,1.333122,Volatile Organic Compounds,TON
+37065,0.8776366,Benzene,LB
+37065,0.0009486062,Methane,TON
+37065,4.292717,Carbon Dioxide,TON
+37065,0.0017572136,Pyrene,LB
+37065,0.0010752068,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.001354205,PM10 Primary (Filt + Cond),TON
+37065,0.001027507,PM2.5 Primary (Filt + Cond),TON
+37065,0.01568241,Volatile Organic Compounds,TON
+37063,0.008799086,Acetaldehyde,LB
+37063,2.851671e-05,Methane,TON
+37063,7.007785e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37063,1.742924e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.002621972,"1,3-Butadiene",LB
+37063,2.298112e-05,Benzo[b]Fluoranthene,LB
+37063,0.00014719336,Acenaphthylene,LB
+37063,1.8541578e-05,Chrysene,LB
+37043,0.16102372,Fluorene,LB
+37043,2.694484,Naphthalene,LB
+37043,0.05663272,PM10-Primary from certain diesel engines,TON
+37043,0.05210078,PM25-Primary from certain diesel engines,TON
+37031,9.33554,Acrolein,LB
+37031,10.834798,Xylenes (Mixed Isomers),LB
+37031,0.0003455062,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.4409166,Fluoranthene,LB
+37031,0.00019331,Benzo[k]Fluoranthene,LB
+37031,0.3522002,Acenaphthene,LB
+37031,0.6030834,Fluorene,LB
+37031,0.09576089,Methane,TON
+37031,0.01794899,PM25-Primary from certain diesel engines,TON
+37031,0.001724727,Nitrous Oxide,TON
+37031,0.0001326366,Nitrate portion of PM2.5-PRI,TON
+37025,8.409992,Acrolein,LB
+37025,2.877228,Hexane,LB
+37025,1.0610726,Pyrene,LB
+37025,3.205798e-05,Chromium (VI),LB
+37025,0.00491033,"Benzo[g,h,i,]Perylene",LB
+37025,0.2640476,Benz[a]Anthracene,LB
+37025,4.558899,Nitrogen Oxides,TON
+37025,0.4825436,PM10 Primary (Filt + Cond),TON
+37025,0.009880858,Elemental Carbon portion of PM2.5-PRI,TON
+37025,19.127466,Acrolein,LB
+37025,0.5855048,Anthracene,LB
+37025,259.1512,Formaldehyde,LB
+37025,0.0004623972,"Dibenzo[a,h]Anthracene",LB
+37025,0.007882516,Sulfate Portion of PM2.5-PRI,TON
+37021,27.41597,PM10 Primary (Filt + Cond),TON
+37021,367.315,Acrolein,LB
+37021,619.1398,Toluene,LB
+37021,0.0010513236,Chromium (VI),LB
+37021,2224.43,Acetaldehyde,LB
+37021,544.8654,Naphthalene,LB
+37019,6.114014,Anthracene,LB
+37019,0.7804478,Chrysene,LB
+37019,0.008878316,"Dibenzo[a,h]Anthracene",LB
+37019,1.645047,Benz[a]Anthracene,LB
+37019,0.0004826602,Mercury,LB
+37019,960.4244,Acetaldehyde,LB
+37019,2.414658,Acrolein,LB
+37019,0.11957144,"Benzo[g,h,i,]Perylene",LB
+37019,0.03361358,Benzo[b]Fluoranthene,LB
+37019,0.008700486,Nickel,LB
+37019,0.2437248,Fluorene,LB
+37019,2709.276,Carbon Dioxide,TON
+37019,2.877264,"1,3-Butadiene",LB
+37019,0.00410311,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.03654112,PM2.5 Primary (Filt + Cond),TON
+37019,0.01390976,Mercury,LB
+37019,0.8890234,Nitrous Oxide,TON
+37019,0.2284417,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,3203.41,Xylenes (Mixed Isomers),LB
+37019,0.3849322,Benzo[b]Fluoranthene,LB
+37019,0.01815002,Sulfate Portion of PM2.5-PRI,TON
+37015,1.2155252,Hexane,LB
+37015,8.529862e-05,Manganese,LB
+37015,3.616477,Carbon Dioxide,TON
+37015,1.612923e-06,Nitrate portion of PM2.5-PRI,TON
+37015,0.0001351963,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.03892278,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.01128984,"Benzo[g,h,i,]Perylene",LB
+37009,920.92,Formaldehyde,LB
+37009,0.05271872,Benzo[a]Pyrene,LB
+37009,0.00217427,"Dibenzo[a,h]Anthracene",LB
+37009,0.0015510732,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,1.8087548,Acetaldehyde,LB
+37009,0.2581456,Naphthalene,LB
+37009,67.17644,Carbon Dioxide,TON
+37009,0.07510147,Volatile Organic Compounds,TON
+37001,0.003702454,"Benzo[g,h,i,]Perylene",LB
+37001,0.003751892,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.002038066,Benzo[k]Fluoranthene,LB
+37001,0.10890978,Chrysene,LB
+37001,0.006736068,Arsenic,LB
+37001,15.881278,Naphthalene,LB
+37001,2063.124,Carbon Dioxide,TON
+37055,2.08945,Ethyl Benzene,LB
+37055,0.159745,Volatile Organic Compounds,TON
+37175,0.10131954,Styrene,LB
+37175,44.62486,Acetaldehyde,LB
+37175,0.007095088,Fluorene,LB
+37175,0.02920375,PM10 Primary (Filt + Cond),TON
+37175,0.007854931,PM2.5 Primary (Filt + Cond),TON
+37175,0.2226274,Volatile Organic Compounds,TON
+37163,0.3665136,Styrene,LB
+37163,33.8937,Benzene,LB
+37163,0.02907021,PM2.5 Primary (Filt + Cond),TON
+37193,1.381787e-05,Sulfate Portion of PM2.5-PRI,TON
+37189,10.45689,Formaldehyde,LB
+37189,0.006796066,Arsenic,LB
+37189,64.43008,Acetaldehyde,LB
+37189,0.02994364,Phenanthrene,LB
+37189,0.5814986,Nitrogen Oxides,TON
+37189,0.006260415,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.0011780058,Anthracene,LB
+37191,0.002012228,Fluoranthene,LB
+37191,0.4463652,Formaldehyde,LB
+37191,0.0005342986,Benzo[a]Pyrene,LB
+37191,8.137694e-05,Manganese,LB
+37191,0.0013769784,Acenaphthene,LB
+37191,0.0715004,Naphthalene,LB
+37187,0.002267812,Acenaphthene,LB
+37187,0.0008819362,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.010124502,"Benzo[g,h,i,]Perylene",LB
+37187,4.847148,Formaldehyde,LB
+37183,0.0074063,Benzo[b]Fluoranthene,LB
+37183,0.005750832,Chrysene,LB
+37183,0.0153781,Fluorene,LB
+37179,20.78594,Styrene,LB
+37179,46.96096,"1,3-Butadiene",LB
+37179,0.0533313,Benzo[k]Fluoranthene,LB
+37179,1437.0582,Formaldehyde,LB
+37179,1.3029372,Benzo[a]Pyrene,LB
+37179,0.0002928218,Mercury,LB
+37179,10.872684,Fluorene,LB
+37179,4.290956,Elemental Carbon portion of PM2.5-PRI,TON
+37179,10.5708,PM10 Primary (Filt + Cond),TON
+37177,0.0011035304,Pyrene,LB
+37177,0.0012988938,Fluorene,LB
+37177,8.74087e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.0002629514,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.0003219464,Sulfur Dioxide,TON
+37019,0.08627768,Anthracene,LB
+37019,0.0010694126,"Benzo[g,h,i,]Perylene",LB
+37019,0.005168628,Benzo[b]Fluoranthene,LB
+37019,0.017335786,Benzo[a]Pyrene,LB
+37019,0.00250488,Nickel,LB
+37019,0.05835445,PM10-Primary from certain diesel engines,TON
+37019,0.1401035,Volatile Organic Compounds,TON
+37011,1.5626814,Ethyl Benzene,LB
+37011,0.284831,Fluoranthene,LB
+37011,0.1658574,Acenaphthene,LB
+37011,0.06310281,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.005831823,Ammonia,TON
+37011,0.1004927,PM2.5 Primary (Filt + Cond),TON
+37011,0.2844135,Volatile Organic Compounds,TON
+37011,1.8625942,Styrene,LB
+37011,3.111916,Hexane,LB
+37011,1.3274852,Pyrene,LB
+37011,123.74554,Formaldehyde,LB
+37011,0.3666717,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.017993136,Pyrene,LB
+37023,0.010831058,Benzo[b]Fluoranthene,LB
+37023,9.570046,"2,2,4-Trimethylpentane",LB
+37023,0.004911071,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.004070386,Styrene,LB
+37003,0.00012586908,Anthracene,LB
+37003,4.19446e-06,"Dibenzo[a,h]Anthracene",LB
+37003,6.057298e-06,Mercury,LB
+37003,0.007324594,Naphthalene,LB
+37003,6.525082e-07,Nitrate portion of PM2.5-PRI,TON
+37003,0.0002738784,PM2.5 Primary (Filt + Cond),TON
+37079,0.1627866,PM10 Primary (Filt + Cond),TON
+37079,1.8052478,Styrene,LB
+37079,10.017906,Acrolein,LB
+37079,0.3409048,Anthracene,LB
+37079,0.5494534,Fluoranthene,LB
+37079,0.0004533928,Benzo[k]Fluoranthene,LB
+37079,127.343,Formaldehyde,LB
+37079,3.154604e-05,Mercury,LB
+37081,106.83258,Ethyl Benzene,LB
+37081,0.0007591018,Chromium (VI),LB
+37081,0.16317362,"Benzo[g,h,i,]Perylene",LB
+37081,0.11178616,Benzo[k]Fluoranthene,LB
+37081,10.69361,Acenaphthene,LB
+37081,85.84189,Carbon Monoxide,TON
+37071,0.0012765472,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.1690762,Fluoranthene,LB
+37071,2.038028,Benzene,LB
+37071,0.0010196934,Arsenic,LB
+37071,0.01003772,Methane,TON
+37071,0.0048698,Ammonia,TON
+37071,0.001844564,Sulfate Portion of PM2.5-PRI,TON
+37071,2.690581,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.7502964,Ammonia,TON
+37071,141.0254,Ethyl Benzene,LB
+37071,64.45446,Styrene,LB
+37071,105.86412,Hexane,LB
+37071,0.5888776,Nickel,LB
+37069,273.1132,Acrolein,LB
+37069,3.588222,Benzo[b]Fluoranthene,LB
+37069,3.703588,Chrysene,LB
+37069,4.410348,Benzo[a]Pyrene,LB
+37069,30.10858,Fluorene,LB
+37069,7.683566,Methane,TON
+37069,7.734569,Nitrous Oxide,TON
+37069,5.251146,PM2.5 Primary (Filt + Cond),TON
+37069,1.525282,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,3.499894,PM10-Primary from certain diesel engines,TON
+37063,62.73977,Nitrogen Oxides,TON
+37063,1.311638,Organic Carbon portion of PM2.5-PRI,TON
+37063,64.74582,Propionaldehyde,LB
+37063,575.8074,Acetaldehyde,LB
+37063,3.854938,Acenaphthene,LB
+37059,0.931471,Propionaldehyde,LB
+37059,0.0013772618,Arsenic,LB
+37059,0.1206316,PM10 Primary (Filt + Cond),TON
+37059,0.004413241,Sulfur Dioxide,TON
+37059,0.003641054,Sulfate Portion of PM2.5-PRI,TON
+37065,0.1482289,Acenaphthylene,LB
+37065,2.67626,Benzene,LB
+37065,0.005586487,PM10-Primary from certain diesel engines,TON
+37065,0.001178615,Elemental Carbon portion of PM2.5-PRI,TON
+37065,3.808605e-05,Nitrate portion of PM2.5-PRI,TON
+37065,0.002944744,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.002323241,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.11504228,Pyrene,LB
+37065,160.16878,Xylenes (Mixed Isomers),LB
+37065,2.765866e-05,Chromium (VI),LB
+37065,22.24306,Formaldehyde,LB
+37065,0.0002772604,Mercury,LB
+37065,0.00530108,Arsenic,LB
+37065,0.05122148,Methane,TON
+37065,0.007419596,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.1223403,PM10 Primary (Filt + Cond),TON
+37065,0.04277537,PM2.5 Primary (Filt + Cond),TON
+37065,0.01483559,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,5.449154,Toluene,LB
+37061,3.342596,Propionaldehyde,LB
+37061,0.0007542436,"Benzo[g,h,i,]Perylene",LB
+37061,0.2577116,Fluoranthene,LB
+37061,0.017801526,Chrysene,LB
+37061,70.25236,Formaldehyde,LB
+37061,0.01634755,Manganese,LB
+37061,3.86148e-05,Mercury,LB
+37061,613.6769,Carbon Dioxide,TON
+37061,0.01435896,PM10-Primary from certain diesel engines,TON
+37045,0.07467492,Hexane,LB
+37045,9.120532e-07,"Dibenzo[a,h]Anthracene",LB
+37045,0.0882839,Benzene,LB
+37045,0.02978334,Acetaldehyde,LB
+37045,0.000475544,Phenanthrene,LB
+37045,1.170522e-05,Ammonia,TON
+37045,2.087918e-05,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.00010377518,Benzo[b]Fluoranthene,LB
+37039,0.0899252,Formaldehyde,LB
+37039,0.2820834,Benzene,LB
+37037,4.444969e-05,Nitrous Oxide,TON
+37037,0.008417458,Nitrogen Oxides,TON
+37037,8.904579e-05,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.001792652,Volatile Organic Compounds,TON
+37037,0.002482838,Styrene,LB
+37037,0.2995302,Toluene,LB
+37037,0.0002169718,Pyrene,LB
+37037,0.0425074,Formaldehyde,LB
+37037,7.753068e-05,Benz[a]Anthracene,LB
+37035,23.89246,Ethyl Benzene,LB
+37035,0.2118294,Acenaphthylene,LB
+37035,0.01989538,Ammonia,TON
+37025,59.0294,Propionaldehyde,LB
+37025,0.01434301,Nitrate portion of PM2.5-PRI,TON
+37025,0.3992303,Sulfur Dioxide,TON
+37025,112.1755,"2,2,4-Trimethylpentane",LB
+37025,11.101378,"2,2,4-Trimethylpentane",LB
+37025,0.009685209,Methane,TON
+37025,409.8828,Carbon Dioxide,TON
+37025,0.14346794,Fluoranthene,LB
+37025,42.61457,Carbon Monoxide,TON
+37025,0.007161826,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.05986278,PM2.5 Primary (Filt + Cond),TON
+37007,0.012907756,Anthracene,LB
+37007,0.005377348,Benzo[a]Pyrene,LB
+37007,7.803226,"2,2,4-Trimethylpentane",LB
+37007,0.004148862,Benz[a]Anthracene,LB
+37007,8.744929,Carbon Monoxide,TON
+37001,10.516808,Hexane,LB
+37001,2.01907,Pyrene,LB
+37001,1.6604914,Fluoranthene,LB
+37001,0.0009708868,"Dibenzo[a,h]Anthracene",LB
+37001,178.96538,Acetaldehyde,LB
+37001,2306.429,Carbon Dioxide,TON
+37001,3.453303,Nitrogen Oxides,TON
+37001,0.010480408,Phenanthrene,LB
+37001,0.0002398074,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.000212682,Sulfur Dioxide,TON
+37001,0.001664515,Anthracene,LB
+37001,0.04109788,Propionaldehyde,LB
+37001,4.450596,Xylenes (Mixed Isomers),LB
+37001,1.474497e-07,Chromium (VI),LB
+37189,0.06312178,Benzo[b]Fluoranthene,LB
+37189,0.008974624,Benzo[k]Fluoranthene,LB
+37189,35.93426,Benzene,LB
+37189,1.0216764,Acenaphthene,LB
+37189,2.886842,PM10 Primary (Filt + Cond),TON
+37189,2.038956,Volatile Organic Compounds,TON
+37183,2.07151,Manganese,LB
+37183,99.97638,"1,3-Butadiene",LB
+37183,443.3802,Xylenes (Mixed Isomers),LB
+37183,7.833746,PM25-Primary from certain diesel engines,TON
+37183,1.881615,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.4618904,PM25-Primary from certain diesel engines,TON
+37199,0.3673086,Elemental Carbon portion of PM2.5-PRI,TON
+37199,11.74673,Nitrogen Oxides,TON
+37199,0.03885226,Benzo[a]Pyrene,LB
+37199,3495.048,Toluene,LB
+37199,817.6892,"2,2,4-Trimethylpentane",LB
+37195,3.200924,Ethyl Benzene,LB
+37115,0.010282726,Acrolein,LB
+37115,0.0007067726,Pyrene,LB
+37115,3.866535e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.0001922354,Ammonia,TON
+37115,0.0002397361,PM2.5 Primary (Filt + Cond),TON
+37109,1.1975164,Phenanthrene,LB
+37109,0.7145794,Fluorene,LB
+37109,1590.533,Carbon Dioxide,TON
+37109,8.196988,Nitrogen Oxides,TON
+37109,1.5993952,Styrene,LB
+37109,9.15262,Acrolein,LB
+37109,0.6648636,Fluoranthene,LB
+37109,0.00181541,Benzo[k]Fluoranthene,LB
+37109,118.84486,Formaldehyde,LB
+37109,0.16991754,Benz[a]Anthracene,LB
+37109,54.06966,Hexane,LB
+37109,2217.134,Ethyl Benzene,LB
+37101,0.03621771,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.0016532068,"Benzo[g,h,i,]Perylene",LB
+37101,0.2902424,Fluoranthene,LB
+37101,0.02649252,Benzo[a]Pyrene,LB
+37095,0.001392136,Arsenic,LB
+37095,0.1634085,PM10-Primary from certain diesel engines,TON
+37095,0.150332,PM25-Primary from certain diesel engines,TON
+37095,0.09856634,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.0004513094,Nitrate portion of PM2.5-PRI,TON
+37095,0.1955512,Volatile Organic Compounds,TON
+37095,1.09024,Ethyl Benzene,LB
+37095,0.08554128,Benz[a]Anthracene,LB
+37083,1.0409824,Ethyl Benzene,LB
+37083,5.236062,Toluene,LB
+37083,0.01148855,Phenanthrene,LB
+37083,0.0009229199,Methane,TON
+37083,0.03031756,Volatile Organic Compounds,TON
+37053,0.05690956,Benzo[b]Fluoranthene,LB
+37053,0.3654932,Chrysene,LB
+37053,7.177484,"2,2,4-Trimethylpentane",LB
+37053,0.2723289,Organic Carbon portion of PM2.5-PRI,TON
+37053,647.6116,Formaldehyde,LB
+37053,1998.369,"2,2,4-Trimethylpentane",LB
+37053,2360.57,Benzene,LB
+37053,4.216241,PM10 Primary (Filt + Cond),TON
+37053,45.03307,Volatile Organic Compounds,TON
+37053,344.972,"1,3-Butadiene",LB
+37051,1502.6422,Ethyl Benzene,LB
+37051,50.07636,Acrolein,LB
+37051,2071.482,Hexane,LB
+37051,5541.528,Xylenes (Mixed Isomers),LB
+37051,2.750106,"Benzo[g,h,i,]Perylene",LB
+37051,2567.058,Benzene,LB
+37051,54381.52,Carbon Dioxide,TON
+37029,0.005051614,Nickel,LB
+37029,1.745579,Carbon Monoxide,TON
+37029,0.0265939,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.0006679749,Nitrous Oxide,TON
+37029,0.04504838,PM10 Primary (Filt + Cond),TON
+37029,9.228976e-06,Chromium (VI),LB
+37029,0.00013079868,Benzo[k]Fluoranthene,LB
+37023,2.856722,Formaldehyde,LB
+37023,9.216238,Benzene,LB
+37023,0.00430703,Manganese,LB
+37023,0.02385598,PM10 Primary (Filt + Cond),TON
+37023,0.909852,"1,3-Butadiene",LB
+37171,1.2067186e-06,Mercury,LB
+37171,5.898727e-06,Nitrate portion of PM2.5-PRI,TON
+37171,0.09355824,Volatile Organic Compounds,TON
+37171,11.637048,Xylenes (Mixed Isomers),LB
+37171,0.0014417692,Chrysene,LB
+37171,2.77281,Chrysene,LB
+37171,0.11310724,"Dibenzo[a,h]Anthracene",LB
+37171,1921.055,Carbon Monoxide,TON
+37171,213.8911,Nitrogen Oxides,TON
+37171,0.158941,Sulfate Portion of PM2.5-PRI,TON
+37167,43.44672,Naphthalene,LB
+37167,0.08868098,Ammonia,TON
+37167,2.314355,Volatile Organic Compounds,TON
+37165,0.00589766,Benzo[k]Fluoranthene,LB
+37165,8.870165e-05,Nitrous Oxide,TON
+37165,0.0011205072,Benzo[b]Fluoranthene,LB
+37165,0.5129938,Benzene,LB
+37165,8.91457e-07,Mercury,LB
+37165,2.354738,Acetaldehyde,LB
+37165,0.00949343,Formaldehyde,LB
+37153,27285.74,Xylenes (Mixed Isomers),LB
+37153,12192.854,Benzene,LB
+37153,353.7263,Nitrogen Oxides,TON
+37153,4.385341,PM2.5 Primary (Filt + Cond),TON
+37135,0.07388942,Benzo[a]Pyrene,LB
+37135,0.003022166,"Dibenzo[a,h]Anthracene",LB
+37135,0.641977,Fluorene,LB
+37135,10.216052,Naphthalene,LB
+37135,2.020032,Carbon Monoxide,TON
+37135,0.001277829,Nitrate portion of PM2.5-PRI,TON
+37135,0.2760692,PM2.5 Primary (Filt + Cond),TON
+37135,0.51924,Volatile Organic Compounds,TON
+37131,0.003542841,PM2.5 Primary (Filt + Cond),TON
+37131,0.0001063432,Sulfate Portion of PM2.5-PRI,TON
+37131,0.07130516,Styrene,LB
+37131,0.05835244,Acrolein,LB
+37131,0.005431696,Pyrene,LB
+37131,0.003191722,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,3.240816,Benzene,LB
+37131,4.606924,Pyrene,LB
+37131,2822.352,Benzene,LB
+37131,0.03884286,Mercury,LB
+37131,0.5334424,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.03435408,Acenaphthene,LB
+37117,1.783534,Naphthalene,LB
+37117,0.003133719,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.02754024,Nitrous Oxide,TON
+37117,23.16216,Ethyl Benzene,LB
+37117,85.84606,Xylenes (Mixed Isomers),LB
+37117,0.02978224,"Benzo[g,h,i,]Perylene",LB
+37125,0.4362524,Toluene,LB
+37125,9.549456e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,5.314986e-05,Chrysene,LB
+37125,5.667228e-05,Benz[a]Anthracene,LB
+37125,7.330932e-07,Mercury,LB
+37125,0.0007754742,Phenanthrene,LB
+37125,0.007359148,Naphthalene,LB
+37125,0.002447003,Volatile Organic Compounds,TON
+37123,0.0001527938,Nitrate portion of PM2.5-PRI,TON
+37123,1.89071,Nitrogen Oxides,TON
+37123,2.228114,Hexane,LB
+37123,6.039848,Xylenes (Mixed Isomers),LB
+37123,0.002174812,Benzo[b]Fluoranthene,LB
+37123,0.02850092,Chrysene,LB
+37123,0.0105508,Manganese,LB
+37123,0.0047806,Arsenic,LB
+37123,9.691766,Naphthalene,LB
+37123,613.1238,Carbon Dioxide,TON
+37109,1.3612504,Ethyl Benzene,LB
+37109,3.099406,Acrolein,LB
+37109,1.4293876e-05,Chromium (VI),LB
+37109,0.2940458,Fluoranthene,LB
+37109,0.19968268,Acenaphthylene,LB
+37109,0.001216475,"Dibenzo[a,h]Anthracene",LB
+37109,0.006412922,Nickel,LB
+37109,0.00336451,Arsenic,LB
+37109,0.1091306,PM10-Primary from certain diesel engines,TON
+37109,1.655829,Nitrogen Oxides,TON
+37109,0.004553532,Sulfur Dioxide,TON
+37109,0.005258913,Sulfate Portion of PM2.5-PRI,TON
+37103,0.00878781,Manganese,LB
+37103,0.3160042,Fluorene,LB
+37103,0.1284109,PM10-Primary from certain diesel engines,TON
+37103,0.05213947,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.04704746,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.1530836,PM10 Primary (Filt + Cond),TON
+37103,0.1213289,PM2.5 Primary (Filt + Cond),TON
+37103,0.002546659,Sulfur Dioxide,TON
+37103,0.00229294,Sulfate Portion of PM2.5-PRI,TON
+37103,0.6332858,Styrene,LB
+37103,3.403496,Acrolein,LB
+37103,2.613478,Xylenes (Mixed Isomers),LB
+37103,0.002565272,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.2435546,Acenaphthylene,LB
+37103,42.26382,Formaldehyde,LB
+37093,0.02533012,Hexane,LB
+37093,0.0006060758,Propionaldehyde,LB
+37093,4.325738e-05,Fluoranthene,LB
+37093,2.617032e-07,Nickel,LB
+37093,0.0015496526,Naphthalene,LB
+37091,0.000996854,Arsenic,LB
+37091,5.259462,Acetaldehyde,LB
+37091,0.084575,Phenanthrene,LB
+37091,0.8096416,Naphthalene,LB
+37091,6.675493,Carbon Monoxide,TON
+37091,0.01303164,Nitrous Oxide,TON
+37091,1.590168e-05,Nitrate portion of PM2.5-PRI,TON
+37091,0.3092886,Propionaldehyde,LB
+37091,0.02583568,Pyrene,LB
+37091,0.07099024,Acenaphthylene,LB
+37089,25.91714,Hexane,LB
+37089,0.406725,Propionaldehyde,LB
+37089,0.011986226,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.02073746,Acenaphthene,LB
+37089,0.002173182,Elemental Carbon portion of PM2.5-PRI,TON
+37087,28.19958,Benzene,LB
+37073,0.007637632,Fluorene,LB
+37073,0.0002779827,Elemental Carbon portion of PM2.5-PRI,TON
+37081,382.398,Toluene,LB
+37081,323.3808,Propionaldehyde,LB
+37081,0.0015264898,Chromium (VI),LB
+37081,0.19437736,Benzo[b]Fluoranthene,LB
+37081,2.234212,Chrysene,LB
+37081,5.363361,PM25-Primary from certain diesel engines,TON
+37081,0.1115799,Nitrous Oxide,TON
+37081,0.01254981,Nitrate portion of PM2.5-PRI,TON
+37081,0.1945865,Sulfate Portion of PM2.5-PRI,TON
+37075,0.3069834,Propionaldehyde,LB
+37075,0.004553182,Benzo[a]Pyrene,LB
+37075,0.00018582756,"Dibenzo[a,h]Anthracene",LB
+37075,0.014774384,Benz[a]Anthracene,LB
+37075,0.0147465,PM25-Primary from certain diesel engines,TON
+37073,467.3956,Hexane,LB
+37069,11.57764,"1,3-Butadiene",LB
+37069,5.019118,Acrolein,LB
+37069,0.2586684,"Benzo[g,h,i,]Perylene",LB
+37069,0.07291688,Benzo[b]Fluoranthene,LB
+37069,361.0186,Benzene,LB
+37069,0.2622872,Acenaphthene,LB
+37069,0.5313218,Fluorene,LB
+37069,0.1216843,Methane,TON
+37069,64.68206,Carbon Monoxide,TON
+37069,0.09722734,PM2.5 Primary (Filt + Cond),TON
+37059,0.003476736,Nitrate portion of PM2.5-PRI,TON
+37059,20.7995,Acrolein,LB
+37059,0.9728188,Anthracene,LB
+37059,0.2012524,Benzo[a]Pyrene,LB
+37059,6.233014,"2,2,4-Trimethylpentane",LB
+37119,25.98908,Ethyl Benzene,LB
+37115,5.63936e-06,Mercury,LB
+37115,0.00014622036,Fluorene,LB
+37115,9.276114e-05,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.017400722,Propionaldehyde,LB
+37083,0.0017991264,Benzo[k]Fluoranthene,LB
+37083,0.001433018,Acenaphthene,LB
+37079,0.003172846,Benzo[k]Fluoranthene,LB
+37079,0.015826322,Acenaphthylene,LB
+37079,0.00343318,Acenaphthene,LB
+37079,0.002271557,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.000210439,Sulfate Portion of PM2.5-PRI,TON
+37079,0.2176244,Volatile Organic Compounds,TON
+37175,0.006326587,PM25-Primary from certain diesel engines,TON
+37175,0.001246036,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.10412556,Styrene,LB
+37175,0.19718498,Hexane,LB
+37175,0.07990694,Pyrene,LB
+37175,2.181552e-06,Chromium (VI),LB
+37175,0.0003673306,"Benzo[g,h,i,]Perylene",LB
+37175,0.04039872,Acenaphthylene,LB
+37175,0.0002519848,"Dibenzo[a,h]Anthracene",LB
+37175,0.019787622,Benz[a]Anthracene,LB
+37175,3.346092,Acetaldehyde,LB
+37175,0.004172453,Methane,TON
+37169,0.02874998,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.0210094,Benzo[b]Fluoranthene,LB
+37169,0.1053521,Fluoranthene,LB
+37169,0.002105002,Nickel,LB
+37169,677.1839,Carbon Dioxide,TON
+37169,0.05857456,Nitrous Oxide,TON
+37169,0.01511651,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.07743713,PM10 Primary (Filt + Cond),TON
+37169,0.01419911,Sulfur Dioxide,TON
+37169,1.817291e-05,Nitrate portion of PM2.5-PRI,TON
+37169,0.012686008,Anthracene,LB
+37169,0.003976858,Chrysene,LB
+37169,3.915204e-05,Mercury,LB
+37169,0.000748543,Arsenic,LB
+37169,8.607016,Carbon Monoxide,TON
+37169,213.6177,Carbon Dioxide,TON
+37167,0.5468106,Pyrene,LB
+37167,0.0917286,Chrysene,LB
+37167,0.02555066,Manganese,LB
+37163,0.03034644,"Benzo[g,h,i,]Perylene",LB
+37163,0.02837654,Fluoranthene,LB
+37163,0.00666239,Chrysene,LB
+37163,0.007049426,Benz[a]Anthracene,LB
+37163,0.0004652556,Nickel,LB
+37163,0.0003484428,Sulfate Portion of PM2.5-PRI,TON
+37163,0.5022198,Volatile Organic Compounds,TON
+37161,4.068362,Toluene,LB
+37161,0.04962382,Chrysene,LB
+37161,26.6673,Acetaldehyde,LB
+37161,4.669221,Nitrogen Oxides,TON
+37161,0.3568779,Volatile Organic Compounds,TON
+37157,0.0007224294,Benz[a]Anthracene,LB
+37157,0.009734632,Phenanthrene,LB
+37157,0.000213671,Sulfur Dioxide,TON
+37157,3.550207e-05,Sulfate Portion of PM2.5-PRI,TON
+37157,0.02802444,Acrolein,LB
+37157,0.0015432928,Anthracene,LB
+37157,0.00326608,"Benzo[g,h,i,]Perylene",LB
+37157,0.0006764852,Chrysene,LB
+37157,2.815872e-05,"Dibenzo[a,h]Anthracene",LB
+37157,1.3833128,"2,2,4-Trimethylpentane",LB
+37139,4.343764,Acrolein,LB
+37139,0.17384002,Anthracene,LB
+37139,3.404448,Xylenes (Mixed Isomers),LB
+37139,0.0015644384,"Benzo[g,h,i,]Perylene",LB
+37139,0.01700865,Manganese,LB
+37125,13.71111,Xylenes (Mixed Isomers),LB
+37125,4.545856e-05,Mercury,LB
+37125,0.5494572,Acenaphthene,LB
+37125,0.2402274,PM10 Primary (Filt + Cond),TON
+37125,0.01565397,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.2926174,Hexane,LB
+37069,0.0015292494,"Benzo[g,h,i,]Perylene",LB
+37069,0.0005745484,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.0003052944,Benzo[k]Fluoranthene,LB
+37069,0.0002358524,Chrysene,LB
+37069,40.3065,Carbon Dioxide,TON
+37069,0.0001632102,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.17950772,Ethyl Benzene,LB
+37065,0.7457392,Toluene,LB
+37065,0.3454054,"2,2,4-Trimethylpentane",LB
+37065,0.8919322,Benzene,LB
+37065,0.000306115,Acenaphthene,LB
+37065,0.4523329,Carbon Monoxide,TON
+37065,0.00299422,Ammonia,TON
+37065,0.001865762,Sulfur Dioxide,TON
+37065,0.0217002,Volatile Organic Compounds,TON
+37061,6.678892e-06,Chromium (VI),LB
+37061,0.0006035188,Chrysene,LB
+37061,1.8319804,Benzene,LB
+37061,0.0012667256,Fluorene,LB
+37061,111.6177,Carbon Dioxide,TON
+37061,0.0003597486,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.002044672,PM2.5 Primary (Filt + Cond),TON
+37049,25.16198,Toluene,LB
+37171,21.27826,Toluene,LB
+37165,8.711734,Toluene,LB
+37165,3.40685,Hexane,LB
+37165,3.188206e-05,Chromium (VI),LB
+37165,7.989558,Formaldehyde,LB
+37165,0.00019003504,"Dibenzo[a,h]Anthracene",LB
+37165,0.02171404,Phenanthrene,LB
+37165,0.005326179,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.04141161,PM10 Primary (Filt + Cond),TON
+37147,38.9064,Toluene,LB
+37147,4.540686,Hexane,LB
+37147,16.529988,Xylenes (Mixed Isomers),LB
+37147,0.3727996,Volatile Organic Compounds,TON
+37171,73.95808,Hexane,LB
+37171,0.02011172,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,2940.19,Formaldehyde,LB
+37171,284.3562,Benzene,LB
+37171,0.3564168,Manganese,LB
+37171,0.438978,Nickel,LB
+37171,17.52395,Fluorene,LB
+37171,2.782663,PM10-Primary from certain diesel engines,TON
+37171,2.639358,PM2.5 Primary (Filt + Cond),TON
+37171,0.1474365,Sulfur Dioxide,TON
+37169,0.0006892974,Benz[a]Anthracene,LB
+37169,0.00235747,Fluorene,LB
+37169,0.0001618837,Nitrous Oxide,TON
+37169,2.626428,Xylenes (Mixed Isomers),LB
+37169,0.02037282,Volatile Organic Compounds,TON
+37165,0.18146046,Acrolein,LB
+37165,0.004366512,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.012022016,Fluoranthene,LB
+37165,0.4207056,Naphthalene,LB
+37165,0.16618332,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.16674772,Benzo[a]Pyrene,LB
+37165,167.82448,Ethyl Benzene,LB
+37165,284.2054,Hexane,LB
+37165,0.7513912,Acenaphthylene,LB
+37165,0.001667447,"Dibenzo[a,h]Anthracene",LB
+37165,259.337,"2,2,4-Trimethylpentane",LB
+37165,1134.058,Carbon Dioxide,TON
+37165,0.1476871,Ammonia,TON
+37165,0.0002099372,Nitrate portion of PM2.5-PRI,TON
+37165,0.04017087,Organic Carbon portion of PM2.5-PRI,TON
+37155,1.3050674e-05,Chromium (VI),LB
+37155,0.04702378,"Benzo[g,h,i,]Perylene",LB
+37155,0.02120964,Fluoranthene,LB
+37155,0.007864958,Chrysene,LB
+37155,4.49423,Formaldehyde,LB
+37155,0.017476082,Benzo[a]Pyrene,LB
+37155,0.007105962,Manganese,LB
+37155,0.00013083474,Mercury,LB
+37155,0.006834837,Nitrous Oxide,TON
+37155,0.04480312,PM10 Primary (Filt + Cond),TON
+37155,0.01981843,PM2.5 Primary (Filt + Cond),TON
+37155,0.006200652,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.03857682,Propionaldehyde,LB
+37005,0.0002930112,Pyrene,LB
+37005,0.00012242492,Benzo[b]Fluoranthene,LB
+37005,0.00012242492,Benzo[k]Fluoranthene,LB
+37005,0.008332068,Naphthalene,LB
+37005,6.59609e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37005,7.494781e-06,Sulfate Portion of PM2.5-PRI,TON
+37169,0.2471464,Naphthalene,LB
+37169,0.004316564,Anthracene,LB
+37169,2.40332e-05,Chromium (VI),LB
+37169,0.00018084026,"Dibenzo[a,h]Anthracene",LB
+37129,0.5102276,Propionaldehyde,LB
+37129,0.002574546,Benzo[k]Fluoranthene,LB
+37129,0.00486379,Benzo[a]Pyrene,LB
+37129,0.001500994,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.00706552,Nitrous Oxide,TON
+37129,0.01145788,PM2.5 Primary (Filt + Cond),TON
+37129,0.0003446062,Sulfate Portion of PM2.5-PRI,TON
+37007,0.0001421115,Methane,TON
+37007,3.966239,Carbon Dioxide,TON
+37007,0.461231,Xylenes (Mixed Isomers),LB
+37007,0.07332224,Formaldehyde,LB
+37019,5.31825,Manganese,LB
+37019,50.32616,Phenanthrene,LB
+37019,2414.552,Carbon Monoxide,TON
+37019,1.228002,Elemental Carbon portion of PM2.5-PRI,TON
+37019,5.262602,Nitrous Oxide,TON
+37019,2.485927,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,4.89286,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,2.022002e-07,Mercury,LB
+37005,0.001050679,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.003309233,PM10 Primary (Filt + Cond),TON
+37005,0.06081692,Pyrene,LB
+37005,1.711378e-06,Chromium (VI),LB
+37005,0.00018104918,Benzo[k]Fluoranthene,LB
+37005,1.7211008e-06,Mercury,LB
+37005,58.079,Carbon Dioxide,TON
+37005,0.006304674,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.01506538,PM2.5 Primary (Filt + Cond),TON
+37081,5.630948,Formaldehyde,LB
+37081,9.229018,Benzene,LB
+37081,0.0004260662,Mercury,LB
+37081,0.006185106,Fluorene,LB
+37081,0.0004511412,Sulfate Portion of PM2.5-PRI,TON
+37081,0.3851154,"1,3-Butadiene",LB
+37081,7.533856,Toluene,LB
+37039,0.5074026,Hexane,LB
+37039,0.11189412,Propionaldehyde,LB
+37039,1.003752,Xylenes (Mixed Isomers),LB
+37039,0.0004595584,Benzo[k]Fluoranthene,LB
+37039,0.7442144,Formaldehyde,LB
+37039,0.547989,"2,2,4-Trimethylpentane",LB
+37039,0.001032736,Manganese,LB
+37039,0.0004641996,Acenaphthene,LB
+37039,0.02419712,Naphthalene,LB
+37029,0.0001672461,PM2.5 Primary (Filt + Cond),TON
+37029,0.005514724,Acrolein,LB
+37029,5.293004e-07,Chromium (VI),LB
+37029,5.733641e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,5.638804,Ethyl Benzene,LB
+37025,19.11543,Xylenes (Mixed Isomers),LB
+37011,0.449189,Xylenes (Mixed Isomers),LB
+37011,1.714724e-06,Chromium (VI),LB
+37011,0.0002050668,Benz[a]Anthracene,LB
+37011,2.70741,Acetaldehyde,LB
+37011,0.0001223415,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.0004821676,Nitrous Oxide,TON
+37011,0.02273501,Nitrogen Oxides,TON
+37011,1.563026e-05,Sulfate Portion of PM2.5-PRI,TON
+37123,0.08358834,Volatile Organic Compounds,TON
+37113,0.0004819118,Anthracene,LB
+37113,1.1347682,Xylenes (Mixed Isomers),LB
+37113,2.085386e-05,"Dibenzo[a,h]Anthracene",LB
+37113,6.32242,Acetaldehyde,LB
+37113,0.00297442,Phenanthrene,LB
+37113,64.28103,Carbon Dioxide,TON
+37113,0.0002573717,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.001954953,Sulfur Dioxide,TON
+37113,3.747632,Xylenes (Mixed Isomers),LB
+37101,0.02718614,Nickel,LB
+37101,0.05191984,Fluorene,LB
+37101,0.05584512,Nitrous Oxide,TON
+37101,3.448096,Nitrogen Oxides,TON
+37101,0.03138116,Benzo[b]Fluoranthene,LB
+37101,0.04504718,Fluoranthene,LB
+37127,21514.88,Toluene,LB
+37117,1.0440762,"1,3-Butadiene",LB
+37117,44.33892,Toluene,LB
+37117,2.488958,Formaldehyde,LB
+37117,5.92008e-05,"Dibenzo[a,h]Anthracene",LB
+37117,0.002076924,Benz[a]Anthracene,LB
+37117,0.0005552881,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.002478862,Nitrous Oxide,TON
+37111,0.005388964,Nitrate portion of PM2.5-PRI,TON
+37111,0.1733336,Sulfur Dioxide,TON
+37111,4.673716,Pyrene,LB
+37111,1.059026,Benz[a]Anthracene,LB
+37111,17.13726,Carbon Monoxide,TON
+37111,2.692277,PM10-Primary from certain diesel engines,TON
+37119,0.007336554,Sulfur Dioxide,TON
+37119,0.3233204,Volatile Organic Compounds,TON
+37119,5.479148,Benzene,LB
+37119,0.140022,PM10-Primary from certain diesel engines,TON
+37113,41.6332,Toluene,LB
+37113,0.019449538,Pyrene,LB
+37113,0.01184668,"Benzo[g,h,i,]Perylene",LB
+37113,0.003305296,Benzo[b]Fluoranthene,LB
+37113,0.0005426444,Manganese,LB
+37113,0.01410273,Methane,TON
+37113,1.232954e-05,Nitrate portion of PM2.5-PRI,TON
+37109,0.00011321094,Mercury,LB
+37109,38.9072,Acrolein,LB
+37109,0.03246446,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.01292905,Nitrous Oxide,TON
+37109,2.450282,PM2.5 Primary (Filt + Cond),TON
+37091,9.29776e-05,Chromium (VI),LB
+37091,0.2947662,Benz[a]Anthracene,LB
+37091,0.9957328,Fluorene,LB
+37091,0.7301459,PM25-Primary from certain diesel engines,TON
+37091,0.7811194,PM2.5 Primary (Filt + Cond),TON
+37091,0.07842604,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.10922006,Pyrene,LB
+37103,0.08978822,Fluoranthene,LB
+37103,5.974066e-05,Benzo[k]Fluoranthene,LB
+37103,0.007187994,Manganese,LB
+37103,1.54247e-05,Mercury,LB
+37103,0.11963692,Fluorene,LB
+37103,0.002681784,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.0177202,PM10 Primary (Filt + Cond),TON
+37103,0.001782541,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,1.350134e-07,Mercury,LB
+37095,0.008516768,Phenanthrene,LB
+37095,8.797461e-06,Nitrate portion of PM2.5-PRI,TON
+37095,0.0002900173,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.08633122,Nickel,LB
+37089,1.712555,PM25-Primary from certain diesel engines,TON
+37089,7.045258,Pyrene,LB
+37089,69.48832,Xylenes (Mixed Isomers),LB
+37083,23.33136,Benzene,LB
+37087,0.9983384,"Benzo[g,h,i,]Perylene",LB
+37087,0.2545272,Benzo[b]Fluoranthene,LB
+37087,0.3744418,Benzo[a]Pyrene,LB
+37087,732.2872,Benzene,LB
+37087,0.0841879,Nickel,LB
+37087,0.1290888,Arsenic,LB
+37075,7.901276,Toluene,LB
+37061,53.99258,Toluene,LB
+37061,0.03994484,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,8.825174,Phenanthrene,LB
+37061,17.59168,Carbon Monoxide,TON
+37061,9768.307,Carbon Dioxide,TON
+37061,2.741825,PM10 Primary (Filt + Cond),TON
+37061,0.07851093,Sulfate Portion of PM2.5-PRI,TON
+37061,0.02529214,Benzo[a]Pyrene,LB
+37061,0.3306581,PM10-Primary from certain diesel engines,TON
+37061,0.2424538,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.09411542,Fluorene,LB
+37055,0.06042944,PM25-Primary from certain diesel engines,TON
+37055,1.026875,Toluene,LB
+37055,0.0004577952,Benzo[k]Fluoranthene,LB
+37055,0.011098178,Benzo[a]Pyrene,LB
+37055,0.0004556858,"Dibenzo[a,h]Anthracene",LB
+37039,7.03844e-06,Chromium (VI),LB
+37039,0.0013760558,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,2.035548,Benzene,LB
+37039,7.07868e-06,Mercury,LB
+37039,0.00148006,Arsenic,LB
+37039,0.002366822,Sulfate Portion of PM2.5-PRI,TON
+37037,1.9524396,Hexane,LB
+37037,4.158034,Propionaldehyde,LB
+37037,5.11396,Xylenes (Mixed Isomers),LB
+37037,1.9125044e-05,Chromium (VI),LB
+37037,0.2574514,Acenaphthene,LB
+37037,0.1002014,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.0004830717,Nitrate portion of PM2.5-PRI,TON
+37037,0.4525708,Volatile Organic Compounds,TON
+37025,0.0003095952,Anthracene,LB
+37025,0.0010997874,Acenaphthylene,LB
+37025,0.01031928,PM2.5 Primary (Filt + Cond),TON
+37025,0.006301308,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.12137806,Ethyl Benzene,LB
+37029,0.16332902,Hexane,LB
+37029,3.93532e-06,"Dibenzo[a,h]Anthracene",LB
+37029,0.06095346,Acetaldehyde,LB
+37029,3.785542e-05,Ammonia,TON
+37029,0.0002323324,PM10 Primary (Filt + Cond),TON
+37029,0.0001664052,PM2.5 Primary (Filt + Cond),TON
+37131,0.00013684786,Chrysene,LB
+37131,0.0003459578,Benzo[a]Pyrene,LB
+37131,0.0002809448,Arsenic,LB
+37131,0.015417454,"1,3-Butadiene",LB
+37131,0.0002216617,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.009432746,"Benzo[g,h,i,]Perylene",LB
+37169,0.07418394,Manganese,LB
+37169,22.0696,Naphthalene,LB
+37169,0.004704967,Nitrous Oxide,TON
+37169,0.2200311,Organic Carbon portion of PM2.5-PRI,TON
+37169,1.173231,Volatile Organic Compounds,TON
+37155,1.5518182,Styrene,LB
+37155,3.547366,"1,3-Butadiene",LB
+37155,9.03309,Acrolein,LB
+37155,5.907898,Propionaldehyde,LB
+37155,0.602714,Acenaphthylene,LB
+37155,0.1772265,Chrysene,LB
+37155,0.009896464,Arsenic,LB
+37155,50.38264,Acetaldehyde,LB
+37155,2.550976,Carbon Monoxide,TON
+37155,0.3649131,PM10-Primary from certain diesel engines,TON
+37163,1.0337928,Anthracene,LB
+37163,24.34542,Propionaldehyde,LB
+37163,0.3176532,Chrysene,LB
+37163,0.2217392,Manganese,LB
+37163,410.196,Acetaldehyde,LB
+37163,1.2116442,Acenaphthene,LB
+37163,286.616,Carbon Monoxide,TON
+37163,0.6079313,Nitrous Oxide,TON
+37153,1.1390216,Arsenic,LB
+37153,0.007871974,Nitrate portion of PM2.5-PRI,TON
+37153,1.422529,Organic Carbon portion of PM2.5-PRI,TON
+37153,22.69378,Acenaphthylene,LB
+37153,1.5527414,Chrysene,LB
+37145,0.04460439,Ammonia,TON
+37145,0.2903228,Organic Carbon portion of PM2.5-PRI,TON
+37145,1.442478,PM10 Primary (Filt + Cond),TON
+37145,5.41866,"2,2,4-Trimethylpentane",LB
+37145,20.01908,"2,2,4-Trimethylpentane",LB
+37145,8.426848,Benzene,LB
+37145,1.027667,Volatile Organic Compounds,TON
+37129,0.1638635,Toluene,LB
+37129,3.245244e-05,Anthracene,LB
+37129,0.11139196,Propionaldehyde,LB
+37129,6.309796e-05,Fluoranthene,LB
+37129,0.00011630584,Acenaphthylene,LB
+37129,0.006181394,Manganese,LB
+37129,0.2330933,Methane,TON
+37129,0.0006370819,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.0246911,PM10 Primary (Filt + Cond),TON
+37139,0.3219714,Ethyl Benzene,LB
+37139,0.0154305,Nitrogen Oxides,TON
+37139,166.97828,Ethyl Benzene,LB
+37139,1229.5464,Toluene,LB
+37139,2.25545,Propionaldehyde,LB
+37139,0.2329668,Pyrene,LB
+37139,0.7591662,Phenanthrene,LB
+37139,0.007926858,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.1096677,Ammonia,TON
+37139,0.000157344,Nitrate portion of PM2.5-PRI,TON
+37127,0.04992268,Manganese,LB
+37127,0.4521614,Acenaphthene,LB
+37127,1.4477876,Phenanthrene,LB
+37127,15.083414,Naphthalene,LB
+37127,0.5163237,PM10 Primary (Filt + Cond),TON
+37127,0.01342952,Sulfate Portion of PM2.5-PRI,TON
+37127,1.9705904,Styrene,LB
+37127,4.45591,"1,3-Butadiene",LB
+37127,0.4312608,Anthracene,LB
+37127,0.01671264,Benzo[b]Fluoranthene,LB
+37127,12.95101,Benzene,LB
+37013,0.005001172,"Benzo[g,h,i,]Perylene",LB
+37013,0.8577236,Fluoranthene,LB
+37013,0.2696612,Benz[a]Anthracene,LB
+37013,0.2679432,PM25-Primary from certain diesel engines,TON
+37013,0.1143252,Organic Carbon portion of PM2.5-PRI,TON
+37007,8.058462,Ethyl Benzene,LB
+37007,3.098548,Styrene,LB
+37007,2.095556,Pyrene,LB
+37007,0.04313804,Benzo[b]Fluoranthene,LB
+37007,0.005960756,"Dibenzo[a,h]Anthracene",LB
+37007,0.4865734,Benz[a]Anthracene,LB
+37007,22.16866,Benzene,LB
+37007,1.078893,PM10-Primary from certain diesel engines,TON
+37007,0.1063405,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.008250312,Fluorene,LB
+37005,0.001339196,PM2.5 Primary (Filt + Cond),TON
+37005,0.114339,Volatile Organic Compounds,TON
+37005,0.598483,"1,3-Butadiene",LB
+37005,0.001244443,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.00127224,Chrysene,LB
+37073,0.002920074,Benzo[a]Pyrene,LB
+37073,24.05448,Acetaldehyde,LB
+37073,0.003902974,Fluorene,LB
+37073,2.074285,Carbon Monoxide,TON
+37073,3.882152,Xylenes (Mixed Isomers),LB
+37021,27.91576,"1,3-Butadiene",LB
+37021,0.003589852,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.014082964,Benzo[b]Fluoranthene,LB
+37021,7.55519,Nitrogen Oxides,TON
+37021,0.09410547,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.838825,PM10 Primary (Filt + Cond),TON
+37021,0.2525523,PM2.5 Primary (Filt + Cond),TON
+37021,0.0606406,Sulfur Dioxide,TON
+37021,204.9458,Xylenes (Mixed Isomers),LB
+37013,0.409218,Ethyl Benzene,LB
+37013,0.06440564,Acenaphthylene,LB
+37013,0.017507958,Chrysene,LB
+37013,0.03831632,Acenaphthene,LB
+37019,27301.9,Toluene,LB
+37017,1.0768038e-08,Mercury,LB
+37017,0.00246896,Acetaldehyde,LB
+37017,2.201616e-06,Organic Carbon portion of PM2.5-PRI,TON
+37017,7.184686e-06,PM10 Primary (Filt + Cond),TON
+37017,0.0001397992,Acrolein,LB
+37017,0.006050794,Hexane,LB
+37013,2.20409e-06,Chromium (VI),LB
+37013,2.209778e-05,Mercury,LB
+37013,76.91655,Carbon Dioxide,TON
+37013,0.001068353,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.02910648,Styrene,LB
+37013,0.0010194688,Anthracene,LB
+37013,0.00197826,Pyrene,LB
+37013,0.0002913028,Benzo[k]Fluoranthene,LB
+37013,0.0003599902,Benzo[a]Pyrene,LB
+37013,8.201728e-06,"Dibenzo[a,h]Anthracene",LB
+37013,1.1076646,Benzene,LB
+37013,4.475416e-07,Mercury,LB
+37013,0.0001735447,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.06740024,"2,2,4-Trimethylpentane",LB
+37011,0.2434648,Benzene,LB
+37011,0.0005195248,Manganese,LB
+37011,0.03058362,Phenanthrene,LB
+37011,9.84991e-05,"1,3-Butadiene",LB
+37011,4.211908e-07,Benz[a]Anthracene,LB
+37011,1.0319328e-07,Manganese,LB
+37011,1.7358818e-09,Mercury,LB
+37011,1.6964616e-06,Fluorene,LB
+37011,3.002503e-07,Ammonia,TON
+37011,1.296441e-06,PM10 Primary (Filt + Cond),TON
+37011,2.045851e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,1.303602e-05,Volatile Organic Compounds,TON
+37065,1.7617994,Hexane,LB
+37027,0.03297518,"1,3-Butadiene",LB
+37027,0.241559,Hexane,LB
+37027,0.05855724,Propionaldehyde,LB
+37027,0.0002069662,Chrysene,LB
+37027,0.4513644,Formaldehyde,LB
+37027,3.02254,Acetaldehyde,LB
+37027,0.0002429232,Acenaphthene,LB
+37027,0.01267165,Naphthalene,LB
+37027,0.0008715236,PM2.5 Primary (Filt + Cond),TON
+37027,0.01704537,Volatile Organic Compounds,TON
+37165,3.59248,"2,2,4-Trimethylpentane",LB
+37153,0.15121524,"1,3-Butadiene",LB
+37153,1.2381238e-05,Chromium (VI),LB
+37153,12.420002,Acetaldehyde,LB
+37153,0.009457949,Methane,TON
+37181,0.14718858,Acrolein,LB
+37181,0.009772068,Fluoranthene,LB
+37181,0.0001609573,Sulfate Portion of PM2.5-PRI,TON
+37179,7.676774,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.17625692,"Dibenzo[a,h]Anthracene",LB
+37179,15966.76,"2,2,4-Trimethylpentane",LB
+37179,5.140488,Benz[a]Anthracene,LB
+37179,16842.49,Benzene,LB
+37197,0.6201146,Toluene,LB
+37197,0.0646357,Fluoranthene,LB
+37197,2.215172e-06,Mercury,LB
+37197,0.03020336,PM10 Primary (Filt + Cond),TON
+37197,3.565578,Xylenes (Mixed Isomers),LB
+37197,0.3760186,Fluoranthene,LB
+37197,0.01406708,Manganese,LB
+37197,1.6963732e-05,Mercury,LB
+37197,0.13926,PM25-Primary from certain diesel engines,TON
+37197,0.1953569,PM10 Primary (Filt + Cond),TON
+37185,0.004949068,Benzo[b]Fluoranthene,LB
+37185,0.03145802,Chrysene,LB
+37185,0.5184582,"2,2,4-Trimethylpentane",LB
+37185,0.05327056,Benz[a]Anthracene,LB
+37185,0.0636296,PM10-Primary from certain diesel engines,TON
+37185,0.02494447,Elemental Carbon portion of PM2.5-PRI,TON
+37189,11.859632,"Benzo[g,h,i,]Perylene",LB
+37189,0.1023174,"Dibenzo[a,h]Anthracene",LB
+37189,0.079943,Mercury,LB
+37189,673.11,Naphthalene,LB
+37189,14.15334,PM10 Primary (Filt + Cond),TON
+37189,3.206792,Sulfur Dioxide,TON
+37183,18126.274,Hexane,LB
+37199,5.53893,Ethyl Benzene,LB
+37199,1.7572562,Styrene,LB
+37199,12.01633,Acrolein,LB
+37199,0.4303616,Anthracene,LB
+37199,8.26756e-05,Chromium (VI),LB
+37199,0.7057712,PM10-Primary from certain diesel engines,TON
+37199,20.33281,Nitrogen Oxides,TON
+37199,1.042486,PM10 Primary (Filt + Cond),TON
+37199,0.6945897,PM2.5 Primary (Filt + Cond),TON
+37199,0.06905209,Sulfur Dioxide,TON
+37199,10.892928,Acrolein,LB
+37199,11.243718,Toluene,LB
+37199,0.8909678,Fluoranthene,LB
+37199,0.7060926,Acenaphthylene,LB
+37199,3.864504,"2,2,4-Trimethylpentane",LB
+37199,0.026013,Nickel,LB
+37199,1.5521602,Phenanthrene,LB
+37199,0.09621992,Methane,TON
+37199,0.5470156,PM25-Primary from certain diesel engines,TON
+37193,0.00748173,Anthracene,LB
+37193,0.002902534,Chrysene,LB
+37193,0.00215455,Manganese,LB
+37193,2.855294,Acetaldehyde,LB
+37193,3.695332,Carbon Monoxide,TON
+37193,0.00568953,Nitrous Oxide,TON
+37193,0.001671586,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.0001467659,Sulfate Portion of PM2.5-PRI,TON
+37187,0.9094301,Carbon Monoxide,TON
+37187,0.001571973,PM25-Primary from certain diesel engines,TON
+37187,0.001594521,Ammonia,TON
+37187,0.000478486,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.4920348,Benzo[b]Fluoranthene,LB
+37183,5.497036,Benz[a]Anthracene,LB
+37183,1536.6492,Acetaldehyde,LB
+37183,379.5462,Naphthalene,LB
+37183,195344.8,Carbon Dioxide,TON
+37183,17.46224,Volatile Organic Compounds,TON
+37183,8.536424,Benz[a]Anthracene,LB
+37183,15.99592,PM2.5 Primary (Filt + Cond),TON
+37183,2.099567,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.6319819,Sulfur Dioxide,TON
+37183,45.77976,Styrene,LB
+37183,244.9224,Toluene,LB
+37183,173.0034,Propionaldehyde,LB
+37181,4.220022e-05,Fluorene,LB
+37181,5.111228e-08,Nitrate portion of PM2.5-PRI,TON
+37181,0.0008926967,Nitrogen Oxides,TON
+37181,2.814992e-05,PM10 Primary (Filt + Cond),TON
+37181,5.261654e-07,Sulfate Portion of PM2.5-PRI,TON
+37181,0.0003503303,Volatile Organic Compounds,TON
+37179,0.006622603,Nitrate portion of PM2.5-PRI,TON
+37179,9.501596e-05,Chromium (VI),LB
+37179,0.02245878,"Benzo[g,h,i,]Perylene",LB
+37179,2.631504,Acenaphthylene,LB
+37179,0.16733218,Manganese,LB
+37177,9.225394e-05,"Benzo[g,h,i,]Perylene",LB
+37177,0.0004449874,Benzo[b]Fluoranthene,LB
+37177,0.00016451154,Arsenic,LB
+37013,2159.448,Xylenes (Mixed Isomers),LB
+37013,0.06660092,Nickel,LB
+37013,199.7149,Carbon Monoxide,TON
+37013,10056.3,Carbon Dioxide,TON
+37013,0.2109132,Sulfur Dioxide,TON
+37001,0.02085411,PM10 Primary (Filt + Cond),TON
+37001,0.001438123,Sulfur Dioxide,TON
+37001,20.9323,"2,2,4-Trimethylpentane",LB
+37001,8.141352,Acetaldehyde,LB
+37001,0.012441588,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.03721274,Fluoranthene,LB
+37001,0.008491786,Benzo[k]Fluoranthene,LB
+37073,1.2575034,"2,2,4-Trimethylpentane",LB
+37073,0.3500276,Benzene,LB
+37073,0.0321123,Volatile Organic Compounds,TON
+37031,1.2030864,"1,3-Butadiene",LB
+37031,0.019145854,Pyrene,LB
+37031,21.20442,Xylenes (Mixed Isomers),LB
+37031,8.071992e-05,Chromium (VI),LB
+37031,0.010582084,Benzo[b]Fluoranthene,LB
+37031,0.005409927,Elemental Carbon portion of PM2.5-PRI,TON
+37037,4.339162e-06,Chromium (VI),LB
+37037,72.53497,Carbon Dioxide,TON
+37037,0.003730605,Ammonia,TON
+37127,1.0745118,Acrolein,LB
+37127,0.02209114,Pyrene,LB
+37127,0.04953136,Acenaphthylene,LB
+37127,0.03034774,Benzo[a]Pyrene,LB
+37127,0.00070629,"Dibenzo[a,h]Anthracene",LB
+37127,0.013520348,Benz[a]Anthracene,LB
+37127,29.97938,Benzene,LB
+37127,0.0248211,Nitrous Oxide,TON
+37127,0.1532415,PM10 Primary (Filt + Cond),TON
+37091,0.366819,"1,3-Butadiene",LB
+37091,0.003907988,Manganese,LB
+37091,0.003135318,Acenaphthene,LB
+37091,0.02329479,Methane,TON
+37091,0.005340688,Nitrous Oxide,TON
+37091,0.1988577,Volatile Organic Compounds,TON
+37089,20.3417,Toluene,LB
+37089,8.642696,Xylenes (Mixed Isomers),LB
+37179,0.2246971,Organic Carbon portion of PM2.5-PRI,TON
+37179,38.25686,Volatile Organic Compounds,TON
+37179,8979.54,Toluene,LB
+37179,17.492108,Propionaldehyde,LB
+37179,0.402752,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,1.5782424,Fluoranthene,LB
+37179,0.10618902,Manganese,LB
+37197,0.06908906,Acrolein,LB
+37197,2.032128,Benzene,LB
+37197,7.326948,Acetaldehyde,LB
+37197,0.000640653,Acenaphthene,LB
+37197,4.668593e-06,Nitrate portion of PM2.5-PRI,TON
+37193,0.1271989,Volatile Organic Compounds,TON
+37193,1.220356,"2,2,4-Trimethylpentane",LB
+37193,0.002604648,Arsenic,LB
+37193,20.8586,Acetaldehyde,LB
+37193,0.6129106,Phenanthrene,LB
+37193,0.01288194,Ammonia,TON
+37193,0.2755708,Volatile Organic Compounds,TON
+37075,0.13379006,Fluorene,LB
+37075,0.002477726,Ammonia,TON
+37075,0.0005482952,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.0002948806,Benzo[k]Fluoranthene,LB
+37075,0.00722492,Benzo[a]Pyrene,LB
+37071,0.07081954,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.232926,Arsenic,LB
+37071,280.5184,Naphthalene,LB
+37071,8.123346,PM10-Primary from certain diesel engines,TON
+37071,1.341134,Ammonia,TON
+37071,230.0195,Nitrogen Oxides,TON
+37071,170.4335,Toluene,LB
+37071,6.005442,Volatile Organic Compounds,TON
+37069,348.1656,Formaldehyde,LB
+37069,0.19204504,Benzo[a]Pyrene,LB
+37069,0.007955992,"Dibenzo[a,h]Anthracene",LB
+37069,0.05681924,Nickel,LB
+37069,1.381132,PM10-Primary from certain diesel engines,TON
+37069,0.01528093,Nitrous Oxide,TON
+37069,0.3001204,Organic Carbon portion of PM2.5-PRI,TON
+37069,1.362097,PM2.5 Primary (Filt + Cond),TON
+37067,35.43112,Acrolein,LB
+37067,1.6009838,Anthracene,LB
+37067,2787.826,"2,2,4-Trimethylpentane",LB
+37067,0.17665612,Manganese,LB
+37059,3.37874,Propionaldehyde,LB
+37059,0.2980708,Fluoranthene,LB
+37059,0.0862555,Benzo[a]Pyrene,LB
+37059,0.01472913,Arsenic,LB
+37059,1.1049722,Phenanthrene,LB
+37059,10.551338,Naphthalene,LB
+37059,0.02613898,Sulfur Dioxide,TON
+37053,1.874775e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37053,5.072142e-06,Ammonia,TON
+37053,0.0003424223,Volatile Organic Compounds,TON
+37053,9.824228e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,2.921812e-08,Mercury,LB
+37053,0.009245246,Carbon Monoxide,TON
+37053,0.1858603,Carbon Dioxide,TON
+37053,12.543634,Xylenes (Mixed Isomers),LB
+37053,5.106668e-05,"Dibenzo[a,h]Anthracene",LB
+37053,0.002954767,Nitrous Oxide,TON
+37043,0.01766529,PM10 Primary (Filt + Cond),TON
+37043,0.004359836,Benzo[b]Fluoranthene,LB
+37043,5.782724,Acetaldehyde,LB
+37037,49.3688,Propionaldehyde,LB
+37037,4.975172,Fluoranthene,LB
+37037,133.30102,Naphthalene,LB
+37037,5.892952,Volatile Organic Compounds,TON
+37037,5.198006,Ethyl Benzene,LB
+37037,3.958684,Hexane,LB
+37037,14.54261,Benzene,LB
+37037,0.018269788,Nickel,LB
+37037,0.4913554,Acenaphthene,LB
+37037,1161.984,Carbon Dioxide,TON
+37037,0.005360688,Nitrous Oxide,TON
+37037,3.354014,Methane,TON
+37037,0.1124266,Sulfate Portion of PM2.5-PRI,TON
+37037,139.76026,Styrene,LB
+37037,6778.454,Hexane,LB
+37037,5.22092,Anthracene,LB
+37037,0.00973748,Chromium (VI),LB
+37037,2.212678,Benzo[k]Fluoranthene,LB
+37037,3.338636,Benzo[a]Pyrene,LB
+37037,2236.394,Acetaldehyde,LB
+37033,120.09522,Toluene,LB
+37033,0.02549226,Anthracene,LB
+37033,0.0354516,PM10 Primary (Filt + Cond),TON
+37033,0.5842049,Volatile Organic Compounds,TON
+37031,1.1388886,Naphthalene,LB
+37031,0.14944976,Styrene,LB
+37031,1.595338e-06,Chromium (VI),LB
+37031,0.0004648554,"Benzo[g,h,i,]Perylene",LB
+37031,0.0003084908,Benzo[k]Fluoranthene,LB
+37031,0.01464643,Chrysene,LB
+37031,10.354808,Formaldehyde,LB
+37031,1.372761e-06,Mercury,LB
+37029,1.627708e-07,Chromium (VI),LB
+37029,1.6317998e-06,Mercury,LB
+37029,2.034518e-05,Nickel,LB
+37029,0.003019958,Acenaphthene,LB
+37029,0.005101522,Methane,TON
+37029,0.0005802424,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.0002541645,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.0001345332,Sulfur Dioxide,TON
+37119,3.649062,Pyrene,LB
+37119,0.08405206,Benzo[b]Fluoranthene,LB
+37119,0.281748,Benzo[a]Pyrene,LB
+37119,2.55276,Fluorene,LB
+37119,0.2151246,Ammonia,TON
+37119,1.094557,PM2.5 Primary (Filt + Cond),TON
+37119,0.2573939,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,15.117904,Toluene,LB
+37109,3.918344e-05,Chromium (VI),LB
+37109,213.741,Formaldehyde,LB
+37109,5.447902,"2,2,4-Trimethylpentane",LB
+37109,0.02285512,Nickel,LB
+37109,91.76722,Acetaldehyde,LB
+37109,7.551244,Carbon Monoxide,TON
+37109,0.7272659,PM10 Primary (Filt + Cond),TON
+37109,0.004332334,Benzo[a]Pyrene,LB
+37109,9.850666e-05,"Dibenzo[a,h]Anthracene",LB
+37109,0.0157442,PM10 Primary (Filt + Cond),TON
+37105,20.47294,"1,3-Butadiene",LB
+37105,3.342068,Acenaphthylene,LB
+37105,90.60088,Benzene,LB
+37105,0.006683081,Nitrate portion of PM2.5-PRI,TON
+37097,0.0012528552,Chromium (VI),LB
+37097,22.38002,Fluoranthene,LB
+37097,462.5344,Benzene,LB
+37097,162.23896,"1,3-Butadiene",LB
+37097,43.96596,Phenanthrene,LB
+37097,28.36052,Fluorene,LB
+37097,4.613036,PM2.5 Primary (Filt + Cond),TON
+37097,0.3995665,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,47.71426,Carbon Dioxide,TON
+37091,0.03044676,Volatile Organic Compounds,TON
+37105,9.113752,Xylenes (Mixed Isomers),LB
+37105,0.018955806,Acenaphthylene,LB
+37105,0.0018709402,Chrysene,LB
+37105,0.003715822,Benzo[a]Pyrene,LB
+37105,2.138771,Carbon Monoxide,TON
+37105,0.2652974,Nitrogen Oxides,TON
+37105,0.004644089,PM2.5 Primary (Filt + Cond),TON
+37105,0.0001409912,Sulfate Portion of PM2.5-PRI,TON
+37103,3.640054,Acrolein,LB
+37103,3.079926,Toluene,LB
+37103,2.45433,Propionaldehyde,LB
+37103,0.0003292428,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.00017876856,"Dibenzo[a,h]Anthracene",LB
+37103,0.002814684,Arsenic,LB
+37103,0.04102574,Elemental Carbon portion of PM2.5-PRI,TON
+37103,1.038639,Nitrogen Oxides,TON
+37103,0.003182549,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.001772604,Sulfate Portion of PM2.5-PRI,TON
+37101,679.9206,Acrolein,LB
+37101,30.5341,Anthracene,LB
+37101,715.0288,Propionaldehyde,LB
+37101,10.529452,Benzo[b]Fluoranthene,LB
+37101,3.709438,Nickel,LB
+37101,22.20361,Methane,TON
+37101,0.04434165,Nitrate portion of PM2.5-PRI,TON
+37101,0.4421968,Sulfate Portion of PM2.5-PRI,TON
+37099,0.688464,Carbon Monoxide,TON
+37099,0.0005692056,Pyrene,LB
+37099,2.016962e-05,"Benzo[g,h,i,]Perylene",LB
+37099,0.14457872,Benzene,LB
+37093,0.5082162,Benz[a]Anthracene,LB
+37093,0.2231308,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.5278496,PM2.5 Primary (Filt + Cond),TON
+37093,10.74786,Propionaldehyde,LB
+37093,0.011871648,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,1.0877226,Acenaphthylene,LB
+37093,4.671228,"1,3-Butadiene",LB
+37093,39.31476,Benzene,LB
+37093,0.002912996,Arsenic,LB
+37093,0.05803034,PM10 Primary (Filt + Cond),TON
+37093,0.7002913,Volatile Organic Compounds,TON
+37089,0.12998444,Mercury,LB
+37089,1.274797,Elemental Carbon portion of PM2.5-PRI,TON
+37089,3.04784,Organic Carbon portion of PM2.5-PRI,TON
+37089,9304.304,Hexane,LB
+37089,7.627548,Anthracene,LB
+37089,3.282124,Benzo[k]Fluoranthene,LB
+37079,2.352708,Styrene,LB
+37079,1.1705114,Fluoranthene,LB
+37079,186.18294,Formaldehyde,LB
+37079,0.03655682,Nickel,LB
+37079,0.5451674,Acenaphthene,LB
+37079,6413.773,Carbon Dioxide,TON
+37079,21.292,Nitrogen Oxides,TON
+37083,1710.4722,Ethyl Benzene,LB
+37083,380.2302,Benzene,LB
+37073,67.76442,Ethyl Benzene,LB
+37073,252.9848,Xylenes (Mixed Isomers),LB
+37073,0.02724538,Methane,TON
+37073,0.003508318,Nitrous Oxide,TON
+37073,6.789598e-05,Nitrate portion of PM2.5-PRI,TON
+37073,0.01301864,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.0007098689,Sulfate Portion of PM2.5-PRI,TON
+37067,203.8468,Toluene,LB
+37067,292.2032,Benzene,LB
+37067,11.772306,Anthracene,LB
+37067,199.98354,Xylenes (Mixed Isomers),LB
+37067,0.1115146,"Dibenzo[a,h]Anthracene",LB
+37063,2.648626,Pyrene,LB
+37063,0.002533354,Benzo[k]Fluoranthene,LB
+37063,0.18865884,Chrysene,LB
+37063,6.677016,Styrene,LB
+37063,26.7917,Carbon Monoxide,TON
+37063,0.001192756,Nitrate portion of PM2.5-PRI,TON
+37063,0.7832608,PM10 Primary (Filt + Cond),TON
+37063,0.0498866,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.03892405,Sulfur Dioxide,TON
+37063,0.02794868,Sulfate Portion of PM2.5-PRI,TON
+37063,17541.64,Ethyl Benzene,LB
+37063,42.42874,Pyrene,LB
+37063,0.04292336,Chromium (VI),LB
+37063,9.01542,Chrysene,LB
+37063,15.74962,Benzo[a]Pyrene,LB
+37063,9.5772,Benz[a]Anthracene,LB
+37063,24.83826,Acenaphthene,LB
+37063,1290.5646,Naphthalene,LB
+37063,3.695253,Elemental Carbon portion of PM2.5-PRI,TON
+37063,12.8915,Nitrous Oxide,TON
+37063,20.70064,PM2.5 Primary (Filt + Cond),TON
+37057,0.0004243969,Sulfate Portion of PM2.5-PRI,TON
+37057,0.02486368,Anthracene,LB
+37057,41.06768,"2,2,4-Trimethylpentane",LB
+37055,0.02442764,"Benzo[g,h,i,]Perylene",LB
+37055,0.0614627,Benzo[b]Fluoranthene,LB
+37055,0.000310637,Mercury,LB
+37055,9869.692,Carbon Dioxide,TON
+37055,31.30087,Nitrogen Oxides,TON
+37055,0.3111417,Organic Carbon portion of PM2.5-PRI,TON
+37055,1.494323,PM2.5 Primary (Filt + Cond),TON
+37047,145.63982,Naphthalene,LB
+37047,30.8657,Carbon Monoxide,TON
+37047,0.3762723,Sulfur Dioxide,TON
+37047,6.374708,Volatile Organic Compounds,TON
+37047,11.26518,Styrene,LB
+37047,0.11782432,Benzo[b]Fluoranthene,LB
+37039,3.621048,Styrene,LB
+37039,20.98016,Acrolein,LB
+37039,13.756024,Propionaldehyde,LB
+37039,3.237462,Phenanthrene,LB
+37039,0.6534395,PM25-Primary from certain diesel engines,TON
+37041,2.73256,Ethyl Benzene,LB
+37041,8.214596,"2,2,4-Trimethylpentane",LB
+37041,0.4216919,Volatile Organic Compounds,TON
+37033,58455.44,Carbon Dioxide,TON
+37033,5.107065,Ammonia,TON
+37033,220.6181,Nitrogen Oxides,TON
+37033,140.5433,Volatile Organic Compounds,TON
+37033,150.58564,Acrolein,LB
+37033,2.00704,Benzo[k]Fluoranthene,LB
+37033,0.6417314,Manganese,LB
+37033,0.03038088,Mercury,LB
+37033,0.5808736,Arsenic,LB
+37029,3.915366,Ethyl Benzene,LB
+37029,10.629476,Toluene,LB
+37029,0.3114242,Anthracene,LB
+37029,5.17956,Propionaldehyde,LB
+37029,49.1964,Acetaldehyde,LB
+37029,0.1170749,Methane,TON
+37029,3.669605,Carbon Monoxide,TON
+37029,0.05131815,Sulfur Dioxide,TON
+37121,1.3459364e-06,"Dibenzo[a,h]Anthracene",LB
+37121,0.08376124,"2,2,4-Trimethylpentane",LB
+37121,2.457804e-07,Mercury,LB
+37121,4.21244e-05,Ammonia,TON
+37121,0.002016609,Volatile Organic Compounds,TON
+37105,0.1898354,Organic Carbon portion of PM2.5-PRI,TON
+37105,38.47636,Ethyl Benzene,LB
+37105,74.35692,Toluene,LB
+37105,6.536886,Pyrene,LB
+37105,0.009380312,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,187.41438,Xylenes (Mixed Isomers),LB
+37089,0.01215868,"Benzo[g,h,i,]Perylene",LB
+37089,0.015104728,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,2.062868,Fluoranthene,LB
+37089,0.2402503,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.003536562,Nitrate portion of PM2.5-PRI,TON
+37085,6.062408,Fluoranthene,LB
+37085,2.138434,Methane,TON
+37085,126.1805,Nitrogen Oxides,TON
+37083,5.764932e-06,Chromium (VI),LB
+37083,0.004855204,Benz[a]Anthracene,LB
+37083,7.332242,Benzene,LB
+37083,0.5164003,Nitrogen Oxides,TON
+37079,0.003653634,Acrolein,LB
+37079,0.6239882,Toluene,LB
+37079,0.00012916488,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,8.138256e-05,Benzo[b]Fluoranthene,LB
+37079,0.001062144,Phenanthrene,LB
+37079,2.300551e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37075,25.08262,Acrolein,LB
+37075,0.044087,Nickel,LB
+37075,16.65676,Carbon Monoxide,TON
+37075,0.06132578,Ammonia,TON
+37075,0.2488849,PM2.5 Primary (Filt + Cond),TON
+37075,0.007703618,Sulfate Portion of PM2.5-PRI,TON
+37075,1.854428,Volatile Organic Compounds,TON
+37075,0.03294406,Acrolein,LB
+37075,2.724056,Hexane,LB
+37075,0.0005341242,Benzo[a]Pyrene,LB
+37075,1.2176574e-05,"Dibenzo[a,h]Anthracene",LB
+37075,0.0003447228,Ammonia,TON
+37075,0.0001538628,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.0001851067,Sulfur Dioxide,TON
+37075,0.8611274,Benzo[a]Pyrene,LB
+37075,15.2412,Phenanthrene,LB
+37075,539.238,Carbon Monoxide,TON
+37071,36.82528,"1,3-Butadiene",LB
+37071,0.2213882,Benzo[b]Fluoranthene,LB
+37071,8.22119,Fluoranthene,LB
+37071,6.225526,Acenaphthylene,LB
+37071,0.7417652,Benzo[a]Pyrene,LB
+37071,139.77304,Naphthalene,LB
+37071,5.167486,PM25-Primary from certain diesel engines,TON
+37071,1.150891,Organic Carbon portion of PM2.5-PRI,TON
+37069,4.378748,Acrolein,LB
+37069,4.179528,Toluene,LB
+37069,0.0009181674,"Dibenzo[a,h]Anthracene",LB
+37069,1.479993,"2,2,4-Trimethylpentane",LB
+37069,0.01076959,Ammonia,TON
+37069,0.2229507,PM10 Primary (Filt + Cond),TON
+37069,0.1370006,PM2.5 Primary (Filt + Cond),TON
+37069,0.004916238,Arsenic,LB
+37069,0.6596222,Phenanthrene,LB
+37069,0.01236124,PM10-Primary from certain diesel engines,TON
+37069,0.01137222,PM25-Primary from certain diesel engines,TON
+37069,0.006330574,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.003394476,Sulfur Dioxide,TON
+37069,0.001508036,Sulfate Portion of PM2.5-PRI,TON
+37069,0.007559702,"Benzo[g,h,i,]Perylene",LB
+37069,0.002395086,Benzo[k]Fluoranthene,LB
+37069,0.002502644,Chrysene,LB
+37069,0.002869562,Benzo[a]Pyrene,LB
+37069,11.15672,Benzene,LB
+37069,0.243997,Styrene,LB
+37069,0.016977012,Pyrene,LB
+37069,0.003299844,Ammonia,TON
+37069,0.003485344,PM2.5 Primary (Filt + Cond),TON
+37069,0.001120365,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.268264,Volatile Organic Compounds,TON
+37061,0.42302,Propionaldehyde,LB
+37061,4.771076e-06,Chromium (VI),LB
+37061,0.0003788308,"Dibenzo[a,h]Anthracene",LB
+37061,0.00926117,Benz[a]Anthracene,LB
+37061,0.01543523,Methane,TON
+37061,198.8572,Carbon Dioxide,TON
+37061,0.009025316,Organic Carbon portion of PM2.5-PRI,TON
+37057,3.62586,PM2.5 Primary (Filt + Cond),TON
+37057,21.25996,Hexane,LB
+37057,0.18662922,Benzo[b]Fluoranthene,LB
+37057,846.2846,Formaldehyde,LB
+37057,78.54424,Benzene,LB
+37057,363.9822,Acetaldehyde,LB
+37057,0.02433149,Nitrous Oxide,TON
+37057,0.01099112,Nitrate portion of PM2.5-PRI,TON
+37057,2.096832,Styrene,LB
+37057,0.02504366,Benzo[k]Fluoranthene,LB
+37057,55.04098,"2,2,4-Trimethylpentane",LB
+37057,4.970266,Naphthalene,LB
+37057,0.000112222,Nitrate portion of PM2.5-PRI,TON
+37057,0.01921427,Organic Carbon portion of PM2.5-PRI,TON
+37055,23.46802,Toluene,LB
+37055,0.016715724,Benzo[b]Fluoranthene,LB
+37055,0.3165962,Benz[a]Anthracene,LB
+37055,0.016749826,Arsenic,LB
+37055,0.08424904,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.001611846,PM2.5 Primary (Filt + Cond),TON
+37053,0.001443142,Sulfur Dioxide,TON
+37053,0.003971342,Fluoranthene,LB
+37053,0.0010487636,Benzo[a]Pyrene,LB
+37053,2.208824,"2,2,4-Trimethylpentane",LB
+37053,0.0007787816,Benz[a]Anthracene,LB
+37053,2.02162e-05,Mercury,LB
+37053,0.002718302,Acenaphthene,LB
+37053,0.00187873,Methane,TON
+37053,1.356204,Carbon Monoxide,TON
+37039,2.830612,"1,3-Butadiene",LB
+37039,6.191044,Toluene,LB
+37039,0.235583,Anthracene,LB
+37039,0.0005587824,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.0003052634,Benzo[k]Fluoranthene,LB
+37039,0.02852378,Chrysene,LB
+37039,2.030228e-05,Mercury,LB
+37039,0.08336112,PM2.5 Primary (Filt + Cond),TON
+37039,0.002854171,Sulfate Portion of PM2.5-PRI,TON
+37041,0.227065,"1,3-Butadiene",LB
+37041,0.381104,Propionaldehyde,LB
+37041,0.000226437,"Dibenzo[a,h]Anthracene",LB
+37041,2.727828e-06,Mercury,LB
+37041,0.02290482,Acenaphthene,LB
+37041,0.00509292,Methane,TON
+37035,0.0001574308,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,1.88926e-05,Sulfate Portion of PM2.5-PRI,TON
+37035,0.10398202,"1,3-Butadiene",LB
+37035,0.0007113014,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.001196376,Fluoranthene,LB
+37031,4.850812e-08,Chromium (VI),LB
+37031,0.0002648091,Sulfate Portion of PM2.5-PRI,TON
+37025,2.891396,Benzene,LB
+37025,0.05370898,Nitrogen Oxides,TON
+37025,0.000285094,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,2.561646,Hexane,LB
+37025,0.002736586,Anthracene,LB
+37025,0.06909296,Propionaldehyde,LB
+37135,121.37718,Naphthalene,LB
+37135,5.186767,PM10-Primary from certain diesel engines,TON
+37135,38.24942,Ethyl Benzene,LB
+37135,13.476904,Styrene,LB
+37135,85.44732,Acrolein,LB
+37135,0.02699806,Benzo[k]Fluoranthene,LB
+37135,32.16372,"2,2,4-Trimethylpentane",LB
+37135,0.000629787,Mercury,LB
+37135,486.0376,Acetaldehyde,LB
+37129,0.019042956,Benzo[b]Fluoranthene,LB
+37129,87.64012,Formaldehyde,LB
+37129,2.37521,"2,2,4-Trimethylpentane",LB
+37129,0.2032034,Benz[a]Anthracene,LB
+37129,0.004882274,Arsenic,LB
+37129,0.5460062,Fluorene,LB
+37129,1.792125,Carbon Monoxide,TON
+37129,0.00382533,Nitrous Oxide,TON
+37129,0.02772974,Ammonia,TON
+37129,0.4018202,PM10 Primary (Filt + Cond),TON
+37135,258.559,Styrene,LB
+37135,0.02547948,Nitrate portion of PM2.5-PRI,TON
+37133,75.62786,Ethyl Benzene,LB
+37133,0.1862646,Fluoranthene,LB
+37133,143.07376,Benzene,LB
+37133,0.2598036,Fluorene,LB
+37133,0.08401397,Methane,TON
+37133,64.1627,Carbon Monoxide,TON
+37133,0.1045345,Nitrous Oxide,TON
+37133,0.0001602148,Nitrate portion of PM2.5-PRI,TON
+37123,266.3962,Ethyl Benzene,LB
+37123,9.188544,Propionaldehyde,LB
+37123,0.157909,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.1217136,Benzo[k]Fluoranthene,LB
+37123,0.06623364,Manganese,LB
+37123,0.03791016,Nickel,LB
+37123,0.4583974,Acenaphthene,LB
+37123,23.79964,Naphthalene,LB
+37123,0.113618,Sulfur Dioxide,TON
+37113,0.223079,Organic Carbon portion of PM2.5-PRI,TON
+37113,19.942784,Toluene,LB
+37113,0.009304554,"Benzo[g,h,i,]Perylene",LB
+37113,0.04399968,Benzo[b]Fluoranthene,LB
+37113,0.006080004,"Dibenzo[a,h]Anthracene",LB
+37113,0.4988464,Benz[a]Anthracene,LB
+37113,27.3583,Naphthalene,LB
+37113,6.170056,Fluorene,LB
+37113,0.7844827,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.4892766,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.04243722,Sulfate Portion of PM2.5-PRI,TON
+37111,0.1625937,Benzo[k]Fluoranthene,LB
+37111,549.458,Benzene,LB
+37111,0.5983986,PM10 Primary (Filt + Cond),TON
+37103,4.752414e-06,Mercury,LB
+37103,0.00236759,Nickel,LB
+37103,5.791404,Acetaldehyde,LB
+37103,0.04230872,Acenaphthene,LB
+37103,0.0001939854,Nitrate portion of PM2.5-PRI,TON
+37103,0.006735748,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.18366284,Styrene,LB
+37103,0.3391626,Hexane,LB
+37103,0.6915292,Propionaldehyde,LB
+37103,13.502872,Formaldehyde,LB
+37091,0.0014677062,Benzo[a]Pyrene,LB
+37091,0.901391,Acetaldehyde,LB
+37091,0.006497086,PM10 Primary (Filt + Cond),TON
+37105,289.0438,Ethyl Benzene,LB
+37105,4.760688,Acrolein,LB
+37105,0.01231808,Nickel,LB
+37105,0.00323668,Sulfate Portion of PM2.5-PRI,TON
+37099,0.0009476664,Nitrate portion of PM2.5-PRI,TON
+37099,14.667466,Acrolein,LB
+37099,14.738798,Propionaldehyde,LB
+37099,0.2110844,Chrysene,LB
+37099,0.2169182,Benz[a]Anthracene,LB
+37099,11843.71,Carbon Dioxide,TON
+37093,0.00312592,Styrene,LB
+37093,0.0002321578,"Benzo[g,h,i,]Perylene",LB
+37093,5.479954e-05,Benzo[k]Fluoranthene,LB
+37093,8.674998e-05,Benzo[a]Pyrene,LB
+37093,2.002032e-06,"Dibenzo[a,h]Anthracene",LB
+37093,0.7504091,Carbon Dioxide,TON
+37093,1.667972e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37093,1.573022e-05,Sulfur Dioxide,TON
+37091,8.21071,Toluene,LB
+37091,3.27795,Hexane,LB
+37091,0.497528,Anthracene,LB
+37091,0.007949928,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,1.078381,Fluoranthene,LB
+37091,0.3441866,Benz[a]Anthracene,LB
+37091,2023.218,Carbon Dioxide,TON
+37091,0.01170155,Sulfate Portion of PM2.5-PRI,TON
+37085,2.670948,PM25-Primary from certain diesel engines,TON
+37085,18.50396,"1,3-Butadiene",LB
+37085,0.0003014468,Chromium (VI),LB
+37085,4.104876,Fluoranthene,LB
+37085,1.2412232,Benz[a]Anthracene,LB
+37083,0.03113256,Pyrene,LB
+37083,0.012373474,Benzo[b]Fluoranthene,LB
+37083,0.004148662,Sulfur Dioxide,TON
+37077,0.282884,Styrene,LB
+37077,0.5437784,Hexane,LB
+37077,0.06537556,Acenaphthene,LB
+37077,0.1415867,Fluorene,LB
+37077,0.6907718,Carbon Monoxide,TON
+37077,0.02121777,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.1509438,PM10 Primary (Filt + Cond),TON
+37077,0.005716954,Sulfur Dioxide,TON
+37065,0.3564754,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.04077176,Sulfate Portion of PM2.5-PRI,TON
+37065,0.015062128,"Benzo[g,h,i,]Perylene",LB
+37065,0.018913522,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,2.512516,Fluoranthene,LB
+37065,2.31016,Fluorene,LB
+37049,18931.784,Xylenes (Mixed Isomers),LB
+37049,32.2145,Acenaphthylene,LB
+37049,2.413278,Benz[a]Anthracene,LB
+37049,180.3498,Nitrogen Oxides,TON
+37047,1.4186792,Styrene,LB
+37047,0.10292516,Pyrene,LB
+37047,0.0484937,Methane,TON
+37047,0.01304095,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,2.111712,Naphthalene,LB
+37041,0.022147,Methane,TON
+37041,0.003096867,Ammonia,TON
+37041,1.596047e-05,Nitrate portion of PM2.5-PRI,TON
+37041,0.0006514389,Sulfate Portion of PM2.5-PRI,TON
+37041,1.8941226,Toluene,LB
+37041,0.00017005974,"Benzo[g,h,i,]Perylene",LB
+37041,0.06223456,Fluoranthene,LB
+37041,0.0843229,Acenaphthylene,LB
+37041,0.008572392,Benz[a]Anthracene,LB
+37041,1.779596,Benzene,LB
+37031,0.0004876292,Benzo[k]Fluoranthene,LB
+37031,14.89336,Formaldehyde,LB
+37031,0.07870994,Volatile Organic Compounds,TON
+37027,18134.312,Toluene,LB
+37115,0.496954,Hexane,LB
+37109,1.4702848e-05,Chromium (VI),LB
+37109,0.0010368898,Chrysene,LB
+37109,0.0010899926,Anthracene,LB
+37109,0.001837858,Nickel,LB
+37109,0.09864621,Nitrogen Oxides,TON
+37109,0.09426916,Volatile Organic Compounds,TON
+37175,4.833168,Ethyl Benzene,LB
+37175,16.050858,Hexane,LB
+37169,0.5861488,Fluorene,LB
+37169,2.728114,"1,3-Butadiene",LB
+37167,2.124316,Propionaldehyde,LB
+37167,0.08465452,"Benzo[g,h,i,]Perylene",LB
+37167,0.0003175296,Mercury,LB
+37167,0.006070848,Arsenic,LB
+37167,0.08607361,Nitrous Oxide,TON
+37167,0.01727104,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.19234562,Benzo[b]Fluoranthene,LB
+37159,4.386848,Acenaphthylene,LB
+37159,801.4148,Formaldehyde,LB
+37159,2.609234,Acenaphthene,LB
+37159,5.80371,Fluorene,LB
+37159,0.02075638,Nitrous Oxide,TON
+37159,0.01121361,Nitrate portion of PM2.5-PRI,TON
+37155,3.754532e-05,Chromium (VI),LB
+37155,1.7315702,"2,2,4-Trimethylpentane",LB
+37155,0.03898386,Methane,TON
+37155,0.002340066,Sulfate Portion of PM2.5-PRI,TON
+37161,6587.662,Xylenes (Mixed Isomers),LB
+37161,3440.076,"2,2,4-Trimethylpentane",LB
+37133,0.0002898501,Nitrate portion of PM2.5-PRI,TON
+37133,0.02335243,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.07591319,PM10 Primary (Filt + Cond),TON
+37133,0.0005142234,Nickel,LB
+37133,0.0112927,Methane,TON
+37133,0.5443525,Nitrogen Oxides,TON
+37133,0.003718001,Sulfur Dioxide,TON
+37133,0.3755246,Volatile Organic Compounds,TON
+37133,0.004739366,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.003922342,Chrysene,LB
+37125,0.8391178,Fluoranthene,LB
+37125,252.183,Formaldehyde,LB
+37125,18.214084,Acrolein,LB
+37125,22.44386,Xylenes (Mixed Isomers),LB
+37125,8.942382e-05,Mercury,LB
+37125,19.23772,Carbon Monoxide,TON
+37125,0.01789109,Organic Carbon portion of PM2.5-PRI,TON
+37121,23.20072,Acetaldehyde,LB
+37121,0.04382726,PM25-Primary from certain diesel engines,TON
+37121,0.001562838,Sulfate Portion of PM2.5-PRI,TON
+37021,6.383873,Nitrogen Oxides,TON
+37021,0.2991831,PM2.5 Primary (Filt + Cond),TON
+37021,0.01644432,Sulfur Dioxide,TON
+37021,0.0174877,Sulfate Portion of PM2.5-PRI,TON
+37021,2.201182e-05,Chromium (VI),LB
+37021,0.08415742,Chrysene,LB
+37019,0.0384987,Arsenic,LB
+37019,2.856504,Acenaphthene,LB
+37019,0.1064996,Sulfate Portion of PM2.5-PRI,TON
+37019,54.76798,Xylenes (Mixed Isomers),LB
+37019,0.0002139436,Chromium (VI),LB
+37015,2.825266,Styrene,LB
+37015,0.12654218,Benzo[a]Pyrene,LB
+37015,0.1275556,Manganese,LB
+37015,0.0492954,Nickel,LB
+37015,0.0374476,Arsenic,LB
+37015,0.00018800128,"Benzo[g,h,i,]Perylene",LB
+37015,0.03208768,Fluoranthene,LB
+37015,0.00012522268,Benzo[k]Fluoranthene,LB
+37015,4.17208,Formaldehyde,LB
+37015,0.0001755484,Arsenic,LB
+37015,0.01087709,PM10-Primary from certain diesel engines,TON
+37015,0.01000693,PM25-Primary from certain diesel engines,TON
+37015,0.01355089,PM10 Primary (Filt + Cond),TON
+37015,0.001787515,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.11066644,Acrolein,LB
+37011,0.0003131816,Pyrene,LB
+37011,0.00016422146,Fluoranthene,LB
+37011,2.788292,Acetaldehyde,LB
+37011,0.00010600866,Acenaphthene,LB
+37011,0.000514142,Phenanthrene,LB
+37011,6.41727e-07,Nitrate portion of PM2.5-PRI,TON
+37001,0.002801942,"Dibenzo[a,h]Anthracene",LB
+37001,2.38072,"2,2,4-Trimethylpentane",LB
+37001,37.7764,Acetaldehyde,LB
+37001,0.5931348,Fluorene,LB
+37001,0.03141599,Ammonia,TON
+37001,6.919258,Toluene,LB
+37075,0.003881226,Styrene,LB
+37075,0.00012340502,Anthracene,LB
+37075,0.03234436,Propionaldehyde,LB
+37075,0.0002566658,Pyrene,LB
+37075,0.0002459248,Manganese,LB
+37075,0.0001255824,Nickel,LB
+37075,1.6247468,Acetaldehyde,LB
+37075,0.0008591441,Ammonia,TON
+37075,0.0001093331,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,9.040081e-06,Sulfate Portion of PM2.5-PRI,TON
+37157,0.007141548,Acenaphthylene,LB
+37157,0.003306584,Arsenic,LB
+37157,0.1257842,Nitrogen Oxides,TON
+37157,0.01910619,PM10 Primary (Filt + Cond),TON
+37125,0.0004244112,Anthracene,LB
+37125,0.00256863,"Benzo[g,h,i,]Perylene",LB
+37125,0.0007865766,Fluoranthene,LB
+37125,0.003456177,Ammonia,TON
+37125,3.603252e-06,Nitrate portion of PM2.5-PRI,TON
+37125,0.005729243,PM10 Primary (Filt + Cond),TON
+37119,8.758412,Hexane,LB
+37119,0.02599284,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.014415378,Fluoranthene,LB
+37119,0.009757392,Chrysene,LB
+37119,0.01865096,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.0013045202,"Benzo[g,h,i,]Perylene",LB
+37013,287.6709,Carbon Dioxide,TON
+37013,0.00246658,Sulfur Dioxide,TON
+37013,0.002848,Sulfate Portion of PM2.5-PRI,TON
+37007,21.10574,Hexane,LB
+37019,1.003704,Ethyl Benzene,LB
+37019,0.001729648,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.04314646,Chrysene,LB
+37019,0.004808722,Nickel,LB
+37019,0.201358,Fluorene,LB
+37019,0.007526386,Sulfur Dioxide,TON
+37015,3.100682e-05,Benz[a]Anthracene,LB
+37015,0.019033526,Ethyl Benzene,LB
+37015,7.962656e-05,Anthracene,LB
+37015,0.0001905,Arsenic,LB
+37013,9.666118e-05,"Benzo[g,h,i,]Perylene",LB
+37013,2.774486e-05,Chrysene,LB
+37013,0.000209757,Fluorene,LB
+37013,8.894308e-05,Methane,TON
+37013,2.460527e-05,Ammonia,TON
+37013,1.883003e-05,Organic Carbon portion of PM2.5-PRI,TON
+37013,2.002693e-05,Sulfur Dioxide,TON
+37009,4.813734e-06,Chromium (VI),LB
+37009,0.0007546688,"Benzo[g,h,i,]Perylene",LB
+37009,0.0005082998,Benzo[k]Fluoranthene,LB
+37009,0.0005074098,"Dibenzo[a,h]Anthracene",LB
+37009,0.04062124,Benz[a]Anthracene,LB
+37009,0.002411906,Nickel,LB
+37009,0.2063994,Phenanthrene,LB
+37009,161.2614,Carbon Dioxide,TON
+37009,0.05809384,PM10 Primary (Filt + Cond),TON
+37009,0.04217711,PM2.5 Primary (Filt + Cond),TON
+37009,4.101092,Pyrene,LB
+37009,2004.418,"2,2,4-Trimethylpentane",LB
+37009,2532.364,Benzene,LB
+37009,2.444996,Acenaphthene,LB
+37009,0.9774218,Nitrous Oxide,TON
+37009,2.516168,PM10 Primary (Filt + Cond),TON
+37009,0.5896591,Sulfur Dioxide,TON
+37009,46.18399,Volatile Organic Compounds,TON
+37005,4231.704,Toluene,LB
+37005,307.9726,Formaldehyde,LB
+37005,1.0835222,Acenaphthene,LB
+37005,180.0621,Carbon Monoxide,TON
+37005,11054.93,Carbon Dioxide,TON
+37005,0.9901929,PM10 Primary (Filt + Cond),TON
+37003,0.3189142,Xylenes (Mixed Isomers),LB
+37003,9.219584e-07,Chromium (VI),LB
+37003,0.001398063,Benzo[b]Fluoranthene,LB
+37003,0.0810707,Styrene,LB
+37003,0.334732,Toluene,LB
+37003,0.01826978,PM10 Primary (Filt + Cond),TON
+37003,85.51932,Propionaldehyde,LB
+37003,0.04910572,Sulfate Portion of PM2.5-PRI,TON
+37199,0.00016945818,Fluoranthene,LB
+37199,7.342828e-07,Nickel,LB
+37199,0.0005299768,Phenanthrene,LB
+37199,0.0002393796,Fluorene,LB
+37199,0.2473393,Methane,TON
+37199,0.0002730411,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.008304888,Nitrous Oxide,TON
+37199,0.001046344,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.04720614,Anthracene,LB
+37187,0.08088174,Fluoranthene,LB
+37187,0.02442498,Benzo[a]Pyrene,LB
+37187,0.299408,Phenanthrene,LB
+37183,4.876852e-06,Fluoranthene,LB
+37183,7.076724e-06,Fluorene,LB
+37183,6.90277e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.0003309431,PM10 Primary (Filt + Cond),TON
+37177,0.14593194,Pyrene,LB
+37177,26.70156,Formaldehyde,LB
+37177,0.004233722,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.001847199,Sulfur Dioxide,TON
+37177,0.155291,Volatile Organic Compounds,TON
+37041,0.01671055,Acenaphthylene,LB
+37041,0.3414122,Nitrogen Oxides,TON
+37041,0.003072122,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.11071744,Ethyl Benzene,LB
+37041,0.08490266,Hexane,LB
+37041,0.16486808,Propionaldehyde,LB
+37041,0.02922692,Pyrene,LB
+37041,0.2676732,Xylenes (Mixed Isomers),LB
+37037,0.0006761296,Anthracene,LB
+37037,0.0011367738,Acenaphthene,LB
+37037,0.0002506891,Sulfate Portion of PM2.5-PRI,TON
+37037,0.2743582,Volatile Organic Compounds,TON
+37033,1.8607952,Toluene,LB
+37033,9.815036e-06,Mercury,LB
+37033,155.7098,Carbon Dioxide,TON
+37033,0.001344079,Sulfur Dioxide,TON
+37033,0.117532,Volatile Organic Compounds,TON
+37027,2.51097e-05,"Benzo[g,h,i,]Perylene",LB
+37027,0.0005488108,Fluoranthene,LB
+37027,0.004480644,Ammonia,TON
+37027,0.008902109,PM2.5 Primary (Filt + Cond),TON
+37027,0.000257296,Anthracene,LB
+37155,0.05171254,Propionaldehyde,LB
+37155,0.002028286,Benzo[b]Fluoranthene,LB
+37155,0.001601033,Chrysene,LB
+37155,0.7776426,Formaldehyde,LB
+37155,1.9318254e-06,Mercury,LB
+37155,0.013449796,Phenanthrene,LB
+37155,0.0002664967,Sulfur Dioxide,TON
+37151,0.007978988,Nitrate portion of PM2.5-PRI,TON
+37151,60.05497,Nitrogen Oxides,TON
+37151,3.522254,Volatile Organic Compounds,TON
+37151,0.13667726,Benzo[b]Fluoranthene,LB
+37151,0.2492745,Methane,TON
+37151,2.62247,PM25-Primary from certain diesel engines,TON
+37151,1.678666,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.0010812326,Benzo[a]Pyrene,LB
+37143,1.539134,Carbon Monoxide,TON
+37143,0.003332352,PM10 Primary (Filt + Cond),TON
+37143,0.0004099813,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.000625352,Sulfur Dioxide,TON
+37143,3.426413e-05,Sulfate Portion of PM2.5-PRI,TON
+37143,2.728438,Ethyl Benzene,LB
+37143,0.462161,"1,3-Butadiene",LB
+37143,0.0655416,Acrolein,LB
+37139,8442.314,Xylenes (Mixed Isomers),LB
+37139,0.998267,Benzo[k]Fluoranthene,LB
+37139,0.03681912,Mercury,LB
+37139,0.3664186,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.8312255,Organic Carbon portion of PM2.5-PRI,TON
+37123,10.632158,Toluene,LB
+37123,0.2503472,Chrysene,LB
+37123,0.03945115,Methane,TON
+37123,0.8885627,PM10-Primary from certain diesel engines,TON
+37123,0.5602008,Elemental Carbon portion of PM2.5-PRI,TON
+37119,47.82196,Ethyl Benzene,LB
+37119,0.0003906166,Chromium (VI),LB
+37119,0.03534312,"Benzo[g,h,i,]Perylene",LB
+37119,8.258946,Fluorene,LB
+37119,45.55486,Carbon Monoxide,TON
+37119,0.06295845,Nitrous Oxide,TON
+37119,0.008994922,Nitrate portion of PM2.5-PRI,TON
+37119,0.6054733,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,7.859448,Volatile Organic Compounds,TON
+37115,33.22482,Toluene,LB
+37115,0.8792208,"1,3-Butadiene",LB
+37115,0.002764534,Organic Carbon portion of PM2.5-PRI,TON
+37101,1.6708222,"2,2,4-Trimethylpentane",LB
+37101,0.005809884,Arsenic,LB
+37101,0.7061822,Phenanthrene,LB
+37101,0.2924705,PM2.5 Primary (Filt + Cond),TON
+37101,0.011840254,Benzo[b]Fluoranthene,LB
+37103,517.19,Ethyl Benzene,LB
+37103,1930.225,Xylenes (Mixed Isomers),LB
+37073,1.9480868e-07,Chromium (VI),LB
+37073,0.001106552,Chrysene,LB
+37073,1.3331802,Formaldehyde,LB
+37073,2.435192e-05,Nickel,LB
+37073,0.07675526,Volatile Organic Compounds,TON
+37085,22.40298,Ethyl Benzene,LB
+37085,74.40004,Hexane,LB
+37085,3.45725,Volatile Organic Compounds,TON
+37081,274.3916,Toluene,LB
+37081,72.82394,Hexane,LB
+37081,0.05804668,Acenaphthene,LB
+37081,2.29488,Nitrogen Oxides,TON
+37081,0.02225449,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.04469855,PM2.5 Primary (Filt + Cond),TON
+37081,0.01418031,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.0995911,Pyrene,LB
+37081,0.5912244,Acenaphthylene,LB
+37081,44.47254,Formaldehyde,LB
+37081,0.70592,Phenanthrene,LB
+37081,0.2628026,Fluorene,LB
+37081,6.737768,Naphthalene,LB
+37081,5.051825,Nitrogen Oxides,TON
+37081,0.09435179,PM2.5 Primary (Filt + Cond),TON
+37081,0.0422721,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.06881458,Chromium (VI),LB
+37081,77.64674,Acenaphthene,LB
+37081,157.28454,Fluorene,LB
+37081,47.29995,Methane,TON
+37081,13.88083,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.05618928,Chrysene,LB
+37067,69.06838,Formaldehyde,LB
+37067,0.0018725422,"Dibenzo[a,h]Anthracene",LB
+37067,0.1043283,Ammonia,TON
+37067,0.05537695,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.1465721,PM2.5 Primary (Filt + Cond),TON
+37067,8297.276,"1,3-Butadiene",LB
+37067,198981.12,Toluene,LB
+37067,101.27968,Pyrene,LB
+37067,32.44449,PM2.5 Primary (Filt + Cond),TON
+37065,0.935211,Xylenes (Mixed Isomers),LB
+37065,0.008636724,Benzo[a]Pyrene,LB
+37065,4.459952e-06,Mercury,LB
+37065,0.14248614,Phenanthrene,LB
+37065,0.3897921,Carbon Monoxide,TON
+37065,338.3864,Carbon Dioxide,TON
+37065,0.0004227247,Nitrous Oxide,TON
+37065,0.004810179,Ammonia,TON
+37065,0.06551576,Volatile Organic Compounds,TON
+37065,0.3021766,Hexane,LB
+37043,0.07262432,Pyrene,LB
+37043,0.03667414,Acenaphthylene,LB
+37043,2.183294e-06,Mercury,LB
+37043,0.08696296,Phenanthrene,LB
+37043,72.39276,Carbon Dioxide,TON
+37043,0.002256228,Ammonia,TON
+37037,42.31278,Ethyl Benzene,LB
+37037,0.04022326,Benzo[a]Pyrene,LB
+37037,3.47633,Naphthalene,LB
+37037,0.008469581,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.06197428,"Benzo[g,h,i,]Perylene",LB
+37035,100.0787,"2,2,4-Trimethylpentane",LB
+37035,0.5312928,Manganese,LB
+37035,0.15369022,Arsenic,LB
+37035,22506.55,Carbon Dioxide,TON
+37035,4.167794e-05,Pyrene,LB
+37035,2.61294e-09,Chromium (VI),LB
+37035,8.730686e-06,Chrysene,LB
+37035,0.0246588,Benzene,LB
+37035,2.404434e-06,Manganese,LB
+37035,5.00812e-07,Arsenic,LB
+37035,4.483273e-06,Ammonia,TON
+37031,10.51778,Carbon Monoxide,TON
+37031,2.403376,Volatile Organic Compounds,TON
+37031,0.02413424,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,458.8396,Formaldehyde,LB
+37031,12.255946,"2,2,4-Trimethylpentane",LB
+37031,1.0279772,Benz[a]Anthracene,LB
+37025,592.384,Toluene,LB
+37025,0.14882866,Anthracene,LB
+37025,0.07777402,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.0017853196,"Dibenzo[a,h]Anthracene",LB
+37025,0.010120446,Nickel,LB
+37025,0.17343412,Acenaphthene,LB
+37025,0.3513024,Fluorene,LB
+37025,0.0002722525,Nitrate portion of PM2.5-PRI,TON
+37027,13.305654,Ethyl Benzene,LB
+37027,0.5774464,Styrene,LB
+37027,0.01297159,PM2.5 Primary (Filt + Cond),TON
+37027,0.3822351,Volatile Organic Compounds,TON
+37027,0.03720464,Fluoranthene,LB
+37027,0.006223152,Chrysene,LB
+37027,30.14142,Benzene,LB
+37027,0.0012350394,Arsenic,LB
+37027,0.025768,Acenaphthene,LB
+37173,15.72432,Volatile Organic Compounds,TON
+37159,7.406278,Acrolein,LB
+37159,0.006640234,Arsenic,LB
+37159,0.001310571,Nitrate portion of PM2.5-PRI,TON
+37159,0.05161774,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,3490.06,Xylenes (Mixed Isomers),LB
+37151,0.912263,Nitrous Oxide,TON
+37151,0.1984799,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,41.30418,Ethyl Benzene,LB
+37141,61.14326,Hexane,LB
+37141,0.04856614,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,51.72402,"2,2,4-Trimethylpentane",LB
+37141,0.009012758,Arsenic,LB
+37141,0.13554488,Fluorene,LB
+37141,0.009080667,Elemental Carbon portion of PM2.5-PRI,TON
+37137,8.401304,Acetaldehyde,LB
+37137,226.2451,Carbon Dioxide,TON
+37137,0.004976229,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,6.250082,Ethyl Benzene,LB
+37117,18.788948,"2,2,4-Trimethylpentane",LB
+37123,2.439648e-08,Nitrate portion of PM2.5-PRI,TON
+37123,4.648676e-06,Organic Carbon portion of PM2.5-PRI,TON
+37123,1.274156e-05,PM10 Primary (Filt + Cond),TON
+37123,0.00015865624,Acrolein,LB
+37123,0.0001801239,Propionaldehyde,LB
+37123,0.008757172,Benzene,LB
+37123,1.5891566e-08,Mercury,LB
+37109,0.0011394844,Benzo[b]Fluoranthene,LB
+37109,0.0011394844,Benzo[k]Fluoranthene,LB
+37109,0.004317284,Acenaphthene,LB
+37109,0.224137,Naphthalene,LB
+37109,1.423264,Carbon Monoxide,TON
+37109,4.222864e-06,Nitrate portion of PM2.5-PRI,TON
+37105,0.05271964,Nickel,LB
+37105,0.9488248,PM10-Primary from certain diesel engines,TON
+37105,0.1736487,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,10.773528,"1,3-Butadiene",LB
+37105,0.4698516,Chrysene,LB
+37103,6.782727,Carbon Monoxide,TON
+37103,1.2980488,Pyrene,LB
+37103,0.005464096,"Benzo[g,h,i,]Perylene",LB
+37103,0.02538552,Benzo[b]Fluoranthene,LB
+37103,0.03292388,Nickel,LB
+37103,16.803588,Naphthalene,LB
+37103,8.657274,Propionaldehyde,LB
+37103,0.03804814,Benzo[b]Fluoranthene,LB
+37103,0.2440456,Chrysene,LB
+37103,0.12759428,Benzo[a]Pyrene,LB
+37103,4.366576,"2,2,4-Trimethylpentane",LB
+37103,0.02721478,Nickel,LB
+37103,18.33346,Naphthalene,LB
+37103,7.48075,Nitrogen Oxides,TON
+37101,0.014265552,Arsenic,LB
+37101,0.1932105,Methane,TON
+37101,0.05314432,Ammonia,TON
+37101,13.36593,Nitrogen Oxides,TON
+37101,0.8628582,PM2.5 Primary (Filt + Cond),TON
+37101,0.1538421,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.02337514,Sulfate Portion of PM2.5-PRI,TON
+37101,0.674043,Anthracene,LB
+37101,0.2478802,Benz[a]Anthracene,LB
+37101,0.1983219,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.113537,Sulfur Dioxide,TON
+37097,0.06436962,Styrene,LB
+37097,0.00265766,Anthracene,LB
+37097,0.004527944,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.0019475382,Chrysene,LB
+37097,0.0001038863,"Dibenzo[a,h]Anthracene",LB
+37097,0.003042976,Manganese,LB
+37097,0.7124932,Acetaldehyde,LB
+37097,320.8548,Carbon Dioxide,TON
+37097,0.000741159,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.2947787,Nitrogen Oxides,TON
+37093,1.0439512e-05,Mercury,LB
+37093,0.007680342,Nickel,LB
+37093,0.00218285,Arsenic,LB
+37093,0.4219562,Volatile Organic Compounds,TON
+37093,5.781698,Acrolein,LB
+37093,3.858938,Propionaldehyde,LB
+37093,0.398828,Acenaphthylene,LB
+37093,0.00219058,"Dibenzo[a,h]Anthracene",LB
+37093,0.1772543,Benz[a]Anthracene,LB
+37089,9.531648e-05,Acrolein,LB
+37089,0.010338326,Xylenes (Mixed Isomers),LB
+37089,8.721124e-10,Chromium (VI),LB
+37089,2.65765e-06,Benzo[b]Fluoranthene,LB
+37089,8.154246e-06,Fluoranthene,LB
+37089,2.65765e-06,Benzo[k]Fluoranthene,LB
+37089,1.0158808e-07,"Dibenzo[a,h]Anthracene",LB
+37089,1.080699e-05,Fluorene,LB
+37089,0.002254275,Carbon Monoxide,TON
+37089,1.572517e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.002309184,Hexane,LB
+37087,1.4806692e-05,"Benzo[g,h,i,]Perylene",LB
+37087,3.081312e-06,Benzo[b]Fluoranthene,LB
+37087,1.8998068e-05,Acenaphthylene,LB
+37087,0.004155742,Benzene,LB
+37087,9.153708e-07,Manganese,LB
+37087,1.6631754e-07,Arsenic,LB
+37087,1.736702e-06,Methane,TON
+37087,1.791909e-07,Sulfate Portion of PM2.5-PRI,TON
+37087,5.890734e-05,Volatile Organic Compounds,TON
+37081,0.0762299,Formaldehyde,LB
+37081,0.06493998,Acetaldehyde,LB
+37081,0.01161833,Naphthalene,LB
+37081,0.07733889,Carbon Monoxide,TON
+37081,16.27065,Carbon Dioxide,TON
+37081,0.004276904,Acrolein,LB
+37059,30.18768,Carbon Monoxide,TON
+37061,0.00015401256,"Benzo[g,h,i,]Perylene",LB
+37061,6.218082e-06,Manganese,LB
+37061,0.0463432,Acetaldehyde,LB
+37061,0.007358124,Naphthalene,LB
+37055,0.4958696,"2,2,4-Trimethylpentane",LB
+37055,6.871048e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.01392128,Volatile Organic Compounds,TON
+37055,0.02201838,Acrolein,LB
+37055,3.396002e-07,Chromium (VI),LB
+37047,2.08808,Anthracene,LB
+37047,0.11305938,Benzo[b]Fluoranthene,LB
+37047,61.55446,Benzene,LB
+37047,3.172174,PM10-Primary from certain diesel engines,TON
+37047,2.918398,PM25-Primary from certain diesel engines,TON
+37047,0.2732012,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.01810131,Nitrous Oxide,TON
+37047,0.2750676,Methane,TON
+37047,1.153696,PM10-Primary from certain diesel engines,TON
+37177,7.437216,Volatile Organic Compounds,TON
+37177,367.9308,Hexane,LB
+37177,926.375,Xylenes (Mixed Isomers),LB
+37177,0.005135256,"Dibenzo[a,h]Anthracene",LB
+37177,0.12399368,Manganese,LB
+37177,129.5054,Acetaldehyde,LB
+37177,0.7782723,Ammonia,TON
+37177,0.0006934491,Nitrate portion of PM2.5-PRI,TON
+37175,1.8737888,Hexane,LB
+37175,0.03093271,Methane,TON
+37175,0.1729374,PM2.5 Primary (Filt + Cond),TON
+37161,6.054812,Styrene,LB
+37161,491.7962,Formaldehyde,LB
+37161,0.16266482,Manganese,LB
+37161,0.06233838,Nickel,LB
+37161,6276.989,Carbon Dioxide,TON
+37161,1.187989,PM10-Primary from certain diesel engines,TON
+37161,1.747133,PM10 Primary (Filt + Cond),TON
+37155,3.957272,Anthracene,LB
+37155,0.04492948,"Benzo[g,h,i,]Perylene",LB
+37155,0.02933174,Benzo[k]Fluoranthene,LB
+37155,0.2741738,Nickel,LB
+37155,73.90618,"1,3-Butadiene",LB
+37155,0.015342592,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,51.38098,"2,2,4-Trimethylpentane",LB
+37155,7.521004,Acenaphthene,LB
+37161,1.4816998,Anthracene,LB
+37161,37.28864,Benzene,LB
+37161,0.16369618,Manganese,LB
+37161,8.172336e-05,Mercury,LB
+37161,0.01708761,Arsenic,LB
+37161,171.48998,Acetaldehyde,LB
+37161,2.934788,Fluorene,LB
+37143,1.2259244,Styrene,LB
+37143,0.3072496,Anthracene,LB
+37143,0.8791394,Pyrene,LB
+37143,81.6724,Formaldehyde,LB
+37143,0.02682512,Manganese,LB
+37143,9.097104,Naphthalene,LB
+37143,0.0225088,Methane,TON
+37143,1359.512,Carbon Dioxide,TON
+37143,0.001747358,Nitrous Oxide,TON
+37143,3.169464,Styrene,LB
+37143,0.1150006,Anthracene,LB
+37143,2.655622,Propionaldehyde,LB
+37143,0.03477782,Chrysene,LB
+37143,0.01855816,Arsenic,LB
+37143,0.731397,Phenanthrene,LB
+37143,0.07040968,Nitrous Oxide,TON
+37143,2.256787,Volatile Organic Compounds,TON
+37131,13.104606,Acrolein,LB
+37131,0.6139782,Anthracene,LB
+37131,1.7470366,Pyrene,LB
+37131,0.00961393,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.5635868,Acenaphthene,LB
+37131,0.7980871,PM2.5 Primary (Filt + Cond),TON
+37131,0.02309276,Sulfur Dioxide,TON
+37129,13.261064,"1,3-Butadiene",LB
+37129,12.061254,Hexane,LB
+37129,1.334928,Acenaphthene,LB
+37129,4.054606,Phenanthrene,LB
+37129,0.4848277,PM10-Primary from certain diesel engines,TON
+37129,0.4917507,PM2.5 Primary (Filt + Cond),TON
+37129,0.03986035,Sulfur Dioxide,TON
+37129,0.11549716,Styrene,LB
+37129,14.932968,Toluene,LB
+37129,10.14191,Xylenes (Mixed Isomers),LB
+37129,0.004749646,Acenaphthene,LB
+37129,0.0009718823,PM2.5 Primary (Filt + Cond),TON
+37121,1.2737182,Styrene,LB
+37121,7.924288,Toluene,LB
+37121,0.002217056,Benzo[k]Fluoranthene,LB
+37121,9.206838,Benzene,LB
+37121,0.01824662,Nickel,LB
+37121,0.619636,Fluorene,LB
+37121,0.003772705,Nitrous Oxide,TON
+37121,0.08103069,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.7684376,Acrolein,LB
+37111,0.243496,Hexane,LB
+37111,0.012845964,Chrysene,LB
+37111,0.0004619102,Arsenic,LB
+37111,0.5544304,Nitrogen Oxides,TON
+37111,0.032997,PM10 Primary (Filt + Cond),TON
+37111,0.0257941,PM2.5 Primary (Filt + Cond),TON
+37111,0.00942326,Chromium (VI),LB
+37111,1.8060792,Arsenic,LB
+37111,1.36404,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.01880796,Nitrate portion of PM2.5-PRI,TON
+37111,0.018343658,Manganese,LB
+37111,63.85788,Carbon Monoxide,TON
+37111,0.01486292,Nitrous Oxide,TON
+37111,277.8912,Ethyl Benzene,LB
+37109,3.692392,Nitrous Oxide,TON
+37109,159.5198,Volatile Organic Compounds,TON
+37103,0.0011179514,"1,3-Butadiene",LB
+37103,0.00664696,Hexane,LB
+37103,7.837334e-06,Anthracene,LB
+37103,0.0004668318,Naphthalene,LB
+37103,0.0001508125,Volatile Organic Compounds,TON
+37101,2.71414,Ammonia,TON
+37101,0.6706646,Benzo[k]Fluoranthene,LB
+37101,662.7984,Formaldehyde,LB
+37101,1539.7312,"2,2,4-Trimethylpentane",LB
+37101,0.4649754,Arsenic,LB
+37101,1.669106,Methane,TON
+37091,0.01925362,"1,3-Butadiene",LB
+37091,0.0002208446,"Benzo[g,h,i,]Perylene",LB
+37091,0.0543848,Formaldehyde,LB
+37091,0.05197284,Acetaldehyde,LB
+37091,0.0001677837,PM10 Primary (Filt + Cond),TON
+37091,2.369302e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,209.8338,Toluene,LB
+37089,158.67558,Benzene,LB
+37089,48337.32,Carbon Dioxide,TON
+37089,0.01593279,Nitrate portion of PM2.5-PRI,TON
+37089,1.286712,Organic Carbon portion of PM2.5-PRI,TON
+37089,5.514818,Acrolein,LB
+37089,0.016677912,Benzo[b]Fluoranthene,LB
+37089,0.0042337,Arsenic,LB
+37089,0.8717136,Phenanthrene,LB
+37089,946.5878,Carbon Dioxide,TON
+37089,2.967926,Nitrogen Oxides,TON
+37117,2.654588,Ethyl Benzene,LB
+37117,10.30502,Toluene,LB
+37117,3.882988,Hexane,LB
+37117,0.00018076956,"Dibenzo[a,h]Anthracene",LB
+37117,0.007845524,Manganese,LB
+37117,0.03671145,Methane,TON
+37175,212.745,Formaldehyde,LB
+37175,0.0324995,Nickel,LB
+37175,0.184483,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.07791294,Sulfur Dioxide,TON
+37175,0.08246524,Sulfate Portion of PM2.5-PRI,TON
+37175,2.125496,Styrene,LB
+37175,3.71781,"1,3-Butadiene",LB
+37175,6.125618,Propionaldehyde,LB
+37175,10.944704,Benzene,LB
+37175,0.04962453,Methane,TON
+37175,0.0002794012,Nitrate portion of PM2.5-PRI,TON
+37175,0.01049451,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,1.9783904,Acenaphthylene,LB
+37165,0.005030996,"Benzo[g,h,i,]Perylene",LB
+37165,32.96866,Benzene,LB
+37165,2426.847,Carbon Dioxide,TON
+37161,0.6475338,"Benzo[g,h,i,]Perylene",LB
+37161,3.234672,Acenaphthylene,LB
+37161,0.18839944,Chrysene,LB
+37161,0.09171895,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.189475,Sulfur Dioxide,TON
+37157,2.027736e-05,"Benzo[g,h,i,]Perylene",LB
+37157,0.0005438036,Acenaphthylene,LB
+37157,0.00010179382,Chrysene,LB
+37157,0.0005060656,Fluorene,LB
+37151,2.791914,Ethyl Benzene,LB
+37151,6.63416,Toluene,LB
+37151,0.80268,Pyrene,LB
+37151,0.004662402,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.0613909,Benzo[a]Pyrene,LB
+37151,0.006500958,Arsenic,LB
+37151,0.9897806,Phenanthrene,LB
+37151,0.001075239,Nitrate portion of PM2.5-PRI,TON
+37151,0.04067934,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.06371516,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.06362206,Benzo[a]Pyrene,LB
+37149,173.49726,Benzene,LB
+37141,2.836064,Anthracene,LB
+37141,7.167278,Pyrene,LB
+37141,0.0005577826,Mercury,LB
+37141,0.15352744,Nickel,LB
+37141,0.368388,Sulfate Portion of PM2.5-PRI,TON
+37003,0.008513658,Benzo[k]Fluoranthene,LB
+37003,31.41936,Naphthalene,LB
+37003,0.6766921,PM2.5 Primary (Filt + Cond),TON
+37075,0.1458748,Hexane,LB
+37075,0.0002630224,Pyrene,LB
+37075,1.297854e-06,Chromium (VI),LB
+37075,0.000647285,"Benzo[g,h,i,]Perylene",LB
+37075,0.00013051924,Benzo[b]Fluoranthene,LB
+37075,0.00010178426,Chrysene,LB
+37075,0.160233,"2,2,4-Trimethylpentane",LB
+37075,0.0001622584,Nickel,LB
+37075,0.00013917158,Acenaphthene,LB
+37075,0.1613743,Carbon Monoxide,TON
+37021,2.185444,"1,3-Butadiene",LB
+37021,0.12595146,"Benzo[g,h,i,]Perylene",LB
+37021,0.018477418,Chrysene,LB
+37021,221.3842,Acetaldehyde,LB
+37021,0.018315156,Acenaphthene,LB
+37021,0.1543175,Methane,TON
+37021,0.1433934,Ammonia,TON
+37147,3.210348,Hexane,LB
+37147,0.12327826,Naphthalene,LB
+37147,0.02097496,Methane,TON
+37147,0.001635132,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.006784427,Nitrous Oxide,TON
+37147,0.1994666,Volatile Organic Compounds,TON
+37127,0.01662335,Methane,TON
+37127,0.2544982,"1,3-Butadiene",LB
+37121,0.3110974,Hexane,LB
+37121,0.2784004,Benzene,LB
+37011,0.00441078,Styrene,LB
+37011,0.00016278342,Anthracene,LB
+37011,0.06031742,Acetaldehyde,LB
+37011,0.0001051363,Nitrous Oxide,TON
+37011,0.007416594,Nitrogen Oxides,TON
+37011,5.35904e-05,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.186969,PM10-Primary from certain diesel engines,TON
+37005,0.007165242,Sulfate Portion of PM2.5-PRI,TON
+37005,2.518668,Hexane,LB
+37005,0.003267502,"Benzo[g,h,i,]Perylene",LB
+37005,8.907736,Benzene,LB
+37005,0.019912108,Manganese,LB
+37005,1.985194e-05,Mercury,LB
+37053,0.05976072,"1,3-Butadiene",LB
+37053,0.0009041838,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.0007218528,Fluoranthene,LB
+37053,0.001930417,Acenaphthylene,LB
+37053,5.50772e-05,Mercury,LB
+37053,74.85318,Carbon Dioxide,TON
+37053,0.002274706,Sulfur Dioxide,TON
+37053,0.03255686,Volatile Organic Compounds,TON
+37053,0.08323468,Volatile Organic Compounds,TON
+37039,0.007431076,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.00317476,Chrysene,LB
+37039,4.994649,Carbon Monoxide,TON
+37039,472.2581,Carbon Dioxide,TON
+37039,0.5504339,Nitrogen Oxides,TON
+37039,0.02636641,PM10 Primary (Filt + Cond),TON
+37039,0.2919248,Volatile Organic Compounds,TON
+37013,0.01280893,PM2.5 Primary (Filt + Cond),TON
+37013,0.8337118,Styrene,LB
+37013,0.014802444,Chrysene,LB
+37013,68.76298,Formaldehyde,LB
+37013,0.005462188,Arsenic,LB
+37013,0.330927,Fluorene,LB
+37013,0.009678035,PM10-Primary from certain diesel engines,TON
+37013,0.002279354,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.009022833,Ammonia,TON
+37005,1.6062138,"2,2,4-Trimethylpentane",LB
+37005,0.001256475,Nitrous Oxide,TON
+37005,0.05383595,Nitrogen Oxides,TON
+37005,0.0001776821,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,1.472804e-05,Sulfate Portion of PM2.5-PRI,TON
+37177,1.4170588,"2,2,4-Trimethylpentane",LB
+37177,1.1288274e-05,Nickel,LB
+37177,0.0016913376,Acenaphthene,LB
+37177,0.0006492024,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.0004809954,Benzo[b]Fluoranthene,LB
+37177,0.0004717424,Chrysene,LB
+37173,7.455534,Acrolein,LB
+37173,7.81306,Propionaldehyde,LB
+37173,256.0642,"2,2,4-Trimethylpentane",LB
+37173,0.002881746,Mercury,LB
+37173,0.7912438,Fluorene,LB
+37173,0.1529676,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.11253702,Benzo[b]Fluoranthene,LB
+37173,0.11253702,Benzo[k]Fluoranthene,LB
+37171,7.50856,Formaldehyde,LB
+37169,4697.784,Hexane,LB
+37169,1578.752,Acetaldehyde,LB
+37169,2.163559,Nitrous Oxide,TON
+37149,0.009827358,PM10 Primary (Filt + Cond),TON
+37149,0.0003063966,Fluoranthene,LB
+37149,5.51596e-05,Benz[a]Anthracene,LB
+37149,1.2143124e-06,Nickel,LB
+37153,2.306328,Acetaldehyde,LB
+37153,0.06463924,Phenanthrene,LB
+37153,0.00576423,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.01805514,PM10 Primary (Filt + Cond),TON
+37153,0.00015605562,Benzo[k]Fluoranthene,LB
+37153,0.00015585704,"Dibenzo[a,h]Anthracene",LB
+37153,1.2723518e-06,Chromium (VI),LB
+37147,2.823602,Styrene,LB
+37147,10.438592,Propionaldehyde,LB
+37147,12.630522,Xylenes (Mixed Isomers),LB
+37147,1.0880614,Acenaphthylene,LB
+37147,4.811978,"2,2,4-Trimethylpentane",LB
+37147,0.07364698,Manganese,LB
+37147,0.008090254,Arsenic,LB
+37147,0.0366263,Ammonia,TON
+37147,105.16172,Toluene,LB
+37147,0.09053708,Acenaphthylene,LB
+37147,0.0005404338,Nickel,LB
+37147,0.01506654,Methane,TON
+37147,0.006342891,Nitrous Oxide,TON
+37147,0.009240936,PM2.5 Primary (Filt + Cond),TON
+37145,7234.884,Toluene,LB
+37145,192.60666,Benzene,LB
+37139,2.977448,Styrene,LB
+37139,0.514969,Benz[a]Anthracene,LB
+37139,0.1551258,Methane,TON
+37139,0.1050418,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.0005289402,Benzo[a]Pyrene,LB
+37143,0.03186714,Styrene,LB
+37143,0.0011749096,Anthracene,LB
+37143,0.002434385,PM10 Primary (Filt + Cond),TON
+37141,4.927266,Ethyl Benzene,LB
+37141,3.729814,Hexane,LB
+37141,0.03450954,Manganese,LB
+37141,0.005352572,Arsenic,LB
+37141,0.05706569,Methane,TON
+37141,0.009006261,Sulfate Portion of PM2.5-PRI,TON
+37137,1.0803928,Hexane,LB
+37137,0.1143766,Anthracene,LB
+37137,0.0005723114,"Benzo[g,h,i,]Perylene",LB
+37137,0.2335878,Acenaphthylene,LB
+37137,42.99526,Formaldehyde,LB
+37137,0.3745174,Phenanthrene,LB
+37133,0.0011166284,"Dibenzo[a,h]Anthracene",LB
+37133,3.015668,Xylenes (Mixed Isomers),LB
+37133,1.1714956e-05,Chromium (VI),LB
+37133,15.376356,Acetaldehyde,LB
+37133,0.2391292,Fluorene,LB
+37133,1.109552,Carbon Monoxide,TON
+37133,0.02326606,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.1107134,Sulfur Dioxide,TON
+37127,0.013287392,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,44.37486,Hexane,LB
+37127,167.67648,Benzene,LB
+37121,4.31357e-06,Benz[a]Anthracene,LB
+37121,1.55823e-07,Nickel,LB
+37121,3.498022e-06,Organic Carbon portion of PM2.5-PRI,TON
+37121,1.855598e-05,Fluoranthene,LB
+37121,4.109546e-06,Chrysene,LB
+37117,0.15735346,Fluoranthene,LB
+37117,0.0013067786,Arsenic,LB
+37117,8.455952,Acetaldehyde,LB
+37117,0.06135074,Acenaphthene,LB
+37117,0.00987154,Methane,TON
+37117,0.01953766,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.006480602,Ammonia,TON
+37117,0.001826936,Sulfur Dioxide,TON
+37117,0.1103916,Volatile Organic Compounds,TON
+37117,0.0004102728,Pyrene,LB
+37117,0.0002408112,"Benzo[g,h,i,]Perylene",LB
+37117,6.812354e-05,Benzo[k]Fluoranthene,LB
+37117,6.738914e-05,Chrysene,LB
+37117,0.07928328,Formaldehyde,LB
+37117,2.008408e-05,Ammonia,TON
+37117,4.571704e-05,Organic Carbon portion of PM2.5-PRI,TON
+37107,919.3117,Carbon Dioxide,TON
+37107,0.5342866,Anthracene,LB
+37107,3.793514,"2,2,4-Trimethylpentane",LB
+37107,0.01870103,Ammonia,TON
+37107,0.3747358,PM2.5 Primary (Filt + Cond),TON
+37107,0.008005673,Sulfur Dioxide,TON
+37097,0.02290419,Elemental Carbon portion of PM2.5-PRI,TON
+37097,615.2626,Toluene,LB
+37097,157.2048,Hexane,LB
+37105,5.867174,Toluene,LB
+37105,0.03422172,Propionaldehyde,LB
+37105,8.227694e-08,Chromium (VI),LB
+37105,0.0004930886,Benzo[b]Fluoranthene,LB
+37105,8.248108e-07,Mercury,LB
+37105,0.0005757133,Nitrous Oxide,TON
+37105,1.959015e-06,Nitrate portion of PM2.5-PRI,TON
+37105,6396.582,Ethyl Benzene,LB
+37105,1474.9158,"1,3-Butadiene",LB
+37105,3.049016,Benzo[b]Fluoranthene,LB
+37105,0.09476106,"Dibenzo[a,h]Anthracene",LB
+37105,2.884418,Manganese,LB
+37103,0.374687,Acenaphthene,LB
+37103,0.05238163,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,2.682976,Hexane,LB
+37103,3.043548e-05,Chromium (VI),LB
+37103,0.00521761,"Benzo[g,h,i,]Perylene",LB
+37103,0.003492704,Benzo[k]Fluoranthene,LB
+37103,0.003487518,"Dibenzo[a,h]Anthracene",LB
+37103,2.306118e-05,Mercury,LB
+37099,0.9155461,Elemental Carbon portion of PM2.5-PRI,TON
+37099,1.983595,PM10 Primary (Filt + Cond),TON
+37099,1.891174,Volatile Organic Compounds,TON
+37099,5.031064,Ethyl Benzene,LB
+37099,0.002868356,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,2.292722,Formaldehyde,LB
+37099,0.001130274,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,2027.454,Formaldehyde,LB
+37083,0.01607203,"Dibenzo[a,h]Anthracene",LB
+37083,3.145831,Methane,TON
+37083,3.735477,PM25-Primary from certain diesel engines,TON
+37017,1.1741364e-06,Mercury,LB
+37017,0.6399874,Naphthalene,LB
+37017,0.01400839,PM25-Primary from certain diesel engines,TON
+37017,0.3933278,Toluene,LB
+37017,1.369728e-06,Chromium (VI),LB
+37021,0.3844756,Mercury,LB
+37021,100.3316,Fluorene,LB
+37021,42.4877,Anthracene,LB
+37021,58.0201,"Benzo[g,h,i,]Perylene",LB
+37021,72.78178,Fluoranthene,LB
+37021,15.267714,Benz[a]Anthracene,LB
+37017,2.492878,Benz[a]Anthracene,LB
+37017,3340.092,Acetaldehyde,LB
+37009,0.9269046,Styrene,LB
+37009,4.877096,Acrolein,LB
+37009,0.04746584,Chrysene,LB
+37009,0.0008604308,"Dibenzo[a,h]Anthracene",LB
+37009,2.496805,Carbon Monoxide,TON
+37015,8.244522,Xylenes (Mixed Isomers),LB
+37015,0.003931958,Benzo[k]Fluoranthene,LB
+37015,10.98568,Benzene,LB
+37015,0.0002949194,Mercury,LB
+37015,0.003677472,Nickel,LB
+37015,0.02794002,PM10 Primary (Filt + Cond),TON
+37021,1.489029e-05,Nitrate portion of PM2.5-PRI,TON
+37021,0.02715487,PM10 Primary (Filt + Cond),TON
+37021,0.006497683,PM2.5 Primary (Filt + Cond),TON
+37021,0.00279499,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.08613824,Volatile Organic Compounds,TON
+37009,3.26831,Hexane,LB
+37009,0.003912538,Anthracene,LB
+37009,0.0298689,Methane,TON
+37009,3.732825,Carbon Monoxide,TON
+37009,0.00769356,PM2.5 Primary (Filt + Cond),TON
+37171,0.06134584,"1,3-Butadiene",LB
+37171,0.0010223792,Pyrene,LB
+37171,0.0007000416,Benzo[b]Fluoranthene,LB
+37171,0.0009051546,Fluoranthene,LB
+37171,0.9632268,Formaldehyde,LB
+37171,0.0004990406,Acenaphthene,LB
+37171,0.00101086,Fluorene,LB
+37151,0.012382298,Nickel,LB
+37151,0.8127362,Naphthalene,LB
+37151,0.03277881,Nitrous Oxide,TON
+37151,0.09945828,Ammonia,TON
+37151,0.000108282,Nitrate portion of PM2.5-PRI,TON
+37103,0.007526932,"1,3-Butadiene",LB
+37103,0.00011057516,Nickel,LB
+37103,4.278917e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.0001568596,Nitrous Oxide,TON
+37103,7.389921e-06,Sulfate Portion of PM2.5-PRI,TON
+37089,0.18640512,"1,3-Butadiene",LB
+37089,0.097156,Volatile Organic Compounds,TON
+37021,0.01612605,"Dibenzo[a,h]Anthracene",LB
+37021,0.15164478,Manganese,LB
+37021,0.00010115634,Chromium (VI),LB
+37021,0.0243554,"Benzo[g,h,i,]Perylene",LB
+37021,0.01969797,Nitrous Oxide,TON
+37017,25.3258,"2,2,4-Trimethylpentane",LB
+37017,7.735776e-05,Chromium (VI),LB
+37017,237.7108,Benzene,LB
+37017,51.3004,Carbon Monoxide,TON
+37017,0.0108916,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.0260942,Sulfur Dioxide,TON
+37011,4.6873,Hexane,LB
+37011,0.4639534,Anthracene,LB
+37011,7.817408,Propionaldehyde,LB
+37011,0.00633892,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,15.717498,Benzene,LB
+37011,0.00011754764,Mercury,LB
+37011,1.8949932,Styrene,LB
+37011,163.4114,Styrene,LB
+37003,7.013932,Acrolein,LB
+37003,1.2789098e-05,Chromium (VI),LB
+37003,0.00817652,Nickel,LB
+37003,0.0018420234,Arsenic,LB
+37003,0.2528282,PM10 Primary (Filt + Cond),TON
+37001,28.14136,"1,3-Butadiene",LB
+37001,1317.9964,Hexane,LB
+37001,0.07337686,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,4.986864e-05,"Dibenzo[a,h]Anthracene",LB
+37199,5.047456,Benzene,LB
+37199,0.02998236,Phenanthrene,LB
+37199,5.903873e-06,Nitrate portion of PM2.5-PRI,TON
+37199,0.09852999,Volatile Organic Compounds,TON
+37185,3.623972,Hexane,LB
+37185,0.5462096,Anthracene,LB
+37185,1.1688804,Fluoranthene,LB
+37185,17.08308,Nitrogen Oxides,TON
+37185,11.730914,Acrolein,LB
+37185,2.023682,Hexane,LB
+37185,0.004279092,Pyrene,LB
+37185,0.001612986,Benzo[k]Fluoranthene,LB
+37185,0.0003796204,Arsenic,LB
+37185,0.002375238,Acenaphthene,LB
+37185,1.20145,Carbon Monoxide,TON
+37185,8.733768e-06,Nitrate portion of PM2.5-PRI,TON
+37185,0.00677454,PM10 Primary (Filt + Cond),TON
+37189,0.012389848,Nickel,LB
+37189,0.01528779,Ammonia,TON
+37189,0.001429994,Nitrate portion of PM2.5-PRI,TON
+37189,0.006384608,Sulfur Dioxide,TON
+37189,0.7189106,Volatile Organic Compounds,TON
+37189,4.302814,Ethyl Benzene,LB
+37189,131.01158,Formaldehyde,LB
+37189,0.003230392,"Dibenzo[a,h]Anthracene",LB
+37189,43.72666,Ethyl Benzene,LB
+37189,0.005356172,Benzo[k]Fluoranthene,LB
+37189,0.1749728,Nickel,LB
+37189,0.05348004,Arsenic,LB
+37189,61.20373,Carbon Monoxide,TON
+37189,0.002560497,Nitrate portion of PM2.5-PRI,TON
+37189,1.527733,PM10 Primary (Filt + Cond),TON
+37189,0.06713793,Sulfur Dioxide,TON
+37193,0.3292394,Benzo[a]Pyrene,LB
+37193,49.73962,Benzene,LB
+37193,2.488732,PM10-Primary from certain diesel engines,TON
+37185,0.2184536,PM10 Primary (Filt + Cond),TON
+37185,78.174,Formaldehyde,LB
+37185,5.964926,Styrene,LB
+37185,4.800124,Acrolein,LB
+37185,249.142,Benzene,LB
+37185,0.0383754,Manganese,LB
+37185,0.02229102,Nickel,LB
+37183,0.8425948,"Benzo[g,h,i,]Perylene",LB
+37183,0.18992338,Benz[a]Anthracene,LB
+37179,3.666197,PM25-Primary from certain diesel engines,TON
+37179,2.54998,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.7982088,Ammonia,TON
+37179,87.014,Nitrogen Oxides,TON
+37179,0.0010060854,Chromium (VI),LB
+37179,0.0382148,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,68.53438,Styrene,LB
+37179,4599.004,Formaldehyde,LB
+37179,0.3127186,Acrolein,LB
+37179,55.20566,Toluene,LB
+37179,0.013645832,"Benzo[g,h,i,]Perylene",LB
+37179,0.00011770384,"Dibenzo[a,h]Anthracene",LB
+37179,16.589344,Benzene,LB
+37179,0.0018899396,Arsenic,LB
+37179,0.7826858,Naphthalene,LB
+37173,0.001556238,Benzo[k]Fluoranthene,LB
+37173,0.03820834,Benzo[a]Pyrene,LB
+37173,23.6354,Acetaldehyde,LB
+37173,0.1338731,PM25-Primary from certain diesel engines,TON
+37173,0.05900438,Elemental Carbon portion of PM2.5-PRI,TON
+37173,3.640542,Xylenes (Mixed Isomers),LB
+37125,0.2942066,Pyrene,LB
+37125,4.096962e-05,Chromium (VI),LB
+37125,0.04191192,Chrysene,LB
+37125,0.9681434,Phenanthrene,LB
+37125,0.03433994,Sulfur Dioxide,TON
+37113,36.397,Ethyl Benzene,LB
+37113,1.0643032,Acrolein,LB
+37113,51.53224,Hexane,LB
+37113,1.5872836e-05,Chromium (VI),LB
+37113,0.07869656,Fluoranthene,LB
+37113,0.2461446,Acenaphthylene,LB
+37113,0.014744004,Benz[a]Anthracene,LB
+37113,0.011508266,Manganese,LB
+37113,0.0019840618,Nickel,LB
+37113,0.2934032,Phenanthrene,LB
+37113,2.806896,Naphthalene,LB
+37113,0.04912701,Methane,TON
+37113,1.807938,Nitrogen Oxides,TON
+37113,0.02346226,PM2.5 Primary (Filt + Cond),TON
+37113,0.01259519,Sulfur Dioxide,TON
+37113,1.070253,Volatile Organic Compounds,TON
+37109,0.002417564,Manganese,LB
+37109,0.0005660382,Nickel,LB
+37109,0.006296402,Acenaphthene,LB
+37109,0.012754148,Fluorene,LB
+37109,0.01231241,PM10 Primary (Filt + Cond),TON
+37109,0.003120176,Sulfur Dioxide,TON
+37109,0.8219918,"1,3-Butadiene",LB
+37109,0.010619784,Pyrene,LB
+37105,4.658718,Ethyl Benzene,LB
+37105,1205.391,Carbon Dioxide,TON
+37105,0.1394691,PM25-Primary from certain diesel engines,TON
+37105,0.003865118,Nitrous Oxide,TON
+37105,0.03969711,Ammonia,TON
+37105,0.013468,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.01033019,Sulfur Dioxide,TON
+37105,0.007349769,Sulfate Portion of PM2.5-PRI,TON
+37101,0.0473163,"Benzo[g,h,i,]Perylene",LB
+37101,5.21416,Formaldehyde,LB
+37101,0.0004079174,"Dibenzo[a,h]Anthracene",LB
+37101,0.03154046,Fluorene,LB
+37101,0.007103084,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.013823544,Anthracene,LB
+37097,1.9672912,Styrene,LB
+37097,7.472292,"1,3-Butadiene",LB
+37097,0.07698992,Anthracene,LB
+37097,0.02570938,Chrysene,LB
+37097,0.03648116,Benzo[a]Pyrene,LB
+37097,107.65122,Benzene,LB
+37097,0.0002757282,Mercury,LB
+37097,0.03562159,Methane,TON
+37097,0.0001418115,Nitrate portion of PM2.5-PRI,TON
+37097,2.855717,Nitrogen Oxides,TON
+37097,0.02374094,Organic Carbon portion of PM2.5-PRI,TON
+37089,22.29014,"1,3-Butadiene",LB
+37089,0.00015715606,Chromium (VI),LB
+37089,0.17797602,Benzo[b]Fluoranthene,LB
+37089,8.907274,Phenanthrene,LB
+37089,0.243162,Methane,TON
+37089,3.249969,PM10-Primary from certain diesel engines,TON
+37089,2.98989,PM25-Primary from certain diesel engines,TON
+37089,61.04652,Nitrogen Oxides,TON
+37089,4.529059,PM10 Primary (Filt + Cond),TON
+37089,3.15399,PM2.5 Primary (Filt + Cond),TON
+37087,0.0007674674,Benzo[k]Fluoranthene,LB
+37087,0.03602484,Chrysene,LB
+37087,2.23834,Acrolein,LB
+37087,0.9269595,Carbon Monoxide,TON
+37087,0.001001688,Nitrous Oxide,TON
+37087,0.01449659,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.0585201,Anthracene,LB
+37079,5.448634e-06,Chromium (VI),LB
+37079,0.000803296,"Benzo[g,h,i,]Perylene",LB
+37079,0.004855254,Manganese,LB
+37079,0.06459178,PM10 Primary (Filt + Cond),TON
+37079,0.04718126,PM2.5 Primary (Filt + Cond),TON
+37079,0.008189945,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.00162771,Sulfur Dioxide,TON
+37073,1.306143e-05,PM10 Primary (Filt + Cond),TON
+37073,1.92186e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,7.387526e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,4.8996e-06,Benzo[b]Fluoranthene,LB
+37073,7.366404e-06,Benzo[a]Pyrene,LB
+37073,1.9158102e-08,Mercury,LB
+37073,2.388796e-07,Nickel,LB
+37073,0.1200399,Carbon Dioxide,TON
+37085,1.053747,Methane,TON
+37085,0.7095513,PM2.5 Primary (Filt + Cond),TON
+37085,0.0012760068,Chromium (VI),LB
+37085,2.24689,Fluoranthene,LB
+37085,0.4161862,Chrysene,LB
+37085,0.5521262,Benzo[a]Pyrene,LB
+37081,7.39858,"1,3-Butadiene",LB
+37081,19.709086,Acrolein,LB
+37081,0.014141962,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.05552488,Benzo[b]Fluoranthene,LB
+37081,0.3542,Chrysene,LB
+37081,0.18617316,Benzo[a]Pyrene,LB
+37081,0.7046325,PM10-Primary from certain diesel engines,TON
+37081,0.003247043,Nitrate portion of PM2.5-PRI,TON
+37081,1.397284,Volatile Organic Compounds,TON
+37071,0.0832891,Benzo[a]Pyrene,LB
+37071,0.003404664,"Dibenzo[a,h]Anthracene",LB
+37071,0.2689882,Benz[a]Anthracene,LB
+37071,0.04211187,Ammonia,TON
+37071,0.01444961,Sulfate Portion of PM2.5-PRI,TON
+37065,0.61569,Acrolein,LB
+37065,0.07907654,Pyrene,LB
+37065,0.000231073,Benzo[k]Fluoranthene,LB
+37065,0.7333564,Benzene,LB
+37065,0.002501643,Methane,TON
+37065,0.01811189,PM25-Primary from certain diesel engines,TON
+37065,0.003309696,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.0004142248,Chromium (VI),LB
+37063,0.4660414,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.05415105,Nitrous Oxide,TON
+37063,29.75523,Volatile Organic Compounds,TON
+37057,0.18835586,Benzo[b]Fluoranthene,LB
+37057,1.3290996,Chrysene,LB
+37057,0.6300942,Benzo[a]Pyrene,LB
+37057,0.257461,Nickel,LB
+37057,5.200884,Acenaphthene,LB
+37057,6.47203,PM10-Primary from certain diesel engines,TON
+37057,1.145066,Ammonia,TON
+37051,0.00299034,"Dibenzo[a,h]Anthracene",LB
+37051,45.13428,Benzene,LB
+37051,0.07080718,Nickel,LB
+37051,5580.034,Carbon Dioxide,TON
+37051,12.06063,Nitrogen Oxides,TON
+37051,40.55358,Toluene,LB
+37045,100.51222,Toluene,LB
+37045,29.04158,Benzene,LB
+37045,0.017018864,Propionaldehyde,LB
+37045,0.0015990156,Fluorene,LB
+37045,0.0008349438,Methane,TON
+37045,8.969228e-05,Nitrous Oxide,TON
+37045,0.01311779,Volatile Organic Compounds,TON
+37045,0.3702656,Benzo[k]Fluoranthene,LB
+37045,0.011382034,"Dibenzo[a,h]Anthracene",LB
+37045,0.3174012,Manganese,LB
+37045,2.676316,Fluorene,LB
+37039,6669.044,Toluene,LB
+37035,0.0833497,Benzo[a]Pyrene,LB
+37035,0.3216356,Acenaphthene,LB
+37035,0.7296774,Fluorene,LB
+37035,0.003593496,Nitrous Oxide,TON
+37035,0.05767132,PM25-Primary from certain diesel engines,TON
+37035,0.0004304476,Nitrate portion of PM2.5-PRI,TON
+37035,8.714584,Hexane,LB
+37035,0.08058334,Manganese,LB
+37035,2.819462,Phenanthrene,LB
+37033,1.1650208,Acenaphthylene,LB
+37033,79.87088,Formaldehyde,LB
+37033,0.06368048,Benz[a]Anthracene,LB
+37033,0.02267138,Manganese,LB
+37033,0.018732328,Arsenic,LB
+37033,0.01937108,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.0791802,PM2.5 Primary (Filt + Cond),TON
+37033,459.709,"1,3-Butadiene",LB
+37033,0.4834748,Arsenic,LB
+37033,6.061796,Fluorene,LB
+37033,155.41884,Naphthalene,LB
+37033,592.3976,Carbon Monoxide,TON
+37033,0.7489784,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.3862886,Propionaldehyde,LB
+37029,0.07800712,Pyrene,LB
+37029,0.05875458,Fluoranthene,LB
+37029,0.006036606,Benzo[a]Pyrene,LB
+37029,0.206318,"2,2,4-Trimethylpentane",LB
+37029,0.002518484,Manganese,LB
+37029,0.00473563,Methane,TON
+37029,0.002908455,Ammonia,TON
+37027,0.354109,Ethyl Benzene,LB
+37027,0.07344566,"1,3-Butadiene",LB
+37027,0.00019000766,Benzo[a]Pyrene,LB
+37027,0.1631207,Carbon Monoxide,TON
+37027,3.443387e-06,Sulfate Portion of PM2.5-PRI,TON
+37175,0.1237428,Styrene,LB
+37175,0.001681943,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,4.052664,"2,2,4-Trimethylpentane",LB
+37175,4.65075,Benzene,LB
+37175,1.576767,Carbon Monoxide,TON
+37175,8.186829,Carbon Dioxide,TON
+37171,25751.44,Carbon Dioxide,TON
+37171,0.5402013,Sulfur Dioxide,TON
+37171,0.0229189,Sulfate Portion of PM2.5-PRI,TON
+37171,1031.9764,Ethyl Benzene,LB
+37171,1.5150276,Anthracene,LB
+37171,546.7254,Formaldehyde,LB
+37165,1.0535652,Propionaldehyde,LB
+37165,0.0006897716,Benzo[k]Fluoranthene,LB
+37165,21.2611,Formaldehyde,LB
+37165,1.9339594,Benzene,LB
+37165,289.3632,Carbon Dioxide,TON
+37165,0.9339343,Nitrogen Oxides,TON
+37165,0.3028884,"1,3-Butadiene",LB
+37165,0.0005490202,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.0514532,Acenaphthylene,LB
+37165,0.9253922,Benzene,LB
+37165,0.05027225,PM10-Primary from certain diesel engines,TON
+37165,0.04624825,PM25-Primary from certain diesel engines,TON
+37165,0.0003550126,Nitrous Oxide,TON
+37165,0.07259315,PM10 Primary (Filt + Cond),TON
+37165,0.002402395,Sulfate Portion of PM2.5-PRI,TON
+37161,0.06476216,Anthracene,LB
+37161,0.02307032,Benz[a]Anthracene,LB
+37161,313.452,Toluene,LB
+37161,897.1185,Carbon Dioxide,TON
+37161,0.01880715,Sulfur Dioxide,TON
+37153,0.0077039,Styrene,LB
+37153,0.0003445198,"Benzo[g,h,i,]Perylene",LB
+37153,2.971928e-06,"Dibenzo[a,h]Anthracene",LB
+37153,9.373138e-05,Benz[a]Anthracene,LB
+37153,2.121658e-05,Manganese,LB
+37153,0.0017221752,Phenanthrene,LB
+37153,0.09983889,Carbon Monoxide,TON
+37153,0.7876425,Carbon Dioxide,TON
+37145,0.15100212,Styrene,LB
+37145,0.00638189,Manganese,LB
+37145,0.07835706,Fluorene,LB
+37145,0.03442595,Elemental Carbon portion of PM2.5-PRI,TON
+37143,9.786502,"2,2,4-Trimethylpentane",LB
+37129,0.5392546,Manganese,LB
+37129,0.0002518696,Mercury,LB
+37129,0.05266216,Arsenic,LB
+37129,410.7968,Acetaldehyde,LB
+37129,2.297199,PM2.5 Primary (Filt + Cond),TON
+37129,0.1344809,Sulfate Portion of PM2.5-PRI,TON
+37129,0.195708,Benzo[b]Fluoranthene,LB
+37141,13.507428,Ethyl Benzene,LB
+37141,25.58074,Toluene,LB
+37141,10.153544,Hexane,LB
+37141,24.47776,Xylenes (Mixed Isomers),LB
+37141,178.19894,Acetaldehyde,LB
+37141,45.09904,Naphthalene,LB
+37141,6949.167,Carbon Dioxide,TON
+37141,1.911445,PM25-Primary from certain diesel engines,TON
+37141,0.2091468,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,17.394128,Toluene,LB
+37133,9.983686,Propionaldehyde,LB
+37133,216.6594,Formaldehyde,LB
+37133,5.841984,"2,2,4-Trimethylpentane",LB
+37133,2274.88,Carbon Dioxide,TON
+37133,4.761655,Nitrogen Oxides,TON
+37133,0.01417263,Sulfate Portion of PM2.5-PRI,TON
+37129,1.1830804,Anthracene,LB
+37129,3.445702,Pyrene,LB
+37129,2.60014,Fluoranthene,LB
+37129,0.03313832,Nickel,LB
+37129,0.011383418,Arsenic,LB
+37129,1.0608134,Acenaphthene,LB
+37129,0.7906243,PM25-Primary from certain diesel engines,TON
+37129,0.2742725,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.05135299,Ammonia,TON
+37129,0.3671136,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.003158222,Methane,TON
+37125,0.147865,Carbon Monoxide,TON
+37125,0.0001694202,Nitrous Oxide,TON
+37125,0.0003932974,Sulfur Dioxide,TON
+37125,1.0745418e-06,Chromium (VI),LB
+37125,0.0003079054,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.03418924,Acenaphthylene,LB
+37125,6.515992,Formaldehyde,LB
+37121,0.0003686868,Benzo[k]Fluoranthene,LB
+37121,24.58706,Formaldehyde,LB
+37121,3.37344e-06,Mercury,LB
+37121,0.00321141,Nickel,LB
+37121,207.3483,Carbon Dioxide,TON
+37121,0.05182747,PM25-Primary from certain diesel engines,TON
+37121,0.003107648,Ammonia,TON
+37123,0.395316,"1,3-Butadiene",LB
+37123,0.06518034,Acrolein,LB
+37123,0.002991228,Anthracene,LB
+37123,0.003301142,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.015554862,Acenaphthylene,LB
+37123,0.0017560946,Benz[a]Anthracene,LB
+37123,2.402068e-05,Mercury,LB
+37123,0.003699994,Ammonia,TON
+37119,0.9317144,Sulfate Portion of PM2.5-PRI,TON
+37119,504.0132,Toluene,LB
+37119,142.64324,Hexane,LB
+37119,14.887388,Anthracene,LB
+37119,0.19448204,"Benzo[g,h,i,]Perylene",LB
+37119,3.20158,Benzo[a]Pyrene,LB
+37119,0.13147246,"Dibenzo[a,h]Anthracene",LB
+37119,0.5650144,Nickel,LB
+37119,0.2834697,Nitrous Oxide,TON
+37119,0.05723624,Nitrate portion of PM2.5-PRI,TON
+37119,0.2953312,Benzo[k]Fluoranthene,LB
+37119,0.11671142,Arsenic,LB
+37119,0.5069785,Nitrous Oxide,TON
+37107,0.3287588,Benz[a]Anthracene,LB
+37107,0.00945369,Mercury,LB
+37107,0.11787624,Nickel,LB
+37107,1.222957,Acenaphthene,LB
+37107,0.1070137,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.3728182,Sulfur Dioxide,TON
+37097,125.03018,Acrolein,LB
+37097,43.1384,Hexane,LB
+37097,1720.228,Formaldehyde,LB
+37097,0.5780891,Ammonia,TON
+37101,15563.27,Hexane,LB
+37101,22.63752,"Benzo[g,h,i,]Perylene",LB
+37101,5.483482,Benzo[b]Fluoranthene,LB
+37101,13494.598,"2,2,4-Trimethylpentane",LB
+37101,331819.7,Carbon Dioxide,TON
+37101,0.2813291,Sulfate Portion of PM2.5-PRI,TON
+37099,0.003162932,Benzo[b]Fluoranthene,LB
+37099,0.003162932,Benzo[k]Fluoranthene,LB
+37099,0.0200189,Fluorene,LB
+37099,0.2243565,Nitrogen Oxides,TON
+37093,57.89271,Carbon Dioxide,TON
+37093,5.881159e-05,Sulfate Portion of PM2.5-PRI,TON
+37093,0.07526604,Styrene,LB
+37093,0.002812382,Anthracene,LB
+37089,0.04169092,"Benzo[g,h,i,]Perylene",LB
+37089,0.012959374,"Dibenzo[a,h]Anthracene",LB
+37089,2.201212,Benz[a]Anthracene,LB
+37089,0.0005501118,Mercury,LB
+37089,0.3418976,Nickel,LB
+37089,143.7251,Carbon Monoxide,TON
+37089,0.5350662,Ammonia,TON
+37089,0.1484908,Sulfur Dioxide,TON
+37089,0.0972724,Sulfate Portion of PM2.5-PRI,TON
+37067,8206.312,Ethyl Benzene,LB
+37065,0.003471018,Arsenic,LB
+37065,0.0012016048,Benzo[k]Fluoranthene,LB
+37065,1.6601354e-05,Mercury,LB
+37063,1.4971088,Hexane,LB
+37063,1.4782124e-07,Chromium (VI),LB
+37063,0.0011461268,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.009616332,Acenaphthylene,LB
+37063,0.0011429156,Benzo[a]Pyrene,LB
+37063,0.002108296,Acenaphthene,LB
+37063,0.00427056,Fluorene,LB
+37061,5.686846,"1,3-Butadiene",LB
+37061,13.745376,Acrolein,LB
+37061,11.39391,Toluene,LB
+37061,4.337886,Hexane,LB
+37061,0.2441922,Chrysene,LB
+37061,4.272962,"2,2,4-Trimethylpentane",LB
+37061,0.005423165,Nitrous Oxide,TON
+37061,0.07187193,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,503.9798,Xylenes (Mixed Isomers),LB
+37057,0.004522088,Nickel,LB
+37057,1485.162,Carbon Dioxide,TON
+37057,0.1705856,Nitrous Oxide,TON
+37057,1.3295448,Fluorene,LB
+37057,0.3043454,Methane,TON
+37057,0.07148646,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.7827876,Styrene,LB
+37053,0.02884376,Anthracene,LB
+37053,1.536256,Nitrogen Oxides,TON
+37053,0.01696943,PM2.5 Primary (Filt + Cond),TON
+37047,6154.646,Hexane,LB
+37047,15233.1,Xylenes (Mixed Isomers),LB
+37047,1773.259,Formaldehyde,LB
+37047,5587.36,"2,2,4-Trimethylpentane",LB
+37047,2.091158,Benz[a]Anthracene,LB
+37047,2.10726,Manganese,LB
+37047,305.9594,Naphthalene,LB
+37047,124988.6,Carbon Dioxide,TON
+37047,188.8187,Nitrogen Oxides,TON
+37047,1.178878,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.1119369,Sulfate Portion of PM2.5-PRI,TON
+37043,1.366413e-06,Mercury,LB
+37043,0.02023584,Naphthalene,LB
+37043,0.2438471,Carbon Monoxide,TON
+37043,0.0007314888,PM10 Primary (Filt + Cond),TON
+37043,0.005847671,Volatile Organic Compounds,TON
+37043,0.00010579122,Chrysene,LB
+37037,0.0004288746,Benzo[k]Fluoranthene,LB
+37037,1592.906,Carbon Dioxide,TON
+37037,0.03434012,Ammonia,TON
+37031,0.0014782312,"Benzo[g,h,i,]Perylene",LB
+37031,0.0018963564,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.08329031,PM10-Primary from certain diesel engines,TON
+37031,1.223016,Nitrogen Oxides,TON
+37031,0.08352339,PM2.5 Primary (Filt + Cond),TON
+37031,0.01769164,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,4.797328e-07,Chromium (VI),LB
+37029,0.00010062532,"Benzo[g,h,i,]Perylene",LB
+37029,0.003154458,Chrysene,LB
+37029,2.310132,Formaldehyde,LB
+37029,0.0002839444,Nickel,LB
+37029,8.001796e-05,Arsenic,LB
+37029,0.00785818,Acenaphthene,LB
+37029,0.016647086,Fluorene,LB
+37029,2.797022e-05,Nitrate portion of PM2.5-PRI,TON
+37029,0.002244143,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.0006471022,Benzo[k]Fluoranthene,LB
+37029,24.72134,Carbon Dioxide,TON
+37029,0.0005184156,Sulfur Dioxide,TON
+37149,0.048703,Sulfur Dioxide,TON
+37149,2.131435,Volatile Organic Compounds,TON
+37149,2.745628,Fluoranthene,LB
+37157,18.336246,"1,3-Butadiene",LB
+37157,5.731432,Pyrene,LB
+37157,4.346092,Fluoranthene,LB
+37157,0.08478374,Nickel,LB
+37157,276.3298,Acetaldehyde,LB
+37157,0.6045946,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.2845595,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.07559145,Sulfur Dioxide,TON
+37151,7.718044,Hexane,LB
+37151,5.07939e-05,Chromium (VI),LB
+37151,0.014350244,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.00770948,Benzo[k]Fluoranthene,LB
+37151,32.79372,Naphthalene,LB
+37151,0.6807787,PM2.5 Primary (Filt + Cond),TON
+37151,1.686852,Volatile Organic Compounds,TON
+37145,0.003805058,"Dibenzo[a,h]Anthracene",LB
+37145,14.217444,Styrene,LB
+37145,11.653234,Acrolein,LB
+37145,0.5114094,Anthracene,LB
+37145,1293.779,Xylenes (Mixed Isomers),LB
+37145,0.16565268,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.601122,Acenaphthene,LB
+37145,5327.979,Carbon Dioxide,TON
+37145,0.0005101317,Nitrate portion of PM2.5-PRI,TON
+37145,0.1117917,Sulfur Dioxide,TON
+37143,0.16154,Fluoranthene,LB
+37143,0.012229858,Chrysene,LB
+37143,37.84248,Formaldehyde,LB
+37143,0.9536194,"2,2,4-Trimethylpentane",LB
+37143,0.0052842,Nickel,LB
+37143,0.03547245,PM25-Primary from certain diesel engines,TON
+37143,0.005119026,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.002363076,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.2860598,Ethyl Benzene,LB
+37139,0.0285596,Anthracene,LB
+37139,0.2285024,"2,2,4-Trimethylpentane",LB
+37139,0.0006062056,Arsenic,LB
+37139,3.686572,Acetaldehyde,LB
+37139,0.001961927,Sulfate Portion of PM2.5-PRI,TON
+37141,0.2010222,Benzo[b]Fluoranthene,LB
+37141,1.0874674,Fluoranthene,LB
+37141,0.2010222,Benzo[k]Fluoranthene,LB
+37141,0.08118306,Nickel,LB
+37141,0.3251827,PM2.5 Primary (Filt + Cond),TON
+37141,12.59425,Volatile Organic Compounds,TON
+37135,3844.607,Carbon Dioxide,TON
+37135,0.03153367,Nitrous Oxide,TON
+37135,0.07904569,Sulfur Dioxide,TON
+37135,2.64498,Acenaphthylene,LB
+37135,3942.384,Toluene,LB
+37135,0.18541334,Benzo[b]Fluoranthene,LB
+37129,15.984594,Styrene,LB
+37129,14.229118,Acrolein,LB
+37129,11.450038,Propionaldehyde,LB
+37129,0.19904656,Benzo[k]Fluoranthene,LB
+37129,0.7373396,Acenaphthene,LB
+37129,4211.97,Carbon Dioxide,TON
+37129,25.92994,Volatile Organic Compounds,TON
+37127,17.737288,Acrolein,LB
+37127,16.715832,Xylenes (Mixed Isomers),LB
+37127,4.763726e-05,Chromium (VI),LB
+37127,0.010109884,"Benzo[g,h,i,]Perylene",LB
+37127,0.04951714,Benzo[b]Fluoranthene,LB
+37127,229.7714,Formaldehyde,LB
+37127,0.05653032,Manganese,LB
+37127,2.588524e-05,Benzo[b]Fluoranthene,LB
+37127,5.720993e-05,Ammonia,TON
+37127,0.002284716,Nitrogen Oxides,TON
+37119,3892.57,Formaldehyde,LB
+37119,4390.07,Acetaldehyde,LB
+37119,25.76046,Fluorene,LB
+37119,1.629978,Elemental Carbon portion of PM2.5-PRI,TON
+37119,8.841549,Nitrous Oxide,TON
+37119,20.82227,Ammonia,TON
+37119,7510.518,Ethyl Benzene,LB
+37119,1839.2748,"1,3-Butadiene",LB
+37119,0.02007902,Chromium (VI),LB
+37115,0.876287,Anthracene,LB
+37115,0.014979988,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.0370867,Nickel,LB
+37115,0.01074684,Nitrous Oxide,TON
+37115,24.49268,Nitrogen Oxides,TON
+37109,4.78764,Pyrene,LB
+37109,0.02652968,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,2.600652,Acenaphthylene,LB
+37109,0.3493234,Benzo[a]Pyrene,LB
+37109,49.6558,Benzene,LB
+37109,3.414226,Fluorene,LB
+37109,7010.369,Carbon Dioxide,TON
+37109,0.06390295,Sulfate Portion of PM2.5-PRI,TON
+37107,0.10660092,Benzo[a]Pyrene,LB
+37107,14.552528,Naphthalene,LB
+37107,0.2159102,Ammonia,TON
+37107,0.1764106,PM10 Primary (Filt + Cond),TON
+37097,6.692996e-06,Nickel,LB
+37097,0.3261672,Carbon Monoxide,TON
+37097,0.0004729685,PM2.5 Primary (Filt + Cond),TON
+37097,0.0001131668,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,3.746576,Toluene,LB
+37097,0.825238,Hexane,LB
+37091,0.6083564,"1,3-Butadiene",LB
+37091,0.2292798,Naphthalene,LB
+37091,1.810331,Carbon Monoxide,TON
+37091,0.00160836,PM2.5 Primary (Filt + Cond),TON
+37091,4.165711e-05,Sulfate Portion of PM2.5-PRI,TON
+37079,118.62958,Toluene,LB
+37079,28.74582,Hexane,LB
+37079,0.02460964,Anthracene,LB
+37079,9.012502,Formaldehyde,LB
+37079,0.00030569,"Dibenzo[a,h]Anthracene",LB
+37079,0.006825298,Manganese,LB
+37079,0.0014808662,Nickel,LB
+37079,0.02281526,Nitrous Oxide,TON
+37077,7.045922,Styrene,LB
+37077,41.75136,Acrolein,LB
+37077,1.775255,Anthracene,LB
+37077,0.015070644,Benzo[k]Fluoranthene,LB
+37077,1.210226,Benz[a]Anthracene,LB
+37077,50.0636,Benzene,LB
+37077,0.1733987,Manganese,LB
+37077,0.089139,Nickel,LB
+37077,1.512059,PM10-Primary from certain diesel engines,TON
+37025,0.9551066,Hexane,LB
+37025,0.006537274,"Benzo[g,h,i,]Perylene",LB
+37025,0.002456112,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,1.03063,"2,2,4-Trimethylpentane",LB
+37025,0.0010822714,Benz[a]Anthracene,LB
+37025,0.004528248,Manganese,LB
+37025,0.00214837,Arsenic,LB
+37025,0.0008718808,Acenaphthene,LB
+37025,0.009093819,Methane,TON
+37025,1.268339,Carbon Monoxide,TON
+37025,0.0006686746,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.00906998,Ammonia,TON
+37025,0.005880158,Sulfur Dioxide,TON
+37137,0.002995416,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.00314735,Fluoranthene,LB
+37137,0.0016283126,Benzo[k]Fluoranthene,LB
+37137,0.008841208,Acenaphthylene,LB
+37137,0.1000442,Naphthalene,LB
+37137,0.01315975,PM10 Primary (Filt + Cond),TON
+37137,0.0001132636,Sulfate Portion of PM2.5-PRI,TON
+37103,0.7207498,Ethyl Benzene,LB
+37089,1.1561232,Xylenes (Mixed Isomers),LB
+37089,1.0478244,Formaldehyde,LB
+37089,5.41921e-05,Mercury,LB
+37089,0.004937677,Methane,TON
+37089,0.05501002,Nitrogen Oxides,TON
+37089,0.009820707,PM10 Primary (Filt + Cond),TON
+37089,0.001009415,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.04527012,Styrene,LB
+37167,9.689084e-08,Chromium (VI),LB
+37167,0.000938515,Benzo[b]Fluoranthene,LB
+37167,0.0001622158,Ammonia,TON
+37021,29.46268,Acrolein,LB
+37021,1.1300012,Anthracene,LB
+37021,0.005467906,Benzo[k]Fluoranthene,LB
+37021,0.1613274,Methane,TON
+37021,0.2855618,Acenaphthene,LB
+37021,0.2081156,Nitrous Oxide,TON
+37021,0.0005956309,Nitrate portion of PM2.5-PRI,TON
+37021,0.08318532,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.10315216,Chrysene,LB
+37021,0.17960512,Benzo[a]Pyrene,LB
+37005,0.8403944,Styrene,LB
+37005,0.4478682,Fluoranthene,LB
+37005,0.14098216,Benz[a]Anthracene,LB
+37005,5.416426,Benzene,LB
+37005,0.19238702,Acenaphthene,LB
+37005,0.2460221,PM25-Primary from certain diesel engines,TON
+37061,0.02052594,Pyrene,LB
+37061,0.0004637888,"Dibenzo[a,h]Anthracene",LB
+37061,0.009386634,Benz[a]Anthracene,LB
+37035,0.02592419,Ammonia,TON
+37035,1.3706498,Ethyl Benzene,LB
+37023,0.0010272454,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.000529767,Benzo[k]Fluoranthene,LB
+37023,0.4113222,"2,2,4-Trimethylpentane",LB
+37023,4.121086e-05,Mercury,LB
+37023,4.441074,Acetaldehyde,LB
+37023,0.0003734888,Acenaphthene,LB
+37023,0.0007565528,Fluorene,LB
+37023,0.0452474,Nitrogen Oxides,TON
+37143,0.0002645576,Anthracene,LB
+37143,0.0005171144,Benzo[a]Pyrene,LB
+37143,1.2019238e-05,"Dibenzo[a,h]Anthracene",LB
+37143,0.3560022,"2,2,4-Trimethylpentane",LB
+37143,0.0006478124,Manganese,LB
+37143,0.015045052,Naphthalene,LB
+37143,40.61711,Carbon Dioxide,TON
+37017,0.0007011362,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.3944894,"1,3-Butadiene",LB
+37017,0.909672,Toluene,LB
+37017,0.0876895,Fluorene,LB
+37017,1.3787178,Naphthalene,LB
+37017,319.7084,Carbon Dioxide,TON
+37017,0.06226193,PM10-Primary from certain diesel engines,TON
+37017,0.004793093,Ammonia,TON
+37017,0.002747254,Sulfur Dioxide,TON
+37007,0.07886618,Benz[a]Anthracene,LB
+37007,0.5807808,Volatile Organic Compounds,TON
+37017,164.3553,Toluene,LB
+37017,1.7166e-05,Chromium (VI),LB
+37017,0.010314722,Benzo[k]Fluoranthene,LB
+37017,0.01329828,Benzo[a]Pyrene,LB
+37017,0.0003036382,"Dibenzo[a,h]Anthracene",LB
+37017,35.98008,"2,2,4-Trimethylpentane",LB
+37017,0.010556446,Benz[a]Anthracene,LB
+37017,0.00017210468,Mercury,LB
+37017,0.02677277,Ammonia,TON
+37017,4.392686e-05,Nitrate portion of PM2.5-PRI,TON
+37015,0.476996,Nickel,LB
+37015,0.731378,Arsenic,LB
+37181,3.480948,Carbon Monoxide,TON
+37181,0.001533235,Sulfur Dioxide,TON
+37181,6.075046,Ethyl Benzene,LB
+37181,0.03764214,Acenaphthylene,LB
+37195,2.476684,Toluene,LB
+37195,3.238734e-08,Chromium (VI),LB
+37195,0.000874994,"Benzo[g,h,i,]Perylene",LB
+37195,0.0009773322,Fluoranthene,LB
+37195,0.2133064,Acetaldehyde,LB
+37195,0.00360331,Phenanthrene,LB
+37191,0.4921034,"1,3-Butadiene",LB
+37191,0.00309866,Benzo[b]Fluoranthene,LB
+37191,0.18132768,Phenanthrene,LB
+37191,1.6580336,Naphthalene,LB
+37191,0.03356404,PM25-Primary from certain diesel engines,TON
+37191,0.0003038954,Nitrous Oxide,TON
+37191,0.01451155,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.007623546,"1,3-Butadiene",LB
+37187,0.07789374,Acrolein,LB
+37187,0.000224129,Pyrene,LB
+37187,1.9008828,Acetaldehyde,LB
+37187,32.00944,Carbon Dioxide,TON
+37187,0.0001969698,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.004184518,Nitrous Oxide,TON
+37181,27.36784,"2,2,4-Trimethylpentane",LB
+37191,0.005333076,Chrysene,LB
+37191,0.03528106,Fluorene,LB
+37191,0.00561439,Nitrous Oxide,TON
+37181,1.1181066,Propionaldehyde,LB
+37181,0.0003213502,Benzo[b]Fluoranthene,LB
+37181,0.005338934,Manganese,LB
+37181,0.06671918,Acenaphthene,LB
+37181,0.0008693675,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.01447485,PM10 Primary (Filt + Cond),TON
+37179,109.12194,"2,2,4-Trimethylpentane",LB
+37179,5.601734,Volatile Organic Compounds,TON
+37197,4.11214,Anthracene,LB
+37197,0.005735906,Chromium (VI),LB
+37197,4203.272,"2,2,4-Trimethylpentane",LB
+37197,26.00334,Phenanthrene,LB
+37197,6.252409,PM10 Primary (Filt + Cond),TON
+37197,3.025347,PM2.5 Primary (Filt + Cond),TON
+37195,562.1008,Hexane,LB
+37195,5.565324,Propionaldehyde,LB
+37195,0.508056,Fluoranthene,LB
+37195,0.11033652,Benzo[k]Fluoranthene,LB
+37195,0.10470366,Chrysene,LB
+37195,0.1578704,Benzo[a]Pyrene,LB
+37195,0.04916674,Sulfur Dioxide,TON
+37183,0.3453896,Fluoranthene,LB
+37183,54.18698,Formaldehyde,LB
+37183,0.006004022,Nickel,LB
+37183,0.03995353,Elemental Carbon portion of PM2.5-PRI,TON
+37183,2.173341,Nitrogen Oxides,TON
+37183,0.2766017,Volatile Organic Compounds,TON
+37185,0.3074617,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.006355672,Nitrous Oxide,TON
+37185,9.570455,Nitrogen Oxides,TON
+37185,0.01194986,Sulfate Portion of PM2.5-PRI,TON
+37185,6.550304,Styrene,LB
+37185,0.005587672,"Benzo[g,h,i,]Perylene",LB
+37185,41.75256,Benzene,LB
+37041,0.07315603,Methane,TON
+37041,0.3181028,Anthracene,LB
+37041,0.003866786,"Benzo[g,h,i,]Perylene",LB
+37041,0.018493682,Benzo[b]Fluoranthene,LB
+37041,0.5030602,Acenaphthylene,LB
+37031,4.76713,Acenaphthylene,LB
+37031,0.007566582,"Dibenzo[a,h]Anthracene",LB
+37029,0.002420582,Acetaldehyde,LB
+37029,0.0003133738,Nitrogen Oxides,TON
+37029,0.0001255455,Volatile Organic Compounds,TON
+37029,0.0001752274,Styrene,LB
+37029,6.357212e-06,Anthracene,LB
+37029,1.0946008e-05,Fluoranthene,LB
+37095,5.51009,Toluene,LB
+37087,15.9711,"1,3-Butadiene",LB
+37087,0.3800482,Benzo[a]Pyrene,LB
+37087,0.02195268,Arsenic,LB
+37087,209.8984,Acetaldehyde,LB
+37087,1.43555,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.01589115,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.009246359,Sulfur Dioxide,TON
+37087,0.00893572,Benzo[a]Pyrene,LB
+37087,0.08806898,Methane,TON
+37087,4.00886,"1,3-Butadiene",LB
+37087,10.402998,Toluene,LB
+37087,10.912658,Xylenes (Mixed Isomers),LB
+37087,0.0006795452,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.3424592,Ethyl Benzene,LB
+37083,0.07550202,Fluoranthene,LB
+37083,0.013284572,Chrysene,LB
+37083,0.0720573,Fluorene,LB
+37083,0.2053529,Carbon Monoxide,TON
+37083,0.02954501,PM10-Primary from certain diesel engines,TON
+37083,0.0001162761,Nitrate portion of PM2.5-PRI,TON
+37083,0.001050793,Sulfur Dioxide,TON
+37079,0.0523547,Styrene,LB
+37079,9.05906e-07,Chromium (VI),LB
+37079,0.0007710274,Benzo[b]Fluoranthene,LB
+37079,0.0005125908,Nickel,LB
+37079,0.04421304,Phenanthrene,LB
+37079,0.008954814,PM25-Primary from certain diesel engines,TON
+37079,0.000778777,Ammonia,TON
+37071,19.74897,Xylenes (Mixed Isomers),LB
+37071,0.984547,Fluoranthene,LB
+37071,27.33738,Naphthalene,LB
+37071,0.1514089,Methane,TON
+37071,0.01030665,Elemental Carbon portion of PM2.5-PRI,TON
+37071,11.604398,Hexane,LB
+37071,4.558076,Formaldehyde,LB
+37071,0.02765634,Fluorene,LB
+37071,3.775038e-05,Nitrate portion of PM2.5-PRI,TON
+37053,0.0003774289,Sulfur Dioxide,TON
+37053,7.707582e-05,Anthracene,LB
+37053,0.0003693354,Pyrene,LB
+37053,0.07939348,Xylenes (Mixed Isomers),LB
+37053,2.547326e-08,Chromium (VI),LB
+37053,2.456868,Acetaldehyde,LB
+37053,0.2411159,Methane,TON
+37053,71.28772,Carbon Dioxide,TON
+37053,0.002050363,Ammonia,TON
+37041,1.0971276,Styrene,LB
+37041,4.307288,Propionaldehyde,LB
+37041,7.98924,Xylenes (Mixed Isomers),LB
+37041,0.04508836,Benzo[a]Pyrene,LB
+37041,0.017406748,Nickel,LB
+37041,3414.762,Carbon Dioxide,TON
+37041,0.05024431,Ammonia,TON
+37041,0.02331014,Sulfate Portion of PM2.5-PRI,TON
+37041,0.015076804,Acenaphthylene,LB
+37041,2.830298,Ethyl Benzene,LB
+37041,3.726742,Benzene,LB
+37041,0.0003840168,Manganese,LB
+37041,0.00011116012,Arsenic,LB
+37041,24.20811,Carbon Dioxide,TON
+37041,0.0004230935,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.2767396,Hexane,LB
+37037,11.00878,Formaldehyde,LB
+37037,0.0004410264,Arsenic,LB
+37037,1.2147738,Naphthalene,LB
+37037,0.0007473874,Sulfate Portion of PM2.5-PRI,TON
+37029,0.00300711,Benz[a]Anthracene,LB
+37029,7.323602,Ethyl Benzene,LB
+37029,0.00963975,Anthracene,LB
+37029,0.01873721,Pyrene,LB
+37029,0.003761334,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,15.528634,Ethyl Benzene,LB
+37023,78.33774,Toluene,LB
+37023,0.02628602,Anthracene,LB
+37023,0.5226782,Propionaldehyde,LB
+37023,0.03831814,"Benzo[g,h,i,]Perylene",LB
+37023,35.94692,Benzene,LB
+37023,0.03059838,Acenaphthene,LB
+37023,14.6566,Carbon Monoxide,TON
+37199,0.0100472,Fluorene,LB
+37199,0.2575332,Naphthalene,LB
+37199,0.0004375492,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.002041148,PM2.5 Primary (Filt + Cond),TON
+37185,0.6896112,Propionaldehyde,LB
+37185,6.173492,Formaldehyde,LB
+37185,0.00012495554,"Dibenzo[a,h]Anthracene",LB
+37185,0.00228324,Nickel,LB
+37185,0.016190324,Phenanthrene,LB
+37185,0.1491476,Naphthalene,LB
+37191,4.584232,"1,3-Butadiene",LB
+37191,0.11519196,Chrysene,LB
+37191,2.798882e-05,Mercury,LB
+37191,0.04954092,Methane,TON
+37191,0.02661061,Ammonia,TON
+37191,0.01526717,Sulfur Dioxide,TON
+37191,0.010069164,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.000231078,"Dibenzo[a,h]Anthracene",LB
+37191,31.09832,Benzene,LB
+37191,1.36265,Naphthalene,LB
+37191,0.006674894,Organic Carbon portion of PM2.5-PRI,TON
+37189,1380.361,Carbon Dioxide,TON
+37189,0.1765234,Ammonia,TON
+37189,0.002651167,Sulfate Portion of PM2.5-PRI,TON
+37181,1552.5082,"1,3-Butadiene",LB
+37181,8080.55,Hexane,LB
+37181,2.89784,Benzo[k]Fluoranthene,LB
+37181,51.5262,Acenaphthylene,LB
+37181,2.934734,Chrysene,LB
+37181,0.08436906,"Dibenzo[a,h]Anthracene",LB
+37181,11021.984,Benzene,LB
+37181,1.0415914,Arsenic,LB
+37181,6.166205,Methane,TON
+37181,315.1793,Nitrogen Oxides,TON
+37023,0.003762384,"Benzo[g,h,i,]Perylene",LB
+37023,5.995816,Carbon Dioxide,TON
+37023,0.0002022454,Ammonia,TON
+37023,3.307086e-05,Sulfate Portion of PM2.5-PRI,TON
+37023,0.04968568,Volatile Organic Compounds,TON
+37095,2.04719e-06,Chromium (VI),LB
+37095,0.0016539702,Benzo[k]Fluoranthene,LB
+37095,2.225072,Formaldehyde,LB
+37095,0.0019538602,Benzo[a]Pyrene,LB
+37095,0.006826537,PM10 Primary (Filt + Cond),TON
+37093,0.6182224,Ethyl Benzene,LB
+37093,0.4737826,Hexane,LB
+37093,0.1436525,Fluoranthene,LB
+37093,0.007157024,Manganese,LB
+37093,5.635862e-06,Mercury,LB
+37093,0.0557566,Acenaphthene,LB
+37093,0.12788248,Fluorene,LB
+37093,0.01549613,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.0006277389,Nitrous Oxide,TON
+37087,389.45,Ethyl Benzene,LB
+37087,1449.2446,Xylenes (Mixed Isomers),LB
+37087,0.11345508,Chrysene,LB
+37087,0.017604544,Nickel,LB
+37087,85.38058,Acetaldehyde,LB
+37087,0.02206838,Nitrous Oxide,TON
+37087,0.1684835,PM2.5 Primary (Filt + Cond),TON
+37085,0.2408538,Acenaphthylene,LB
+37085,1.2355556,Acrolein,LB
+37085,0.08823544,Pyrene,LB
+37085,0.003944938,Arsenic,LB
+37077,0.00522448,Benzo[b]Fluoranthene,LB
+37077,0.8027044,Fluoranthene,LB
+37077,0.02476502,Manganese,LB
+37077,0.011088296,Arsenic,LB
+37077,1.6416136,Phenanthrene,LB
+37077,0.01327965,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.005106292,Benzo[a]Pyrene,LB
+37077,7.152502,"2,2,4-Trimethylpentane",LB
+37077,0.00010251126,Arsenic,LB
+37077,0.01798009,Fluorene,LB
+37077,0.04050018,Acenaphthylene,LB
+37077,0.13985936,Acrolein,LB
+37077,0.00766637,Anthracene,LB
+37077,20.49196,Xylenes (Mixed Isomers),LB
+37077,5.348324e-07,Chromium (VI),LB
+37069,97.17304,"1,3-Butadiene",LB
+37069,13.368748,Propionaldehyde,LB
+37069,1460.8606,Xylenes (Mixed Isomers),LB
+37069,0.9661764,Fluoranthene,LB
+37069,0.17028168,Benz[a]Anthracene,LB
+37069,0.051174,Nickel,LB
+37069,0.0006489711,Nitrate portion of PM2.5-PRI,TON
+37069,0.1590526,Sulfur Dioxide,TON
+37069,0.006163914,Sulfate Portion of PM2.5-PRI,TON
+37069,5057.804,Xylenes (Mixed Isomers),LB
+37045,709.247,Benzene,LB
+37045,134.8188,Carbon Monoxide,TON
+37045,8.741268,Propionaldehyde,LB
+37037,0.02009578,Arsenic,LB
+37037,1.849118,PM10-Primary from certain diesel engines,TON
+37037,0.009207432,Nitrous Oxide,TON
+37037,2.357601,PM10 Primary (Filt + Cond),TON
+37037,12.581814,"1,3-Butadiene",LB
+37037,9.632064,Hexane,LB
+37031,18.136926,Propionaldehyde,LB
+37031,0.00014503738,Chromium (VI),LB
+37031,1.0635692,Acenaphthene,LB
+37031,0.9116019,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.1154222,Sulfate Portion of PM2.5-PRI,TON
+37031,2.043176,Volatile Organic Compounds,TON
+37031,13089.444,Hexane,LB
+37031,73.77708,Acenaphthylene,LB
+37031,1.42181,Nickel,LB
+37031,87.8586,Phenanthrene,LB
+37031,4.925013,Sulfur Dioxide,TON
+37027,0.5012466,Hexane,LB
+37027,19.972056,Formaldehyde,LB
+37027,0.0011610552,Arsenic,LB
+37027,0.004374105,Sulfate Portion of PM2.5-PRI,TON
+37169,0.002786607,Sulfate Portion of PM2.5-PRI,TON
+37169,194.34924,Ethyl Benzene,LB
+37169,0.08213552,Benzo[b]Fluoranthene,LB
+37169,99.53408,Formaldehyde,LB
+37153,231.7808,Ethyl Benzene,LB
+37153,0.16761652,Anthracene,LB
+37153,7.311388e-05,Chromium (VI),LB
+37153,0.05498146,Chrysene,LB
+37153,0.009139152,Nickel,LB
+37153,43.9972,Acetaldehyde,LB
+37153,10.172032,Naphthalene,LB
+37153,0.1210063,PM10 Primary (Filt + Cond),TON
+37151,218.0898,Formaldehyde,LB
+37151,0.2382046,Benzo[a]Pyrene,LB
+37151,0.0348353,Elemental Carbon portion of PM2.5-PRI,TON
+37151,746.2774,Ethyl Benzene,LB
+37151,9.723712,Propionaldehyde,LB
+37143,3.495144e-05,Anthracene,LB
+37143,0.0967877,Nitrogen Oxides,TON
+37143,2.075243e-05,Sulfate Portion of PM2.5-PRI,TON
+37141,0.04604164,Anthracene,LB
+37141,2.91814e-06,Chromium (VI),LB
+37141,0.04398446,Acenaphthene,LB
+37141,1.42699,Naphthalene,LB
+37141,112.6122,Carbon Dioxide,TON
+37141,0.01354925,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.07489676,Xylenes (Mixed Isomers),LB
+37139,1.0744888e-05,"Benzo[g,h,i,]Perylene",LB
+37139,0.08302172,Benzene,LB
+37139,1.1768714e-05,Mercury,LB
+37139,2.284272,Acetaldehyde,LB
+37139,0.3972788,Carbon Monoxide,TON
+37139,0.009639354,Nitrous Oxide,TON
+37135,0.00545909,Benzo[b]Fluoranthene,LB
+37135,0.19613194,Fluoranthene,LB
+37135,0.0007470282,Benzo[k]Fluoranthene,LB
+37135,0.000746148,"Dibenzo[a,h]Anthracene",LB
+37135,0.0009849532,Arsenic,LB
+37135,0.06573807,PM10-Primary from certain diesel engines,TON
+37135,0.004884779,Ammonia,TON
+37135,0.001895426,Sulfur Dioxide,TON
+37127,0.01970946,PM25-Primary from certain diesel engines,TON
+37127,4.758654,Propionaldehyde,LB
+37127,0.0002346464,"Dibenzo[a,h]Anthracene",LB
+37119,13.104626,Acenaphthene,LB
+37119,27.69457,Volatile Organic Compounds,TON
+37119,10.021124,Benz[a]Anthracene,LB
+37119,504.01,Benzene,LB
+37119,0.2364188,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,31.48012,Fluoranthene,LB
+37119,0.13187556,Benzo[k]Fluoranthene,LB
+37115,0.10608538,Acenaphthene,LB
+37115,0.5768374,Phenanthrene,LB
+37115,0.2148986,Fluorene,LB
+37115,0.04822683,Methane,TON
+37115,659.7204,Carbon Dioxide,TON
+37115,0.007009275,Nitrous Oxide,TON
+37115,1.384114,Nitrogen Oxides,TON
+37115,472.6792,Xylenes (Mixed Isomers),LB
+37097,4.431644,Xylenes (Mixed Isomers),LB
+37097,0.3539112,Fluoranthene,LB
+37097,1.7144158,Ethyl Benzene,LB
+37097,1.464806,"1,3-Butadiene",LB
+37097,1.321874,Hexane,LB
+37097,1.4079646,"2,2,4-Trimethylpentane",LB
+37097,1.704194,Carbon Monoxide,TON
+37097,1664.425,Carbon Dioxide,TON
+37097,0.1621757,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.02188508,Ammonia,TON
+37103,2.215962,Propionaldehyde,LB
+37103,0.9083842,"2,2,4-Trimethylpentane",LB
+37103,0.005517768,Ammonia,TON
+37103,0.009731879,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.013469336,Manganese,LB
+37095,0.006731726,Nickel,LB
+37095,531.7236,Carbon Dioxide,TON
+37095,0.00216932,Nitrous Oxide,TON
+37095,0.04890042,Organic Carbon portion of PM2.5-PRI,TON
+37079,1.925527,"2,2,4-Trimethylpentane",LB
+37079,0.001631861,Methane,TON
+37079,1.075696,Carbon Monoxide,TON
+37079,0.003794138,Pyrene,LB
+37079,0.003329796,Fluoranthene,LB
+37079,0.7136902,Formaldehyde,LB
+37073,0.017398076,Benzo[b]Fluoranthene,LB
+37073,0.11400792,Chrysene,LB
+37073,0.6461252,Fluorene,LB
+37073,12.240552,Naphthalene,LB
+37073,0.00103247,Nitrate portion of PM2.5-PRI,TON
+37073,0.7482575,PM10 Primary (Filt + Cond),TON
+37073,0.04886653,Sulfur Dioxide,TON
+37073,0.756458,Fluorene,LB
+37073,2.704007,Carbon Monoxide,TON
+37073,0.3829756,PM10 Primary (Filt + Cond),TON
+37073,0.02404168,Benzo[b]Fluoranthene,LB
+37085,0.0005745192,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.03431888,Nickel,LB
+37085,0.1168492,PM10 Primary (Filt + Cond),TON
+37085,0.900474,Volatile Organic Compounds,TON
+37085,5.425212,Acetaldehyde,LB
+37085,18.2002,Benzene,LB
+37085,5.326024,Formaldehyde,LB
+37085,0.008386754,Benzo[a]Pyrene,LB
+37083,11.461718,"Benzo[g,h,i,]Perylene",LB
+37083,2.667788,Benz[a]Anthracene,LB
+37083,2029.36,Carbon Monoxide,TON
+37083,1.377534,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.003881964,Pyrene,LB
+37079,0.002647096,"Benzo[g,h,i,]Perylene",LB
+37079,0.751457,Acetaldehyde,LB
+37079,0.004697,Fluorene,LB
+37079,0.0002079604,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.002989284,"Dibenzo[a,h]Anthracene",LB
+37077,5.515608,Acrolein,LB
+37077,0.4852288,Pyrene,LB
+37077,0.3467822,"Benzo[g,h,i,]Perylene",LB
+37077,0.2558165,Ammonia,TON
+37077,0.07155634,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.04062062,Sulfur Dioxide,TON
+37077,325.7324,Ethyl Benzene,LB
+37053,0.9402928,Styrene,LB
+37053,1.355866e-05,Chromium (VI),LB
+37053,0.00347415,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.0457799,Benzo[a]Pyrene,LB
+37053,6.3522,Benzene,LB
+37053,29.44082,Acetaldehyde,LB
+37053,0.2164538,Acenaphthene,LB
+37053,0.03176636,Methane,TON
+37053,0.000825204,Nitrate portion of PM2.5-PRI,TON
+37053,2.526489,Nitrogen Oxides,TON
+37053,0.02725211,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,52.50052,Acrolein,LB
+37061,34.00844,Propionaldehyde,LB
+37061,0.02383352,"Benzo[g,h,i,]Perylene",LB
+37061,0.370435,Benzo[a]Pyrene,LB
+37061,62.9554,Benzene,LB
+37061,0.000330218,Mercury,LB
+37061,3.237229,PM10-Primary from certain diesel engines,TON
+37061,2.094917,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.006472743,Nitrate portion of PM2.5-PRI,TON
+37061,5.78253,Fluoranthene,LB
+37061,0.302697,Ammonia,TON
+37061,0.03666485,Sulfate Portion of PM2.5-PRI,TON
+37061,43.87986,"1,3-Butadiene",LB
+37051,11.27002,Chrysene,LB
+37051,7.70583,Arsenic,LB
+37051,216.1384,Phenanthrene,LB
+37051,22.77873,PM2.5 Primary (Filt + Cond),TON
+37039,30.00044,Naphthalene,LB
+37039,14710.67,Carbon Dioxide,TON
+37039,1.262812,PM10-Primary from certain diesel engines,TON
+37039,0.002450462,Nitrate portion of PM2.5-PRI,TON
+37039,0.008810472,"Benzo[g,h,i,]Perylene",LB
+37039,1.5798294,Fluoranthene,LB
+37039,0.005890198,Benzo[k]Fluoranthene,LB
+37039,0.0408776,Arsenic,LB
+37039,2.059372,Pyrene,LB
+37029,0.9676874,Ethyl Benzene,LB
+37029,3.811874,Toluene,LB
+37029,0.0016606864,Benzo[b]Fluoranthene,LB
+37029,0.0012884986,Chrysene,LB
+37029,0.003072776,Benzo[a]Pyrene,LB
+37029,7.141934e-05,"Dibenzo[a,h]Anthracene",LB
+37029,1.7495224,"2,2,4-Trimethylpentane",LB
+37029,0.0015923406,Nickel,LB
+37029,0.0007641863,Elemental Carbon portion of PM2.5-PRI,TON
+37029,1.046315e-05,Nitrate portion of PM2.5-PRI,TON
+37029,0.001936974,Organic Carbon portion of PM2.5-PRI,TON
+37017,12.38108,Formaldehyde,LB
+37017,0.01163079,Fluorene,LB
+37017,0.2991482,Naphthalene,LB
+37017,0.5728546,Acrolein,LB
+37017,12.77298,Toluene,LB
+37017,3.780824e-05,Chromium (VI),LB
+37177,0.2017882,Xylenes (Mixed Isomers),LB
+37177,1.4421016e-06,Chromium (VI),LB
+37177,0.0002342406,Benzo[a]Pyrene,LB
+37177,0.0550876,Ethyl Benzene,LB
+37177,0.0001904797,Nitrous Oxide,TON
+37177,0.0070237,Volatile Organic Compounds,TON
+37139,1.04907,Carbon Monoxide,TON
+37139,0.0009867046,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.01051615,PM10 Primary (Filt + Cond),TON
+37139,0.489838,Ethyl Benzene,LB
+37139,0.0899176,Acrolein,LB
+37139,0.003727872,Acenaphthylene,LB
+37129,1.08993,Ethyl Benzene,LB
+37129,4.001592,Xylenes (Mixed Isomers),LB
+37129,0.01131942,"Benzo[g,h,i,]Perylene",LB
+37129,9.763502e-05,"Dibenzo[a,h]Anthracene",LB
+37129,0.002234582,Nickel,LB
+37129,353.9736,Carbon Dioxide,TON
+37103,0.04272316,"1,3-Butadiene",LB
+37103,0.3992906,Hexane,LB
+37103,0.00231477,"Benzo[g,h,i,]Perylene",LB
+37103,0.4148084,"2,2,4-Trimethylpentane",LB
+37103,1.0709824,Benzene,LB
+37103,0.03894055,Nitrogen Oxides,TON
+37103,0.002205936,Sulfur Dioxide,TON
+37087,8.274288e-05,Nitrate portion of PM2.5-PRI,TON
+37087,5.064496,Ethyl Benzene,LB
+37087,0.9871112,"1,3-Butadiene",LB
+37087,7.46365e-05,Chromium (VI),LB
+37175,0.7444956,PM2.5 Primary (Filt + Cond),TON
+37175,5.92814,Ethyl Benzene,LB
+37175,0.008503408,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.216852,Chrysene,LB
+37175,0.02873612,Nickel,LB
+37175,0.1208633,Methane,TON
+37171,0.0001381784,Chromium (VI),LB
+37171,0.02378848,"Benzo[g,h,i,]Perylene",LB
+37171,4.0795,Fluoranthene,LB
+37171,0.015834338,Benzo[k]Fluoranthene,LB
+37171,3.789468,Fluorene,LB
+37171,0.1259611,Ammonia,TON
+37171,0.05544358,Sulfate Portion of PM2.5-PRI,TON
+37171,0.0728702,Manganese,LB
+37171,223.9952,Acetaldehyde,LB
+37171,0.03448035,Sulfur Dioxide,TON
+37171,0.3853472,Benz[a]Anthracene,LB
+37159,0.5751432,Toluene,LB
+37159,4.271254e-05,Mercury,LB
+37159,3.55043e-06,Nickel,LB
+37159,0.02750293,Nitrous Oxide,TON
+37159,0.01032034,PM2.5 Primary (Filt + Cond),TON
+37155,0.0012252898,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.18096166,Fluoranthene,LB
+37155,0.0004332217,Nitrous Oxide,TON
+37155,0.001707795,Sulfate Portion of PM2.5-PRI,TON
+37155,4.159894,Xylenes (Mixed Isomers),LB
+37155,2.265138e-05,Chromium (VI),LB
+37155,2.35185e-05,Mercury,LB
+37155,1.743907,Carbon Monoxide,TON
+37155,0.2730459,PM2.5 Primary (Filt + Cond),TON
+37155,0.3038426,Volatile Organic Compounds,TON
+37009,0.090827,Formaldehyde,LB
+37009,9.285162e-05,Benz[a]Anthracene,LB
+37009,2.654554e-05,Manganese,LB
+37009,5.199918e-07,Mercury,LB
+37009,0.094237,Acetaldehyde,LB
+37009,0.000142021,PM2.5 Primary (Filt + Cond),TON
+37009,0.005016635,Volatile Organic Compounds,TON
+37009,0.0013092792,Acenaphthylene,LB
+37001,111.3398,"1,3-Butadiene",LB
+37001,181.0293,Propionaldehyde,LB
+37001,3248.568,Formaldehyde,LB
+37001,29.76308,Phenanthrene,LB
+37001,0.5144473,Organic Carbon portion of PM2.5-PRI,TON
+37001,3.734846,PM10 Primary (Filt + Cond),TON
+37001,2.808142,PM2.5 Primary (Filt + Cond),TON
+37071,0.016766812,Manganese,LB
+37071,37.44104,Acetaldehyde,LB
+37071,0.003190152,Acenaphthene,LB
+37071,0.00598589,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.007886964,Anthracene,LB
+37013,0.01230966,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.014168708,Fluoranthene,LB
+37013,0.00677998,Benzo[k]Fluoranthene,LB
+37013,0.008249672,Arsenic,LB
+37013,4.338433e-05,Nitrate portion of PM2.5-PRI,TON
+37005,0.017733006,Propionaldehyde,LB
+37005,0.000312358,"Benzo[g,h,i,]Perylene",LB
+37005,0.000120943,Fluoranthene,LB
+37005,0.000338732,Acenaphthylene,LB
+37005,3.923424e-06,Mercury,LB
+37005,6.691277,Carbon Dioxide,TON
+37005,3.485887e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37157,7.857744,Hexane,LB
+37157,0.016601042,Benzo[a]Pyrene,LB
+37157,0.00713678,Nickel,LB
+37157,0.010943584,Arsenic,LB
+37157,111.36848,Acetaldehyde,LB
+37157,0.05670116,Ammonia,TON
+37117,0.000225458,Benzo[b]Fluoranthene,LB
+37117,0.00017194722,Chrysene,LB
+37117,0.00019496008,Benz[a]Anthracene,LB
+37117,2.255536,Acetaldehyde,LB
+37117,0.001864509,Methane,TON
+37117,1.544939e-06,Nitrate portion of PM2.5-PRI,TON
+37117,0.0001804824,Anthracene,LB
+37117,0.0003802522,Pyrene,LB
+37095,0.0001823844,Benzo[a]Pyrene,LB
+37095,4.239868e-06,"Dibenzo[a,h]Anthracene",LB
+37095,0.0005362308,Phenanthrene,LB
+37095,0.0008165616,Methane,TON
+37095,6.582179e-07,Nitrate portion of PM2.5-PRI,TON
+37095,0.0009148017,PM10 Primary (Filt + Cond),TON
+37095,0.002737192,Styrene,LB
+37013,0.0180843,Nitrous Oxide,TON
+37021,2.16846,"1,3-Butadiene",LB
+37021,0.4246578,Propionaldehyde,LB
+37021,0.0180275,Benzo[a]Pyrene,LB
+37021,15.297332,"2,2,4-Trimethylpentane",LB
+37021,0.0237508,Acenaphthene,LB
+37021,0.01088943,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.0253161,PM2.5 Primary (Filt + Cond),TON
+37011,2.06973,Styrene,LB
+37011,11.696752,Acrolein,LB
+37011,0.003617726,Benzo[b]Fluoranthene,LB
+37011,0.01212666,Benzo[a]Pyrene,LB
+37011,0.4763958,Acenaphthene,LB
+37011,2.803053,Nitrogen Oxides,TON
+37011,0.1759675,PM10 Primary (Filt + Cond),TON
+37001,8.639812,Formaldehyde,LB
+37001,8.747678,Acetaldehyde,LB
+37001,0.1483023,Phenanthrene,LB
+37001,0.6276917,Volatile Organic Compounds,TON
+37051,27.63288,Hexane,LB
+37051,30.232,"2,2,4-Trimethylpentane",LB
+37051,41.90587,Carbon Monoxide,TON
+37051,0.2550955,Ammonia,TON
+37051,0.1230719,PM2.5 Primary (Filt + Cond),TON
+37051,0.003653779,Sulfate Portion of PM2.5-PRI,TON
+37047,0.02324242,Styrene,LB
+37047,0.7684054,Hexane,LB
+37047,0.0010822834,Benzo[b]Fluoranthene,LB
+37047,0.0014432636,Fluoranthene,LB
+37047,4.797068e-05,"Dibenzo[a,h]Anthracene",LB
+37047,0.0018280652,Arsenic,LB
+37023,0.12307832,Acrolein,LB
+37023,0.0014979792,Benzo[k]Fluoranthene,LB
+37023,0.002283648,Fluorene,LB
+37023,0.1018561,Nitrogen Oxides,TON
+37159,0.3189162,"1,3-Butadiene",LB
+37159,0.002092176,Anthracene,LB
+37159,0.015600972,"Benzo[g,h,i,]Perylene",LB
+37159,0.005861428,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.004014,Nickel,LB
+37111,0.007235278,Anthracene,LB
+37111,0.01336943,Fluoranthene,LB
+37111,7.663554,"2,2,4-Trimethylpentane",LB
+37111,20.836,Benzene,LB
+37111,0.013865878,Manganese,LB
+37111,0.0005171,Mercury,LB
+37111,93.13492,Acetaldehyde,LB
+37111,0.007811334,Acenaphthene,LB
+37017,0.19761608,Acrolein,LB
+37017,0.17872354,Xylenes (Mixed Isomers),LB
+37017,46.26942,Formaldehyde,LB
+37017,0.6136693,Carbon Monoxide,TON
+37007,4.835884,Hexane,LB
+37007,0.009935022,"Benzo[g,h,i,]Perylene",LB
+37007,0.00673629,"Dibenzo[a,h]Anthracene",LB
+37007,2.539082,Phenanthrene,LB
+37007,1.4832776,Fluorene,LB
+37007,0.002846065,Nitrate portion of PM2.5-PRI,TON
+37007,0.0253336,Sulfur Dioxide,TON
+37005,0.03023552,Ammonia,TON
+37001,3908.785,Carbon Monoxide,TON
+37001,2.297327,Elemental Carbon portion of PM2.5-PRI,TON
+37001,5.629716,Organic Carbon portion of PM2.5-PRI,TON
+37001,3.90531,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,6.422876,Sulfur Dioxide,TON
+37001,6.275144,Benzo[k]Fluoranthene,LB
+37001,5899.548,Acetaldehyde,LB
+37007,3133.002,Xylenes (Mixed Isomers),LB
+37061,2.753358,Hexane,LB
+37043,0.02256072,"1,3-Butadiene",LB
+37043,0.01663641,Acrolein,LB
+37043,0.03624674,Propionaldehyde,LB
+37043,0.0006931504,Acenaphthylene,LB
+37043,0.1762894,"2,2,4-Trimethylpentane",LB
+37043,0.000150376,Acenaphthene,LB
+37017,0.002488136,Arsenic,LB
+37017,0.8625688,Phenanthrene,LB
+37017,3.173812,Carbon Monoxide,TON
+37017,4.672902,Toluene,LB
+37017,0.0012945704,Benzo[k]Fluoranthene,LB
+37017,1.8676454,"2,2,4-Trimethylpentane",LB
+37017,0.01716183,Manganese,LB
+37017,1.1899762e-05,Mercury,LB
+37015,0.3010032,Ethyl Benzene,LB
+37015,0.6490454,Toluene,LB
+37015,0.6617082,Xylenes (Mixed Isomers),LB
+37015,0.2331092,"2,2,4-Trimethylpentane",LB
+37015,0.004316768,Manganese,LB
+37015,0.0002900542,Nitrous Oxide,TON
+37015,0.009723321,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.06063464,PM10 Primary (Filt + Cond),TON
+37011,0.03674002,PM2.5 Primary (Filt + Cond),TON
+37011,14.557618,Formaldehyde,LB
+37011,0.0982917,Fluorene,LB
+37011,0.000189785,Nitrate portion of PM2.5-PRI,TON
+37011,0.01535854,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.05064336,PM10 Primary (Filt + Cond),TON
+37199,0.5439218,Xylenes (Mixed Isomers),LB
+37199,0.0004140356,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.000224327,Benzo[k]Fluoranthene,LB
+37199,0.0001974902,Benz[a]Anthracene,LB
+37199,0.0001181013,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.0004926416,Nitrous Oxide,TON
+37199,0.0008332716,Sulfur Dioxide,TON
+37193,199.577,Formaldehyde,LB
+37193,0.14392696,Benzo[a]Pyrene,LB
+37193,0.4796988,Benz[a]Anthracene,LB
+37193,0.719925,Anthracene,LB
+37193,12.854304,Xylenes (Mixed Isomers),LB
+37193,0.008892464,"Benzo[g,h,i,]Perylene",LB
+37193,0.010921128,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.04291028,Benzo[b]Fluoranthene,LB
+37193,0.2796898,Chrysene,LB
+37193,0.4928972,PM2.5 Primary (Filt + Cond),TON
+37193,172.1065,Nitrogen Oxides,TON
+37193,33161.8,Toluene,LB
+37193,142.3498,Propionaldehyde,LB
+37193,12.262344,Pyrene,LB
+37193,2.534616,Benzo[b]Fluoranthene,LB
+37193,3.759256,Benzo[a]Pyrene,LB
+37191,28.78794,Toluene,LB
+37191,0.0004143548,Chromium (VI),LB
+37191,0.02897658,"Benzo[g,h,i,]Perylene",LB
+37191,111.15802,Benzene,LB
+37191,5.930515,Volatile Organic Compounds,TON
+37181,1.439614,Propionaldehyde,LB
+37181,52.08682,Formaldehyde,LB
+37181,5.38656e-05,Benz[a]Anthracene,LB
+37181,0.00179088,Manganese,LB
+37181,0.03521294,Ethyl Benzene,LB
+37199,6.165572,Formaldehyde,LB
+37199,0.00439174,Benzo[a]Pyrene,LB
+37199,1.406873e-05,Nitrate portion of PM2.5-PRI,TON
+37199,0.002582785,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.01298241,Ammonia,TON
+37197,3.781648,Propionaldehyde,LB
+37197,0.0003158576,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.00017436474,Benzo[k]Fluoranthene,LB
+37197,2.166014,"2,2,4-Trimethylpentane",LB
+37197,0.007668398,Arsenic,LB
+37197,33.6182,Acetaldehyde,LB
+37195,64.09504,Toluene,LB
+37195,0.15470916,Benzo[b]Fluoranthene,LB
+37195,9.101646,Phenanthrene,LB
+37195,1.964604,PM25-Primary from certain diesel engines,TON
+37069,0.000703969,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.0003813798,"Dibenzo[a,h]Anthracene",LB
+37069,0.15332306,Phenanthrene,LB
+37069,0.003104818,Sulfur Dioxide,TON
+37067,1.428666,Methane,TON
+37067,104.2621,Nitrogen Oxides,TON
+37067,0.7897415,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.2774581,Sulfur Dioxide,TON
+37067,28.71564,Volatile Organic Compounds,TON
+37067,121.82254,Hexane,LB
+37063,47.91984,Ethyl Benzene,LB
+37063,159.1401,Hexane,LB
+37049,3.496698,PM10-Primary from certain diesel engines,TON
+37049,5.411853,PM10 Primary (Filt + Cond),TON
+37049,0.3882215,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,26.96965,Carbon Monoxide,TON
+37037,0.0003227226,Mercury,LB
+37037,3.166116,Fluorene,LB
+37037,14.149566,Hexane,LB
+37035,0.2780208,Acenaphthene,LB
+37035,0.5631534,Fluorene,LB
+37035,0.4688536,Pyrene,LB
+37035,5.817226,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,10.63778,Sulfur Dioxide,TON
+37035,0.511938,Sulfate Portion of PM2.5-PRI,TON
+37035,0.02576438,Chromium (VI),LB
+37035,14968.302,Acetaldehyde,LB
+37035,9.069198,Manganese,LB
+37035,0.2582772,Mercury,LB
+37033,2.80095,Styrene,LB
+37033,0.6701878,Anthracene,LB
+37033,0.00011462054,Chromium (VI),LB
+37033,0.004315524,"Dibenzo[a,h]Anthracene",LB
+37031,12.309092,Ethyl Benzene,LB
+37023,2.578782e-06,Pyrene,LB
+37023,2.511868e-10,Chromium (VI),LB
+37023,6.694408e-06,Acenaphthylene,LB
+37023,3.473354e-05,Styrene,LB
+37023,0.0014740068,Benzene,LB
+37023,3.140028e-08,Nickel,LB
+37023,0.0004333052,Acetaldehyde,LB
+37023,8.071766e-06,Phenanthrene,LB
+37023,7.072512e-07,Methane,TON
+37023,310.7996,Formaldehyde,LB
+37023,0.14596906,Arsenic,LB
+37023,0.5599006,Nitrous Oxide,TON
+37023,0.4855053,PM2.5 Primary (Filt + Cond),TON
+37023,17.03493,Volatile Organic Compounds,TON
+37023,594.2412,Ethyl Benzene,LB
+37023,19.12227,Acrolein,LB
+37023,1.677014,Pyrene,LB
+37159,0.03877208,Fluoranthene,LB
+37159,0.000254195,"Dibenzo[a,h]Anthracene",LB
+37159,8.551002,Acetaldehyde,LB
+37159,0.0418825,Methane,TON
+37159,0.4213548,Acrolein,LB
+37157,2168.602,Ethyl Benzene,LB
+37145,0.0011912542,Benz[a]Anthracene,LB
+37145,4.812692,Benzene,LB
+37145,0.0013388934,Manganese,LB
+37145,11.385044,Xylenes (Mixed Isomers),LB
+37143,0.015138602,Acenaphthylene,LB
+37143,9.12836e-05,Arsenic,LB
+37143,0.03224506,Phenanthrene,LB
+37143,0.0001668314,Sulfur Dioxide,TON
+37139,1.0446518e-06,Chrysene,LB
+37139,3.187102e-08,"Dibenzo[a,h]Anthracene",LB
+37139,2.499604e-09,Mercury,LB
+37139,9.3342e-05,Nitrogen Oxides,TON
+37127,1.147656,Ethyl Benzene,LB
+37127,0.16995318,Acenaphthylene,LB
+37127,0.07848396,Benz[a]Anthracene,LB
+37125,24.10634,Propionaldehyde,LB
+37125,0.10622372,Benzo[b]Fluoranthene,LB
+37125,0.014576622,Benzo[k]Fluoranthene,LB
+37125,0.014546586,"Dibenzo[a,h]Anthracene",LB
+37125,5.699784,Phenanthrene,LB
+37125,2.056349,PM10-Primary from certain diesel engines,TON
+37125,0.05314367,Sulfate Portion of PM2.5-PRI,TON
+37125,0.2821232,Styrene,LB
+37125,0.01759796,Fluoranthene,LB
+37125,0.003319526,Manganese,LB
+37125,0.000927884,Arsenic,LB
+37125,0.012144804,Acenaphthene,LB
+37125,0.06583218,Phenanthrene,LB
+37125,170.7235,Carbon Dioxide,TON
+37125,1.250571e-05,Nitrate portion of PM2.5-PRI,TON
+37113,0.0003434684,Benzo[k]Fluoranthene,LB
+37113,0.0594098,Acenaphthylene,LB
+37113,0.2948412,"2,2,4-Trimethylpentane",LB
+37113,4.896502,Acetaldehyde,LB
+37113,0.00248738,Benzo[b]Fluoranthene,LB
+37113,0.05405553,PM10-Primary from certain diesel engines,TON
+37113,0.003953393,Ammonia,TON
+37113,0.05258231,PM2.5 Primary (Filt + Cond),TON
+37113,0.002379428,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,77.72658,Formaldehyde,LB
+37113,1.5799002e-05,Chromium (VI),LB
+37113,3.050368,Carbon Monoxide,TON
+37113,0.1712025,PM25-Primary from certain diesel engines,TON
+37113,6.375965,Nitrogen Oxides,TON
+37109,2.137808,Acrolein,LB
+37109,0.15910966,Fluoranthene,LB
+37109,114.67556,Benzene,LB
+37109,0.10916118,Acenaphthene,LB
+37109,0.0001271804,Nitrate portion of PM2.5-PRI,TON
+37109,0.03126174,Sulfur Dioxide,TON
+37109,0.02470614,Acrolein,LB
+37109,0.0009483398,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,2.1763e-05,"Dibenzo[a,h]Anthracene",LB
+37109,0.0005844794,Benz[a]Anthracene,LB
+37109,0.0001622141,Sulfur Dioxide,TON
+37109,0.00013943978,"Dibenzo[a,h]Anthracene",LB
+37109,9.103906,"2,2,4-Trimethylpentane",LB
+37109,5.401076,Acetaldehyde,LB
+37109,9.270541,Carbon Monoxide,TON
+37109,0.006655443,Ammonia,TON
+37109,0.2722303,Volatile Organic Compounds,TON
+37109,0.01617132,"Benzo[g,h,i,]Perylene",LB
+37101,51.96038,Ethyl Benzene,LB
+37101,65.7509,Benzene,LB
+37097,0.02689286,Benzo[b]Fluoranthene,LB
+37097,0.03504156,Nickel,LB
+37097,0.8363232,Acenaphthene,LB
+37097,0.1159452,Methane,TON
+37097,3498.845,Carbon Dioxide,TON
+37097,0.001688001,Nitrate portion of PM2.5-PRI,TON
+37097,0.9892893,PM10 Primary (Filt + Cond),TON
+37099,1.237774e-06,Mercury,LB
+37099,0.144924,Carbon Monoxide,TON
+37099,55.83128,Carbon Dioxide,TON
+37099,0.001294232,Ammonia,TON
+37099,0.0004727443,Sulfate Portion of PM2.5-PRI,TON
+37097,17813.78,Xylenes (Mixed Isomers),LB
+37097,9302.214,"2,2,4-Trimethylpentane",LB
+37093,17.752674,Naphthalene,LB
+37093,0.03689443,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.000514064,Benzo[a]Pyrene,LB
+37083,0.232937,Ethyl Benzene,LB
+37083,0.8561414,Xylenes (Mixed Isomers),LB
+37083,1.8342716e-07,Chromium (VI),LB
+37083,6.845424e-05,Manganese,LB
+37083,0.000431606,Acenaphthene,LB
+37083,0.000236026,Methane,TON
+37081,4.131628,Anthracene,LB
+37081,0.0005034846,Chromium (VI),LB
+37081,8.24697,Acenaphthylene,LB
+37081,0.6208958,Chrysene,LB
+37081,43.09016,"2,2,4-Trimethylpentane",LB
+37081,8.667484,Fluorene,LB
+37081,2.60205,PM10 Primary (Filt + Cond),TON
+37081,0.0907483,Sulfate Portion of PM2.5-PRI,TON
+37077,8.295048e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37077,1.357777e-06,Sulfate Portion of PM2.5-PRI,TON
+37077,0.00010245402,Pyrene,LB
+37077,8.999214e-05,Fluoranthene,LB
+37077,0.0002699024,Acenaphthylene,LB
+37075,0.4042406,Fluoranthene,LB
+37075,0.11797074,Benz[a]Anthracene,LB
+37075,6.01803,Benzene,LB
+37075,2003.906,Carbon Dioxide,TON
+37075,0.2451194,PM25-Primary from certain diesel engines,TON
+37075,408.3868,"2,2,4-Trimethylpentane",LB
+37065,3.15876e-07,Chromium (VI),LB
+37065,0.4066026,"2,2,4-Trimethylpentane",LB
+37065,0.0008266826,Acenaphthene,LB
+37057,0.04925522,Acenaphthene,LB
+37057,0.10729922,Fluorene,LB
+37057,0.00759034,Methane,TON
+37057,0.0001983759,Nitrate portion of PM2.5-PRI,TON
+37057,0.05090677,PM10 Primary (Filt + Cond),TON
+37055,30.28614,Acrolein,LB
+37055,436.6226,Formaldehyde,LB
+37055,12.29482,"2,2,4-Trimethylpentane",LB
+37055,0.3517656,Manganese,LB
+37055,4.48433,Phenanthrene,LB
+37055,0.4319323,Methane,TON
+37049,17134.548,Toluene,LB
+37041,0.0003581256,Benzo[b]Fluoranthene,LB
+37041,3.248036e-07,Mercury,LB
+37041,0.8413994,Acetaldehyde,LB
+37041,0.004575565,PM10-Primary from certain diesel engines,TON
+37041,0.004209561,PM25-Primary from certain diesel engines,TON
+37041,0.001817919,Elemental Carbon portion of PM2.5-PRI,TON
+37041,3.986975e-05,Nitrous Oxide,TON
+37041,0.0001313121,Sulfur Dioxide,TON
+37031,2671.266,Hexane,LB
+37031,400.8042,Benzene,LB
+37029,1634.4306,Ethyl Benzene,LB
+37029,8962.904,Toluene,LB
+37029,2.403076,Anthracene,LB
+37029,0.0019564264,Chromium (VI),LB
+37029,0.7050078,Benzo[k]Fluoranthene,LB
+37029,0.7193912,Chrysene,LB
+37029,0.8865886,Benzo[a]Pyrene,LB
+37029,0.4545808,Manganese,LB
+37029,36150.32,Carbon Dioxide,TON
+37029,2.35831,PM10 Primary (Filt + Cond),TON
+37107,8.684682,Xylenes (Mixed Isomers),LB
+37101,0.0333584,Styrene,LB
+37101,0.002335964,Fluorene,LB
+37101,0.01270726,Methane,TON
+37093,0.585559,Ethyl Benzene,LB
+37093,0.00442469,Acenaphthylene,LB
+37093,0.0009608538,Acenaphthene,LB
+37093,0.05005356,Naphthalene,LB
+37093,0.007726113,Methane,TON
+37093,0.06961681,Nitrogen Oxides,TON
+37177,7.207436e-05,Anthracene,LB
+37177,0.00014085242,Pyrene,LB
+37177,3.451138e-07,Mercury,LB
+37177,0.00017015774,Fluorene,LB
+37175,0.00770899,Benzo[b]Fluoranthene,LB
+37175,4.61598,Nitrogen Oxides,TON
+37167,5.452158,Styrene,LB
+37167,35.36498,Toluene,LB
+37167,0.011578934,Benzo[k]Fluoranthene,LB
+37167,0.011551874,"Dibenzo[a,h]Anthracene",LB
+37167,0.00012319428,Mercury,LB
+37167,0.9970209,PM2.5 Primary (Filt + Cond),TON
+37165,0.6718928,Nickel,LB
+37165,2.385382,PM2.5 Primary (Filt + Cond),TON
+37165,14270.334,Toluene,LB
+37165,5.616142,Pyrene,LB
+37165,1.2039858,Benzo[k]Fluoranthene,LB
+37165,15.125458,Acenaphthylene,LB
+37165,3530.268,Benzene,LB
+37163,12302.402,Ethyl Benzene,LB
+37163,0.01132898,Chromium (VI),LB
+37163,17.097488,"Benzo[g,h,i,]Perylene",LB
+37163,1.4161216,Nickel,LB
+37163,1.466882,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.10828606,Benz[a]Anthracene,LB
+37145,0.009213324,Nickel,LB
+37145,6.357172,Naphthalene,LB
+37145,0.0106879,Methane,TON
+37145,0.00576041,Ammonia,TON
+37145,0.3439377,Volatile Organic Compounds,TON
+37139,0.14469568,Benzo[a]Pyrene,LB
+37139,3.539392,Phenanthrene,LB
+37139,1.260861,PM2.5 Primary (Filt + Cond),TON
+37139,10.553366,Hexane,LB
+37139,1.70854,Fluoranthene,LB
+37139,0.00616558,Benzo[k]Fluoranthene,LB
+37139,2.661534,Styrene,LB
+37139,5.660266,Hexane,LB
+37139,0.009610714,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.06615845,Sulfur Dioxide,TON
+37139,0.05796994,Sulfate Portion of PM2.5-PRI,TON
+37131,2.02619,Acenaphthylene,LB
+37131,0.574308,Benz[a]Anthracene,LB
+37131,1.101861,Methane,TON
+37131,13.23231,Carbon Monoxide,TON
+37131,17987.16,Carbon Dioxide,TON
+37131,0.003720909,Nitrate portion of PM2.5-PRI,TON
+37131,1.546499,PM2.5 Primary (Filt + Cond),TON
+37127,1149.271,Hexane,LB
+37127,1.2654382,Anthracene,LB
+37127,0.472714,Benzo[b]Fluoranthene,LB
+37127,0.472714,Benzo[k]Fluoranthene,LB
+37127,0.4481862,Chrysene,LB
+37127,0.016696558,Mercury,LB
+37127,502.9074,Acetaldehyde,LB
+37127,8.02295,Phenanthrene,LB
+37127,0.002222523,Nitrate portion of PM2.5-PRI,TON
+37123,1.499416,PM25-Primary from certain diesel engines,TON
+37123,0.9963389,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.159451,Sulfur Dioxide,TON
+37123,45.76042,Acrolein,LB
+37123,2.880262,Pyrene,LB
+37123,2.2647,Fluoranthene,LB
+37123,0.3296606,Chrysene,LB
+37123,0.15762422,Benzo[a]Pyrene,LB
+37123,0.0002407918,Mercury,LB
+37111,1.7749396,Propionaldehyde,LB
+37111,0.00012705336,Chrysene,LB
+37111,6.920844e-05,Benz[a]Anthracene,LB
+37111,0.2182216,Benzene,LB
+37111,0.0002659206,Acenaphthene,LB
+37111,0.001272829,Phenanthrene,LB
+37111,0.591995,Methane,TON
+37007,0.2704447,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.02573089,Sulfate Portion of PM2.5-PRI,TON
+37007,3.437338,Styrene,LB
+37007,19.865684,Acrolein,LB
+37007,2.545402,Pyrene,LB
+37007,6.961966e-05,Chromium (VI),LB
+37007,1.9232546,Fluoranthene,LB
+37007,0.014590744,Arsenic,LB
+37007,27.80954,Naphthalene,LB
+37007,0.678834,PM10-Primary from certain diesel engines,TON
+37015,8.06971,Styrene,LB
+37015,46.97258,"1,3-Butadiene",LB
+37015,0.5661222,Pyrene,LB
+37015,0.091403,Benzo[b]Fluoranthene,LB
+37015,0.002739182,"Dibenzo[a,h]Anthracene",LB
+37015,336.3664,Benzene,LB
+37015,114.6255,Acetaldehyde,LB
+37015,47664.09,Carbon Dioxide,TON
+37077,0.00700789,Styrene,LB
+37077,0.0017529688,"Benzo[g,h,i,]Perylene",LB
+37077,0.0003399412,Benzo[k]Fluoranthene,LB
+37077,0.0006496344,Benzo[a]Pyrene,LB
+37077,0.0002913572,Benz[a]Anthracene,LB
+37077,0.0004907572,Fluorene,LB
+37077,2.491804e-05,Sulfate Portion of PM2.5-PRI,TON
+37025,0.3840148,"1,3-Butadiene",LB
+37025,0.2831586,Acrolein,LB
+37025,0.00638324,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.003315874,Benzo[b]Fluoranthene,LB
+37025,0.011877614,Acenaphthylene,LB
+37025,0.014707888,Phenanthrene,LB
+37025,0.001815229,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.004709176,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.00394528,Fluoranthene,LB
+37133,0.002802222,Benzo[k]Fluoranthene,LB
+37133,0.00530811,Benzo[a]Pyrene,LB
+37133,2.28528e-05,Nitrate portion of PM2.5-PRI,TON
+37133,0.1931699,Volatile Organic Compounds,TON
+37111,0.00581583,Styrene,LB
+37111,0.0204201,Acrolein,LB
+37111,0.0002720772,Benzo[k]Fluoranthene,LB
+37111,0.0002335696,Benz[a]Anthracene,LB
+37111,0.584498,Benzene,LB
+37111,35.99637,Carbon Dioxide,TON
+37111,0.0004463946,Nitrous Oxide,TON
+37111,0.001839567,Ammonia,TON
+37111,0.0007402248,PM2.5 Primary (Filt + Cond),TON
+37111,0.0002585138,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.0013048172,Chromium (VI),LB
+37021,27.36836,Fluoranthene,LB
+37021,33.07412,Acenaphthylene,LB
+37021,643.2144,Naphthalene,LB
+37021,34.30339,Volatile Organic Compounds,TON
+37013,0.002246476,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.0012217182,Benzo[k]Fluoranthene,LB
+37013,0.03385458,Manganese,LB
+37013,15.37908,Carbon Monoxide,TON
+37013,0.005581596,Nitrous Oxide,TON
+37013,0.3493833,PM10 Primary (Filt + Cond),TON
+37013,106.66722,Styrene,LB
+37013,96.06478,Acrolein,LB
+37013,1.308886,Chrysene,LB
+37013,4432.006,"2,2,4-Trimethylpentane",LB
+37013,1.3482248,Benz[a]Anthracene,LB
+37013,237.3064,Naphthalene,LB
+37011,0.004795734,Manganese,LB
+37011,0.003747742,Ammonia,TON
+37011,0.001456512,Sulfur Dioxide,TON
+37011,7.461628e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.0002927682,Benzo[b]Fluoranthene,LB
+37011,4.133444e-05,Benzo[k]Fluoranthene,LB
+37005,13.714416,Ethyl Benzene,LB
+37005,2.721366e-06,Chromium (VI),LB
+37005,0.005762688,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.004709892,Benzo[k]Fluoranthene,LB
+37005,0.10511736,Phenanthrene,LB
+37005,0.001400541,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.5478404,Propionaldehyde,LB
+37021,0.010565996,Acenaphthylene,LB
+37013,1.5568892e-06,Chromium (VI),LB
+37013,0.009339452,"Benzo[g,h,i,]Perylene",LB
+37013,0.01656365,Fluoranthene,LB
+37013,0.003535798,Benzo[a]Pyrene,LB
+37013,8.05653e-05,"Dibenzo[a,h]Anthracene",LB
+37013,0.0002984178,Arsenic,LB
+37013,66.03669,Carbon Dioxide,TON
+37013,0.001385184,Sulfur Dioxide,TON
+37009,3.414552e-05,Chromium (VI),LB
+37009,0.000875072,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.006596886,Arsenic,LB
+37009,0.860889,Fluorene,LB
+37009,0.008646984,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,1.683766,Nitrous Oxide,TON
+37005,2.043775,PM10 Primary (Filt + Cond),TON
+37005,2643.058,Hexane,LB
+37005,77.90858,Propionaldehyde,LB
+37005,0.1650056,Nickel,LB
+37005,1315.6072,Acetaldehyde,LB
+37001,0.0001716016,Anthracene,LB
+37001,1.640271,Propionaldehyde,LB
+37001,6.05377e-05,Benz[a]Anthracene,LB
+37001,0.0002503012,Acenaphthene,LB
+37001,0.001270182,Phenanthrene,LB
+37001,0.001442407,Naphthalene,LB
+37001,0.007086932,PM2.5 Primary (Filt + Cond),TON
+37015,0.000646949,Nitrate portion of PM2.5-PRI,TON
+37015,9.382525,Nitrogen Oxides,TON
+37015,0.02341441,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.02458271,Sulfur Dioxide,TON
+37015,6.346908,Styrene,LB
+37015,0.0001208572,Chromium (VI),LB
+37015,0.05351214,Manganese,LB
+37199,0.018432556,Propionaldehyde,LB
+37199,7.393066e-05,Benzo[k]Fluoranthene,LB
+37199,6.46304e-05,Benz[a]Anthracene,LB
+37199,6.389582e-05,Nickel,LB
+37199,0.003985546,Naphthalene,LB
+37199,0.0005453949,PM10 Primary (Filt + Cond),TON
+37199,5.679258e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.7170956,Hexane,LB
+37199,0.06183422,Anthracene,LB
+37199,1.307807,Propionaldehyde,LB
+37199,0.005853164,Chrysene,LB
+37199,1.881133,Carbon Monoxide,TON
+37199,0.0002270693,Nitrous Oxide,TON
+37197,5.320692,Propionaldehyde,LB
+37197,0.002448502,"Benzo[g,h,i,]Perylene",LB
+37197,0.0012654896,"Dibenzo[a,h]Anthracene",LB
+37197,0.013076122,Nickel,LB
+37197,0.5724047,Volatile Organic Compounds,TON
+37193,2.044552,PM2.5 Primary (Filt + Cond),TON
+37193,1.06103,Styrene,LB
+37193,6.486768,Acrolein,LB
+37193,2.204262,Hexane,LB
+37193,0.04146556,Benz[a]Anthracene,LB
+37193,0.02362496,Nickel,LB
+37193,0.0009596635,Nitrous Oxide,TON
+37193,0.01469255,PM2.5 Primary (Filt + Cond),TON
+37195,3.856394,Ethyl Benzene,LB
+37195,0.8380882,Pyrene,LB
+37195,0.002962912,"Benzo[g,h,i,]Perylene",LB
+37195,0.6486686,Acenaphthylene,LB
+37195,0.03436468,Manganese,LB
+37195,1.1808852,Phenanthrene,LB
+37195,4.603674,Carbon Monoxide,TON
+37195,1642.815,Carbon Dioxide,TON
+37195,0.002103928,Nitrate portion of PM2.5-PRI,TON
+37195,206.1796,"1,3-Butadiene",LB
+37195,28.96626,Acrolein,LB
+37195,3201.89,Xylenes (Mixed Isomers),LB
+37195,6.747824,Acenaphthylene,LB
+37195,27600.48,Carbon Dioxide,TON
+37191,0.02882464,"Benzo[g,h,i,]Perylene",LB
+37191,0.14366608,Benzo[b]Fluoranthene,LB
+37191,0.4818146,Benzo[a]Pyrene,LB
+37191,249.5344,Acetaldehyde,LB
+37191,4.252056,Fluorene,LB
+37191,24.69028,Naphthalene,LB
+37191,0.05169241,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,10.434188,Styrene,LB
+37191,0.18926806,Benzo[a]Pyrene,LB
+37191,2.5841,Phenanthrene,LB
+37189,1910.6864,"2,2,4-Trimethylpentane",LB
+37185,59.52102,Styrene,LB
+37185,0.8581162,Chrysene,LB
+37185,132.58932,Naphthalene,LB
+37185,51.1679,Volatile Organic Compounds,TON
+37181,0.09568968,Fluorene,LB
+37181,0.4478854,Carbon Monoxide,TON
+37181,0.005341089,Ammonia,TON
+37181,1.557339,Nitrogen Oxides,TON
+37181,0.0007456704,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.018945876,Chrysene,LB
+37181,0.3582698,"2,2,4-Trimethylpentane",LB
+37179,4.285988,Toluene,LB
+37179,4.603838,Xylenes (Mixed Isomers),LB
+37179,0.2513184,PM25-Primary from certain diesel engines,TON
+37179,0.2760781,PM2.5 Primary (Filt + Cond),TON
+37179,0.03918604,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.2789957,Volatile Organic Compounds,TON
+37191,16.33,"1,3-Butadiene",LB
+37191,2.754156,Acenaphthylene,LB
+37191,622.6378,Formaldehyde,LB
+37191,18.84724,Carbon Monoxide,TON
+37191,0.02734177,Nitrous Oxide,TON
+37183,1777461,Carbon Dioxide,TON
+37181,2217.648,"2,2,4-Trimethylpentane",LB
+37031,8.899496e-05,Chromium (VI),LB
+37031,0.015035764,Benzo[k]Fluoranthene,LB
+37031,175.35402,Acetaldehyde,LB
+37031,3.056982,Fluorene,LB
+37031,1.91652,PM10-Primary from certain diesel engines,TON
+37031,0.2616982,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,2.34942,Volatile Organic Compounds,TON
+37031,0.0008405345,Nitrate portion of PM2.5-PRI,TON
+37031,0.03540579,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,7.2142,Hexane,LB
+37031,0.7623422,Anthracene,LB
+37031,14.6403,Propionaldehyde,LB
+37031,1.6007186,Pyrene,LB
+37031,0.0018164678,Benzo[k]Fluoranthene,LB
+37031,146.77356,Acrolein,LB
+37031,0.07062596,Benzo[b]Fluoranthene,LB
+37031,0.2177874,Nickel,LB
+37031,0.9988388,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.04097604,Nitrous Oxide,TON
+37031,10.8238,Volatile Organic Compounds,TON
+37029,0.16630504,Benz[a]Anthracene,LB
+37029,0.003626683,Nitrous Oxide,TON
+37029,0.0008595544,Nitrate portion of PM2.5-PRI,TON
+37029,0.02350858,Sulfate Portion of PM2.5-PRI,TON
+37029,0.4820421,Volatile Organic Compounds,TON
+37029,0.003720406,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.04889214,Benzo[a]Pyrene,LB
+37029,0.9077462,Ethyl Benzene,LB
+37029,0.2622862,Pyrene,LB
+37029,1.9386092,Xylenes (Mixed Isomers),LB
+37029,0.001408514,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.036099,Chrysene,LB
+37029,0.004014967,Ammonia,TON
+37029,0.08633481,PM10 Primary (Filt + Cond),TON
+37029,0.001566104,Sulfate Portion of PM2.5-PRI,TON
+37029,0.0619335,Benz[a]Anthracene,LB
+37029,0.0009363916,Arsenic,LB
+37119,198.96618,Ethyl Benzene,LB
+37119,467.0658,Acrolein,LB
+37119,0.0015640846,Chromium (VI),LB
+37119,2.47661,Chrysene,LB
+37119,558.118,Benzene,LB
+37119,1.1263736,Manganese,LB
+37119,0.0015704456,Mercury,LB
+37119,651.7096,Naphthalene,LB
+37119,5.583657,PM25-Primary from certain diesel engines,TON
+37119,0.1777733,Nitrous Oxide,TON
+37119,9.293105,PM10 Primary (Filt + Cond),TON
+37101,0.04985716,Arsenic,LB
+37101,4.587058,PM10-Primary from certain diesel engines,TON
+37101,0.01261312,Nitrate portion of PM2.5-PRI,TON
+37101,0.04436864,"Benzo[g,h,i,]Perylene",LB
+37101,0.05547674,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.03773662,Acenaphthylene,LB
+37091,7.244472,Formaldehyde,LB
+37091,0.016724916,Benz[a]Anthracene,LB
+37103,0.08328361,Nitrous Oxide,TON
+37103,0.03824678,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.185791,PM10 Primary (Filt + Cond),TON
+37103,0.1505322,Anthracene,LB
+37103,3.546372,Propionaldehyde,LB
+37103,377.4594,Xylenes (Mixed Isomers),LB
+37103,0.04931014,Benzo[b]Fluoranthene,LB
+37103,0.2569592,Fluoranthene,LB
+37099,1.2920272,Xylenes (Mixed Isomers),LB
+37099,0.0011787394,Arsenic,LB
+37099,425.5521,Carbon Dioxide,TON
+37099,0.01746633,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.1122849,PM10 Primary (Filt + Cond),TON
+37099,0.08967879,Volatile Organic Compounds,TON
+37099,1.72728,Volatile Organic Compounds,TON
+37093,6.87845,Hexane,LB
+37093,1.4822468,Fluorene,LB
+37093,0.04584436,Benzo[b]Fluoranthene,LB
+37091,1.1044454e-05,Mercury,LB
+37091,1.734898,Carbon Monoxide,TON
+37091,0.0002370978,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.04240305,Volatile Organic Compounds,TON
+37091,2.154136,Hexane,LB
+37091,1.10175e-06,Chromium (VI),LB
+37091,7.496874,Toluene,LB
+37071,0.061542,"1,3-Butadiene",LB
+37071,0.005913666,Benzo[k]Fluoranthene,LB
+37071,0.004480728,Chrysene,LB
+37071,0.004708602,Acenaphthene,LB
+37071,0.2458188,Naphthalene,LB
+37071,0.02824631,Ammonia,TON
+37071,0.008079929,Organic Carbon portion of PM2.5-PRI,TON
+37069,4.710512,Ethyl Benzene,LB
+37069,7.40495,Hexane,LB
+37069,0.04182318,Acenaphthylene,LB
+37069,0.0003803466,Nickel,LB
+37069,0.018614066,Fluorene,LB
+37069,0.4770546,Naphthalene,LB
+37069,0.004528917,Nitrous Oxide,TON
+37067,5.20262,"Benzo[g,h,i,]Perylene",LB
+37067,1.3650806,Benzo[b]Fluoranthene,LB
+37067,1.3650806,Benzo[k]Fluoranthene,LB
+37067,1295.043,Formaldehyde,LB
+37067,1.954157,Benzo[a]Pyrene,LB
+37067,0.05108686,Mercury,LB
+37067,0.9766426,Arsenic,LB
+37067,1476.9724,Acetaldehyde,LB
+37067,1.156156,Organic Carbon portion of PM2.5-PRI,TON
+37067,71.70554,Volatile Organic Compounds,TON
+37061,468.7562,Hexane,LB
+37061,0.14186318,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.02603744,Arsenic,LB
+37061,0.07798203,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.03437175,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,5.319309,Volatile Organic Compounds,TON
+37039,0.0007391623,Nitrogen Oxides,TON
+37039,0.005595484,Formaldehyde,LB
+37039,2.437204e-07,"Dibenzo[a,h]Anthracene",LB
+37039,9.597542e-05,Phenanthrene,LB
+37039,1.227503e-05,Methane,TON
+37043,3.343012e-05,Benzo[b]Fluoranthene,LB
+37043,3.343012e-05,Benzo[k]Fluoranthene,LB
+37043,0.0987481,Benzene,LB
+37043,0.03926128,Carbon Monoxide,TON
+37043,0.004061806,Nitrogen Oxides,TON
+37041,0.001368311,Sulfate Portion of PM2.5-PRI,TON
+37041,0.8224858,"1,3-Butadiene",LB
+37041,0.7118984,Hexane,LB
+37041,0.05825875,PM10-Primary from certain diesel engines,TON
+37041,0.9061213,Nitrogen Oxides,TON
+37027,2496.87,Toluene,LB
+37027,0.6187234,"Benzo[g,h,i,]Perylene",LB
+37027,0.004765112,Mercury,LB
+37027,0.0594152,Nickel,LB
+37027,0.4612964,Methane,TON
+37023,0.07871938,Acenaphthene,LB
+37023,0.0149741,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.006317358,Sulfur Dioxide,TON
+37023,0.005509192,Benzo[b]Fluoranthene,LB
+37197,4.217592,Acrolein,LB
+37197,0.3709936,Pyrene,LB
+37197,0.10175674,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.06724566,Chrysene,LB
+37197,82.9471,Formaldehyde,LB
+37197,0.017338368,Arsenic,LB
+37197,0.4474968,Fluorene,LB
+37197,0.1008475,Methane,TON
+37197,0.1919501,Ammonia,TON
+37195,2.498736e-05,Benz[a]Anthracene,LB
+37195,0.00336641,Naphthalene,LB
+37195,1.162442e-06,Sulfate Portion of PM2.5-PRI,TON
+37195,0.00011067624,Pyrene,LB
+37195,11.03751,Pyrene,LB
+37195,2.694218,Benzo[k]Fluoranthene,LB
+37195,29.43198,Acenaphthylene,LB
+37195,2.549924,Benz[a]Anthracene,LB
+37195,2.310014,Arsenic,LB
+37195,2327.454,Acetaldehyde,LB
+37195,189.7134,Nitrogen Oxides,TON
+37191,0.003019954,Benzo[b]Fluoranthene,LB
+37191,6.13653,"2,2,4-Trimethylpentane",LB
+37191,0.003467692,Manganese,LB
+37191,0.0151485,Fluorene,LB
+37191,0.008731339,Ammonia,TON
+37191,0.0001778981,Sulfate Portion of PM2.5-PRI,TON
+37191,0.1432033,Volatile Organic Compounds,TON
+37191,4.749604,Ethyl Benzene,LB
+37191,0.17246884,Styrene,LB
+37191,7.3392,Hexane,LB
+37187,0.06130174,Styrene,LB
+37187,0.015048858,Anthracene,LB
+37187,0.0008725408,Benzo[b]Fluoranthene,LB
+37187,0.014122086,Acenaphthene,LB
+37187,123.6305,Carbon Dioxide,TON
+37187,0.001789171,Ammonia,TON
+37187,5.135148e-05,Nitrate portion of PM2.5-PRI,TON
+37183,7.418894,Acrolein,LB
+37183,0.06596938,Anthracene,LB
+37183,0.4440496,"Benzo[g,h,i,]Perylene",LB
+37183,0.0869933,Benzo[b]Fluoranthene,LB
+37183,0.325177,Acenaphthylene,LB
+37183,0.06598724,Chrysene,LB
+37183,0.07647254,Nickel,LB
+37183,0.07012784,Acenaphthene,LB
+37183,0.0006396175,Nitrate portion of PM2.5-PRI,TON
+37183,0.3428727,Sulfur Dioxide,TON
+37183,199.935,PM10 Primary (Filt + Cond),TON
+37183,1.646154,Sulfate Portion of PM2.5-PRI,TON
+37183,222052.2,Xylenes (Mixed Isomers),LB
+37183,43.02516,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,43.58198,Manganese,LB
+37179,0.04339752,"Benzo[g,h,i,]Perylene",LB
+37179,0.2110694,Benzo[b]Fluoranthene,LB
+37179,0.18417638,Nickel,LB
+37179,43159.36,Carbon Dioxide,TON
+37179,0.3672886,Sulfate Portion of PM2.5-PRI,TON
+37167,12.059664,Xylenes (Mixed Isomers),LB
+37167,0.2398148,Chrysene,LB
+37167,4.318846,"2,2,4-Trimethylpentane",LB
+37167,73.22166,Acetaldehyde,LB
+37167,5.797241,Nitrogen Oxides,TON
+37167,0.5513874,PM10 Primary (Filt + Cond),TON
+37165,0.0004878217,Methane,TON
+37165,1.682455e-06,Nitrate portion of PM2.5-PRI,TON
+37165,0.008298519,Volatile Organic Compounds,TON
+37165,6.625864e-08,Chromium (VI),LB
+37165,0.0003348676,Benzo[b]Fluoranthene,LB
+37165,0.0003348676,Benzo[k]Fluoranthene,LB
+37165,8.282464e-06,Nickel,LB
+37163,0.018303252,Nickel,LB
+37163,0.01647211,Nitrous Oxide,TON
+37163,0.588101,Pyrene,LB
+37163,0.00014642278,Chromium (VI),LB
+37163,0.1071718,Benzo[b]Fluoranthene,LB
+37163,0.51558,Fluoranthene,LB
+37161,6.081644,Acrolein,LB
+37161,0.2728648,Anthracene,LB
+37161,0.12518774,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.09202006,Benzo[b]Fluoranthene,LB
+37161,0.09202006,Benzo[k]Fluoranthene,LB
+37161,0.1254913,Benzo[a]Pyrene,LB
+37161,434.3244,Benzene,LB
+37153,4.16959,"1,3-Butadiene",LB
+37153,0.711279,Acenaphthylene,LB
+37153,853.8209,Carbon Dioxide,TON
+37139,0.004271158,Arsenic,LB
+37139,0.8945222,Phenanthrene,LB
+37139,0.1036674,PM10-Primary from certain diesel engines,TON
+37139,0.09949089,PM2.5 Primary (Filt + Cond),TON
+37139,6.851528,Xylenes (Mixed Isomers),LB
+37129,28.48142,Hexane,LB
+37129,9.508528,Pyrene,LB
+37129,0.3574193,Sulfate Portion of PM2.5-PRI,TON
+37131,6.030252,Carbon Monoxide,TON
+37131,2.525298,Pyrene,LB
+37131,264.8546,Formaldehyde,LB
+37131,0.18412398,Benzo[a]Pyrene,LB
+37131,0.8130986,Acenaphthene,LB
+37127,6.153144,Acrolein,LB
+37127,0.003792004,"Benzo[g,h,i,]Perylene",LB
+37127,0.398456,Acenaphthylene,LB
+37127,0.002619796,"Dibenzo[a,h]Anthracene",LB
+37127,0.204182,Benz[a]Anthracene,LB
+37127,0.2249404,PM2.5 Primary (Filt + Cond),TON
+37127,0.439158,Volatile Organic Compounds,TON
+37123,2.441996,Acrolein,LB
+37123,0.04024294,Benzo[k]Fluoranthene,LB
+37123,0.05712714,Benzo[a]Pyrene,LB
+37123,0.03978366,Benz[a]Anthracene,LB
+37123,0.05513143,PM2.5 Primary (Filt + Cond),TON
+37093,0.1612102,Nitrogen Oxides,TON
+37093,0.0006450745,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,28.84318,Toluene,LB
+37093,0.0013311954,Benzo[a]Pyrene,LB
+37093,0.0012097206,Benz[a]Anthracene,LB
+37085,0.7299188,Styrene,LB
+37085,0.5662338,Pyrene,LB
+37085,0.003328782,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.4266348,Fluoranthene,LB
+37085,0.2848726,Acenaphthylene,LB
+37085,1.5739548,"2,2,4-Trimethylpentane",LB
+37085,0.02235862,Manganese,LB
+37085,0.004716292,Arsenic,LB
+37085,1.344137,Carbon Monoxide,TON
+37085,0.05592296,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.02331689,Ammonia,TON
+37085,2.469198,Nitrogen Oxides,TON
+37085,0.02935451,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.0004036808,Fluorene,LB
+37073,2.563113e-07,Nitrate portion of PM2.5-PRI,TON
+37073,0.0003775386,PM10 Primary (Filt + Cond),TON
+37073,0.00330059,Propionaldehyde,LB
+37073,0.0009074284,Acenaphthylene,LB
+37085,0.03221764,"1,3-Butadiene",LB
+37085,0.2050308,Hexane,LB
+37085,6.847802e-05,Chrysene,LB
+37085,0.07818322,Formaldehyde,LB
+37085,9.642346e-05,Benzo[a]Pyrene,LB
+37085,4.869485e-05,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.04559998,Sulfur Dioxide,TON
+37199,5.642198,Styrene,LB
+37199,1.0881232,Acenaphthylene,LB
+37199,0.01508588,Nickel,LB
+37195,0.02650458,"Benzo[g,h,i,]Perylene",LB
+37195,0.00995802,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.013184448,Fluoranthene,LB
+37195,0.03819654,Acenaphthylene,LB
+37195,9.073218,Benzene,LB
+37195,0.000349047,Sulfate Portion of PM2.5-PRI,TON
+37195,0.5389324,Acrolein,LB
+37195,0.019529792,Anthracene,LB
+37195,0.0011234918,Nickel,LB
+37195,0.01284946,Methane,TON
+37195,0.01313546,Ammonia,TON
+37191,87.1498,Propionaldehyde,LB
+37191,0.012357756,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,7.276056,Fluoranthene,LB
+37191,0.5789334,Chrysene,LB
+37191,5.408416,Acenaphthene,LB
+37191,178.25524,Naphthalene,LB
+37191,0.9089297,Elemental Carbon portion of PM2.5-PRI,TON
+37191,1.349415,PM2.5 Primary (Filt + Cond),TON
+37181,10.370628,"1,3-Butadiene",LB
+37181,0.00836308,"Dibenzo[a,h]Anthracene",LB
+37181,0.1432365,Manganese,LB
+37181,0.1509853,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.556978,Styrene,LB
+37173,0.458298,Acrolein,LB
+37173,0.009526898,Benzo[k]Fluoranthene,LB
+37113,25.74036,Fluorene,LB
+37113,5.515752,Nitrous Oxide,TON
+37113,1785.3408,"1,3-Butadiene",LB
+37113,39810.22,Toluene,LB
+37101,73.53418,Propionaldehyde,LB
+37101,2.752672,Benz[a]Anthracene,LB
+37101,72713.92,Carbon Dioxide,TON
+37101,6.908005,PM10-Primary from certain diesel engines,TON
+37105,0.933622,Propionaldehyde,LB
+37105,0.2771,Phenanthrene,LB
+37105,0.10259024,Fluorene,LB
+37105,0.0139838,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,2.863143e-06,Sulfate Portion of PM2.5-PRI,TON
+37097,0.9090492,Manganese,LB
+37097,66.09706,Nitrogen Oxides,TON
+37093,2.469992,Pyrene,LB
+37093,0.05749874,Benzo[b]Fluoranthene,LB
+37093,0.09305852,Manganese,LB
+37093,92.913,Acetaldehyde,LB
+37093,0.0443591,Ammonia,TON
+37093,1.007369,PM2.5 Primary (Filt + Cond),TON
+37093,0.1606212,Acenaphthene,LB
+37087,0.03746334,Anthracene,LB
+37087,0.10314674,Pyrene,LB
+37087,1.0082734,Benzene,LB
+37087,0.00409833,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,242.499,Acetaldehyde,LB
+37085,15.62134,Carbon Monoxide,TON
+37085,2.670039,PM10-Primary from certain diesel engines,TON
+37085,2.570416,PM2.5 Primary (Filt + Cond),TON
+37085,18.487498,Ethyl Benzene,LB
+37085,0.00014654672,Chromium (VI),LB
+37085,13.782252,"2,2,4-Trimethylpentane",LB
+37081,0.09886346,Benzo[b]Fluoranthene,LB
+37081,0.013659568,Benzo[k]Fluoranthene,LB
+37081,0.01360081,"Dibenzo[a,h]Anthracene",LB
+37081,98.94468,Naphthalene,LB
+37081,0.02775963,Nitrous Oxide,TON
+37081,0.1851071,Ammonia,TON
+37081,0.006030052,Nitrate portion of PM2.5-PRI,TON
+37081,0.1050051,Sulfur Dioxide,TON
+37081,0.09087773,Sulfate Portion of PM2.5-PRI,TON
+37077,0.0005234944,Nickel,LB
+37077,15.03423,Benzene,LB
+37067,0.010585104,Benzo[k]Fluoranthene,LB
+37067,3.633064,Acenaphthylene,LB
+37067,0.5535992,Chrysene,LB
+37067,0.010541858,"Dibenzo[a,h]Anthracene",LB
+37067,0.2968962,Manganese,LB
+37067,0.00013765048,Mercury,LB
+37067,0.133643,Ammonia,TON
+37067,48.10643,Nitrogen Oxides,TON
+37065,0.339512,Acenaphthene,LB
+37065,1.2915312,Phenanthrene,LB
+37065,956.2652,Benzene,LB
+37065,326.6066,Acetaldehyde,LB
+37065,5.250204,Phenanthrene,LB
+37065,229.544,Carbon Monoxide,TON
+37065,14689.59,Carbon Dioxide,TON
+37065,0.09060975,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.214255,Organic Carbon portion of PM2.5-PRI,TON
+37065,576.8244,Ethyl Benzene,LB
+37065,0.9760252,"Benzo[g,h,i,]Perylene",LB
+37065,4.402272,Acenaphthylene,LB
+37061,0.0003351832,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.4443818,Benzene,LB
+37061,0.0002812005,Methane,TON
+37061,8.816165e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,22.43832,Fluoranthene,LB
+37057,120.3278,"2,2,4-Trimethylpentane",LB
+37057,554.3254,Naphthalene,LB
+37057,0.9278184,Ammonia,TON
+37057,0.007699537,Nitrate portion of PM2.5-PRI,TON
+37057,0.5830713,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.2397067,Sulfur Dioxide,TON
+37057,75.41466,Styrene,LB
+37057,124.59558,Hexane,LB
+37057,275.538,Propionaldehyde,LB
+37055,0.9731044,"Benzo[g,h,i,]Perylene",LB
+37055,0.3656074,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.2887764,Benzo[b]Fluoranthene,LB
+37055,0.009446466,Mercury,LB
+37055,0.1806116,Arsenic,LB
+37055,270.8037,Carbon Monoxide,TON
+37039,0.001463555,Methane,TON
+37039,0.01001851,PM10-Primary from certain diesel engines,TON
+37039,7.8215e-05,Nitrous Oxide,TON
+37039,0.01248257,PM10 Primary (Filt + Cond),TON
+37039,0.013760054,Anthracene,LB
+37039,0.03907838,Pyrene,LB
+37039,3.866216,Formaldehyde,LB
+37039,0.002827296,Benzo[a]Pyrene,LB
+37039,0.0008468224,Manganese,LB
+37039,7.737068e-07,Mercury,LB
+37039,0.000510736,Nickel,LB
+37039,1.6794916,Acetaldehyde,LB
+37041,4.58483,Toluene,LB
+37041,0.000215652,"Dibenzo[a,h]Anthracene",LB
+37041,0.06162333,PM25-Primary from certain diesel engines,TON
+37041,0.0001136399,Nitrate portion of PM2.5-PRI,TON
+37167,0.13853292,Styrene,LB
+37167,4.80109e-05,"Dibenzo[a,h]Anthracene",LB
+37167,0.0006143344,Arsenic,LB
+37167,1.9741908,Acetaldehyde,LB
+37167,2.770938,Carbon Monoxide,TON
+37167,108.9081,Carbon Dioxide,TON
+37165,0.02554978,Fluoranthene,LB
+37165,8.177882,Formaldehyde,LB
+37165,1.422033e-05,"Dibenzo[a,h]Anthracene",LB
+37165,3.299152,Acetaldehyde,LB
+37165,0.03518334,Fluorene,LB
+37165,0.07121999,Nitrogen Oxides,TON
+37165,0.0007379359,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.006844829,PM10 Primary (Filt + Cond),TON
+37165,0.707225,Toluene,LB
+37165,0.016208746,Anthracene,LB
+37165,0.03088588,Pyrene,LB
+37165,0.7850004,Xylenes (Mixed Isomers),LB
+37163,0.0003179206,Fluoranthene,LB
+37163,1.3273032e-06,Nickel,LB
+37163,0.002275874,Ammonia,TON
+37163,0.01167029,PM10 Primary (Filt + Cond),TON
+37163,0.005750897,PM2.5 Primary (Filt + Cond),TON
+37161,12.809268,Ethyl Benzene,LB
+37151,2.947772,Acenaphthene,LB
+37151,0.8038149,Methane,TON
+37151,44.62229,Nitrogen Oxides,TON
+37151,2.459195,PM2.5 Primary (Filt + Cond),TON
+37151,3.171976,Anthracene,LB
+37137,1.2064316,"1,3-Butadiene",LB
+37137,38.18948,Toluene,LB
+37137,8.917472,Hexane,LB
+37137,4.011734e-07,Chromium (VI),LB
+37137,7.2302e-05,"Dibenzo[a,h]Anthracene",LB
+37137,2.909426,Acetaldehyde,LB
+37137,0.00904217,Acenaphthene,LB
+37137,0.04907232,Phenanthrene,LB
+37137,16.0789,Carbon Dioxide,TON
+37137,0.0009618214,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.6176758,Pyrene,LB
+37133,0.001970111,Benzo[k]Fluoranthene,LB
+37133,0.310206,Acenaphthylene,LB
+37133,0.00957547,Nickel,LB
+37133,28.2324,Acetaldehyde,LB
+37133,0.02926582,Ammonia,TON
+37133,0.01026781,Sulfate Portion of PM2.5-PRI,TON
+37133,5.942904e-05,Mercury,LB
+37133,2.191206,Fluorene,LB
+37133,0.1495655,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,9.807206,"1,3-Butadiene",LB
+37131,1517.7288,"2,2,4-Trimethylpentane",LB
+37115,0.02164706,Ethyl Benzene,LB
+37115,0.14675228,Acrolein,LB
+37115,3.758314e-05,Benz[a]Anthracene,LB
+37115,0.000995473,Manganese,LB
+37115,9.1755e-07,Nickel,LB
+37115,58.7269,Carbon Dioxide,TON
+37115,0.0003697418,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.2681177,Nitrogen Oxides,TON
+37115,0.001422323,Organic Carbon portion of PM2.5-PRI,TON
+37115,4.055935e-05,Sulfate Portion of PM2.5-PRI,TON
+37115,1.8999814,Acrolein,LB
+37115,0.08796226,Anthracene,LB
+37115,5.586022e-06,Chromium (VI),LB
+37115,0.0012348354,"Benzo[g,h,i,]Perylene",LB
+37115,24.76066,Formaldehyde,LB
+37115,0.01282735,Methane,TON
+37115,0.06412788,PM25-Primary from certain diesel engines,TON
+37115,1.018546,Nitrogen Oxides,TON
+37115,0.02968034,Anthracene,LB
+37115,0.05834146,Pyrene,LB
+37115,0.051939,"Benzo[g,h,i,]Perylene",LB
+37115,0.01231807,Benz[a]Anthracene,LB
+37115,0.03438378,Acenaphthene,LB
+37103,0.05861988,Pyrene,LB
+37103,0.0002590994,"Benzo[g,h,i,]Perylene",LB
+37103,0.04448302,Fluoranthene,LB
+37103,0.03222662,Acenaphthylene,LB
+37103,0.1550493,"2,2,4-Trimethylpentane",LB
+37103,0.5639166,Benzene,LB
+37103,0.002714228,Manganese,LB
+37103,2.17205e-06,Mercury,LB
+37103,0.019171254,Acenaphthene,LB
+37103,164.8752,Carbon Dioxide,TON
+37099,319.3666,"2,2,4-Trimethylpentane",LB
+37099,280.0178,Benzene,LB
+37099,0.017727646,Manganese,LB
+37099,0.01287274,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.0002556946,Nitrate portion of PM2.5-PRI,TON
+37095,0.03460286,Acrolein,LB
+37095,0.00016083836,Phenanthrene,LB
+37095,14.05458,Carbon Dioxide,TON
+37095,0.0625149,Nitrogen Oxides,TON
+37077,8.328652,Toluene,LB
+37077,0.003810926,"Dibenzo[a,h]Anthracene",LB
+37077,4.001896,Carbon Monoxide,TON
+37077,0.1316403,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.1309311,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.3269582,PM2.5 Primary (Filt + Cond),TON
+37075,0.06205439,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.002941188,"Benzo[g,h,i,]Perylene",LB
+37075,0.3864706,Acenaphthylene,LB
+37075,7.10229,Benzene,LB
+37075,0.2063068,Benzo[k]Fluoranthene,LB
+37075,0.2965312,Benzo[a]Pyrene,LB
+37075,0.2029612,Benz[a]Anthracene,LB
+37075,0.6385206,Acenaphthene,LB
+37075,0.1650577,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.7475525,PM10 Primary (Filt + Cond),TON
+37065,6.322936,"1,3-Butadiene",LB
+37065,14.112978,Xylenes (Mixed Isomers),LB
+37065,5.139726e-05,Chromium (VI),LB
+37065,0.08275442,Chrysene,LB
+37065,0.0011418196,"Dibenzo[a,h]Anthracene",LB
+37065,4.95244e-05,Mercury,LB
+37065,1.141557,Volatile Organic Compounds,TON
+37065,2.283575e-08,Nitrate portion of PM2.5-PRI,TON
+37065,7.961396e-06,PM2.5 Primary (Filt + Cond),TON
+37061,1.3454068,Propionaldehyde,LB
+37061,3.18798e-05,Chromium (VI),LB
+37061,0.3119796,Acenaphthylene,LB
+37061,0.003985064,Nickel,LB
+37061,3.110273,Nitrogen Oxides,TON
+37061,0.04958441,PM2.5 Primary (Filt + Cond),TON
+37061,0.01454577,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.001385759,Sulfate Portion of PM2.5-PRI,TON
+37053,9.900722,Styrene,LB
+37053,0.2797387,Methane,TON
+37053,0.03615335,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.4216289,Ammonia,TON
+37051,5.117784,Ethyl Benzene,LB
+37051,4.267724,"1,3-Butadiene",LB
+37051,1.4373838,Pyrene,LB
+37051,13.724888,Xylenes (Mixed Isomers),LB
+37051,5.06192e-05,Chromium (VI),LB
+37051,0.0332994,Benzo[b]Fluoranthene,LB
+37051,1.0832986,Fluoranthene,LB
+37051,0.2113988,Chrysene,LB
+37051,0.4291432,Acenaphthene,LB
+37051,1.7894374,Phenanthrene,LB
+37051,0.1208222,Methane,TON
+37051,0.3693154,PM25-Primary from certain diesel engines,TON
+37051,0.02450878,Sulfate Portion of PM2.5-PRI,TON
+37049,1.4352468e-05,Benzo[k]Fluoranthene,LB
+37049,0.008331656,Carbon Monoxide,TON
+37049,7.209546e-05,PM10 Primary (Filt + Cond),TON
+37049,6.602784e-05,"Benzo[g,h,i,]Perylene",LB
+37049,7.690548,Acrolein,LB
+37049,0.00016315878,Chromium (VI),LB
+37049,0.03127166,Arsenic,LB
+37049,15.85533,Volatile Organic Compounds,TON
+37173,1984.9106,Acetaldehyde,LB
+37173,63800.46,Carbon Dioxide,TON
+37173,1.339115,Sulfur Dioxide,TON
+37173,9.907442,Pyrene,LB
+37173,5.757994,"Benzo[g,h,i,]Perylene",LB
+37173,2.163384,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,1.6205538,Chrysene,LB
+37169,0.004412978,Benzo[k]Fluoranthene,LB
+37169,0.004042658,Chrysene,LB
+37169,0.0016049876,Manganese,LB
+37169,0.6252626,Naphthalene,LB
+37161,0.0863771,Benzo[b]Fluoranthene,LB
+37161,0.0121148,"Dibenzo[a,h]Anthracene",LB
+37161,0.349525,Manganese,LB
+37161,0.07617,Arsenic,LB
+37161,364.3336,Acetaldehyde,LB
+37161,89.53722,Naphthalene,LB
+37161,0.5051916,Organic Carbon portion of PM2.5-PRI,TON
+37155,33.83916,Hexane,LB
+37155,12.541894,Pyrene,LB
+37155,105.02992,Xylenes (Mixed Isomers),LB
+37155,0.4408062,Manganese,LB
+37155,0.5124707,Ammonia,TON
+37155,0.01601325,Nitrate portion of PM2.5-PRI,TON
+37163,65.46354,Xylenes (Mixed Isomers),LB
+37163,0.014401956,Benzo[a]Pyrene,LB
+37163,0.01350601,Manganese,LB
+37163,21.2761,Carbon Monoxide,TON
+37163,0.003000235,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.01903241,Nitrous Oxide,TON
+37163,5.130787e-05,Nitrate portion of PM2.5-PRI,TON
+37161,0.02560172,"Benzo[g,h,i,]Perylene",LB
+37161,0.05069486,Benzo[b]Fluoranthene,LB
+37161,0.06196764,Arsenic,LB
+37161,27.1746,Styrene,LB
+37161,44.41628,Hexane,LB
+37161,6.203778,Acenaphthene,LB
+37161,9142.538,Carbon Dioxide,TON
+37161,1.423291,PM25-Primary from certain diesel engines,TON
+37155,758.3506,Ethyl Benzene,LB
+37155,12.746938,Acrolein,LB
+37155,0.7980268,"Benzo[g,h,i,]Perylene",LB
+37155,0.2998312,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.211172,Benzo[k]Fluoranthene,LB
+37155,0.208729,Benz[a]Anthracene,LB
+37155,0.002778912,Mercury,LB
+37153,3.583526,Ethyl Benzene,LB
+37153,3.606764,"1,3-Butadiene",LB
+37153,8.628606,Acrolein,LB
+37153,5.883474,Propionaldehyde,LB
+37153,0.005243302,"Benzo[g,h,i,]Perylene",LB
+37153,0.08650046,Benzo[a]Pyrene,LB
+37153,0.0238443,Manganese,LB
+37153,0.003195936,Arsenic,LB
+37153,1.3717566,Phenanthrene,LB
+37153,0.2909714,PM25-Primary from certain diesel engines,TON
+37153,4.874449,Nitrogen Oxides,TON
+37153,0.3001517,PM2.5 Primary (Filt + Cond),TON
+37153,0.006100547,Sulfur Dioxide,TON
+37151,14.535068,Ethyl Benzene,LB
+37151,0.014506466,Benzo[b]Fluoranthene,LB
+37151,1.9151026,Fluoranthene,LB
+37151,0.0215289,Arsenic,LB
+37135,26.57448,Styrene,LB
+37135,107.90798,Hexane,LB
+37135,1.8500718,Chrysene,LB
+37135,0.2980492,Nickel,LB
+37135,6.694832,Acenaphthene,LB
+37135,6.810572,Methane,TON
+37135,70.38142,Carbon Monoxide,TON
+37135,1.642046,Organic Carbon portion of PM2.5-PRI,TON
+37131,7.36521,Ethyl Benzene,LB
+37131,32.25674,Toluene,LB
+37117,1.1352564,Styrene,LB
+37117,0.2857642,Anthracene,LB
+37117,1.5098294e-05,Chromium (VI),LB
+37117,0.00246468,Benzo[k]Fluoranthene,LB
+37117,7.338512,Benzene,LB
+37117,0.2599812,Acenaphthene,LB
+37019,4.800174,Hexane,LB
+37019,0.6649556,Fluoranthene,LB
+37019,0.01874401,Arsenic,LB
+37019,79.28462,Acetaldehyde,LB
+37019,0.01372715,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.003652091,Methane,TON
+37003,0.0009783997,Sulfur Dioxide,TON
+37003,0.6095334,"1,3-Butadiene",LB
+37003,0.09167262,Propionaldehyde,LB
+37003,0.003351314,"Benzo[g,h,i,]Perylene",LB
+37003,0.02112284,Acenaphthylene,LB
+37001,0.0981344,Arsenic,LB
+37001,106.49746,Naphthalene,LB
+37001,3.973626,PM25-Primary from certain diesel engines,TON
+37001,0.5584634,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,129.3563,Carbon Dioxide,TON
+37015,6.797002e-05,Sulfate Portion of PM2.5-PRI,TON
+37015,1.84318,Toluene,LB
+37015,0.001385,Pyrene,LB
+37015,0.0012241584,Fluoranthene,LB
+37015,3.635278e-05,"Dibenzo[a,h]Anthracene",LB
+37003,0.02656762,Phenanthrene,LB
+37003,0.02930229,Methane,TON
+37003,3.909029,Carbon Monoxide,TON
+37003,333.419,Carbon Dioxide,TON
+37003,0.13840352,Styrene,LB
+37003,0.0001304613,"Dibenzo[a,h]Anthracene",LB
+37005,0.18165648,Ethyl Benzene,LB
+37005,1.449358,Toluene,LB
+37005,0.6158002,Xylenes (Mixed Isomers),LB
+37143,0.00908403,Acrolein,LB
+37143,0.02097028,Propionaldehyde,LB
+37143,0.00017467142,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.00014845534,Fluoranthene,LB
+37143,0.09419324,"2,2,4-Trimethylpentane",LB
+37143,1.0403074,Acetaldehyde,LB
+37143,0.0004937034,Phenanthrene,LB
+37143,0.1116496,Carbon Monoxide,TON
+37143,0.009658583,Nitrogen Oxides,TON
+37125,0.07153929,Methane,TON
+37125,0.0613855,Ammonia,TON
+37125,1.010489,Nitrogen Oxides,TON
+37125,0.01105664,Organic Carbon portion of PM2.5-PRI,TON
+37125,5.280732,Ethyl Benzene,LB
+37125,1.1283042,"1,3-Butadiene",LB
+37125,0.017363308,Pyrene,LB
+37125,18.984076,Xylenes (Mixed Isomers),LB
+37125,25.45364,Benzene,LB
+37109,0.0006350788,Arsenic,LB
+37109,0.003116533,Methane,TON
+37109,0.0005026763,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.0473204,"1,3-Butadiene",LB
+37109,0.3522004,Hexane,LB
+37109,0.0007176574,Pyrene,LB
+37109,3.313594e-06,Chromium (VI),LB
+37109,0.0004144052,Benzo[b]Fluoranthene,LB
+37109,0.0006340512,Fluoranthene,LB
+37109,0.0004144052,Benzo[k]Fluoranthene,LB
+37109,1.808723e-05,"Dibenzo[a,h]Anthracene",LB
+37109,0.000358985,Benz[a]Anthracene,LB
+37109,0.0009407586,Manganese,LB
+37099,0.001373623,Arsenic,LB
+37099,0.0005303698,Acenaphthene,LB
+37099,98.27983,Carbon Dioxide,TON
+37099,0.0008619919,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.0008209263,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.13264714,Manganese,LB
+37013,10.26261,Carbon Monoxide,TON
+37013,1.38034,PM10-Primary from certain diesel engines,TON
+37013,1.335932,PM2.5 Primary (Filt + Cond),TON
+37013,10.455446,Ethyl Benzene,LB
+37013,8.03182,Hexane,LB
+37013,15.414926,Propionaldehyde,LB
+37013,0.007706806,"Dibenzo[a,h]Anthracene",LB
+37007,0.2152544,"1,3-Butadiene",LB
+37007,0.7318015,Carbon Monoxide,TON
+37009,0.0019585224,"Dibenzo[a,h]Anthracene",LB
+37009,9.182708e-06,Mercury,LB
+37009,9.354844,Naphthalene,LB
+37009,407.9628,Carbon Dioxide,TON
+37009,0.0008980311,Nitrate portion of PM2.5-PRI,TON
+37009,0.003567768,Sulfur Dioxide,TON
+37003,1.1818232,Hexane,LB
+37003,0.03719624,Chrysene,LB
+37003,0.005563094,Nickel,LB
+37003,0.1565648,Acenaphthene,LB
+37003,0.0003229869,Nitrate portion of PM2.5-PRI,TON
+37001,3.55164e-06,Chromium (VI),LB
+37001,7.195978,Acetaldehyde,LB
+37001,0.01832555,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.7840664,Nitrogen Oxides,TON
+37001,0.01870346,Organic Carbon portion of PM2.5-PRI,TON
+37057,53.49434,Benzene,LB
+37057,0.1592017,Methane,TON
+37057,24.80092,Carbon Monoxide,TON
+37057,0.1336749,Ammonia,TON
+37057,0.001487316,Sulfate Portion of PM2.5-PRI,TON
+37057,2.303662,"1,3-Butadiene",LB
+37057,17.044986,Hexane,LB
+37057,0.00013386774,Chromium (VI),LB
+37057,0.02227134,Benzo[k]Fluoranthene,LB
+37057,41.70946,Formaldehyde,LB
+37041,0.250531,Ethyl Benzene,LB
+37041,1.5241572e-05,"Dibenzo[a,h]Anthracene",LB
+37041,47.09482,Carbon Dioxide,TON
+37041,0.03127594,Nitrogen Oxides,TON
+37041,2.436411e-05,Sulfate Portion of PM2.5-PRI,TON
+37007,0.0005793142,Anthracene,LB
+37007,0.0010789832,Fluoranthene,LB
+37007,1.0326646,Formaldehyde,LB
+37007,0.0013658954,Benzo[a]Pyrene,LB
+37007,1.0075,Carbon Monoxide,TON
+37007,0.00036398,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.00904746,PM10 Primary (Filt + Cond),TON
+37007,0.04922983,Volatile Organic Compounds,TON
+37003,2.029168,"1,3-Butadiene",LB
+37003,0.002914124,Sulfur Dioxide,TON
+37003,0.3651931,Volatile Organic Compounds,TON
+37007,1986.9704,Ethyl Benzene,LB
+37007,2978.206,Hexane,LB
+37007,4.171742,Fluoranthene,LB
+37007,839.5248,Formaldehyde,LB
+37007,2961.834,Benzene,LB
+37007,0.03911722,Mercury,LB
+37007,1.229648,Nitrous Oxide,TON
+37007,5.02321,PM10 Primary (Filt + Cond),TON
+37007,161.3752,Toluene,LB
+37007,0.18250058,Acenaphthylene,LB
+37007,12.954034,Acetaldehyde,LB
+37007,0.003502846,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.03068846,Nitrous Oxide,TON
+37007,0.007498322,Organic Carbon portion of PM2.5-PRI,TON
+37019,6.12386,Ethyl Benzene,LB
+37019,2.713536,Styrene,LB
+37019,14.700406,Acrolein,LB
+37013,2.25478e-05,Mercury,LB
+37013,0.0002811396,Nickel,LB
+37013,5.749024,Hexane,LB
+37013,0.006357726,Anthracene,LB
+37005,11.31082,Xylenes (Mixed Isomers),LB
+37005,0.0016888074,Benzo[a]Pyrene,LB
+37005,0.0013161584,Benz[a]Anthracene,LB
+37005,1.619673,Carbon Monoxide,TON
+37005,2.297933e-05,Sulfate Portion of PM2.5-PRI,TON
+37199,9.68824e-05,Arsenic,LB
+37199,0.017065988,Fluorene,LB
+37199,0.006033961,PM10-Primary from certain diesel engines,TON
+37199,0.002173502,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.00010495972,"Benzo[g,h,i,]Perylene",LB
+37191,0.0007149202,Chrysene,LB
+37191,0.516918,Toluene,LB
+37191,0.003159368,Fluorene,LB
+37191,0.001016972,Sulfur Dioxide,TON
+37189,20.55628,Hexane,LB
+37189,0.04293206,Pyrene,LB
+37189,60.38008,Xylenes (Mixed Isomers),LB
+37189,0.11637946,Acenaphthylene,LB
+37189,0.0002781926,"Dibenzo[a,h]Anthracene",LB
+37189,0.02553102,Acenaphthene,LB
+37189,0.04376558,Methane,TON
+37189,0.003748641,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.0481869,Acrolein,LB
+37137,0.004111198,Pyrene,LB
+37137,0.0005931804,Benzo[b]Fluoranthene,LB
+37137,0.0006183784,Benz[a]Anthracene,LB
+37137,0.08490652,Nitrogen Oxides,TON
+37137,0.0003975975,Organic Carbon portion of PM2.5-PRI,TON
+37127,8845.394,Benzene,LB
+37127,45.47274,Phenanthrene,LB
+37127,4.839753,Sulfur Dioxide,TON
+37127,0.1322708,"Dibenzo[a,h]Anthracene",LB
+37111,0.7552606,Ethyl Benzene,LB
+37111,0.5744742,Hexane,LB
+37111,1.6387282,Xylenes (Mixed Isomers),LB
+37111,0.0009244378,"Benzo[g,h,i,]Perylene",LB
+37111,0.1620059,Fluoranthene,LB
+37111,0.04970956,Benz[a]Anthracene,LB
+37111,0.009829528,Manganese,LB
+37111,9.823544,Acetaldehyde,LB
+37111,0.07204936,Acenaphthene,LB
+37111,0.2672256,Phenanthrene,LB
+37111,0.7290607,Carbon Monoxide,TON
+37111,0.01073887,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.1289442,Volatile Organic Compounds,TON
+37111,11.625704,"1,3-Butadiene",LB
+37111,18.890388,Propionaldehyde,LB
+37111,0.08157468,Benzo[b]Fluoranthene,LB
+37111,6.943494e-05,Mercury,LB
+37119,84.38606,Ethyl Benzene,LB
+37119,3.712074,Acrolein,LB
+37119,127.9423,Hexane,LB
+37119,9.25991,Naphthalene,LB
+37119,3270.515,Carbon Dioxide,TON
+37119,0.06394042,Nitrous Oxide,TON
+37119,0.6351275,PM10 Primary (Filt + Cond),TON
+37113,1.036914,PM25-Primary from certain diesel engines,TON
+37113,0.6604604,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.014430976,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.07891424,Manganese,LB
+37109,173.02494,Toluene,LB
+37109,69.3646,Hexane,LB
+37109,0.0006420028,Chromium (VI),LB
+37109,12.709018,Fluoranthene,LB
+37109,0.2424306,Benzo[a]Pyrene,LB
+37109,0.3857858,Nickel,LB
+37109,0.10429352,Arsenic,LB
+37109,2.244534,PM25-Primary from certain diesel engines,TON
+37109,53.64361,Nitrogen Oxides,TON
+37109,0.06478883,Sulfate Portion of PM2.5-PRI,TON
+37107,13.2393,Ethyl Benzene,LB
+37107,0.014597442,"Benzo[g,h,i,]Perylene",LB
+37107,0.017857666,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.009777132,Benzo[k]Fluoranthene,LB
+37107,0.7818096,Benz[a]Anthracene,LB
+37107,2.429344,Fluorene,LB
+37107,0.3076546,Methane,TON
+37107,1.555794,PM25-Primary from certain diesel engines,TON
+37107,40.21077,Nitrogen Oxides,TON
+37103,5.917552,Acetaldehyde,LB
+37103,0.01551158,Ammonia,TON
+37103,0.929179,Nitrogen Oxides,TON
+37103,0.005723728,Organic Carbon portion of PM2.5-PRI,TON
+37103,2.279244,"1,3-Butadiene",LB
+37103,0.015882098,Anthracene,LB
+37103,0.0840001,Acenaphthylene,LB
+37103,0.006143352,Chrysene,LB
+37103,0.010073516,Benzo[a]Pyrene,LB
+37103,1.5062814,Acrolein,LB
+37103,3.281856e-05,Chromium (VI),LB
+37103,0.0239181,Benzo[b]Fluoranthene,LB
+37103,0.3632632,Acenaphthylene,LB
+37103,4.140528,Naphthalene,LB
+37103,0.03648215,Methane,TON
+37103,0.004766387,Elemental Carbon portion of PM2.5-PRI,TON
+37099,9059.638,Toluene,LB
+37099,4059.05,Xylenes (Mixed Isomers),LB
+37099,239.4522,Benzene,LB
+37095,12.35262,Toluene,LB
+37095,0.00850962,Arsenic,LB
+37095,0.0002836118,Nitrate portion of PM2.5-PRI,TON
+37095,0.2089918,PM10 Primary (Filt + Cond),TON
+37083,2.064856,Anthracene,LB
+37083,5.539552,Pyrene,LB
+37083,0.0003025324,Chromium (VI),LB
+37083,0.02326056,"Benzo[g,h,i,]Perylene",LB
+37083,0.015063334,Benzo[k]Fluoranthene,LB
+37083,3.371584,Acenaphthylene,LB
+37083,61.46658,Benzene,LB
+37083,4.194972,Fluorene,LB
+37083,20.548,Carbon Monoxide,TON
+37083,25248.63,Carbon Dioxide,TON
+37083,0.3602798,Ammonia,TON
+37083,3.135881,PM2.5 Primary (Filt + Cond),TON
+37083,48.69742,Toluene,LB
+37083,0.02939268,"Benzo[g,h,i,]Perylene",LB
+37083,4.98954,Fluoranthene,LB
+37083,62.73946,Benzene,LB
+37083,0.19639482,Manganese,LB
+37083,9700.788,Carbon Dioxide,TON
+37083,0.2970883,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.08317784,Sulfur Dioxide,TON
+37087,423.0104,Toluene,LB
+37087,0.12484466,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,2328.097,Carbon Dioxide,TON
+37087,0.02240693,Elemental Carbon portion of PM2.5-PRI,TON
+37083,460.7214,Ethyl Benzene,LB
+37083,0.3200322,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,542.6992,"2,2,4-Trimethylpentane",LB
+37083,0.233799,Benz[a]Anthracene,LB
+37083,788.9838,Benzene,LB
+37083,268.9504,Acetaldehyde,LB
+37083,203.5998,Carbon Monoxide,TON
+37083,0.178844,Organic Carbon portion of PM2.5-PRI,TON
+37071,73.48332,Propionaldehyde,LB
+37071,0.3565028,Benzo[b]Fluoranthene,LB
+37071,6779.172,Hexane,LB
+37069,2.797896,Ethyl Benzene,LB
+37069,0.09921288,Styrene,LB
+37069,0.0856618,Acrolein,LB
+37069,4.609272,Benzene,LB
+37069,0.004634245,Ammonia,TON
+37069,0.2261881,Nitrogen Oxides,TON
+37069,0.002475459,PM2.5 Primary (Filt + Cond),TON
+37069,6.752419e-05,Sulfate Portion of PM2.5-PRI,TON
+37069,0.08411067,Volatile Organic Compounds,TON
+37055,2.193812,Xylenes (Mixed Isomers),LB
+37055,0.08418928,Acenaphthene,LB
+37055,334.2978,Carbon Dioxide,TON
+37055,0.03259162,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.0758693,PM2.5 Primary (Filt + Cond),TON
+37051,0.05980722,Volatile Organic Compounds,TON
+37051,1.9641028,Ethyl Benzene,LB
+37051,0.003192356,Benzo[k]Fluoranthene,LB
+37051,0.00013298116,"Dibenzo[a,h]Anthracene",LB
+37051,7.163114e-05,Mercury,LB
+37051,0.0008931378,Nickel,LB
+37051,0.00836542,Fluorene,LB
+37051,0.0126794,Ammonia,TON
+37039,5.197922,Toluene,LB
+37039,77.57632,Formaldehyde,LB
+37039,1.9326442,"2,2,4-Trimethylpentane",LB
+37039,7.323774,Benzene,LB
+37039,1.0914672e-05,Mercury,LB
+37039,0.002282142,Arsenic,LB
+37039,0.1928193,PM25-Primary from certain diesel engines,TON
+37039,0.009776817,Ammonia,TON
+37039,0.1982567,PM2.5 Primary (Filt + Cond),TON
+37041,0.03855005,PM10-Primary from certain diesel engines,TON
+37041,0.0005258402,Nitrous Oxide,TON
+37041,0.004109045,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,1.4065278,Acrolein,LB
+37041,1.1707064,Toluene,LB
+37041,0.013090164,Chrysene,LB
+37041,0.00239019,Nickel,LB
+37041,0.11070656,Fluorene,LB
+37037,0.10749958,Propionaldehyde,LB
+37037,13.298642,Xylenes (Mixed Isomers),LB
+37037,0.013174388,"Benzo[g,h,i,]Perylene",LB
+37037,0.01593447,PM10 Primary (Filt + Cond),TON
+37037,237.954,Acetaldehyde,LB
+37037,0.6838794,Acenaphthene,LB
+37037,1.3852796,Fluorene,LB
+37037,162.7125,Carbon Monoxide,TON
+37037,0.402756,Nitrous Oxide,TON
+37037,0.0884735,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.0079281,Sulfate Portion of PM2.5-PRI,TON
+37037,11.66486,Volatile Organic Compounds,TON
+37037,13.60195,Acrolein,LB
+37037,0.19410388,Benzo[b]Fluoranthene,LB
+37037,0.2624662,Benzo[a]Pyrene,LB
+37037,0.07599686,Nickel,LB
+37031,8.14145,Hexane,LB
+37031,0.00899212,Anthracene,LB
+37031,0.16630266,Propionaldehyde,LB
+37031,3.842208e-06,Chromium (VI),LB
+37031,0.002594668,Benzo[b]Fluoranthene,LB
+37029,0.3295862,Benzene,LB
+37029,0.0018683758,Manganese,LB
+37029,0.010832466,Acenaphthene,LB
+37029,0.0001294768,Nitrous Oxide,TON
+37029,0.3592884,Nitrogen Oxides,TON
+37029,0.00372108,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.04682444,Styrene,LB
+37029,0.1072277,"1,3-Butadiene",LB
+37029,0.2821776,Xylenes (Mixed Isomers),LB
+37029,0.0007408622,Benzo[b]Fluoranthene,LB
+37029,84.97074,Hexane,LB
+37029,0.03791392,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.1624433,Fluoranthene,LB
+37029,0.0295087,Chrysene,LB
+37029,0.017022442,Arsenic,LB
+37029,0.11171022,Acenaphthene,LB
+37029,0.07508902,Methane,TON
+37029,0.009637097,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.3801514,Arsenic,LB
+37025,0.1962096,Elemental Carbon portion of PM2.5-PRI,TON
+37025,8.622972,Acenaphthylene,LB
+37023,4.643244,Toluene,LB
+37023,3.068494,Propionaldehyde,LB
+37023,5.6501,Benzene,LB
+37023,0.758557,Phenanthrene,LB
+37023,0.002018728,Nitrous Oxide,TON
+37023,2.699806,Nitrogen Oxides,TON
+37023,0.3390454,Volatile Organic Compounds,TON
+37169,0.006382926,PM10 Primary (Filt + Cond),TON
+37169,0.7506992,Hexane,LB
+37169,5.26256e-06,Chromium (VI),LB
+37169,0.00359931,Phenanthrene,LB
+37169,0.0003249408,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.3018654,Ethyl Benzene,LB
+37107,0.0640479,"1,3-Butadiene",LB
+37107,0.0012757354,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.002157501,PM2.5 Primary (Filt + Cond),TON
+37175,2.38626e-08,Mercury,LB
+37175,3.843289e-05,Methane,TON
+37175,4.098898e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.02988906,Ethyl Benzene,LB
+37175,4.437352e-08,Nitrate portion of PM2.5-PRI,TON
+37171,460.2938,Ethyl Benzene,LB
+37171,0.13283428,Benzo[b]Fluoranthene,LB
+37161,20.04738,Propionaldehyde,LB
+37161,0.014763748,"Benzo[g,h,i,]Perylene",LB
+37161,0.2339652,Benzo[a]Pyrene,LB
+37161,0.1974569,Manganese,LB
+37161,45.49429,Nitrogen Oxides,TON
+37161,0.1127932,Sulfate Portion of PM2.5-PRI,TON
+37159,96.73204,Ethyl Benzene,LB
+37159,3.403256,Styrene,LB
+37159,2.83293,Acrolein,LB
+37159,141.55664,Hexane,LB
+37159,0.0015323914,"Dibenzo[a,h]Anthracene",LB
+37159,0.04582574,Benz[a]Anthracene,LB
+37159,0.7886772,Phenanthrene,LB
+37159,0.2934544,Fluorene,LB
+37159,0.1255286,Methane,TON
+37159,1822.98,Carbon Dioxide,TON
+37159,0.01600501,Elemental Carbon portion of PM2.5-PRI,TON
+37159,4.878577,Nitrogen Oxides,TON
+37161,0.1001208,Sulfate Portion of PM2.5-PRI,TON
+37161,1.9928538,Benzo[k]Fluoranthene,LB
+37161,0.8819862,Nickel,LB
+37161,2047.018,Acetaldehyde,LB
+37155,107825.42,Toluene,LB
+37155,668.3942,Propionaldehyde,LB
+37155,35.69704,"Benzo[g,h,i,]Perylene",LB
+37155,13.411666,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,65.63398,Fluorene,LB
+37155,9.261875,Sulfur Dioxide,TON
+37155,0.4178348,Sulfate Portion of PM2.5-PRI,TON
+37153,0.04895618,Acenaphthylene,LB
+37153,4.707382e-05,Mercury,LB
+37153,0.2360014,Styrene,LB
+37153,0.02175332,Fluorene,LB
+37153,0.003358156,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.01215234,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.012166324,Benzo[a]Pyrene,LB
+37151,0.0002789166,"Dibenzo[a,h]Anthracene",LB
+37151,9.660794,Acetaldehyde,LB
+37151,491.3243,Carbon Dioxide,TON
+37151,0.002591617,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.01617953,Nitrous Oxide,TON
+37151,1.004092,Nitrogen Oxides,TON
+37007,3.296038,Fluorene,LB
+37007,0.009293923,Nitrous Oxide,TON
+37007,0.001023856,Nitrate portion of PM2.5-PRI,TON
+37007,0.02993273,Sulfur Dioxide,TON
+37007,19.013268,"1,3-Butadiene",LB
+37007,1.5931508,Anthracene,LB
+37007,3.1513,Pyrene,LB
+37007,53.69734,Benzene,LB
+37007,0.07141422,Manganese,LB
+37019,21.14704,Xylenes (Mixed Isomers),LB
+37019,0.01094459,Benzo[k]Fluoranthene,LB
+37019,30.72902,Benzene,LB
+37019,0.9306551,PM10-Primary from certain diesel engines,TON
+37019,0.004689602,Nitrate portion of PM2.5-PRI,TON
+37019,0.3749577,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.1630596,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.002548202,"Benzo[g,h,i,]Perylene",LB
+37011,0.010551228,Acenaphthylene,LB
+37011,0.0006895568,Benz[a]Anthracene,LB
+37011,0.000117505,Ammonia,TON
+37011,0.0004558266,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.001328351,PM10 Primary (Filt + Cond),TON
+37011,0.0009460509,PM2.5 Primary (Filt + Cond),TON
+37011,0.04105954,Volatile Organic Compounds,TON
+37009,2.501528,Styrene,LB
+37009,0.6237798,Anthracene,LB
+37009,0.009796476,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.0384771,Benzo[b]Fluoranthene,LB
+37009,1.3449402,Fluoranthene,LB
+37009,3.303974e-05,Mercury,LB
+37009,5.090994,Carbon Monoxide,TON
+37003,0.17855696,Acrolein,LB
+37003,0.003057016,Chrysene,LB
+37003,0.004112324,Benzo[a]Pyrene,LB
+37003,9.416564e-05,"Dibenzo[a,h]Anthracene",LB
+37085,2.24157,Benzene,LB
+37085,0.0013961506,Arsenic,LB
+37085,0.007010656,Methane,TON
+37085,127.9623,Carbon Dioxide,TON
+37085,0.0004688216,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.003887709,Sulfur Dioxide,TON
+37085,7.705687e-05,Sulfate Portion of PM2.5-PRI,TON
+37085,0.0017586988,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.0009207828,Benzo[k]Fluoranthene,LB
+37067,33.05112,Xylenes (Mixed Isomers),LB
+37061,0.0013809816,Anthracene,LB
+37061,0.003874006,Manganese,LB
+37061,0.001471398,Acenaphthene,LB
+37061,0.00475617,PM2.5 Primary (Filt + Cond),TON
+37199,0.008256992,Chrysene,LB
+37199,8.462592e-06,Fluorene,LB
+37199,0.004170104,Benzene,LB
+37199,2.59026e-07,Manganese,LB
+37199,1.5279712e-06,Benzo[k]Fluoranthene,LB
+37199,1.905714e-05,Acenaphthylene,LB
+37199,1.4006254e-06,Chrysene,LB
+37193,0.6471458,Xylenes (Mixed Isomers),LB
+37193,0.0005897374,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.0002744152,Benz[a]Anthracene,LB
+37193,0.0004315382,Arsenic,LB
+37193,0.0017908618,Phenanthrene,LB
+37193,2.11797e-06,Nitrate portion of PM2.5-PRI,TON
+37193,540.7266,Styrene,LB
+37193,1170.9248,Naphthalene,LB
+37193,11.13665,Methane,TON
+37193,574.5245,Nitrogen Oxides,TON
+37193,2.142947,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,3.811358,Sulfur Dioxide,TON
+37185,0.13682638,"2,2,4-Trimethylpentane",LB
+37185,0.16518834,Hexane,LB
+37185,0.0004043416,Pyrene,LB
+37185,0.0006595384,"Benzo[g,h,i,]Perylene",LB
+37185,0.0002477958,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.0012561318,Phenanthrene,LB
+37187,0.0019243556,Arsenic,LB
+37187,0.1145334,Acenaphthene,LB
+37187,0.001259497,Sulfate Portion of PM2.5-PRI,TON
+37187,2.124926e-05,"Dibenzo[a,h]Anthracene",LB
+37187,1.0822882,"2,2,4-Trimethylpentane",LB
+37187,0.001267743,PM2.5 Primary (Filt + Cond),TON
+37187,1.0550688,Ethyl Benzene,LB
+37179,0.005340282,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,3.736144,Formaldehyde,LB
+37179,0.01186927,Manganese,LB
+37179,0.004919226,Fluorene,LB
+37179,448.3384,Carbon Dioxide,TON
+37179,0.007087163,Nitrous Oxide,TON
+37179,0.01362341,Sulfur Dioxide,TON
+37177,1.5574876e-06,Benzo[a]Pyrene,LB
+37177,0.00012822342,Naphthalene,LB
+37177,4.494425e-08,Sulfate Portion of PM2.5-PRI,TON
+37187,1.2303328,Pyrene,LB
+37187,0.00680629,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.17286258,Chrysene,LB
+37187,0.001578634,Nitrate portion of PM2.5-PRI,TON
+37187,0.01318726,Sulfate Portion of PM2.5-PRI,TON
+37183,0.012799182,Anthracene,LB
+37183,0.02392968,Fluoranthene,LB
+37183,0.03261428,Arsenic,LB
+37183,0.140214,Ammonia,TON
+37177,0.02963302,"1,3-Butadiene",LB
+37177,4.846112e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.0001903384,Benzo[b]Fluoranthene,LB
+37177,0.00213173,Benz[a]Anthracene,LB
+37177,0.08616334,Benzene,LB
+37177,0.00019586076,Manganese,LB
+37177,8.989733,Carbon Dioxide,TON
+37177,0.0003708592,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.005300299,Volatile Organic Compounds,TON
+37181,10.453438,Toluene,LB
+37023,9.282238,Acrolein,LB
+37023,0.0018341872,Benzo[k]Fluoranthene,LB
+37023,12.86354,Naphthalene,LB
+37023,1425.885,Carbon Dioxide,TON
+37023,0.2458971,PM25-Primary from certain diesel engines,TON
+37173,0.004015326,"Dibenzo[a,h]Anthracene",LB
+37173,0.03564342,Nickel,LB
+37173,0.006298686,Nitrous Oxide,TON
+37173,21.35852,Nitrogen Oxides,TON
+37173,0.06875958,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,13.154686,Ethyl Benzene,LB
+37167,11.00184,"1,3-Butadiene",LB
+37167,35.1226,Xylenes (Mixed Isomers),LB
+37167,0.00018553558,Mercury,LB
+37167,0.0387941,Arsenic,LB
+37167,2.377232,Fluorene,LB
+37167,0.3081742,Methane,TON
+37167,13975.78,Carbon Dioxide,TON
+37167,0.1753447,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.002475352,Benzo[b]Fluoranthene,LB
+37139,2.829704,Formaldehyde,LB
+37139,8.003882,Benzene,LB
+37139,0.1630685,Nitrogen Oxides,TON
+37139,0.001606867,Organic Carbon portion of PM2.5-PRI,TON
+37131,1.0491382,"1,3-Butadiene",LB
+37131,0.008160232,Anthracene,LB
+37131,0.003263388,Benz[a]Anthracene,LB
+37131,0.009469474,Acenaphthene,LB
+37131,0.019181328,Fluorene,LB
+37131,0.1405048,Volatile Organic Compounds,TON
+37125,0.004792578,"Dibenzo[a,h]Anthracene",LB
+37125,6.476968,"2,2,4-Trimethylpentane",LB
+37125,24.77288,Naphthalene,LB
+37125,0.4270872,PM10-Primary from certain diesel engines,TON
+37125,2.796272,Styrene,LB
+37125,0.007573612,"Benzo[g,h,i,]Perylene",LB
+37113,0.008073812,Benzo[k]Fluoranthene,LB
+37113,0.249453,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.001301558,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.0007094746,Benzo[k]Fluoranthene,LB
+37109,0.10931984,Acenaphthylene,LB
+37109,0.003347192,Nickel,LB
+37109,0.2799122,Styrene,LB
+37109,1.7873576,Toluene,LB
+37109,0.2196194,Pyrene,LB
+37109,0.2708074,Phenanthrene,LB
+37105,0.0013647288,Arsenic,LB
+37105,0.07013997,PM25-Primary from certain diesel engines,TON
+37105,0.009085935,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,1.2223988,Ethyl Benzene,LB
+37097,6.791276e-06,Chromium (VI),LB
+37097,0.0010608034,"Dibenzo[a,h]Anthracene",LB
+37097,5.308246e-06,Mercury,LB
+37097,4.08434,Naphthalene,LB
+37097,0.0361854,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.113894,PM10 Primary (Filt + Cond),TON
+37095,0.05779212,Ethyl Benzene,LB
+37095,7.499122e-05,"Benzo[g,h,i,]Perylene",LB
+37095,0.012763422,Fluoranthene,LB
+37095,5.028204e-05,"Dibenzo[a,h]Anthracene",LB
+37095,0.1728003,Nitrogen Oxides,TON
+37095,0.0008957728,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.0003285243,Sulfate Portion of PM2.5-PRI,TON
+37089,10.163406,Acrolein,LB
+37089,0.5283652,"Benzo[g,h,i,]Perylene",LB
+37089,0.19912584,Benzo[a]Pyrene,LB
+37089,0.004554544,"Dibenzo[a,h]Anthracene",LB
+37089,0.02328482,Nickel,LB
+37089,0.06130698,Sulfur Dioxide,TON
+37079,0.001673086,"Dibenzo[a,h]Anthracene",LB
+37079,8.1428e-06,Mercury,LB
+37079,0.1431785,PM25-Primary from certain diesel engines,TON
+37079,0.3236812,Volatile Organic Compounds,TON
+37079,1.390443,Hexane,LB
+37079,1.0978456e-05,Chromium (VI),LB
+37079,0.012253202,Benzo[b]Fluoranthene,LB
+37087,3520.192,Hexane,LB
+37075,0.03887242,Acenaphthene,LB
+37075,0.211297,Phenanthrene,LB
+37075,2.018512,Naphthalene,LB
+37075,0.6479718,Propionaldehyde,LB
+37075,0.015714342,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,25.5483,Propionaldehyde,LB
+37059,0.00014934824,Chromium (VI),LB
+37059,3.63599,Fluoranthene,LB
+37059,0.14593694,Manganese,LB
+37059,5.932534,Phenanthrene,LB
+37059,11.6392,Carbon Monoxide,TON
+37059,1.383005,PM10-Primary from certain diesel engines,TON
+37059,0.05158303,Sulfate Portion of PM2.5-PRI,TON
+37065,4.972874e-06,Arsenic,LB
+37065,0.1412792,Acetaldehyde,LB
+37065,0.02277422,Naphthalene,LB
+37065,0.1328581,Carbon Monoxide,TON
+37065,0.2744544,Ethyl Benzene,LB
+37065,1.5996888,Toluene,LB
+37065,0.00019489592,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.0006446766,Fluoranthene,LB
+37065,2.601006e-07,Mercury,LB
+37059,213.8656,Acetaldehyde,LB
+37059,7340.097,Carbon Dioxide,TON
+37059,0.5082961,Ammonia,TON
+37059,0.1539613,Sulfur Dioxide,TON
+37059,0.9142218,Fluoranthene,LB
+37059,0.2256552,Benzo[a]Pyrene,LB
+37057,25672.76,Ethyl Benzene,LB
+37057,143050.32,Toluene,LB
+37057,94561.08,Xylenes (Mixed Isomers),LB
+37057,12.269512,Benz[a]Anthracene,LB
+37057,0.4550649,Sulfate Portion of PM2.5-PRI,TON
+37055,9.324308,Acrolein,LB
+37055,0.003800754,Benzo[k]Fluoranthene,LB
+37055,0.17871084,Chrysene,LB
+37055,0.3893444,Acenaphthene,LB
+37055,1.4784014,Phenanthrene,LB
+37055,12.939936,Naphthalene,LB
+37055,0.3139607,PM10-Primary from certain diesel engines,TON
+37055,0.3022806,PM2.5 Primary (Filt + Cond),TON
+37055,0.08064852,Styrene,LB
+37055,0.0693344,Acrolein,LB
+37055,3.198816,Hexane,LB
+37055,0.00509607,Fluoranthene,LB
+37055,0.0009153624,Benzo[k]Fluoranthene,LB
+37055,1.160039,Formaldehyde,LB
+37055,0.000936333,Benz[a]Anthracene,LB
+37055,0.00208739,PM2.5 Primary (Filt + Cond),TON
+37043,195.5732,Naphthalene,LB
+37043,1.623901,Nitrous Oxide,TON
+37033,0.0097308,Fluoranthene,LB
+37033,9.602388e-05,"Dibenzo[a,h]Anthracene",LB
+37033,0.0009034208,Manganese,LB
+37033,0.00194758,Nitrous Oxide,TON
+37033,0.002058371,Ammonia,TON
+37033,0.001151362,Sulfur Dioxide,TON
+37033,0.0001277465,Sulfate Portion of PM2.5-PRI,TON
+37025,38.6983,"1,3-Butadiene",LB
+37025,0.0002886316,Chromium (VI),LB
+37025,0.07923532,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,1184.4194,Formaldehyde,LB
+37025,15.51632,Phenanthrene,LB
+37025,0.02996749,Nitrous Oxide,TON
+37025,0.01812817,Nitrate portion of PM2.5-PRI,TON
+37025,5.977124,PM2.5 Primary (Filt + Cond),TON
+37025,0.1652032,Sulfate Portion of PM2.5-PRI,TON
+37025,6.903682,Volatile Organic Compounds,TON
+37027,0.0807451,Mercury,LB
+37023,2.105926,Anthracene,LB
+37023,32.65054,Propionaldehyde,LB
+37023,0.02662648,"Benzo[g,h,i,]Perylene",LB
+37023,0.01806568,Benzo[k]Fluoranthene,LB
+37023,0.06422644,Arsenic,LB
+37023,7.75208,Phenanthrene,LB
+37023,73.17654,Naphthalene,LB
+37023,0.5320996,Methane,TON
+37023,24121.14,Carbon Dioxide,TON
+37023,2.83301,PM25-Primary from certain diesel engines,TON
+37023,0.007684996,Nitrate portion of PM2.5-PRI,TON
+37023,0.6676402,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.09116166,"Benzo[g,h,i,]Perylene",LB
+37179,0.02905796,Benzo[k]Fluoranthene,LB
+37179,0.03461818,Benzo[a]Pyrene,LB
+37179,2.854422,Acrolein,LB
+37179,0.04719103,Methane,TON
+37179,0.04658966,Nitrous Oxide,TON
+37179,0.0001571129,Nitrate portion of PM2.5-PRI,TON
+37179,0.3427402,PM10 Primary (Filt + Cond),TON
+37171,0.888998,Chrysene,LB
+37171,1.544677,Benz[a]Anthracene,LB
+37171,31.08032,Carbon Monoxide,TON
+37171,0.5030942,Ammonia,TON
+37171,0.00796404,Nitrate portion of PM2.5-PRI,TON
+37149,6.59142e-06,Chromium (VI),LB
+37149,0.3918682,"2,2,4-Trimethylpentane",LB
+37149,0.10144114,Fluorene,LB
+37149,0.005945114,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.004234791,Sulfur Dioxide,TON
+37161,8.58487e-08,Chromium (VI),LB
+37161,0.00411845,"Benzo[g,h,i,]Perylene",LB
+37161,0.0015473478,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.001474453,PM2.5 Primary (Filt + Cond),TON
+37161,0.0001218175,Sulfur Dioxide,TON
+37147,0.0006520388,Benz[a]Anthracene,LB
+37147,2.073632,Benzene,LB
+37147,0.00464972,Fluorene,LB
+37147,0.001962961,Anthracene,LB
+37147,0.003824006,Pyrene,LB
+37147,0.0023125,"Benzo[g,h,i,]Perylene",LB
+37147,0.0002457782,"Dibenzo[a,h]Anthracene",LB
+37147,0.008108476,Benz[a]Anthracene,LB
+37147,0.00011255086,Mercury,LB
+37143,0.005687278,Styrene,LB
+37143,0.004993786,Propionaldehyde,LB
+37143,0.0003593964,Fluoranthene,LB
+37143,0.0742886,Acetaldehyde,LB
+37143,0.0003023824,Methane,TON
+37143,0.0002598033,PM10 Primary (Filt + Cond),TON
+37131,8.18711e-06,Chromium (VI),LB
+37131,0.0014947624,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.3015514,Phenanthrene,LB
+37131,0.01185035,Methane,TON
+37131,0.0006555061,Nitrous Oxide,TON
+37131,0.0119959,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,47.58726,Ethyl Benzene,LB
+37111,8.95055,"1,3-Butadiene",LB
+37111,1.4690354,Propionaldehyde,LB
+37111,175.66726,Xylenes (Mixed Isomers),LB
+37111,0.18227556,"Benzo[g,h,i,]Perylene",LB
+37111,0.04038004,Benzo[b]Fluoranthene,LB
+37111,0.07528972,Acenaphthene,LB
+37111,0.15250838,Fluorene,LB
+37111,1533.783,Carbon Dioxide,TON
+37111,0.02160032,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,1.2196532,Styrene,LB
+37119,45.50934,Hexane,LB
+37119,0.9132592,Propionaldehyde,LB
+37119,0.05936428,Manganese,LB
+37119,0.010671078,Arsenic,LB
+37119,0.0550976,Acenaphthene,LB
+37119,0.3027648,Phenanthrene,LB
+37109,91.33908,Carbon Dioxide,TON
+37109,2.603324e-06,Nitrate portion of PM2.5-PRI,TON
+37109,0.001264388,Organic Carbon portion of PM2.5-PRI,TON
+37109,1.102635e-05,"Benzo[g,h,i,]Perylene",LB
+37109,6.505062e-05,Chrysene,LB
+37109,0.03605458,Manganese,LB
+37109,6.931118e-05,Mercury,LB
+37109,7.426258,Ethyl Benzene,LB
+37109,5.665684,Hexane,LB
+37109,0.558773,Anthracene,LB
+37109,225.6148,Formaldehyde,LB
+37109,0.03471033,PM25-Primary from certain diesel engines,TON
+37109,0.0002753322,Nitrate portion of PM2.5-PRI,TON
+37109,0.01924235,Organic Carbon portion of PM2.5-PRI,TON
+37109,1.251597,Volatile Organic Compounds,TON
+37109,7.686508,Propionaldehyde,LB
+37109,0.13364616,Benzo[b]Fluoranthene,LB
+37109,106.31894,Acetaldehyde,LB
+37109,0.3636315,Ammonia,TON
+37109,0.05998292,Sulfur Dioxide,TON
+37109,0.005493665,Sulfate Portion of PM2.5-PRI,TON
+37107,2.017454e-05,Mercury,LB
+37107,0.000251558,Nickel,LB
+37107,0.000385721,Arsenic,LB
+37107,0.3676676,Nitrogen Oxides,TON
+37107,0.0172641,Fluoranthene,LB
+37107,19.524684,Hexane,LB
+37107,8.164212e-05,"Dibenzo[a,h]Anthracene",LB
+37107,16.347544,"2,2,4-Trimethylpentane",LB
+37097,0.324199,Benzo[b]Fluoranthene,LB
+37097,0.04452476,Benzo[k]Fluoranthene,LB
+37097,0.18524238,Nickel,LB
+37097,0.03216313,Nitrous Oxide,TON
+37097,9.271886,PM10 Primary (Filt + Cond),TON
+37099,5.172398,Styrene,LB
+37099,0.07204522,Benzo[b]Fluoranthene,LB
+37099,0.2411806,Benzo[a]Pyrene,LB
+37099,0.06383588,Arsenic,LB
+37099,1.2276724,Acenaphthene,LB
+37099,2.682948,Fluorene,LB
+37099,2.090645,PM2.5 Primary (Filt + Cond),TON
+37089,0.0002667711,Sulfate Portion of PM2.5-PRI,TON
+37089,0.1803515,Volatile Organic Compounds,TON
+37089,1.0575802,"1,3-Butadiene",LB
+37089,0.004146416,Benzo[k]Fluoranthene,LB
+37089,0.003940616,Benz[a]Anthracene,LB
+37089,0.5313762,Naphthalene,LB
+37089,0.01009448,Ammonia,TON
+37089,2.256687e-05,Nitrate portion of PM2.5-PRI,TON
+37137,1.012109,Phenanthrene,LB
+37137,10.245574,Naphthalene,LB
+37137,3.14565,Carbon Monoxide,TON
+37137,0.4304134,PM10-Primary from certain diesel engines,TON
+37137,0.04497252,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.003074966,"Benzo[g,h,i,]Perylene",LB
+37137,0.002038374,"Dibenzo[a,h]Anthracene",LB
+37137,0.01795802,Nickel,LB
+37137,3.281824,Ethyl Benzene,LB
+37137,0.7126096,Pyrene,LB
+37123,0.0803266,Manganese,LB
+37123,2.557216,Acenaphthene,LB
+37123,0.6036615,PM25-Primary from certain diesel engines,TON
+37123,0.4895796,Elemental Carbon portion of PM2.5-PRI,TON
+37123,59.90386,Acrolein,LB
+37123,18.65801,Hexane,LB
+37123,2.077284,Anthracene,LB
+37123,0.2231962,Chrysene,LB
+37123,0.005420028,PM2.5 Primary (Filt + Cond),TON
+37123,0.001693839,Sulfur Dioxide,TON
+37115,11.557742,Propionaldehyde,LB
+37115,18.198998,Xylenes (Mixed Isomers),LB
+37115,1.6067714,Fluoranthene,LB
+37115,234.49,Formaldehyde,LB
+37115,0.5014812,Benz[a]Anthracene,LB
+37115,21.27326,Benzene,LB
+37115,0.6993744,Acenaphthene,LB
+37115,5.321602,Carbon Monoxide,TON
+37115,1.2769,Volatile Organic Compounds,TON
+37113,3.344096e-06,Sulfate Portion of PM2.5-PRI,TON
+37113,7.072862e-05,Chrysene,LB
+37113,0.0004339732,Fluorene,LB
+37113,3.338314,Carbon Dioxide,TON
+37113,0.0001112318,Nitrous Oxide,TON
+37107,0.0046368,"Benzo[g,h,i,]Perylene",LB
+37107,0.003072388,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,1.6009354,Acenaphthylene,LB
+37107,0.2449382,Benz[a]Anthracene,LB
+37107,32.3302,Naphthalene,LB
+37107,0.2223793,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.01263783,Sulfate Portion of PM2.5-PRI,TON
+37105,0.1365387,PM2.5 Primary (Filt + Cond),TON
+37105,0.931902,Styrene,LB
+37105,1.6709018,Hexane,LB
+37105,3.480348,Propionaldehyde,LB
+37105,0.4703952,Pyrene,LB
+37105,0.02786223,Methane,TON
+37097,0.09630632,Benzo[b]Fluoranthene,LB
+37097,0.01316143,"Dibenzo[a,h]Anthracene",LB
+37097,1.0683912,Benz[a]Anthracene,LB
+37097,0.2642339,Methane,TON
+37097,17.29693,Nitrogen Oxides,TON
+37099,11686.976,Toluene,LB
+37099,56.72004,Propionaldehyde,LB
+37099,155.93882,Naphthalene,LB
+37099,57.69309,Volatile Organic Compounds,TON
+37093,1.4296576,Fluoranthene,LB
+37093,0.5121794,Elemental Carbon portion of PM2.5-PRI,TON
+37093,5.508164,Hexane,LB
+37093,1.8854414,Pyrene,LB
+37085,0.13851316,"1,3-Butadiene",LB
+37085,0.003502538,Pyrene,LB
+37085,0.00012851422,"Benzo[g,h,i,]Perylene",LB
+37085,0.003256446,Manganese,LB
+37085,1.96637,Methane,TON
+37085,1.456692,Nitrogen Oxides,TON
+37085,0.01195901,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.0002572752,Sulfate Portion of PM2.5-PRI,TON
+37079,8.705148e-05,Anthracene,LB
+37079,0.0003028092,Acenaphthylene,LB
+37079,0.0002074578,Arsenic,LB
+37079,0.001313816,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.02044454,Ethyl Benzene,LB
+37081,83.30954,"1,3-Butadiene",LB
+37081,14.028004,Acenaphthylene,LB
+37081,7.825848,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.02979546,Anthracene,LB
+37081,0.016764072,Chrysene,LB
+37081,0.0203931,Organic Carbon portion of PM2.5-PRI,TON
+37079,4191.522,"2,2,4-Trimethylpentane",LB
+37079,4.165014,PM10 Primary (Filt + Cond),TON
+37079,1.322899,Sulfur Dioxide,TON
+37077,3.391392e-05,Arsenic,LB
+37077,0.0001703937,Nitrous Oxide,TON
+37077,0.09966064,Nitrogen Oxides,TON
+37077,0.00330317,PM2.5 Primary (Filt + Cond),TON
+37077,0.0008021147,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.004124524,Pyrene,LB
+37077,4.516576,Xylenes (Mixed Isomers),LB
+37077,0.0018993084,Benzo[k]Fluoranthene,LB
+37069,0.8237688,Benz[a]Anthracene,LB
+37069,0.3050298,Manganese,LB
+37069,0.3326533,Ammonia,TON
+37069,3.350952,PM10 Primary (Filt + Cond),TON
+37069,0.1904857,Sulfate Portion of PM2.5-PRI,TON
+37069,0.989604,Ethyl Benzene,LB
+37069,0.7612592,Hexane,LB
+37069,0.2208664,Fluoranthene,LB
+37069,0.14575368,Acenaphthylene,LB
+37069,1.044155e-05,Mercury,LB
+37069,0.0788959,PM10-Primary from certain diesel engines,TON
+37069,1.152545,Nitrogen Oxides,TON
+37069,0.003161873,Sulfur Dioxide,TON
+37069,0.1608999,Volatile Organic Compounds,TON
+37061,6.466602,Styrene,LB
+37061,0.00012228018,Chromium (VI),LB
+37061,0.3246814,Benzo[a]Pyrene,LB
+37061,0.013243036,"Dibenzo[a,h]Anthracene",LB
+37061,0.12647478,Manganese,LB
+37061,1.4766844,Acenaphthene,LB
+37061,47.29332,Naphthalene,LB
+37061,0.005589642,Nitrate portion of PM2.5-PRI,TON
+37061,48.24003,Nitrogen Oxides,TON
+37061,0.1983787,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.06189388,Sulfur Dioxide,TON
+37055,5.790382e-05,Acenaphthylene,LB
+37055,0.013025854,Benzene,LB
+37055,7.176885e-06,Methane,TON
+37055,0.005496524,Carbon Monoxide,TON
+37055,0.0002390292,Acrolein,LB
+37055,0.009322626,Hexane,LB
+37055,1.090679e-05,Anthracene,LB
+37055,2.952675e-06,Ammonia,TON
+37055,0.009498082,Styrene,LB
+37055,0.000342833,Anthracene,LB
+37055,0.1296038,Formaldehyde,LB
+37055,0.2990234,"2,2,4-Trimethylpentane",LB
+37055,7.595138e-06,Arsenic,LB
+37055,4.751634e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37055,7.20463e-05,Ammonia,TON
+37055,8.448229e-06,Sulfate Portion of PM2.5-PRI,TON
+37049,4.935418e-05,Propionaldehyde,LB
+37049,3.775382e-06,Fluoranthene,LB
+37049,0.00249545,Benzene,LB
+37049,0.00012759312,Naphthalene,LB
+37045,0.9051704,Organic Carbon portion of PM2.5-PRI,TON
+37045,4.709404,PM2.5 Primary (Filt + Cond),TON
+37045,7.232174,Volatile Organic Compounds,TON
+37045,32.88412,"1,3-Butadiene",LB
+37045,175.5883,Toluene,LB
+37045,662.812,Acetaldehyde,LB
+37045,3.228514,Acenaphthene,LB
+37045,6.97077,Fluorene,LB
+37045,52582.1,Carbon Dioxide,TON
+37039,11.398194,Xylenes (Mixed Isomers),LB
+37039,0.5882637,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.0953265,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,8.196992,Ethyl Benzene,LB
+37045,7.968316,"1,3-Butadiene",LB
+37045,19.474476,Acrolein,LB
+37045,0.894494,Anthracene,LB
+37045,2.58576,Pyrene,LB
+37045,6.178544,"2,2,4-Trimethylpentane",LB
+37045,0.6725268,PM10-Primary from certain diesel engines,TON
+37045,0.6187231,PM25-Primary from certain diesel engines,TON
+37045,0.2413623,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.0002322188,Nitrous Oxide,TON
+37033,0.6776804,Acrolein,LB
+37033,0.08511876,Pyrene,LB
+37033,0.0646415,Fluoranthene,LB
+37033,0.2285754,Chrysene,LB
+37033,72.96778,Benzene,LB
+37033,6.76668,Phenanthrene,LB
+37033,0.5677172,PM25-Primary from certain diesel engines,TON
+37033,0.5807724,PM2.5 Primary (Filt + Cond),TON
+37033,0.0323009,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.03156423,Sulfur Dioxide,TON
+37031,0.125731,Carbon Dioxide,TON
+37031,3.16335e-06,Ammonia,TON
+37031,1.77362e-05,PM10 Primary (Filt + Cond),TON
+37195,0.6291964,Pyrene,LB
+37195,5.391756,Xylenes (Mixed Isomers),LB
+37195,0.014381304,Benzo[b]Fluoranthene,LB
+37195,66.30362,Formaldehyde,LB
+37195,0.8221844,Styrene,LB
+37195,0.02404106,Manganese,LB
+37195,0.009346774,Sulfate Portion of PM2.5-PRI,TON
+37195,0.3159996,Benzo[a]Pyrene,LB
+37195,0.02148606,Arsenic,LB
+37195,1.969746,PM2.5 Primary (Filt + Cond),TON
+37189,0.05778164,Fluoranthene,LB
+37189,0.017714434,Benz[a]Anthracene,LB
+37189,0.000810045,Nickel,LB
+37189,50.48639,Carbon Dioxide,TON
+37189,0.0001456126,Nitrous Oxide,TON
+37189,0.2725475,Nitrogen Oxides,TON
+37189,0.0168762,PM2.5 Primary (Filt + Cond),TON
+37183,38.61253,Nitrogen Oxides,TON
+37183,24922.96,Toluene,LB
+37183,6063.572,Hexane,LB
+37183,13241.71,Xylenes (Mixed Isomers),LB
+37183,0.03344926,"Dibenzo[a,h]Anthracene",LB
+37183,0.1686483,Nickel,LB
+37021,0.6416444,Sulfate Portion of PM2.5-PRI,TON
+37017,0.08703856,Manganese,LB
+37017,79.70588,Naphthalene,LB
+37017,0.01107025,Nitrous Oxide,TON
+37017,0.001076052,Nitrate portion of PM2.5-PRI,TON
+37017,15.45944,Nitrogen Oxides,TON
+37017,0.8152794,PM10 Primary (Filt + Cond),TON
+37017,10.818706,Styrene,LB
+37017,0.009476552,"Benzo[g,h,i,]Perylene",LB
+37017,0.004012894,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.4994696,Benz[a]Anthracene,LB
+37017,4.279656,Volatile Organic Compounds,TON
+37015,0.07032506,Anthracene,LB
+37015,6.3932e-06,Chromium (VI),LB
+37015,0.004908178,Benzo[b]Fluoranthene,LB
+37015,19.709788,Formaldehyde,LB
+37015,6.429554e-06,Mercury,LB
+37015,0.001344272,Arsenic,LB
+37015,0.009976534,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,2.003634,"1,3-Butadiene",LB
+37015,0.0016744544,"Benzo[g,h,i,]Perylene",LB
+37015,0.0009245772,Benzo[k]Fluoranthene,LB
+37015,0.0009234902,"Dibenzo[a,h]Anthracene",LB
+37015,0.6158976,Phenanthrene,LB
+37015,0.01460603,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,1557.5278,Toluene,LB
+37013,0.0555774,Benzo[b]Fluoranthene,LB
+37013,0.0007516968,Mercury,LB
+37013,0.1523203,Ammonia,TON
+37013,2.387694,Nitrogen Oxides,TON
+37013,0.1173648,PM10 Primary (Filt + Cond),TON
+37003,2.253976,Toluene,LB
+37003,0.001073098,Pyrene,LB
+37003,0.2080646,Formaldehyde,LB
+37003,0.0002058174,Benz[a]Anthracene,LB
+37003,5.1301e-07,Mercury,LB
+37003,0.000473546,PM10 Primary (Filt + Cond),TON
+37003,0.0003041136,PM2.5 Primary (Filt + Cond),TON
+37003,7.894233e-06,Sulfate Portion of PM2.5-PRI,TON
+37003,0.01129872,Volatile Organic Compounds,TON
+37067,6.369134,Hexane,LB
+37067,1.233829,Propionaldehyde,LB
+37067,0.010368346,Fluorene,LB
+37027,0.0017285558,Fluorene,LB
+37027,0.001332182,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.003708887,PM2.5 Primary (Filt + Cond),TON
+37027,0.02468302,Styrene,LB
+37027,0.001817283,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.00394815,Acenaphthylene,LB
+37027,4.172124e-05,"Dibenzo[a,h]Anthracene",LB
+37027,0.004223598,Manganese,LB
+37133,0.8963564,Naphthalene,LB
+37133,0.0001547372,Nitrate portion of PM2.5-PRI,TON
+37133,0.09580162,Sulfur Dioxide,TON
+37133,43.12272,Toluene,LB
+37133,0.07959906,Acenaphthylene,LB
+37069,0.08330142,Benzene,LB
+37069,0.0012613412,Manganese,LB
+37069,44.00178,Carbon Dioxide,TON
+37069,0.006393443,PM10 Primary (Filt + Cond),TON
+37053,0.0005299078,"Benzo[g,h,i,]Perylene",LB
+37053,0.015758232,Manganese,LB
+37053,588.6736,Carbon Dioxide,TON
+37053,0.00998086,PM10-Primary from certain diesel engines,TON
+37053,0.0008327939,Nitrous Oxide,TON
+37053,0.01283809,Ammonia,TON
+37053,0.01403941,PM2.5 Primary (Filt + Cond),TON
+37053,0.005032593,Sulfur Dioxide,TON
+37053,4294.77,Ethyl Benzene,LB
+37053,1019.751,"1,3-Butadiene",LB
+37053,1.8719952,Benzo[k]Fluoranthene,LB
+37053,7352.672,Benzene,LB
+37053,0.6752628,Nickel,LB
+37053,40.25612,Phenanthrene,LB
+37053,7.268535,Ammonia,TON
+37051,284.0748,Acetaldehyde,LB
+37051,1.4079264,"Benzo[g,h,i,]Perylene",LB
+37051,1.9362894,Fluoranthene,LB
+37051,0.3863996,Benzo[k]Fluoranthene,LB
+37051,0.3760696,Chrysene,LB
+37047,0.8404282,"1,3-Butadiene",LB
+37047,0.0917148,Anthracene,LB
+37047,0.005481736,Benzo[b]Fluoranthene,LB
+37047,0.687765,"2,2,4-Trimethylpentane",LB
+37047,0.1338147,PM2.5 Primary (Filt + Cond),TON
+37041,0.2176474,Anthracene,LB
+37041,0.002741468,Arsenic,LB
+37041,6.570092,Naphthalene,LB
+37041,999.9545,Carbon Dioxide,TON
+37041,0.005754174,Sulfate Portion of PM2.5-PRI,TON
+37031,0.5815566,"1,3-Butadiene",LB
+37031,0.10199836,Acrolein,LB
+37031,5.006484,Hexane,LB
+37031,2.910198e-06,Chromium (VI),LB
+37031,0.0014328882,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,1.6176888,Formaldehyde,LB
+37031,0.001243067,Benz[a]Anthracene,LB
+37031,2.917356e-05,Mercury,LB
+37031,0.2225973,Nitrogen Oxides,TON
+37031,0.002672528,PM2.5 Primary (Filt + Cond),TON
+37017,0.08339112,Benz[a]Anthracene,LB
+37017,0.006243938,Arsenic,LB
+37017,0.09237989,Elemental Carbon portion of PM2.5-PRI,TON
+37017,7.795478,Toluene,LB
+37017,2.902576,Hexane,LB
+37017,0.0015840406,"Benzo[g,h,i,]Perylene",LB
+37017,0.003204466,Benzo[b]Fluoranthene,LB
+37017,115.48822,Formaldehyde,LB
+37019,1.5968182,Hexane,LB
+37019,5.161878,Xylenes (Mixed Isomers),LB
+37019,2.501408e-05,Mercury,LB
+37019,26.68806,Acetaldehyde,LB
+37019,866.4687,Carbon Dioxide,TON
+37019,0.2536058,PM10 Primary (Filt + Cond),TON
+37015,0.001242727,"Dibenzo[a,h]Anthracene",LB
+37015,0.12778642,Acenaphthene,LB
+37015,0.001620087,Sulfate Portion of PM2.5-PRI,TON
+37167,1.2110322,Propionaldehyde,LB
+37167,1.6821566e-05,Mercury,LB
+37167,0.002612468,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.09522404,Manganese,LB
+37021,0.5027496,Acenaphthene,LB
+37021,2.0846,Phenanthrene,LB
+37021,0.1337108,Methane,TON
+37021,0.005380886,Benzo[k]Fluoranthene,LB
+37021,4.88583,"2,2,4-Trimethylpentane",LB
+37021,0.4486751,PM10-Primary from certain diesel engines,TON
+37021,0.8014076,PM10 Primary (Filt + Cond),TON
+37017,2.208396,Propionaldehyde,LB
+37017,0.00014716,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,8.151108e-05,Benzo[k]Fluoranthene,LB
+37017,0.0240112,Benz[a]Anthracene,LB
+37017,0.011987,Nickel,LB
+37017,19.45852,Acetaldehyde,LB
+37017,0.2260586,Fluorene,LB
+37017,340.1994,Carbon Dioxide,TON
+37021,0.13881184,Pyrene,LB
+37021,0.0362797,Benzo[a]Pyrene,LB
+37021,0.02545756,Benz[a]Anthracene,LB
+37021,0.005124264,Arsenic,LB
+37021,1505.238,Carbon Dioxide,TON
+37021,0.001772885,Sulfate Portion of PM2.5-PRI,TON
+37011,0.005735404,Nickel,LB
+37011,0.0014430608,Arsenic,LB
+37011,0.6873258,Phenanthrene,LB
+37011,0.1341016,PM10-Primary from certain diesel engines,TON
+37011,0.5394788,Pyrene,LB
+37081,0.00011864772,Chromium (VI),LB
+37081,0.009250562,Benz[a]Anthracene,LB
+37081,0.0011894544,Mercury,LB
+37081,0.04268524,Phenanthrene,LB
+37081,0.384508,Naphthalene,LB
+37081,1667.142,Carbon Dioxide,TON
+37081,0.7124515,Nitrogen Oxides,TON
+37081,0.01499297,Organic Carbon portion of PM2.5-PRI,TON
+37071,54.1284,Toluene,LB
+37051,9.493694,Ethyl Benzene,LB
+37043,0.2119314,"1,3-Butadiene",LB
+37043,3.519462,Xylenes (Mixed Isomers),LB
+37043,0.0014604726,Benzo[b]Fluoranthene,LB
+37043,6.14615e-05,"Dibenzo[a,h]Anthracene",LB
+37043,0.009903836,Phenanthrene,LB
+37043,0.001004418,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,9.017401e-05,Sulfate Portion of PM2.5-PRI,TON
+37041,0.03093112,Volatile Organic Compounds,TON
+37031,0.000837279,Chrysene,LB
+37031,0.002091098,Benzo[a]Pyrene,LB
+37031,0.005449812,Manganese,LB
+37031,0.0015074498,Nickel,LB
+37031,1.2990316,Hexane,LB
+37031,0.2132614,Propionaldehyde,LB
+37031,1.2059944e-05,Chromium (VI),LB
+37031,0.0011044424,Benzo[k]Fluoranthene,LB
+37031,0.00410312,Acenaphthylene,LB
+37031,185.7599,Carbon Dioxide,TON
+37037,0.02528474,Styrene,LB
+37037,0.001536256,Fluoranthene,LB
+37037,0.0008127694,Chrysene,LB
+37037,0.002023158,Benzo[a]Pyrene,LB
+37037,0.007851001,Methane,TON
+37037,0.0005495976,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.01161125,PM10 Primary (Filt + Cond),TON
+37135,0.06731135,Ammonia,TON
+37135,0.844328,"1,3-Butadiene",LB
+37135,0.007239248,Anthracene,LB
+37135,0.02056972,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,1.2884862,Ethyl Benzene,LB
+37103,4.994692,Toluene,LB
+37103,0.004566494,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.002415878,Benzo[k]Fluoranthene,LB
+37103,0.11818534,Naphthalene,LB
+37103,0.001016488,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.01805068,Ammonia,TON
+37175,4.421032,Fluoranthene,LB
+37175,0.9005402,Benzo[k]Fluoranthene,LB
+37175,0.5035908,Arsenic,LB
+37175,1.246825,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,125.62708,Styrene,LB
+37167,5493.872,"2,2,4-Trimethylpentane",LB
+37167,0.0677739,Mercury,LB
+37155,0.13648168,Benzo[a]Pyrene,LB
+37155,0.010684504,Nickel,LB
+37155,130.27476,Hexane,LB
+37149,0.0431767,Manganese,LB
+37149,0.5732194,Acenaphthene,LB
+37149,5.05327,Carbon Monoxide,TON
+37149,163.55914,Formaldehyde,LB
+37153,11.454768,Styrene,LB
+37153,61.1483,Acrolein,LB
+37153,0.0226859,Benzo[b]Fluoranthene,LB
+37153,0.003136578,Benzo[k]Fluoranthene,LB
+37153,0.07604822,Benzo[a]Pyrene,LB
+37153,0.003122536,"Dibenzo[a,h]Anthracene",LB
+37153,0.582423,Benz[a]Anthracene,LB
+37153,0.10391972,Nickel,LB
+37153,333.571,Acetaldehyde,LB
+37153,0.03874473,Sulfur Dioxide,TON
+37143,0.7075046,Toluene,LB
+37143,0.2349548,Hexane,LB
+37143,0.09092544,Pyrene,LB
+37143,0.002083066,Benzo[b]Fluoranthene,LB
+37143,0.06854526,Fluoranthene,LB
+37143,0.8441138,Benzene,LB
+37143,0.002890212,Manganese,LB
+37143,3.94414,Acetaldehyde,LB
+37143,0.06204128,Fluorene,LB
+37143,0.004397032,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,6.274344,Toluene,LB
+37137,0.3660312,Acenaphthylene,LB
+37137,0.001740352,"Dibenzo[a,h]Anthracene",LB
+37137,0.00777392,Arsenic,LB
+37137,0.04208835,Ammonia,TON
+37137,0.0007441594,Nitrate portion of PM2.5-PRI,TON
+37131,0.4658168,Hexane,LB
+37131,0.010387158,Benz[a]Anthracene,LB
+37131,0.004702118,Manganese,LB
+37131,0.002172922,Arsenic,LB
+37131,0.01324654,Methane,TON
+37131,0.0007699338,Elemental Carbon portion of PM2.5-PRI,TON
+37119,37.64912,Ethyl Benzene,LB
+37119,0.00210897,Benzo[k]Fluoranthene,LB
+37119,0.3746008,Manganese,LB
+37119,0.209412,Nickel,LB
+37119,118.0858,Carbon Monoxide,TON
+37119,0.0201208,Nitrous Oxide,TON
+37119,0.3599693,PM2.5 Primary (Filt + Cond),TON
+37119,0.0002312948,Pyrene,LB
+37119,9.901578e-05,Benzo[k]Fluoranthene,LB
+37119,0.06147314,"2,2,4-Trimethylpentane",LB
+37119,2.421876e-05,Nickel,LB
+37119,0.0007031858,Phenanthrene,LB
+37119,0.0002548558,Fluorene,LB
+37119,0.0008218826,PM10 Primary (Filt + Cond),TON
+37119,0.0002950751,Sulfur Dioxide,TON
+37107,0.708267,Benzene,LB
+37107,0.0002515664,Arsenic,LB
+37107,0.2491546,Ethyl Benzene,LB
+37107,0.4010826,Propionaldehyde,LB
+37107,0.0004148386,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.05765408,Fluoranthene,LB
+37107,0.010585596,Chrysene,LB
+37103,0.07329708,"2,2,4-Trimethylpentane",LB
+37103,6.44618e-07,Mercury,LB
+37103,0.007395632,PM25-Primary from certain diesel engines,TON
+37103,0.00317895,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.000251352,Sulfur Dioxide,TON
+37099,0.2685002,Anthracene,LB
+37099,83.78694,Formaldehyde,LB
+37099,0.5448408,Fluorene,LB
+37099,0.191258,PM10-Primary from certain diesel engines,TON
+37099,2.797596,Ethyl Benzene,LB
+37099,1.2490416,Styrene,LB
+37097,0.010515432,"Dibenzo[a,h]Anthracene",LB
+37097,1876.5296,"2,2,4-Trimethylpentane",LB
+37097,0.004287786,Mercury,LB
+37097,5.86323,Phenanthrene,LB
+37097,13.34057,Nitrogen Oxides,TON
+37097,0.2540539,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.5212712,Styrene,LB
+37095,4.43361,Toluene,LB
+37095,1.2711468,Hexane,LB
+37095,0.12793388,Anthracene,LB
+37095,1.423847,"2,2,4-Trimethylpentane",LB
+37095,0.0786275,Benz[a]Anthracene,LB
+37095,0.00684762,Arsenic,LB
+37095,5.84034,Nitrogen Oxides,TON
+37095,0.03895184,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.3127624,PM10 Primary (Filt + Cond),TON
+37095,1684.4248,Benzene,LB
+37095,577.4558,Acetaldehyde,LB
+37095,89.71746,Naphthalene,LB
+37095,0.9396162,Methane,TON
+37095,374.0929,Carbon Monoxide,TON
+37095,49.71471,Nitrogen Oxides,TON
+37095,0.3587096,Sulfur Dioxide,TON
+37085,6.112052,"2,2,4-Trimethylpentane",LB
+37085,6.246126e-05,Mercury,LB
+37085,0.015665942,Fluorene,LB
+37085,0.4018822,Naphthalene,LB
+37085,0.4699555,Nitrogen Oxides,TON
+37085,0.003064361,Organic Carbon portion of PM2.5-PRI,TON
+37083,424.8196,"2,2,4-Trimethylpentane",LB
+37083,339.5376,Benzene,LB
+37083,0.1165555,Methane,TON
+37083,0.01670392,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.0003333192,Nitrate portion of PM2.5-PRI,TON
+37083,3.397649,Nitrogen Oxides,TON
+37083,0.1620352,PM10 Primary (Filt + Cond),TON
+37081,10.079898,Fluoranthene,LB
+37081,2084.728,Formaldehyde,LB
+37081,1.0222644,Nickel,LB
+37081,12.90414,PM10 Primary (Filt + Cond),TON
+37081,1.429825,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,234.9048,Xylenes (Mixed Isomers),LB
+37077,0.02707856,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,57.42006,"2,2,4-Trimethylpentane",LB
+37077,0.3595292,Manganese,LB
+37077,2.243253,Elemental Carbon portion of PM2.5-PRI,TON
+37077,22.2366,Styrene,LB
+37077,36.40598,Hexane,LB
+37077,1447.2804,Formaldehyde,LB
+37077,8.58908,Fluorene,LB
+37077,0.0202784,Nitrous Oxide,TON
+37071,1.7554078e-05,Nickel,LB
+37071,2.691434e-05,Arsenic,LB
+37071,0.13492262,Naphthalene,LB
+37071,0.0006938548,Nitrous Oxide,TON
+37071,0.0001685461,Ammonia,TON
+37071,0.0001126446,Sulfur Dioxide,TON
+37071,0.0007688224,Benzo[b]Fluoranthene,LB
+37071,0.003805058,Fluoranthene,LB
+37071,0.011836618,Acenaphthylene,LB
+37071,0.0007454354,Chrysene,LB
+37071,2.00481,"2,2,4-Trimethylpentane",LB
+37071,0.4900057,Methane,TON
+37071,0.2149935,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.6635559,PM10 Primary (Filt + Cond),TON
+37071,0.3923138,PM2.5 Primary (Filt + Cond),TON
+37071,1.7312376,Pyrene,LB
+37071,0.000362982,Chromium (VI),LB
+37071,1.5173444,Fluoranthene,LB
+37071,0.2860522,Chrysene,LB
+37071,0.2928306,Benz[a]Anthracene,LB
+37071,0.09326288,Manganese,LB
+37071,0.003638868,Mercury,LB
+37069,274.2588,Toluene,LB
+37069,60.02238,"2,2,4-Trimethylpentane",LB
+37069,3.445728,Naphthalene,LB
+37069,0.05855283,Methane,TON
+37067,166.94434,Acrolein,LB
+37067,0.0006962802,Chromium (VI),LB
+37067,10.492588,Acenaphthylene,LB
+37067,946.1064,Acetaldehyde,LB
+37067,236.5406,Naphthalene,LB
+37067,1.734466,Methane,TON
+37067,2.024524,Elemental Carbon portion of PM2.5-PRI,TON
+37067,8.498202,PM10 Primary (Filt + Cond),TON
+37065,9.373016,Ethyl Benzene,LB
+37061,0.01877738,Ammonia,TON
+37061,0.0008942099,Nitrate portion of PM2.5-PRI,TON
+37061,0.01147678,Sulfur Dioxide,TON
+37061,10.890384,Acrolein,LB
+37061,3.311576,Hexane,LB
+37061,7.176518,Xylenes (Mixed Isomers),LB
+37061,0.0263935,Manganese,LB
+37061,0.4780836,Acenaphthene,LB
+37043,0.0005085914,Styrene,LB
+37043,0.000438769,Propionaldehyde,LB
+37043,6.42664e-06,Benzo[k]Fluoranthene,LB
+37043,2.127138e-05,Acenaphthene,LB
+37043,0.0003946143,Volatile Organic Compounds,TON
+37081,43.6135,Xylenes (Mixed Isomers),LB
+37065,0.002502142,Pyrene,LB
+37065,2.77913,Xylenes (Mixed Isomers),LB
+37065,0.03538294,Styrene,LB
+37065,2.03346,Formaldehyde,LB
+37065,0.007068086,Phenanthrene,LB
+37065,0.002477786,Fluorene,LB
+37065,2.044062,Carbon Monoxide,TON
+37065,259.7916,Carbon Dioxide,TON
+37111,0.001812501,Nitrous Oxide,TON
+37111,0.002121184,Arsenic,LB
+37111,0.0008407696,Anthracene,LB
+37111,0.001105764,Benzo[k]Fluoranthene,LB
+37111,0.0009533628,Benz[a]Anthracene,LB
+37177,1374.2524,Toluene,LB
+37169,3.654446,Acrolein,LB
+37169,3.113038,Propionaldehyde,LB
+37169,6.73289e-05,Chromium (VI),LB
+37169,0.071766,Benzo[a]Pyrene,LB
+37169,0.0016417378,"Dibenzo[a,h]Anthracene",LB
+37169,0.014125938,Manganese,LB
+37169,1120.225,Carbon Dioxide,TON
+37169,0.0106895,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.1380936,Ammonia,TON
+37169,4.150018,Styrene,LB
+37163,21.97586,Ethyl Benzene,LB
+37163,8.476578,Styrene,LB
+37163,50.9415,Toluene,LB
+37163,0.02349178,"Benzo[g,h,i,]Perylene",LB
+37163,0.10993854,Benzo[b]Fluoranthene,LB
+37163,0.015322618,Benzo[k]Fluoranthene,LB
+37163,3.301512,Acenaphthylene,LB
+37163,671.8396,Formaldehyde,LB
+37163,0.368418,Benzo[a]Pyrene,LB
+37163,21.20249,Carbon Monoxide,TON
+37163,76.32574,Nitrogen Oxides,TON
+37149,0.8889922,"2,2,4-Trimethylpentane",LB
+37149,0.01024593,Manganese,LB
+37149,3.766046,Naphthalene,LB
+37149,0.02526967,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.004586268,Sulfur Dioxide,TON
+37149,4.541306,Toluene,LB
+37149,0.4996584,Fluoranthene,LB
+37149,0.3811196,Acenaphthylene,LB
+37145,0.2704158,PM10 Primary (Filt + Cond),TON
+37145,0.6690374,Fluoranthene,LB
+37145,0.06279484,Benzo[a]Pyrene,LB
+37145,8.579262,Benzene,LB
+37145,10.018908,Naphthalene,LB
+37145,0.191534,PM25-Primary from certain diesel engines,TON
+37145,2.87687,"1,3-Butadiene",LB
+37145,0.3131398,Anthracene,LB
+37199,0.791514,Methane,TON
+37199,1139.8256,Ethyl Benzene,LB
+37199,2.58209,Fluoranthene,LB
+37199,0.293256,Arsenic,LB
+37199,9.55663,Phenanthrene,LB
+37187,0.005031696,Manganese,LB
+37187,1.4932226,Toluene,LB
+37187,0.00071214,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.15260916,Acenaphthylene,LB
+37187,0.02092218,Chrysene,LB
+37185,624.054,Ethyl Benzene,LB
+37181,0.0002754776,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.0010819812,Benzo[b]Fluoranthene,LB
+37181,0.03885652,Fluoranthene,LB
+37181,0.003628898,Benzo[a]Pyrene,LB
+37181,0.0121011,Benz[a]Anthracene,LB
+37181,1.0591996e-06,Mercury,LB
+37181,0.0001067924,Nitrous Oxide,TON
+37181,0.26376,Nitrogen Oxides,TON
+37181,0.01324847,PM2.5 Primary (Filt + Cond),TON
+37181,1.5487784,Styrene,LB
+37181,154.61004,Xylenes (Mixed Isomers),LB
+37181,0.004113506,Nickel,LB
+37181,20.80082,Acetaldehyde,LB
+37181,29.49848,Carbon Monoxide,TON
+37181,0.009630133,Elemental Carbon portion of PM2.5-PRI,TON
+37181,3.20902,Nitrogen Oxides,TON
+37181,0.001629783,Sulfate Portion of PM2.5-PRI,TON
+37179,15909.812,Xylenes (Mixed Isomers),LB
+37179,8307.766,"2,2,4-Trimethylpentane",LB
+37169,0.1314538,Toluene,LB
+37169,5.189478e-05,Chrysene,LB
+37169,0.0002470194,Fluorene,LB
+37169,0.2693126,Methane,TON
+37169,0.01054648,Nitrous Oxide,TON
+37169,3.620573e-05,Sulfate Portion of PM2.5-PRI,TON
+37169,0.3324816,Ethyl Benzene,LB
+37169,0.0018967128,Benzo[b]Fluoranthene,LB
+37169,0.0002631942,Benzo[k]Fluoranthene,LB
+37169,0.006357096,Benzo[a]Pyrene,LB
+37169,0.000261693,"Dibenzo[a,h]Anthracene",LB
+37169,0.002195166,Sulfate Portion of PM2.5-PRI,TON
+37169,683.695,Naphthalene,LB
+37169,6.831129,Methane,TON
+37169,104425,Carbon Dioxide,TON
+37169,314.499,Styrene,LB
+37169,19.07489,Fluoranthene,LB
+37169,3.311428,Chrysene,LB
+37169,3.99645,Benzo[a]Pyrene,LB
+37169,4.460717,PM2.5 Primary (Filt + Cond),TON
+37165,0.010725258,Ethyl Benzene,LB
+37165,0.012452332,"1,3-Butadiene",LB
+37165,0.000180516,Fluoranthene,LB
+37165,5.833374e-05,Chrysene,LB
+37165,3.151454e-05,Benz[a]Anthracene,LB
+37165,0.2273269,Methane,TON
+37165,3883.93,Ethyl Benzene,LB
+37165,134.0255,Propionaldehyde,LB
+37165,14293.454,Xylenes (Mixed Isomers),LB
+37165,1757.234,Carbon Monoxide,TON
+37165,2.818889,PM2.5 Primary (Filt + Cond),TON
+37165,0.04956362,Mercury,LB
+37165,2200.284,Acetaldehyde,LB
+37155,0.18972106,Benz[a]Anthracene,LB
+37155,108.98928,Acetaldehyde,LB
+37155,0.07471002,Ammonia,TON
+37155,0.302174,PM2.5 Primary (Filt + Cond),TON
+37155,0.01170549,Sulfate Portion of PM2.5-PRI,TON
+37155,8.356742,Ethyl Benzene,LB
+37155,1.3586186,Pyrene,LB
+37155,0.002083458,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,1.1045622,Fluoranthene,LB
+37155,1.3615018,Acenaphthylene,LB
+37161,10706.81,Ethyl Benzene,LB
+37161,422.9624,Styrene,LB
+37161,0.009035996,Chromium (VI),LB
+37161,5.690496,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,180182,Carbon Dioxide,TON
+37161,6.679072,PM2.5 Primary (Filt + Cond),TON
+37143,7.613006e-06,Benz[a]Anthracene,LB
+37143,2.730196e-07,Nickel,LB
+37143,2.076193e-05,Methane,TON
+37143,2.270671e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37143,3.787396e-06,Ammonia,TON
+37143,0.0007619908,Nitrogen Oxides,TON
+37143,0.000673693,Styrene,LB
+37143,0.0005768728,Propionaldehyde,LB
+37143,9.625338e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.018606982,Benzo[k]Fluoranthene,LB
+37141,21.20812,Ethyl Benzene,LB
+37141,16.23347,Hexane,LB
+37141,0.02757176,"Benzo[g,h,i,]Perylene",LB
+37141,14.9027,Carbon Monoxide,TON
+37141,1.761971,PM10-Primary from certain diesel engines,TON
+37141,1.620988,PM25-Primary from certain diesel engines,TON
+37141,0.6483961,Organic Carbon portion of PM2.5-PRI,TON
+37139,29.11198,Ethyl Benzene,LB
+37139,1.0550994,Styrene,LB
+37139,173.95024,Toluene,LB
+37139,107.69872,Xylenes (Mixed Isomers),LB
+37139,1.8164866e-05,Chromium (VI),LB
+37139,0.03681487,Methane,TON
+37139,0.01027961,Organic Carbon portion of PM2.5-PRI,TON
+37137,8.02634e-05,Benzo[k]Fluoranthene,LB
+37137,0.02667114,Pyrene,LB
+37137,0.006387486,Benz[a]Anthracene,LB
+37137,0.001738112,Methane,TON
+37133,6.30277,Benzo[k]Fluoranthene,LB
+37133,6.421856,Benz[a]Anthracene,LB
+37133,2.854776,Nickel,LB
+37133,4.3774,Arsenic,LB
+37133,416.6746,Volatile Organic Compounds,TON
+37133,20.20428,Anthracene,LB
+37133,8.192332,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,2.799994,"1,3-Butadiene",LB
+37129,0.06318592,Fluoranthene,LB
+37129,19.04099,Carbon Monoxide,TON
+37127,0.2053304,Benzo[b]Fluoranthene,LB
+37127,6.918924,Fluoranthene,LB
+37127,0.344404,Manganese,LB
+37127,420.6658,Acetaldehyde,LB
+37127,0.9065387,Elemental Carbon portion of PM2.5-PRI,TON
+37125,64.84494,"1,3-Butadiene",LB
+37125,130.20124,Toluene,LB
+37125,5.417338,Anthracene,LB
+37125,0.0004306984,Chromium (VI),LB
+37125,48.79248,"2,2,4-Trimethylpentane",LB
+37125,1.4151488,Benz[a]Anthracene,LB
+37007,0.11365772,Anthracene,LB
+37007,0.13882986,"Benzo[g,h,i,]Perylene",LB
+37007,50.32584,Formaldehyde,LB
+37007,0.010113204,Arsenic,LB
+37007,863.004,Carbon Dioxide,TON
+37007,0.02882818,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.01774677,Sulfur Dioxide,TON
+37077,0.3919054,Naphthalene,LB
+37077,0.05490538,Ammonia,TON
+37077,0.01480164,Pyrene,LB
+37077,0.013082026,Fluoranthene,LB
+37077,0.016617936,Benzo[a]Pyrene,LB
+37077,0.0005967846,Sulfate Portion of PM2.5-PRI,TON
+37077,0.4822149,Volatile Organic Compounds,TON
+37053,0.0203089,Acenaphthylene,LB
+37053,52.42742,Acetaldehyde,LB
+37053,0.01870434,Sulfur Dioxide,TON
+37029,0.02007432,Acrolein,LB
+37029,0.0009771882,"Benzo[g,h,i,]Perylene",LB
+37029,0.00019435208,Benzo[b]Fluoranthene,LB
+37029,0.0001496074,Chrysene,LB
+37029,0.000362492,Benzo[a]Pyrene,LB
+37015,1.0741638,Hexane,LB
+37141,0.03127674,Styrene,LB
+37141,0.002142558,Pyrene,LB
+37141,5.725478e-05,"Dibenzo[a,h]Anthracene",LB
+37141,0.05643148,Naphthalene,LB
+37141,203.147,Carbon Dioxide,TON
+37117,1.2117222,Ethyl Benzene,LB
+37117,9.667954,Toluene,LB
+37093,0.03099339,Ammonia,TON
+37093,0.04861565,PM10 Primary (Filt + Cond),TON
+37093,0.01347379,PM2.5 Primary (Filt + Cond),TON
+37093,0.000369369,Sulfate Portion of PM2.5-PRI,TON
+37093,0.004815144,Benzo[b]Fluoranthene,LB
+37093,0.003817504,Chrysene,LB
+37091,0.4305832,Toluene,LB
+37091,1.576114e-06,Chromium (VI),LB
+37091,0.0003663574,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.0003858286,Manganese,LB
+37091,0.00018462436,Acenaphthene,LB
+37091,0.009627658,Naphthalene,LB
+37091,26.50311,Carbon Dioxide,TON
+37091,0.0008053871,Sulfur Dioxide,TON
+37085,154.04098,Propionaldehyde,LB
+37085,13.843438,Pyrene,LB
+37085,8799.684,Benzene,LB
+37085,44.6756,Phenanthrene,LB
+37077,0.14269942,Acenaphthene,LB
+37077,1.029763,Carbon Monoxide,TON
+37077,2.217606,Nitrogen Oxides,TON
+37077,0.0524692,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.006172911,Sulfate Portion of PM2.5-PRI,TON
+37077,0.4767064,Pyrene,LB
+37077,0.06989666,Chrysene,LB
+37077,47.45992,Formaldehyde,LB
+37077,0.13346232,Fluorene,LB
+37077,1.255915,Acrolein,LB
+37077,58.28974,Hexane,LB
+37077,0.11573558,Pyrene,LB
+37077,152.95562,Xylenes (Mixed Isomers),LB
+37059,86.1799,Acrolein,LB
+37059,30403.53,Carbon Dioxide,TON
+37059,0.5588186,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.305682,Benzo[a]Pyrene,LB
+37059,526.656,Acetaldehyde,LB
+37059,10.1467,Phenanthrene,LB
+37059,0.3906324,Anthracene,LB
+37059,5.998396,Propionaldehyde,LB
+37059,0.004673434,"Benzo[g,h,i,]Perylene",LB
+37059,0.07461268,Benzo[a]Pyrene,LB
+37059,0.7828786,Fluorene,LB
+37059,0.006233136,Sulfur Dioxide,TON
+37057,0.016727702,Acrolein,LB
+37057,5.216204,Toluene,LB
+37057,1.0695274e-05,"Dibenzo[a,h]Anthracene",LB
+37057,3.366768e-07,Mercury,LB
+37057,0.0010608492,Acenaphthene,LB
+37057,0.001444804,Methane,TON
+37055,0.2524764,Ethyl Benzene,LB
+37055,0.4707288,Xylenes (Mixed Isomers),LB
+37055,0.010893384,Chrysene,LB
+37055,7.560578,Formaldehyde,LB
+37055,0.09414346,Phenanthrene,LB
+37055,0.01668583,PM25-Primary from certain diesel engines,TON
+37055,0.001108512,Ammonia,TON
+37055,0.00779882,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.04492728,Volatile Organic Compounds,TON
+37051,6.307674,Styrene,LB
+37051,25.4733,"1,3-Butadiene",LB
+37051,0.2420132,Anthracene,LB
+37051,566.7474,Xylenes (Mixed Isomers),LB
+37051,94.95434,Formaldehyde,LB
+37051,0.1580332,Benzo[a]Pyrene,LB
+37051,0.1478593,Methane,TON
+37051,127.1122,Carbon Monoxide,TON
+37051,0.1828066,Nitrous Oxide,TON
+37051,14.30876,Nitrogen Oxides,TON
+37051,0.09730244,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.8124603,PM10 Primary (Filt + Cond),TON
+37043,4.8679e-07,Chromium (VI),LB
+37043,0.01231052,Acenaphthylene,LB
+37043,9.33008e-05,Arsenic,LB
+37043,0.00547651,Fluorene,LB
+37043,2.862517e-06,Nitrate portion of PM2.5-PRI,TON
+37043,0.0004004847,Sulfur Dioxide,TON
+37039,18.461804,Toluene,LB
+37039,0.7377086,Anthracene,LB
+37039,11.764496,Propionaldehyde,LB
+37039,6.388686,"2,2,4-Trimethylpentane",LB
+37039,21.8479,Benzene,LB
+37039,102.15836,Acetaldehyde,LB
+37039,27.18633,Nitrogen Oxides,TON
+37039,1.007342,PM2.5 Primary (Filt + Cond),TON
+37039,1.303922,Volatile Organic Compounds,TON
+37039,0.0010381508,Benzo[k]Fluoranthene,LB
+37039,5.53216,Nitrogen Oxides,TON
+37039,0.2177278,Anthracene,LB
+37039,0.03618463,Organic Carbon portion of PM2.5-PRI,TON
+37025,2.312704e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,1.4118582e-05,Chrysene,LB
+37025,0.005175614,"1,3-Butadiene",LB
+37025,0.03696252,Hexane,LB
+37025,3.666478e-05,Anthracene,LB
+37025,0.013706264,Formaldehyde,LB
+37025,0.04438692,Benzene,LB
+37025,4.252272e-05,Acenaphthene,LB
+37025,0.0002320174,Phenanthrene,LB
+37025,4.361057e-05,Nitrous Oxide,TON
+37025,2.973405e-05,PM2.5 Primary (Filt + Cond),TON
+37171,0.3499046,Toluene,LB
+37171,0.0009155484,Pyrene,LB
+37171,0.0016934054,Naphthalene,LB
+37171,0.7222717,Methane,TON
+37171,0.01963377,PM10 Primary (Filt + Cond),TON
+37167,16.61863,Acrolein,LB
+37167,683.5392,Hexane,LB
+37167,1.2612252,Fluoranthene,LB
+37167,630.2114,"2,2,4-Trimethylpentane",LB
+37167,0.2298776,Benz[a]Anthracene,LB
+37167,0.8682196,Acenaphthene,LB
+37167,4.70938,Phenanthrene,LB
+37167,1.758654,Fluorene,LB
+37167,0.5009547,Nitrous Oxide,TON
+37167,0.745753,Ammonia,TON
+37167,22.58312,Nitrogen Oxides,TON
+37161,0.0014523338,Toluene,LB
+37161,0.000322542,Hexane,LB
+37161,8.626302e-07,Pyrene,LB
+37161,2.596208e-07,Benzo[k]Fluoranthene,LB
+37161,2.20199e-07,Chrysene,LB
+37161,2.630705e-07,Methane,TON
+37161,7.002399e-08,Elemental Carbon portion of PM2.5-PRI,TON
+37141,267.668,Naphthalene,LB
+37141,1490.684,Carbon Monoxide,TON
+37141,4.438412,Anthracene,LB
+37141,7.168916,"Benzo[g,h,i,]Perylene",LB
+37141,1514.4806,Formaldehyde,LB
+37127,18.538008,Ethyl Benzene,LB
+37127,0.13642096,Benzo[b]Fluoranthene,LB
+37127,557.1568,Formaldehyde,LB
+37127,0.2096468,Manganese,LB
+37127,61.39888,Naphthalene,LB
+37127,16.21,Carbon Monoxide,TON
+37121,2.074104,Propionaldehyde,LB
+37121,0.0015492432,"Benzo[g,h,i,]Perylene",LB
+37121,0.0009973604,Benzo[k]Fluoranthene,LB
+37121,0.458238,Phenanthrene,LB
+37121,1.581795,Carbon Monoxide,TON
+37121,0.03447134,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.001783653,Sulfur Dioxide,TON
+37111,0.14478266,Formaldehyde,LB
+37111,1.7521462e-06,Mercury,LB
+37111,7.46742e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.0002954543,Ammonia,TON
+37111,0.0002383842,Sulfur Dioxide,TON
+37111,0.2219694,Ethyl Benzene,LB
+37111,0.0375891,"1,3-Butadiene",LB
+37111,0.291921,Hexane,LB
+37111,0.0003703778,Anthracene,LB
+37111,0.007832146,Propionaldehyde,LB
+37111,0.0004828968,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.002164016,Manganese,LB
+37113,0.000217079,Nickel,LB
+37113,2.797366,Ethyl Benzene,LB
+37113,0.00504205,"Benzo[g,h,i,]Perylene",LB
+37113,0.002966883,Nitrous Oxide,TON
+37113,8.59755e-05,Sulfate Portion of PM2.5-PRI,TON
+37101,1.6463016,Styrene,LB
+37101,0.9482132,Fluoranthene,LB
+37101,0.6436938,Acenaphthylene,LB
+37101,0.05223272,Manganese,LB
+37101,0.09697804,Methane,TON
+37101,0.5529637,PM10 Primary (Filt + Cond),TON
+37101,0.02044912,Sulfate Portion of PM2.5-PRI,TON
+37101,0.07454318,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,1585.074,Formaldehyde,LB
+37101,164.30072,Naphthalene,LB
+37101,26413.79,Carbon Dioxide,TON
+37101,3.646655,PM25-Primary from certain diesel engines,TON
+37101,3.887821,PM2.5 Primary (Filt + Cond),TON
+37101,0.66887,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.04304698,Sulfur Dioxide,TON
+37101,16.337044,"1,3-Butadiene",LB
+37101,41.98496,Toluene,LB
+37101,0.3790136,Benz[a]Anthracene,LB
+37101,50.49104,Benzene,LB
+37101,0.03844578,Arsenic,LB
+37101,29.31048,Carbon Monoxide,TON
+37101,0.08291678,Manganese,LB
+37101,0.018157308,Nickel,LB
+37101,0.2019748,Acenaphthene,LB
+37101,23.13528,"1,3-Butadiene",LB
+37101,0.17664618,Anthracene,LB
+37101,0.1009808,Benzo[k]Fluoranthene,LB
+37099,0.11242294,Anthracene,LB
+37099,3.039012,Benzene,LB
+37099,0.03019407,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.0003885108,Benzo[a]Pyrene,LB
+37015,1.385922e-06,Nitrate portion of PM2.5-PRI,TON
+37015,0.09517746,Ethyl Benzene,LB
+37015,0.0001548566,Anthracene,LB
+37163,2.95111e-05,"Dibenzo[a,h]Anthracene",LB
+37163,0.0014548222,Manganese,LB
+37163,0.8512739,Carbon Monoxide,TON
+37163,0.0006347614,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.03924733,Volatile Organic Compounds,TON
+37163,1.3515406,Toluene,LB
+37163,0.002908268,Fluoranthene,LB
+37163,0.0039019,Arsenic,LB
+37163,0.01897461,PM10 Primary (Filt + Cond),TON
+37163,0.001911491,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.2039824,Toluene,LB
+37149,8.764174e-05,Anthracene,LB
+37149,0.02191296,Propionaldehyde,LB
+37149,0.000707911,"Benzo[g,h,i,]Perylene",LB
+37149,0.0002622932,Benzo[a]Pyrene,LB
+37149,0.265264,Benzene,LB
+37149,9.09076e-05,Acenaphthene,LB
+37149,9.39105e-06,Sulfate Portion of PM2.5-PRI,TON
+37105,14.564814,Toluene,LB
+37105,12.864564,Xylenes (Mixed Isomers),LB
+37105,0.007542182,Benzo[b]Fluoranthene,LB
+37105,0.007542182,Benzo[k]Fluoranthene,LB
+37105,0.00987579,Arsenic,LB
+37105,74.15538,Acetaldehyde,LB
+37105,0.3230408,Naphthalene,LB
+37105,0.000623025,Sulfate Portion of PM2.5-PRI,TON
+37017,2.086388,Acrolein,LB
+37017,1.935164,Toluene,LB
+37017,0.09640888,Anthracene,LB
+37017,1.3779376,Propionaldehyde,LB
+37017,1.9777956,Xylenes (Mixed Isomers),LB
+37017,0.0017108854,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.6930252,"2,2,4-Trimethylpentane",LB
+37017,0.07610196,PM2.5 Primary (Filt + Cond),TON
+37017,0.01366389,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.14131348,Anthracene,LB
+37007,0.14990788,Acenaphthene,LB
+37007,0.005510554,Ammonia,TON
+37007,0.09779168,PM2.5 Primary (Filt + Cond),TON
+37017,0.1500284,Ethyl Benzene,LB
+37017,0.8480022,Toluene,LB
+37017,0.000225215,Anthracene,LB
+37017,9.296688e-05,Benzo[k]Fluoranthene,LB
+37017,4.037426e-05,Manganese,LB
+37017,0.0001355513,Ammonia,TON
+37017,0.01223696,Nitrogen Oxides,TON
+37017,0.0001057182,Sulfur Dioxide,TON
+37003,0.2265802,Nitrous Oxide,TON
+37003,0.05432384,Sulfur Dioxide,TON
+37003,327.303,Hexane,LB
+37003,0.09480306,Benzo[k]Fluoranthene,LB
+37059,13.995982,Toluene,LB
+37059,12.828902,Xylenes (Mixed Isomers),LB
+37059,0.00618728,Benzo[k]Fluoranthene,LB
+37059,0.0003588164,Mercury,LB
+37059,78.44964,Acetaldehyde,LB
+37059,0.03619136,Phenanthrene,LB
+37059,0.05009499,Methane,TON
+37059,0.03618005,Ammonia,TON
+37059,3.862988e-05,Nitrate portion of PM2.5-PRI,TON
+37059,0.7713953,Nitrogen Oxides,TON
+37059,0.007025374,Organic Carbon portion of PM2.5-PRI,TON
+37047,8.59196,Hexane,LB
+37047,0.010338286,Acenaphthene,LB
+37047,0.6592693,Volatile Organic Compounds,TON
+37029,3.162766,Toluene,LB
+37029,0.03030642,Volatile Organic Compounds,TON
+37125,0.01081131,Methane,TON
+37125,0.1051924,Volatile Organic Compounds,TON
+37125,0.005858604,Acenaphthylene,LB
+37125,15.155776,Acetaldehyde,LB
+37125,0.3054428,Propionaldehyde,LB
+37125,0.002171134,Fluoranthene,LB
+37199,4653.128,Hexane,LB
+37199,2346.3,Acetaldehyde,LB
+37199,3.71611,Methane,TON
+37197,58.93482,"1,3-Butadiene",LB
+37197,43.84958,Hexane,LB
+37197,0.004807656,"Dibenzo[a,h]Anthracene",LB
+37197,42.61826,"2,2,4-Trimethylpentane",LB
+37197,167.24368,Benzene,LB
+37197,15.507474,Phenanthrene,LB
+37197,194.28132,Naphthalene,LB
+37197,113.4075,Carbon Monoxide,TON
+37197,0.09367674,Sulfur Dioxide,TON
+37197,0.04668416,Sulfate Portion of PM2.5-PRI,TON
+37197,52.74472,Hexane,LB
+37197,59.90194,Xylenes (Mixed Isomers),LB
+37195,0.0003561154,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.00019729398,Benzo[k]Fluoranthene,LB
+37195,88.63448,Formaldehyde,LB
+37195,0.04635764,Benz[a]Anthracene,LB
+37195,7.746034,Benzene,LB
+37195,0.687141,Phenanthrene,LB
+37195,0.0715542,Methane,TON
+37195,2.87078,Ethyl Benzene,LB
+37195,2.222654,Hexane,LB
+37195,0.0162806,PM25-Primary from certain diesel engines,TON
+37195,0.7358651,Nitrogen Oxides,TON
+37195,0.003145382,Sulfate Portion of PM2.5-PRI,TON
+37195,0.4530807,Volatile Organic Compounds,TON
+37193,0.12262712,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.0871379,Chrysene,LB
+37193,76.51467,Carbon Monoxide,TON
+37187,0.019221232,"Benzo[g,h,i,]Perylene",LB
+37187,9.357936,Ethyl Benzene,LB
+37187,0.007204588,Benzo[a]Pyrene,LB
+37187,0.0006418956,Nickel,LB
+37187,0.02780014,Fluorene,LB
+37187,2.18021e-05,Nitrate portion of PM2.5-PRI,TON
+37181,0.00014634626,Anthracene,LB
+37181,0.3477976,Xylenes (Mixed Isomers),LB
+37181,0.0002553912,Fluoranthene,LB
+37181,3.301747,Carbon Dioxide,TON
+37181,8.5419e-05,Ammonia,TON
+37181,9.53932e-06,Arsenic,LB
+37189,35.76554,Benzene,LB
+37189,9.765554e-05,Mercury,LB
+37189,4.406392,Phenanthrene,LB
+37189,0.8050812,PM25-Primary from certain diesel engines,TON
+37189,0.2974861,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.03830222,Sulfate Portion of PM2.5-PRI,TON
+37189,13.102634,Ethyl Benzene,LB
+37185,154.98798,Hexane,LB
+37185,0.17188912,Pyrene,LB
+37185,0.0329687,Benzo[k]Fluoranthene,LB
+37185,0.04732854,Benzo[a]Pyrene,LB
+37185,5.314878,Naphthalene,LB
+37185,0.0001348923,Nitrate portion of PM2.5-PRI,TON
+37179,11739.906,Formaldehyde,LB
+37179,5.37632,Arsenic,LB
+37179,38.12708,Acenaphthene,LB
+37179,206.7564,Phenanthrene,LB
+37179,77.2298,Fluorene,LB
+37179,23195.18,Ethyl Benzene,LB
+37179,63.1474,Pyrene,LB
+37193,4.418403,Carbon Monoxide,TON
+37193,0.00303542,"Benzo[g,h,i,]Perylene",LB
+37193,0.012257872,Benzo[b]Fluoranthene,LB
+37193,0.3315884,PM10 Primary (Filt + Cond),TON
+37193,0.02909315,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.009107573,Sulfur Dioxide,TON
+37183,0.265879,Fluoranthene,LB
+37183,61.85532,Formaldehyde,LB
+37183,2.895162,Propionaldehyde,LB
+37183,0.007291008,Nickel,LB
+37183,0.3668314,Fluorene,LB
+37183,80.03319,Carbon Monoxide,TON
+37183,3009.843,Carbon Dioxide,TON
+37183,0.0003044134,Nitrate portion of PM2.5-PRI,TON
+37085,1.407861,Styrene,LB
+37085,42.32742,Acetaldehyde,LB
+37085,0.1206405,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.002790798,Nitrous Oxide,TON
+37085,0.001469345,Benzo[k]Fluoranthene,LB
+37085,0.0005281294,Chromium (VI),LB
+37085,125.8758,Carbon Monoxide,TON
+37085,1.792794,PM25-Primary from certain diesel engines,TON
+37085,0.07568904,Sulfate Portion of PM2.5-PRI,TON
+37067,8.032076,Propionaldehyde,LB
+37067,0.00713206,"Benzo[g,h,i,]Perylene",LB
+37067,171.94864,Formaldehyde,LB
+37067,0.02514899,Sulfate Portion of PM2.5-PRI,TON
+37067,15.202816,Benzene,LB
+37067,0.02720358,Nickel,LB
+37067,17.878238,Naphthalene,LB
+37067,0.07541284,Ammonia,TON
+37063,0.0018967878,Phenanthrene,LB
+37063,1.142289,Carbon Monoxide,TON
+37063,0.00015223856,Chrysene,LB
+37063,0.1070564,Volatile Organic Compounds,TON
+37053,18.4146,Nitrogen Oxides,TON
+37053,0.2060794,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.4780828,Benz[a]Anthracene,LB
+37053,1.077134,Volatile Organic Compounds,TON
+37053,0.0014559476,Benz[a]Anthracene,LB
+37053,0.001123351,Sulfur Dioxide,TON
+37053,0.008019076,Fluoranthene,LB
+37053,0.0014352304,Chrysene,LB
+37053,0.7233976,"1,3-Butadiene",LB
+37045,40.24922,Propionaldehyde,LB
+37047,0.995227,Nitrous Oxide,TON
+37047,0.00233762,Nitrate portion of PM2.5-PRI,TON
+37047,0.640896,Sulfur Dioxide,TON
+37047,41.50254,Propionaldehyde,LB
+37045,4.729224e-05,Chromium (VI),LB
+37045,0.07319412,Ammonia,TON
+37045,0.03846911,Sulfur Dioxide,TON
+37033,1.4289828e-06,Chromium (VI),LB
+37033,0.004893734,"Benzo[g,h,i,]Perylene",LB
+37033,4.219906e-05,"Dibenzo[a,h]Anthracene",LB
+37033,0.000273862,Arsenic,LB
+37033,48.87366,Carbon Dioxide,TON
+37033,0.0006331809,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,5.980191e-05,Sulfate Portion of PM2.5-PRI,TON
+37025,3.398676e-05,Acrolein,LB
+37025,0.002726378,Xylenes (Mixed Isomers),LB
+37025,0.000852562,"2,2,4-Trimethylpentane",LB
+37025,3.293372e-06,Manganese,LB
+37025,2.100424e-08,Mercury,LB
+37025,1.153322e-06,Organic Carbon portion of PM2.5-PRI,TON
+37025,1.553826e-05,PM10 Primary (Filt + Cond),TON
+37029,0.005050436,Phenanthrene,LB
+37029,0.0004251887,Methane,TON
+37029,0.0001990201,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.000365826,Sulfur Dioxide,TON
+37029,6.35542e-05,Arsenic,LB
+37029,0.0009303994,Acenaphthene,LB
+37175,0.0003051054,Fluoranthene,LB
+37175,0.00017700756,Benzo[k]Fluoranthene,LB
+37175,0.00013746868,Chrysene,LB
+37175,0.331929,Formaldehyde,LB
+37175,0.19333832,"2,2,4-Trimethylpentane",LB
+37175,0.0004547341,Nitrous Oxide,TON
+37175,0.001085816,Ammonia,TON
+37175,0.10484272,Ethyl Benzene,LB
+37175,0.374294,Xylenes (Mixed Isomers),LB
+37175,1.2708932e-06,Chromium (VI),LB
+37155,1.671385,Ethyl Benzene,LB
+37155,0.2892504,Acrolein,LB
+37155,7.526648,Toluene,LB
+37155,0.00019743992,"Dibenzo[a,h]Anthracene",LB
+37155,0.00578613,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.02019424,Sulfur Dioxide,TON
+37155,0.0003817083,Sulfate Portion of PM2.5-PRI,TON
+37105,5.689468,"2,2,4-Trimethylpentane",LB
+37177,32.87096,"2,2,4-Trimethylpentane",LB
+37177,0.0016670706,Manganese,LB
+37177,0.0241735,Acenaphthene,LB
+37177,0.4554858,Acrolein,LB
+37177,0.04051488,Pyrene,LB
+37177,0.010640774,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.001111266,Nitrous Oxide,TON
+37177,0.01030276,PM2.5 Primary (Filt + Cond),TON
+37169,6.639208e-05,Anthracene,LB
+37169,0.00012971326,Pyrene,LB
+37169,0.0003527082,Acenaphthylene,LB
+37169,0.02357376,Formaldehyde,LB
+37169,2.588434e-06,Manganese,LB
+37169,6.599052e-07,Nickel,LB
+37169,1.0119088e-06,Arsenic,LB
+37169,7.740326e-05,Acenaphthene,LB
+37169,9.012212e-06,Ammonia,TON
+37169,4.819349e-05,PM10 Primary (Filt + Cond),TON
+37165,0.3410584,Fluoranthene,LB
+37165,1.035399e-05,Mercury,LB
+37165,0.002164926,Arsenic,LB
+37165,24.20168,Acetaldehyde,LB
+37165,0.3641474,Fluorene,LB
+37165,0.001210977,Nitrous Oxide,TON
+37165,0.009874012,Ammonia,TON
+37163,1.9148894,Pyrene,LB
+37163,0.008447006,"Benzo[g,h,i,]Perylene",LB
+37163,1.4520428,Fluoranthene,LB
+37163,0.005587506,Benzo[k]Fluoranthene,LB
+37163,189.84,Formaldehyde,LB
+37163,7.573924,Carbon Monoxide,TON
+37161,2.035666,Styrene,LB
+37161,0.7946612,Pyrene,LB
+37161,0.005090548,Benzo[b]Fluoranthene,LB
+37161,0.017063696,Benzo[a]Pyrene,LB
+37161,0.1517458,PM2.5 Primary (Filt + Cond),TON
+37161,116.38928,Toluene,LB
+37161,0.012178248,Benzo[k]Fluoranthene,LB
+37161,0.04367758,Acenaphthene,LB
+37159,15.15952,Acrolein,LB
+37159,3.636606,Acenaphthylene,LB
+37159,0.2243064,Chrysene,LB
+37159,1073.689,Benzene,LB
+37159,0.3704955,Methane,TON
+37159,4725.439,Carbon Dioxide,TON
+37159,0.04545419,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.5677991,Ammonia,TON
+37159,0.08471691,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.580885,Sulfur Dioxide,TON
+37151,49.49496,"1,3-Butadiene",LB
+37151,0.2016872,Benzo[b]Fluoranthene,LB
+37151,8.071788,Acenaphthylene,LB
+37151,0.7931708,Manganese,LB
+37151,0.2373518,Nickel,LB
+37151,0.1803064,Arsenic,LB
+37151,21.40168,Phenanthrene,LB
+37151,0.0014462242,Anthracene,LB
+37151,1.10529e-07,Chromium (VI),LB
+37151,0.5406088,Formaldehyde,LB
+37151,1.3815882e-05,Nickel,LB
+37151,0.03274152,Volatile Organic Compounds,TON
+37139,0.3193928,Chrysene,LB
+37139,0.08054688,Manganese,LB
+37139,1.4627082,Fluorene,LB
+37139,21.2304,Naphthalene,LB
+37139,2890.123,Carbon Dioxide,TON
+37139,0.2371679,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.0006009538,"Dibenzo[a,h]Anthracene",LB
+37191,0.0358807,Manganese,LB
+37191,0.07056958,Phenanthrene,LB
+37191,0.09014115,Ammonia,TON
+37191,0.3587238,Styrene,LB
+37191,0.06967636,"Benzo[g,h,i,]Perylene",LB
+37191,0.013790418,Benzo[b]Fluoranthene,LB
+37191,0.05736694,Acenaphthylene,LB
+37191,9.746058e-05,Nitrate portion of PM2.5-PRI,TON
+37191,0.001171827,Sulfate Portion of PM2.5-PRI,TON
+37159,26520.32,Hexane,LB
+37159,34319.2,Benzene,LB
+37159,11766.564,Acetaldehyde,LB
+37159,3.033778,Elemental Carbon portion of PM2.5-PRI,TON
+37159,7.385804,Organic Carbon portion of PM2.5-PRI,TON
+37159,8.955818,Sulfur Dioxide,TON
+37159,0.4214959,Sulfate Portion of PM2.5-PRI,TON
+37159,78546.32,Xylenes (Mixed Isomers),LB
+37159,12.989832,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,160.8236,Acenaphthylene,LB
+37153,2.14963,Toluene,LB
+37153,2.280864,Xylenes (Mixed Isomers),LB
+37153,1.3436736e-05,Chromium (VI),LB
+37153,0.0002826176,"Benzo[g,h,i,]Perylene",LB
+37153,0.007095918,Nickel,LB
+37153,0.001037926,Elemental Carbon portion of PM2.5-PRI,TON
+37147,5.972876,Fluorene,LB
+37147,2.268226,PM2.5 Primary (Filt + Cond),TON
+37147,0.1127814,Sulfate Portion of PM2.5-PRI,TON
+37145,61.5504,Xylenes (Mixed Isomers),LB
+37145,24.37898,"2,2,4-Trimethylpentane",LB
+37145,0.6954376,Benz[a]Anthracene,LB
+37145,95.50682,Benzene,LB
+37145,49.91936,Carbon Monoxide,TON
+37145,0.001594606,Nitrate portion of PM2.5-PRI,TON
+37145,0.04165078,Sulfur Dioxide,TON
+37145,40.48754,Ethyl Benzene,LB
+37145,1.1667284,Acrolein,LB
+37145,249.5536,Toluene,LB
+37145,0.0170563,Benzo[a]Pyrene,LB
+37145,0.0018641192,Nickel,LB
+37145,0.002858412,Arsenic,LB
+37145,0.06127724,PM10 Primary (Filt + Cond),TON
+37145,0.0004475811,Sulfate Portion of PM2.5-PRI,TON
+37145,0.002291042,Chrysene,LB
+37145,3.275664e-06,Mercury,LB
+37145,11.34831,Carbon Dioxide,TON
+37145,35.14716,Toluene,LB
+37145,0.01579882,Pyrene,LB
+37141,0.3601694,Acrolein,LB
+37141,6.451756e-08,Chromium (VI),LB
+37141,0.001532608,Phenanthrene,LB
+37141,0.0007265752,Fluorene,LB
+37141,0.00530467,Ammonia,TON
+37141,0.003807505,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.0001235443,Sulfate Portion of PM2.5-PRI,TON
+37141,0.08319418,Volatile Organic Compounds,TON
+37135,0.001548959,Nitrous Oxide,TON
+37135,0.13867408,Anthracene,LB
+37135,0.3022702,Fluoranthene,LB
+37135,43.15792,Formaldehyde,LB
+37135,1.8019108e-05,Mercury,LB
+37135,0.0353895,Styrene,LB
+37135,0.03137592,Propionaldehyde,LB
+37135,0.0005126774,Benzo[k]Fluoranthene,LB
+37135,0.00663689,Acenaphthylene,LB
+37135,0.002948012,Fluorene,LB
+37135,0.00125608,PM10 Primary (Filt + Cond),TON
+37135,0.0001948918,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,1.3337958e-07,"Dibenzo[a,h]Anthracene",LB
+37091,3.813758e-06,Benz[a]Anthracene,LB
+37091,6.168434e-05,Phenanthrene,LB
+37091,8.34891e-06,Methane,TON
+37091,1.458736e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,16.229784,Toluene,LB
+37083,1.040581,Fluoranthene,LB
+37081,6854.34,"1,3-Butadiene",LB
+37081,42285.74,"2,2,4-Trimethylpentane",LB
+37081,0.8233692,Mercury,LB
+37081,89.99206,Fluorene,LB
+37081,26.0821,Methane,TON
+37081,93.34331,Ammonia,TON
+37079,0.01101417,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.0897516,Anthracene,LB
+37079,0.04514406,Benzo[a]Pyrene,LB
+37079,153.58282,"2,2,4-Trimethylpentane",LB
+37079,0.00724338,Manganese,LB
+37079,22.98664,Acetaldehyde,LB
+37079,29.4895,Carbon Monoxide,TON
+37079,731.3106,Carbon Dioxide,TON
+37077,10.464196,Ethyl Benzene,LB
+37077,10.51094,"1,3-Butadiene",LB
+37077,25.1769,Acrolein,LB
+37077,0.010492322,Benzo[k]Fluoranthene,LB
+37077,29.96478,Benzene,LB
+37077,9.146771,Carbon Monoxide,TON
+37077,1.565076,PM2.5 Primary (Filt + Cond),TON
+37077,0.03617894,Sulfate Portion of PM2.5-PRI,TON
+37073,0.310882,Organic Carbon portion of PM2.5-PRI,TON
+37073,1.644088,PM10 Primary (Filt + Cond),TON
+37073,189.57828,"1,3-Butadiene",LB
+37073,5227.14,Toluene,LB
+37073,23.53512,Propionaldehyde,LB
+37073,3124.092,Xylenes (Mixed Isomers),LB
+37073,0.1671008,Nickel,LB
+37073,18465.79,Carbon Dioxide,TON
+37069,0.15249692,Hexane,LB
+37069,0.4048932,Xylenes (Mixed Isomers),LB
+37069,0.0503776,Fluoranthene,LB
+37069,0.005179988,Benzo[a]Pyrene,LB
+37069,0.04488392,Fluorene,LB
+37069,48.00826,Carbon Dioxide,TON
+37069,0.03517734,Volatile Organic Compounds,TON
+37059,0.2353496,Acrolein,LB
+37059,1.6989956e-05,Mercury,LB
+37059,0.508085,Methane,TON
+37059,0.7574236,Carbon Monoxide,TON
+37059,0.0132893,Nitrous Oxide,TON
+37061,61.09271,Volatile Organic Compounds,TON
+37049,0.4288586,Anthracene,LB
+37049,8.723592,Xylenes (Mixed Isomers),LB
+37049,0.0491152,Manganese,LB
+37049,14.985198,Naphthalene,LB
+37047,1.461404e-06,Methane,TON
+37047,1.397364e-06,Ammonia,TON
+37043,0.00183471,Pyrene,LB
+37043,0.0003208702,Benzo[k]Fluoranthene,LB
+37043,0.000312321,Chrysene,LB
+37043,1.1634378,Benzene,LB
+37043,0.00222636,Fluorene,LB
+37043,0.0008985212,Methane,TON
+37043,0.0002489719,Organic Carbon portion of PM2.5-PRI,TON
+37043,1.451295e-05,Sulfate Portion of PM2.5-PRI,TON
+37047,0.0002736658,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.0002638329,Ammonia,TON
+37047,0.06388752,Propionaldehyde,LB
+37047,0.0012366948,Benzo[a]Pyrene,LB
+37047,2.39346,"2,2,4-Trimethylpentane",LB
+37047,302.891,Acrolein,LB
+37047,27.91318,Pyrene,LB
+37047,4.466716,Benz[a]Anthracene,LB
+37047,2.028624,Arsenic,LB
+37047,559.144,Nitrogen Oxides,TON
+37041,0.000624921,Manganese,LB
+37041,0.002816754,Acenaphthene,LB
+37041,0.00143784,Nitrous Oxide,TON
+37033,0.2303914,Ethyl Benzene,LB
+37033,0.008430396,Propionaldehyde,LB
+37033,0.0003636934,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.0002137512,Benzo[k]Fluoranthene,LB
+37033,0.2775766,"2,2,4-Trimethylpentane",LB
+37033,0.0002875108,Methane,TON
+37033,1.031252e-06,Nitrate portion of PM2.5-PRI,TON
+37141,4.673646,Formaldehyde,LB
+37141,15.434486,Benzene,LB
+37141,0.02939614,Fluorene,LB
+37141,6.854402,Carbon Monoxide,TON
+37141,0.001699928,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.339166,Volatile Organic Compounds,TON
+37141,0.6578714,"1,3-Butadiene",LB
+37141,5.483492e-06,Chromium (VI),LB
+37141,0.005766296,Benzo[a]Pyrene,LB
+37141,0.003140332,Benz[a]Anthracene,LB
+37141,6.896054,Benzene,LB
+37141,0.0006854558,Nickel,LB
+37141,0.4316987,Nitrogen Oxides,TON
+37137,10.492974,Toluene,LB
+37125,0.04518818,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,5.312592,"1,3-Butadiene",LB
+37125,8.790076,Propionaldehyde,LB
+37125,0.925258,Fluoranthene,LB
+37125,0.5379596,Acenaphthene,LB
+37107,28.98314,Acrolein,LB
+37107,23.5207,Toluene,LB
+37107,8.795962e-05,Chromium (VI),LB
+37107,40.11596,Naphthalene,LB
+37107,0.0830416,Ammonia,TON
+37107,0.443328,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.05042784,Sulfur Dioxide,TON
+37107,0.6621384,Acrolein,LB
+37107,74.74512,Toluene,LB
+37107,20.59526,Hexane,LB
+37107,0.1296076,Acenaphthylene,LB
+37107,9.393788e-05,Mercury,LB
+37107,0.15445076,Phenanthrene,LB
+37107,0.006384661,Organic Carbon portion of PM2.5-PRI,TON
+37087,2.592884,Anthracene,LB
+37087,39.16026,Propionaldehyde,LB
+37087,0.0002288048,Chromium (VI),LB
+37087,5.64433,Fluoranthene,LB
+37087,85.41238,Naphthalene,LB
+37087,0.7915566,Organic Carbon portion of PM2.5-PRI,TON
+37087,3.030582,PM10 Primary (Filt + Cond),TON
+37087,2.052929,PM2.5 Primary (Filt + Cond),TON
+37087,0.3665256,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,3040.428,Carbon Dioxide,TON
+37073,0.00354187,Nitrous Oxide,TON
+37073,1.2260264,Styrene,LB
+37081,7.49311,Acrolein,LB
+37081,0.3156162,Anthracene,LB
+37081,0.15584132,Benzo[b]Fluoranthene,LB
+37081,1.660167,Acenaphthylene,LB
+37081,0.005715074,"Dibenzo[a,h]Anthracene",LB
+37081,0.0008033816,Nitrate portion of PM2.5-PRI,TON
+37081,0.1048514,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,15100.43,Carbon Dioxide,TON
+37053,10.62537,Ethyl Benzene,LB
+37053,3.397498,Styrene,LB
+37053,0.330358,Chrysene,LB
+37067,0.2342702,Anthracene,LB
+37067,0.00016569004,Chromium (VI),LB
+37067,0.18862478,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,190.3034,"2,2,4-Trimethylpentane",LB
+37067,0.1179976,Manganese,LB
+37067,129.7517,Carbon Monoxide,TON
+37061,0.002117066,Arsenic,LB
+37061,0.01115806,Ammonia,TON
+37061,0.000720699,"Dibenzo[a,h]Anthracene",LB
+37043,0.00328436,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,7.998768,Benzene,LB
+37043,0.2296306,Acenaphthene,LB
+37043,0.4948956,Fluorene,LB
+37043,2.905372,Carbon Monoxide,TON
+37043,4574.374,Carbon Dioxide,TON
+37043,0.362168,PM25-Primary from certain diesel engines,TON
+37043,0.4554958,Volatile Organic Compounds,TON
+37039,0.007287364,Manganese,LB
+37039,0.0003446045,Nitrous Oxide,TON
+37039,0.159168,Pyrene,LB
+37039,1.2243912,Ethyl Benzene,LB
+37047,0.006136044,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.001079662,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.007158275,PM2.5 Primary (Filt + Cond),TON
+37039,0.0495923,Acrolein,LB
+37039,0.002612676,Anthracene,LB
+37039,0.065803,Propionaldehyde,LB
+37039,7.009806,Xylenes (Mixed Isomers),LB
+37039,3.288246e-05,Arsenic,LB
+37039,0.9982044,Acetaldehyde,LB
+37039,0.0003140102,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.06643525,Nitrogen Oxides,TON
+37039,0.0006075373,Organic Carbon portion of PM2.5-PRI,TON
+37039,7.128996,Acrolein,LB
+37039,0.0002371336,Chromium (VI),LB
+37039,0.0984126,Benz[a]Anthracene,LB
+37039,0.0454506,Arsenic,LB
+37039,4216.024,Carbon Dioxide,TON
+37039,0.0003702881,Nitrate portion of PM2.5-PRI,TON
+37037,39.1171,Xylenes (Mixed Isomers),LB
+37037,0.007558106,Benzo[a]Pyrene,LB
+37037,0.09086412,Phenanthrene,LB
+37037,0.01124122,PM10 Primary (Filt + Cond),TON
+37035,0.0763145,Anthracene,LB
+37035,1.1498458,Propionaldehyde,LB
+37035,21.5166,Formaldehyde,LB
+37035,3.532906e-06,Mercury,LB
+37035,0.0007386752,Arsenic,LB
+37035,0.260307,Phenanthrene,LB
+37035,0.152329,Fluorene,LB
+37035,180.3469,Carbon Dioxide,TON
+37035,0.05118479,PM2.5 Primary (Filt + Cond),TON
+37035,0.001563503,Sulfur Dioxide,TON
+37031,0.2709544,Styrene,LB
+37031,63.15928,Toluene,LB
+37031,17.88494,Hexane,LB
+37031,1.926848e-06,Chromium (VI),LB
+37031,0.01656628,Fluoranthene,LB
+37031,0.002275388,Benzo[k]Fluoranthene,LB
+37031,14.064122,"2,2,4-Trimethylpentane",LB
+37031,0.002478784,Benz[a]Anthracene,LB
+37031,3.789392,Acetaldehyde,LB
+37031,0.003470271,PM2.5 Primary (Filt + Cond),TON
+37031,0.2977471,Volatile Organic Compounds,TON
+37025,1.4300778,"2,2,4-Trimethylpentane",LB
+37025,0.002188811,Nitrous Oxide,TON
+37025,0.0006822553,Nitrate portion of PM2.5-PRI,TON
+37025,0.03600647,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.002275198,"Benzo[g,h,i,]Perylene",LB
+37025,0.3726238,Fluoranthene,LB
+37025,35326.32,Toluene,LB
+37025,6249.174,Hexane,LB
+37025,8264.814,"2,2,4-Trimethylpentane",LB
+37199,9.195196,Acrolein,LB
+37199,6.972426,Xylenes (Mixed Isomers),LB
+37199,0.003646204,Benzo[k]Fluoranthene,LB
+37199,0.08929446,Benzo[a]Pyrene,LB
+37199,2.7803,"2,2,4-Trimethylpentane",LB
+37199,0.392435,Acenaphthene,LB
+37199,0.5159824,PM25-Primary from certain diesel engines,TON
+37199,0.3384454,Elemental Carbon portion of PM2.5-PRI,TON
+37199,12.20126,Nitrogen Oxides,TON
+37193,0.003334862,Fluorene,LB
+37193,0.03104654,Volatile Organic Compounds,TON
+37193,0.223575,"1,3-Butadiene",LB
+37195,1.852859,Fluorene,LB
+37195,0.1873003,Methane,TON
+37195,26.6192,Acrolein,LB
+37195,2909.614,Carbon Dioxide,TON
+37195,0.386093,PM10-Primary from certain diesel engines,TON
+37195,0.008374567,Nitrous Oxide,TON
+37195,0.5025144,PM10 Primary (Filt + Cond),TON
+37195,50.02194,Ethyl Benzene,LB
+37195,9.65845,"1,3-Butadiene",LB
+37195,1.5198932,Propionaldehyde,LB
+37195,0.0606649,Methane,TON
+37195,1939.204,Carbon Dioxide,TON
+37195,0.06067593,Nitrous Oxide,TON
+37195,0.0002048799,Nitrate portion of PM2.5-PRI,TON
+37195,1.484281,Volatile Organic Compounds,TON
+37189,6.637768e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,1.6754156e-05,Fluoranthene,LB
+37189,4.1267e-06,Benz[a]Anthracene,LB
+37189,1.431928e-08,Mercury,LB
+37189,0.003675284,Acetaldehyde,LB
+37189,1.1227866e-05,Acenaphthene,LB
+37189,0.004903531,Carbon Monoxide,TON
+37189,0.0001853194,Volatile Organic Compounds,TON
+37019,21.69996,"1,3-Butadiene",LB
+37019,0.0002506682,Chromium (VI),LB
+37019,0.18084836,Benz[a]Anthracene,LB
+37019,0.05577376,Manganese,LB
+37019,3.384028,Phenanthrene,LB
+37019,0.0007151911,Nitrate portion of PM2.5-PRI,TON
+37019,0.4011214,PM10 Primary (Filt + Cond),TON
+37015,0.05618028,Manganese,LB
+37015,0.0298758,Nickel,LB
+37015,78.41136,Acetaldehyde,LB
+37015,19.858168,Naphthalene,LB
+37015,0.8371945,PM25-Primary from certain diesel engines,TON
+37015,0.04057829,Ammonia,TON
+37015,1.06963,Volatile Organic Compounds,TON
+37015,0.008801808,"Benzo[g,h,i,]Perylene",LB
+37003,6.588904,Ethyl Benzene,LB
+37003,11.41744,Xylenes (Mixed Isomers),LB
+37003,4.52437e-05,Chromium (VI),LB
+37003,0.010273766,"Benzo[g,h,i,]Perylene",LB
+37003,1.1660666,Acenaphthylene,LB
+37003,0.5552694,Benz[a]Anthracene,LB
+37003,22.09168,Naphthalene,LB
+37003,0.04072358,Methane,TON
+37003,0.1071147,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,232.4644,Acrolein,LB
+37023,0.013560052,"Dibenzo[a,h]Anthracene",LB
+37023,276.2214,Benzene,LB
+37023,0.000486423,Mercury,LB
+37023,17.215464,Fluorene,LB
+37023,0.6168726,Methane,TON
+37023,0.006345303,Nitrate portion of PM2.5-PRI,TON
+37023,0.4972582,Organic Carbon portion of PM2.5-PRI,TON
+37023,17.27975,Volatile Organic Compounds,TON
+37003,3.508612,Carbon Monoxide,TON
+37001,109.44892,Xylenes (Mixed Isomers),LB
+37039,0.1309834,Hexane,LB
+37039,0.0002393726,Arsenic,LB
+37039,1.7668214,Acetaldehyde,LB
+37039,0.00014782516,Acenaphthene,LB
+37039,0.0002994286,Fluorene,LB
+37039,0.0001848883,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.003710316,Manganese,LB
+37035,0.000979271,Anthracene,LB
+37035,0.00209409,Pyrene,LB
+37035,2.15731,Xylenes (Mixed Isomers),LB
+37035,0.0014018382,Benzo[b]Fluoranthene,LB
+37035,0.0010550566,Chrysene,LB
+37035,0.05375676,Naphthalene,LB
+37037,8.175539,Carbon Monoxide,TON
+37037,0.0144153,Nitrous Oxide,TON
+37037,5.861846,Hexane,LB
+37037,5.235026e-05,Chromium (VI),LB
+37037,0.02914332,Acenaphthylene,LB
+37165,0.14475402,Ethyl Benzene,LB
+37165,0.0251854,Acrolein,LB
+37165,0.0008511328,Manganese,LB
+37165,2.773666e-05,Mercury,LB
+37165,0.0003686008,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.01720177,Volatile Organic Compounds,TON
+37147,0.014553314,Anthracene,LB
+37147,191.12698,Acetaldehyde,LB
+37147,0.0890665,Phenanthrene,LB
+37137,0.361638,Hexane,LB
+37137,1.316514,Xylenes (Mixed Isomers),LB
+37137,1.1626962,"2,2,4-Trimethylpentane",LB
+37119,0.0007307698,Chromium (VI),LB
+37119,0.18719034,Benzo[a]Pyrene,LB
+37091,6.524648e-05,Mercury,LB
+37091,0.003558294,Phenanthrene,LB
+37091,0.0007541864,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.04794342,Volatile Organic Compounds,TON
+37091,0.002907024,Acenaphthylene,LB
+37173,4.59803,"1,3-Butadiene",LB
+37173,0.5098678,Anthracene,LB
+37173,0.006446106,"Benzo[g,h,i,]Perylene",LB
+37173,0.004303712,Benzo[k]Fluoranthene,LB
+37173,134.11776,Formaldehyde,LB
+37173,0.002551681,Nitrous Oxide,TON
+37193,22.53772,Hexane,LB
+37193,0.2817066,Benzo[a]Pyrene,LB
+37193,20.22175,Carbon Monoxide,TON
+37193,0.4239391,Ammonia,TON
+37193,2.530067,PM2.5 Primary (Filt + Cond),TON
+37185,4.287038,Styrene,LB
+37185,16.278444,Hexane,LB
+37185,0.493528,Benz[a]Anthracene,LB
+37185,0.9859346,Methane,TON
+37185,0.8459957,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.003210277,Nitrate portion of PM2.5-PRI,TON
+37185,0.1238512,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.1287701,Sulfate Portion of PM2.5-PRI,TON
+37185,2.545132,Volatile Organic Compounds,TON
+37195,3.889352e-05,Manganese,LB
+37195,9.534152e-07,Mercury,LB
+37195,1.8227874e-05,Arsenic,LB
+37195,0.02206038,Acetaldehyde,LB
+37195,0.0348913,Carbon Monoxide,TON
+37195,4.186005e-07,Nitrate portion of PM2.5-PRI,TON
+37195,0.006412635,Nitrogen Oxides,TON
+37195,0.0002880035,PM10 Primary (Filt + Cond),TON
+37195,0.0001342333,Sulfur Dioxide,TON
+37195,4.551836e-06,Sulfate Portion of PM2.5-PRI,TON
+37195,0.004806628,"1,3-Butadiene",LB
+37189,0.3675896,Styrene,LB
+37189,2.207122,Acrolein,LB
+37189,1.4204196,Propionaldehyde,LB
+37189,2.39767,Xylenes (Mixed Isomers),LB
+37189,0.0008691306,Benzo[k]Fluoranthene,LB
+37189,0.0404335,Chrysene,LB
+37189,0.08529434,Acenaphthene,LB
+37189,3.109248,Naphthalene,LB
+37189,0.06747738,PM25-Primary from certain diesel engines,TON
+37189,0.03027989,Organic Carbon portion of PM2.5-PRI,TON
+37187,4.485781,Carbon Dioxide,TON
+37187,1.4386296,Ethyl Benzene,LB
+37187,0.0006463926,Benzo[k]Fluoranthene,LB
+37187,2.00672e-05,"Dibenzo[a,h]Anthracene",LB
+37179,15.619162,Styrene,LB
+37179,34.38918,Hexane,LB
+37179,0.05199862,"Benzo[g,h,i,]Perylene",LB
+37179,119.40844,Benzene,LB
+37023,0.2501408,"Benzo[g,h,i,]Perylene",LB
+37023,46.46238,Formaldehyde,LB
+37023,92.94216,Ethyl Benzene,LB
+37023,551.4102,Toluene,LB
+37023,0.2923814,Fluorene,LB
+37023,7.500094,Naphthalene,LB
+37023,6.001207,Nitrogen Oxides,TON
+37023,0.1072966,PM2.5 Primary (Filt + Cond),TON
+37199,0.04290638,Pyrene,LB
+37199,0.006877256,Benzo[k]Fluoranthene,LB
+37199,247.108,Carbon Dioxide,TON
+37199,0.002855158,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.02536099,PM10 Primary (Filt + Cond),TON
+37199,0.005184897,Sulfur Dioxide,TON
+37197,14.733756,"2,2,4-Trimethylpentane",LB
+37197,16.334464,"1,3-Butadiene",LB
+37197,42.2356,Acrolein,LB
+37197,2.441304,PM25-Primary from certain diesel engines,TON
+37197,3.313152,PM10 Primary (Filt + Cond),TON
+37195,0.19062618,Fluoranthene,LB
+37195,0.017310864,Benzo[a]Pyrene,LB
+37195,0.3679694,Styrene,LB
+37195,2.23485,Toluene,LB
+37195,0.0904292,Anthracene,LB
+37195,2.353806,Xylenes (Mixed Isomers),LB
+37195,0.1572492,Volatile Organic Compounds,TON
+37193,6.050804,Hexane,LB
+37193,0.013450826,Pyrene,LB
+37193,0.3723062,Naphthalene,LB
+37193,0.00588386,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,22.31076,Hexane,LB
+37185,0.011380144,Chrysene,LB
+37185,0.0251723,Acenaphthene,LB
+37185,0.01898611,Methane,TON
+37185,6.868421e-05,Nitrate portion of PM2.5-PRI,TON
+37197,5.767918,Ethyl Benzene,LB
+37197,0.2691974,Acrolein,LB
+37197,0.18403666,Propionaldehyde,LB
+37197,0.016468886,Fluoranthene,LB
+37197,0.00405536,Benzo[k]Fluoranthene,LB
+37197,0.05053178,Acenaphthylene,LB
+37197,0.0007609508,Arsenic,LB
+37197,0.006475304,Methane,TON
+37197,7.322178,Carbon Monoxide,TON
+37197,0.006364499,Nitrous Oxide,TON
+37183,200.677,Xylenes (Mixed Isomers),LB
+37183,0.03073886,Benzo[b]Fluoranthene,LB
+37183,0.3522156,Acenaphthylene,LB
+37183,0.002826318,Nickel,LB
+37183,0.03503826,Ammonia,TON
+37017,0.01048252,Pyrene,LB
+37017,0.002744654,Manganese,LB
+37017,0.0003368138,Nickel,LB
+37017,0.0005335595,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.00334226,Nitrous Oxide,TON
+37017,0.003790843,Ammonia,TON
+37017,0.0001159261,Sulfate Portion of PM2.5-PRI,TON
+37015,19.843344,Ethyl Benzene,LB
+37015,0.7020122,Styrene,LB
+37015,73.48888,Xylenes (Mixed Isomers),LB
+37015,0.04354634,Fluoranthene,LB
+37015,26.31708,"2,2,4-Trimethylpentane",LB
+37015,0.0605406,Fluorene,LB
+37015,13.2097,Carbon Monoxide,TON
+37003,4.368398e-05,Nitrate portion of PM2.5-PRI,TON
+37003,0.01727146,PM2.5 Primary (Filt + Cond),TON
+37003,0.05010226,Anthracene,LB
+37003,0.014898148,Benzo[a]Pyrene,LB
+37003,0.0009576786,Nickel,LB
+37003,20.12672,Acetaldehyde,LB
+37003,0.11944922,Fluorene,LB
+37003,7.417988,Ethyl Benzene,LB
+37003,2.188238,"1,3-Butadiene",LB
+37003,0.012054098,Anthracene,LB
+37003,0.06469078,Acenaphthylene,LB
+37003,0.02882108,Fluorene,LB
+37003,0.005822362,Nitrous Oxide,TON
+37003,0.002433064,Ammonia,TON
+37057,0.0009114034,Benzo[k]Fluoranthene,LB
+37057,6.519354e-06,Chromium (VI),LB
+37057,0.006596724,Methane,TON
+37057,0.9531508,Carbon Monoxide,TON
+37007,0.0002119626,Fluorene,LB
+37007,0.0006089785,Sulfur Dioxide,TON
+37007,1.1695156e-06,Chromium (VI),LB
+37165,0.13154474,"1,3-Butadiene",LB
+37165,0.0017226102,Fluoranthene,LB
+37165,0.004501198,Acenaphthylene,LB
+37165,5.491852e-05,"Dibenzo[a,h]Anthracene",LB
+37165,0.0010706988,Benz[a]Anthracene,LB
+37165,0.0506456,Naphthalene,LB
+37165,0.001672779,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.0009429848,Anthracene,LB
+37159,0.002008818,Pyrene,LB
+37159,0.000985601,Chrysene,LB
+37159,1.977158,Formaldehyde,LB
+37159,5.77477e-05,"Dibenzo[a,h]Anthracene",LB
+37159,0.0009957566,Acenaphthene,LB
+37159,0.1130102,Nitrogen Oxides,TON
+37159,0.001662147,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.001580557,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.06272848,Propionaldehyde,LB
+37139,0.0004387684,Fluoranthene,LB
+37139,0.0004813852,Benzo[a]Pyrene,LB
+37139,0.0007198304,Manganese,LB
+37139,0.0002398592,Nickel,LB
+37139,0.000527125,Fluorene,LB
+37139,0.001647049,Ammonia,TON
+37139,0.003027747,PM10 Primary (Filt + Cond),TON
+37139,0.01806479,Volatile Organic Compounds,TON
+37175,0.0666488,Acrolein,LB
+37175,7.356248,Toluene,LB
+37175,0.002128618,"Benzo[g,h,i,]Perylene",LB
+37175,7.633868e-06,Mercury,LB
+37175,0.002817408,Acenaphthene,LB
+37175,0.005706996,Fluorene,LB
+37175,0.0015131,Methane,TON
+37175,0.0008551975,Sulfur Dioxide,TON
+37173,0.014317702,"1,3-Butadiene",LB
+37173,0.0002775854,"Benzo[g,h,i,]Perylene",LB
+37173,2.393352e-06,"Dibenzo[a,h]Anthracene",LB
+37173,8.144426e-06,Arsenic,LB
+37173,0.00013284372,Acenaphthene,LB
+37173,6.41037e-05,Nitrous Oxide,TON
+37171,0.6417692,Propionaldehyde,LB
+37171,0.01282239,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.002218581,Ammonia,TON
+37159,0.003514694,Manganese,LB
+37159,0.19842508,Phenanthrene,LB
+37159,143.2025,Carbon Dioxide,TON
+37159,0.0429502,PM2.5 Primary (Filt + Cond),TON
+37159,0.5251174,Ethyl Benzene,LB
+37161,0.02674042,Acenaphthylene,LB
+37161,1.8713916,Formaldehyde,LB
+37161,3.6133e-05,Mercury,LB
+37161,2.757457,Carbon Monoxide,TON
+37151,0.000840879,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.131932,Nitrogen Oxides,TON
+37151,0.001516892,Organic Carbon portion of PM2.5-PRI,TON
+37151,4.445498,Ethyl Benzene,LB
+37151,26.95346,Toluene,LB
+37151,0.0310652,Acenaphthylene,LB
+37151,4.224286e-05,Nickel,LB
+37151,0.006816284,Acenaphthene,LB
+37151,0.01136824,Methane,TON
+37151,3582.854,Ethyl Benzene,LB
+37151,794.705,Benzene,LB
+37151,104.0921,Volatile Organic Compounds,TON
+37143,12.444802,Toluene,LB
+37143,0.5843314,Acenaphthylene,LB
+37143,142.82002,Formaldehyde,LB
+37143,0.0255928,Nickel,LB
+37143,57.46302,Acetaldehyde,LB
+37143,0.1374904,Methane,TON
+37143,0.5527056,PM25-Primary from certain diesel engines,TON
+37143,0.05983361,Sulfur Dioxide,TON
+37143,0.009534052,Benzo[a]Pyrene,LB
+37143,0.038313,Benz[a]Anthracene,LB
+37143,0.003972836,"Benzo[g,h,i,]Perylene",LB
+37143,0.2043867,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.005189264,Nitrous Oxide,TON
+37143,6.37554,Nitrogen Oxides,TON
+37143,0.3345484,PM10 Primary (Filt + Cond),TON
+37141,0.2817394,Manganese,LB
+37141,0.281684,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.02747276,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.7082884,Chrysene,LB
+37141,0.3610082,Benzo[a]Pyrene,LB
+37139,3.30874,Fluoranthene,LB
+37139,4.217246,Fluorene,LB
+37139,80.36258,Naphthalene,LB
+37139,4115.203,Carbon Dioxide,TON
+37139,0.03571101,Sulfur Dioxide,TON
+37135,21.41246,"1,3-Butadiene",LB
+37135,7.155702,Pyrene,LB
+37135,648.6676,Formaldehyde,LB
+37135,0.5450642,Benzo[a]Pyrene,LB
+37143,2440.62,Hexane,LB
+37143,0.3952668,Arsenic,LB
+37143,3.293936,Acenaphthene,LB
+37143,17.84992,Phenanthrene,LB
+37143,38167.38,Carbon Dioxide,TON
+37143,54.70002,Volatile Organic Compounds,TON
+37117,43.62508,Acrolein,LB
+37117,2.45173,Fluoranthene,LB
+37117,32.15178,Carbon Monoxide,TON
+37117,3364.768,Carbon Dioxide,TON
+37117,0.0003491358,Propionaldehyde,LB
+37117,5.991702e-06,Chrysene,LB
+37117,1.7580508e-06,Manganese,LB
+37117,5.64286e-06,Organic Carbon portion of PM2.5-PRI,TON
+37117,2.787706e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.0002894231,Volatile Organic Compounds,TON
+37119,5.3662,"1,3-Butadiene",LB
+37119,18.938942,Toluene,LB
+37119,0.1012431,Ammonia,TON
+37119,1.035983,PM2.5 Primary (Filt + Cond),TON
+37113,0.019059472,Benzo[b]Fluoranthene,LB
+37113,0.002602296,"Dibenzo[a,h]Anthracene",LB
+37113,0.299395,Acenaphthene,LB
+37113,0.002890101,Nitrous Oxide,TON
+37105,0.2341472,Xylenes (Mixed Isomers),LB
+37105,8.492484e-05,Chrysene,LB
+37105,1.5656844e-06,Nickel,LB
+37105,0.01208643,Nitrous Oxide,TON
+37105,0.05420952,Volatile Organic Compounds,TON
+37105,0.01266871,Chrysene,LB
+37105,0.00645696,Benzo[a]Pyrene,LB
+37105,0.0010785546,Nickel,LB
+37105,0.0001515904,Nitrous Oxide,TON
+37105,0.0001115817,Nitrate portion of PM2.5-PRI,TON
+37105,0.02266531,PM2.5 Primary (Filt + Cond),TON
+37105,0.0006207495,Sulfur Dioxide,TON
+37105,0.05548884,Volatile Organic Compounds,TON
+37105,0.0339512,Anthracene,LB
+37105,12.45023,Hexane,LB
+37105,0.02444512,Fluoranthene,LB
+37105,0.004966908,Chrysene,LB
+37105,19.860298,Benzene,LB
+37105,0.001463044,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.3351914,Benzene,LB
+37093,0.0001006491,Arsenic,LB
+37093,0.3896902,Naphthalene,LB
+37093,0.01059288,PM10 Primary (Filt + Cond),TON
+37089,0.1332577,Acetaldehyde,LB
+37089,0.02144742,Naphthalene,LB
+37089,2.679099e-05,Ammonia,TON
+37089,0.0001791866,PM2.5 Primary (Filt + Cond),TON
+37089,0.01057721,Benzo[k]Fluoranthene,LB
+37089,12.333562,Formaldehyde,LB
+37089,0.0003259186,"Dibenzo[a,h]Anthracene",LB
+37089,18.425352,"2,2,4-Trimethylpentane",LB
+37089,0.01856427,Ammonia,TON
+37089,0.009475477,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.04357826,Organic Carbon portion of PM2.5-PRI,TON
+37073,29.47842,Acrolein,LB
+37073,9.180976,Hexane,LB
+37073,1.0283518,Anthracene,LB
+37073,20.1624,Propionaldehyde,LB
+37073,0.008200368,Benzo[b]Fluoranthene,LB
+37073,1.640636,Fluoranthene,LB
+37073,35.06412,Benzene,LB
+37073,20.09138,Carbon Monoxide,TON
+37085,3.111676,Styrene,LB
+37085,7.073428,"1,3-Butadiene",LB
+37085,2.226794,Pyrene,LB
+37085,0.01232403,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.02491668,Nickel,LB
+37085,0.5388877,PM25-Primary from certain diesel engines,TON
+37079,8.624212e-05,PM2.5 Primary (Filt + Cond),TON
+37079,1.033837e-05,Sulfur Dioxide,TON
+37079,0.004153591,Volatile Organic Compounds,TON
+37079,0.004865046,Propionaldehyde,LB
+37067,0.007775886,"1,3-Butadiene",LB
+37067,0.5169514,Propionaldehyde,LB
+37067,0.10742432,Xylenes (Mixed Isomers),LB
+37067,3.076404e-05,Chrysene,LB
+37067,19.51139,Formaldehyde,LB
+37067,0.00013674384,Arsenic,LB
+37067,0.004026262,Nitrous Oxide,TON
+37063,0.03149818,Sulfate Portion of PM2.5-PRI,TON
+37063,6.276718,Styrene,LB
+37063,14.228172,"1,3-Butadiene",LB
+37063,30.77888,Toluene,LB
+37063,11.236708,Hexane,LB
+37063,1.6045262,Anthracene,LB
+37063,0.017020658,Arsenic,LB
+37063,57.58528,Ethyl Benzene,LB
+37063,111.56614,Toluene,LB
+37063,0.05277684,Benzo[b]Fluoranthene,LB
+37063,0.231211,Manganese,LB
+37063,0.0003622296,Mercury,LB
+37063,0.36242,Ammonia,TON
+37063,2.124839,PM10 Primary (Filt + Cond),TON
+37063,0.05520154,Sulfate Portion of PM2.5-PRI,TON
+37063,0.02478872,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,23.21592,"2,2,4-Trimethylpentane",LB
+37063,0.5059024,Acrolein,LB
+37067,30.85208,Ethyl Benzene,LB
+37067,197.80468,Toluene,LB
+37067,51.89844,Hexane,LB
+37067,0.07682308,Pyrene,LB
+37067,0.07673948,"Benzo[g,h,i,]Perylene",LB
+37067,0.00012893626,Mercury,LB
+37067,0.09106014,Fluorene,LB
+37065,0.1469512,Ammonia,TON
+37065,0.1490647,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.7748274,PM2.5 Primary (Filt + Cond),TON
+37065,0.04060742,Sulfur Dioxide,TON
+37065,12.523794,Styrene,LB
+37065,66.15916,Acrolein,LB
+37065,0.00018998596,Chromium (VI),LB
+37065,0.004101286,Benzo[k]Fluoranthene,LB
+37065,91.16742,Naphthalene,LB
+37065,0.8101585,PM10-Primary from certain diesel engines,TON
+37063,53.68026,Propionaldehyde,LB
+37063,1.2439614,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.5946472,Arsenic,LB
+37063,82.47654,Nitrogen Oxides,TON
+37059,10879.684,Toluene,LB
+37059,290.0306,Benzene,LB
+37047,0.454763,Ethyl Benzene,LB
+37047,0.0358311,PM2.5 Primary (Filt + Cond),TON
+37199,0.00843197,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.004534054,"Dibenzo[a,h]Anthracene",LB
+37199,4.372064e-05,Mercury,LB
+37195,0.3504086,Styrene,LB
+37195,4.204536e-06,Chromium (VI),LB
+37195,0.00674926,Chrysene,LB
+37195,15.946334,Benzene,LB
+37195,0.004314279,Nitrous Oxide,TON
+37183,6230.114,Formaldehyde,LB
+37183,2667.274,Acetaldehyde,LB
+37183,47727.2,Carbon Dioxide,TON
+37183,5.303597,PM2.5 Primary (Filt + Cond),TON
+37181,0.000359093,Sulfur Dioxide,TON
+37181,8.132105e-05,Sulfate Portion of PM2.5-PRI,TON
+37181,0.11712434,Acrolein,LB
+37181,0.002334866,Benzo[b]Fluoranthene,LB
+37181,0.002334866,Benzo[k]Fluoranthene,LB
+37181,0.002209212,Chrysene,LB
+37181,6.585428,Benzene,LB
+37181,7.721816e-05,Arsenic,LB
+37181,0.008107948,Methane,TON
+37181,9.452277e-06,Nitrate portion of PM2.5-PRI,TON
+37179,0.0008118298,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.003185698,Benzo[b]Fluoranthene,LB
+37179,1.0576324,Fluoranthene,LB
+37179,0.06313246,Manganese,LB
+37179,0.01607695,Sulfur Dioxide,TON
+37019,0.01790315,Benzo[k]Fluoranthene,LB
+37019,0.6398186,Methane,TON
+37019,31094.28,Carbon Dioxide,TON
+37019,2.957212,PM25-Primary from certain diesel engines,TON
+37019,0.2237031,Sulfate Portion of PM2.5-PRI,TON
+37013,11.901788,Ethyl Benzene,LB
+37013,27.96446,Xylenes (Mixed Isomers),LB
+37013,8.819234e-05,Chromium (VI),LB
+37013,1.827332,Acenaphthylene,LB
+37013,8.840236e-05,Mercury,LB
+37013,0.2077874,Methane,TON
+37013,0.004443909,Nitrate portion of PM2.5-PRI,TON
+37013,0.8628434,PM2.5 Primary (Filt + Cond),TON
+37019,90014.9,Toluene,LB
+37019,6.759324,Chrysene,LB
+37019,25765.86,Benzene,LB
+37019,616.4812,Styrene,LB
+37019,27.39942,Ammonia,TON
+37019,11.24464,PM2.5 Primary (Filt + Cond),TON
+37019,3.747441,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,163.81156,Benzene,LB
+37011,0.0013315534,Benzo[b]Fluoranthene,LB
+37011,0.718556,Naphthalene,LB
+37011,0.001300504,Sulfur Dioxide,TON
+37011,0.002103606,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.008157942,Fluoranthene,LB
+37011,0.001544984,Chrysene,LB
+37011,1.729842,Formaldehyde,LB
+37011,5.917128,Benzene,LB
+37011,0.004890167,Methane,TON
+37011,0.001366218,Ammonia,TON
+37011,5.595278e-05,Sulfate Portion of PM2.5-PRI,TON
+37019,6.667278,Benzene,LB
+37019,0.003602324,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.003785149,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,1.2442832,Ethyl Benzene,LB
+37019,0.003992168,Pyrene,LB
+37019,0.002567556,Benzo[b]Fluoranthene,LB
+37019,0.1732199,Volatile Organic Compounds,TON
+37151,0.2288504,Acrolein,LB
+37151,0.004677414,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.002449446,Benzo[k]Fluoranthene,LB
+37151,0.0018657948,Chrysene,LB
+37151,24.45132,Acetaldehyde,LB
+37151,0.10806002,Naphthalene,LB
+37151,2.935505,Carbon Monoxide,TON
+37151,0.1651622,Volatile Organic Compounds,TON
+37135,0.002273534,Nickel,LB
+37135,0.003486044,Arsenic,LB
+37135,0.002319397,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.0011141268,Anthracene,LB
+37135,0.002404816,Pyrene,LB
+37135,0.008935162,"Benzo[g,h,i,]Perylene",LB
+37135,7.705036e-05,"Dibenzo[a,h]Anthracene",LB
+37159,9.213072e-05,Nitrate portion of PM2.5-PRI,TON
+37159,0.01561695,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.01625915,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,6.410674,"1,3-Butadiene",LB
+37159,0.10206676,Pyrene,LB
+37159,0.017376546,Chrysene,LB
+37159,0.06114336,Acenaphthene,LB
+37141,1.4540894,Nickel,LB
+37141,5160.664,Acetaldehyde,LB
+37141,9.489451,Methane,TON
+37141,13.22876,Anthracene,LB
+37137,0.08834564,Methane,TON
+37137,0.1812438,Carbon Monoxide,TON
+37137,0.000136559,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.0007618594,Ammonia,TON
+37137,0.01154749,Volatile Organic Compounds,TON
+37137,0.0005055504,Manganese,LB
+37123,0.2769752,Xylenes (Mixed Isomers),LB
+37123,0.0001115597,"Dibenzo[a,h]Anthracene",LB
+37123,0.0009157963,Ammonia,TON
+37121,0.1488942,Methane,TON
+37121,27.2246,Carbon Dioxide,TON
+37199,0.00014743962,Anthracene,LB
+37199,0.003314464,Propionaldehyde,LB
+37199,0.12085662,"2,2,4-Trimethylpentane",LB
+37199,3.824578e-07,Mercury,LB
+37199,7.312056e-06,Arsenic,LB
+37199,9.59386e-05,Nitrous Oxide,TON
+37199,9.346307e-05,PM2.5 Primary (Filt + Cond),TON
+37191,1.145036,Fluoranthene,LB
+37191,0.0119984,Sulfate Portion of PM2.5-PRI,TON
+37191,8.318032,"1,3-Butadiene",LB
+37191,21.11368,Acrolein,LB
+37187,0.4944005,Volatile Organic Compounds,TON
+37181,14.902684,"1,3-Butadiene",LB
+37181,21.78826,Hexane,LB
+37181,0.015267246,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.2004238,Benzo[a]Pyrene,LB
+37181,0.00840349,"Dibenzo[a,h]Anthracene",LB
+37181,1.931505,PM10-Primary from certain diesel engines,TON
+37181,0.3273334,Ammonia,TON
+37161,0.0001233699,Anthracene,LB
+37161,5.470094,Acetaldehyde,LB
+37161,0.00018099604,Acenaphthene,LB
+37161,87.57522,Carbon Dioxide,TON
+37161,0.3360294,Nitrogen Oxides,TON
+37157,708.4368,Hexane,LB
+37157,0.2403628,Benzo[b]Fluoranthene,LB
+37157,0.007087304,"Dibenzo[a,h]Anthracene",LB
+37157,47.79688,Naphthalene,LB
+37151,0.05871626,Pyrene,LB
+37151,0.01347598,Chrysene,LB
+37151,36.51562,Benzene,LB
+37149,24769.88,Toluene,LB
+37149,6.94407,Anthracene,LB
+37149,0.6370814,Nickel,LB
+37149,2641.898,Acetaldehyde,LB
+37149,3.51785,PM2.5 Primary (Filt + Cond),TON
+37145,0.1484246,Anthracene,LB
+37145,0.253402,Fluoranthene,LB
+37145,0.04871774,Benzo[k]Fluoranthene,LB
+37145,0.009677018,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.4925956,Propionaldehyde,LB
+37135,0.02781742,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,20.98428,"2,2,4-Trimethylpentane",LB
+37135,0.05056024,Fluorene,LB
+37133,226.0948,Styrene,LB
+37133,3.45825,Benzo[b]Fluoranthene,LB
+37133,0.11830864,"Dibenzo[a,h]Anthracene",LB
+37133,3.674922,Arsenic,LB
+37133,2552.754,Carbon Monoxide,TON
+37125,42.39438,Acrolein,LB
+37125,55.7467,Xylenes (Mixed Isomers),LB
+37125,0.5657208,Chrysene,LB
+37125,0.08979118,Nickel,LB
+37125,0.5317628,Methane,TON
+37125,1.965614,PM25-Primary from certain diesel engines,TON
+37117,0.06215468,Styrene,LB
+37117,0.0010837326,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.0007865392,Benzo[b]Fluoranthene,LB
+37117,0.00389594,Fluoranthene,LB
+37117,0.001022462,Manganese,LB
+37117,1.7297168e-05,Mercury,LB
+37117,0.0003306982,Arsenic,LB
+37123,0.0689901,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.5294346,Fluoranthene,LB
+37123,1.0365616e-05,Mercury,LB
+37123,0.00216723,Arsenic,LB
+37123,0.8469642,Phenanthrene,LB
+37123,3.080166e-07,Chromium (VI),LB
+37123,12.78538,Carbon Dioxide,TON
+37123,0.128823,Nitrogen Oxides,TON
+37123,0.003638564,PM10 Primary (Filt + Cond),TON
+37123,0.0002711347,Sulfur Dioxide,TON
+37123,206.8716,Styrene,LB
+37123,7.38084,"Benzo[g,h,i,]Perylene",LB
+37123,0.04475452,Mercury,LB
+37115,12.050446,Phenanthrene,LB
+37115,1459.664,Ethyl Benzene,LB
+37115,0.7540238,Benzo[k]Fluoranthene,LB
+37099,0.1634925,Volatile Organic Compounds,TON
+37099,0.018725018,Pyrene,LB
+37099,0.00315546,Benzo[k]Fluoranthene,LB
+37099,3.482242,Formaldehyde,LB
+37099,5.948728,"2,2,4-Trimethylpentane",LB
+37099,0.004958459,Methane,TON
+37099,202.249,Carbon Dioxide,TON
+37099,0.4351085,Nitrogen Oxides,TON
+37095,0.3590794,Pyrene,LB
+37095,0.02393964,Benzo[a]Pyrene,LB
+37095,0.0009878156,"Dibenzo[a,h]Anthracene",LB
+37095,0.0081816,Nickel,LB
+37095,0.003972598,Arsenic,LB
+37095,0.2418139,PM10 Primary (Filt + Cond),TON
+37095,0.412436,"1,3-Butadiene",LB
+37095,0.004468158,Benzo[a]Pyrene,LB
+37095,1.1420726,Benzene,LB
+37095,0.001582832,Nickel,LB
+37095,0.04200064,Acenaphthene,LB
+37095,1.3231358,Naphthalene,LB
+37091,8.56136,Hexane,LB
+37091,0.004367402,"Benzo[g,h,i,]Perylene",LB
+37091,8.310884,"2,2,4-Trimethylpentane",LB
+37091,0.2298672,Benz[a]Anthracene,LB
+37091,32.68358,Benzene,LB
+37091,0.06761347,Ammonia,TON
+37091,0.03615519,Organic Carbon portion of PM2.5-PRI,TON
+37091,2.034095,Volatile Organic Compounds,TON
+37091,0.340327,Ethyl Benzene,LB
+37091,0.04918332,Acenaphthylene,LB
+37091,0.279549,"2,2,4-Trimethylpentane",LB
+37091,0.0819156,Phenanthrene,LB
+37091,1.0896356,Naphthalene,LB
+37091,0.007738039,Methane,TON
+37091,0.000276276,Sulfate Portion of PM2.5-PRI,TON
+37089,0.4194612,Ethyl Benzene,LB
+37089,0.3173102,Hexane,LB
+37089,0.0939376,Fluoranthene,LB
+37089,1.9289922e-06,Mercury,LB
+37089,0.0120648,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.02875677,PM2.5 Primary (Filt + Cond),TON
+37089,0.0008642341,Sulfur Dioxide,TON
+37089,0.07327492,Volatile Organic Compounds,TON
+37089,22.54866,Naphthalene,LB
+37089,0.182411,Methane,TON
+37089,0.03445528,PM10-Primary from certain diesel engines,TON
+37089,0.03169856,PM25-Primary from certain diesel engines,TON
+37089,0.002531281,Nitrous Oxide,TON
+37089,0.006753172,Sulfate Portion of PM2.5-PRI,TON
+37089,2.499092,Styrene,LB
+37089,19.127324,Benzene,LB
+37087,6.822636,Ethyl Benzene,LB
+37087,10.76854,Propionaldehyde,LB
+37087,0.008808806,"Benzo[g,h,i,]Perylene",LB
+37087,19.241696,Benzene,LB
+37087,2.930326e-05,Mercury,LB
+37087,1382.314,Carbon Dioxide,TON
+37087,0.01085874,Sulfate Portion of PM2.5-PRI,TON
+37073,0.001269219,Acenaphthene,LB
+37073,0.065903,Naphthalene,LB
+37073,0.000283301,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.0247392,Propionaldehyde,LB
+37073,0.0004885034,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.0018543818,Fluoranthene,LB
+37073,0.0003544448,Chrysene,LB
+37065,0.1024235,PM10 Primary (Filt + Cond),TON
+37065,0.3340826,Styrene,LB
+37065,0.0011946844,"Benzo[g,h,i,]Perylene",LB
+37065,0.01510034,Methane,TON
+37063,0.7481928,Styrene,LB
+37063,4.780508,Toluene,LB
+37063,5.085584,Xylenes (Mixed Isomers),LB
+37063,0.00264337,"Benzo[g,h,i,]Perylene",LB
+37063,0.04415406,Benzo[a]Pyrene,LB
+37063,1900.553,Carbon Dioxide,TON
+37059,4.369448e-05,Chromium (VI),LB
+37059,0.0009780764,"Benzo[g,h,i,]Perylene",LB
+37059,0.00018648964,Benzo[k]Fluoranthene,LB
+37059,2.429166,Hexane,LB
+37059,0.02068878,Manganese,LB
+37059,0.7617604,Phenanthrene,LB
+37059,10.089068,Naphthalene,LB
+37059,0.008404582,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.02062676,PM2.5 Primary (Filt + Cond),TON
+37059,0.005964004,Sulfur Dioxide,TON
+37053,2.33794,Styrene,LB
+37053,0.005598672,Benzo[b]Fluoranthene,LB
+37053,0.1903865,PM10-Primary from certain diesel engines,TON
+37053,0.003423967,Nitrous Oxide,TON
+37053,0.237908,PM10 Primary (Filt + Cond),TON
+37041,0.004000434,Ethyl Benzene,LB
+37041,0.3183128,Propionaldehyde,LB
+37041,0.00013808144,Pyrene,LB
+37041,0.02836976,Xylenes (Mixed Isomers),LB
+37041,0.0002369498,Naphthalene,LB
+37041,0.005798678,Nitrous Oxide,TON
+37041,0.0006689525,Sulfate Portion of PM2.5-PRI,TON
+37041,0.042342,Anthracene,LB
+37041,0.022517,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.0725952,Fluoranthene,LB
+37041,0.01574366,Benzo[k]Fluoranthene,LB
+37041,79.03548,"2,2,4-Trimethylpentane",LB
+37041,0.0002221582,Mercury,LB
+37041,2.561574,Naphthalene,LB
+37041,0.02413527,Methane,TON
+37035,0.2639122,Acenaphthylene,LB
+37035,4.801122,Benzene,LB
+37035,1.725451,Carbon Monoxide,TON
+37035,1407.346,Carbon Dioxide,TON
+37035,0.05690406,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.0002637372,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.00014151636,Benzo[k]Fluoranthene,LB
+37033,0.05359088,Phenanthrene,LB
+37033,0.01290778,PM10-Primary from certain diesel engines,TON
+37033,0.1457515,PM25-Primary from certain diesel engines,TON
+37033,0.1853918,PM10 Primary (Filt + Cond),TON
+37033,1.0793554e-05,Chromium (VI),LB
+37033,0.003150504,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.08089254,Chrysene,LB
+37033,25.23118,Acetaldehyde,LB
+37029,0.004508546,Acenaphthylene,LB
+37029,9.629844e-06,"Dibenzo[a,h]Anthracene",LB
+37029,0.6357868,Ethyl Benzene,LB
+37029,0.0229042,Styrene,LB
+37029,0.0009895466,Acenaphthene,LB
+37125,167.5541,Styrene,LB
+37125,33505.76,Toluene,LB
+37125,19413.25,Xylenes (Mixed Isomers),LB
+37125,0.010014484,Chromium (VI),LB
+37125,1.2518332,Nickel,LB
+37125,1656.356,Carbon Monoxide,TON
+37125,145459,Carbon Dioxide,TON
+37125,2.066924,Organic Carbon portion of PM2.5-PRI,TON
+37125,4.667509,PM2.5 Primary (Filt + Cond),TON
+37125,1.556313,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,9.921782,Xylenes (Mixed Isomers),LB
+37121,0.2238246,Naphthalene,LB
+37121,0.002405295,PM10 Primary (Filt + Cond),TON
+37111,48.56524,Volatile Organic Compounds,TON
+37101,0.8644588,Acenaphthene,LB
+37101,2.458958,Phenanthrene,LB
+37101,0.01266222,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.002781764,Nitrous Oxide,TON
+37101,0.1647693,PM10 Primary (Filt + Cond),TON
+37101,0.0176335,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.009651335,Sulfate Portion of PM2.5-PRI,TON
+37101,24.93276,Toluene,LB
+37101,0.0007032532,Benzo[k]Fluoranthene,LB
+37101,0.016762256,Benzo[a]Pyrene,LB
+37101,0.05962288,Nickel,LB
+37103,0.00011056044,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,6.982114e-05,Chrysene,LB
+37103,0.01096426,Nitrogen Oxides,TON
+37103,6.257293e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.0001214222,Sulfur Dioxide,TON
+37101,8.285136,"1,3-Butadiene",LB
+37101,0.03077978,Benzo[b]Fluoranthene,LB
+37101,0.03077978,Benzo[k]Fluoranthene,LB
+37101,0.0010251584,"Dibenzo[a,h]Anthracene",LB
+37101,4.845404,Naphthalene,LB
+37099,0.245894,Carbon Monoxide,TON
+37099,0.0002753458,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.00839421,Acrolein,LB
+37095,0.006530822,"1,3-Butadiene",LB
+37095,8.98922e-09,Chromium (VI),LB
+37095,0.001681187,Nitrogen Oxides,TON
+37091,0.002727994,Chromium (VI),LB
+37091,1.103009,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,46.78994,Propionaldehyde,LB
+37091,37163.23,Carbon Dioxide,TON
+37091,0.003377714,Nitrate portion of PM2.5-PRI,TON
+37091,2.956272,PM10 Primary (Filt + Cond),TON
+37091,49.92717,Volatile Organic Compounds,TON
+37075,0.3080776,Acenaphthylene,LB
+37075,0.07977786,Chrysene,LB
+37075,1.0574648e-05,Mercury,LB
+37075,0.183239,Acenaphthene,LB
+37075,0.01154836,Ammonia,TON
+37075,3.433536,Toluene,LB
+37071,0.9250652,Acenaphthylene,LB
+37071,1.1077382,Phenanthrene,LB
+37071,0.02457522,Elemental Carbon portion of PM2.5-PRI,TON
+37059,2.0714,Hexane,LB
+37059,4.563846,Xylenes (Mixed Isomers),LB
+37059,0.4993872,Acenaphthylene,LB
+37059,0.01246355,Methane,TON
+37059,0.1274326,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.0005550623,Nitrate portion of PM2.5-PRI,TON
+37059,0.2517403,PM10 Primary (Filt + Cond),TON
+37055,1.0104618,Styrene,LB
+37055,0.8764536,Acrolein,LB
+37055,0.011625882,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.009971552,Benzo[k]Fluoranthene,LB
+37055,0.011758712,Benzo[a]Pyrene,LB
+37055,33.92796,"2,2,4-Trimethylpentane",LB
+37055,0.237223,Phenanthrene,LB
+37055,0.003221042,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.007463366,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.009606704,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.019179728,Ethyl Benzene,LB
+37051,9.04429e-05,Pyrene,LB
+37051,1.6454376e-06,"Benzo[g,h,i,]Perylene",LB
+37051,0.04374238,Benzene,LB
+37051,2.139364,Acetaldehyde,LB
+37051,0.003638551,Ammonia,TON
+37051,0.0006538094,Sulfur Dioxide,TON
+37039,4.308876,"1,3-Butadiene",LB
+37039,31.1592,Hexane,LB
+37039,0.05423898,Pyrene,LB
+37039,28.8317,"2,2,4-Trimethylpentane",LB
+37039,1.311964,Nitrogen Oxides,TON
+37037,0.07464176,Anthracene,LB
+37037,0.0011434242,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.004486138,Benzo[b]Fluoranthene,LB
+37037,0.6312964,"2,2,4-Trimethylpentane",LB
+37037,2.145474,Benzene,LB
+37037,0.012586452,Manganese,LB
+37037,1.0099656e-05,Mercury,LB
+37037,0.01127033,Ammonia,TON
+37029,1.044709,Propionaldehyde,LB
+37029,0.0002109728,"Benzo[g,h,i,]Perylene",LB
+37029,0.02508339,Methane,TON
+37029,0.003959441,PM10-Primary from certain diesel engines,TON
+37029,2.194828e-05,Nitrate portion of PM2.5-PRI,TON
+37057,123.7298,Volatile Organic Compounds,TON
+37053,100.77876,Acrolein,LB
+37053,26.49143,Nitrogen Oxides,TON
+37053,0.4345896,Chrysene,LB
+37045,6.199282,Pyrene,LB
+37045,0.02670516,"Benzo[g,h,i,]Perylene",LB
+37045,0.03220458,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,4.736438,Fluoranthene,LB
+37045,0.8300384,Chrysene,LB
+37045,779.1782,Formaldehyde,LB
+37045,0.3476472,Manganese,LB
+37045,323.1792,Acetaldehyde,LB
+37045,3.360138,PM10-Primary from certain diesel engines,TON
+37045,84.23943,Nitrogen Oxides,TON
+37043,0.011234828,Anthracene,LB
+37043,0.247082,Xylenes (Mixed Isomers),LB
+37043,0.00017584292,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,3.344236,Formaldehyde,LB
+37043,0.0002233432,Arsenic,LB
+37043,4.080267e-05,Nitrate portion of PM2.5-PRI,TON
+37043,0.003418183,Organic Carbon portion of PM2.5-PRI,TON
+37039,510.961,Naphthalene,LB
+37039,6.552276,PM10 Primary (Filt + Cond),TON
+37039,0.8161377,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,2.972688,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,3082.946,Formaldehyde,LB
+37039,2.996538,Benzo[a]Pyrene,LB
+37039,6712.508,"2,2,4-Trimethylpentane",LB
+37039,1.0979776,Manganese,LB
+37037,83.23018,Toluene,LB
+37027,240.3998,Acetaldehyde,LB
+37027,1.4119344,Acenaphthene,LB
+37027,17.54767,Carbon Monoxide,TON
+37027,0.5707188,Organic Carbon portion of PM2.5-PRI,TON
+37011,15.39044,"2,2,4-Trimethylpentane",LB
+37011,69.52276,Naphthalene,LB
+37011,0.0090963,Nitrous Oxide,TON
+37011,0.06495209,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.4930435,PM2.5 Primary (Filt + Cond),TON
+37011,0.0294812,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,28.17954,Propionaldehyde,LB
+37005,0.02721612,Benzo[a]Pyrene,LB
+37005,0.0011227072,"Dibenzo[a,h]Anthracene",LB
+37005,12.71684,"2,2,4-Trimethylpentane",LB
+37005,1.753074,Acenaphthene,LB
+37005,2.948462,Fluorene,LB
+37005,2334.964,Carbon Dioxide,TON
+37005,0.0599622,Fluoranthene,LB
+37005,0.081489,Acenaphthylene,LB
+37005,0.003519226,Chrysene,LB
+37005,0.4518988,Hexane,LB
+37005,3.713538e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,1.5747942,Benzene,LB
+37005,0.001095914,Arsenic,LB
+37003,0.001121917,Ammonia,TON
+37003,18.129924,Xylenes (Mixed Isomers),LB
+37001,135.82224,Acetaldehyde,LB
+37001,0.9992754,Acenaphthene,LB
+37001,0.1458505,Methane,TON
+37001,0.3148597,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.7737527,PM2.5 Primary (Filt + Cond),TON
+37001,1.78556,Volatile Organic Compounds,TON
+37001,0.017049624,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.3202028,Volatile Organic Compounds,TON
+37177,4.428124,Acrolein,LB
+37177,0.2976712,Acenaphthylene,LB
+37177,0.016087574,Manganese,LB
+37177,0.003680948,Arsenic,LB
+37177,24.64722,Acetaldehyde,LB
+37177,0.03050907,Methane,TON
+37177,0.02521369,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.5274148,Hexane,LB
+37193,1.0960282,Propionaldehyde,LB
+37193,0.16006216,Fluoranthene,LB
+37193,0.0006375434,Benzo[k]Fluoranthene,LB
+37193,0.015515698,Benzo[a]Pyrene,LB
+37193,0.0006353876,"Dibenzo[a,h]Anthracene",LB
+37193,0.09595036,PM25-Primary from certain diesel engines,TON
+37193,0.0002734404,Nitrate portion of PM2.5-PRI,TON
+37193,0.1393388,PM10 Primary (Filt + Cond),TON
+37193,0.01108608,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.1198217,Volatile Organic Compounds,TON
+37185,6.667282e-06,Chromium (VI),LB
+37185,0.0006487422,Benzo[b]Fluoranthene,LB
+37185,0.9384764,Formaldehyde,LB
+37185,1.7963986,Benzene,LB
+37185,6.684222e-05,Mercury,LB
+37185,0.00294457,Arsenic,LB
+37185,3.077023,Carbon Monoxide,TON
+37185,0.005802699,PM10-Primary from certain diesel engines,TON
+37185,0.001251879,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.00279916,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.0083071,Chrysene,LB
+37185,6.250104e-05,"Dibenzo[a,h]Anthracene",LB
+37185,0.164098,Styrene,LB
+37185,7.230494,Hexane,LB
+37185,0.010778164,Fluoranthene,LB
+37185,2.20498e-05,Nitrate portion of PM2.5-PRI,TON
+37191,0.03175292,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.2236936,Manganese,LB
+37191,48.10336,Acrolein,LB
+37191,30.5268,Propionaldehyde,LB
+37191,0.0002088684,Mercury,LB
+37191,271.9732,Acetaldehyde,LB
+37191,68.04962,Naphthalene,LB
+37191,3.409061,Volatile Organic Compounds,TON
+37187,0.2562568,Hexane,LB
+37187,3.428604e-06,Mercury,LB
+37187,0.03168954,Acenaphthene,LB
+37187,0.2348322,Carbon Monoxide,TON
+37187,0.05700448,Volatile Organic Compounds,TON
+37183,17.883064,Benzene,LB
+37179,7.07964e-05,"Benzo[g,h,i,]Perylene",LB
+37179,3.32359e-06,Nickel,LB
+37179,0.01702658,Acetaldehyde,LB
+37179,6.618563e-05,Methane,TON
+37179,0.10910246,Xylenes (Mixed Isomers),LB
+37179,0.002146695,Nitrogen Oxides,TON
+37179,1.585602e-05,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.03235232,Pyrene,LB
+37019,0.005041278,Benzo[b]Fluoranthene,LB
+37019,0.1058529,Phenanthrene,LB
+37019,0.7192897,Nitrogen Oxides,TON
+37019,0.004338155,Sulfur Dioxide,TON
+37015,0.0002296252,"Benzo[g,h,i,]Perylene",LB
+37015,8.486606e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.0623904,Acenaphthene,LB
+37009,0.001873821,Methane,TON
+37009,0.01960806,Volatile Organic Compounds,TON
+37009,0.00016942022,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.018222824,Acenaphthylene,LB
+37009,0.0001271998,Arsenic,LB
+37009,0.3796144,Naphthalene,LB
+37001,35.9399,Acrolein,LB
+37001,0.1866952,Chrysene,LB
+37001,11.60538,"2,2,4-Trimethylpentane",LB
+37001,21.74992,Carbon Monoxide,TON
+37001,0.001190542,Nitrate portion of PM2.5-PRI,TON
+37063,0.00016289362,Mercury,LB
+37063,0.00203119,Nickel,LB
+37063,0.002543266,Fluorene,LB
+37063,0.002504757,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.002279473,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.09100257,Volatile Organic Compounds,TON
+37063,0.0016648868,Benz[a]Anthracene,LB
+37025,0.06871604,PM2.5 Primary (Filt + Cond),TON
+37025,0.00015651022,Chromium (VI),LB
+37025,0.5303122,Styrene,LB
+37025,0.018754616,Benz[a]Anthracene,LB
+37017,31.21636,Benzene,LB
+37017,0.0491702,Nickel,LB
+37017,1.04347,Acenaphthene,LB
+37017,1.886459,Volatile Organic Compounds,TON
+37009,0.00735333,Chrysene,LB
+37009,36.61262,Formaldehyde,LB
+37009,0.2789702,Phenanthrene,LB
+37005,0.4253776,Styrene,LB
+37005,0.8481686,Hexane,LB
+37005,0.8887176,"2,2,4-Trimethylpentane",LB
+37005,1.627759,Carbon Monoxide,TON
+37005,0.05959687,PM10-Primary from certain diesel engines,TON
+37005,0.002687198,Ammonia,TON
+37005,0.0003084408,Nitrate portion of PM2.5-PRI,TON
+37005,0.009242796,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.08895286,"1,3-Butadiene",LB
+37059,0.06775804,Acrolein,LB
+37059,0.0005158904,Chrysene,LB
+37059,0.001924276,PM2.5 Primary (Filt + Cond),TON
+37013,1.3137162,Hexane,LB
+37013,0.0009811822,Anthracene,LB
+37013,0.004832738,"Benzo[g,h,i,]Perylene",LB
+37013,0.0018394994,Arsenic,LB
+37013,0.0010769722,Acenaphthene,LB
+37013,0.002181462,Fluorene,LB
+37013,138.3278,Carbon Dioxide,TON
+37013,8.530872e-05,Sulfate Portion of PM2.5-PRI,TON
+37169,0.328644,Toluene,LB
+37169,0.0001219362,Nickel,LB
+37169,1.735715,Acetaldehyde,LB
+37169,0.001126262,Methane,TON
+37169,7.675756e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37115,6.32733,Formaldehyde,LB
+37115,0.002445262,Benz[a]Anthracene,LB
+37115,0.003024236,Arsenic,LB
+37115,0.02243137,Methane,TON
+37115,1.690361e-05,Nitrate portion of PM2.5-PRI,TON
+37115,0.1873293,Volatile Organic Compounds,TON
+37177,0.00019478702,Naphthalene,LB
+37177,0.003635706,"1,3-Butadiene",LB
+37177,8.025776e-05,Sulfur Dioxide,TON
+37177,0.009467877,Volatile Organic Compounds,TON
+37195,806.548,Formaldehyde,LB
+37195,0.0004555692,Mercury,LB
+37195,0.15533236,Nickel,LB
+37195,0.09525352,Arsenic,LB
+37195,2.14914,Acenaphthene,LB
+37195,4.559548,Fluorene,LB
+37195,0.6295389,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.3275171,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.2973677,Sulfur Dioxide,TON
+37195,4.097843,Volatile Organic Compounds,TON
+37195,0.0003767938,Chromium (VI),LB
+37189,3.498482e-06,Chromium (VI),LB
+37189,0.0017853538,"Benzo[g,h,i,]Perylene",LB
+37189,2.625677e-06,Nitrate portion of PM2.5-PRI,TON
+37189,0.000458848,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.0003218512,Anthracene,LB
+37185,7.987346e-05,Anthracene,LB
+37185,0.0003738924,Pyrene,LB
+37185,3.366128e-05,Benz[a]Anthracene,LB
+37185,8.248916e-07,Nickel,LB
+37191,0.4993794,Pyrene,LB
+37191,0.011516888,Benzo[b]Fluoranthene,LB
+37191,0.376339,Fluoranthene,LB
+37191,52.70966,Formaldehyde,LB
+37191,0.001579152,"Dibenzo[a,h]Anthracene",LB
+37191,0.3404238,Fluorene,LB
+37191,724.1676,Carbon Dioxide,TON
+37191,0.02055761,Ammonia,TON
+37191,2.138657,Nitrogen Oxides,TON
+37191,0.2784563,Volatile Organic Compounds,TON
+37191,1.7179996,Ethyl Benzene,LB
+37191,0.16936912,Anthracene,LB
+37181,2.40566,Fluoranthene,LB
+37181,0.009554512,"Dibenzo[a,h]Anthracene",LB
+37181,4134.832,Carbon Dioxide,TON
+37181,0.0040926,Nitrate portion of PM2.5-PRI,TON
+37181,1.827288,Volatile Organic Compounds,TON
+37157,0.8244052,Toluene,LB
+37157,0.08437164,Propionaldehyde,LB
+37157,0.3803544,"2,2,4-Trimethylpentane",LB
+37157,0.4029857,Carbon Monoxide,TON
+37161,14.306806,Toluene,LB
+37145,0.001429714,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,2.962684,Benzene,LB
+37145,0.000932586,Acenaphthene,LB
+37145,100.9854,Carbon Dioxide,TON
+37145,0.0009405935,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.07053329,Volatile Organic Compounds,TON
+37125,7.05053,"2,2,4-Trimethylpentane",LB
+37177,0.0008144574,"Dibenzo[a,h]Anthracene",LB
+37177,1432.616,Carbon Dioxide,TON
+37177,0.1038138,Ammonia,TON
+37177,0.07873976,Anthracene,LB
+37175,0.1269116,Acrolein,LB
+37175,0.0015990968,Benzo[k]Fluoranthene,LB
+37175,5.842251e-05,Sulfate Portion of PM2.5-PRI,TON
+37163,54.45832,Acrolein,LB
+37163,6.788736,Pyrene,LB
+37163,0.14830996,Benzo[b]Fluoranthene,LB
+37163,0.02030726,"Dibenzo[a,h]Anthracene",LB
+37163,8.352908,Phenanthrene,LB
+37163,16.99756,Carbon Monoxide,TON
+37163,8600.286,Carbon Dioxide,TON
+37163,0.02413343,Nitrous Oxide,TON
+37163,0.008777819,Nitrate portion of PM2.5-PRI,TON
+37163,1.7545724,Anthracene,LB
+37163,0.015134882,Benzo[k]Fluoranthene,LB
+37163,44.13686,Benzene,LB
+37163,0.14980508,Manganese,LB
+37163,0.103096,Ammonia,TON
+37163,49.51608,Nitrogen Oxides,TON
+37163,3.886774,Anthracene,LB
+37163,0.3449687,Methane,TON
+37163,33.31208,"2,2,4-Trimethylpentane",LB
+37163,29.82082,Nitrogen Oxides,TON
+37163,0.08213464,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,1.9291006,"1,3-Butadiene",LB
+37173,0.18266866,Anthracene,LB
+37173,1.2911558,"2,2,4-Trimethylpentane",LB
+37173,0.134336,PM10-Primary from certain diesel engines,TON
+37173,0.08235943,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.0009463021,Nitrous Oxide,TON
+37173,0.002170226,Sulfate Portion of PM2.5-PRI,TON
+37173,0.3353565,Volatile Organic Compounds,TON
+37185,5.114736,Anthracene,LB
+37185,2.10632,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,8.720178,Fluoranthene,LB
+37185,1893.0098,Formaldehyde,LB
+37185,0.03272802,Mercury,LB
+37185,1991.0672,Acetaldehyde,LB
+37185,12.131526,Fluorene,LB
+37185,3.351449,Methane,TON
+37181,0.3086968,Pyrene,LB
+37181,0.07891606,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.054134,Chrysene,LB
+37181,0.0018105964,"Dibenzo[a,h]Anthracene",LB
+37181,0.01472302,Manganese,LB
+37181,0.013897296,Arsenic,LB
+37181,40.68476,Acetaldehyde,LB
+37181,1.0030042,Phenanthrene,LB
+37181,0.3735344,Fluorene,LB
+37181,1187.476,Carbon Dioxide,TON
+37181,0.1180191,PM10 Primary (Filt + Cond),TON
+37181,0.07778402,PM2.5 Primary (Filt + Cond),TON
+37181,0.02441834,Sulfur Dioxide,TON
+37001,1.8167728,"1,3-Butadiene",LB
+37001,0.03050014,Pyrene,LB
+37001,0.06101911,Sulfur Dioxide,TON
+37001,1.030333,Volatile Organic Compounds,TON
+37127,0.07549804,Acrolein,LB
+37127,0.0015479624,Pyrene,LB
+37127,0.0011659656,Benzo[b]Fluoranthene,LB
+37127,0.0013723284,Fluoranthene,LB
+37127,0.0014838318,Fluorene,LB
+37101,1.9409608,Ethyl Benzene,LB
+37101,0.0921309,Styrene,LB
+37101,7.174212,Xylenes (Mixed Isomers),LB
+37101,0.008931986,Arsenic,LB
+37101,0.00645161,Fluorene,LB
+37101,0.002099627,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.001146679,Propionaldehyde,LB
+37177,6.00648e-05,Acenaphthene,LB
+37177,4.504641e-05,PM2.5 Primary (Filt + Cond),TON
+37177,1.211133e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,2.731708e-05,Sulfur Dioxide,TON
+37161,0.03836364,Fluorene,LB
+37161,6.053371,Carbon Monoxide,TON
+37161,8.78574e-07,Chromium (VI),LB
+37161,0.005678746,Benzo[b]Fluoranthene,LB
+37161,0.08628648,Acenaphthylene,LB
+37161,0.007891412,Benzo[a]Pyrene,LB
+37151,3.528796e-06,Chromium (VI),LB
+37151,0.000476533,"Dibenzo[a,h]Anthracene",LB
+37139,0.004298458,PM10-Primary from certain diesel engines,TON
+37139,0.09826774,Fluoranthene,LB
+37139,0.07945408,Acenaphthene,LB
+37139,2.592482,Carbon Monoxide,TON
+37141,2.438004e-05,Mercury,LB
+37141,0.005097596,Arsenic,LB
+37141,0.03120965,Methane,TON
+37141,10.33397,Nitrogen Oxides,TON
+37131,788.8034,Toluene,LB
+37131,0.19833092,Pyrene,LB
+37131,423.9072,Xylenes (Mixed Isomers),LB
+37131,0.005722681,Nitrous Oxide,TON
+37125,0.0006261662,Nitrate portion of PM2.5-PRI,TON
+37125,0.05035437,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.121274,PM2.5 Primary (Filt + Cond),TON
+37125,0.00530656,Sulfur Dioxide,TON
+37125,0.5901826,Phenanthrene,LB
+37125,0.010391686,Benzo[b]Fluoranthene,LB
+37125,0.06664836,Chrysene,LB
+37121,1.729916,Benzene,LB
+37121,0.5559544,Acetaldehyde,LB
+37121,0.0852304,Naphthalene,LB
+37121,0.001401484,Methane,TON
+37121,0.002306006,PM10 Primary (Filt + Cond),TON
+37121,0.0008355456,PM2.5 Primary (Filt + Cond),TON
+37121,1.976913e-05,Sulfate Portion of PM2.5-PRI,TON
+37111,0.10092286,Benzo[b]Fluoranthene,LB
+37111,0.014562564,Benzo[k]Fluoranthene,LB
+37111,0.7103514,Chrysene,LB
+37111,54.39746,"2,2,4-Trimethylpentane",LB
+37111,187.2534,Toluene,LB
+37111,6.289284,Pyrene,LB
+37157,0.4969602,Pyrene,LB
+37157,1.9215312e-05,Mercury,LB
+37157,0.14898118,Acenaphthene,LB
+37157,0.3384122,Fluorene,LB
+37157,687.093,Carbon Dioxide,TON
+37157,0.0488484,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.2034884,PM10 Primary (Filt + Cond),TON
+37157,3.667244,Ethyl Benzene,LB
+37157,8.124992,Toluene,LB
+37157,2.799952,Hexane,LB
+37157,0.0004046506,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.4316526,Fluoranthene,LB
+37157,0.0280697,Chrysene,LB
+37157,0.005327526,Benzo[a]Pyrene,LB
+37157,3.173896e-05,Mercury,LB
+37157,0.06178347,Methane,TON
+37157,0.01111277,Ammonia,TON
+37157,0.12959416,Styrene,LB
+37157,20.49722,Toluene,LB
+37157,4.879966,Benzene,LB
+37157,6.414354e-05,Arsenic,LB
+37157,0.008451931,Methane,TON
+37157,0.0006221771,Elemental Carbon portion of PM2.5-PRI,TON
+37153,10.16424,Hexane,LB
+37153,1.3902806,Anthracene,LB
+37153,0.02287236,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,2.108322,Acenaphthylene,LB
+37153,10.379596,"2,2,4-Trimethylpentane",LB
+37153,0.9811456,Benz[a]Anthracene,LB
+37153,0.0250353,Arsenic,LB
+37153,0.203252,Methane,TON
+37153,8.890724,Carbon Monoxide,TON
+37153,0.4390107,Elemental Carbon portion of PM2.5-PRI,TON
+37153,18.74042,Nitrogen Oxides,TON
+37153,0.4269957,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.04276415,Sulfate Portion of PM2.5-PRI,TON
+37153,0.12358778,Fluoranthene,LB
+37153,0.22689,Styrene,LB
+37153,0.16314832,Pyrene,LB
+37153,1.7974564,Naphthalene,LB
+37153,0.0005267015,Nitrous Oxide,TON
+37153,0.006368946,Ammonia,TON
+37153,0.01763606,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.08316744,PM2.5 Primary (Filt + Cond),TON
+37153,0.003390088,Sulfate Portion of PM2.5-PRI,TON
+37151,1.7254316,Phenanthrene,LB
+37151,7.694949,Carbon Monoxide,TON
+37151,2527.22,Carbon Dioxide,TON
+37151,0.5386373,PM10 Primary (Filt + Cond),TON
+37151,0.02170609,Sulfur Dioxide,TON
+37151,0.015958132,Benzo[b]Fluoranthene,LB
+37151,0.002210924,Benzo[k]Fluoranthene,LB
+37151,4.599116,"2,2,4-Trimethylpentane",LB
+37151,12.92218,Toluene,LB
+37149,0.0015298326,Anthracene,LB
+37149,0.003011304,Pyrene,LB
+37149,1.4087162,"2,2,4-Trimethylpentane",LB
+37149,0.003584466,Fluorene,LB
+37149,0.04479057,Nitrogen Oxides,TON
+37149,9.730632e-05,Sulfur Dioxide,TON
+37147,0.3559364,Ammonia,TON
+37147,0.09950768,Sulfur Dioxide,TON
+37147,0.0646805,Sulfate Portion of PM2.5-PRI,TON
+37147,0.13556356,"Dibenzo[a,h]Anthracene",LB
+37147,3.341632,Arsenic,LB
+37147,60.03428,Phenanthrene,LB
+37147,571.6588,Naphthalene,LB
+37147,0.02132655,Nitrate portion of PM2.5-PRI,TON
+37147,8.850092,PM2.5 Primary (Filt + Cond),TON
+37147,29744.46,Xylenes (Mixed Isomers),LB
+37147,5.904982,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,3.627248,Chrysene,LB
+37139,0.09914182,Styrene,LB
+37139,1.3133276,Formaldehyde,LB
+37139,0.004330738,Acenaphthene,LB
+37139,0.001947242,Methane,TON
+37135,0.01661387,"Dibenzo[a,h]Anthracene",LB
+37135,535.0042,Acetaldehyde,LB
+37135,0.002327604,Nitrate portion of PM2.5-PRI,TON
+37135,0.6177085,Sulfur Dioxide,TON
+37131,0.0009442752,Benzo[b]Fluoranthene,LB
+37131,0.010636184,Benz[a]Anthracene,LB
+37131,0.001679487,Methane,TON
+37131,0.001019213,Ammonia,TON
+37131,0.01555157,PM10 Primary (Filt + Cond),TON
+37131,7.075774e-08,Chromium (VI),LB
+37131,0.00010991474,Benzo[k]Fluoranthene,LB
+37131,0.64061,Toluene,LB
+37131,0.1621622,Hexane,LB
+37131,4.598417,Carbon Dioxide,TON
+37131,5.3765e-07,Nitrate portion of PM2.5-PRI,TON
+37123,1.10663,"1,3-Butadiene",LB
+37123,0.004285276,Benzo[k]Fluoranthene,LB
+37123,0.0011210906,Manganese,LB
+37123,0.006448601,Methane,TON
+37123,79.44167,Carbon Dioxide,TON
+37123,0.002814314,Ammonia,TON
+37123,0.001910082,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,4.725406,Ethyl Benzene,LB
+37115,1.0337544,"1,3-Butadiene",LB
+37115,0.012680714,Pyrene,LB
+37115,0.002343562,Benzo[k]Fluoranthene,LB
+37115,0.003305858,Benzo[a]Pyrene,LB
+37115,0.0002596986,Manganese,LB
+37115,0.00947489,Methane,TON
+37115,2.534174,Carbon Monoxide,TON
+37115,0.001612405,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.003567692,Chromium (VI),LB
+37115,0.0614926,"Dibenzo[a,h]Anthracene",LB
+37113,7.963468e-05,Nitrate portion of PM2.5-PRI,TON
+37113,0.005745848,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.001985012,Sulfate Portion of PM2.5-PRI,TON
+37113,2.999898,Ethyl Benzene,LB
+37113,6.750342,Acrolein,LB
+37113,2.318782,Hexane,LB
+37113,3.213132e-05,Chromium (VI),LB
+37109,3.236854,Styrene,LB
+37109,12.114912,Propionaldehyde,LB
+37109,0.0010021114,Benzo[k]Fluoranthene,LB
+37109,21.69628,Benzene,LB
+37109,100.4343,Acetaldehyde,LB
+37109,25.31074,Naphthalene,LB
+37109,0.0542808,Ammonia,TON
+37109,4.873227,Nitrogen Oxides,TON
+37109,405.6352,Acrolein,LB
+37109,455.9902,Propionaldehyde,LB
+37109,0.16523794,"Dibenzo[a,h]Anthracene",LB
+37109,1.5636868,Nickel,LB
+37109,120.36214,Phenanthrene,LB
+37109,44.95374,Fluorene,LB
+37109,18.27127,Ammonia,TON
+37109,4.98784,Sulfur Dioxide,TON
+37099,7579.868,Hexane,LB
+37099,23358.06,Xylenes (Mixed Isomers),LB
+37099,0.008520918,Chromium (VI),LB
+37099,10.853254,"Benzo[g,h,i,]Perylene",LB
+37099,4.07769,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,3.072676,Benzo[b]Fluoranthene,LB
+37099,7302.046,"2,2,4-Trimethylpentane",LB
+37099,578.2346,Naphthalene,LB
+37099,2.345245,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.9427522,Ethyl Benzene,LB
+37089,0.006079424,Benzo[b]Fluoranthene,LB
+37089,0.202386,Fluoranthene,LB
+37089,0.08205932,Acenaphthene,LB
+37089,0.3345318,Phenanthrene,LB
+37089,0.18506314,Fluorene,LB
+37089,0.006802795,Sulfur Dioxide,TON
+37081,0.2498436,Arsenic,LB
+37081,7.733652,PM25-Primary from certain diesel engines,TON
+37081,1.24142,Ammonia,TON
+37081,0.03901599,Nitrate portion of PM2.5-PRI,TON
+37077,63.08614,Xylenes (Mixed Isomers),LB
+37077,21.16634,Benzene,LB
+37077,0.125336,Manganese,LB
+37077,33.70756,Naphthalene,LB
+37077,0.3525417,Nitrous Oxide,TON
+37077,91.43234,"1,3-Butadiene",LB
+37077,0.7198574,"Benzo[g,h,i,]Perylene",LB
+37069,2.715,Hexane,LB
+37069,0.7782708,Fluoranthene,LB
+37069,0.003053882,Benzo[k]Fluoranthene,LB
+37069,46.07062,Acetaldehyde,LB
+37069,11.584554,Naphthalene,LB
+37065,0.00010127432,Chrysene,LB
+37065,0.0002506664,Acenaphthene,LB
+37065,0.07533554,Volatile Organic Compounds,TON
+37067,0.05129274,Styrene,LB
+37067,0.0009661788,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.0006748642,Benzo[b]Fluoranthene,LB
+37067,1.433083e-06,Mercury,LB
+37067,0.6818376,Acetaldehyde,LB
+37067,0.00210947,Acenaphthene,LB
+37067,0.004272598,Fluorene,LB
+37067,0.1095481,Naphthalene,LB
+37051,39.7023,Benzene,LB
+37117,0.4148478,Fluoranthene,LB
+37117,0.0003984966,Benzo[k]Fluoranthene,LB
+37117,0.007132728,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.005554847,Sulfur Dioxide,TON
+37111,177.4213,Carbon Dioxide,TON
+37111,0.01082308,Benzo[b]Fluoranthene,LB
+37111,0.01082308,Benzo[k]Fluoranthene,LB
+37121,126.92088,Styrene,LB
+37121,765.0278,"1,3-Butadiene",LB
+37121,16397.452,Toluene,LB
+37121,3652.59,Hexane,LB
+37121,1.27806,Benzo[k]Fluoranthene,LB
+37121,1.321818,Chrysene,LB
+37121,10.790396,Fluorene,LB
+37121,276.5282,Naphthalene,LB
+37121,1.649422,PM2.5 Primary (Filt + Cond),TON
+37115,4.354842,Xylenes (Mixed Isomers),LB
+37115,9.826822e-06,Chromium (VI),LB
+37115,0.0006780078,Nitrate portion of PM2.5-PRI,TON
+37115,0.002922219,Sulfur Dioxide,TON
+37115,0.002620525,Sulfate Portion of PM2.5-PRI,TON
+37115,60.68944,Formaldehyde,LB
+37115,0.00962836,Manganese,LB
+37115,8.308274,Toluene,LB
+37115,0.006189102,"Benzo[g,h,i,]Perylene",LB
+37115,130.91104,Formaldehyde,LB
+37115,0.06236643,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.7841751,Volatile Organic Compounds,TON
+37113,0.17978152,Xylenes (Mixed Isomers),LB
+37113,4.363344e-05,Benz[a]Anthracene,LB
+37113,0.15286842,Benzene,LB
+37099,0.003476998,Anthracene,LB
+37099,0.005972706,Fluoranthene,LB
+37099,0.018432292,Acenaphthylene,LB
+37099,0.0013292592,Benz[a]Anthracene,LB
+37099,1.2712602,Acetaldehyde,LB
+37099,0.02202846,Phenanthrene,LB
+37099,0.002648551,Nitrous Oxide,TON
+37099,7.002596e-06,Nitrate portion of PM2.5-PRI,TON
+37099,0.001202477,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.02274452,Anthracene,LB
+37095,82.54056,Xylenes (Mixed Isomers),LB
+37095,0.1209077,Acenaphthylene,LB
+37095,186.7395,Carbon Dioxide,TON
+37079,27.95256,Toluene,LB
+37079,0.008773216,Pyrene,LB
+37079,0.007695,"Benzo[g,h,i,]Perylene",LB
+37079,0.000790981,Manganese,LB
+37079,8.606177e-06,Nitrate portion of PM2.5-PRI,TON
+37079,0.003082892,PM2.5 Primary (Filt + Cond),TON
+37079,0.1300662,Volatile Organic Compounds,TON
+37081,1.5820682,Chrysene,LB
+37081,0.03345796,"Dibenzo[a,h]Anthracene",LB
+37081,0.3165286,Manganese,LB
+37081,0.00017924376,Mercury,LB
+37081,493.6912,Acetaldehyde,LB
+37081,1.03089,Elemental Carbon portion of PM2.5-PRI,TON
+37081,43.78682,Nitrogen Oxides,TON
+37057,31.01932,Ethyl Benzene,LB
+37057,1.000947,Propionaldehyde,LB
+37057,0.018704516,Benzo[a]Pyrene,LB
+37057,0.0945962,Fluorene,LB
+37057,0.01853383,PM2.5 Primary (Filt + Cond),TON
+37055,2.503588,Hexane,LB
+37055,0.57896,Acenaphthylene,LB
+37055,0.09372894,Chrysene,LB
+37055,99.5505,Formaldehyde,LB
+37055,0.0018051836,"Dibenzo[a,h]Anthracene",LB
+37055,0.1674268,Benz[a]Anthracene,LB
+37055,0.013014496,Nickel,LB
+37055,0.02539037,Methane,TON
+37055,3.415165,Carbon Monoxide,TON
+37053,27.99348,Xylenes (Mixed Isomers),LB
+37049,24.7197,Acetaldehyde,LB
+37049,0.0015798498,Acenaphthene,LB
+37049,209.172,Carbon Dioxide,TON
+37049,0.001107462,Sulfur Dioxide,TON
+37049,0.0003413337,Sulfate Portion of PM2.5-PRI,TON
+37049,0.4056347,Volatile Organic Compounds,TON
+37049,0.5597902,Toluene,LB
+37049,419.297,Formaldehyde,LB
+37049,16.834116,"1,3-Butadiene",LB
+37049,33.75968,Toluene,LB
+37049,56.4102,Naphthalene,LB
+37049,2.276053,PM25-Primary from certain diesel engines,TON
+37035,41.17336,Ethyl Benzene,LB
+37035,10.151822,Pyrene,LB
+37035,109.47848,Xylenes (Mixed Isomers),LB
+37035,0.0005046646,Chromium (VI),LB
+37035,7.746618,Fluoranthene,LB
+37035,1268.801,Formaldehyde,LB
+37035,2.359348,Benz[a]Anthracene,LB
+37035,0.6335208,Manganese,LB
+37035,5.449159,PM10-Primary from certain diesel engines,TON
+37035,0.01249092,Nitrate portion of PM2.5-PRI,TON
+37035,0.5873995,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,407.7562,Hexane,LB
+37029,1032.7328,Xylenes (Mixed Isomers),LB
+37029,539.2864,"2,2,4-Trimethylpentane",LB
+37013,0.17988416,Benzo[a]Pyrene,LB
+37013,0.007538908,"Dibenzo[a,h]Anthracene",LB
+37013,12.23374,"2,2,4-Trimethylpentane",LB
+37013,3.9244,Phenanthrene,LB
+37013,41.86396,Nitrogen Oxides,TON
+37013,1.555273,PM2.5 Primary (Filt + Cond),TON
+37013,39.2128,Toluene,LB
+37013,10.61589,Hexane,LB
+37013,0.00016821658,Chromium (VI),LB
+37013,0.05373592,Benzo[b]Fluoranthene,LB
+37013,8.934194,"1,3-Butadiene",LB
+37013,0.017217712,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.09583876,Manganese,LB
+37013,0.02420687,Sulfate Portion of PM2.5-PRI,TON
+37013,1.571672,Volatile Organic Compounds,TON
+37021,2360.952,Hexane,LB
+37021,5217.302,Xylenes (Mixed Isomers),LB
+37021,1690.317,Benzene,LB
+37021,6.816304,Phenanthrene,LB
+37021,0.6152251,Methane,TON
+37021,0.08575228,Nitrous Oxide,TON
+37021,0.01582007,Sulfate Portion of PM2.5-PRI,TON
+37005,0.012301812,Benzo[b]Fluoranthene,LB
+37005,56.65862,Benzene,LB
+37005,2.165822,Naphthalene,LB
+37005,267.8978,Carbon Dioxide,TON
+37005,4.829001e-05,Nitrate portion of PM2.5-PRI,TON
+37005,0.02315318,PM10 Primary (Filt + Cond),TON
+37085,11.402492,"2,2,4-Trimethylpentane",LB
+37049,0.000531298,"Dibenzo[a,h]Anthracene",LB
+37049,1.1347984,Acrolein,LB
+37049,0.0008978914,Mercury,LB
+37049,0.017166142,Arsenic,LB
+37049,0.5777014,Naphthalene,LB
+37049,1603.226,Carbon Dioxide,TON
+37049,8.177771e-05,Nitrate portion of PM2.5-PRI,TON
+37049,1.328684,Nitrogen Oxides,TON
+37049,0.04871158,Sulfur Dioxide,TON
+37049,0.0009470206,Sulfate Portion of PM2.5-PRI,TON
+37113,2.563794,Acenaphthylene,LB
+37113,0.14513392,Chrysene,LB
+37113,0.14701868,Benz[a]Anthracene,LB
+37113,0.03892208,Nickel,LB
+37113,5742.02,Carbon Dioxide,TON
+37113,0.2873393,Nitrous Oxide,TON
+37099,10.715806,"1,3-Butadiene",LB
+37099,1.8119516,Acenaphthylene,LB
+37099,0.2144274,Benzo[a]Pyrene,LB
+37099,10.504412,"2,2,4-Trimethylpentane",LB
+37099,1.0783562,Acenaphthene,LB
+37095,0.1669098,Fluoranthene,LB
+37095,0.00014672402,Benzo[k]Fluoranthene,LB
+37095,0.2100686,Acenaphthylene,LB
+37095,0.002054472,Arsenic,LB
+37095,4.176292,Naphthalene,LB
+37095,0.2046142,Pyrene,LB
+37083,0.012025194,"2,2,4-Trimethylpentane",LB
+37083,3.423198e-05,Pyrene,LB
+37083,2.12754e-06,Manganese,LB
+37083,1.04955e-05,Methane,TON
+37083,6.424593e-06,Ammonia,TON
+37073,0.09811482,Acenaphthene,LB
+37073,0.06622071,PM10-Primary from certain diesel engines,TON
+37073,0.00019505,Nitrate portion of PM2.5-PRI,TON
+37073,2.277143,Nitrogen Oxides,TON
+37073,0.006889064,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.001098398,Sulfate Portion of PM2.5-PRI,TON
+37073,0.9632402,"1,3-Butadiene",LB
+37065,19.13644,Pyrene,LB
+37065,3.143932,Benzo[k]Fluoranthene,LB
+37065,4.165476,Benzo[a]Pyrene,LB
+37065,275.2672,Styrene,LB
+37065,335.872,Nitrogen Oxides,TON
+37061,0.2559284,Hexane,LB
+37061,0.07534234,Fluoranthene,LB
+37061,2.328796e-06,Mercury,LB
+37061,4.431258,Acetaldehyde,LB
+37061,1.1186072,Naphthalene,LB
+37061,108.7449,Carbon Dioxide,TON
+37061,0.02580253,PM25-Primary from certain diesel engines,TON
+37061,0.5440221,Nitrogen Oxides,TON
+37061,0.0591376,Volatile Organic Compounds,TON
+37051,801.785,Acetaldehyde,LB
+37051,0.01968928,Nitrate portion of PM2.5-PRI,TON
+37051,7.989025,PM2.5 Primary (Filt + Cond),TON
+37051,15.121176,Pyrene,LB
+37051,8.257012,Acenaphthylene,LB
+37051,1985.3548,Formaldehyde,LB
+37051,0.04576348,"Dibenzo[a,h]Anthracene",LB
+37049,2516.468,"1,3-Butadiene",LB
+37049,339.503,Acrolein,LB
+37035,1201.69,Benzene,LB
+37035,0.06398208,Arsenic,LB
+37035,0.887288,Acenaphthene,LB
+37035,0.9289356,"Benzo[g,h,i,]Perylene",LB
+37035,0.6426416,Ammonia,TON
+37035,1.2974506,Fluoranthene,LB
+37035,0.2563666,Benzo[k]Fluoranthene,LB
+37027,0.002808572,Manganese,LB
+37027,0.005678939,Methane,TON
+37027,0.010389726,Fluoranthene,LB
+37027,4.823564e-05,"Dibenzo[a,h]Anthracene",LB
+37027,4.752308,Ethyl Benzene,LB
+37027,0.14371628,Acrolein,LB
+37027,3.801119,Carbon Dioxide,TON
+37027,5.1901e-08,Chromium (VI),LB
+37027,0.002337498,"Benzo[g,h,i,]Perylene",LB
+37027,0.3865058,Formaldehyde,LB
+37027,0.0008726462,Benzo[a]Pyrene,LB
+37027,7.158844e-05,Manganese,LB
+37027,6.487538e-06,Nickel,LB
+37027,9.94767e-06,Arsenic,LB
+37045,0.0018273964,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.0009948454,Benzo[k]Fluoranthene,LB
+37045,0.04591214,Chrysene,LB
+37045,0.103978,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.0011791,Nitrous Oxide,TON
+37045,0.1686091,PM2.5 Primary (Filt + Cond),TON
+37043,401.2142,Hexane,LB
+37041,471.3114,"2,2,4-Trimethylpentane",LB
+37039,0.0013599944,Benzo[a]Pyrene,LB
+37039,4.036854,Benzene,LB
+37039,0.0002613666,Arsenic,LB
+37039,1.1403458,Acetaldehyde,LB
+37039,0.018955738,Phenanthrene,LB
+37039,4.935788e-06,Nitrate portion of PM2.5-PRI,TON
+37027,0.1374726,PM2.5 Primary (Filt + Cond),TON
+37027,504.419,Ethyl Benzene,LB
+37027,0.003018114,"Dibenzo[a,h]Anthracene",LB
+37027,0.04017552,Manganese,LB
+37007,5.050368e-05,Chrysene,LB
+37007,0.001690729,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.0004958598,Nickel,LB
+37007,0.02845336,Fluorene,LB
+37007,0.1722637,Nitrogen Oxides,TON
+37007,0.0002943204,Sulfur Dioxide,TON
+37007,0.13237256,Ethyl Benzene,LB
+37007,0.12880118,"1,3-Butadiene",LB
+37007,0.04079284,Pyrene,LB
+37007,0.2677784,Xylenes (Mixed Isomers),LB
+37007,0.00012164368,Benzo[k]Fluoranthene,LB
+37007,0.004334304,Fluoranthene,LB
+37007,1.8747404e-05,Mercury,LB
+37007,0.0002337672,Nickel,LB
+37007,0.002175942,Methane,TON
+37019,140.83204,Acetaldehyde,LB
+37019,0.00844682,Nitrous Oxide,TON
+37019,0.3544161,PM2.5 Primary (Filt + Cond),TON
+37019,0.01575162,Sulfate Portion of PM2.5-PRI,TON
+37011,0.0215384,Nickel,LB
+37011,0.00898354,Arsenic,LB
+37011,0.3664544,PM25-Primary from certain diesel engines,TON
+37011,0.04385668,Ammonia,TON
+37011,0.01513892,Sulfate Portion of PM2.5-PRI,TON
+37011,0.966335,Volatile Organic Compounds,TON
+37009,0.004140294,Benzo[k]Fluoranthene,LB
+37009,0.004079346,"Dibenzo[a,h]Anthracene",LB
+37009,6.317656,"2,2,4-Trimethylpentane",LB
+37009,0.163336,Organic Carbon portion of PM2.5-PRI,TON
+37009,1.311094,PM10 Primary (Filt + Cond),TON
+37009,0.00242372,Benzo[k]Fluoranthene,LB
+37009,0.002423962,Chrysene,LB
+37009,0.002469192,Benz[a]Anthracene,LB
+37009,9.770894,Benzene,LB
+37009,0.04935296,Phenanthrene,LB
+37009,0.0008241856,Elemental Carbon portion of PM2.5-PRI,TON
+37009,51.61228,Toluene,LB
+37009,13.364164,Hexane,LB
+37005,2.602008,Ethyl Benzene,LB
+37005,0.01344376,Nickel,LB
+37005,32.52354,Acetaldehyde,LB
+37005,0.4101054,Fluorene,LB
+37005,0.02914825,Sulfate Portion of PM2.5-PRI,TON
+37005,0.01593878,Arsenic,LB
+37005,9.952502,Naphthalene,LB
+37005,33.09395,Carbon Monoxide,TON
+37005,4.131791,Nitrogen Oxides,TON
+37005,0.01496584,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.04838252,Chrysene,LB
+37003,2.338846e-07,Anthracene,LB
+37003,0.0005451656,Xylenes (Mixed Isomers),LB
+37003,4.816538e-11,Chromium (VI),LB
+37003,1.2416746e-06,Acenaphthylene,LB
+37003,1.4829738e-06,Phenanthrene,LB
+37003,5.518546e-07,Fluorene,LB
+37003,5.902716e-08,Methane,TON
+37003,2.211868e-08,Elemental Carbon portion of PM2.5-PRI,TON
+37003,8.367847e-08,Ammonia,TON
+37001,21806.3,Ethyl Benzene,LB
+37001,31.00982,Anthracene,LB
+37001,10.111876,Benzo[b]Fluoranthene,LB
+37001,0.3098996,"Dibenzo[a,h]Anthracene",LB
+37001,0.1992668,Mercury,LB
+37001,196.98836,Phenanthrene,LB
+37001,17.67209,Nitrous Oxide,TON
+37001,0.04186563,Nitrate portion of PM2.5-PRI,TON
+37185,0.0991558,Hexane,LB
+37185,0.228418,Xylenes (Mixed Isomers),LB
+37185,0.11697236,"2,2,4-Trimethylpentane",LB
+37185,0.00012040548,Benz[a]Anthracene,LB
+37185,6.401169e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37185,8.856401e-07,Nitrate portion of PM2.5-PRI,TON
+37055,0.0011475318,Fluoranthene,LB
+37055,0.003043034,Acenaphthylene,LB
+37055,0.0005956384,Chrysene,LB
+37055,0.00375396,Phenanthrene,LB
+37055,0.00105639,Organic Carbon portion of PM2.5-PRI,TON
+37043,6.463148e-05,Acenaphthene,LB
+37043,0.00336982,Naphthalene,LB
+37043,0.07335797,Carbon Monoxide,TON
+37043,3.343688e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.0005275192,PM10 Primary (Filt + Cond),TON
+37043,0.008495358,"1,3-Butadiene",LB
+37043,0.0155792,Propionaldehyde,LB
+37043,0.00012398278,Pyrene,LB
+37043,5.098814e-05,Chrysene,LB
+37043,0.00012259292,Benzo[a]Pyrene,LB
+37043,5.748838e-05,Benz[a]Anthracene,LB
+37167,0.3440502,Hexane,LB
+37167,0.0004063522,Benzo[b]Fluoranthene,LB
+37167,0.0003512602,Benz[a]Anthracene,LB
+37167,1.001285,Benzene,LB
+37167,0.0002086093,Elemental Carbon portion of PM2.5-PRI,TON
+37167,2.849447e-06,Nitrate portion of PM2.5-PRI,TON
+37167,0.004357991,PM10 Primary (Filt + Cond),TON
+37167,0.0004478851,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.001739309,Sulfur Dioxide,TON
+37167,0.01547554,Manganese,LB
+37167,0.003489925,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.008620124,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.01974507,PM2.5 Primary (Filt + Cond),TON
+37167,0.006987876,Anthracene,LB
+37167,0.006414866,Benz[a]Anthracene,LB
+37175,0.0009123916,Naphthalene,LB
+37175,0.197084,Toluene,LB
+37175,40.16304,Formaldehyde,LB
+37175,1.15319e-05,Mercury,LB
+37173,1.8769278,Acrolein,LB
+37173,178.34192,Hexane,LB
+37173,391.606,Xylenes (Mixed Isomers),LB
+37173,0.4458278,Acenaphthylene,LB
+37173,0.02885506,Chrysene,LB
+37173,0.04230268,Benzo[a]Pyrene,LB
+37173,0.004957566,Nickel,LB
+37173,0.04090084,PM2.5 Primary (Filt + Cond),TON
+37173,0.001249342,Sulfate Portion of PM2.5-PRI,TON
+37165,0.000404647,Arsenic,LB
+37165,1.134319,Carbon Monoxide,TON
+37165,0.1645246,Nitrogen Oxides,TON
+37165,0.007197718,PM10 Primary (Filt + Cond),TON
+37165,7.488008,Toluene,LB
+37165,0.003975824,Pyrene,LB
+37165,0.002071164,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,4.75243e-05,"Dibenzo[a,h]Anthracene",LB
+37165,2.468984,Benzene,LB
+37173,0.2876086,Carbon Monoxide,TON
+37173,34.32483,Carbon Dioxide,TON
+37173,0.02669489,Nitrogen Oxides,TON
+37173,0.472634,Toluene,LB
+37173,0.05125482,Propionaldehyde,LB
+37173,0.0004225408,Pyrene,LB
+37173,0.0004979616,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.000398257,Arsenic,LB
+37153,0.13557718,Ethyl Benzene,LB
+37153,0.02818982,"1,3-Butadiene",LB
+37153,0.4876776,Xylenes (Mixed Isomers),LB
+37153,0.000274634,Benzo[k]Fluoranthene,LB
+37153,0.0001327208,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.0008202679,PM2.5 Primary (Filt + Cond),TON
+37123,0.4639154,Toluene,LB
+37123,0.3851962,Formaldehyde,LB
+37123,0.2136182,"2,2,4-Trimethylpentane",LB
+37123,0.5833296,Benzene,LB
+37123,31.14749,Carbon Dioxide,TON
+37123,0.001713046,PM10 Primary (Filt + Cond),TON
+37109,28.21972,Benzene,LB
+37109,0.014136216,Arsenic,LB
+37109,0.010448506,Acenaphthene,LB
+37109,0.544729,Naphthalene,LB
+37109,6.950609e-05,Nitrate portion of PM2.5-PRI,TON
+37109,0.03979232,Sulfur Dioxide,TON
+37109,0.010561982,Benzo[k]Fluoranthene,LB
+37093,1.0818768,Hexane,LB
+37093,0.9681794,Benzene,LB
+37093,0.08882344,Volatile Organic Compounds,TON
+37175,1.1702148e-05,Mercury,LB
+37175,0.00281062,Acenaphthene,LB
+37175,1.8845602,Ethyl Benzene,LB
+37175,0.000933888,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,2.49296,"2,2,4-Trimethylpentane",LB
+37175,213.5264,Propionaldehyde,LB
+37175,3537.956,Acetaldehyde,LB
+37167,0.2629634,Fluoranthene,LB
+37167,0.03117144,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.1346428,PM10 Primary (Filt + Cond),TON
+37167,0.004093493,Sulfate Portion of PM2.5-PRI,TON
+37167,2.710846,Toluene,LB
+37167,1.0366206,"1,3-Butadiene",LB
+37167,1.296398,Toluene,LB
+37167,0.000758461,"Benzo[g,h,i,]Perylene",LB
+37167,0.0009623346,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.00377697,Benzo[b]Fluoranthene,LB
+37167,0.012660098,Benzo[a]Pyrene,LB
+37167,0.44954,"2,2,4-Trimethylpentane",LB
+37167,0.2032576,Phenanthrene,LB
+37167,0.5922194,Carbon Monoxide,TON
+37159,98.80082,Toluene,LB
+37159,10.610048,Pyrene,LB
+37159,0.0318727,Benzo[k]Fluoranthene,LB
+37159,0.0003621904,Mercury,LB
+37159,0.075732,Arsenic,LB
+37159,0.9174939,Methane,TON
+37159,2.838653,PM2.5 Primary (Filt + Cond),TON
+37149,1.1839658,Anthracene,LB
+37149,0.3976976,Chrysene,LB
+37149,0.01307758,Nitrous Oxide,TON
+37151,0.05907736,"Benzo[g,h,i,]Perylene",LB
+37151,4143.754,Formaldehyde,LB
+37151,3.121778,Benz[a]Anthracene,LB
+37151,0.0006960262,Mercury,LB
+37151,14.433324,Acenaphthene,LB
+37151,463.917,Naphthalene,LB
+37151,234.0498,Carbon Monoxide,TON
+37151,0.06414919,Nitrous Oxide,TON
+37151,0.2752337,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.0005812982,Benzo[k]Fluoranthene,LB
+37151,8.0196,"1,3-Butadiene",LB
+37151,0.0437942,Nickel,LB
+37151,28.35364,Naphthalene,LB
+37151,0.1308753,PM10 Primary (Filt + Cond),TON
+37151,1.46574,Volatile Organic Compounds,TON
+37147,24.98306,Ethyl Benzene,LB
+37139,5.184702,Toluene,LB
+37139,0.002999432,"Benzo[g,h,i,]Perylene",LB
+37139,0.04844816,Benzo[a]Pyrene,LB
+37139,31.17908,Acetaldehyde,LB
+37139,0.1577455,PM25-Primary from certain diesel engines,TON
+37139,0.002772527,Nitrous Oxide,TON
+37139,0.1644242,PM2.5 Primary (Filt + Cond),TON
+37199,0.0005950106,Pyrene,LB
+37199,0.0003247428,"Benzo[g,h,i,]Perylene",LB
+37199,9.481962e-05,Chrysene,LB
+37199,0.104772,Formaldehyde,LB
+37199,1.0787674e-06,Mercury,LB
+37199,0.0003585042,Acenaphthene,LB
+37199,0.0019452628,Phenanthrene,LB
+37199,0.005377809,Volatile Organic Compounds,TON
+37195,0.422341,Ethyl Benzene,LB
+37195,0.0865926,"1,3-Butadiene",LB
+37195,0.0007864032,Chrysene,LB
+37195,0.002011178,Benzo[a]Pyrene,LB
+37195,0.0015948164,Arsenic,LB
+37197,10.843148,"1,3-Butadiene",LB
+37197,1.669867,Acrolein,LB
+37197,0.15236738,Pyrene,LB
+37197,0.03997398,Chrysene,LB
+37197,72.57568,"2,2,4-Trimethylpentane",LB
+37197,0.008111034,Arsenic,LB
+37197,0.08674854,Acenaphthene,LB
+37197,4.249509,Nitrogen Oxides,TON
+37197,0.0441484,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.02343052,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.3507694,Propionaldehyde,LB
+37197,0.07418132,Acenaphthylene,LB
+37197,7.378206e-06,Mercury,LB
+37197,0.00667087,Nitrous Oxide,TON
+37197,0.3454941,Nitrogen Oxides,TON
+37197,0.001687077,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.2956744,Volatile Organic Compounds,TON
+37189,0.4452886,Ethyl Benzene,LB
+37189,0.0005729956,"Benzo[g,h,i,]Perylene",LB
+37189,0.0666899,Acenaphthylene,LB
+37189,0.0003887818,"Dibenzo[a,h]Anthracene",LB
+37189,0.000888177,Arsenic,LB
+37189,0.0141392,Organic Carbon portion of PM2.5-PRI,TON
+37187,3.608192,Styrene,LB
+37187,19.308514,Acrolein,LB
+37187,0.003065092,"Benzo[g,h,i,]Perylene",LB
+37187,1.063055,Fluoranthene,LB
+37187,2.128892,Phenanthrene,LB
+37187,0.2148808,PM10-Primary from certain diesel engines,TON
+37187,0.0003301378,Nitrate portion of PM2.5-PRI,TON
+37187,1.429991,Volatile Organic Compounds,TON
+37179,0.00292942,Nickel,LB
+37179,14.121096,Acetaldehyde,LB
+37179,0.11051928,Acenaphthene,LB
+37179,0.003795013,Ammonia,TON
+37179,1.0707902,Ethyl Benzene,LB
+37179,0.0015116182,"Benzo[g,h,i,]Perylene",LB
+37179,0.258421,Fluoranthene,LB
+37179,0.18582912,Acenaphthylene,LB
+37177,0.016867276,Acenaphthene,LB
+37177,0.0003859533,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.07265092,Styrene,LB
+37177,0.481115,Xylenes (Mixed Isomers),LB
+37177,3.97494e-06,Chromium (VI),LB
+37177,0.0016127716,Manganese,LB
+37173,6.234236,Ethyl Benzene,LB
+37173,0.005320392,"Dibenzo[a,h]Anthracene",LB
+37173,0.05147576,Manganese,LB
+37173,80.68068,Acetaldehyde,LB
+37173,20.28052,Naphthalene,LB
+37173,8.368201,Nitrogen Oxides,TON
+37173,0.01885441,Sulfur Dioxide,TON
+37173,0.0015392024,Benzo[b]Fluoranthene,LB
+37173,57.68306,Formaldehyde,LB
+37173,0.02391976,Methane,TON
+37173,0.05949512,PM25-Primary from certain diesel engines,TON
+37173,0.04709224,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.000104627,Nitrate portion of PM2.5-PRI,TON
+37173,0.008227579,Organic Carbon portion of PM2.5-PRI,TON
+37041,1.221176,Fluorene,LB
+37041,1209.007,Carbon Dioxide,TON
+37041,0.003377271,Nitrous Oxide,TON
+37041,4.025719,Nitrogen Oxides,TON
+37033,176.85202,"2,2,4-Trimethylpentane",LB
+37033,0.005064684,Nickel,LB
+37033,0.5392632,Phenanthrene,LB
+37033,109.83902,Ethyl Benzene,LB
+37033,1.8844692,Acrolein,LB
+37033,0.0302293,Benzo[k]Fluoranthene,LB
+37033,0.02906248,Chrysene,LB
+37033,0.0001206909,Nitrate portion of PM2.5-PRI,TON
+37031,37.98848,Acrolein,LB
+37031,48.6385,Toluene,LB
+37031,54.46098,Xylenes (Mixed Isomers),LB
+37031,2.192702,Acenaphthylene,LB
+37031,0.0002901926,Mercury,LB
+37031,2.38294,PM10-Primary from certain diesel engines,TON
+37031,2.192313,PM25-Primary from certain diesel engines,TON
+37025,817.4602,Styrene,LB
+37025,117528.22,Toluene,LB
+37025,9.551838,Benzo[k]Fluoranthene,LB
+37025,12.74888,Benzo[a]Pyrene,LB
+37025,11.19454,Manganese,LB
+37025,1791.032,Naphthalene,LB
+37025,20.07979,Methane,TON
+37025,18.46537,Nitrous Oxide,TON
+37025,53.2873,PM10 Primary (Filt + Cond),TON
+37025,348.619,Acrolein,LB
+37025,5.97432,Benzo[b]Fluoranthene,LB
+37025,24.0696,Fluoranthene,LB
+37025,8.752448,Methane,TON
+37173,1.1974894,Xylenes (Mixed Isomers),LB
+37173,0.0007807042,"Benzo[g,h,i,]Perylene",LB
+37173,0.004717268,Manganese,LB
+37173,0.05051064,Acenaphthene,LB
+37173,184.569,Carbon Dioxide,TON
+37173,0.0002261862,Nitrate portion of PM2.5-PRI,TON
+37173,0.7075549,Nitrogen Oxides,TON
+37097,0.007676993,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,11.164742,Ethyl Benzene,LB
+37097,0.385035,Acrolein,LB
+37097,0.015049256,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.014944738,Benzo[a]Pyrene,LB
+37097,0.00851436,Benz[a]Anthracene,LB
+37097,5.67959,Acetaldehyde,LB
+37097,0.10567778,Phenanthrene,LB
+37081,20.97265,PM2.5 Primary (Filt + Cond),TON
+37081,312.6856,Ethyl Benzene,LB
+37081,4.744614,Chrysene,LB
+37081,8.319126,Benz[a]Anthracene,LB
+37081,16.434886,Acenaphthene,LB
+37081,19.44984,PM25-Primary from certain diesel engines,TON
+37081,0.221002,Nitrous Oxide,TON
+37081,0.8714408,Ethyl Benzene,LB
+37081,0.0372782,Acrolein,LB
+37081,0.002529456,Benzo[k]Fluoranthene,LB
+37081,0.008618306,Acenaphthylene,LB
+37081,0.010698058,Phenanthrene,LB
+37081,0.001435402,Methane,TON
+37081,0.003397565,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.0002497974,Sulfate Portion of PM2.5-PRI,TON
+37077,12.049222,Xylenes (Mixed Isomers),LB
+37077,0.02497332,Acenaphthylene,LB
+37077,0.003145968,Chrysene,LB
+37077,0.000966217,Arsenic,LB
+37077,0.001158327,Elemental Carbon portion of PM2.5-PRI,TON
+37075,26.33938,Formaldehyde,LB
+37075,2.762722e-06,Mercury,LB
+37071,4.907836,Anthracene,LB
+37071,0.0003869542,Chromium (VI),LB
+37071,0.06393898,"Benzo[g,h,i,]Perylene",LB
+37071,0.08010736,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,39.17882,"2,2,4-Trimethylpentane",LB
+37071,18824.56,Carbon Dioxide,TON
+37071,0.7188212,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.9699996,"2,2,4-Trimethylpentane",LB
+37071,0.0016220188,Acenaphthene,LB
+37071,0.008975028,Phenanthrene,LB
+37071,0.00159875,Ammonia,TON
+37071,0.000983175,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.0006325523,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,4.606796,Toluene,LB
+37071,0.0017175114,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.4185834,Pyrene,LB
+37063,2.330548,Xylenes (Mixed Isomers),LB
+37063,0.954985,"2,2,4-Trimethylpentane",LB
+37063,0.099055,Benz[a]Anthracene,LB
+37063,4.430684,Naphthalene,LB
+37063,0.7013212,Carbon Monoxide,TON
+37063,0.03630969,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.0005942375,Nitrous Oxide,TON
+37057,36.98932,Ethyl Benzene,LB
+37057,0.0004701364,Chromium (VI),LB
+37057,0.4818134,Benzo[a]Pyrene,LB
+37057,116.71328,Naphthalene,LB
+37057,4.204703,PM2.5 Primary (Filt + Cond),TON
+37057,27.6061,Acrolein,LB
+37057,27.10358,Xylenes (Mixed Isomers),LB
+37057,0.004131558,"Benzo[g,h,i,]Perylene",LB
+37057,0.0005060623,Nitrate portion of PM2.5-PRI,TON
+37055,0.5882436,Nickel,LB
+37055,16.119234,Phenanthrene,LB
+37055,5.521225,Ammonia,TON
+37055,68.73348,Styrene,LB
+37055,0.004706068,Chromium (VI),LB
+37055,1.4750594,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,167.50588,Ethyl Benzene,LB
+37053,0.0006424018,Mercury,LB
+37053,0.012282148,Arsenic,LB
+37053,0.15423384,Acenaphthene,LB
+37053,0.07551445,Methane,TON
+37053,2.059731,Nitrogen Oxides,TON
+37053,0.09584901,PM10 Primary (Filt + Cond),TON
+37053,5.223889,Volatile Organic Compounds,TON
+37047,0.01809493,Nickel,LB
+37047,0.00397425,Arsenic,LB
+37047,0.3236567,PM10-Primary from certain diesel engines,TON
+37047,0.01076597,Sulfur Dioxide,TON
+37039,10.6617,Formaldehyde,LB
+37039,0.02497958,Benz[a]Anthracene,LB
+37039,0.0001332001,Nitrate portion of PM2.5-PRI,TON
+37039,0.06992723,PM10 Primary (Filt + Cond),TON
+37039,0.005547596,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.02879668,Fluorene,LB
+37037,0.003595186,Sulfur Dioxide,TON
+37029,27.77103,Carbon Dioxide,TON
+37029,4.346091e-07,Nitrate portion of PM2.5-PRI,TON
+37029,0.0001470344,Sulfur Dioxide,TON
+37027,1.3443594,Anthracene,LB
+37027,0.02182656,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,2.926194,Fluoranthene,LB
+37027,0.01183967,"Dibenzo[a,h]Anthracene",LB
+37027,2.729146,Fluorene,LB
+37027,0.1990404,Ammonia,TON
+37173,0.007276152,Acrolein,LB
+37173,0.00010714918,Benzo[k]Fluoranthene,LB
+37173,1.4179626e-06,Mercury,LB
+37173,3.241238e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37173,6.655935e-06,Sulfate Portion of PM2.5-PRI,TON
+37171,17174.492,Hexane,LB
+37171,16879.924,"2,2,4-Trimethylpentane",LB
+37171,0.2842376,Sulfate Portion of PM2.5-PRI,TON
+37169,7.568694,Ethyl Benzene,LB
+37169,22.75248,"2,2,4-Trimethylpentane",LB
+37169,1.168004,Volatile Organic Compounds,TON
+37165,0.05669436,Methane,TON
+37165,0.1257345,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,2.554144,Pyrene,LB
+37165,1.3136712,Acenaphthylene,LB
+37165,0.369171,Chrysene,LB
+37163,64.54196,Volatile Organic Compounds,TON
+37157,12.99519,Ammonia,TON
+37157,3.111546,Benzo[k]Fluoranthene,LB
+37157,0.10298444,Mercury,LB
+37157,1.2840962,Nickel,LB
+37147,23.69316,"1,3-Butadiene",LB
+37147,1.918826,Elemental Carbon portion of PM2.5-PRI,TON
+37147,4.219664,Volatile Organic Compounds,TON
+37145,23.72878,Toluene,LB
+37145,2.927416,Pyrene,LB
+37145,24.78738,Xylenes (Mixed Isomers),LB
+37145,317.0826,Formaldehyde,LB
+37145,0.2449699,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.00536258,Nitrate portion of PM2.5-PRI,TON
+37145,2988.508,Ethyl Benzene,LB
+37145,1.2600298,Benzo[k]Fluoranthene,LB
+37145,19.792098,Acenaphthylene,LB
+37145,0.03946904,"Dibenzo[a,h]Anthracene",LB
+37145,1606.6774,Acetaldehyde,LB
+37129,6.97227,Acenaphthylene,LB
+37129,59.60428,"2,2,4-Trimethylpentane",LB
+37129,0.0006500976,Mercury,LB
+37129,0.13593124,Arsenic,LB
+37129,4.154292,Acenaphthene,LB
+37129,0.09368121,Nitrous Oxide,TON
+37129,1.2976136,Xylenes (Mixed Isomers),LB
+37129,2.831458e-06,Mercury,LB
+37129,2.0089,Naphthalene,LB
+37129,0.3662373,Carbon Monoxide,TON
+37129,0.0004828905,Nitrous Oxide,TON
+37129,0.6526671,Nitrogen Oxides,TON
+37129,0.001377556,Sulfate Portion of PM2.5-PRI,TON
+37141,0.15158508,Fluorene,LB
+37141,0.00080019,Nitrous Oxide,TON
+37141,0.1122291,PM2.5 Primary (Filt + Cond),TON
+37141,0.5814638,Hexane,LB
+37141,0.004487738,Benzo[b]Fluoranthene,LB
+37137,4.26652e-07,Chromium (VI),LB
+37137,0.015696086,Fluoranthene,LB
+37137,0.0014264072,Benzo[a]Pyrene,LB
+37137,3.403258e-07,Mercury,LB
+37137,0.004758036,PM2.5 Primary (Filt + Cond),TON
+37137,0.0002211574,Nitrous Oxide,TON
+37137,0.001221052,Sulfur Dioxide,TON
+37137,0.2122058,Styrene,LB
+37137,1.4506376,Acrolein,LB
+37137,0.0842464,Acenaphthylene,LB
+37137,1.7570556,Benzene,LB
+37137,8.382218,Acetaldehyde,LB
+37137,1.572901,Carbon Monoxide,TON
+37131,2.145478,Ethyl Benzene,LB
+37131,0.013744132,Benzo[b]Fluoranthene,LB
+37131,0.001876651,"Dibenzo[a,h]Anthracene",LB
+37131,0.02315228,Arsenic,LB
+37131,32.29103,Carbon Monoxide,TON
+37131,0.4470454,PM25-Primary from certain diesel engines,TON
+37131,0.5819758,PM10 Primary (Filt + Cond),TON
+37113,0.5885904,Hexane,LB
+37113,0.2404042,Pyrene,LB
+37113,0.001431716,Arsenic,LB
+37113,238.3536,Carbon Dioxide,TON
+37113,0.0003238337,Nitrate portion of PM2.5-PRI,TON
+37109,22.76584,Styrene,LB
+37109,18.477852,Acrolein,LB
+37109,49.96344,Naphthalene,LB
+37109,0.8607404,Ammonia,TON
+37109,0.001014496,Nitrate portion of PM2.5-PRI,TON
+37097,1.7505894,Pyrene,LB
+37097,33.6941,Xylenes (Mixed Isomers),LB
+37097,1.4414186,Fluoranthene,LB
+37097,41.76382,Naphthalene,LB
+37097,0.0005164318,Nitrate portion of PM2.5-PRI,TON
+37091,0.006861812,Nitrous Oxide,TON
+37091,0.2557254,Chrysene,LB
+37091,5.043996,"2,2,4-Trimethylpentane",LB
+37091,17.684632,Benzene,LB
+37091,0.01093218,Arsenic,LB
+37091,0.1095236,Methane,TON
+37105,0.005687247,PM2.5 Primary (Filt + Cond),TON
+37105,0.002154718,Sulfur Dioxide,TON
+37105,0.00633224,Anthracene,LB
+37105,0.01476354,Fluorene,LB
+37101,0.011889594,"1,3-Butadiene",LB
+37101,2.28206e-07,Chromium (VI),LB
+37101,2.2877e-06,Mercury,LB
+37101,0.05810568,Carbon Monoxide,TON
+37099,0.04695055,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.006438913,Sulfate Portion of PM2.5-PRI,TON
+37099,0.02334858,Benzo[b]Fluoranthene,LB
+37099,0.8421192,Fluoranthene,LB
+37099,0.02564752,Manganese,LB
+37099,3.841745,Carbon Monoxide,TON
+37099,0.01569785,Ammonia,TON
+37167,1.8911382,Hexane,LB
+37129,0.000154964,Nitrate portion of PM2.5-PRI,TON
+37129,0.07333886,Acenaphthylene,LB
+37129,0.8264744,Naphthalene,LB
+37131,0.1557983,Propionaldehyde,LB
+37131,8.828466e-06,Chromium (VI),LB
+37131,1.0991506,Formaldehyde,LB
+37131,2.063976,Benzene,LB
+37131,0.0019750922,Manganese,LB
+37131,0.0006463344,Acenaphthene,LB
+37131,120.6804,Carbon Dioxide,TON
+37131,0.001302776,Nitrous Oxide,TON
+37177,4177.288,Toluene,LB
+37177,27.48402,Propionaldehyde,LB
+37177,0.0009090012,Chromium (VI),LB
+37177,1.948868,Fluoranthene,LB
+37177,0.3617668,Chrysene,LB
+37177,0.2699271,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.5262783,PM2.5 Primary (Filt + Cond),TON
+37177,0.01453096,Sulfate Portion of PM2.5-PRI,TON
+37175,163.71494,Ethyl Benzene,LB
+37175,0.6009886,Acenaphthylene,LB
+37175,0.03520434,Chrysene,LB
+37175,0.03586352,Benz[a]Anthracene,LB
+37175,0.011052262,Manganese,LB
+37175,0.08636391,Ammonia,TON
+37175,0.07803207,PM10 Primary (Filt + Cond),TON
+37175,0.04639966,PM2.5 Primary (Filt + Cond),TON
+37175,5.096503,Volatile Organic Compounds,TON
+37169,1.5135446,"1,3-Butadiene",LB
+37169,1.021776e-05,Chromium (VI),LB
+37169,0.0011879634,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.004665114,Benzo[b]Fluoranthene,LB
+37169,0.1400489,PM10 Primary (Filt + Cond),TON
+37169,0.003423714,Sulfate Portion of PM2.5-PRI,TON
+37169,0.2718788,Volatile Organic Compounds,TON
+37169,0.00242182,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.007950658,Fluorene,LB
+37169,0.2039364,Naphthalene,LB
+37169,70.64785,Carbon Dioxide,TON
+37169,7.481222e-05,Sulfate Portion of PM2.5-PRI,TON
+37167,12.11323,Ethyl Benzene,LB
+37153,0.06959218,Benzo[b]Fluoranthene,LB
+37153,2.589472,Fluoranthene,LB
+37153,0.2332156,Benzo[a]Pyrene,LB
+37153,0.7861878,Benz[a]Anthracene,LB
+37153,42.12132,Naphthalene,LB
+37153,2.486799,PM10 Primary (Filt + Cond),TON
+37135,12.472136,"1,3-Butadiene",LB
+37135,0.2240992,Pyrene,LB
+37135,9.997528e-05,Chromium (VI),LB
+37135,0.07046688,Benz[a]Anthracene,LB
+37135,6.545974,Naphthalene,LB
+37135,0.02317488,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.03619341,Organic Carbon portion of PM2.5-PRI,TON
+37137,20.54756,Toluene,LB
+37137,0.8788272,Anthracene,LB
+37137,16.34089,Carbon Monoxide,TON
+37129,0.016141072,Anthracene,LB
+37129,0.014266236,"Benzo[g,h,i,]Perylene",LB
+37129,6.02144,Formaldehyde,LB
+37129,1.883294e-05,Nitrate portion of PM2.5-PRI,TON
+37129,0.477611,Volatile Organic Compounds,TON
+37129,21.19228,Benzene,LB
+37129,8.230798,Carbon Monoxide,TON
+37065,0.61727,"1,3-Butadiene",LB
+37065,0.011944576,Benzo[a]Pyrene,LB
+37065,14.861114,Benzene,LB
+37065,0.015616956,Manganese,LB
+37065,0.03141746,Phenanthrene,LB
+37065,799.2559,Carbon Dioxide,TON
+37065,0.04212443,Ammonia,TON
+37065,0.06696502,PM10 Primary (Filt + Cond),TON
+37137,0.0005742911,Nitrous Oxide,TON
+37137,1.488459e-06,Nitrate portion of PM2.5-PRI,TON
+37137,0.0004040134,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,4.394354,Benzene,LB
+37175,0.53933,Ethyl Benzene,LB
+37175,0.2164532,Styrene,LB
+37175,0.11548418,Ethyl Benzene,LB
+37175,0.00016997388,Anthracene,LB
+37175,6.09232e-05,Benzo[b]Fluoranthene,LB
+37175,5.844004e-05,Chrysene,LB
+37175,0.06497794,Formaldehyde,LB
+37175,1.9647418e-06,"Dibenzo[a,h]Anthracene",LB
+37175,6.04507e-05,Benz[a]Anthracene,LB
+37175,2.769088e-05,Manganese,LB
+37175,4.571516e-06,Nickel,LB
+37175,0.06150078,Acetaldehyde,LB
+37175,0.00019823524,Acenaphthene,LB
+37175,0.006861174,Nitrogen Oxides,TON
+37175,2.644494e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,2.463947e-06,Sulfate Portion of PM2.5-PRI,TON
+37165,0.004521802,Anthracene,LB
+37165,1.5119692e-05,Mercury,LB
+37165,0.005207412,Acenaphthene,LB
+37165,0.003568898,Methane,TON
+37165,0.008562192,PM10 Primary (Filt + Cond),TON
+37165,0.001351747,Sulfur Dioxide,TON
+37159,0.005707848,Organic Carbon portion of PM2.5-PRI,TON
+37159,12.496082,"2,2,4-Trimethylpentane",LB
+37159,0.007420536,Manganese,LB
+37159,8.97713e-05,Mercury,LB
+37159,0.01542638,Acenaphthene,LB
+37155,3.50918,"1,3-Butadiene",LB
+37155,0.03151116,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.0007230042,"Dibenzo[a,h]Anthracene",LB
+37155,27.58198,"2,2,4-Trimethylpentane",LB
+37155,0.0010491242,Nickel,LB
+37155,0.15853072,Phenanthrene,LB
+37155,1.488834,Naphthalene,LB
+37155,359.4135,Carbon Dioxide,TON
+37155,0.01732493,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.00011372294,Chromium (VI),LB
+37147,461.5896,Formaldehyde,LB
+37147,0.0761727,Manganese,LB
+37147,1.426283,Acenaphthene,LB
+37147,22.75746,Carbon Monoxide,TON
+37147,0.3105527,Elemental Carbon portion of PM2.5-PRI,TON
+37143,2.764946,Hexane,LB
+37143,0.004342812,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,2.958812,"2,2,4-Trimethylpentane",LB
+37143,5.319864e-05,Mercury,LB
+37141,0.0591423,Acrolein,LB
+37141,6.581682,Toluene,LB
+37141,0.0452213,Propionaldehyde,LB
+37141,1.0093854e-06,Chromium (VI),LB
+37141,0.000823481,Benzo[b]Fluoranthene,LB
+37141,0.0011954484,Benzo[a]Pyrene,LB
+37141,0.001453882,Ammonia,TON
+37141,0.1080958,Nitrogen Oxides,TON
+37127,1.0578362,"1,3-Butadiene",LB
+37127,0.005617332,Benzo[k]Fluoranthene,LB
+37127,7.521134,"2,2,4-Trimethylpentane",LB
+37127,0.010632694,Acenaphthene,LB
+37127,0.0329002,PM10 Primary (Filt + Cond),TON
+37127,0.006607499,Sulfur Dioxide,TON
+37111,0.05735093,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.3548434,Anthracene,LB
+37111,0.003061086,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,2.493494,"2,2,4-Trimethylpentane",LB
+37111,0.162803,Benz[a]Anthracene,LB
+37111,1.1404702,Phenanthrene,LB
+37111,2.227364,Ethyl Benzene,LB
+37111,0.8280886,Styrene,LB
+37111,1.9117136,"1,3-Butadiene",LB
+37111,0.3006816,Pyrene,LB
+37111,0.0002825062,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.247507,Fluoranthene,LB
+37111,0.007301088,Arsenic,LB
+37111,0.01230839,Ammonia,TON
+37111,0.006896878,Organic Carbon portion of PM2.5-PRI,TON
+37001,4.415778,Ethyl Benzene,LB
+37001,0.3375943,Volatile Organic Compounds,TON
+37177,0.08415434,"1,3-Butadiene",LB
+37177,0.2010664,Propionaldehyde,LB
+37177,0.0016126812,Pyrene,LB
+37177,0.00385519,Acenaphthylene,LB
+37177,0.00734118,Methane,TON
+37177,1.230337,Carbon Monoxide,TON
+37177,0.005873821,PM10 Primary (Filt + Cond),TON
+37135,2.221886,Benzene,LB
+37079,0.05343014,"1,3-Butadiene",LB
+37079,0.04129198,Acrolein,LB
+37079,0.4458058,Hexane,LB
+37079,0.01991011,Naphthalene,LB
+37079,62.33327,Carbon Dioxide,TON
+37079,2.804003e-06,Nitrate portion of PM2.5-PRI,TON
+37079,0.6304274,Formaldehyde,LB
+37171,1.387971,Acrolein,LB
+37171,0.07833642,Fluoranthene,LB
+37171,0.018190646,Benzo[a]Pyrene,LB
+37171,0.000415242,"Dibenzo[a,h]Anthracene",LB
+37171,0.0013488886,Nickel,LB
+37171,0.10916322,Fluorene,LB
+37171,0.03224255,Methane,TON
+37171,32.83678,Carbon Monoxide,TON
+37167,2509.208,Hexane,LB
+37165,0.3844654,Fluorene,LB
+37165,0.07418953,PM2.5 Primary (Filt + Cond),TON
+37165,0.3913445,Volatile Organic Compounds,TON
+37165,0.9654976,Styrene,LB
+37165,1.7022264,Hexane,LB
+37165,0.18506944,Anthracene,LB
+37165,0.0006020862,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.009434724,Manganese,LB
+37161,18.614416,Hexane,LB
+37161,0.019038024,"Benzo[g,h,i,]Perylene",LB
+37161,0.007152682,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.019280466,Fluoranthene,LB
+37161,2.1422e-05,Nitrate portion of PM2.5-PRI,TON
+37149,0.0416907,Acrolein,LB
+37149,0.9189356,"2,2,4-Trimethylpentane",LB
+37149,0.009733526,Phenanthrene,LB
+37149,0.003591846,Fluorene,LB
+37149,1.146991,Carbon Monoxide,TON
+37019,0.002443374,Styrene,LB
+37019,0.000103214,Anthracene,LB
+37019,0.1452453,Benzene,LB
+37015,2.92198,Phenanthrene,LB
+37015,2755.128,Carbon Dioxide,TON
+37015,10.13574,Nitrogen Oxides,TON
+37015,17.72987,Toluene,LB
+37007,0.002915082,"Dibenzo[a,h]Anthracene",LB
+37007,0.04929466,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.08025141,Ammonia,TON
+37003,0.007369148,"Dibenzo[a,h]Anthracene",LB
+37001,98.36928,Xylenes (Mixed Isomers),LB
+37001,0.002430736,Nickel,LB
+37001,15.829488,Acetaldehyde,LB
+37001,0.05328368,Acenaphthene,LB
+37001,0.02516886,Nitrous Oxide,TON
+37001,0.03924555,PM2.5 Primary (Filt + Cond),TON
+37001,0.01651679,Chrysene,LB
+37001,0.9337648,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.6972522,Benzo[k]Fluoranthene,LB
+37001,0.640723,Manganese,LB
+37001,5.03775,Fluorene,LB
+37001,65.11883,Nitrogen Oxides,TON
+37041,0.3553756,Toluene,LB
+37041,0.00014265466,Benzo[b]Fluoranthene,LB
+37041,6.108152e-06,"Dibenzo[a,h]Anthracene",LB
+37041,0.16393152,"2,2,4-Trimethylpentane",LB
+37041,0.4374694,Benzene,LB
+37041,7.156971e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.01451955,Nitrogen Oxides,TON
+37041,0.0003485491,PM2.5 Primary (Filt + Cond),TON
+37041,0.0005266545,Sulfur Dioxide,TON
+37035,42.2181,Toluene,LB
+37035,4.927298,Hexane,LB
+37149,0.019684566,"Benzo[g,h,i,]Perylene",LB
+37149,7.248044,Formaldehyde,LB
+37149,0.03013903,Methane,TON
+37149,0.00148942,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.01254094,Sulfur Dioxide,TON
+37173,0.580894,Xylenes (Mixed Isomers),LB
+37173,0.0003286116,"Benzo[g,h,i,]Perylene",LB
+37173,0.0004028924,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.0002177632,"Dibenzo[a,h]Anthracene",LB
+37173,208.8188,Carbon Dioxide,TON
+37173,0.03796089,PM2.5 Primary (Filt + Cond),TON
+37193,11.043414,Hexane,LB
+37193,3.844216,Fluoranthene,LB
+37193,0.01583603,Benzo[k]Fluoranthene,LB
+37193,42.5911,Benzene,LB
+37191,0.1090635,PM25-Primary from certain diesel engines,TON
+37191,0.1357904,Volatile Organic Compounds,TON
+37191,0.017751456,Benzo[a]Pyrene,LB
+37191,0.08141042,Anthracene,LB
+37189,25.0523,Acrolein,LB
+37189,29.8587,Xylenes (Mixed Isomers),LB
+37189,0.0001281557,Chromium (VI),LB
+37189,0.00776327,Benzo[k]Fluoranthene,LB
+37189,0.007704364,"Dibenzo[a,h]Anthracene",LB
+37189,0.15385156,Manganese,LB
+37189,0.00014640604,Mercury,LB
+37189,0.9355436,Acenaphthene,LB
+37189,0.01370459,Nitrous Oxide,TON
+37187,0.0012838502,Anthracene,LB
+37187,9.586246e-07,Chromium (VI),LB
+37187,0.0006059574,Chrysene,LB
+37187,0.07648718,Naphthalene,LB
+37187,0.001488578,Ammonia,TON
+37187,0.0006521748,Organic Carbon portion of PM2.5-PRI,TON
+37183,111.5151,Xylenes (Mixed Isomers),LB
+37183,0.000253831,Chromium (VI),LB
+37183,2.509554,PM10-Primary from certain diesel engines,TON
+37183,0.0563867,Nitrous Oxide,TON
+37183,4.096581,PM10 Primary (Filt + Cond),TON
+37183,0.3243316,Acrolein,LB
+37183,0.01803569,"Benzo[g,h,i,]Perylene",LB
+37183,0.00677615,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.004821542,Manganese,LB
+37183,0.01872727,Acenaphthene,LB
+37183,2.219703e-05,Nitrate portion of PM2.5-PRI,TON
+37181,0.0012568632,Benzo[k]Fluoranthene,LB
+37181,0.00012108094,Mercury,LB
+37181,0.006606316,Phenanthrene,LB
+37181,0.002355598,Fluorene,LB
+37181,0.01008293,Methane,TON
+37181,0.16640034,"1,3-Butadiene",LB
+37059,0.0009953756,"Benzo[g,h,i,]Perylene",LB
+37059,0.0002201856,Benzo[b]Fluoranthene,LB
+37059,0.2736298,"2,2,4-Trimethylpentane",LB
+37059,5.297004e-05,Manganese,LB
+37059,0.0001988723,Nitrous Oxide,TON
+37059,1.10179e-05,Sulfate Portion of PM2.5-PRI,TON
+37059,0.3191656,Formaldehyde,LB
+37059,0.6236444,Ethyl Benzene,LB
+37059,0.13551616,"1,3-Butadiene",LB
+37059,0.91297,Benzene,LB
+37057,1.5475072,"1,3-Butadiene",LB
+37057,0.2220003,PM25-Primary from certain diesel engines,TON
+37057,0.000599772,Nitrate portion of PM2.5-PRI,TON
+37057,0.3559213,PM10 Primary (Filt + Cond),TON
+37057,0.4670892,Chrysene,LB
+37057,514.611,Formaldehyde,LB
+37057,575.4458,Acetaldehyde,LB
+37057,0.01880453,Sulfate Portion of PM2.5-PRI,TON
+37051,5.53568,Anthracene,LB
+37051,165.87166,Xylenes (Mixed Isomers),LB
+37051,12.132094,Fluoranthene,LB
+37051,0.04966192,Benzo[k]Fluoranthene,LB
+37051,0.13069864,Arsenic,LB
+37051,80.17104,Nitrogen Oxides,TON
+37051,135.2198,Acrolein,LB
+37049,7.817312e-06,Mercury,LB
+37049,0.005312661,Sulfur Dioxide,TON
+37047,0.3324244,Propionaldehyde,LB
+37047,0.011971914,Benzo[a]Pyrene,LB
+37047,3.958244e-05,Mercury,LB
+37045,0.004181658,Manganese,LB
+37045,6.689962e-05,Mercury,LB
+37025,128.3576,Ethyl Benzene,LB
+37025,10.939288,Anthracene,LB
+37025,1.111356,Methane,TON
+37025,201.0001,Carbon Monoxide,TON
+37157,0.3967686,Toluene,LB
+37157,7.432194e-09,Chromium (VI),LB
+37157,3.206588e-05,Benzo[b]Fluoranthene,LB
+37157,3.191098e-05,Benz[a]Anthracene,LB
+37157,7.220326e-05,PM10 Primary (Filt + Cond),TON
+37157,0.003292168,Manganese,LB
+37157,0.0010073504,Arsenic,LB
+37157,182.0154,Carbon Dioxide,TON
+37157,0.004743726,Nitrous Oxide,TON
+37157,0.008261824,Ammonia,TON
+37157,1.495708e-05,Nitrate portion of PM2.5-PRI,TON
+37157,0.002046669,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.003815738,Sulfur Dioxide,TON
+37157,5.25578e-06,Chromium (VI),LB
+37157,0.002879692,Benzo[b]Fluoranthene,LB
+37157,2.276028,Formaldehyde,LB
+37139,1.444988,Toluene,LB
+37139,0.0005862318,Benzo[k]Fluoranthene,LB
+37139,19.10723,Formaldehyde,LB
+37139,6.149552e-06,Mercury,LB
+37139,8.048956,Acetaldehyde,LB
+37139,0.0560335,Acenaphthene,LB
+37139,0.009386574,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,404.184,Acrolein,LB
+37135,71135.12,Toluene,LB
+37135,435.0432,Propionaldehyde,LB
+37135,0.018568108,Chromium (VI),LB
+37135,25.70682,"Benzo[g,h,i,]Perylene",LB
+37135,358480.9,Carbon Dioxide,TON
+37135,3.589502,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.3226398,Sulfate Portion of PM2.5-PRI,TON
+37133,4.35998,Carbon Monoxide,TON
+37133,268.3331,Carbon Dioxide,TON
+37133,0.0124754,Ammonia,TON
+37133,0.16533868,Acrolein,LB
+37133,0.003689324,Benzo[a]Pyrene,LB
+37133,5.865374,"2,2,4-Trimethylpentane",LB
+37133,84.82124,Volatile Organic Compounds,TON
+37125,0.001061759,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,1.0170754,"1,3-Butadiene",LB
+37125,20.01964,Toluene,LB
+37125,1.402881e-06,Chromium (VI),LB
+37125,0.00981065,Fluoranthene,LB
+37125,7.977474,Benzene,LB
+37125,0.3539144,Naphthalene,LB
+37125,4.753216,Carbon Monoxide,TON
+37125,20.53106,Propionaldehyde,LB
+37125,0.267037,Manganese,LB
+37125,14660,Carbon Dioxide,TON
+37125,1.284798,PM10 Primary (Filt + Cond),TON
+37125,545.4072,Benzene,LB
+37125,0.389563,Acenaphthene,LB
+37125,0.2444457,PM10 Primary (Filt + Cond),TON
+37125,0.1528874,PM2.5 Primary (Filt + Cond),TON
+37125,0.04063693,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,6.28948,Propionaldehyde,LB
+37125,0.11245924,Benzo[b]Fluoranthene,LB
+37125,0.11284812,Benz[a]Anthracene,LB
+37121,0.6051274,Nitrous Oxide,TON
+37121,0.4488606,Benzo[k]Fluoranthene,LB
+37121,1237.5996,"2,2,4-Trimethylpentane",LB
+37121,1534.1604,Benzene,LB
+37115,57.64274,Toluene,LB
+37115,0.2844794,Chrysene,LB
+37115,0.11737512,Nickel,LB
+37115,5.179978,Fluorene,LB
+37115,99.47818,Naphthalene,LB
+37115,47.67237,Carbon Monoxide,TON
+37115,0.01346378,Nitrous Oxide,TON
+37115,0.1626628,Ammonia,TON
+37113,22.98214,Xylenes (Mixed Isomers),LB
+37113,0.00809165,"Benzo[g,h,i,]Perylene",LB
+37113,0.00226098,Benzo[b]Fluoranthene,LB
+37113,0.0011853512,Manganese,LB
+37113,0.008006172,Acenaphthene,LB
+37113,0.001018832,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,199.26202,Acetaldehyde,LB
+37109,2.70281,Fluorene,LB
+37109,1.778572,PM25-Primary from certain diesel engines,TON
+37109,1.199491,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.3576567,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.1660478,Sulfur Dioxide,TON
+37109,13.237886,"2,2,4-Trimethylpentane",LB
+37109,0.3396296,Hexane,LB
+37109,0.0004800006,Benzo[k]Fluoranthene,LB
+37109,0.3368848,"2,2,4-Trimethylpentane",LB
+37109,2.218538e-06,Mercury,LB
+37109,0.04458106,Acenaphthene,LB
+37089,0.10168894,Ethyl Benzene,LB
+37089,0.5294664,Toluene,LB
+37089,0.000379742,Pyrene,LB
+37089,0.0009848786,Acenaphthylene,LB
+37089,1.894388e-05,Nickel,LB
+37089,0.05529228,Acetaldehyde,LB
+37089,0.000435605,Fluorene,LB
+37089,0.011184814,Naphthalene,LB
+37089,0.0002487525,PM2.5 Primary (Filt + Cond),TON
+37087,109.3678,Ethyl Benzene,LB
+37087,50.03576,Styrene,LB
+37087,18.883982,Pyrene,LB
+37087,0.10184078,Benzo[b]Fluoranthene,LB
+37087,1.2215092,Chrysene,LB
+37087,79.00222,"2,2,4-Trimethylpentane",LB
+37087,315.4532,Benzene,LB
+37087,11.425528,Acenaphthene,LB
+37087,190.3531,Carbon Monoxide,TON
+37087,4.094891,PM10 Primary (Filt + Cond),TON
+37083,0.184351,Acenaphthene,LB
+37083,0.733391,Phenanthrene,LB
+37083,2.868213,Nitrogen Oxides,TON
+37081,101.07672,Ethyl Benzene,LB
+37049,0.5441834,Pyrene,LB
+37049,0.9834563,Nitrogen Oxides,TON
+37049,0.02760641,PM2.5 Primary (Filt + Cond),TON
+37043,0.014819194,Benz[a]Anthracene,LB
+37043,2.600508,Naphthalene,LB
+37043,0.965701,Acrolein,LB
+37043,0.014380894,Chrysene,LB
+37043,5.844193e-05,Nitrate portion of PM2.5-PRI,TON
+37043,0.01123059,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.006795266,Sulfur Dioxide,TON
+37035,92.58746,Ethyl Benzene,LB
+37035,0.05529548,"Benzo[g,h,i,]Perylene",LB
+37035,0.0630408,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.03465378,"Dibenzo[a,h]Anthracene",LB
+37035,23.06006,Phenanthrene,LB
+37035,7.460388,PM2.5 Primary (Filt + Cond),TON
+37035,0.667874,Sulfur Dioxide,TON
+37025,0.02255482,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,2.182038,Acenaphthylene,LB
+37025,0.2971698,Benzo[a]Pyrene,LB
+37025,0.05209757,Ammonia,TON
+37025,0.02502851,Sulfur Dioxide,TON
+37167,18.50696,Benzene,LB
+37167,2.795304e-05,Mercury,LB
+37167,0.000348542,Nickel,LB
+37167,0.004382304,Ammonia,TON
+37167,1.366594e-05,Nitrate portion of PM2.5-PRI,TON
+37167,0.01539795,PM10 Primary (Filt + Cond),TON
+37167,0.005368711,PM2.5 Primary (Filt + Cond),TON
+37167,0.3148874,Acrolein,LB
+37163,0.008293528,PM25-Primary from certain diesel engines,TON
+37163,5.76842e-05,Nitrate portion of PM2.5-PRI,TON
+37163,0.002952945,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,9.97125e-05,"Dibenzo[a,h]Anthracene",LB
+37163,0.2183674,Pyrene,LB
+37163,0.2375842,Acenaphthylene,LB
+37163,49.72336,Formaldehyde,LB
+37157,22.51092,Propionaldehyde,LB
+37157,0.013389654,Benzo[k]Fluoranthene,LB
+37157,425.3136,Formaldehyde,LB
+37157,8053.668,Carbon Dioxide,TON
+37157,1.979985,PM10-Primary from certain diesel engines,TON
+37157,13.699158,"1,3-Butadiene",LB
+37157,2.455016,Volatile Organic Compounds,TON
+37139,0.005323308,Anthracene,LB
+37139,0.00701637,"Benzo[g,h,i,]Perylene",LB
+37139,0.00014622576,Nickel,LB
+37139,0.005267506,Methane,TON
+37139,0.2018058,Nitrogen Oxides,TON
+37139,0.002997136,PM2.5 Primary (Filt + Cond),TON
+37135,0.1389361,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.013608024,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,8.171618,Fluoranthene,LB
+37135,0.17902186,Benzo[a]Pyrene,LB
+37141,14789.534,Toluene,LB
+37133,0.0013112312,Styrene,LB
+37133,5.51027e-05,Benzo[a]Pyrene,LB
+37133,7.800516e-07,Mercury,LB
+37133,9.726504e-06,Nickel,LB
+37133,7.695141e-05,Methane,TON
+37133,0.0001075392,Sulfur Dioxide,TON
+37133,2.385301e-06,Sulfate Portion of PM2.5-PRI,TON
+37131,0.5275194,Fluorene,LB
+37131,10.295214,Naphthalene,LB
+37131,0.0979355,PM25-Primary from certain diesel engines,TON
+37131,0.5422341,Volatile Organic Compounds,TON
+37131,0.06811584,Benz[a]Anthracene,LB
+37131,0.012067256,Manganese,LB
+37131,0.03233776,Chrysene,LB
+37127,0.1544615,"1,3-Butadiene",LB
+37127,0.4633826,Toluene,LB
+37127,0.003798584,Pyrene,LB
+37127,5.194592e-08,Chromium (VI),LB
+37127,0.002840804,Acenaphthylene,LB
+37127,0.0006232766,Chrysene,LB
+37127,20.46278,Acetaldehyde,LB
+37127,0.006105128,Phenanthrene,LB
+37127,0.002801848,Fluorene,LB
+37127,164.9696,Carbon Dioxide,TON
+37127,0.003507604,Ammonia,TON
+37125,705.9938,Formaldehyde,LB
+37125,360.742,Carbon Dioxide,TON
+37125,0.0005795186,Sulfate Portion of PM2.5-PRI,TON
+37115,5.842094,Ethyl Benzene,LB
+37105,0.3530064,Acenaphthene,LB
+37105,1.3292196,Phenanthrene,LB
+37105,12.343032,Naphthalene,LB
+37105,0.06093792,Methane,TON
+37105,0.00418047,Nitrous Oxide,TON
+37105,5.797588,Propionaldehyde,LB
+37105,2.169648e-05,Chromium (VI),LB
+37073,0.519365,Acetaldehyde,LB
+37073,0.002247684,Naphthalene,LB
+37073,3.073383e-07,Nitrate portion of PM2.5-PRI,TON
+37073,0.0001260411,PM2.5 Primary (Filt + Cond),TON
+37073,8.653898e-05,Benzo[a]Pyrene,LB
+37121,1.5813736,Acetaldehyde,LB
+37121,0.10726214,Hexane,LB
+37121,7.471736e-07,Chromium (VI),LB
+37121,0.000213897,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.1298,"2,2,4-Trimethylpentane",LB
+37121,0.00010128264,Benz[a]Anthracene,LB
+37095,0.02814426,Propionaldehyde,LB
+37095,0.0002358678,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.1559487,Carbon Monoxide,TON
+37095,17.87734,Carbon Dioxide,TON
+37095,0.001078668,PM10 Primary (Filt + Cond),TON
+37095,0.0003325546,PM2.5 Primary (Filt + Cond),TON
+37095,7.197132e-05,Mercury,LB
+37095,1.38588,Carbon Monoxide,TON
+37095,126.705,Carbon Dioxide,TON
+37083,0.0008387028,Manganese,LB
+37083,0.017744454,Naphthalene,LB
+37083,0.003552102,PM10 Primary (Filt + Cond),TON
+37021,0.0004373072,Benz[a]Anthracene,LB
+37021,9.23478e-05,Manganese,LB
+37021,0.002650952,Fluorene,LB
+37021,9.849146e-05,Ammonia,TON
+37021,0.03182442,Styrene,LB
+37021,6.826228e-08,Chromium (VI),LB
+37021,0.0004488622,Benzo[b]Fluoranthene,LB
+37021,0.02648253,Nitrogen Oxides,TON
+37021,0.001062701,PM10 Primary (Filt + Cond),TON
+37021,0.0006681768,PM2.5 Primary (Filt + Cond),TON
+37021,6.222773e-05,Sulfur Dioxide,TON
+37021,461.6756,Acrolein,LB
+37021,21927.12,Hexane,LB
+37021,18.494716,Anthracene,LB
+37021,5343.84,Carbon Monoxide,TON
+37021,3.347743,Elemental Carbon portion of PM2.5-PRI,TON
+37017,4.549808,Ethyl Benzene,LB
+37017,0.1166978,Acrolein,LB
+37017,6.078658,Hexane,LB
+37017,6.616816,Benzene,LB
+37015,0.7034596,Anthracene,LB
+37015,0.4402396,Benz[a]Anthracene,LB
+37015,0.0796532,Manganese,LB
+37015,0.6727712,Acenaphthene,LB
+37011,11.18577,Acrolein,LB
+37011,0.0003392812,Chromium (VI),LB
+37011,0.0006144259,Nitrate portion of PM2.5-PRI,TON
+37011,14.673,Nitrogen Oxides,TON
+37011,0.2313604,PM2.5 Primary (Filt + Cond),TON
+37011,9.131821,Volatile Organic Compounds,TON
+37009,0.09590488,Benzo[a]Pyrene,LB
+37009,17.213986,Benzene,LB
+37009,0.4653015,Elemental Carbon portion of PM2.5-PRI,TON
+37009,34.56208,Toluene,LB
+37009,0.2077354,Propionaldehyde,LB
+37009,22.2176,Xylenes (Mixed Isomers),LB
+37009,0.00278148,Benzo[b]Fluoranthene,LB
+37009,0.04388814,Acenaphthylene,LB
+37009,3.163426,Acetaldehyde,LB
+37009,0.001182438,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.1722007,Volatile Organic Compounds,TON
+37189,0.00383068,Anthracene,LB
+37189,4.809948,Benzene,LB
+37189,0.009065164,Fluorene,LB
+37189,0.003448703,Methane,TON
+37189,0.001768409,Sulfur Dioxide,TON
+37177,11.152642,Toluene,LB
+37177,0.03072714,Manganese,LB
+37167,0.2014456,Hexane,LB
+37167,8.014356,Formaldehyde,LB
+37167,0.0017678334,Manganese,LB
+37167,59.79987,Carbon Dioxide,TON
+37167,0.0001689241,Nitrous Oxide,TON
+37167,0.02488636,PM10 Primary (Filt + Cond),TON
+37195,0.1530415,Pyrene,LB
+37195,0.03488686,Benz[a]Anthracene,LB
+37195,0.0003019549,Nitrous Oxide,TON
+37195,0.01422008,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.05054195,PM10 Primary (Filt + Cond),TON
+37195,0.001108557,Sulfate Portion of PM2.5-PRI,TON
+37193,0.0006216646,Styrene,LB
+37193,0.0004027954,Acrolein,LB
+37193,1.6354102e-05,Benzo[a]Pyrene,LB
+37193,3.511594e-07,Arsenic,LB
+37193,8.888495e-06,Nitrous Oxide,TON
+37193,3.167255e-06,Ammonia,TON
+37193,1.586498e-05,PM2.5 Primary (Filt + Cond),TON
+37193,2.559632e-06,Sulfur Dioxide,TON
+37053,0.5945644,Benzene,LB
+37053,0.001898992,Methane,TON
+37053,0.02342256,Nitrogen Oxides,TON
+37053,0.0002910917,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.0011809176,"Benzo[g,h,i,]Perylene",LB
+37045,0.000996366,Pyrene,LB
+37045,5.28411e-06,Chromium (VI),LB
+37045,0.003365244,"Benzo[g,h,i,]Perylene",LB
+37045,0.9505646,Formaldehyde,LB
+37045,0.000563016,Benz[a]Anthracene,LB
+37045,0.0016214174,Manganese,LB
+37045,0.0010127768,Arsenic,LB
+37045,0.004631285,Methane,TON
+37045,0.004594197,Ammonia,TON
+37045,8.388637e-05,Nitrate portion of PM2.5-PRI,TON
+37045,0.01512063,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.1111583,PM10 Primary (Filt + Cond),TON
+37045,0.0009724899,Sulfate Portion of PM2.5-PRI,TON
+37045,6.552804,Ethyl Benzene,LB
+37045,1.2929998,"1,3-Butadiene",LB
+37151,0.00382583,Phenanthrene,LB
+37151,0.0013574346,Fluorene,LB
+37151,0.03496812,Naphthalene,LB
+37151,97.21012,Carbon Dioxide,TON
+37151,0.08615278,"1,3-Butadiene",LB
+37151,0.001320033,Pyrene,LB
+37147,0.0014975954,Benzo[k]Fluoranthene,LB
+37147,2.334548,Formaldehyde,LB
+37147,1.4075372,"2,2,4-Trimethylpentane",LB
+37147,0.005384214,Manganese,LB
+37147,0.01068324,Ammonia,TON
+37143,1.5043402,Xylenes (Mixed Isomers),LB
+37107,0.015669224,Fluorene,LB
+37107,0.4033404,Naphthalene,LB
+37107,0.0170257,Nitrous Oxide,TON
+37107,0.0571101,Ammonia,TON
+37107,0.007217594,Nickel,LB
+37093,0.000107541,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.001314439,Ammonia,TON
+37093,0.0006033639,PM2.5 Primary (Filt + Cond),TON
+37093,0.01520196,Volatile Organic Compounds,TON
+37093,0.1257839,Ethyl Benzene,LB
+37093,0.0009890712,Acenaphthylene,LB
+37093,0.2419662,"2,2,4-Trimethylpentane",LB
+37093,1.58371e-05,Mercury,LB
+37019,96.35046,Xylenes (Mixed Isomers),LB
+37019,76.79762,"2,2,4-Trimethylpentane",LB
+37019,3.942308,Volatile Organic Compounds,TON
+37017,3497.02,"2,2,4-Trimethylpentane",LB
+37017,0.4061423,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.00539587,Nitrate portion of PM2.5-PRI,TON
+37017,5.008897,PM10 Primary (Filt + Cond),TON
+37009,241.3128,Styrene,LB
+37009,6841.498,Hexane,LB
+37009,0.00400139,Chromium (VI),LB
+37009,9800.356,Benzene,LB
+37009,0.76691,Arsenic,LB
+37009,0.07388612,Sulfate Portion of PM2.5-PRI,TON
+37001,5913.364,Hexane,LB
+37197,0.4079936,Volatile Organic Compounds,TON
+37197,0.4191602,Styrene,LB
+37197,21.8539,Hexane,LB
+37197,0.01559576,Anthracene,LB
+37197,0.0804302,Acenaphthylene,LB
+37197,0.017532214,Acenaphthene,LB
+37197,8.329322,Carbon Monoxide,TON
+37197,0.003215931,Elemental Carbon portion of PM2.5-PRI,TON
+37197,5.920522e-05,Nitrate portion of PM2.5-PRI,TON
+37197,0.02951556,PM10 Primary (Filt + Cond),TON
+37189,0.016947264,Benzo[k]Fluoranthene,LB
+37189,0.002804936,Nickel,LB
+37189,0.13337086,Fluorene,LB
+37189,2.228018,Nitrogen Oxides,TON
+37189,41.8265,Ethyl Benzene,LB
+37189,0.05616104,Anthracene,LB
+37189,2.24399e-05,Chromium (VI),LB
+37189,0.02156418,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.00305588,Chromium (VI),LB
+37183,0.2177652,"Benzo[g,h,i,]Perylene",LB
+37183,769.7962,Naphthalene,LB
+37183,321810.8,Carbon Dioxide,TON
+37183,2.778266,Sulfate Portion of PM2.5-PRI,TON
+37185,0.0006613338,Methane,TON
+37185,0.003411424,PM10 Primary (Filt + Cond),TON
+37185,0.6952504,Ethyl Benzene,LB
+37185,3.52788,Toluene,LB
+37185,0.0005198,Benz[a]Anthracene,LB
+37185,0.00013203014,Arsenic,LB
+37191,71.67412,Ethyl Benzene,LB
+37191,2.129354,Propionaldehyde,LB
+37191,0.03594516,Benzo[k]Fluoranthene,LB
+37191,92.58882,"2,2,4-Trimethylpentane",LB
+37191,0.0005295012,Mercury,LB
+37191,0.006602186,Nickel,LB
+37179,0.3503714,Pyrene,LB
+37179,0.016627458,Arsenic,LB
+37179,0.03475652,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.07497764,Sulfur Dioxide,TON
+37067,1.8328538,Benzene,LB
+37067,0.001925367,Manganese,LB
+37067,0.00904449,Phenanthrene,LB
+37067,0.0003990484,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.004743405,Ammonia,TON
+37067,1.209969,Hexane,LB
+37067,0.00638697,"Benzo[g,h,i,]Perylene",LB
+37067,0.007433512,Acenaphthylene,LB
+37061,0.3160212,Benzo[k]Fluoranthene,LB
+37061,0.3128136,Chrysene,LB
+37061,1134.2434,Benzene,LB
+37061,0.197901,Manganese,LB
+37061,384.8164,Acetaldehyde,LB
+37061,1.146188,Acenaphthene,LB
+37061,2.321602,Fluorene,LB
+37053,169.43656,Benzene,LB
+37049,13.949132,Xylenes (Mixed Isomers),LB
+37049,0.00399506,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.03293326,Phenanthrene,LB
+37049,0.00417791,Methane,TON
+37049,0.007918899,Ammonia,TON
+37047,2.857924e-05,"Benzo[g,h,i,]Perylene",LB
+37047,0.00013676532,Chrysene,LB
+37047,120.6936,Carbon Dioxide,TON
+37047,0.01210387,Nitrous Oxide,TON
+37047,1.70562e-06,Nitrate portion of PM2.5-PRI,TON
+37041,0.03390538,Styrene,LB
+37041,0.02785988,Propionaldehyde,LB
+37041,0.0005206068,Benzo[k]Fluoranthene,LB
+37041,26.27031,Carbon Dioxide,TON
+37041,0.06720632,Nitrogen Oxides,TON
+37041,0.00233403,PM10 Primary (Filt + Cond),TON
+37035,0.007037058,Manganese,LB
+37035,0.0146506,PM2.5 Primary (Filt + Cond),TON
+37035,11.045172,Ethyl Benzene,LB
+37035,40.8749,Xylenes (Mixed Isomers),LB
+37035,0.02586838,Fluoranthene,LB
+37031,8.21179e-05,Fluoranthene,LB
+37031,8.360372e-07,"Dibenzo[a,h]Anthracene",LB
+37031,2.160778e-05,Organic Carbon portion of PM2.5-PRI,TON
+37031,4.941852e-05,Sulfur Dioxide,TON
+37031,0.000835995,Volatile Organic Compounds,TON
+37027,161.97672,Xylenes (Mixed Isomers),LB
+37027,0.10985888,Benzo[b]Fluoranthene,LB
+37027,2.389976,Benz[a]Anthracene,LB
+37027,0.5965079,Methane,TON
+37027,2.422898,PM10-Primary from certain diesel engines,TON
+37027,2.229187,PM25-Primary from certain diesel engines,TON
+37027,0.546657,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.00652408,Arsenic,LB
+37023,2.759852,Phenanthrene,LB
+37023,0.08618281,Methane,TON
+37023,0.01269075,Sulfur Dioxide,TON
+37023,4.81578e-05,Mercury,LB
+37023,7.00221,Acetaldehyde,LB
+37023,0.009850791,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.4924102,Volatile Organic Compounds,TON
+37023,0.010791656,Benzo[b]Fluoranthene,LB
+37023,0.3917666,Acrolein,LB
+37023,15940.102,Ethyl Benzene,LB
+37023,22.58886,Anthracene,LB
+37023,58686.44,Xylenes (Mixed Isomers),LB
+37023,19377.724,"2,2,4-Trimethylpentane",LB
+37023,0.14548618,Mercury,LB
+37023,143.50404,Phenanthrene,LB
+37023,5.502811,Organic Carbon portion of PM2.5-PRI,TON
+37023,6.151243,Sulfur Dioxide,TON
+37119,2.037692,Benzo[a]Pyrene,LB
+37119,0.04662832,"Dibenzo[a,h]Anthracene",LB
+37119,5.23283,Acenaphthene,LB
+37119,0.006047688,Nitrate portion of PM2.5-PRI,TON
+37113,0.007133304,Sulfur Dioxide,TON
+37113,0.3724406,Anthracene,LB
+37113,1.2250964,Phenanthrene,LB
+37113,0.09405719,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.0013894256,Benzo[b]Fluoranthene,LB
+37105,88.98672,Formaldehyde,LB
+37105,2.37545,"2,2,4-Trimethylpentane",LB
+37105,0.04802208,Benz[a]Anthracene,LB
+37105,0.002918114,Sulfate Portion of PM2.5-PRI,TON
+37091,3.18958,"1,3-Butadiene",LB
+37091,2.503764,Hexane,LB
+37091,0.002598054,Benzo[b]Fluoranthene,LB
+37091,0.0003591594,"Dibenzo[a,h]Anthracene",LB
+37091,5.667617,Carbon Monoxide,TON
+37091,650.8532,Carbon Dioxide,TON
+37091,0.09566747,PM25-Primary from certain diesel engines,TON
+37091,0.005615757,Sulfur Dioxide,TON
+37089,20.67874,Anthracene,LB
+37089,0.209366,"Dibenzo[a,h]Anthracene",LB
+37089,8252.536,Acetaldehyde,LB
+37089,12.60607,Nitrous Oxide,TON
+37089,5.28632,Organic Carbon portion of PM2.5-PRI,TON
+37089,3412.904,"1,3-Butadiene",LB
+37087,7.048054e-05,Chromium (VI),LB
+37087,0.0012475748,Benzo[k]Fluoranthene,LB
+37087,0.0012401374,"Dibenzo[a,h]Anthracene",LB
+37087,6.14127,"2,2,4-Trimethylpentane",LB
+37087,103.7124,Acetaldehyde,LB
+37087,26.11952,Naphthalene,LB
+37087,0.2911484,PM10-Primary from certain diesel engines,TON
+37087,0.005406752,Nitrous Oxide,TON
+37087,0.0224503,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.1782928,Ammonia,TON
+37079,6.694128,"1,3-Butadiene",LB
+37079,26.4513,Benzene,LB
+37087,1430.271,Carbon Monoxide,TON
+37087,12.85624,PM10 Primary (Filt + Cond),TON
+37087,1.549494,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.00903385,Chromium (VI),LB
+37087,2.306806,Chrysene,LB
+37087,131.30114,Styrene,LB
+37087,849.4714,"1,3-Butadiene",LB
+37087,5402.538,Hexane,LB
+37075,9.590458,Ethyl Benzene,LB
+37075,0.011800202,Anthracene,LB
+37075,0.02008218,Fluoranthene,LB
+37075,12.948886,"2,2,4-Trimethylpentane",LB
+37075,0.01251339,PM10 Primary (Filt + Cond),TON
+37063,25.20212,"1,3-Butadiene",LB
+37063,215.0718,Hexane,LB
+37063,0.14640844,Benzo[b]Fluoranthene,LB
+37063,0.005727792,"Dibenzo[a,h]Anthracene",LB
+37063,294.1918,Benzene,LB
+37063,0.03866808,Arsenic,LB
+37063,77.44944,Acetaldehyde,LB
+37063,0.1724848,Nitrous Oxide,TON
+37063,0.1059634,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,9.824296,"1,3-Butadiene",LB
+37059,16.183594,Propionaldehyde,LB
+37059,7.037118e-05,Chromium (VI),LB
+37059,0.01359656,Arsenic,LB
+37059,0.2758389,PM25-Primary from certain diesel engines,TON
+37059,0.04716281,Organic Carbon portion of PM2.5-PRI,TON
+37059,73.2499,Toluene,LB
+37059,0.012652712,Anthracene,LB
+37059,0.03788212,"Benzo[g,h,i,]Perylene",LB
+37059,0.02229106,Fluoranthene,LB
+37059,0.0657456,Acenaphthylene,LB
+37059,4.675926,Acetaldehyde,LB
+37059,0.02907964,Fluorene,LB
+37059,0.7466172,Naphthalene,LB
+37059,6.459999,Carbon Monoxide,TON
+37059,0.004430497,Ammonia,TON
+37059,0.6053107,Nitrogen Oxides,TON
+37059,0.003678272,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.002719675,Sulfur Dioxide,TON
+37057,0.02162433,Nitrous Oxide,TON
+37057,0.004499716,Nitrate portion of PM2.5-PRI,TON
+37057,1.3433434,Anthracene,LB
+37057,0.06980732,Benzo[b]Fluoranthene,LB
+37057,2.206684,Acenaphthylene,LB
+37057,471.705,Formaldehyde,LB
+37057,0.3416842,Methane,TON
+37055,1.5464038e-05,Mercury,LB
+37055,2.389954,Acetaldehyde,LB
+37055,0.3895744,Naphthalene,LB
+37051,0.301001,"Dibenzo[a,h]Anthracene",LB
+37051,100451.52,Toluene,LB
+37051,17.724606,Manganese,LB
+37051,0.449399,Mercury,LB
+37051,7968.668,Acetaldehyde,LB
+37043,2.138332,Acrolein,LB
+37043,0.2600356,Pyrene,LB
+37043,4.695018e-06,Chromium (VI),LB
+37043,0.004700572,Manganese,LB
+37043,0.002893702,Nickel,LB
+37043,0.08078795,PM10 Primary (Filt + Cond),TON
+37043,0.001255866,Sulfate Portion of PM2.5-PRI,TON
+37045,0.005040864,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,4.012124,"2,2,4-Trimethylpentane",LB
+37045,0.5417522,Acenaphthene,LB
+37045,1.0465174,Fluorene,LB
+37045,6.309553,Carbon Monoxide,TON
+37045,2010.42,Carbon Dioxide,TON
+37045,0.6143318,PM10 Primary (Filt + Cond),TON
+37025,0.03878886,Pyrene,LB
+37025,64.5161,Xylenes (Mixed Isomers),LB
+37025,5.586328e-06,Chromium (VI),LB
+37025,0.02314128,Acenaphthene,LB
+37029,1.1975834,Styrene,LB
+37029,0.0616616,"Benzo[g,h,i,]Perylene",LB
+37029,0.02318972,Benzo[a]Pyrene,LB
+37027,0.4315728,Styrene,LB
+37027,0.004037032,Benzo[k]Fluoranthene,LB
+37027,19.474524,Benzene,LB
+37027,1.522707e-05,Nitrate portion of PM2.5-PRI,TON
+37147,0.0004471628,Anthracene,LB
+37147,0.496223,Benzene,LB
+37147,0.0002885534,Arsenic,LB
+37147,11.199784,Acetaldehyde,LB
+37147,0.829041,Nitrogen Oxides,TON
+37145,0.003514944,Sulfate Portion of PM2.5-PRI,TON
+37145,0.013046686,Nickel,LB
+37145,0.02031958,Ammonia,TON
+37145,0.008411329,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,119.49944,Formaldehyde,LB
+37139,0.3747546,"1,3-Butadiene",LB
+37139,2.975234,Hexane,LB
+37139,0.05719682,Propionaldehyde,LB
+37139,0.0015737254,Benzo[a]Pyrene,LB
+37139,0.0010301268,Benz[a]Anthracene,LB
+37139,1.448461,Carbon Monoxide,TON
+37139,0.001302124,Sulfur Dioxide,TON
+37135,7.86138e-05,Mercury,LB
+37135,0.01307687,Sulfate Portion of PM2.5-PRI,TON
+37135,7.813286,"1,3-Butadiene",LB
+37127,0.008936701,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.02144427,PM2.5 Primary (Filt + Cond),TON
+37127,0.0006596356,Sulfate Portion of PM2.5-PRI,TON
+37123,0.02993013,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.0003489433,Nitrate portion of PM2.5-PRI,TON
+37123,0.01221976,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.8276524,Ethyl Benzene,LB
+37123,0.08857254,Anthracene,LB
+37123,0.0008261118,Benzo[k]Fluoranthene,LB
+37123,0.1314213,Acenaphthylene,LB
+37123,0.007318442,Manganese,LB
+37121,0.005165224,Acenaphthene,LB
+37121,0.003598469,PM25-Primary from certain diesel engines,TON
+37115,0.00011868914,Chromium (VI),LB
+37115,0.008738674,Benzo[k]Fluoranthene,LB
+37115,0.2070526,Benzo[a]Pyrene,LB
+37115,206.5222,Acetaldehyde,LB
+37115,2.24641,Fluorene,LB
+37115,1.32386,PM25-Primary from certain diesel engines,TON
+37115,2.629474,PM10 Primary (Filt + Cond),TON
+37115,2.233891,Volatile Organic Compounds,TON
+37113,1.447238e-05,Methane,TON
+37113,1.059996e-05,Nitrous Oxide,TON
+37113,2.712814e-05,Fluoranthene,LB
+37107,0.6404568,Propionaldehyde,LB
+37107,0.110601,Xylenes (Mixed Isomers),LB
+37107,1.502463e-08,Chromium (VI),LB
+37107,2.205404e-05,Benz[a]Anthracene,LB
+37105,4.394424,Styrene,LB
+37105,24.05202,Acrolein,LB
+37105,0.014561152,"Benzo[g,h,i,]Perylene",LB
+37105,0.009856904,Benzo[k]Fluoranthene,LB
+37105,0.009834828,"Dibenzo[a,h]Anthracene",LB
+37105,0.7856546,Benz[a]Anthracene,LB
+37105,6.741564e-05,Mercury,LB
+37105,8.498091,Carbon Monoxide,TON
+37105,1.318408,PM25-Primary from certain diesel engines,TON
+37105,28.82456,Nitrogen Oxides,TON
+37105,1.768376,Volatile Organic Compounds,TON
+37097,0.004338594,Benzo[k]Fluoranthene,LB
+37097,147.83416,Formaldehyde,LB
+37097,4.970598e-05,Mercury,LB
+37097,0.4097602,Acenaphthene,LB
+37097,0.9337904,Fluorene,LB
+37097,0.375832,PM10-Primary from certain diesel engines,TON
+37097,0.07717275,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.02083588,Sulfate Portion of PM2.5-PRI,TON
+37103,7.306608e-05,"Dibenzo[a,h]Anthracene",LB
+37103,0.0008901292,Manganese,LB
+37103,0.005108856,Acenaphthene,LB
+37103,0.2654504,Naphthalene,LB
+37103,0.0005312277,Elemental Carbon portion of PM2.5-PRI,TON
+37103,9.523218e-06,Nitrate portion of PM2.5-PRI,TON
+37103,0.001106839,Sulfur Dioxide,TON
+37093,0.4856178,Pyrene,LB
+37093,1.3156402e-05,Chromium (VI),LB
+37093,0.3778526,Fluoranthene,LB
+37093,1.0360008e-05,Mercury,LB
+37093,6.718926,Naphthalene,LB
+37093,0.009731725,Ammonia,TON
+37093,0.005565344,Sulfur Dioxide,TON
+37083,2.278828e-06,Nickel,LB
+37083,0.0001028471,Sulfate Portion of PM2.5-PRI,TON
+37083,0.09555429,Volatile Organic Compounds,TON
+37073,1.591635,Carbon Monoxide,TON
+37073,0.02997626,PM10-Primary from certain diesel engines,TON
+37073,0.004111442,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.03681745,PM10 Primary (Filt + Cond),TON
+37073,0.001918142,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.4270882,Styrene,LB
+37073,0.0007606604,Benzo[b]Fluoranthene,LB
+37073,0.1649394,Acenaphthylene,LB
+37075,1.7792096,"1,3-Butadiene",LB
+37075,1.8735088,Hexane,LB
+37075,0.002489548,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,74.80026,Formaldehyde,LB
+37075,2.1127,"2,2,4-Trimethylpentane",LB
+37075,0.11132638,Benz[a]Anthracene,LB
+37075,2.387984,Carbon Monoxide,TON
+37075,3465.724,Carbon Dioxide,TON
+37075,0.1811976,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.05272212,Ammonia,TON
+37067,3.03132,Ethyl Benzene,LB
+37067,7.767696,Xylenes (Mixed Isomers),LB
+37067,0.06695212,Benzo[a]Pyrene,LB
+37067,0.002759358,"Dibenzo[a,h]Anthracene",LB
+37067,0.013789932,Nickel,LB
+37067,38.81498,Acetaldehyde,LB
+37067,0.2623818,Acenaphthene,LB
+37067,0.001189096,Nitrate portion of PM2.5-PRI,TON
+37063,0.444303,Propionaldehyde,LB
+37063,0.009866514,Benzo[k]Fluoranthene,LB
+37063,0.009137,Chrysene,LB
+37063,10.095438,Formaldehyde,LB
+37063,0.0003372268,"Dibenzo[a,h]Anthracene",LB
+37063,12.63667,Sulfur Dioxide,TON
+37063,885.2288,Styrene,LB
+37063,62.59526,Pyrene,LB
+37063,11.4093,Benzo[k]Fluoranthene,LB
+37063,170.39312,Acenaphthylene,LB
+37063,22.94579,Methane,TON
+37063,40.95396,Ammonia,TON
+37063,0.05080981,Nitrate portion of PM2.5-PRI,TON
+37063,1137.981,Nitrogen Oxides,TON
+37043,5.896506,Acrolein,LB
+37043,0.2366246,Anthracene,LB
+37043,0.003225222,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.0017614824,Benzo[k]Fluoranthene,LB
+37043,0.08395298,Chrysene,LB
+37043,0.4283439,PM10 Primary (Filt + Cond),TON
+37043,0.03005682,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.004325752,Organic Carbon portion of PM2.5-PRI,TON
+37043,1.719344,Propionaldehyde,LB
+37043,0.17064,Pyrene,LB
+37043,0.0008002526,Benzo[b]Fluoranthene,LB
+37043,0.00011065484,"Dibenzo[a,h]Anthracene",LB
+37033,0.03909944,Manganese,LB
+37033,0.5214006,Anthracene,LB
+37033,7.667498,Propionaldehyde,LB
+37033,0.006499178,"Benzo[g,h,i,]Perylene",LB
+37033,0.00430664,"Dibenzo[a,h]Anthracene",LB
+37033,3.244494,"2,2,4-Trimethylpentane",LB
+37033,0.425858,Elemental Carbon portion of PM2.5-PRI,TON
+37031,1.5214958,Styrene,LB
+37031,8.313888,Acrolein,LB
+37031,2.627346,Hexane,LB
+37031,5.624598,Propionaldehyde,LB
+37031,0.676843,Fluorene,LB
+37031,0.03752973,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,0.6116064,Volatile Organic Compounds,TON
+37163,10.255354,Styrene,LB
+37163,0.3889862,Manganese,LB
+37163,0.6596034,Organic Carbon portion of PM2.5-PRI,TON
+37163,5.686881,Volatile Organic Compounds,TON
+37159,8.962656,Hexane,LB
+37159,0.3375399,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.8265558,PM2.5 Primary (Filt + Cond),TON
+37155,1.0338992,Acenaphthene,LB
+37155,2420.657,Carbon Dioxide,TON
+37155,15.17944,Nitrogen Oxides,TON
+37155,4.513296,Styrene,LB
+37155,10.18022,"1,3-Butadiene",LB
+37155,1.1268338,Anthracene,LB
+37155,0.014278264,"Benzo[g,h,i,]Perylene",LB
+37151,4.119246e-05,Fluoranthene,LB
+37151,5.40604e-05,Arsenic,LB
+37151,0.06666435,Methane,TON
+37147,0.8251872,Styrene,LB
+37147,5.993102,Benzene,LB
+37147,0.009569996,Nickel,LB
+37147,28.08476,Acetaldehyde,LB
+37147,7.037382,Naphthalene,LB
+37147,0.163214,PM25-Primary from certain diesel engines,TON
+37147,0.3557678,Volatile Organic Compounds,TON
+37145,0.006116366,"2,2,4-Trimethylpentane",LB
+37145,2.44528e-06,Benz[a]Anthracene,LB
+37145,7.49843e-09,Mercury,LB
+37145,1.4336566e-07,Arsenic,LB
+37145,7.854898e-06,Acenaphthene,LB
+37145,0.0004079326,Naphthalene,LB
+37145,0.017952146,Xylenes (Mixed Isomers),LB
+37145,2.357818e-06,Chrysene,LB
+37145,1.296184e-06,Ammonia,TON
+37145,0.0001404681,Volatile Organic Compounds,TON
+37133,0.008549698,Chrysene,LB
+37133,0.0017154328,Nickel,LB
+37133,1.372365e-05,Chromium (VI),LB
+37133,1.6259842,Naphthalene,LB
+37133,15.49771,Carbon Monoxide,TON
+37133,0.01074606,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.005812646,Pyrene,LB
+37121,0.000966541,Benz[a]Anthracene,LB
+37121,0.003495908,Acenaphthene,LB
+37121,0.002940363,PM10 Primary (Filt + Cond),TON
+37119,0.7515938,Manganese,LB
+37119,3.954548,PM10-Primary from certain diesel engines,TON
+37119,3.638192,PM25-Primary from certain diesel engines,TON
+37119,0.07495535,Nitrous Oxide,TON
+37119,0.1395974,Sulfur Dioxide,TON
+37119,0.1623305,Sulfate Portion of PM2.5-PRI,TON
+37119,134.99128,Toluene,LB
+37119,0.0703477,"Benzo[g,h,i,]Perylene",LB
+37119,0.3455004,Benzo[b]Fluoranthene,LB
+37111,2.017342,Benz[a]Anthracene,LB
+37111,0.8950756,Nickel,LB
+37111,11.072064,Fluorene,LB
+37111,1447.2,Carbon Monoxide,TON
+37111,101227.3,Carbon Dioxide,TON
+37111,2.209363,Nitrous Oxide,TON
+37099,0.00014665542,"Dibenzo[a,h]Anthracene",LB
+37099,9.385454,Naphthalene,LB
+37099,0.01581936,PM10-Primary from certain diesel engines,TON
+37099,0.003512028,Elemental Carbon portion of PM2.5-PRI,TON
+37099,8.871602e-05,Nitrate portion of PM2.5-PRI,TON
+37099,0.008101658,Sulfur Dioxide,TON
+37095,0.9039836,Hexane,LB
+37095,0.015351606,Propionaldehyde,LB
+37095,0.000240929,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.0002331155,Sulfur Dioxide,TON
+37095,0.4174206,Hexane,LB
+37095,0.0008595906,Pyrene,LB
+37095,0.00237488,Acenaphthylene,LB
+37095,0.5987026,Benzene,LB
+37095,1.600576e-05,Nickel,LB
+37095,2.454366e-05,Arsenic,LB
+37095,0.3641221,Carbon Monoxide,TON
+37095,0.000334663,Nitrous Oxide,TON
+37095,0.0001991977,PM2.5 Primary (Filt + Cond),TON
+37095,5.626638e-06,Sulfate Portion of PM2.5-PRI,TON
+37091,5.374616,Acenaphthene,LB
+37083,1.9687596,Anthracene,LB
+37083,42.51244,Xylenes (Mixed Isomers),LB
+37083,4.04011,Acenaphthylene,LB
+37079,180.72032,Ethyl Benzene,LB
+37079,43.25546,"1,3-Butadiene",LB
+37079,0.5142842,Pyrene,LB
+37079,16.088744,Naphthalene,LB
+37079,5.184656,Volatile Organic Compounds,TON
+37071,0.03018796,Benzo[b]Fluoranthene,LB
+37071,0.004156416,Benzo[k]Fluoranthene,LB
+37071,1.4933016,Acenaphthylene,LB
+37071,5.24574e-05,Mercury,LB
+37071,9.713936,Carbon Monoxide,TON
+37071,0.04213504,Ammonia,TON
+37071,19.21728,Nitrogen Oxides,TON
+37071,0.08901679,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.02536422,Sulfur Dioxide,TON
+37071,1.547773,Volatile Organic Compounds,TON
+37071,2.022508,"Benzo[g,h,i,]Perylene",LB
+37071,0.7622442,Benzo[a]Pyrene,LB
+37071,0.01744671,"Dibenzo[a,h]Anthracene",LB
+37071,10.896502,Phenanthrene,LB
+37071,33519.57,Carbon Dioxide,TON
+37071,0.1939369,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.002577856,Nitrate portion of PM2.5-PRI,TON
+37071,1.037444,PM2.5 Primary (Filt + Cond),TON
+37071,0.7028988,Sulfur Dioxide,TON
+37061,0.8011606,Chrysene,LB
+37061,0.3664867,Sulfate Portion of PM2.5-PRI,TON
+37061,8.111456,PM10 Primary (Filt + Cond),TON
+37061,3974.6,Ethyl Benzene,LB
+37061,853.7486,"1,3-Butadiene",LB
+37061,0.008204012,Chromium (VI),LB
+37061,8.496708,"Benzo[g,h,i,]Perylene",LB
+37061,0.08224608,Mercury,LB
+37061,1627.863,Carbon Monoxide,TON
+37061,0.6986846,Elemental Carbon portion of PM2.5-PRI,TON
+37047,10.8806,Xylenes (Mixed Isomers),LB
+37047,0.010527302,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.00564998,Benzo[k]Fluoranthene,LB
+37047,1.007172,Acenaphthylene,LB
+37047,1.3045928,Fluorene,LB
+37047,0.0500639,Methane,TON
+37047,0.2151316,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.02445866,Ammonia,TON
+37047,0.1932642,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.006088526,PM2.5 Primary (Filt + Cond),TON
+37045,0.0007048094,Pyrene,LB
+37045,0.0014122752,Naphthalene,LB
+37045,109.4913,Carbon Dioxide,TON
+37045,0.0005148487,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.4143013,Nitrogen Oxides,TON
+37043,0.0066201,"1,3-Butadiene",LB
+37043,15.844164,Formaldehyde,LB
+37043,0.0006172566,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.0009958248,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,2.143982,Fluorene,LB
+37043,0.005417541,Nitrous Oxide,TON
+37043,0.02323956,Benzo[a]Pyrene,LB
+37043,0.01706384,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.02919674,Arsenic,LB
+37045,18.35644,Carbon Monoxide,TON
+37045,21.2141,Ethyl Benzene,LB
+37045,41.16968,Toluene,LB
+37045,2.44716,Anthracene,LB
+37045,0.04212258,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.0226818,Benzo[k]Fluoranthene,LB
+37045,1.7877802,Benz[a]Anthracene,LB
+37045,42350.98,Toluene,LB
+37045,14.469968,"Benzo[g,h,i,]Perylene",LB
+37045,2747.474,Formaldehyde,LB
+37045,3334.976,Acetaldehyde,LB
+37045,9.300046,Acenaphthene,LB
+37045,18.837864,Fluorene,LB
+37045,190522.4,Carbon Dioxide,TON
+37039,0.203626,Fluoranthene,LB
+37039,0.03989816,Chrysene,LB
+37039,51.7734,Formaldehyde,LB
+37039,189.0221,Benzene,LB
+37039,1.944024,Nitrogen Oxides,TON
+37039,0.0189385,Sulfur Dioxide,TON
+37027,13.006126,Hexane,LB
+37027,24.3515,Propionaldehyde,LB
+37027,4.537614,Pyrene,LB
+37027,43.57762,Xylenes (Mixed Isomers),LB
+37027,0.09950048,Benzo[b]Fluoranthene,LB
+37027,0.6415406,Chrysene,LB
+37027,1.0939924,Benz[a]Anthracene,LB
+37027,45.9557,Benzene,LB
+37027,1.4521272,Acenaphthene,LB
+37027,2.715161,Volatile Organic Compounds,TON
+37175,0.005197116,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.004321026,Sulfur Dioxide,TON
+37175,6.124424,Acrolein,LB
+37175,6.629708,Toluene,LB
+37175,7.3664,Benzene,LB
+37175,5.773665,Carbon Monoxide,TON
+37159,4.489648e-05,Chromium (VI),LB
+37159,0.004396124,"Benzo[g,h,i,]Perylene",LB
+37159,0.12925132,Chrysene,LB
+37159,0.006168526,Nitrous Oxide,TON
+37159,0.9881479,Volatile Organic Compounds,TON
+37153,1.1011288,Propionaldehyde,LB
+37153,1.4515184e-05,"Benzo[g,h,i,]Perylene",LB
+37153,0.0003750476,Acenaphthylene,LB
+37153,7.204248e-05,Chrysene,LB
+37153,0.3808476,Methane,TON
+37153,0.4817923,Carbon Monoxide,TON
+37153,1.156115e-06,Nitrate portion of PM2.5-PRI,TON
+37153,0.009707244,PM10 Primary (Filt + Cond),TON
+37137,0.010799774,Nickel,LB
+37137,0.3179393,PM10-Primary from certain diesel engines,TON
+37131,0.13744814,Acrolein,LB
+37131,2.483776,Formaldehyde,LB
+37131,0.00395331,Benz[a]Anthracene,LB
+37131,7.955594,Benzene,LB
+37131,0.015590866,Fluorene,LB
+37127,19.84654,Phenanthrene,LB
+37127,5.927852,PM25-Primary from certain diesel engines,TON
+37127,1.330434,Organic Carbon portion of PM2.5-PRI,TON
+37127,4.408182,Anthracene,LB
+37127,0.7581242,Benzo[a]Pyrene,LB
+37127,2.594854,Benz[a]Anthracene,LB
+37121,4.76569,Propionaldehyde,LB
+37121,0.003633016,Arsenic,LB
+37121,0.007585679,Sulfate Portion of PM2.5-PRI,TON
+37111,1.651514,PM10-Primary from certain diesel engines,TON
+37111,0.6864011,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.01672058,Nitrous Oxide,TON
+37111,44.42772,Acrolein,LB
+37111,5.57696,Pyrene,LB
+37111,0.12176696,Benzo[b]Fluoranthene,LB
+37117,1.527787,PM2.5 Primary (Filt + Cond),TON
+37117,389.4034,"1,3-Butadiene",LB
+37117,6584.134,Xylenes (Mixed Isomers),LB
+37117,3.346892,"Benzo[g,h,i,]Perylene",LB
+37117,0.8602592,Benzo[b]Fluoranthene,LB
+37117,0.8411478,Benz[a]Anthracene,LB
+37107,0.0005172952,"1,3-Butadiene",LB
+37107,5.99521e-06,Pyrene,LB
+37107,0.008604316,Xylenes (Mixed Isomers),LB
+37107,9.279884e-07,Benzo[k]Fluoranthene,LB
+37107,1.6468336e-05,Acenaphthylene,LB
+37107,2.705626e-08,"Dibenzo[a,h]Anthracene",LB
+37107,0.003047242,"2,2,4-Trimethylpentane",LB
+37107,2.799704e-08,Nickel,LB
+37107,3.617622e-06,Acenaphthene,LB
+37107,1.3540416e-07,Mercury,LB
+37107,0.0003096626,Acenaphthene,LB
+37107,0.0005184811,Methane,TON
+37107,8.177837e-05,Nitrous Oxide,TON
+37107,1.883905e-05,Ammonia,TON
+37107,0.000178346,PM10 Primary (Filt + Cond),TON
+37103,24.98558,Acrolein,LB
+37103,1268.8164,Hexane,LB
+37103,0.728606,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,374.8562,Formaldehyde,LB
+37103,0.2600876,Nickel,LB
+37103,6.776372,Phenanthrene,LB
+37103,0.1584814,Elemental Carbon portion of PM2.5-PRI,TON
+37103,2.627266,Ammonia,TON
+37103,0.002329842,Nitrate portion of PM2.5-PRI,TON
+37103,0.4348218,Organic Carbon portion of PM2.5-PRI,TON
+37097,53.67888,Fluoranthene,LB
+37097,10.820802,Chrysene,LB
+37097,11415.21,Formaldehyde,LB
+37097,36357.82,Benzene,LB
+37097,0.327864,Mercury,LB
+37053,0.7197218,Ethyl Benzene,LB
+37053,1.6443598,Toluene,LB
+37053,0.0010320922,"Benzo[g,h,i,]Perylene",LB
+37053,0.10947658,Acenaphthylene,LB
+37053,0.003252972,Nickel,LB
+37053,0.05483829,PM25-Primary from certain diesel engines,TON
+37053,0.007866008,Ammonia,TON
+37015,0.008647433,Sulfate Portion of PM2.5-PRI,TON
+37015,1689.278,Carbon Dioxide,TON
+37011,0.14694888,Pyrene,LB
+37011,0.400262,Acenaphthylene,LB
+37011,0.0263962,Benz[a]Anthracene,LB
+37011,0.004326098,Nickel,LB
+37011,0.005404556,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.0001053444,Nitrate portion of PM2.5-PRI,TON
+37009,15.467438,Toluene,LB
+37009,3.654268,Hexane,LB
+37009,0.0010269376,Benzo[b]Fluoranthene,LB
+37009,0.016439406,Acenaphthylene,LB
+37009,0.0010332408,Benz[a]Anthracene,LB
+37009,0.0001633308,Nickel,LB
+37009,0.000903122,Sulfur Dioxide,TON
+37009,0.07444991,Volatile Organic Compounds,TON
+37009,0.2498734,Acenaphthylene,LB
+37009,0.0001087087,Mercury,LB
+37009,0.1111822,Fluorene,LB
+37009,2.849568,Naphthalene,LB
+37009,0.008404323,Sulfur Dioxide,TON
+37001,8.046454e-05,Chromium (VI),LB
+37001,0.08025796,Benzo[b]Fluoranthene,LB
+37001,0.12620658,Benzo[a]Pyrene,LB
+37001,0.002911688,"Dibenzo[a,h]Anthracene",LB
+37001,204.2652,Benzene,LB
+37001,0.06359162,Manganese,LB
+37001,0.015422334,Arsenic,LB
+37001,123.0925,Ethyl Benzene,LB
+37001,1.0608978,Phenanthrene,LB
+37001,81.77812,Carbon Monoxide,TON
+37007,22894.2,Toluene,LB
+37007,5.973004,Anthracene,LB
+37007,11.588036,Pyrene,LB
+37007,1.1850794,Manganese,LB
+37007,0.04073526,Mercury,LB
+37007,0.5079372,Nickel,LB
+37007,6.221709,Ammonia,TON
+37057,0.275779,Acrolein,LB
+37057,0.003851729,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.008516377,PM2.5 Primary (Filt + Cond),TON
+37057,0.003102962,Benzo[b]Fluoranthene,LB
+37057,0.004423594,Fluoranthene,LB
+37057,0.011646692,Acenaphthylene,LB
+37057,0.002354522,Chrysene,LB
+37013,0.06375326,"1,3-Butadiene",LB
+37013,0.0006730732,Arsenic,LB
+37013,0.001891038,Sulfur Dioxide,TON
+37123,0.000506064,Anthracene,LB
+37123,0.13168936,Propionaldehyde,LB
+37123,6.072208e-05,Mercury,LB
+37123,0.02849382,Naphthalene,LB
+37017,2.39476,Ethyl Benzene,LB
+37017,0.0010280682,Chrysene,LB
+37017,0.0004641294,Arsenic,LB
+37017,0.002688994,Methane,TON
+37017,80.23276,Carbon Dioxide,TON
+37073,0.20357,Ethyl Benzene,LB
+37073,0.3947576,Hexane,LB
+37073,0.0003099612,Anthracene,LB
+37073,0.0816115,Propionaldehyde,LB
+37071,5.193192e-05,"Dibenzo[a,h]Anthracene",LB
+37071,0.0009951062,Benz[a]Anthracene,LB
+37071,0.4666504,Ethyl Benzene,LB
+37071,0.007983575,Ammonia,TON
+37071,8.920461e-06,Nitrate portion of PM2.5-PRI,TON
+37071,0.001598854,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.01602632,Methane,TON
+37045,0.003185997,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.0536215,Styrene,LB
+37045,0.4468478,Propionaldehyde,LB
+37045,0.002416932,Benzo[b]Fluoranthene,LB
+37019,1.8380492,Toluene,LB
+37019,0.004682554,"Benzo[g,h,i,]Perylene",LB
+37019,4.038512e-05,"Dibenzo[a,h]Anthracene",LB
+37019,0.0015920316,Arsenic,LB
+37019,0.0379623,Naphthalene,LB
+37019,37.94202,Toluene,LB
+37173,0.09070904,Styrene,LB
+37173,0.3127234,Acrolein,LB
+37173,0.006000396,Pyrene,LB
+37173,0.003157258,Benzo[k]Fluoranthene,LB
+37065,0.0671743,Chrysene,LB
+37065,313.2188,Benzene,LB
+37065,52.29086,Acetaldehyde,LB
+37057,11.002162,Pyrene,LB
+37057,150.68218,Naphthalene,LB
+37057,2.980397,PM10-Primary from certain diesel engines,TON
+37057,0.066713,Nitrous Oxide,TON
+37057,55.06801,Nitrogen Oxides,TON
+37057,0.5110421,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.01887342,Nickel,LB
+37055,0.006523726,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.3929214,Volatile Organic Compounds,TON
+37055,2.025472,Hexane,LB
+37055,0.03497458,Benz[a]Anthracene,LB
+37045,0.001927643,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.016547778,Anthracene,LB
+37045,6.193798,Formaldehyde,LB
+37045,0.010996322,Benzo[a]Pyrene,LB
+37043,17.939642,"1,3-Butadiene",LB
+37043,0.5641774,Acenaphthylene,LB
+37043,37.87202,Formaldehyde,LB
+37043,0.001045946,Sulfate Portion of PM2.5-PRI,TON
+37035,5.11042,"1,3-Butadiene",LB
+37035,0.03349704,Anthracene,LB
+37035,0.014444456,Benzo[k]Fluoranthene,LB
+37035,0.17702974,Acenaphthylene,LB
+37035,0.0008270466,Nickel,LB
+37035,0.03880316,Acenaphthene,LB
+37035,0.01219198,Nitrous Oxide,TON
+37035,0.01202154,Organic Carbon portion of PM2.5-PRI,TON
+37031,12.355086,Acrolein,LB
+37031,1.9658558,Phenanthrene,LB
+37031,0.002227327,Nitrate portion of PM2.5-PRI,TON
+37025,4066.174,Xylenes (Mixed Isomers),LB
+37025,0.3694512,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,33.69059,Volatile Organic Compounds,TON
+37171,0.855544,Anthracene,LB
+37171,293.7848,Formaldehyde,LB
+37171,7.773688,"2,2,4-Trimethylpentane",LB
+37171,1.7460356,Fluorene,LB
+37171,0.01277817,Nitrous Oxide,TON
+37167,5.05344e-05,Nitrate portion of PM2.5-PRI,TON
+37167,0.726943,Propionaldehyde,LB
+37167,0.06117556,Fluoranthene,LB
+37167,0.010300056,Benzo[k]Fluoranthene,LB
+37157,0.008196376,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.005471738,Benzo[b]Fluoranthene,LB
+37157,4.877272,Formaldehyde,LB
+37157,0.03113728,Fluorene,LB
+37157,142.902,Carbon Dioxide,TON
+37157,0.009009099,PM2.5 Primary (Filt + Cond),TON
+37151,0.0003119354,Nitrate portion of PM2.5-PRI,TON
+37151,0.2547844,PM10 Primary (Filt + Cond),TON
+37151,0.10363726,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.06884138,Benzo[k]Fluoranthene,LB
+37151,174.00506,"2,2,4-Trimethylpentane",LB
+37151,200.3048,Benzene,LB
+37151,0.3867482,Fluorene,LB
+37151,81.47007,Carbon Monoxide,TON
+37141,15.448792,Toluene,LB
+37141,5.779088,Hexane,LB
+37141,0.6312838,Anthracene,LB
+37141,0.0010681306,Benzo[k]Fluoranthene,LB
+37129,33.02382,Ethyl Benzene,LB
+37129,78.45424,Acrolein,LB
+37129,8.51211,Fluoranthene,LB
+37129,0.5967074,Manganese,LB
+37129,3.256224,Acenaphthene,LB
+37129,109.01404,Naphthalene,LB
+37129,25.8173,Carbon Monoxide,TON
+37129,16416.97,Carbon Dioxide,TON
+37129,4.608025,PM10-Primary from certain diesel engines,TON
+37125,4.028294,Fluoranthene,LB
+37125,0.0899257,Arsenic,LB
+37125,0.9198476,Methane,TON
+37125,3.055638,PM10-Primary from certain diesel engines,TON
+37125,1.803766,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.3607673,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.2831958,Sulfate Portion of PM2.5-PRI,TON
+37125,0.02737004,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,3.81941,Ethyl Benzene,LB
+37121,4.990228,Propionaldehyde,LB
+37121,0.480406,Acenaphthylene,LB
+37121,0.05306212,Benzo[a]Pyrene,LB
+37121,0.0206542,Nickel,LB
+37121,0.04794365,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,2.249876e-05,Fluoranthene,LB
+37111,9.310918e-06,Benzo[k]Fluoranthene,LB
+37111,0.00750762,Carbon Monoxide,TON
+37111,2.576506e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37111,1.267172e-05,Anthracene,LB
+37111,4.375494e-05,"Benzo[g,h,i,]Perylene",LB
+37017,0.3443134,Anthracene,LB
+37017,0.9861252,Pyrene,LB
+37017,5.9871,Xylenes (Mixed Isomers),LB
+37017,0.002945642,Benzo[k]Fluoranthene,LB
+37017,0.5283772,Acenaphthylene,LB
+37017,0.13930472,Chrysene,LB
+37017,0.011544832,Nickel,LB
+37017,0.03028716,Methane,TON
+37017,0.004903868,Sulfate Portion of PM2.5-PRI,TON
+37019,0.004164556,Manganese,LB
+37019,0.007170286,Acenaphthene,LB
+37019,0.3724626,Naphthalene,LB
+37019,3.79475,Carbon Monoxide,TON
+37019,0.01112963,Ammonia,TON
+37019,0.002225698,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.1354322,Volatile Organic Compounds,TON
+37019,0.13334498,Propionaldehyde,LB
+37019,16.620588,Xylenes (Mixed Isomers),LB
+37019,0.002578112,Benzo[k]Fluoranthene,LB
+37017,12.405596,Hexane,LB
+37017,0.002590091,Nitrous Oxide,TON
+37017,0.3178228,Nitrogen Oxides,TON
+37017,0.2172056,Volatile Organic Compounds,TON
+37013,0.008227059,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.01465469,Sulfur Dioxide,TON
+37013,1.5907792,Styrene,LB
+37013,292.3798,Toluene,LB
+37013,0.0004670292,"Dibenzo[a,h]Anthracene",LB
+37013,0.06186525,Methane,TON
+37115,0.0015160898,Benzo[k]Fluoranthene,LB
+37115,0.4199066,"1,3-Butadiene",LB
+37115,13.543366,Toluene,LB
+37115,0.00493843,Styrene,LB
+37115,0.004085612,Propionaldehyde,LB
+37115,0.00015741188,Benzo[a]Pyrene,LB
+37115,9.087454e-05,Benz[a]Anthracene,LB
+37115,0.0001123985,Nitrous Oxide,TON
+37101,8.179945e-05,Sulfate Portion of PM2.5-PRI,TON
+37101,0.02391586,"1,3-Butadiene",LB
+37101,0.226745,Benzene,LB
+37101,2.587498e-05,Mercury,LB
+37101,0.0002402402,Acenaphthene,LB
+37101,0.0005333948,Fluorene,LB
+37101,8.686942,Anthracene,LB
+37101,717.7092,Xylenes (Mixed Isomers),LB
+37101,0.0517659,Benzo[k]Fluoranthene,LB
+37101,15.313472,Acenaphthylene,LB
+37101,0.0016244372,Mercury,LB
+37101,11.69415,PM10-Primary from certain diesel engines,TON
+37101,6.988386,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.1167278,Nitrous Oxide,TON
+37101,21.97266,Volatile Organic Compounds,TON
+37101,0.02470692,Nickel,LB
+37101,1.6738798,Phenanthrene,LB
+37101,5.449618,Ethyl Benzene,LB
+37101,4.137632,Hexane,LB
+37101,8.571826,Propionaldehyde,LB
+37101,1.1925316,Pyrene,LB
+37101,0.12938874,Chrysene,LB
+37087,52092.61,Carbon Dioxide,TON
+37087,5.30359,PM2.5 Primary (Filt + Cond),TON
+37087,0.0008201044,Nickel,LB
+37087,0.005511378,Sulfur Dioxide,TON
+37081,3.147772,Propionaldehyde,LB
+37081,0.0016605004,"Dibenzo[a,h]Anthracene",LB
+37081,0.006030928,Nickel,LB
+37081,6.340416,Naphthalene,LB
+37081,0.008270086,Ammonia,TON
+37081,0.05659264,Organic Carbon portion of PM2.5-PRI,TON
+37081,50.25256,Styrene,LB
+37081,1.9627526,Anthracene,LB
+37081,8217.516,Xylenes (Mixed Isomers),LB
+37081,0.9981546,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,494.7652,Acetaldehyde,LB
+37081,4.635914,Fluorene,LB
+37081,0.1255134,Nitrous Oxide,TON
+37077,2094.03,Acetaldehyde,LB
+37077,0.01143118,Nitrate portion of PM2.5-PRI,TON
+37077,5.060242,Anthracene,LB
+37077,3.734188,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,22.84036,Acrolein,LB
+37065,0.31383,Chrysene,LB
+37065,0.03383456,Arsenic,LB
+37065,0.2257435,Methane,TON
+37051,24.19316,Acrolein,LB
+37051,0.9509442,Anthracene,LB
+37051,20.21458,Xylenes (Mixed Isomers),LB
+37051,0.004764834,"Dibenzo[a,h]Anthracene",LB
+37051,0.1264978,Manganese,LB
+37051,3968.19,Carbon Dioxide,TON
+37051,0.4934794,Ethyl Benzene,LB
+37051,0.00018682594,Benzo[k]Fluoranthene,LB
+37051,0.5774138,"2,2,4-Trimethylpentane",LB
+37051,0.9011894,Benzene,LB
+37051,0.01841292,Nitrogen Oxides,TON
+37049,0.4714048,Ethyl Benzene,LB
+37049,0.9412398,Toluene,LB
+37049,0.10684558,Fluoranthene,LB
+37049,0.009863592,Benzo[a]Pyrene,LB
+37049,0.0004861918,Arsenic,LB
+37049,0.17127622,Phenanthrene,LB
+37049,116.2226,Carbon Dioxide,TON
+37049,0.01226623,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.07606399,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.1891982,PM2.5 Primary (Filt + Cond),TON
+37045,3.354098,Propionaldehyde,LB
+37045,0.10113684,Chrysene,LB
+37045,6.173728,Benzene,LB
+37045,0.02375066,Manganese,LB
+37045,2.426404e-05,Mercury,LB
+37045,0.2029682,Acenaphthene,LB
+37045,0.8236288,Phenanthrene,LB
+37045,7.231464,Naphthalene,LB
+37045,0.1786282,PM25-Primary from certain diesel engines,TON
+37047,0.006299496,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.000444565,Sulfate Portion of PM2.5-PRI,TON
+37041,0.00018873448,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.0009682718,Acenaphthylene,LB
+37041,4.332062e-06,"Dibenzo[a,h]Anthracene",LB
+37041,3.145351e-05,Ammonia,TON
+37041,0.0002354065,PM10 Primary (Filt + Cond),TON
+37031,0.1208291,PM10 Primary (Filt + Cond),TON
+37031,0.02147766,Sulfur Dioxide,TON
+37031,0.0007362403,Sulfate Portion of PM2.5-PRI,TON
+37031,48.27704,Ethyl Benzene,LB
+37031,0.06313098,Anthracene,LB
+37031,1.4111914,Propionaldehyde,LB
+37031,2.358594e-05,Chromium (VI),LB
+37031,0.002948228,Nickel,LB
+37029,0.000599757,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.01736594,Chrysene,LB
+37029,0.0003229572,"Dibenzo[a,h]Anthracene",LB
+37029,0.003088794,Nickel,LB
+37029,0.2223196,Phenanthrene,LB
+37029,0.01149818,Organic Carbon portion of PM2.5-PRI,TON
+37019,2.794616e-05,Mercury,LB
+37019,0.001273932,Acenaphthene,LB
+37019,0.00606496,Phenanthrene,LB
+37019,2.180852,Methane,TON
+37019,0.05184453,PM10 Primary (Filt + Cond),TON
+37019,0.3339616,Volatile Organic Compounds,TON
+37019,4.878252e-08,Chromium (VI),LB
+37007,0.03441192,Chrysene,LB
+37007,0.0007435762,"Dibenzo[a,h]Anthracene",LB
+37007,6.74173e-06,Mercury,LB
+37007,0.01083832,Methane,TON
+37007,0.02125965,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.02571982,Organic Carbon portion of PM2.5-PRI,TON
+37009,6.580358,Benzene,LB
+37009,0.8024678,Volatile Organic Compounds,TON
+37003,220.806,Ethyl Benzene,LB
+37003,0.7157406,Acenaphthylene,LB
+37003,0.008202691,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.05507934,PM2.5 Primary (Filt + Cond),TON
+37065,2.814104,Formaldehyde,LB
+37065,0.004757692,Benzo[a]Pyrene,LB
+37065,0.0002400344,Nickel,LB
+37065,0.0008557893,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.002648998,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.014801994,Pyrene,LB
+37065,0.039874,Acenaphthylene,LB
+37061,0.2957132,Propionaldehyde,LB
+37061,5.623516,Formaldehyde,LB
+37061,0.0009756682,Nickel,LB
+37061,0.001496005,Arsenic,LB
+37061,5.768204,Acetaldehyde,LB
+37061,0.8311544,Nitrogen Oxides,TON
+37061,0.2696515,Volatile Organic Compounds,TON
+37057,0.00010505486,Mercury,LB
+37057,7.743084,Acetaldehyde,LB
+37055,29.69568,Xylenes (Mixed Isomers),LB
+37055,0.016939856,"Benzo[g,h,i,]Perylene",LB
+37055,0.9122062,Benz[a]Anthracene,LB
+37055,4447.732,Carbon Dioxide,TON
+37055,14.7557,Nitrogen Oxides,TON
+37055,1.498997,PM10 Primary (Filt + Cond),TON
+37051,3.280578,Acrolein,LB
+37051,252.2638,Xylenes (Mixed Isomers),LB
+37051,0.0621881,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,53.5533,Formaldehyde,LB
+37051,0.0622703,Benzo[a]Pyrene,LB
+37051,0.11742396,Manganese,LB
+37051,0.04369829,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.07702271,Sulfur Dioxide,TON
+37047,0.03230185,Methane,TON
+37047,0.009187448,PM25-Primary from certain diesel engines,TON
+37047,0.005111017,Organic Carbon portion of PM2.5-PRI,TON
+37047,3.64388,Toluene,LB
+37047,19.89728,Acetaldehyde,LB
+37047,0.3821318,Phenanthrene,LB
+37047,1.5492428,Ethyl Benzene,LB
+37047,0.392258,"Benzo[g,h,i,]Perylene",LB
+37047,0.14737476,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.10517304,Benzo[b]Fluoranthene,LB
+37047,0.1574347,Methane,TON
+37033,3.734688,Xylenes (Mixed Isomers),LB
+37033,7.852788e-08,Chromium (VI),LB
+37033,0.0007466032,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.00707891,Acenaphthylene,LB
+37033,1.7150826e-05,"Dibenzo[a,h]Anthracene",LB
+37033,9.814964e-06,Nickel,LB
+37033,1.47036e-05,Sulfate Portion of PM2.5-PRI,TON
+37031,0.5903925,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.008454732,Nitrate portion of PM2.5-PRI,TON
+37069,0.0008584722,Anthracene,LB
+37069,0.0017913064,Pyrene,LB
+37069,9.886918e-06,Chromium (VI),LB
+37069,0.0015814944,Fluoranthene,LB
+37047,2.48856,Formaldehyde,LB
+37047,4.713978,Benzene,LB
+37171,22.44614,Toluene,LB
+37171,9.536736,Xylenes (Mixed Isomers),LB
+37105,0.0005233759,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.0004945403,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.000347815,Benz[a]Anthracene,LB
+37105,0.0011572826,Manganese,LB
+37105,0.0007355638,Anthracene,LB
+37105,1.1222172e-05,Chromium (VI),LB
+37105,0.002039124,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.0007937134,Chrysene,LB
+37105,0.00011250192,Mercury,LB
+37105,0.0005397213,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.009616858,Ammonia,TON
+37197,0.5853124,Acenaphthene,LB
+37197,0.3872793,Methane,TON
+37197,7195.583,Carbon Dioxide,TON
+37197,0.1274445,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.006512458,Sulfate Portion of PM2.5-PRI,TON
+37197,11.1542,Acrolein,LB
+37197,11.710922,Propionaldehyde,LB
+37197,2.666238,Acenaphthylene,LB
+37191,3.075968e-05,Benzo[b]Fluoranthene,LB
+37191,1.680876e-05,Nitrous Oxide,TON
+37191,0.002918805,Nitrogen Oxides,TON
+37191,480.6128,Styrene,LB
+37191,69618.34,Toluene,LB
+37191,92.23492,Acenaphthylene,LB
+37191,0.15746656,"Dibenzo[a,h]Anthracene",LB
+37191,5.436792,Benz[a]Anthracene,LB
+37191,1051.8166,Naphthalene,LB
+37191,3.976195,Organic Carbon portion of PM2.5-PRI,TON
+37189,2.319826e-05,Chromium (VI),LB
+37189,0.6411464,Fluoranthene,LB
+37189,0.05932703,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.03026613,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,1.2535024e-05,Arsenic,LB
+37189,0.00399405,Phenanthrene,LB
+37189,0.0001554353,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,9.172913e-05,Sulfur Dioxide,TON
+37189,0.0003994216,Benzo[k]Fluoranthene,LB
+37181,3.166698,Ethyl Benzene,LB
+37181,0.5606934,Acrolein,LB
+37181,0.00529586,Benzo[k]Fluoranthene,LB
+37181,5.587942,"2,2,4-Trimethylpentane",LB
+37181,0.005580394,Acenaphthene,LB
+37181,0.01332487,PM2.5 Primary (Filt + Cond),TON
+37081,0.03754352,Acenaphthene,LB
+37081,5.085532,Nitrogen Oxides,TON
+37141,0.2647154,Styrene,LB
+37141,18.778412,Xylenes (Mixed Isomers),LB
+37141,0.009969972,Benzo[b]Fluoranthene,LB
+37141,0.01864572,Benzo[a]Pyrene,LB
+37141,0.018537148,Fluorene,LB
+37199,0.000674942,Benzo[k]Fluoranthene,LB
+37199,0.000935565,Benzo[a]Pyrene,LB
+37199,0.0006732624,Benz[a]Anthracene,LB
+37199,1.024426,Carbon Monoxide,TON
+37197,5.512774,"1,3-Butadiene",LB
+37197,4.187532e-05,Mercury,LB
+37197,1.5017448,Phenanthrene,LB
+37197,1126.297,Carbon Dioxide,TON
+37197,0.1635267,PM25-Primary from certain diesel engines,TON
+37197,0.0002890627,Nitrate portion of PM2.5-PRI,TON
+37185,5.689908,Toluene,LB
+37187,1.3006638e-05,Manganese,LB
+37187,7.463719e-05,PM2.5 Primary (Filt + Cond),TON
+37183,0.09307472,"Benzo[g,h,i,]Perylene",LB
+37183,0.03449056,Benzo[a]Pyrene,LB
+37183,0.0008028304,"Dibenzo[a,h]Anthracene",LB
+37183,15.087114,"2,2,4-Trimethylpentane",LB
+37183,0.2366852,PM10 Primary (Filt + Cond),TON
+37181,0.004045156,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.002346798,Benzo[k]Fluoranthene,LB
+37181,0.0003495918,Nickel,LB
+37181,0.002290492,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.003440176,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,73.26944,Xylenes (Mixed Isomers),LB
+37179,5.16643e-06,Chromium (VI),LB
+37179,0.004960764,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,8.200902,Acetaldehyde,LB
+37179,0.05096496,Fluorene,LB
+37007,4.204612e-05,"Dibenzo[a,h]Anthracene",LB
+37007,0.0001435994,Nickel,LB
+37007,0.004621085,Methane,TON
+37007,0.2163883,Nitrogen Oxides,TON
+37007,0.002069472,Benzo[a]Pyrene,LB
+37007,0.001024445,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.002103205,PM2.5 Primary (Filt + Cond),TON
+37013,10805.18,Hexane,LB
+37013,0.006098746,Chromium (VI),LB
+37013,20.77946,Fluoranthene,LB
+37013,0.06113794,Mercury,LB
+37003,9.899128e-05,Chromium (VI),LB
+37003,0.9917188,Acenaphthylene,LB
+37003,0.02733558,Arsenic,LB
+37003,25.07934,Naphthalene,LB
+37003,0.2377957,Organic Carbon portion of PM2.5-PRI,TON
+37003,1.119221,PM2.5 Primary (Filt + Cond),TON
+37001,0.9727664,Hexane,LB
+37001,3.148916,Xylenes (Mixed Isomers),LB
+37001,0.0015948392,"Benzo[g,h,i,]Perylene",LB
+37001,0.18765856,Acenaphthylene,LB
+37001,0.0262576,Benzo[a]Pyrene,LB
+37001,0.02413122,Manganese,LB
+37001,1.4389576e-05,Mercury,LB
+37001,0.03986134,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.002969824,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.0011599914,Chrysene,LB
+37171,0.006635626,Phenanthrene,LB
+37171,0.01011739,Methane,TON
+37171,1.810432,Carbon Monoxide,TON
+37171,0.0007516971,Elemental Carbon portion of PM2.5-PRI,TON
+37171,1.079455e-05,Nitrate portion of PM2.5-PRI,TON
+37171,0.006484087,Sulfur Dioxide,TON
+37171,0.08791294,Volatile Organic Compounds,TON
+37145,0.000377435,Fluoranthene,LB
+37145,0.00016278606,Chrysene,LB
+37145,0.0004785152,Manganese,LB
+37145,0.00028774,Arsenic,LB
+37145,2.82623,Acetaldehyde,LB
+37145,0.0002273664,Acenaphthene,LB
+37145,0.2232331,Carbon Monoxide,TON
+37145,0.0005816665,PM2.5 Primary (Filt + Cond),TON
+37145,0.0002084635,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.0006724988,Pyrene,LB
+37141,0.002148266,"Benzo[g,h,i,]Perylene",LB
+37141,0.0004206268,Benzo[b]Fluoranthene,LB
+37141,0.0005947156,Fluoranthene,LB
+37141,0.0003369298,Acenaphthene,LB
+37141,0.0008441516,Nitrous Oxide,TON
+37141,0.001191353,PM2.5 Primary (Filt + Cond),TON
+37131,3.47485,Xylenes (Mixed Isomers),LB
+37099,2.952948,Ethyl Benzene,LB
+37099,11.424876,Toluene,LB
+37099,0.004833068,Anthracene,LB
+37099,0.005813636,Benzo[k]Fluoranthene,LB
+37099,14.420652,Benzene,LB
+37099,776.6936,Carbon Dioxide,TON
+37099,3.975974e-05,Nitrate portion of PM2.5-PRI,TON
+37101,25.3948,Xylenes (Mixed Isomers),LB
+37097,0.03810746,Arsenic,LB
+37097,0.01284702,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.03532508,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.0307666,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.1085563,Sulfur Dioxide,TON
+37097,0.00239123,Sulfate Portion of PM2.5-PRI,TON
+37097,0.019767422,Anthracene,LB
+37097,0.02830472,Benzo[b]Fluoranthene,LB
+37171,0.001523772,Arsenic,LB
+37171,3.893557e-05,Nitrate portion of PM2.5-PRI,TON
+37171,0.7438591,Nitrogen Oxides,TON
+37171,0.006085331,Sulfur Dioxide,TON
+37171,0.3209625,Volatile Organic Compounds,TON
+37169,24.69042,Ethyl Benzene,LB
+37169,0.591839,Acrolein,LB
+37169,1.3746456e-06,Chromium (VI),LB
+37169,34.37734,Benzene,LB
+37169,0.00319701,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.05260248,Benzo[a]Pyrene,LB
+37149,0.04322794,Acenaphthene,LB
+37149,21.54956,Carbon Monoxide,TON
+37149,0.0151971,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.7170566,Hexane,LB
+37141,1.2232572e-07,Chromium (VI),LB
+37141,0.003015172,"Benzo[g,h,i,]Perylene",LB
+37141,2.599362e-05,"Dibenzo[a,h]Anthracene",LB
+37141,0.293851,Acetaldehyde,LB
+37141,0.4960884,Carbon Monoxide,TON
+37141,0.001437214,PM10 Primary (Filt + Cond),TON
+37141,0.0002658715,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,3.11074,Acenaphthene,LB
+37137,2.139134,"Benzo[g,h,i,]Perylene",LB
+37133,124.80704,Toluene,LB
+37129,66.80888,Styrene,LB
+37129,2.436628,Anthracene,LB
+37129,0.7390736,Benzo[b]Fluoranthene,LB
+37129,0.02484684,Mercury,LB
+37129,0.3098076,Nickel,LB
+37129,148.28712,Naphthalene,LB
+37129,68.5688,Nitrogen Oxides,TON
+37121,95.97216,Toluene,LB
+37121,0.4529964,Propionaldehyde,LB
+37121,0.005827084,Benzo[b]Fluoranthene,LB
+37121,0.10327228,Acenaphthylene,LB
+37121,21.09502,"2,2,4-Trimethylpentane",LB
+37121,0.005980102,Benz[a]Anthracene,LB
+37121,23.50526,Benzene,LB
+37121,1.1777792,Naphthalene,LB
+37121,0.002476078,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.003682585,Organic Carbon portion of PM2.5-PRI,TON
+37117,5.880852e-06,Mercury,LB
+37117,0.003291048,Nickel,LB
+37117,4.920092,Acetaldehyde,LB
+37117,94.50593,Carbon Dioxide,TON
+37117,0.000950387,Benzo[k]Fluoranthene,LB
+37117,1.041765,Formaldehyde,LB
+37117,0.1669234,Naphthalene,LB
+37117,1.809721,Carbon Monoxide,TON
+37117,4.978496e-06,Nitrate portion of PM2.5-PRI,TON
+37117,5426.75,Hexane,LB
+37117,6.415298,Anthracene,LB
+37117,5.995962,"Benzo[g,h,i,]Perylene",LB
+37117,10.906526,Fluoranthene,LB
+37117,1.8889596,Chrysene,LB
+37117,2.271484,Benzo[a]Pyrene,LB
+37117,7337.526,Benzene,LB
+37117,390.9956,Naphthalene,LB
+37117,4.075311,Methane,TON
+37117,79722.67,Carbon Dioxide,TON
+37117,0.006859745,Nitrate portion of PM2.5-PRI,TON
+37117,0.7087392,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,125.2232,Volatile Organic Compounds,TON
+37101,248.1436,Toluene,LB
+37101,10.671838,Anthracene,LB
+37101,0.05098724,"Benzo[g,h,i,]Perylene",LB
+37101,0.0227026,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,21.92496,Acenaphthylene,LB
+37101,0.2986638,Benzo[a]Pyrene,LB
+37101,2.685334,Benz[a]Anthracene,LB
+37101,4.39271,PM10 Primary (Filt + Cond),TON
+37091,0.006049421,Nitrous Oxide,TON
+37091,0.8962756,PM10 Primary (Filt + Cond),TON
+37091,0.003686118,Benzo[k]Fluoranthene,LB
+37103,0.9483728,Ethyl Benzene,LB
+37103,1.2708422e-06,Chromium (VI),LB
+37103,0.003083524,"Benzo[g,h,i,]Perylene",LB
+37103,0.002267394,Fluoranthene,LB
+37103,0.0011505952,Benzo[a]Pyrene,LB
+37103,0.000243568,Arsenic,LB
+37103,0.0002148312,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.001992588,Ammonia,TON
+37103,0.001385756,PM2.5 Primary (Filt + Cond),TON
+37095,0.0001290567,Nitrous Oxide,TON
+37095,0.000912917,Benzo[b]Fluoranthene,LB
+37095,0.019862642,Acenaphthylene,LB
+37095,0.000249435,Arsenic,LB
+37095,0.02671648,Fluorene,LB
+37095,0.0107772,PM10-Primary from certain diesel engines,TON
+37093,23.85912,Ethyl Benzene,LB
+37093,3.217074,Fluoranthene,LB
+37093,4.084248,Acenaphthylene,LB
+37093,0.7547896,PM10 Primary (Filt + Cond),TON
+37093,0.01927101,Sulfate Portion of PM2.5-PRI,TON
+37093,4.234004,Volatile Organic Compounds,TON
+37089,28.79618,Xylenes (Mixed Isomers),LB
+37089,379.776,Formaldehyde,LB
+37089,9.830388,"2,2,4-Trimethylpentane",LB
+37089,0.3069204,Benz[a]Anthracene,LB
+37089,1.1518592,Acenaphthene,LB
+37089,0.08218851,Organic Carbon portion of PM2.5-PRI,TON
+37083,2.004858,Acrolein,LB
+37083,0.1791391,Fluoranthene,LB
+37083,0.0006545566,"Dibenzo[a,h]Anthracene",LB
+37083,0.17239938,Fluorene,LB
+37083,0.8288068,Carbon Monoxide,TON
+37083,0.1377614,PM10-Primary from certain diesel engines,TON
+37083,0.005343178,Sulfate Portion of PM2.5-PRI,TON
+37083,2.752514,Toluene,LB
+37083,0.0006121502,Benzo[b]Fluoranthene,LB
+37083,1.8573214e-05,Mercury,LB
+37083,303.8907,Carbon Dioxide,TON
+37083,0.006791459,PM25-Primary from certain diesel engines,TON
+37083,0.0003647123,Nitrous Oxide,TON
+37077,8.736636,Ethyl Benzene,LB
+37077,0.008934954,Benzo[a]Pyrene,LB
+37077,6.506016e-05,Mercury,LB
+37077,0.0008112188,Nickel,LB
+37077,5.165904,Acetaldehyde,LB
+37077,0.006679984,Sulfur Dioxide,TON
+37053,3.564798e-06,Chromium (VI),LB
+37053,0.001761569,Nickel,LB
+37053,4.27151,Acetaldehyde,LB
+37053,0.0664631,Fluorene,LB
+37197,2.329026,Acetaldehyde,LB
+37197,0.002024685,Methane,TON
+37197,0.0002997659,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.02072494,Acrolein,LB
+37197,0.00019049356,Anthracene,LB
+37197,0.0003576652,Fluoranthene,LB
+37197,0.0002201162,Benz[a]Anthracene,LB
+37193,22.57268,Styrene,LB
+37193,0.8515442,"Benzo[g,h,i,]Perylene",LB
+37193,0.3199322,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,1.3808578,Fluoranthene,LB
+37193,0.5730852,Methane,TON
+37191,0.0008582302,Benzo[k]Fluoranthene,LB
+37191,0.0007128212,Acenaphthene,LB
+37191,0.0014438636,Fluorene,LB
+37191,0.002093005,Nitrous Oxide,TON
+37191,0.05077584,Volatile Organic Compounds,TON
+37187,5500.646,Toluene,LB
+37187,0.4093352,Chrysene,LB
+37187,0.310478,Manganese,LB
+37187,0.6672689,Methane,TON
+37187,318.2314,Carbon Monoxide,TON
+37179,8.6236,Ethyl Benzene,LB
+37179,8.163,"1,3-Butadiene",LB
+37179,13.483252,Propionaldehyde,LB
+37179,1.3901038,Acenaphthylene,LB
+37179,0.1447206,Manganese,LB
+37179,9.990492,Carbon Monoxide,TON
+37179,0.5726597,PM10-Primary from certain diesel engines,TON
+37179,0.009486418,Nitrous Oxide,TON
+37179,17.1519,Nitrogen Oxides,TON
+37171,0.2022006,Nickel,LB
+37171,4.201932,Acenaphthene,LB
+37171,18.636454,Phenanthrene,LB
+37171,3.161463,Elemental Carbon portion of PM2.5-PRI,TON
+37171,3.02038e-05,Mercury,LB
+37171,72.76274,Acetaldehyde,LB
+37171,0.5388684,Acenaphthene,LB
+37171,0.07390144,Methane,TON
+37171,0.03931052,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,1.1488944,Pyrene,LB
+37171,0.004007028,"Benzo[g,h,i,]Perylene",LB
+37171,0.015275318,Benzo[b]Fluoranthene,LB
+37149,5.40876,Acrolein,LB
+37149,0.247337,Anthracene,LB
+37149,606.2954,Xylenes (Mixed Isomers),LB
+37149,0.0002425178,Chromium (VI),LB
+37149,0.1305214,Benzo[a]Pyrene,LB
+37149,284.9624,Benzene,LB
+37149,9.976483,Nitrogen Oxides,TON
+37149,0.07268138,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.08942167,Sulfur Dioxide,TON
+37149,4.687086,Volatile Organic Compounds,TON
+37149,3400.204,Xylenes (Mixed Isomers),LB
+37137,0.299266,Fluorene,LB
+37137,1712.189,Carbon Dioxide,TON
+37137,86.70194,Ethyl Benzene,LB
+37135,0.3271222,Acrolein,LB
+37135,11.265042,Hexane,LB
+37135,377.0667,Carbon Dioxide,TON
+37135,0.01383374,PM2.5 Primary (Filt + Cond),TON
+37135,0.0004349595,Sulfate Portion of PM2.5-PRI,TON
+37133,0.1201743,Sulfate Portion of PM2.5-PRI,TON
+37133,21.65222,Hexane,LB
+37133,38.70332,Propionaldehyde,LB
+37133,77.7481,Xylenes (Mixed Isomers),LB
+37133,5.519372,Fluoranthene,LB
+37133,0.0225711,Benzo[k]Fluoranthene,LB
+37133,3.819738,Acenaphthylene,LB
+37133,863.6558,Formaldehyde,LB
+37129,0.8850448,Fluoranthene,LB
+37129,1.879764,Nitrogen Oxides,TON
+37129,25.39198,Benzene,LB
+37129,0.09306954,Manganese,LB
+37129,0.00012017572,Chromium (VI),LB
+37129,0.01117606,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.1134284,PM2.5 Primary (Filt + Cond),TON
+37125,0.1439188,Volatile Organic Compounds,TON
+37125,0.0007280382,"Dibenzo[a,h]Anthracene",LB
+37125,0.7453822,"2,2,4-Trimethylpentane",LB
+37125,2.877138,Naphthalene,LB
+37125,709.8472,Carbon Dioxide,TON
+37125,0.06494514,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.07443832,Fluorene,LB
+37123,1.2057384,Naphthalene,LB
+37123,0.005292025,Methane,TON
+37123,0.01043003,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.002222981,Sulfate Portion of PM2.5-PRI,TON
+37121,0.2553978,Benz[a]Anthracene,LB
+37121,52.03544,Acetaldehyde,LB
+37121,0.7828874,Fluorene,LB
+37121,2.852886,Carbon Monoxide,TON
+37121,0.03074909,Ammonia,TON
+37121,3.005126e-05,Chromium (VI),LB
+37121,0.003130036,Benzo[k]Fluoranthene,LB
+37111,53.04822,Hexane,LB
+37123,6.23935,Naphthalene,LB
+37123,0.007576419,Methane,TON
+37123,0.007795369,Ammonia,TON
+37123,0.0003664408,Nitrate portion of PM2.5-PRI,TON
+37123,0.01282976,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,1.955598,"1,3-Butadiene",LB
+37123,3.007312,Xylenes (Mixed Isomers),LB
+37119,0.05394384,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.04483948,Ammonia,TON
+37119,0.03144511,Organic Carbon portion of PM2.5-PRI,TON
+37119,98.41282,Hexane,LB
+37117,1562.049,"2,2,4-Trimethylpentane",LB
+37113,0.03379722,Sulfate Portion of PM2.5-PRI,TON
+37113,0.4509286,Chrysene,LB
+37113,150.36566,Naphthalene,LB
+37113,1.114162,PM10-Primary from certain diesel engines,TON
+37113,0.2369304,Ammonia,TON
+37113,0.002302731,Nitrate portion of PM2.5-PRI,TON
+37105,0.9041494,"1,3-Butadiene",LB
+37105,2.593984,Toluene,LB
+37105,0.006792724,Benzo[b]Fluoranthene,LB
+37105,0.0003979429,Nitrate portion of PM2.5-PRI,TON
+37105,0.08498698,PM2.5 Primary (Filt + Cond),TON
+37105,0.0734834,Benz[a]Anthracene,LB
+37091,1.1732826,Hexane,LB
+37091,0.15675532,Anthracene,LB
+37091,420.0106,Carbon Dioxide,TON
+37091,0.1126129,PM10-Primary from certain diesel engines,TON
+37093,164.88346,Acrolein,LB
+37093,173.42522,Propionaldehyde,LB
+37093,2.11975,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,8519.156,Benzene,LB
+37093,0.855284,Arsenic,LB
+37093,445.5786,Naphthalene,LB
+37093,0.04868198,"Dibenzo[a,h]Anthracene",LB
+37079,36.54336,Acrolein,LB
+37079,25.018,Propionaldehyde,LB
+37079,0.002441472,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,199.41878,Acetaldehyde,LB
+37079,28.51003,Carbon Monoxide,TON
+37079,0.02528676,Sulfur Dioxide,TON
+37079,0.01244844,Sulfate Portion of PM2.5-PRI,TON
+37073,1.100429e-08,Chromium (VI),LB
+37073,7.749538e-05,Acenaphthene,LB
+37073,0.14666,Nitrogen Oxides,TON
+37073,0.0007387231,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.012120798,Ethyl Benzene,LB
+37073,1220.3686,Acetaldehyde,LB
+37073,3.621974,Acenaphthene,LB
+37073,0.00305617,Nitrate portion of PM2.5-PRI,TON
+37073,1.0133956,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,5.234204,Fluoranthene,LB
+37073,16.4814,Acenaphthylene,LB
+37073,0.8884846,Benz[a]Anthracene,LB
+37067,0.02284803,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.423644,Fluoranthene,LB
+37067,0.0053716,Nickel,LB
+37067,5.946082,Naphthalene,LB
+37067,0.00257698,Nickel,LB
+37067,0.09215746,Acenaphthylene,LB
+37065,111.76608,Acetaldehyde,LB
+37065,0.06162504,Ammonia,TON
+37065,20.43064,Acrolein,LB
+37065,0.06515068,Benzo[b]Fluoranthene,LB
+37065,0.7063686,Benz[a]Anthracene,LB
+37059,135.3185,Nitrogen Oxides,TON
+37059,4.46516,Anthracene,LB
+37059,0.0570714,Mercury,LB
+37059,5.184628,Acenaphthene,LB
+37059,269.297,Naphthalene,LB
+37043,5.722192e-05,"Benzo[g,h,i,]Perylene",LB
+37043,3.447492,Nitrogen Oxides,TON
+37043,0.2082287,PM2.5 Primary (Filt + Cond),TON
+37043,0.007716307,Sulfur Dioxide,TON
+37043,0.6211976,Fluoranthene,LB
+37043,0.2667606,Acenaphthene,LB
+37043,899.6397,Carbon Dioxide,TON
+37037,0.11730044,Benzo[b]Fluoranthene,LB
+37037,2.89786,Acenaphthylene,LB
+37037,1.8812376,Anthracene,LB
+37037,255.7706,Acetaldehyde,LB
+37037,0.5806635,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.2594715,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,38.97564,"1,3-Butadiene",LB
+37035,74.0492,Xylenes (Mixed Isomers),LB
+37027,0.7709506,Fluorene,LB
+37027,0.04356639,Methane,TON
+37027,0.42125,PM10 Primary (Filt + Cond),TON
+37027,0.2614319,PM2.5 Primary (Filt + Cond),TON
+37027,0.04607812,Manganese,LB
+37027,0.004415306,Arsenic,LB
+37027,2.432062e-05,Chromium (VI),LB
+37027,0.14724726,Benzo[b]Fluoranthene,LB
+37027,536.6014,Formaldehyde,LB
+37027,1.5750144,Benz[a]Anthracene,LB
+37027,0.1689695,Methane,TON
+37027,2.585025,PM10-Primary from certain diesel engines,TON
+37027,0.1129744,Ammonia,TON
+37027,0.06857508,Sulfur Dioxide,TON
+37027,3.164333,Volatile Organic Compounds,TON
+37023,0.02772898,"Benzo[g,h,i,]Perylene",LB
+37023,52.56201,Nitrogen Oxides,TON
+37023,2.575584,PM2.5 Primary (Filt + Cond),TON
+37159,1.728619,Volatile Organic Compounds,TON
+37159,1.2320294,Fluoranthene,LB
+37159,308.7838,Formaldehyde,LB
+37159,0.184327,Benz[a]Anthracene,LB
+37159,28.48368,Benzene,LB
+37149,2.872874,Ethyl Benzene,LB
+37149,0.2309966,Anthracene,LB
+37149,0.0002797934,"Dibenzo[a,h]Anthracene",LB
+37149,37.55196,Acetaldehyde,LB
+37149,6.047061,Carbon Monoxide,TON
+37149,0.01101806,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.4987836,Volatile Organic Compounds,TON
+37153,197.68768,Formaldehyde,LB
+37153,215.472,Acetaldehyde,LB
+37153,0.6362852,Acenaphthene,LB
+37153,0.2526899,PM2.5 Primary (Filt + Cond),TON
+37153,0.006604979,Sulfate Portion of PM2.5-PRI,TON
+37147,2.169796,Acenaphthene,LB
+37147,0.008049899,Nitrate portion of PM2.5-PRI,TON
+37147,3.315302,PM2.5 Primary (Filt + Cond),TON
+37147,59.21808,Acrolein,LB
+37147,4.909292,Fluoranthene,LB
+37147,0.4530402,Benzo[a]Pyrene,LB
+37147,1.5093156,Benz[a]Anthracene,LB
+37147,0.447938,Manganese,LB
+37147,0.6296394,Ethyl Benzene,LB
+37147,1.0154472,Propionaldehyde,LB
+37147,0.0010171294,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.14376884,Fluoranthene,LB
+37147,0.0005459992,"Dibenzo[a,h]Anthracene",LB
+37147,1.7911446,Benzene,LB
+37147,0.0006101952,Arsenic,LB
+37147,0.006525548,Methane,TON
+37147,0.04177303,PM25-Primary from certain diesel engines,TON
+37147,0.01531465,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.007956881,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.001248237,Sulfate Portion of PM2.5-PRI,TON
+37147,0.1104832,Volatile Organic Compounds,TON
+37015,0.10199136,Hexane,LB
+37015,3.42364e-08,Chromium (VI),LB
+37015,0.00018091642,Fluoranthene,LB
+37015,3.980202e-05,Chrysene,LB
+37015,4.173808e-05,Benz[a]Anthracene,LB
+37015,4.27937e-06,Nickel,LB
+37015,0.0373215,Acetaldehyde,LB
+37015,0.05223404,Carbon Monoxide,TON
+37199,3.945394e-06,Mercury,LB
+37199,1.4316654,Naphthalene,LB
+37199,0.0073828,Methane,TON
+37199,0.03271236,PM25-Primary from certain diesel engines,TON
+37199,0.0001768139,Nitrate portion of PM2.5-PRI,TON
+37199,0.03423639,PM2.5 Primary (Filt + Cond),TON
+37199,0.001118989,Sulfur Dioxide,TON
+37199,1.0217198,Acrolein,LB
+37199,0.9836966,Toluene,LB
+37191,0.4314105,Sulfur Dioxide,TON
+37191,0.01579411,Sulfate Portion of PM2.5-PRI,TON
+37191,27.1247,Acrolein,LB
+37191,26.84556,Propionaldehyde,LB
+37191,2.2691,Pyrene,LB
+37187,0.0598747,"1,3-Butadiene",LB
+37187,0.04583462,Acrolein,LB
+37187,0.002226618,"Benzo[g,h,i,]Perylene",LB
+37187,0.0004432432,Benzo[b]Fluoranthene,LB
+37187,0.63031,Carbon Monoxide,TON
+37187,1.5177018,Styrene,LB
+37187,3.011378,Hexane,LB
+37187,0.004854944,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,3.14957,"2,2,4-Trimethylpentane",LB
+37195,2309.92,Formaldehyde,LB
+37195,71.57486,Ethyl Benzene,LB
+37195,142.41398,Acrolein,LB
+37195,863.3604,Acetaldehyde,LB
+37195,211.4098,Naphthalene,LB
+37195,3.26023,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.002148814,"1,3-Butadiene",LB
+37187,1.9778642e-05,"Benzo[g,h,i,]Perylene",LB
+37187,3.073658e-05,Fluorene,LB
+37187,0.012686908,"2,2,4-Trimethylpentane",LB
+37183,5834.306,Carbon Dioxide,TON
+37183,0.153945,Ammonia,TON
+37183,0.253206,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.6767303,PM2.5 Primary (Filt + Cond),TON
+37181,0.003774442,Benzo[b]Fluoranthene,LB
+37181,0.0434395,Chrysene,LB
+37181,0.012652226,Benzo[a]Pyrene,LB
+37181,8.293354,Toluene,LB
+37181,3.046566,Hexane,LB
+37181,0.6550966,Pyrene,LB
+37181,0.015201778,Manganese,LB
+37181,0.1590668,PM10 Primary (Filt + Cond),TON
+37179,0.005532572,Manganese,LB
+37179,0.119733,Nitrogen Oxides,TON
+37179,0.002036213,Organic Carbon portion of PM2.5-PRI,TON
+37179,1.3281672,Hexane,LB
+37179,0.002919892,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,14.767428,Styrene,LB
+37181,0.0003858346,Chromium (VI),LB
+37181,0.1699038,Benz[a]Anthracene,LB
+37181,616.4234,Benzene,LB
+37181,0.3134686,Nitrous Oxide,TON
+37181,0.000669468,Nitrate portion of PM2.5-PRI,TON
+37179,1931.4078,Hexane,LB
+37179,47.70452,Acrolein,LB
+37179,825.8492,Acetaldehyde,LB
+37179,4.75896,Fluorene,LB
+37179,59.72978,Nitrogen Oxides,TON
+37179,1.199325,PM2.5 Primary (Filt + Cond),TON
+37177,0.0004513555,Nitrous Oxide,TON
+37177,0.01484821,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.05208026,Anthracene,LB
+37177,0.00316412,Benzo[b]Fluoranthene,LB
+37177,0.11180014,Fluoranthene,LB
+37177,14.418262,Formaldehyde,LB
+37043,2.144424,"1,3-Butadiene",LB
+37043,3.793768,Xylenes (Mixed Isomers),LB
+37043,1.5288676,"2,2,4-Trimethylpentane",LB
+37043,6.053098,Benzene,LB
+37043,0.4739312,Fluorene,LB
+37043,0.3152368,PM10-Primary from certain diesel engines,TON
+37043,0.001254618,Nitrous Oxide,TON
+37043,0.2982419,PM2.5 Primary (Filt + Cond),TON
+37043,0.3774046,Volatile Organic Compounds,TON
+37043,2.197616,Ethyl Benzene,LB
+37043,0.0849118,Styrene,LB
+37043,2.836226,"2,2,4-Trimethylpentane",LB
+37043,3.204154,Benzene,LB
+37043,0.018958284,Phenanthrene,LB
+37037,0.02477342,Anthracene,LB
+37037,54.12652,Xylenes (Mixed Isomers),LB
+37037,14.758774,Ethyl Benzene,LB
+37037,3.072078,"1,3-Butadiene",LB
+37037,15.003742,"2,2,4-Trimethylpentane",LB
+37037,0.002378076,Arsenic,LB
+37037,9.084672,Acetaldehyde,LB
+37037,0.01438458,Nitrous Oxide,TON
+37037,0.06952393,PM10 Primary (Filt + Cond),TON
+37037,0.01965119,PM2.5 Primary (Filt + Cond),TON
+37037,0.007810148,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.4360213,Volatile Organic Compounds,TON
+37037,0.07754919,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.004222815,Sulfate Portion of PM2.5-PRI,TON
+37029,0.002423434,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.00951201,Benzo[b]Fluoranthene,LB
+37029,0.03187892,Benzo[a]Pyrene,LB
+37029,1.4882974,Acenaphthene,LB
+37025,0.0004004706,Mercury,LB
+37025,53.08068,Nitrogen Oxides,TON
+37025,99.8694,Acrolein,LB
+37025,11.703522,Pyrene,LB
+37069,0.0002199832,Mercury,LB
+37069,0.3194606,Methane,TON
+37069,1.151471,PM10-Primary from certain diesel engines,TON
+37069,46.54818,"1,3-Butadiene",LB
+37069,110.21314,Acrolein,LB
+37069,3.905674,Anthracene,LB
+37069,7.741572,Pyrene,LB
+37067,53.997,"1,3-Butadiene",LB
+37067,1.9690184,Chrysene,LB
+37067,11.53154,Fluorene,LB
+37067,213.7292,Naphthalene,LB
+37067,7.82802,PM25-Primary from certain diesel engines,TON
+37067,5.20061,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.001442994,Ammonia,TON
+37059,0.006117955,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.0006299398,Sulfur Dioxide,TON
+37059,0.0002740402,"Benzo[g,h,i,]Perylene",LB
+37065,756.0812,"1,3-Butadiene",LB
+37065,8.136498,"Benzo[g,h,i,]Perylene",LB
+37065,5103.422,"2,2,4-Trimethylpentane",LB
+37065,0.07352774,Mercury,LB
+37065,9.498583,Ammonia,TON
+37065,1.828483,Organic Carbon portion of PM2.5-PRI,TON
+37065,12.14349,PM10 Primary (Filt + Cond),TON
+37065,109.9527,Volatile Organic Compounds,TON
+37049,67.5504,Xylenes (Mixed Isomers),LB
+37049,0.2961756,Formaldehyde,LB
+37049,6.375278e-06,Nickel,LB
+37049,0.04744254,Naphthalene,LB
+37045,0.01859521,Anthracene,LB
+37045,0.006385928,Benzo[k]Fluoranthene,LB
+37045,7.145782,Formaldehyde,LB
+37045,25.5392,Benzene,LB
+37045,6.439192,Acetaldehyde,LB
+37045,376.6477,Carbon Dioxide,TON
+37045,0.009316749,Ammonia,TON
+37041,4.89805,Propionaldehyde,LB
+37041,0.06061452,Benzo[b]Fluoranthene,LB
+37041,173.31642,"2,2,4-Trimethylpentane",LB
+37041,0.06291306,Benz[a]Anthracene,LB
+37041,2616.415,Carbon Dioxide,TON
+37041,0.05488801,Sulfur Dioxide,TON
+37029,1.1315706,"Benzo[g,h,i,]Perylene",LB
+37029,0.4251474,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.292358,Benzo[b]Fluoranthene,LB
+37029,0.286828,Manganese,LB
+37029,17370.66,Carbon Dioxide,TON
+37029,1.481948,Ammonia,TON
+37029,23.75949,Nitrogen Oxides,TON
+37029,0.2496862,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.16310156,Benzo[b]Fluoranthene,LB
+37023,14.97784,Phenanthrene,LB
+37023,35.33762,Carbon Monoxide,TON
+37023,2.574728,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.6851831,Ammonia,TON
+37023,0.04220068,Arsenic,LB
+37023,271.6262,Acetaldehyde,LB
+37023,8840.507,Carbon Dioxide,TON
+37023,1.511754,PM25-Primary from certain diesel engines,TON
+37023,0.2045484,Ammonia,TON
+37023,28.15212,Nitrogen Oxides,TON
+37023,0.6197945,Organic Carbon portion of PM2.5-PRI,TON
+37023,1.611673,PM2.5 Primary (Filt + Cond),TON
+37023,0.0740115,Sulfate Portion of PM2.5-PRI,TON
+37023,3.458357,Volatile Organic Compounds,TON
+37023,0.03282144,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,1.4166304,Benz[a]Anthracene,LB
+37133,86.05484,"1,3-Butadiene",LB
+37133,213.7868,Acrolein,LB
+37133,14.469274,Pyrene,LB
+37133,195.10722,Xylenes (Mixed Isomers),LB
+37133,23.9246,Phenanthrene,LB
+37133,15.087226,Fluorene,LB
+37133,0.0007653694,Chromium (VI),LB
+37133,11.783618,Fluoranthene,LB
+37131,7.11141,"2,2,4-Trimethylpentane",LB
+37131,0.09518824,Manganese,LB
+37131,0.7951238,Acenaphthene,LB
+37131,1.6686118,Fluorene,LB
+37131,8.317398,Carbon Monoxide,TON
+37131,1.157654,PM25-Primary from certain diesel engines,TON
+37131,0.1395794,Ammonia,TON
+37131,20.48766,Toluene,LB
+37129,23.88908,"Benzo[g,h,i,]Perylene",LB
+37129,0.2060694,"Dibenzo[a,h]Anthracene",LB
+37129,12.602388,Manganese,LB
+37129,17.11159,Methane,TON
+37129,6327.05,Carbon Monoxide,TON
+37129,2.425937,Elemental Carbon portion of PM2.5-PRI,TON
+37129,5.927336,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,508.0006,Volatile Organic Compounds,TON
+37127,1.9058346,Naphthalene,LB
+37127,0.1010862,Volatile Organic Compounds,TON
+37113,2.377812,Ethyl Benzene,LB
+37113,0.06956942,Propionaldehyde,LB
+37113,8.79534,Xylenes (Mixed Isomers),LB
+37113,0.0011180514,Benzo[b]Fluoranthene,LB
+37113,0.002811508,Methane,TON
+37113,0.002981182,Ammonia,TON
+37113,0.0009005558,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.07027746,Volatile Organic Compounds,TON
+37113,907.8348,Ethyl Benzene,LB
+37113,26.37563,Volatile Organic Compounds,TON
+37107,23.34114,Acenaphthylene,LB
+37107,1.6940052,Chrysene,LB
+37107,0.07406822,Mercury,LB
+37107,0.9235218,Nickel,LB
+37107,265.8424,Naphthalene,LB
+37107,0.6776817,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.04668188,Methane,TON
+37091,0.004693985,Nitrous Oxide,TON
+37091,1.456328,Nitrogen Oxides,TON
+37091,0.08756556,Anthracene,LB
+37091,0.0432471,Benzo[a]Pyrene,LB
+37071,3.685871,Elemental Carbon portion of PM2.5-PRI,TON
+37071,3.656868,Nickel,LB
+37071,25547.7,Ethyl Benzene,LB
+37069,4.889044e-05,Chromium (VI),LB
+37069,0.04121134,Ammonia,TON
+37069,0.2001333,PM2.5 Primary (Filt + Cond),TON
+37069,0.01747364,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.05741956,"Dibenzo[a,h]Anthracene",LB
+37069,0.05939228,Mercury,LB
+37069,10.764018,Fluorene,LB
+37055,52.65996,Acetaldehyde,LB
+37055,0.181471,Ammonia,TON
+37055,2.647858,Nitrogen Oxides,TON
+37047,2.760503,Volatile Organic Compounds,TON
+37047,15.738648,"1,3-Butadiene",LB
+37047,5.05111,Pyrene,LB
+37047,0.02820626,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.015151402,"Dibenzo[a,h]Anthracene",LB
+37047,1.2202632,Benz[a]Anthracene,LB
+37047,44.14394,Benzene,LB
+37047,0.06489175,Sulfur Dioxide,TON
+37045,0.5715868,Ethyl Benzene,LB
+37045,0.003770128,Benzo[b]Fluoranthene,LB
+37045,0.4238332,"2,2,4-Trimethylpentane",LB
+37045,3.099826e-06,Mercury,LB
+37045,0.3302191,Carbon Monoxide,TON
+37045,0.0002186159,Nitrate portion of PM2.5-PRI,TON
+37045,0.01762119,Organic Carbon portion of PM2.5-PRI,TON
+37045,4.24918,Styrene,LB
+37045,8.36542e-05,Chromium (VI),LB
+37045,15.9022,Carbon Monoxide,TON
+37045,2263.314,Carbon Dioxide,TON
+37045,0.07620149,Ammonia,TON
+37045,0.9779128,Acenaphthene,LB
+37041,8.774844e-10,Chromium (VI),LB
+37041,0.00985319,Benzene,LB
+37041,8.796984e-09,Mercury,LB
+37041,0.0005021036,Naphthalene,LB
+37041,0.004084535,Carbon Monoxide,TON
+37041,0.0002894981,Nitrogen Oxides,TON
+37041,1.045011e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.701563,Benzo[k]Fluoranthene,LB
+37041,0.8407688,Benzo[a]Pyrene,LB
+37041,0.019109838,"Dibenzo[a,h]Anthracene",LB
+37041,9726.852,Toluene,LB
+37041,3.014536,Acenaphthene,LB
+37037,0.002690634,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.3475016,Fluoranthene,LB
+37037,1.8097018e-05,Chromium (VI),LB
+37037,0.11403452,Benz[a]Anthracene,LB
+37037,0.008086496,Nickel,LB
+37037,20.34956,Acetaldehyde,LB
+37037,0.3152452,Fluorene,LB
+37037,0.04934648,Elemental Carbon portion of PM2.5-PRI,TON
+37037,7.57951,Ethyl Benzene,LB
+37037,16.982296,Toluene,LB
+37037,11.485852,Propionaldehyde,LB
+37037,0.06231382,Ammonia,TON
+37171,34.7593,Acetaldehyde,LB
+37161,0.236059,Styrene,LB
+37161,508.5903,Carbon Dioxide,TON
+37161,0.01882735,Organic Carbon portion of PM2.5-PRI,TON
+37145,8.931534,"2,2,4-Trimethylpentane",LB
+37145,0.204685,Manganese,LB
+37145,1.6698166,Fluorene,LB
+37145,0.807881,Anthracene,LB
+37145,0.04911528,Benzo[b]Fluoranthene,LB
+37135,7.573074,Fluoranthene,LB
+37135,0.0004176802,Mercury,LB
+37135,0.719151,Methane,TON
+37135,5.845639,Volatile Organic Compounds,TON
+37135,0.010518992,Acenaphthene,LB
+37135,0.01668205,PM2.5 Primary (Filt + Cond),TON
+37135,31.95372,Toluene,LB
+37135,0.04833096,Acenaphthylene,LB
+37135,0.008541972,Sulfur Dioxide,TON
+37143,0.13573686,Fluorene,LB
+37143,0.02840199,PM2.5 Primary (Filt + Cond),TON
+37141,0.0004439134,Acenaphthene,LB
+37141,4.916396e-06,Sulfate Portion of PM2.5-PRI,TON
+37141,0.0007461104,Pyrene,LB
+37141,0.00014443658,Benzo[b]Fluoranthene,LB
+37141,0.00014193024,Benz[a]Anthracene,LB
+37133,0.0002270786,Chromium (VI),LB
+37133,896.6364,Formaldehyde,LB
+37133,0.0002015762,Mercury,LB
+37133,0.3377009,Methane,TON
+37133,0.2324699,Ammonia,TON
+37133,0.01292495,Nitrate portion of PM2.5-PRI,TON
+37133,0.1231425,Sulfate Portion of PM2.5-PRI,TON
+37133,5.195474,Volatile Organic Compounds,TON
+37133,0.294772,"1,3-Butadiene",LB
+37133,1.7228088e-06,Mercury,LB
+37133,2.148106e-05,Nickel,LB
+37133,6.821598,Carbon Dioxide,TON
+37133,0.0001470355,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,5.363302e-05,Arsenic,LB
+37129,0.05676454,Acetaldehyde,LB
+37129,1.029911e-05,Sulfate Portion of PM2.5-PRI,TON
+37129,0.005184192,Styrene,LB
+37129,0.0003744994,Fluoranthene,LB
+37117,112.99978,Acetaldehyde,LB
+37117,28.4128,Naphthalene,LB
+37117,0.6952419,PM10-Primary from certain diesel engines,TON
+37117,7.34282e-05,Chromium (VI),LB
+37117,0.007885954,"Dibenzo[a,h]Anthracene",LB
+37125,0.00584705,Benzo[k]Fluoranthene,LB
+37125,0.0001616185,"Dibenzo[a,h]Anthracene",LB
+37125,0.006101868,Benz[a]Anthracene,LB
+37119,0.014461496,"Benzo[g,h,i,]Perylene",LB
+37119,4.480304,Formaldehyde,LB
+37119,6.797027,Carbon Monoxide,TON
+37107,5.161104,Xylenes (Mixed Isomers),LB
+37107,0.00223756,"Benzo[g,h,i,]Perylene",LB
+37107,79.04178,Formaldehyde,LB
+37107,0.1199166,Benz[a]Anthracene,LB
+37107,0.02682632,Manganese,LB
+37107,5.788106,Nitrogen Oxides,TON
+37107,0.006237747,Sulfate Portion of PM2.5-PRI,TON
+37089,1.1021416,Anthracene,LB
+37089,25.29182,Propionaldehyde,LB
+37089,0.19986522,Arsenic,LB
+37089,6.99915,Phenanthrene,LB
+37083,2.062704,Styrene,LB
+37083,0.3417058,Benz[a]Anthracene,LB
+37083,0.0275481,Manganese,LB
+37083,0.416833,PM10-Primary from certain diesel engines,TON
+37083,0.003647849,Nitrous Oxide,TON
+37083,0.00884127,Sulfur Dioxide,TON
+37079,45.36262,Formaldehyde,LB
+37079,0.017626656,Benzo[a]Pyrene,LB
+37079,4.450756,Benzene,LB
+37079,3.949085,Nitrogen Oxides,TON
+37079,0.7224902,Styrene,LB
+37079,0.0013378422,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.03896636,Chrysene,LB
+37087,0.004742278,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.002536836,Benzo[b]Fluoranthene,LB
+37087,0.002536836,Benzo[k]Fluoranthene,LB
+37087,3.667492e-05,Arsenic,LB
+37087,0.0006935247,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.0002275545,Nitrous Oxide,TON
+37085,2.08921,Acrolein,LB
+37085,2.283022,Xylenes (Mixed Isomers),LB
+37085,0.001427844,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.0007739206,"Dibenzo[a,h]Anthracene",LB
+37085,0.8980177,Carbon Monoxide,TON
+37085,0.1310425,PM10-Primary from certain diesel engines,TON
+37085,0.1491416,Volatile Organic Compounds,TON
+37075,9.63986e-05,Arsenic,LB
+37075,0.02840664,Styrene,LB
+37075,0.0005616195,PM2.5 Primary (Filt + Cond),TON
+37071,0.378241,Toluene,LB
+37071,0.005483038,Manganese,LB
+37071,2.666858e-06,Nickel,LB
+37071,0.0011140056,Fluorene,LB
+37071,0.002930666,Naphthalene,LB
+37071,1.12422,Methane,TON
+37071,160.7059,Carbon Dioxide,TON
+37071,0.1452207,Volatile Organic Compounds,TON
+37067,26.64406,Hexane,LB
+37067,0.00019618172,Chromium (VI),LB
+37067,3.896261,PM10 Primary (Filt + Cond),TON
+37065,2901.272,"2,2,4-Trimethylpentane",LB
+37065,43.25043,Volatile Organic Compounds,TON
+37053,4.150694e-05,"Dibenzo[a,h]Anthracene",LB
+37053,4.310968,"2,2,4-Trimethylpentane",LB
+37053,0.0013549114,Benz[a]Anthracene,LB
+37053,1.571665,Carbon Monoxide,TON
+37053,0.0005261821,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.000330166,Ammonia,TON
+37053,0.0008757246,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.09382538,Volatile Organic Compounds,TON
+37051,2.092766,Ethyl Benzene,LB
+37051,4.776556,Acrolein,LB
+37051,0.4567146,Fluoranthene,LB
+37051,0.2823936,PM25-Primary from certain diesel engines,TON
+37051,0.02616479,Ammonia,TON
+37051,0.07005076,Organic Carbon portion of PM2.5-PRI,TON
+37051,192.30432,Acrolein,LB
+37051,174.6668,Xylenes (Mixed Isomers),LB
+37051,0.01288561,Benzo[k]Fluoranthene,LB
+37051,0.3553626,Nickel,LB
+37051,0.14045604,Arsenic,LB
+37051,13.73083,Fluorene,LB
+37051,1.112843,Methane,TON
+37049,0.2271894,Volatile Organic Compounds,TON
+37049,11.985426,Hexane,LB
+37049,0.01722704,"Benzo[g,h,i,]Perylene",LB
+37049,0.001252005,Arsenic,LB
+37041,0.002282228,Pyrene,LB
+37041,1.476018e-06,Nitrate portion of PM2.5-PRI,TON
+37033,1.0052546e-05,Benzo[b]Fluoranthene,LB
+37033,3.178914e-07,"Dibenzo[a,h]Anthracene",LB
+37033,1.0042744e-05,Benz[a]Anthracene,LB
+37033,0.0001847929,Phenanthrene,LB
+37033,0.3003226,Carbon Dioxide,TON
+37033,2.541162e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37083,5.955676,"2,2,4-Trimethylpentane",LB
+37169,0.004553478,Benzo[b]Fluoranthene,LB
+37169,0.15341116,Fluoranthene,LB
+37169,0.10600196,Acenaphthylene,LB
+37169,0.5734588,"2,2,4-Trimethylpentane",LB
+37169,0.05292946,PM25-Primary from certain diesel engines,TON
+37169,0.02182664,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.05558104,PM2.5 Primary (Filt + Cond),TON
+37165,0.012745438,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,2.139048,Fluoranthene,LB
+37163,7.005e-05,Manganese,LB
+37163,1.5087074e-06,Mercury,LB
+37163,0.0002680844,Nitrous Oxide,TON
+37157,13770.464,Ethyl Benzene,LB
+37157,7.62519,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,33.33758,Fluoranthene,LB
+37157,22316.72,Benzene,LB
+37157,7757.966,Acetaldehyde,LB
+37157,1.912308,Elemental Carbon portion of PM2.5-PRI,TON
+37157,11.45781,Nitrous Oxide,TON
+37155,38.39262,"2,2,4-Trimethylpentane",LB
+37155,39.11974,Carbon Monoxide,TON
+37155,0.0001674906,Nitrate portion of PM2.5-PRI,TON
+37155,1.103398,Volatile Organic Compounds,TON
+37155,1.2910082,Propionaldehyde,LB
+37155,0.04900334,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,2.644888e-09,Chromium (VI),LB
+37153,1.0344754e-05,Benzo[b]Fluoranthene,LB
+37153,5.06919e-07,Arsenic,LB
+37153,2.259768e-05,Methane,TON
+37153,4.237888e-07,Sulfate Portion of PM2.5-PRI,TON
+37153,5.920146e-05,Manganese,LB
+37153,0.09263588,Acetaldehyde,LB
+37153,0.000659203,Fluorene,LB
+37153,0.006023722,Acrolein,LB
+37153,0.0004967216,Fluoranthene,LB
+37153,0.000137527,Chrysene,LB
+37153,7.576434,Carbon Dioxide,TON
+37153,0.0001953578,Ammonia,TON
+37153,0.005166381,Volatile Organic Compounds,TON
+37175,3.252572,Anthracene,LB
+37175,1147.0134,Formaldehyde,LB
+37175,0.03657732,Arsenic,LB
+37175,127.69192,Naphthalene,LB
+37175,5508.584,Carbon Dioxide,TON
+37175,0.1714125,Ammonia,TON
+37175,6.831857,Volatile Organic Compounds,TON
+37173,1.016531,Ethyl Benzene,LB
+37173,5.76202,Toluene,LB
+37173,1.2360226,Hexane,LB
+37173,0.000545948,Benzo[k]Fluoranthene,LB
+37173,0.009003116,Phenanthrene,LB
+37173,8.014723e-05,Sulfur Dioxide,TON
+37155,0.03305298,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.7456727,Volatile Organic Compounds,TON
+37155,1.871898,Styrene,LB
+37149,2.184164,Ethyl Benzene,LB
+37149,0.214125,Anthracene,LB
+37149,1.4907278e-05,Chromium (VI),LB
+37149,0.0008601132,Benzo[k]Fluoranthene,LB
+37149,0.0008587644,"Dibenzo[a,h]Anthracene",LB
+37149,6.365782,Benzene,LB
+37149,0.1144417,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.1970722,PM10 Primary (Filt + Cond),TON
+37149,0.01305716,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.02035032,Fluorene,LB
+37149,0.002170582,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.002340077,Nitrous Oxide,TON
+37149,0.018532378,Pyrene,LB
+37149,3.269572,Formaldehyde,LB
+37149,9.32553,"2,2,4-Trimethylpentane",LB
+37149,0.007160196,Benz[a]Anthracene,LB
+37157,0.0017258446,Nickel,LB
+37157,0.0005563028,Arsenic,LB
+37157,0.004849978,Methane,TON
+37157,0.2676907,Carbon Monoxide,TON
+37157,123.1316,Carbon Dioxide,TON
+37157,0.4563466,Ethyl Benzene,LB
+37157,0.07644364,Acenaphthylene,LB
+37157,13.724392,Formaldehyde,LB
+37157,0.000453091,"Dibenzo[a,h]Anthracene",LB
+37157,0.003031044,Manganese,LB
+37153,1.2040722,"1,3-Butadiene",LB
+37153,0.19801954,Propionaldehyde,LB
+37153,2.162504e-06,Chromium (VI),LB
+37153,0.000414486,Arsenic,LB
+37153,0.4998414,Naphthalene,LB
+37147,636.4846,Ethyl Benzene,LB
+37147,0.0002312526,Chromium (VI),LB
+37147,0.8900784,Fluoranthene,LB
+37147,0.17182252,Benzo[k]Fluoranthene,LB
+37147,0.0336741,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.09335126,Benz[a]Anthracene,LB
+37129,3.277534,Benzene,LB
+37129,0.03050744,Manganese,LB
+37129,0.02533861,Methane,TON
+37129,0.01291652,Ammonia,TON
+37129,0.4489182,Styrene,LB
+37129,0.3677638,Pyrene,LB
+37141,324.083,Ethyl Benzene,LB
+37141,2354.394,Toluene,LB
+37141,111.12198,Formaldehyde,LB
+37141,0.12920702,Benzo[a]Pyrene,LB
+37141,397.821,Benzene,LB
+37141,1.5911656,Phenanthrene,LB
+37141,79.15904,Carbon Monoxide,TON
+37141,0.01728452,Nitrous Oxide,TON
+37141,0.03263102,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.001112876,Nitrate portion of PM2.5-PRI,TON
+37137,1.1645386,Styrene,LB
+37137,0.00379903,"Benzo[g,h,i,]Perylene",LB
+37137,0.4539736,Acenaphthylene,LB
+37137,0.06232354,Benzo[a]Pyrene,LB
+37137,0.27014,Acenaphthene,LB
+37137,1.058526,Phenanthrene,LB
+37137,0.2053773,PM25-Primary from certain diesel engines,TON
+37133,3.502046,Anthracene,LB
+37133,0.02911386,Benzo[k]Fluoranthene,LB
+37133,0.02871142,"Dibenzo[a,h]Anthracene",LB
+37133,42.22536,"2,2,4-Trimethylpentane",LB
+37133,0.16062892,Arsenic,LB
+37133,580.2158,Acetaldehyde,LB
+37133,14.006678,Phenanthrene,LB
+37133,5.508855,PM10-Primary from certain diesel engines,TON
+37133,6.746516,Volatile Organic Compounds,TON
+37125,0.000268526,Phenanthrene,LB
+37125,3.291427e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37125,1.733725e-05,PM10 Primary (Filt + Cond),TON
+37125,6946.626,Xylenes (Mixed Isomers),LB
+37115,0.07468106,Pyrene,LB
+37115,0.0015484838,Benzo[b]Fluoranthene,LB
+37115,0.000579322,Arsenic,LB
+37115,0.03944486,PM10-Primary from certain diesel engines,TON
+37115,0.04565713,Volatile Organic Compounds,TON
+37115,0.066869,Chrysene,LB
+37115,0.02685212,Arsenic,LB
+37115,0.1778107,Ammonia,TON
+37115,0.05312541,Sulfur Dioxide,TON
+37115,0.0023434,Sulfate Portion of PM2.5-PRI,TON
+37115,0.00014009898,Chromium (VI),LB
+37107,1.2641758,Toluene,LB
+37107,0.05591606,Anthracene,LB
+37107,0.003713898,Benzo[b]Fluoranthene,LB
+37107,1.5235218,Benzene,LB
+37107,0.2004794,Phenanthrene,LB
+37107,0.01015219,Methane,TON
+37107,0.5587234,Carbon Monoxide,TON
+37107,0.04452635,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.00368815,Sulfur Dioxide,TON
+37107,0.09125204,Volatile Organic Compounds,TON
+37103,0.5140262,Hexane,LB
+37103,0.00026948,Benzo[a]Pyrene,LB
+37103,5.617696e-06,Nickel,LB
+37103,0.03320708,Naphthalene,LB
+37103,3.71823e-05,Sulfur Dioxide,TON
+37099,13.653454,Phenanthrene,LB
+37099,1.069701,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.3541724,Ammonia,TON
+37099,0.1181859,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,50.40194,"1,3-Butadiene",LB
+37099,98.8328,Toluene,LB
+37099,0.00650567,Benzo[k]Fluoranthene,LB
+37099,0.006471476,"Dibenzo[a,h]Anthracene",LB
+37099,0.2403214,Nickel,LB
+37097,330.9824,Acrolein,LB
+37097,26.50336,Pyrene,LB
+37097,6.103398,Benz[a]Anthracene,LB
+37097,5.546238,Arsenic,LB
+37097,15.482592,Acenaphthene,LB
+37097,436.1035,Nitrogen Oxides,TON
+37093,0.00403443,Arsenic,LB
+37093,3.295966,Carbon Monoxide,TON
+37093,0.005474295,PM10-Primary from certain diesel engines,TON
+37093,0.02786551,PM10 Primary (Filt + Cond),TON
+37093,3.0983,Acrolein,LB
+37093,1.8686704,Propionaldehyde,LB
+37093,1.74382e-05,Chromium (VI),LB
+37093,0.13208348,Fluoranthene,LB
+37093,0.18004178,Acenaphthylene,LB
+37085,0.9380862,Chrysene,LB
+37085,0.09952854,Nickel,LB
+37085,314.0774,Acetaldehyde,LB
+37085,17.23951,Carbon Monoxide,TON
+37085,0.008643,Nitrate portion of PM2.5-PRI,TON
+37085,2.773639,PM10 Primary (Filt + Cond),TON
+37085,3.950311,Volatile Organic Compounds,TON
+37079,0.006450996,Nitrous Oxide,TON
+37079,0.01999626,Sulfate Portion of PM2.5-PRI,TON
+37079,4.96472,Hexane,LB
+37079,1.9028154,Pyrene,LB
+37079,0.005736122,Benzo[k]Fluoranthene,LB
+37079,0.269518,Chrysene,LB
+37079,84.2508,Acetaldehyde,LB
+37079,0.6050914,Acenaphthene,LB
+37079,2.332456,Phenanthrene,LB
+37073,0.002547528,Chrysene,LB
+37073,0.0013171396,Benzo[a]Pyrene,LB
+37073,0.00593233,Acenaphthene,LB
+37073,3.865639e-05,Nitrous Oxide,TON
+37073,0.004446481,PM2.5 Primary (Filt + Cond),TON
+37087,220.6411,Carbon Dioxide,TON
+37087,0.0009790618,Arsenic,LB
+37087,0.03721054,Pyrene,LB
+37087,0.03274894,Fluoranthene,LB
+37087,0.014147104,Benzo[k]Fluoranthene,LB
+37085,629.4374,Ethyl Benzene,LB
+37085,7.61417,Propionaldehyde,LB
+37085,2355.042,Xylenes (Mixed Isomers),LB
+37085,0.18729312,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.6896162,Fluoranthene,LB
+37085,0.18770776,Benzo[a]Pyrene,LB
+37085,24.47764,Naphthalene,LB
+37085,0.02754906,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.0005428153,Nitrate portion of PM2.5-PRI,TON
+37085,0.2967156,PM10 Primary (Filt + Cond),TON
+37071,75.2015,Hexane,LB
+37071,0.0261599,Benzo[k]Fluoranthene,LB
+37071,0.0266621,Chrysene,LB
+37071,0.0329731,Benzo[a]Pyrene,LB
+37071,0.05273844,Manganese,LB
+37071,0.5651872,Phenanthrene,LB
+37059,0.0389766,Benzene,LB
+37059,9.093236e-07,Arsenic,LB
+37059,3.881708e-05,Acenaphthene,LB
+37059,0.0020179,Naphthalene,LB
+37059,1.710455e-05,Organic Carbon portion of PM2.5-PRI,TON
+37059,9.301071e-07,Sulfate Portion of PM2.5-PRI,TON
+37007,0.002878186,Benz[a]Anthracene,LB
+37007,0.18270722,Naphthalene,LB
+37007,0.01629435,"Benzo[g,h,i,]Perylene",LB
+37001,0.07494662,Styrene,LB
+37001,0.003293874,Benzo[b]Fluoranthene,LB
+37001,0.2244127,Nitrogen Oxides,TON
+37163,25.8748,Toluene,LB
+37113,0.5075766,Xylenes (Mixed Isomers),LB
+37113,1.87227e-06,Chromium (VI),LB
+37113,0.0003588502,Arsenic,LB
+37113,0.0014086248,Phenanthrene,LB
+37113,0.001603483,Ammonia,TON
+37113,0.002462831,PM10 Primary (Filt + Cond),TON
+37097,0.0001629712,Sulfate Portion of PM2.5-PRI,TON
+37097,0.07670306,Volatile Organic Compounds,TON
+37097,0.13357834,"1,3-Butadiene",LB
+37097,0.11066188,Acrolein,LB
+37097,0.00903286,"Benzo[g,h,i,]Perylene",LB
+37097,0.003393688,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,1.9626588,Formaldehyde,LB
+37097,0.005253128,Manganese,LB
+37097,12.277902,Acetaldehyde,LB
+37097,0.0010621186,Acenaphthene,LB
+37097,0.05556336,Naphthalene,LB
+37097,1.306947e-05,Nitrate portion of PM2.5-PRI,TON
+37021,22.0387,Styrene,LB
+37021,47.9609,Hexane,LB
+37021,8.648794,Acenaphthylene,LB
+37021,3.904166,Benz[a]Anthracene,LB
+37021,4.32964,PM10-Primary from certain diesel engines,TON
+37021,3.983307,PM25-Primary from certain diesel engines,TON
+37021,0.236469,Sulfate Portion of PM2.5-PRI,TON
+37021,9.775996,Volatile Organic Compounds,TON
+37017,26.16184,Acrolein,LB
+37017,15.883372,Propionaldehyde,LB
+37017,1.9832978,Fluoranthene,LB
+37017,0.9653294,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.000434658,"Benzo[g,h,i,]Perylene",LB
+37021,3.747628e-06,"Dibenzo[a,h]Anthracene",LB
+37021,0.0009285386,Phenanthrene,LB
+37021,10.70552,Carbon Dioxide,TON
+37021,5.29093e-07,Nitrate portion of PM2.5-PRI,TON
+37021,0.0002009303,PM2.5 Primary (Filt + Cond),TON
+37021,6.888103e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,6.00453e-06,Sulfate Portion of PM2.5-PRI,TON
+37009,0.01776684,Sulfur Dioxide,TON
+37009,6.17508,Hexane,LB
+37009,0.7338552,Anthracene,LB
+37009,20.17054,Xylenes (Mixed Isomers),LB
+37009,0.005526266,"Dibenzo[a,h]Anthracene",LB
+37009,5.31374e-05,Mercury,LB
+37009,25.8083,Naphthalene,LB
+37009,0.4564903,PM25-Primary from certain diesel engines,TON
+37009,0.002470709,Nitrate portion of PM2.5-PRI,TON
+37009,8.148715,Nitrogen Oxides,TON
+37005,0.07445878,Hexane,LB
+37005,0.0060665,Benz[a]Anthracene,LB
+37005,0.0011771,Manganese,LB
+37005,0.00017372502,Arsenic,LB
+37005,0.0004853151,Sulfate Portion of PM2.5-PRI,TON
+37005,0.3056455,Volatile Organic Compounds,TON
+37003,8023.578,Ethyl Benzene,LB
+37003,320.7148,Styrene,LB
+37003,0.00382403,Chromium (VI),LB
+37003,3.24623,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,2.899566,Benzo[k]Fluoranthene,LB
+37003,9783.434,"2,2,4-Trimethylpentane",LB
+37003,0.038334,Mercury,LB
+37001,90.92242,Ethyl Benzene,LB
+37001,1.6324952,Chrysene,LB
+37001,0.81886,Benzo[a]Pyrene,LB
+37001,22.3578,Phenanthrene,LB
+37001,1.435408,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.132483,Acrolein,LB
+37197,0.003900824,Chrysene,LB
+37197,0.03845262,Phenanthrene,LB
+37197,0.004775582,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.0002745632,Sulfate Portion of PM2.5-PRI,TON
+37191,0.00281043,Benzo[b]Fluoranthene,LB
+37191,0.000294976,Mercury,LB
+37181,0.15854402,Acenaphthylene,LB
+37181,0.7742726,"2,2,4-Trimethylpentane",LB
+37181,3.262084,Naphthalene,LB
+37181,0.01483701,Methane,TON
+37181,0.9318038,"1,3-Butadiene",LB
+37181,2.3352,Acrolein,LB
+37181,2.159446,Toluene,LB
+37181,0.760112,Hexane,LB
+37181,0.10745566,Anthracene,LB
+37181,0.03484695,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.123815,PM10 Primary (Filt + Cond),TON
+37197,0.1100252,Acenaphthylene,LB
+37197,0.53021,"2,2,4-Trimethylpentane",LB
+37197,0.0654535,Acenaphthene,LB
+37197,0.0002091878,Nitrate portion of PM2.5-PRI,TON
+37197,0.005361224,Sulfur Dioxide,TON
+37185,0.1315316,Anthracene,LB
+37185,3.390436,Xylenes (Mixed Isomers),LB
+37185,49.47998,Formaldehyde,LB
+37185,0.02017064,Methane,TON
+37185,0.04974858,PM25-Primary from certain diesel engines,TON
+37185,0.0511328,PM2.5 Primary (Filt + Cond),TON
+37185,0.002969094,Sulfur Dioxide,TON
+37179,6.670126e-08,Chromium (VI),LB
+37179,0.0005886386,Fluoranthene,LB
+37179,0.007514208,Manganese,LB
+37179,1.241322,Methane,TON
+37177,0.2505202,Propionaldehyde,LB
+37177,0.3578642,Xylenes (Mixed Isomers),LB
+37177,0.0008248246,Nickel,LB
+37177,0.5294672,Naphthalene,LB
+37177,0.002408258,Methane,TON
+37177,0.16199714,Ethyl Benzene,LB
+37173,0.02550742,Ethyl Benzene,LB
+37173,7.024368e-05,Pyrene,LB
+37173,4.276732e-09,Chromium (VI),LB
+37173,1.4924648e-05,Chrysene,LB
+37173,0.03178226,"2,2,4-Trimethylpentane",LB
+37173,5.3456e-07,Nickel,LB
+37173,8.196292e-07,Arsenic,LB
+37173,4.112142e-05,Acenaphthene,LB
+37173,5.875034e-06,Sulfur Dioxide,TON
+37027,9.345089,PM2.5 Primary (Filt + Cond),TON
+37027,0.1088684,Mercury,LB
+37027,501.9292,Propionaldehyde,LB
+37055,38.65098,Naphthalene,LB
+37055,0.07172829,Ammonia,TON
+37055,0.005625388,Nitrate portion of PM2.5-PRI,TON
+37055,11.763386,"1,3-Butadiene",LB
+37055,1.3801094,Anthracene,LB
+37055,21.07798,Xylenes (Mixed Isomers),LB
+37055,0.02478202,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,9977.948,Toluene,LB
+37039,46.99558,Propionaldehyde,LB
+37039,711.0868,Formaldehyde,LB
+37039,2545.252,Benzene,LB
+37039,887.8212,Acetaldehyde,LB
+37039,1.024441,Nitrous Oxide,TON
+37039,0.003526318,Nitrate portion of PM2.5-PRI,TON
+37175,0.04248478,Benzo[b]Fluoranthene,LB
+37175,0.2742412,Chrysene,LB
+37175,5.454532,"2,2,4-Trimethylpentane",LB
+37175,0.02213028,Nickel,LB
+37175,0.4494018,PM25-Primary from certain diesel engines,TON
+37175,0.1609431,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.009877546,"Benzo[g,h,i,]Perylene",LB
+37169,0.006126122,Benzo[k]Fluoranthene,LB
+37169,0.1425216,Benzo[a]Pyrene,LB
+37169,0.5160926,Benz[a]Anthracene,LB
+37169,0.000219927,Mercury,LB
+37169,0.877452,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.2599209,Ammonia,TON
+37161,0.0017659252,"Benzo[g,h,i,]Perylene",LB
+37161,0.013383962,Manganese,LB
+37161,0.2595122,Fluorene,LB
+37159,49.18558,"1,3-Butadiene",LB
+37159,13.080784,Pyrene,LB
+37159,10.0996,Fluoranthene,LB
+37159,4.812542,Acenaphthene,LB
+37159,21.70148,Phenanthrene,LB
+37159,69777.53,Carbon Dioxide,TON
+37159,1.048311,Ammonia,TON
+37159,0.01843405,Nitrate portion of PM2.5-PRI,TON
+37159,12.19184,PM10 Primary (Filt + Cond),TON
+37159,0.9597108,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,284.0294,Acrolein,LB
+37155,146.75348,Propionaldehyde,LB
+37155,0.037018,"Dibenzo[a,h]Anthracene",LB
+37155,5.549557,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.02244993,Nitrate portion of PM2.5-PRI,TON
+37149,32.23876,Acetaldehyde,LB
+37149,8.073364,Naphthalene,LB
+37149,705.5702,Carbon Dioxide,TON
+37149,0.002956529,Sulfate Portion of PM2.5-PRI,TON
+37149,6.042518,Toluene,LB
+37149,1.939207,Hexane,LB
+37149,0.3666286,Acenaphthylene,LB
+37163,1.9765216,Acrolein,LB
+37163,5.27324,Naphthalene,LB
+37163,0.08054083,Nitrous Oxide,TON
+37163,0.06044101,Ammonia,TON
+37163,0.0001585687,Nitrate portion of PM2.5-PRI,TON
+37157,2.187794,Benzene,LB
+37157,0.15503036,Fluorene,LB
+37157,0.0012152842,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,20.03082,Pyrene,LB
+37155,0.02112902,Chromium (VI),LB
+37155,5.15024,Benzo[b]Fluoranthene,LB
+37155,1.752072,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.01379151,Ethyl Benzene,LB
+37137,1.8663284e-05,Anthracene,LB
+37137,0.05099996,Xylenes (Mixed Isomers),LB
+37137,0.008966842,Carbon Monoxide,TON
+37137,1.378312e-05,Nitrous Oxide,TON
+37137,2.971956e-06,Ammonia,TON
+37137,0.0005858806,Nitrogen Oxides,TON
+37137,1.75341e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.0004047927,Volatile Organic Compounds,TON
+37121,5.082632,Acrolein,LB
+37121,0.0648184,Benzo[b]Fluoranthene,LB
+37121,0.0648184,Benzo[k]Fluoranthene,LB
+37121,0.0661434,Chrysene,LB
+37121,0.02974432,Manganese,LB
+37121,0.0002365151,Nitrate portion of PM2.5-PRI,TON
+37105,156.25736,Acetaldehyde,LB
+37105,38.94732,Naphthalene,LB
+37105,0.938892,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.1725312,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.283616,Ethyl Benzene,LB
+37101,2.656314e-08,Chromium (VI),LB
+37101,0.3686604,"2,2,4-Trimethylpentane",LB
+37101,0.009115438,Nitrogen Oxides,TON
+37101,0.0001038409,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.0003243587,PM10 Primary (Filt + Cond),TON
+37085,4.798382,Manganese,LB
+37085,563.5115,Nitrogen Oxides,TON
+37085,387.9618,Acrolein,LB
+37085,17.474638,Anthracene,LB
+37085,45513.92,Xylenes (Mixed Isomers),LB
+37085,18.52076,"Benzo[g,h,i,]Perylene",LB
+37085,15159.864,"2,2,4-Trimethylpentane",LB
+37079,1.7237156,Anthracene,LB
+37079,0.6867024,Benzo[b]Fluoranthene,LB
+37079,9.132876,Acenaphthylene,LB
+37079,0.02631468,Mercury,LB
+37079,10.917506,Phenanthrene,LB
+37079,104.0377,Naphthalene,LB
+37077,0.7511384,Toluene,LB
+37077,0.2901484,Hexane,LB
+37077,0.000508193,"Benzo[g,h,i,]Perylene",LB
+37077,0.008179882,Benzo[a]Pyrene,LB
+37077,0.08319644,Fluorene,LB
+37077,0.003481738,Methane,TON
+37077,0.002411489,Ammonia,TON
+37077,0.01139257,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.03741726,PM10 Primary (Filt + Cond),TON
+37067,132.287,Ethyl Benzene,LB
+37067,405.9564,Toluene,LB
+37067,8.556322,Anthracene,LB
+37067,468.4004,Xylenes (Mixed Isomers),LB
+37067,0.5542364,Nickel,LB
+37067,0.4210274,Arsenic,LB
+37067,390.6209,Nitrogen Oxides,TON
+37057,0.0004562852,Anthracene,LB
+37057,162.55364,Formaldehyde,LB
+37057,7.020868e-05,Mercury,LB
+37057,0.001703056,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.01146343,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.000739732,"Dibenzo[a,h]Anthracene",LB
+37051,0.18407176,Fluorene,LB
+37051,272.6719,Carbon Dioxide,TON
+37051,0.0006124879,Nitrous Oxide,TON
+37051,0.08652212,PM10 Primary (Filt + Cond),TON
+37051,0.01123869,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.006164225,Sulfate Portion of PM2.5-PRI,TON
+37049,1.3002292,"1,3-Butadiene",LB
+37049,0.14893192,Anthracene,LB
+37049,1.5500374e-05,Chromium (VI),LB
+37049,0.0014054628,Benzo[k]Fluoranthene,LB
+37049,0.0014016762,"Dibenzo[a,h]Anthracene",LB
+37049,0.003661588,Arsenic,LB
+37047,4.5781,Acrolein,LB
+37047,4.27742,Xylenes (Mixed Isomers),LB
+37047,0.4743148,Fluoranthene,LB
+37047,1.300515,Carbon Monoxide,TON
+37047,0.1684168,PM25-Primary from certain diesel engines,TON
+37047,0.02053393,Ammonia,TON
+37043,1.2666524,Acrolein,LB
+37043,0.465081,"2,2,4-Trimethylpentane",LB
+37043,0.008418978,Benz[a]Anthracene,LB
+37043,0.003770256,Nickel,LB
+37043,1.7930604,Naphthalene,LB
+37043,0.002910146,PM2.5 Primary (Filt + Cond),TON
+37143,0.239108,"1,3-Butadiene",LB
+37143,0.4837792,Propionaldehyde,LB
+37143,2.085332,"2,2,4-Trimethylpentane",LB
+37143,0.011305912,Phenanthrene,LB
+37107,0.05956912,Naphthalene,LB
+37107,0.02176137,PM10 Primary (Filt + Cond),TON
+37107,0.005094648,PM2.5 Primary (Filt + Cond),TON
+37107,0.7036662,Ethyl Benzene,LB
+37107,0.0014504644,Benzo[k]Fluoranthene,LB
+37107,0.0010978792,Chrysene,LB
+37163,2.223376,Benz[a]Anthracene,LB
+37163,2385.888,Acetaldehyde,LB
+37163,0.01052635,Nitrate portion of PM2.5-PRI,TON
+37163,190.3506,Nitrogen Oxides,TON
+37163,4.002939,PM2.5 Primary (Filt + Cond),TON
+37163,1.160957,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,139.8147,Volatile Organic Compounds,TON
+37163,4657.162,Ethyl Benzene,LB
+37151,4.89861,Benzo[b]Fluoranthene,LB
+37151,4.233524,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.04805314,Phenanthrene,LB
+37147,0.001026873,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.1637286,Volatile Organic Compounds,TON
+37147,0.9872024,"1,3-Butadiene",LB
+37147,0.16342174,Propionaldehyde,LB
+37147,0.014911842,Pyrene,LB
+37143,1.4219624,Phenanthrene,LB
+37143,13.316414,Naphthalene,LB
+37143,1458.27,Carbon Dioxide,TON
+37143,0.05279977,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.03855658,Pyrene,LB
+37143,0.3286986,Xylenes (Mixed Isomers),LB
+37143,0.005406424,Chrysene,LB
+37143,0.1097511,"2,2,4-Trimethylpentane",LB
+37143,0.009232242,Benz[a]Anthracene,LB
+37143,0.1435309,Carbon Monoxide,TON
+37143,112.8857,Carbon Dioxide,TON
+37143,0.02716074,PM10 Primary (Filt + Cond),TON
+37143,0.1495374,"1,3-Butadiene",LB
+37143,0.0009588248,Anthracene,LB
+37143,0.0003171614,Benzo[k]Fluoranthene,LB
+37143,4.457866e-05,Manganese,LB
+37143,4.924244e-07,Mercury,LB
+37137,0.003389188,Ammonia,TON
+37137,0.001424057,Sulfur Dioxide,TON
+37137,0.7405938,"1,3-Butadiene",LB
+37137,0.0006354858,Benzo[k]Fluoranthene,LB
+37137,0.12605878,Acenaphthylene,LB
+37137,0.015585326,Benzo[a]Pyrene,LB
+37137,0.0007909442,Arsenic,LB
+37137,10.258854,Acetaldehyde,LB
+37137,0.00016604996,"Benzo[g,h,i,]Perylene",LB
+37137,5.04061e-05,Benzo[b]Fluoranthene,LB
+37137,0.0002959008,Fluoranthene,LB
+37137,1.4317828e-06,"Dibenzo[a,h]Anthracene",LB
+37137,0.07201702,Acetaldehyde,LB
+37137,9.90737e-05,Methane,TON
+37129,0.205688,Volatile Organic Compounds,TON
+37129,6.585038e-06,Chromium (VI),LB
+37129,0.01751324,Fluoranthene,LB
+37129,0.00313643,Benzo[k]Fluoranthene,LB
+37129,0.003159934,Chrysene,LB
+37129,0.0244111,Fluorene,LB
+37117,2.212426,"1,3-Butadiene",LB
+37117,0.2121688,Anthracene,LB
+37117,7.050348,Naphthalene,LB
+37117,0.09213879,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.001141367,Nitrous Oxide,TON
+37121,2.872194,Ethyl Benzene,LB
+37121,0.008109814,Fluoranthene,LB
+37121,6.394642,Benzene,LB
+37121,0.0018189116,Manganese,LB
+37121,0.2891132,Naphthalene,LB
+37121,0.001210959,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.04993174,Styrene,LB
+37113,0.2480676,Toluene,LB
+37113,0.08996704,Hexane,LB
+37113,0.2494892,Xylenes (Mixed Isomers),LB
+37113,0.00010410264,"Dibenzo[a,h]Anthracene",LB
+37113,0.00013357678,Arsenic,LB
+37113,0.01122342,PM10 Primary (Filt + Cond),TON
+37113,0.0002506951,Sulfur Dioxide,TON
+37193,0.8520024,Chrysene,LB
+37193,0.4407662,Benzo[a]Pyrene,LB
+37193,0.17023998,Manganese,LB
+37193,0.02705816,"Benzo[g,h,i,]Perylene",LB
+37193,0.1471226,Ammonia,TON
+37197,0.00014735624,Chrysene,LB
+37197,0.000301437,Benzo[a]Pyrene,LB
+37197,0.007145132,Styrene,LB
+37197,0.005164729,Volatile Organic Compounds,TON
+37189,7.676976e-05,"Dibenzo[a,h]Anthracene",LB
+37189,0.0002253394,Nickel,LB
+37189,3.27365,Acetaldehyde,LB
+37189,0.05314776,Phenanthrene,LB
+37189,4.120827,Carbon Monoxide,TON
+37189,0.0008265618,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.01022052,PM10 Primary (Filt + Cond),TON
+37189,0.2298178,Volatile Organic Compounds,TON
+37187,3.34343,Naphthalene,LB
+37187,1.220991,Carbon Monoxide,TON
+37187,196.9215,Carbon Dioxide,TON
+37187,0.0768573,PM25-Primary from certain diesel engines,TON
+37187,0.03464418,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.01226086,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,30.44056,Formaldehyde,LB
+37181,0.008098222,Styrene,LB
+37181,0.0012969734,Acenaphthylene,LB
+37181,0.8145042,Benzene,LB
+37181,0.0007386442,Manganese,LB
+37181,2.49855e-05,Mercury,LB
+37181,0.002679244,Methane,TON
+37181,0.0006551195,Nitrous Oxide,TON
+37181,0.001315929,Sulfur Dioxide,TON
+37105,0.02483716,Acetaldehyde,LB
+37105,0.03204134,Carbon Monoxide,TON
+37105,7.542514,Carbon Dioxide,TON
+37105,0.0001949451,Ammonia,TON
+37105,4.773576e-05,Chrysene,LB
+37093,658.671,"1,3-Butadiene",LB
+37093,3.482652,Anthracene,LB
+37093,1.143667,Benzo[b]Fluoranthene,LB
+37093,211.4886,Naphthalene,LB
+37093,4.950483,Ammonia,TON
+37093,0.910678,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.2425402,"1,3-Butadiene",LB
+37083,0.02900598,Acrolein,LB
+37083,0.002784712,"Benzo[g,h,i,]Perylene",LB
+37083,0.009786948,Phenanthrene,LB
+37083,2.684399e-05,Sulfate Portion of PM2.5-PRI,TON
+37077,0.09347548,Mercury,LB
+37077,8.573621,Methane,TON
+37077,0.00932408,Chromium (VI),LB
+37077,4.525554,Chrysene,LB
+37077,496.5067,Nitrogen Oxides,TON
+37077,1.771467,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,27.13312,Pyrene,LB
+37057,0.2177658,"Dibenzo[a,h]Anthracene",LB
+37057,3806.693,Carbon Monoxide,TON
+37051,0.03076158,Pyrene,LB
+37051,0.008590764,Benzo[b]Fluoranthene,LB
+37051,19.89364,Benzene,LB
+37051,8.677194,Carbon Monoxide,TON
+37051,0.01374979,Sulfur Dioxide,TON
+37051,0.0006246667,Sulfate Portion of PM2.5-PRI,TON
+37035,5.561177,Volatile Organic Compounds,TON
+37177,1.117121,Acrolein,LB
+37177,1.5342942,Naphthalene,LB
+37177,0.001847238,Methane,TON
+37177,0.03128638,PM25-Primary from certain diesel engines,TON
+37173,0.06864156,"1,3-Butadiene",LB
+37173,0.1681207,Acrolein,LB
+37173,5.295754e-07,Chromium (VI),LB
+37173,0.0004492192,Manganese,LB
+37173,0.00696214,Acenaphthene,LB
+37173,0.2337032,Naphthalene,LB
+37173,0.04242906,Carbon Monoxide,TON
+37173,0.005339319,PM2.5 Primary (Filt + Cond),TON
+37173,23.55414,Ethyl Benzene,LB
+37173,17.72606,Hexane,LB
+37173,43.51626,Xylenes (Mixed Isomers),LB
+37173,3.134908,Fluoranthene,LB
+37173,0.002041716,"Dibenzo[a,h]Anthracene",LB
+37173,0.1131058,Nickel,LB
+37173,0.03267836,Arsenic,LB
+37167,0.06879516,Arsenic,LB
+37167,2.26351,PM2.5 Primary (Filt + Cond),TON
+37167,0.214563,Sulfur Dioxide,TON
+37167,3.798108,Pyrene,LB
+37167,0.5141394,Chrysene,LB
+37167,0.011068252,"Dibenzo[a,h]Anthracene",LB
+37199,0.02386468,Chrysene,LB
+37197,2.979904,Hexane,LB
+37197,1.0869102,Pyrene,LB
+37197,2.218544e-05,Chromium (VI),LB
+37197,0.005541516,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.8295516,Fluoranthene,LB
+37197,0.3818284,Acenaphthene,LB
+37197,4.745857,Carbon Monoxide,TON
+37193,0.0009357876,Pyrene,LB
+37193,81.69864,Formaldehyde,LB
+37193,0.002509538,Manganese,LB
+37193,0.01818996,PM10 Primary (Filt + Cond),TON
+37185,0.02865756,Fluoranthene,LB
+37185,0.008771912,Benz[a]Anthracene,LB
+37185,0.12649064,"1,3-Butadiene",LB
+37185,0.4255386,Naphthalene,LB
+37185,7.256374,"1,3-Butadiene",LB
+37185,0.010243366,"Benzo[g,h,i,]Perylene",LB
+37185,1.7359274,Fluoranthene,LB
+37185,6.085274,"2,2,4-Trimethylpentane",LB
+37185,0.7342878,Acenaphthene,LB
+37185,0.1029287,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.02534038,Sulfate Portion of PM2.5-PRI,TON
+37185,7.280432e-05,Pyrene,LB
+37185,9.894955e-06,Ammonia,TON
+37185,1.006908e-07,Nitrate portion of PM2.5-PRI,TON
+37185,1.014349e-06,Sulfate Portion of PM2.5-PRI,TON
+37195,18.26007,PM10 Primary (Filt + Cond),TON
+37195,21.26124,Fluoranthene,LB
+37195,4.241972,Chrysene,LB
+37195,4554.32,Formaldehyde,LB
+37195,3.57222,Manganese,LB
+37195,752.5286,Naphthalene,LB
+37189,0.696026,Styrene,LB
+37189,1.787228,Hexane,LB
+37189,3.123658e-05,Chromium (VI),LB
+37189,0.007226656,Arsenic,LB
+37189,0.2889878,Fluorene,LB
+37189,0.004760233,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.05100289,PM10 Primary (Filt + Cond),TON
+37187,0.5280784,Ethyl Benzene,LB
+37187,0.002517274,Methane,TON
+37187,6.090614e-06,Nitrate portion of PM2.5-PRI,TON
+37187,0.004722726,Fluoranthene,LB
+37187,0.0013173546,Benzo[k]Fluoranthene,LB
+37187,6.350318e-06,Mercury,LB
+37187,1.0372512,Acetaldehyde,LB
+37183,127.95148,Toluene,LB
+37183,0.07001204,Pyrene,LB
+37183,0.0008264032,"Dibenzo[a,h]Anthracene",LB
+37183,0.019552302,Benz[a]Anthracene,LB
+37183,0.2202522,Phenanthrene,LB
+37183,0.02781927,Methane,TON
+37183,22.6593,Carbon Monoxide,TON
+37183,1603.039,Carbon Dioxide,TON
+37183,0.6810904,Volatile Organic Compounds,TON
+37181,1.3875606,Styrene,LB
+37181,7.55628,Acrolein,LB
+37181,6.237314,Toluene,LB
+37181,5.12134,Propionaldehyde,LB
+37181,0.02144802,Benzo[b]Fluoranthene,LB
+37181,0.002930054,Benzo[k]Fluoranthene,LB
+37181,0.0719434,Benzo[a]Pyrene,LB
+37181,0.002705488,Arsenic,LB
+37181,10.469828,Naphthalene,LB
+37181,1.319918,Styrene,LB
+37181,0.6812724,Pyrene,LB
+37181,0.002484052,"Benzo[g,h,i,]Perylene",LB
+37181,82.79388,Formaldehyde,LB
+37181,1.9657498,"2,2,4-Trimethylpentane",LB
+37181,1.17075e-05,Mercury,LB
+37181,0.0111453,Nickel,LB
+37181,0.193478,PM25-Primary from certain diesel engines,TON
+37181,0.001528568,Nitrous Oxide,TON
+37181,9.496516,Styrene,LB
+37181,21.35482,"1,3-Butadiene",LB
+37181,0.002343638,"Dibenzo[a,h]Anthracene",LB
+37181,60.49986,Benzene,LB
+37181,3686.73,Carbon Dioxide,TON
+37181,0.001136111,Nitrate portion of PM2.5-PRI,TON
+37181,0.04164943,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.01252185,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.17854234,Anthracene,LB
+37185,0.00588857,Benzo[b]Fluoranthene,LB
+37185,0.01975027,Benzo[a]Pyrene,LB
+37185,5.201794,Benzene,LB
+37185,8.20676e-06,Mercury,LB
+37185,0.08649234,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.0008559688,Nitrous Oxide,TON
+37195,1.2623168,Fluoranthene,LB
+37195,0.11693382,Benzo[a]Pyrene,LB
+37195,0.0202375,Nickel,LB
+37195,1389.071,Carbon Dioxide,TON
+37195,0.02633367,Ammonia,TON
+37195,0.1647017,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.4382052,PM2.5 Primary (Filt + Cond),TON
+37187,0.0019440404,Styrene,LB
+37187,0.008236492,"1,3-Butadiene",LB
+37187,0.15670898,Toluene,LB
+37187,7.660494e-05,Benzo[k]Fluoranthene,LB
+37187,0.0005784337,PM10 Primary (Filt + Cond),TON
+37187,0.04976374,Hexane,LB
+37187,0.13437842,Xylenes (Mixed Isomers),LB
+37187,0.0013291884,Benzo[a]Pyrene,LB
+37187,4.31431e-07,Mercury,LB
+37187,0.02348756,Phenanthrene,LB
+37187,19.94612,Carbon Dioxide,TON
+37187,0.0004240318,Ammonia,TON
+37187,0.000772347,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,22250.48,Ethyl Benzene,LB
+37067,33850.82,Benzene,LB
+37067,11592.93,Acetaldehyde,LB
+37073,3.887552e-05,Benzo[b]Fluoranthene,LB
+37073,1.3290634e-06,"Dibenzo[a,h]Anthracene",LB
+37073,3.755402e-06,Nickel,LB
+37073,5.758284e-06,Arsenic,LB
+37073,0.03410934,Acetaldehyde,LB
+37073,0.0006041262,Phenanthrene,LB
+37021,0.01691396,Benzo[b]Fluoranthene,LB
+37021,0.001270448,Nickel,LB
+37021,0.07606616,Fluorene,LB
+37021,0.02653582,Methane,TON
+37021,1.476154,Nitrogen Oxides,TON
+37041,5.898872e-05,Mercury,LB
+37041,0.018363016,Acenaphthene,LB
+37041,0.001838306,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.6002431,Nitrogen Oxides,TON
+37041,0.002396282,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,75.85294,Toluene,LB
+37041,5.484126,Formaldehyde,LB
+37041,0.007106522,Benzo[a]Pyrene,LB
+37041,16.529282,"2,2,4-Trimethylpentane",LB
+37059,2.254466e-06,Chromium (VI),LB
+37059,1.364435e-05,"Dibenzo[a,h]Anthracene",LB
+37059,0.0004321132,Arsenic,LB
+37059,39.1882,Carbon Dioxide,TON
+37059,0.0001489393,Elemental Carbon portion of PM2.5-PRI,TON
+37059,2.385742e-05,Sulfate Portion of PM2.5-PRI,TON
+37059,0.01775594,Volatile Organic Compounds,TON
+37081,3.063104,Fluoranthene,LB
+37081,853.6154,Formaldehyde,LB
+37081,0.04528588,Benzo[a]Pyrene,LB
+37081,75.61732,Benzene,LB
+37139,0.2003427,Nitrogen Oxides,TON
+37139,0.0003386343,Sulfur Dioxide,TON
+37139,0.077034,Styrene,LB
+37139,0.00014523182,"Dibenzo[a,h]Anthracene",LB
+37163,0.0404201,Nickel,LB
+37163,1.5440872,Fluorene,LB
+37163,16.81788,Carbon Monoxide,TON
+37163,0.3748895,PM10 Primary (Filt + Cond),TON
+37163,0.016418,Sulfur Dioxide,TON
+37163,9.080898,Ethyl Benzene,LB
+37163,18.355104,Xylenes (Mixed Isomers),LB
+37099,4.786992e-06,Manganese,LB
+37099,0.4025255,Carbon Dioxide,TON
+37099,8.04447e-05,"Benzo[g,h,i,]Perylene",LB
+37099,3.022474e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,2.114562e-05,Benzo[k]Fluoranthene,LB
+37197,3.995938,Fluoranthene,LB
+37197,0.015353976,Benzo[k]Fluoranthene,LB
+37197,7602.398,Carbon Dioxide,TON
+37197,2.025512,PM10 Primary (Filt + Cond),TON
+37197,0.05846598,Sulfate Portion of PM2.5-PRI,TON
+37189,9.652846,Ethyl Benzene,LB
+37187,0.2590654,Pyrene,LB
+37187,0.04163654,Benz[a]Anthracene,LB
+37187,2457.552,Hexane,LB
+37187,0.8471426,Benzo[k]Fluoranthene,LB
+37187,1.877187,Methane,TON
+37187,33323.94,Carbon Dioxide,TON
+37187,0.003107349,Nitrate portion of PM2.5-PRI,TON
+37197,1.5307148e-05,Pyrene,LB
+37197,6.807918e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,1.5624764e-07,"Dibenzo[a,h]Anthracene",LB
+37197,3.871314e-06,Benz[a]Anthracene,LB
+37197,9.402002e-09,Mercury,LB
+37197,8.848906e-06,Acenaphthene,LB
+37197,0.0004599502,Naphthalene,LB
+37197,9.348823e-06,PM10 Primary (Filt + Cond),TON
+37197,6.638704e-06,PM2.5 Primary (Filt + Cond),TON
+37193,0.001688362,Ammonia,TON
+37193,0.01161718,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.004735491,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.0605252,Volatile Organic Compounds,TON
+37193,0.0005049146,"Benzo[g,h,i,]Perylene",LB
+37193,0.002493882,Benzo[b]Fluoranthene,LB
+37193,0.016016012,Chrysene,LB
+37193,0.0003405944,"Dibenzo[a,h]Anthracene",LB
+37193,1.1358124,Naphthalene,LB
+37193,78.36505,Carbon Dioxide,TON
+37185,0.12331694,Styrene,LB
+37185,0.6327336,Toluene,LB
+37185,0.225814,Hexane,LB
+37185,0.0016877006,Benzo[b]Fluoranthene,LB
+37185,0.019112994,Benz[a]Anthracene,LB
+37185,0.8336012,Benzene,LB
+37185,0.0018427494,Nickel,LB
+37185,0.00375084,Ammonia,TON
+37185,0.04474854,PM2.5 Primary (Filt + Cond),TON
+37067,27.31876,Hexane,LB
+37067,459.4698,Acetaldehyde,LB
+37067,1.230017,PM10-Primary from certain diesel engines,TON
+37067,0.195649,Organic Carbon portion of PM2.5-PRI,TON
+37067,1.188062,PM2.5 Primary (Filt + Cond),TON
+37135,0.1286556,Nickel,LB
+37135,235.0032,Acetaldehyde,LB
+37135,1.541808,Acenaphthene,LB
+37135,58.73268,Naphthalene,LB
+37135,57.90752,Carbon Monoxide,TON
+37135,0.1097566,PM25-Primary from certain diesel engines,TON
+37135,2.921171,Volatile Organic Compounds,TON
+37111,8.229088,Toluene,LB
+37111,0.3261166,Anthracene,LB
+37111,0.654833,Pyrene,LB
+37111,120.69224,Formaldehyde,LB
+37111,0.09058036,Benz[a]Anthracene,LB
+37111,11.324016,Benzene,LB
+37111,0.0160599,Manganese,LB
+37111,0.3926766,Acenaphthene,LB
+37111,7.346934,Carbon Monoxide,TON
+37111,2.619376,Nitrogen Oxides,TON
+37005,0.00500151,Nickel,LB
+37005,0.2680334,Fluorene,LB
+37005,0.03800783,PM10-Primary from certain diesel engines,TON
+37005,0.02701012,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.0008470467,Nitrous Oxide,TON
+37005,3.690026,Xylenes (Mixed Isomers),LB
+37005,0.2638568,Acenaphthylene,LB
+37005,0.0310664,Benz[a]Anthracene,LB
+37007,0.3311306,"1,3-Butadiene",LB
+37007,0.2702376,Hexane,LB
+37007,0.00048882,"Benzo[g,h,i,]Perylene",LB
+37007,0.015478378,Chrysene,LB
+37007,0.275338,"2,2,4-Trimethylpentane",LB
+37007,3.397738e-06,Mercury,LB
+37007,1.1595632,Naphthalene,LB
+37007,0.002229576,Sulfur Dioxide,TON
+37007,0.06022814,Volatile Organic Compounds,TON
+37089,0.003094256,Fluorene,LB
+37089,1.651365,Nitrogen Oxides,TON
+37089,1.7658532,Acrolein,LB
+37089,0.0009137432,Anthracene,LB
+37089,0.002194888,Fluoranthene,LB
+37089,0.0009684403,Sulfur Dioxide,TON
+37177,0.002314194,Manganese,LB
+37177,0.0007908876,Arsenic,LB
+37177,0.9346844,"1,3-Butadiene",LB
+37177,30.20776,Toluene,LB
+37177,4.126298e-06,Chromium (VI),LB
+37177,0.00266796,Chrysene,LB
+37177,0.1488901,Volatile Organic Compounds,TON
+37189,5.425422,Toluene,LB
+37189,0.000567994,Benzo[b]Fluoranthene,LB
+37189,0.0005649586,Chrysene,LB
+37189,1.016513,Carbon Monoxide,TON
+37189,0.000167136,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.000927033,Ammonia,TON
+37189,0.0004762394,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.9499718,Anthracene,LB
+37181,0.01251003,"Benzo[g,h,i,]Perylene",LB
+37181,3.210564,Phenanthrene,LB
+37181,0.292027,Organic Carbon portion of PM2.5-PRI,TON
+37181,1.20974,PM2.5 Primary (Filt + Cond),TON
+37181,0.03276447,Sulfur Dioxide,TON
+37181,0.02286576,Sulfate Portion of PM2.5-PRI,TON
+37179,0.6569672,Fluorene,LB
+37179,2.40325,Carbon Monoxide,TON
+37179,0.004048826,Nitrous Oxide,TON
+37179,0.1073856,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.2533768,PM2.5 Primary (Filt + Cond),TON
+37179,0.05303269,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.543366,Volatile Organic Compounds,TON
+37179,1.2348298,Styrene,LB
+37179,0.9601364,Pyrene,LB
+37179,3.022058e-05,Chromium (VI),LB
+37179,0.004436414,"Benzo[g,h,i,]Perylene",LB
+37179,0.0221677,Benzo[b]Fluoranthene,LB
+37179,0.003040236,"Dibenzo[a,h]Anthracene",LB
+37173,1.992243e-08,Chromium (VI),LB
+37173,3.695748e-05,Benz[a]Anthracene,LB
+37173,0.000774422,Naphthalene,LB
+37173,8.007773e-07,Nitrate portion of PM2.5-PRI,TON
+37173,0.2721432,Nitrogen Oxides,TON
+37173,0.0003129031,Sulfur Dioxide,TON
+37173,3.981444e-05,Sulfate Portion of PM2.5-PRI,TON
+37193,117.98474,Hexane,LB
+37193,0.0150696,Manganese,LB
+37193,38.5811,Acetaldehyde,LB
+37193,5.973584,Naphthalene,LB
+37185,0.005075284,Benzo[k]Fluoranthene,LB
+37185,1.8729324,Pyrene,LB
+37185,0.00010234624,Chromium (VI),LB
+37185,0.680211,Acenaphthene,LB
+37185,1.085508,PM10-Primary from certain diesel engines,TON
+37185,0.7073048,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.1225291,Ammonia,TON
+37185,0.002119226,Nitrate portion of PM2.5-PRI,TON
+37185,21.65272,Hexane,LB
+37195,31.91184,Benzene,LB
+37191,0.5586772,Benz[a]Anthracene,LB
+37191,2.811398,Phenanthrene,LB
+37191,1.6194932,Fluorene,LB
+37191,0.03264943,Ammonia,TON
+37191,8.936093,Nitrogen Oxides,TON
+37191,0.1035267,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.01412533,Sulfur Dioxide,TON
+37189,3066.288,Toluene,LB
+37189,0.868288,Anthracene,LB
+37189,1.6905612,Pyrene,LB
+37189,354.9496,Acetaldehyde,LB
+37189,2.057862,Fluorene,LB
+37189,0.001182726,Nitrate portion of PM2.5-PRI,TON
+37189,1.242694,PM10 Primary (Filt + Cond),TON
+37189,0.2733067,Sulfur Dioxide,TON
+37187,5.910626,Acrolein,LB
+37187,0.003454444,"Benzo[g,h,i,]Perylene",LB
+37187,0.427162,Acenaphthylene,LB
+37187,0.10894726,Chrysene,LB
+37187,72.77536,Formaldehyde,LB
+37187,7.02567,Benzene,LB
+37187,0.021852,Manganese,LB
+37187,1197.358,Carbon Dioxide,TON
+37187,0.00143139,Nitrous Oxide,TON
+37187,0.0170153,Ammonia,TON
+37187,0.4458366,PM10 Primary (Filt + Cond),TON
+37187,0.03442084,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.0002464954,Chromium (VI),LB
+37183,0.2640414,Benzo[a]Pyrene,LB
+37183,23.25954,"2,2,4-Trimethylpentane",LB
+37183,0.5214974,Manganese,LB
+37183,0.0002701074,Mercury,LB
+37183,0.11381034,Nickel,LB
+37183,363.768,Acetaldehyde,LB
+37183,32.42901,Carbon Monoxide,TON
+37183,41949.68,Toluene,LB
+37183,10875.83,Hexane,LB
+37183,18.594568,Fluoranthene,LB
+37179,47.16422,Toluene,LB
+37173,4.94559,Xylenes (Mixed Isomers),LB
+37173,0.004671576,"Benzo[g,h,i,]Perylene",LB
+37173,0.003236984,Fluoranthene,LB
+37173,0.0017420524,Benzo[a]Pyrene,LB
+37173,0.0008243248,Manganese,LB
+37173,0.002033703,PM2.5 Primary (Filt + Cond),TON
+37173,0.001083705,Sulfur Dioxide,TON
+37095,0.0006691058,Sulfate Portion of PM2.5-PRI,TON
+37095,0.1970012,Styrene,LB
+37095,0.9872478,Toluene,LB
+37095,0.00058346,"Benzo[g,h,i,]Perylene",LB
+37095,0.0003810912,"Dibenzo[a,h]Anthracene",LB
+37095,1.7847422e-06,Mercury,LB
+37095,0.005423872,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,1.613619,Phenanthrene,LB
+37089,0.3057092,PM25-Primary from certain diesel engines,TON
+37089,0.3316368,PM2.5 Primary (Filt + Cond),TON
+37079,4.658956,"1,3-Butadiene",LB
+37079,1.4803922,Pyrene,LB
+37079,0.008199406,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.006032648,Arsenic,LB
+37079,1.745884,Phenanthrene,LB
+37079,15.192402,Naphthalene,LB
+37079,0.6991416,PM10-Primary from certain diesel engines,TON
+37079,0.002636636,Nitrous Oxide,TON
+37079,0.01909516,Sulfur Dioxide,TON
+37079,0.01230005,Sulfate Portion of PM2.5-PRI,TON
+37073,1.040491,Ethyl Benzene,LB
+37073,0.0013849234,"Benzo[g,h,i,]Perylene",LB
+37073,0.000915807,"Dibenzo[a,h]Anthracene",LB
+37073,1.223069,Carbon Monoxide,TON
+37073,0.03235362,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.001543751,Sulfate Portion of PM2.5-PRI,TON
+37059,0.005636468,Anthracene,LB
+37059,0.12272258,Propionaldehyde,LB
+37059,0.01129017,Pyrene,LB
+37059,0.003651804,Benzo[k]Fluoranthene,LB
+37059,0.006398426,Acenaphthene,LB
+37059,0.012960362,Fluorene,LB
+37049,0.002883054,"Benzo[g,h,i,]Perylene",LB
+37049,19.561338,Benzene,LB
+37037,1955.841,Formaldehyde,LB
+37037,1.3405196,Benz[a]Anthracene,LB
+37037,0.2297534,Manganese,LB
+37037,109.1998,Carbon Monoxide,TON
+37037,1.674594,PM10-Primary from certain diesel engines,TON
+37037,0.2405885,Organic Carbon portion of PM2.5-PRI,TON
+37025,195.36588,Acrolein,LB
+37025,77.08048,Hexane,LB
+37025,107.06248,Propionaldehyde,LB
+37025,1.749936,Manganese,LB
+37025,8.609859,PM10-Primary from certain diesel engines,TON
+37025,4.792567,Elemental Carbon portion of PM2.5-PRI,TON
+37025,1.296334,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,12.75788,Volatile Organic Compounds,TON
+37025,48.51266,Toluene,LB
+37025,0.08851268,Benzo[a]Pyrene,LB
+37025,0.01873077,Nitrous Oxide,TON
+37025,13.99449,Nitrogen Oxides,TON
+37025,21.34382,Ethyl Benzene,LB
+37013,0.07982524,Styrene,LB
+37013,0.14437384,Hexane,LB
+37013,0.1237169,Carbon Monoxide,TON
+37013,0.000139084,Nitrous Oxide,TON
+37013,0.0004132145,Sulfur Dioxide,TON
+37015,0.0008564498,Acrolein,LB
+37015,4.733288e-07,"Dibenzo[a,h]Anthracene",LB
+37015,0.04563254,Benzene,LB
+37015,4.72338e-08,Mercury,LB
+37015,0.02022532,Carbon Monoxide,TON
+37015,2.100785e-05,PM2.5 Primary (Filt + Cond),TON
+37009,17.34038,Volatile Organic Compounds,TON
+37005,1.3211408,Propionaldehyde,LB
+37005,2.281498,Benzene,LB
+37005,0.004196868,Manganese,LB
+37005,2.910216e-06,Mercury,LB
+37005,0.02918679,Elemental Carbon portion of PM2.5-PRI,TON
+37005,1.706259,Nitrogen Oxides,TON
+37067,0.1786156,Volatile Organic Compounds,TON
+37067,0.00690864,Arsenic,LB
+37049,0.005945114,Manganese,LB
+37049,294.1835,Carbon Dioxide,TON
+37049,1.414382e-05,Nitrate portion of PM2.5-PRI,TON
+37049,0.13753,Nitrogen Oxides,TON
+37049,0.008938284,Sulfur Dioxide,TON
+37049,0.1329066,Volatile Organic Compounds,TON
+37049,0.2361342,"1,3-Butadiene",LB
+37049,0.009749936,"Benzo[g,h,i,]Perylene",LB
+37049,0.002776002,Fluoranthene,LB
+37049,0.007340382,Acenaphthylene,LB
+37049,0.003614984,Benzo[a]Pyrene,LB
+37049,2.129352,"2,2,4-Trimethylpentane",LB
+37017,0.02679076,"1,3-Butadiene",LB
+37017,0.02289446,Acrolein,LB
+37017,0.6531568,Benzene,LB
+37017,2.294996e-05,Mercury,LB
+37017,0.0004512454,Fluorene,LB
+37017,0.0005404507,Nitrous Oxide,TON
+37017,3.68169,Styrene,LB
+37017,5.813302,"2,2,4-Trimethylpentane",LB
+37017,106.36222,Acetaldehyde,LB
+37017,0.004701258,Nitrous Oxide,TON
+37017,0.05497012,Ammonia,TON
+37013,0.03736404,Ethyl Benzene,LB
+37013,1.3672204e-06,Nickel,LB
+37011,0.9192406,Acrolein,LB
+37011,0.03954032,Anthracene,LB
+37011,0.04627204,Acenaphthene,LB
+37011,1.483037,Nitrogen Oxides,TON
+37011,0.04736631,PM10 Primary (Filt + Cond),TON
+37027,0.003945541,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.014532686,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.006043722,Chrysene,LB
+37027,0.0003336332,"Dibenzo[a,h]Anthracene",LB
+37027,0.006796958,Benz[a]Anthracene,LB
+37027,0.008061914,Acenaphthene,LB
+37027,0.05625778,Methane,TON
+37189,1.497223,Volatile Organic Compounds,TON
+37189,6.603276,Hexane,LB
+37189,1.4388498,Pyrene,LB
+37189,0.003923908,"Benzo[g,h,i,]Perylene",LB
+37189,0.002444402,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.03546734,Nickel,LB
+37189,0.8414314,Acenaphthene,LB
+37189,2.327056,Phenanthrene,LB
+37189,0.0006286164,Nitrate portion of PM2.5-PRI,TON
+37073,234.2056,Xylenes (Mixed Isomers),LB
+37073,6.774858e-05,Chromium (VI),LB
+37073,0.0264236,Benzo[b]Fluoranthene,LB
+37073,76.27852,"2,2,4-Trimethylpentane",LB
+37073,0.1087274,Acenaphthene,LB
+37073,0.008777563,Elemental Carbon portion of PM2.5-PRI,TON
+37063,162.65036,Naphthalene,LB
+37063,6.643666,PM10-Primary from certain diesel engines,TON
+37063,169.1849,Nitrogen Oxides,TON
+37063,10.11645,PM10 Primary (Filt + Cond),TON
+37063,7.972163,Volatile Organic Compounds,TON
+37063,133.97414,Toluene,LB
+37063,40.08894,Hexane,LB
+37063,0.2479956,Benzo[b]Fluoranthene,LB
+37063,1.621832,Chrysene,LB
+37063,0.8306308,Benzo[a]Pyrene,LB
+37145,0.0005896628,Pyrene,LB
+37145,57.11138,Formaldehyde,LB
+37145,1.6872456e-05,Mercury,LB
+37189,8.00013e-05,Anthracene,LB
+37189,0.9161348,Propionaldehyde,LB
+37189,1.2698964e-05,"Benzo[g,h,i,]Perylene",LB
+37189,0.0001937312,Fluoranthene,LB
+37189,2.622028,Acetaldehyde,LB
+37189,0.4619093,Carbon Monoxide,TON
+37189,68.81838,Carbon Dioxide,TON
+37189,0.00130625,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.7103128,Fluoranthene,LB
+37183,0.13500974,Chrysene,LB
+37183,0.10166072,Manganese,LB
+37183,0.2905952,Acenaphthene,LB
+37183,0.5414981,PM2.5 Primary (Filt + Cond),TON
+37057,3.672122e-05,Mercury,LB
+37057,43.13344,Acetaldehyde,LB
+37057,0.6797712,Fluoranthene,LB
+37057,0.002704652,Benzo[k]Fluoranthene,LB
+37155,49.79612,Toluene,LB
+37155,5.81168,Hexane,LB
+37155,0.4771548,Volatile Organic Compounds,TON
+37191,0.008155756,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.02572486,Chrysene,LB
+37191,0.004670394,Benzo[a]Pyrene,LB
+37191,10.42606,Benzene,LB
+37191,4.790024e-05,Mercury,LB
+37153,1.357761,Styrene,LB
+37153,4.900338,Propionaldehyde,LB
+37153,0.010686124,Benzo[b]Fluoranthene,LB
+37153,0.03584224,Benzo[a]Pyrene,LB
+37075,0.09936606,Volatile Organic Compounds,TON
+37075,0.9073364,Ethyl Benzene,LB
+37075,0.19440842,"1,3-Butadiene",LB
+37075,0.0010551128,Chrysene,LB
+37075,5.613208e-05,"Dibenzo[a,h]Anthracene",LB
+37069,1.8033312,Propionaldehyde,LB
+37069,0.008772162,Arsenic,LB
+37069,0.04210216,Phenanthrene,LB
+37069,0.01688306,Nitrous Oxide,TON
+37069,0.06711206,PM10 Primary (Filt + Cond),TON
+37069,0.5048724,Volatile Organic Compounds,TON
+37019,35.48844,Toluene,LB
+37019,0.0013335578,Mercury,LB
+37019,0.016627902,Nickel,LB
+37019,0.007915205,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.07253574,Sulfur Dioxide,TON
+37019,0.0611707,Styrene,LB
+37019,0.03963446,Acrolein,LB
+37019,1.9958066,"2,2,4-Trimethylpentane",LB
+37019,0.013658658,Phenanthrene,LB
+37019,0.0001962364,Elemental Carbon portion of PM2.5-PRI,TON
+37019,2.677119e-06,Nitrate portion of PM2.5-PRI,TON
+37019,0.05566485,Nitrogen Oxides,TON
+37019,2.520895e-05,Sulfate Portion of PM2.5-PRI,TON
+37019,0.04499029,Volatile Organic Compounds,TON
+37015,0.0323492,Phenanthrene,LB
+37015,0.001088056,Sulfur Dioxide,TON
+37015,0.00491246,Fluorene,LB
+37015,1.17223,Carbon Monoxide,TON
+37015,0.001474991,PM2.5 Primary (Filt + Cond),TON
+37015,4.126593e-05,Sulfate Portion of PM2.5-PRI,TON
+37015,0.002829966,"Benzo[g,h,i,]Perylene",LB
+37015,0.0007531372,Benzo[b]Fluoranthene,LB
+37011,1283.5258,Hexane,LB
+37011,1.2297324,Anthracene,LB
+37011,0.1812836,Nickel,LB
+37011,1.713725,PM10 Primary (Filt + Cond),TON
+37005,0.0765571,Ethyl Benzene,LB
+37005,0.0002093472,Pyrene,LB
+37005,0.0001390191,"Benzo[g,h,i,]Perylene",LB
+37005,5.223296e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,3.746394e-05,Benz[a]Anthracene,LB
+37005,3.571096e-06,Arsenic,LB
+37005,0.00650112,Naphthalene,LB
+37005,1.219485e-06,Sulfate Portion of PM2.5-PRI,TON
+37003,2.586248e-06,Chromium (VI),LB
+37003,0.07231764,Fluoranthene,LB
+37003,0.0002939232,Benzo[k]Fluoranthene,LB
+37003,0.05009286,Acenaphthylene,LB
+37003,0.0002930584,"Dibenzo[a,h]Anthracene",LB
+37003,0.002608936,Ammonia,TON
+37003,0.6362044,Toluene,LB
+37003,1.2620166,Ethyl Benzene,LB
+37003,0.0002179972,Benzo[b]Fluoranthene,LB
+37051,0.6248146,Acrolein,LB
+37051,0.0265248,Acenaphthylene,LB
+37051,0.00619704,Chrysene,LB
+37051,0.01201525,Nickel,LB
+37033,1.9002738,"2,2,4-Trimethylpentane",LB
+37017,0.13164692,"1,3-Butadiene",LB
+37017,0.001819218,Pyrene,LB
+37017,0.001606698,Fluoranthene,LB
+37017,0.0019051636,Benzo[a]Pyrene,LB
+37017,0.0008845418,Benz[a]Anthracene,LB
+37017,0.002514518,Manganese,LB
+37017,0.0004985744,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.18378526,Ethyl Benzene,LB
+37009,0.04895934,"1,3-Butadiene",LB
+37009,0.0004794244,Benzo[a]Pyrene,LB
+37009,0.0002330842,Benz[a]Anthracene,LB
+37145,4.754356,Hexane,LB
+37145,15.133492,Benzene,LB
+37145,5.208054,Carbon Monoxide,TON
+37017,32.82864,Naphthalene,LB
+37017,1.25633,PM25-Primary from certain diesel engines,TON
+37017,0.1237602,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.0891653,Sulfur Dioxide,TON
+37017,0.06944752,Sulfate Portion of PM2.5-PRI,TON
+37017,1.672445,Volatile Organic Compounds,TON
+37017,0.17477108,Benzo[a]Pyrene,LB
+37013,1.415111,Styrene,LB
+37013,3.165726,"1,3-Butadiene",LB
+37013,7.373168,Acrolein,LB
+37013,0.3038922,Anthracene,LB
+37013,0.0027069,"Benzo[g,h,i,]Perylene",LB
+37013,0.0110484,Benzo[b]Fluoranthene,LB
+37013,0.03705758,Benzo[a]Pyrene,LB
+37013,0.0015102898,"Dibenzo[a,h]Anthracene",LB
+37013,0.9819176,Phenanthrene,LB
+37013,0.1253597,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.02489982,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,2.701746,Anthracene,LB
+37021,60.84942,Propionaldehyde,LB
+37021,3195.92,Benzene,LB
+37021,0.4047742,Nickel,LB
+37021,760.5993,Carbon Monoxide,TON
+37021,1.998162,PM2.5 Primary (Filt + Cond),TON
+37019,63.07156,Acrolein,LB
+37019,1.1417928,Chrysene,LB
+37019,0.3222424,Manganese,LB
+37019,0.7210201,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.004223056,Fluoranthene,LB
+37011,0.002899196,Acenaphthene,LB
+37011,1.816804,Carbon Monoxide,TON
+37011,0.001271838,Ammonia,TON
+37011,0.07083512,Acrolein,LB
+37011,0.00247643,Anthracene,LB
+37005,209.4056,Ethyl Benzene,LB
+37005,6.083775,Volatile Organic Compounds,TON
+37003,0.03784638,Chrysene,LB
+37003,2.151026,Benzene,LB
+37003,0.002800786,Nickel,LB
+37003,0.0009641746,Arsenic,LB
+37003,0.05918543,PM25-Primary from certain diesel engines,TON
+37179,0.004353438,"Benzo[g,h,i,]Perylene",LB
+37179,0.0004651078,Manganese,LB
+37179,0.005068864,Anthracene,LB
+37179,13.672588,Xylenes (Mixed Isomers),LB
+37197,0.010960212,Fluorene,LB
+37197,0.002318017,Elemental Carbon portion of PM2.5-PRI,TON
+37197,3.339562e-05,Nitrate portion of PM2.5-PRI,TON
+37197,0.7234109,Nitrogen Oxides,TON
+37197,0.01784961,Sulfur Dioxide,TON
+37197,0.0003568345,Sulfate Portion of PM2.5-PRI,TON
+37197,0.02827176,"Benzo[g,h,i,]Perylene",LB
+37197,0.0249969,Acenaphthylene,LB
+37193,16.854106,Hexane,LB
+37193,0.02055606,"Benzo[g,h,i,]Perylene",LB
+37193,0.005688948,Benzo[b]Fluoranthene,LB
+37193,22.64962,Benzene,LB
+37193,0.01438414,Methane,TON
+37183,0.002131142,"Dibenzo[a,h]Anthracene",LB
+37183,10.677664,Phenanthrene,LB
+37183,1.611639,Methane,TON
+37183,11286.47,Carbon Dioxide,TON
+37183,0.001423571,Nitrate portion of PM2.5-PRI,TON
+37199,0.4463752,Phenanthrene,LB
+37199,5.64889,Naphthalene,LB
+37199,0.04821055,PM10-Primary from certain diesel engines,TON
+37199,0.01039652,Ammonia,TON
+37199,8.748065e-05,Nitrate portion of PM2.5-PRI,TON
+37199,0.006530254,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.04576051,PM2.5 Primary (Filt + Cond),TON
+37199,0.002571379,Sulfur Dioxide,TON
+37199,4.050548,Acrolein,LB
+37199,3.663386,Toluene,LB
+37199,0.0012041612,Benzo[b]Fluoranthene,LB
+37199,1.3252614,"2,2,4-Trimethylpentane",LB
+37199,4.963212,Benzene,LB
+37199,0.6052734,Volatile Organic Compounds,TON
+37197,0.02481324,Ethyl Benzene,LB
+37197,0.017967872,"1,3-Butadiene",LB
+37197,5.049692e-05,Benz[a]Anthracene,LB
+37197,0.0009809378,Manganese,LB
+37197,0.3539088,Nitrogen Oxides,TON
+37197,0.001962472,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.00301533,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,8.68599e-05,Chromium (VI),LB
+37195,0.06512424,"Benzo[g,h,i,]Perylene",LB
+37195,0.08814263,Methane,TON
+37195,0.03830512,Ethyl Benzene,LB
+37195,0.0005910544,Anthracene,LB
+37195,7.320842,Propionaldehyde,LB
+37195,0.002953518,Pyrene,LB
+37195,0.002025374,Acenaphthylene,LB
+37195,0.01230967,Nitrous Oxide,TON
+37195,0.2394038,Volatile Organic Compounds,TON
+37183,0.3069642,Benzo[a]Pyrene,LB
+37183,1.8181382,Benz[a]Anthracene,LB
+37183,1059.4794,Acetaldehyde,LB
+37183,2.366221,PM25-Primary from certain diesel engines,TON
+37183,0.1534926,Sulfate Portion of PM2.5-PRI,TON
+37141,4.590716,Anthracene,LB
+37141,89.62496,Propionaldehyde,LB
+37141,718.5102,Acetaldehyde,LB
+37141,0.05265364,Sulfate Portion of PM2.5-PRI,TON
+37129,57.25952,"1,3-Butadiene",LB
+37129,141.83992,Acrolein,LB
+37129,0.07437418,Benzo[b]Fluoranthene,LB
+37129,0.010321096,Benzo[k]Fluoranthene,LB
+37129,0.7455942,Chrysene,LB
+37129,0.3232154,Manganese,LB
+37129,0.08402158,Arsenic,LB
+37129,1.529569,PM25-Primary from certain diesel engines,TON
+37129,0.3904813,Ammonia,TON
+37123,0.00011668304,Anthracene,LB
+37123,4.18484e-08,Chromium (VI),LB
+37123,0.0006109098,Acenaphthylene,LB
+37123,9.238278e-05,Methane,TON
+37123,2.699468,Carbon Dioxide,TON
+37123,3.080991e-07,Nitrate portion of PM2.5-PRI,TON
+37109,7.354926,Styrene,LB
+37109,1.7713372,Anthracene,LB
+37109,0.0192897,"Benzo[g,h,i,]Perylene",LB
+37109,77.88178,Naphthalene,LB
+37109,34097.98,Carbon Dioxide,TON
+37109,2.624648,PM25-Primary from certain diesel engines,TON
+37109,0.2883639,Sulfur Dioxide,TON
+37107,6.416123e-05,Nitrous Oxide,TON
+37107,1.008033e-06,Nitrate portion of PM2.5-PRI,TON
+37107,0.01407549,Nitrogen Oxides,TON
+37107,0.000953205,"Benzo[g,h,i,]Perylene",LB
+37107,0.002060574,Acenaphthylene,LB
+37097,19.360468,"1,3-Butadiene",LB
+37097,0.009632712,"Benzo[g,h,i,]Perylene",LB
+37097,0.006466502,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.3796431,Methane,TON
+37097,0.001631079,Nitrate portion of PM2.5-PRI,TON
+37097,0.03695539,Sulfate Portion of PM2.5-PRI,TON
+37091,0.0014902712,Arsenic,LB
+37091,5.90531,Naphthalene,LB
+37091,0.02224465,Methane,TON
+37091,2.234567,Carbon Monoxide,TON
+37091,0.1269824,PM25-Primary from certain diesel engines,TON
+37091,0.05357235,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.0006782551,Nitrate portion of PM2.5-PRI,TON
+37091,0.187646,Anthracene,LB
+37091,0.002305388,"Benzo[g,h,i,]Perylene",LB
+37091,0.3996224,Fluoranthene,LB
+37103,2838.484,Hexane,LB
+37103,3.432354,Anthracene,LB
+37103,82.76652,Propionaldehyde,LB
+37103,3.668158,"Benzo[g,h,i,]Perylene",LB
+37103,5.849202,Fluoranthene,LB
+37103,0.5288336,Arsenic,LB
+37095,47.6861,Formaldehyde,LB
+37095,0.01289534,Nickel,LB
+37095,0.2548958,Pyrene,LB
+37095,0.03780346,Benzo[b]Fluoranthene,LB
+37095,0.03881952,Chrysene,LB
+37095,0.1541628,Acenaphthene,LB
+37095,0.0793801,Nitrous Oxide,TON
+37093,0.015912722,Ethyl Benzene,LB
+37093,1.4330512e-05,"Benzo[g,h,i,]Perylene",LB
+37093,0.10036904,Propionaldehyde,LB
+37093,0.001527828,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.0011997892,Benzo[k]Fluoranthene,LB
+37093,4.065158e-05,Arsenic,LB
+37093,0.0007422182,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.000182078,Sulfur Dioxide,TON
+37093,2.963608e-05,Sulfate Portion of PM2.5-PRI,TON
+37087,0.4011628,Fluoranthene,LB
+37087,0.02414658,Benzo[a]Pyrene,LB
+37087,0.0009890866,"Dibenzo[a,h]Anthracene",LB
+37087,0.511637,Pyrene,LB
+37087,30.54372,Acetaldehyde,LB
+37087,0.1459756,PM25-Primary from certain diesel engines,TON
+37087,0.09442028,Elemental Carbon portion of PM2.5-PRI,TON
+37083,4.789154,"1,3-Butadiene",LB
+37083,7.92553,Toluene,LB
+37083,7.26114,Xylenes (Mixed Isomers),LB
+37083,0.836829,Fluoranthene,LB
+37083,60.05732,Acetaldehyde,LB
+37083,0.912105,Fluorene,LB
+37083,1354.35,Carbon Dioxide,TON
+37083,0.350145,PM10-Primary from certain diesel engines,TON
+37083,0.2230464,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.1030815,Styrene,LB
+37079,0.0003192808,"Benzo[g,h,i,]Perylene",LB
+37079,0.05492416,Fluoranthene,LB
+37079,0.003342488,Manganese,LB
+37079,0.002939534,Ammonia,TON
+37079,0.8248918,Nitrogen Oxides,TON
+37079,0.13864106,Phenanthrene,LB
+37079,0.08504798,Fluorene,LB
+37079,141.1699,Carbon Dioxide,TON
+37079,0.0001736464,Nitrous Oxide,TON
+37079,0.003099033,Ammonia,TON
+37079,0.001218091,Sulfur Dioxide,TON
+37079,0.4390316,Hexane,LB
+37079,0.0008419838,Benzo[a]Pyrene,LB
+37087,0.06725216,Styrene,LB
+37087,0.002406298,Anthracene,LB
+37087,6.344456,Xylenes (Mixed Isomers),LB
+37087,2.475042,Benzene,LB
+37087,1.517218e-06,Mercury,LB
+37083,46225.42,Toluene,LB
+37083,24.48388,Pyrene,LB
+37083,31296.46,Xylenes (Mixed Isomers),LB
+37083,1.568814,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,1.4552626e-08,Chromium (VI),LB
+37075,3.509146e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,4.717653e-05,Nitrous Oxide,TON
+37075,1.833336e-05,Organic Carbon portion of PM2.5-PRI,TON
+37075,6.51288e-05,PM10 Primary (Filt + Cond),TON
+37075,3.656656e-05,PM2.5 Primary (Filt + Cond),TON
+37071,377.824,Acrolein,LB
+37071,19359.416,Hexane,LB
+37069,10.09109,Hexane,LB
+37069,2.676364,Fluoranthene,LB
+37069,0.02438112,Arsenic,LB
+37069,166.9456,Acetaldehyde,LB
+37069,4.465848,Phenanthrene,LB
+37069,41.77094,Naphthalene,LB
+37069,0.004678154,Nitrate portion of PM2.5-PRI,TON
+37069,1.422349,PM10 Primary (Filt + Cond),TON
+37069,2.091645,Volatile Organic Compounds,TON
+37069,0.0003366222,Benz[a]Anthracene,LB
+37069,5.88487e-05,Manganese,LB
+37069,0.005178056,Phenanthrene,LB
+37069,0.01686658,Volatile Organic Compounds,TON
+37069,0.02042604,Propionaldehyde,LB
+37069,2.18378,Xylenes (Mixed Isomers),LB
+37069,0.3077312,Formaldehyde,LB
+37069,0.0005284648,Benzo[a]Pyrene,LB
+37069,0.000270253,Pyrene,LB
+37069,0.390765,Xylenes (Mixed Isomers),LB
+37069,0.0002367868,Fluoranthene,LB
+37069,0.00074311,Acenaphthylene,LB
+37069,4.227346e-05,Benz[a]Anthracene,LB
+37069,5.408544e-05,Nitrous Oxide,TON
+37069,9.808607e-06,Ammonia,TON
+37069,1.438321e-07,Nitrate portion of PM2.5-PRI,TON
+37069,5.41625e-05,PM2.5 Primary (Filt + Cond),TON
+37063,3.980582,Benz[a]Anthracene,LB
+37063,272.8098,Benzene,LB
+37063,0.0014317642,Mercury,LB
+37063,113525.2,Carbon Dioxide,TON
+37063,108.6109,Ethyl Benzene,LB
+37063,27.5664,Styrene,LB
+37059,0.19060524,Manganese,LB
+37059,5.771168,Acenaphthene,LB
+37059,9.815472,Fluorene,LB
+37059,186.97258,Naphthalene,LB
+37059,1.458575,PM10-Primary from certain diesel engines,TON
+37059,10.01563,Volatile Organic Compounds,TON
+37059,0.005852122,"Dibenzo[a,h]Anthracene",LB
+37055,4095.422,Acetaldehyde,LB
+37055,2803.957,Carbon Monoxide,TON
+37055,1.982966,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,3.021098,Benzo[b]Fluoranthene,LB
+37047,31.44896,Xylenes (Mixed Isomers),LB
+37047,0.0001404966,Chromium (VI),LB
+37047,0.002063708,Benzo[k]Fluoranthene,LB
+37047,0.07540154,Nickel,LB
+37047,4.230736,Phenanthrene,LB
+37047,3538.76,Carbon Dioxide,TON
+37047,0.009287495,Nitrous Oxide,TON
+37047,0.1220067,Ammonia,TON
+37047,0.03658134,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,2.759851,Volatile Organic Compounds,TON
+37039,0.002763356,Acenaphthene,LB
+37039,0.1684903,Nitrogen Oxides,TON
+37039,0.002371364,Anthracene,LB
+37039,0.004635174,Pyrene,LB
+37041,21.793,Propionaldehyde,LB
+37041,0.472384,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.3326658,Chrysene,LB
+37041,0.15168,Nickel,LB
+37041,0.2325674,Arsenic,LB
+37041,1.1607966,Acenaphthene,LB
+37035,98.07284,Acrolein,LB
+37035,117.7858,Benzene,LB
+37035,0.08120628,Arsenic,LB
+37035,14.70776,Phenanthrene,LB
+37035,138.32242,Naphthalene,LB
+37035,30.37613,Carbon Monoxide,TON
+37027,0.7136538,Acrolein,LB
+37027,0.4808282,Propionaldehyde,LB
+37027,0.0005106668,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.0002743186,Benzo[k]Fluoranthene,LB
+37027,9.020036,Formaldehyde,LB
+37027,0.376691,Acenaphthene,LB
+37027,0.00019454836,Benzo[k]Fluoranthene,LB
+37027,3.31577,"2,2,4-Trimethylpentane",LB
+37027,0.009017806,Arsenic,LB
+37027,9.92087,Xylenes (Mixed Isomers),LB
+37027,4.53276e-05,Chromium (VI),LB
+37023,10.925628,Acrolein,LB
+37023,0.0015746278,"Benzo[g,h,i,]Perylene",LB
+37023,0.5492916,Fluoranthene,LB
+37023,3.770326,"2,2,4-Trimethylpentane",LB
+37023,80.68713,Volatile Organic Compounds,TON
+37023,4092.454,Hexane,LB
+37023,5412.45,"2,2,4-Trimethylpentane",LB
+37011,10.121274,Toluene,LB
+37011,0.0007522858,Benzo[b]Fluoranthene,LB
+37011,0.003621158,Fluoranthene,LB
+37011,2.417594e-05,"Dibenzo[a,h]Anthracene",LB
+37011,2.209306,"2,2,4-Trimethylpentane",LB
+37011,0.001846673,Ammonia,TON
+37011,0.0005747835,Organic Carbon portion of PM2.5-PRI,TON
+37011,3.092415e-05,Sulfate Portion of PM2.5-PRI,TON
+37001,0.585594,Benzo[a]Pyrene,LB
+37001,1.8975788,Benz[a]Anthracene,LB
+37001,5.256096,Fluorene,LB
+37001,20.06003,Carbon Monoxide,TON
+37001,13221.84,Carbon Dioxide,TON
+37001,23.9648,Ethyl Benzene,LB
+37001,48.60418,Xylenes (Mixed Isomers),LB
+37001,0.17462274,Benzo[b]Fluoranthene,LB
+37055,0.00316202,"Benzo[g,h,i,]Perylene",LB
+37055,7.045398e-05,Mercury,LB
+37055,5.759976,Acetaldehyde,LB
+37055,104.0822,Carbon Dioxide,TON
+37055,0.001279092,Nitrous Oxide,TON
+37055,0.01144782,PM10 Primary (Filt + Cond),TON
+37003,0.3239292,Ethyl Benzene,LB
+37003,0.015688054,Styrene,LB
+37003,1.3979138,Toluene,LB
+37003,0.0009920386,Pyrene,LB
+37003,0.0003299016,Chrysene,LB
+37003,0.8836306,Formaldehyde,LB
+37003,0.0007383364,Benzo[a]Pyrene,LB
+37003,0.0004068354,Nickel,LB
+37003,0.523882,Carbon Monoxide,TON
+37003,2.868878e-06,Nitrate portion of PM2.5-PRI,TON
+37173,5.800582,Toluene,LB
+37173,0.6770112,Hexane,LB
+37161,0.0007308562,Manganese,LB
+37161,0.00207725,Methane,TON
+37161,0.0001428716,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.0008385036,PM2.5 Primary (Filt + Cond),TON
+37157,17.88784,Toluene,LB
+37139,0.13554602,Styrene,LB
+37139,10.826892,Toluene,LB
+37139,4.278696,Hexane,LB
+37139,9.338616,Formaldehyde,LB
+37139,0.0002811754,Mercury,LB
+37139,0.02634762,Phenanthrene,LB
+37139,0.03667082,Methane,TON
+37139,2.885744e-05,Nitrate portion of PM2.5-PRI,TON
+37139,0.4894865,Nitrogen Oxides,TON
+37139,0.004736453,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.1000207,Volatile Organic Compounds,TON
+37087,0.0005887322,Pyrene,LB
+37087,0.0009014822,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.001285692,Acenaphthylene,LB
+37087,0.0004334618,Nickel,LB
+37021,21.81906,Styrene,LB
+37021,99.20562,Xylenes (Mixed Isomers),LB
+37021,0.05154324,"Dibenzo[a,h]Anthracene",LB
+37021,137.2008,Nitrogen Oxides,TON
+37021,21.31464,"2,2,4-Trimethylpentane",LB
+37021,343.6668,Acetaldehyde,LB
+37021,37.51187,Carbon Monoxide,TON
+37021,0.1876046,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.05731066,Sulfur Dioxide,TON
+37021,4.406092,Volatile Organic Compounds,TON
+37021,46054.34,Toluene,LB
+37021,8146.888,Hexane,LB
+37015,6.165176,Ethyl Benzene,LB
+37015,12.432262,Toluene,LB
+37015,0.0003017982,Nickel,LB
+37015,0.0266541,Phenanthrene,LB
+37015,125.8636,Carbon Dioxide,TON
+37015,0.002401861,Nitrous Oxide,TON
+37009,306.004,Ethyl Benzene,LB
+37009,0.4796788,"Benzo[g,h,i,]Perylene",LB
+37009,0.1408622,Benzo[b]Fluoranthene,LB
+37009,0.1408622,Benzo[k]Fluoranthene,LB
+37009,2.469988,Acenaphthylene,LB
+37009,0.05165995,Elemental Carbon portion of PM2.5-PRI,TON
+37001,2.989418,Anthracene,LB
+37001,0.1873392,Benzo[b]Fluoranthene,LB
+37001,0.02576548,Benzo[k]Fluoranthene,LB
+37001,10.850754,Phenanthrene,LB
+37001,6.051218,Fluorene,LB
+37001,13761.19,Carbon Dioxide,TON
+37001,0.03793534,Nitrous Oxide,TON
+37085,1.239311,Ethyl Benzene,LB
+37085,0.05822332,Styrene,LB
+37085,0.0018875698,Anthracene,LB
+37085,2.586548e-05,Chromium (VI),LB
+37085,0.01151404,Phenanthrene,LB
+37085,0.003238794,Organic Carbon portion of PM2.5-PRI,TON
+37071,12.976386,Ethyl Benzene,LB
+37071,0.6505828,Styrene,LB
+37071,0.019578794,Chrysene,LB
+37071,0.01195245,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.04968286,Nitrous Oxide,TON
+37071,0.0001819584,Nitrate portion of PM2.5-PRI,TON
+37071,2.655249,Nitrogen Oxides,TON
+37063,1.8480328,"1,3-Butadiene",LB
+37063,37.38756,Toluene,LB
+37063,0.00013642816,Chromium (VI),LB
+37063,0.02072656,Benzo[k]Fluoranthene,LB
+37063,0.02520107,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.05718898,PM2.5 Primary (Filt + Cond),TON
+37005,0.002146302,Fluoranthene,LB
+37005,0.1207545,Nitrogen Oxides,TON
+37159,0.1150695,Ammonia,TON
+37159,0.014040504,Anthracene,LB
+37159,0.0296131,Pyrene,LB
+37159,0.06952492,Acenaphthylene,LB
+37159,0.03339682,Benzo[a]Pyrene,LB
+37177,0.0974847,Xylenes (Mixed Isomers),LB
+37177,5.801136e-07,Chromium (VI),LB
+37177,0.0003327334,"Benzo[g,h,i,]Perylene",LB
+37177,0.09440146,Formaldehyde,LB
+37177,2.920378e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37177,4.313823e-07,Nitrate portion of PM2.5-PRI,TON
+37161,0.005243237,Sulfur Dioxide,TON
+37161,0.0001091298,Sulfate Portion of PM2.5-PRI,TON
+37161,0.623783,Ethyl Benzene,LB
+37161,1.273634,Hexane,LB
+37161,3.298812,Benzene,LB
+37161,0.002645832,Nitrous Oxide,TON
+37161,0.003794305,PM2.5 Primary (Filt + Cond),TON
+37133,0.0016263836,Benzo[a]Pyrene,LB
+37133,0.8009254,"2,2,4-Trimethylpentane",LB
+37133,0.0007385548,Benz[a]Anthracene,LB
+37133,132.9968,Carbon Dioxide,TON
+37131,5.353468,Carbon Monoxide,TON
+37131,0.004633139,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.02677377,PM10 Primary (Filt + Cond),TON
+37131,0.10712086,Styrene,LB
+37131,2.59739e-05,Chromium (VI),LB
+37131,0.006343272,Fluoranthene,LB
+37131,0.00401009,Benzo[k]Fluoranthene,LB
+37131,0.0002781284,Sulfate Portion of PM2.5-PRI,TON
+37131,0.2302949,Volatile Organic Compounds,TON
+37117,0.8110316,Hexane,LB
+37117,0.000637699,Anthracene,LB
+37117,0.16564978,Propionaldehyde,LB
+37117,0.001180293,Fluoranthene,LB
+37117,1.129271,Formaldehyde,LB
+37117,0.001619644,Arsenic,LB
+37117,0.003907458,Phenanthrene,LB
+37117,6.406523e-05,Sulfate Portion of PM2.5-PRI,TON
+37159,94.3436,Toluene,LB
+37159,0.04049194,"Benzo[g,h,i,]Perylene",LB
+37159,0.02749008,Benzo[k]Fluoranthene,LB
+37159,12.054204,Phenanthrene,LB
+37159,2.668362,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.01741153,PM10 Primary (Filt + Cond),TON
+37163,20.9698,Xylenes (Mixed Isomers),LB
+37163,0.003302932,Chrysene,LB
+37153,23.16376,Hexane,LB
+37153,1.5684,Anthracene,LB
+37153,113.06132,Xylenes (Mixed Isomers),LB
+37153,0.0002347426,Chromium (VI),LB
+37153,3.114732,Fluoranthene,LB
+37153,927.1368,Formaldehyde,LB
+37153,0.06482164,Arsenic,LB
+37153,348.1914,Acetaldehyde,LB
+37151,4.348152,Acetaldehyde,LB
+37151,0.01357391,Ammonia,TON
+37151,0.2624364,Volatile Organic Compounds,TON
+37145,0.11605266,"1,3-Butadiene",LB
+37145,0.09358914,Hexane,LB
+37145,0.00016296224,"Benzo[g,h,i,]Perylene",LB
+37145,0.0001086296,"Dibenzo[a,h]Anthracene",LB
+37145,0.02563328,Fluorene,LB
+37145,0.4032196,Naphthalene,LB
+37145,0.002737658,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.1454162,Nitrogen Oxides,TON
+37145,0.17283808,Propionaldehyde,LB
+37145,0.001861648,Benzo[b]Fluoranthene,LB
+37145,0.0009571202,Manganese,LB
+37145,0.4375214,Naphthalene,LB
+37167,3.010324,Hexane,LB
+37167,0.000885661,Benzo[b]Fluoranthene,LB
+37167,0.0008915386,Chrysene,LB
+37167,0.00339322,Acenaphthene,LB
+37167,0.018409084,Phenanthrene,LB
+37003,0.1824315,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.004926976,Benzo[k]Fluoranthene,LB
+37003,1270.7418,Formaldehyde,LB
+37003,0.12681756,Manganese,LB
+37003,142.9657,Naphthalene,LB
+37077,0.02596292,"1,3-Butadiene",LB
+37077,0.2652878,Acrolein,LB
+37077,0.0007386688,Pyrene,LB
+37077,0.0005545884,Fluorene,LB
+37077,0.8328083,Carbon Monoxide,TON
+37077,114.8491,Carbon Dioxide,TON
+37077,0.0005509222,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.07243595,Volatile Organic Compounds,TON
+37067,6.975092,Propionaldehyde,LB
+37067,0.1343863,Acenaphthylene,LB
+37067,59.55616,Formaldehyde,LB
+37067,343.6236,Acetaldehyde,LB
+37067,3.948317,Nitrogen Oxides,TON
+37067,0.3767501,PM10 Primary (Filt + Cond),TON
+37079,0.0047646,Styrene,LB
+37079,0.0397045,Propionaldehyde,LB
+37079,0.000374297,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.0003693854,Benzo[a]Pyrene,LB
+37079,1.6758142e-05,Mercury,LB
+37079,0.00016471284,Acenaphthene,LB
+37079,1.285138e-06,Nitrate portion of PM2.5-PRI,TON
+37121,0.03161198,Anthracene,LB
+37121,0.000421196,"Benzo[g,h,i,]Perylene",LB
+37121,0.2422004,"2,2,4-Trimethylpentane",LB
+37121,0.000571488,Arsenic,LB
+37121,0.02826664,Acenaphthene,LB
+37121,0.06325548,Fluorene,LB
+37121,0.3521587,Nitrogen Oxides,TON
+37121,0.000920236,Sulfate Portion of PM2.5-PRI,TON
+37127,2.563916,Acenaphthene,LB
+37127,10.507302,Phenanthrene,LB
+37127,80.7086,Toluene,LB
+37127,7.99799,Pyrene,LB
+37179,46.6184,Hexane,LB
+37179,4.661366,Anthracene,LB
+37179,0.000726036,Chromium (VI),LB
+37179,3.19123,Benz[a]Anthracene,LB
+37179,9.654566,Fluorene,LB
+37179,0.6995664,Sulfate Portion of PM2.5-PRI,TON
+37081,1.6737834e-05,Phenanthrene,LB
+37081,8.762319e-05,PM2.5 Primary (Filt + Cond),TON
+37081,0.003276094,Acrolein,LB
+37081,5.26902e-10,Chromium (VI),LB
+37033,0.7590892,Volatile Organic Compounds,TON
+37035,0.4476752,Benz[a]Anthracene,LB
+37035,62.1508,Naphthalene,LB
+37035,0.05332036,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.005408796,Nickel,LB
+37161,0.0490402,Methane,TON
+37161,0.003108064,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.7656191,Nitrogen Oxides,TON
+37161,0.01813492,PM2.5 Primary (Filt + Cond),TON
+37161,5.880414,Hexane,LB
+37099,0.002328224,"Benzo[g,h,i,]Perylene",LB
+37099,0.0004811392,Nickel,LB
+37099,4.25415,Acetaldehyde,LB
+37165,2.974056,Styrene,LB
+37165,0.3153734,Chrysene,LB
+37165,0.07490773,Ammonia,TON
+37165,1.253678,Volatile Organic Compounds,TON
+37165,0.16478476,Benzo[a]Pyrene,LB
+37165,0.5366112,Benz[a]Anthracene,LB
+37165,20.86316,Benzene,LB
+37165,24.43158,Naphthalene,LB
+37159,0.013879192,Acrolein,LB
+37159,0.8096398,Benzene,LB
+37159,0.004813434,Phenanthrene,LB
+37159,0.0002932926,Organic Carbon portion of PM2.5-PRI,TON
+37159,8.122171e-05,Sulfur Dioxide,TON
+37151,0.960003,Chrysene,LB
+37151,0.02026758,"Dibenzo[a,h]Anthracene",LB
+37151,5.464008,Fluorene,LB
+37151,3.913598,PM2.5 Primary (Filt + Cond),TON
+37151,0.2773223,Sulfate Portion of PM2.5-PRI,TON
+37135,11.233076,Propionaldehyde,LB
+37135,0.00016327194,"Benzo[g,h,i,]Perylene",LB
+37135,2.582376e-06,Nickel,LB
+37135,0.003831369,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.01518932,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.3673362,Volatile Organic Compounds,TON
+37171,0.002311997,PM2.5 Primary (Filt + Cond),TON
+37171,0.5942112,Formaldehyde,LB
+37171,0.003713322,Fluorene,LB
+37171,0.09542782,Naphthalene,LB
+37171,0.000292508,Nitrous Oxide,TON
+37171,0.003341298,Pyrene,LB
+37169,0.0002889234,Chromium (VI),LB
+37169,153.5072,Benzene,LB
+37169,0.15110042,Manganese,LB
+37169,14.346546,Phenanthrene,LB
+37169,0.02243016,Nitrous Oxide,TON
+37169,0.2208916,Ammonia,TON
+37159,0.6405776,Styrene,LB
+37159,0.04020754,"Benzo[g,h,i,]Perylene",LB
+37159,0.015058152,Benzo[a]Pyrene,LB
+37159,0.00061892,Nickel,LB
+37159,1.4037018,Naphthalene,LB
+37159,0.87799,Nitrogen Oxides,TON
+37149,4.425228e-05,Pyrene,LB
+37149,0.02417186,Benzene,LB
+37149,0.3208045,Carbon Dioxide,TON
+37149,9.118882,Xylenes (Mixed Isomers),LB
+37149,0.002827038,Chrysene,LB
+37149,0.0001518203,"Dibenzo[a,h]Anthracene",LB
+37149,0.0004354464,Nickel,LB
+37149,0.00843988,Fluorene,LB
+37149,0.2170458,Naphthalene,LB
+37149,2.151157,Carbon Monoxide,TON
+37149,0.3179809,Nitrogen Oxides,TON
+37149,0.006953334,PM2.5 Primary (Filt + Cond),TON
+37151,0.0365152,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.0014794212,"Benzo[g,h,i,]Perylene",LB
+37147,100.15482,Acrolein,LB
+37147,38.2631,Hexane,LB
+37147,56.9339,Propionaldehyde,LB
+37147,0.02495424,Benzo[k]Fluoranthene,LB
+37147,15467.364,Ethyl Benzene,LB
+37147,20097.76,Hexane,LB
+37147,514.7816,Propionaldehyde,LB
+37147,42.21404,Pyrene,LB
+37147,6.69369,Benzo[b]Fluoranthene,LB
+37147,25.4382,Acenaphthene,LB
+37147,24.41533,Ammonia,TON
+37145,3.590534,Benzene,LB
+37145,0.0008607154,Sulfate Portion of PM2.5-PRI,TON
+37143,0.11186986,Anthracene,LB
+37143,0.006738284,Manganese,LB
+37143,0.0761294,PM2.5 Primary (Filt + Cond),TON
+37143,0.01273541,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,1615.2822,"2,2,4-Trimethylpentane",LB
+37133,152.9297,Acetaldehyde,LB
+37133,3.74436,Phenanthrene,LB
+37133,0.3631776,Methane,TON
+37133,172.6093,Carbon Monoxide,TON
+37133,0.07474182,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,3555.686,Xylenes (Mixed Isomers),LB
+37133,1.0082728,Fluoranthene,LB
+37133,0.19617456,Chrysene,LB
+37131,0.8566976,Acrolein,LB
+37131,0.000298048,Benzo[k]Fluoranthene,LB
+37131,0.014069026,Chrysene,LB
+37131,0.00470603,Manganese,LB
+37131,0.00216264,Nickel,LB
+37131,0.05681672,PM10-Primary from certain diesel engines,TON
+37095,0.233741,Benzene,LB
+37095,1.3102222e-06,Mercury,LB
+37095,0.0002739566,Arsenic,LB
+37095,0.001868667,Methane,TON
+37095,20.66333,Carbon Dioxide,TON
+37095,0.0004146782,PM25-Primary from certain diesel engines,TON
+37095,0.02336414,Nitrogen Oxides,TON
+37095,7.709041e-05,Sulfate Portion of PM2.5-PRI,TON
+37093,3.379778,Ethyl Benzene,LB
+37093,8.019244,Acrolein,LB
+37093,2.155966e-05,Mercury,LB
+37089,4646.83,"2,2,4-Trimethylpentane",LB
+37089,69.27225,Volatile Organic Compounds,TON
+37073,0.0008536475,Sulfur Dioxide,TON
+37073,0.13405714,Ethyl Benzene,LB
+37073,0.002878668,Benzo[a]Pyrene,LB
+37073,0.009463816,Benz[a]Anthracene,LB
+37073,0.0002779524,Arsenic,LB
+37073,0.012636546,Acenaphthene,LB
+37001,1.3558558,"1,3-Butadiene",LB
+37001,0.2385178,Propionaldehyde,LB
+37001,0.02797262,"Benzo[g,h,i,]Perylene",LB
+37001,0.01043179,Benzo[a]Pyrene,LB
+37001,0.07006908,Phenanthrene,LB
+37055,0.003769411,Elemental Carbon portion of PM2.5-PRI,TON
+37055,4.27149,Ethyl Benzene,LB
+37055,0.0118072,Arsenic,LB
+37033,0.07885716,Hexane,LB
+37033,3.320884e-06,"Dibenzo[a,h]Anthracene",LB
+37033,0.0004822789,Ammonia,TON
+37033,0.0001834969,PM2.5 Primary (Filt + Cond),TON
+37033,4.82472e-06,Sulfate Portion of PM2.5-PRI,TON
+37011,1.8141386,Ethyl Benzene,LB
+37011,0.006038948,Pyrene,LB
+37011,0.005323686,Fluoranthene,LB
+37011,0.003236454,Acenaphthene,LB
+37011,291.5775,Carbon Dioxide,TON
+37011,0.0001794872,Nickel,LB
+37011,0.00015931066,Acenaphthene,LB
+37011,0.0003226956,Fluorene,LB
+37011,0.001238482,PM10 Primary (Filt + Cond),TON
+37011,0.3337054,Xylenes (Mixed Isomers),LB
+37173,0.0006802478,Benzo[a]Pyrene,LB
+37173,2.724933e-05,Sulfate Portion of PM2.5-PRI,TON
+37175,0.04775209,Volatile Organic Compounds,TON
+37155,0.0009136194,Nickel,LB
+37155,6.305916,Acetaldehyde,LB
+37155,7.30911e-06,Chromium (VI),LB
+37155,0.001038572,Fluoranthene,LB
+37155,3.975862e-05,"Dibenzo[a,h]Anthracene",LB
+37149,0.7087406,Benzene,LB
+37119,3.342056,Propionaldehyde,LB
+37119,25.886,Carbon Monoxide,TON
+37119,0.01173771,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.4871164,Ethyl Benzene,LB
+37087,0.0015115774,Nickel,LB
+37087,0.0008199778,Acenaphthene,LB
+37087,0.0016608974,Fluorene,LB
+37087,0.04286328,Naphthalene,LB
+37087,0.0006014069,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.01059926,Ammonia,TON
+37087,0.003703875,PM2.5 Primary (Filt + Cond),TON
+37007,2.914104,Phenanthrene,LB
+37007,1.5540464,Fluorene,LB
+37007,33.75174,Nitrogen Oxides,TON
+37007,0.14246568,Benzo[a]Pyrene,LB
+37007,20.42938,Acrolein,LB
+37177,0.3543588,Fluoranthene,LB
+37177,23.75864,Acetaldehyde,LB
+37177,1.75615,Carbon Monoxide,TON
+37175,5.957778,"1,3-Butadiene",LB
+37175,182.62286,Toluene,LB
+37175,0.01063008,Benzo[b]Fluoranthene,LB
+37175,0.2439634,Phenanthrene,LB
+37163,9.513166,Acrolein,LB
+37163,0.3887052,Anthracene,LB
+37163,6.613476,Propionaldehyde,LB
+37163,1.6770004e-05,Mercury,LB
+37161,0.3055186,Ethyl Benzene,LB
+37161,0.6106464,Toluene,LB
+37161,0.05135532,Acenaphthylene,LB
+37161,9.183462,Formaldehyde,LB
+37161,0.02148742,Benz[a]Anthracene,LB
+37159,0.001634582,Nitrate portion of PM2.5-PRI,TON
+37159,13.68755,Nitrogen Oxides,TON
+37159,19.495194,"1,3-Butadiene",LB
+37159,32.08852,Propionaldehyde,LB
+37159,3.456614,Pyrene,LB
+37155,0.290548,Manganese,LB
+37155,22.61536,Carbon Monoxide,TON
+37155,14798.94,Carbon Dioxide,TON
+37155,3.694985,PM25-Primary from certain diesel engines,TON
+37155,3.822207,PM2.5 Primary (Filt + Cond),TON
+37155,4.683356,Volatile Organic Compounds,TON
+37159,0.3669346,Arsenic,LB
+37159,2.441394,Acenaphthene,LB
+37159,0.2299448,Elemental Carbon portion of PM2.5-PRI,TON
+37159,3.35704,PM10 Primary (Filt + Cond),TON
+37159,1739.3966,"2,2,4-Trimethylpentane",LB
+37159,2416.184,Benzene,LB
+37159,5324.636,Xylenes (Mixed Isomers),LB
+37159,12.356836,Anthracene,LB
+37159,8.608276,Benzo[a]Pyrene,LB
+37159,299292.3,Carbon Dioxide,TON
+37159,25.71159,Ammonia,TON
+37159,388.8645,Nitrogen Oxides,TON
+37153,0.02165162,Benzo[b]Fluoranthene,LB
+37153,17.117488,Formaldehyde,LB
+37153,0.0007853688,"Dibenzo[a,h]Anthracene",LB
+37153,0.04055787,PM2.5 Primary (Filt + Cond),TON
+37153,0.01324109,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,2.024184,Fluorene,LB
+37147,0.1247013,Methane,TON
+37147,19.900494,Toluene,LB
+37147,7.21267,Hexane,LB
+37147,0.03032512,Nickel,LB
+37139,180.12322,Styrene,LB
+37139,12.526102,Pyrene,LB
+37137,1.035185,"Benzo[g,h,i,]Perylene",LB
+37137,0.2853514,Benzo[k]Fluoranthene,LB
+37137,51.1626,Naphthalene,LB
+37137,1.324778,PM10 Primary (Filt + Cond),TON
+37137,0.145017,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.01255652,Sulfate Portion of PM2.5-PRI,TON
+37137,20.87108,Volatile Organic Compounds,TON
+37133,8.142314,Carbon Monoxide,TON
+37133,7.550794,Ethyl Benzene,LB
+37133,0.003483806,Benzo[k]Fluoranthene,LB
+37133,0.08459906,Benzo[a]Pyrene,LB
+37133,4.856948e-05,Mercury,LB
+37131,0.05154468,Arsenic,LB
+37131,0.2234701,Methane,TON
+37131,0.1583704,Nitrous Oxide,TON
+37123,1.2194758e-05,Mercury,LB
+37123,0.001742775,Ammonia,TON
+37123,7.660188e-05,Chrysene,LB
+37123,0.04026509,Volatile Organic Compounds,TON
+37117,19.587446,Acrolein,LB
+37117,0.005601384,"Dibenzo[a,h]Anthracene",LB
+37117,0.00018092658,Mercury,LB
+37117,0.6846404,Acenaphthene,LB
+37117,8.341143,Carbon Monoxide,TON
+37117,1.193981,PM10-Primary from certain diesel engines,TON
+37117,0.01348805,Nitrous Oxide,TON
+37117,0.002371601,Nitrate portion of PM2.5-PRI,TON
+37117,1.352979,Volatile Organic Compounds,TON
+37111,1.085969,Carbon Monoxide,TON
+37111,0.1455184,PM25-Primary from certain diesel engines,TON
+37111,0.05815248,Organic Carbon portion of PM2.5-PRI,TON
+37111,3.591184,Toluene,LB
+37111,3.68733,Ethyl Benzene,LB
+37111,0.007777048,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,6.473952,Benzene,LB
+37111,0.003575629,Sulfur Dioxide,TON
+37119,619.5468,Ethyl Benzene,LB
+37119,2076.006,Toluene,LB
+37119,95.76148,Pyrene,LB
+37119,0.2770606,Benzo[k]Fluoranthene,LB
+37119,611.5096,"2,2,4-Trimethylpentane",LB
+37119,1.447239,Nickel,LB
+37119,158.5009,Phenanthrene,LB
+37119,29.23714,Methane,TON
+37119,11586.228,"1,3-Butadiene",LB
+37119,23102.48,Carbon Monoxide,TON
+37119,2575954,Carbon Dioxide,TON
+37119,175.9799,Ammonia,TON
+37019,2.273236e-05,Pyrene,LB
+37019,2.554998e-09,Chromium (VI),LB
+37019,2.168616e-05,"Benzo[g,h,i,]Perylene",LB
+37019,2.597999e-07,Sulfate Portion of PM2.5-PRI,TON
+37019,1.7765196e-06,Manganese,LB
+37019,2.426052e-08,Nitrate portion of PM2.5-PRI,TON
+37019,4.571678e-06,Organic Carbon portion of PM2.5-PRI,TON
+37017,149.86392,Formaldehyde,LB
+37017,0.003477828,"Dibenzo[a,h]Anthracene",LB
+37017,0.0852078,Manganese,LB
+37017,0.3091015,Methane,TON
+37017,0.1789613,PM2.5 Primary (Filt + Cond),TON
+37017,8.15958,Volatile Organic Compounds,TON
+37017,283.4896,Ethyl Benzene,LB
+37017,1581.8478,Toluene,LB
+37017,0.4112138,Anthracene,LB
+37195,3.68298,Acenaphthene,LB
+37195,0.3635045,Methane,TON
+37195,1.018395,PM2.5 Primary (Filt + Cond),TON
+37195,0.015311506,"Benzo[g,h,i,]Perylene",LB
+37195,36.61016,Ethyl Benzene,LB
+37195,59.3496,Propionaldehyde,LB
+37195,0.00424644,"Dibenzo[a,h]Anthracene",LB
+37195,27.2052,"2,2,4-Trimethylpentane",LB
+37187,1.8533716,Styrene,LB
+37187,0.13047294,Chrysene,LB
+37187,257.2364,Formaldehyde,LB
+37187,0.3877356,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.1137428,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.6204386,PM2.5 Primary (Filt + Cond),TON
+37167,36.82624,Styrene,LB
+37167,0.832659,Chrysene,LB
+37167,0.2701738,Manganese,LB
+37167,0.000401039,Mercury,LB
+37167,1060.9346,Acetaldehyde,LB
+37161,0.02159638,Nickel,LB
+37161,0.001052638,Nitrous Oxide,TON
+37161,0.02273819,PM2.5 Primary (Filt + Cond),TON
+37161,5.679156,Propionaldehyde,LB
+37161,9.303754,Xylenes (Mixed Isomers),LB
+37161,0.0014419934,Benzo[b]Fluoranthene,LB
+37161,0.0002004578,"Dibenzo[a,h]Anthracene",LB
+37161,0.0618906,Benz[a]Anthracene,LB
+37159,4211.41,Ethyl Benzene,LB
+37159,8207.464,"2,2,4-Trimethylpentane",LB
+37157,16.83112,"1,3-Butadiene",LB
+37157,7.534822,Acrolein,LB
+37157,0.4273958,"Benzo[g,h,i,]Perylene",LB
+37157,0.02356707,Nitrous Oxide,TON
+37157,0.004845153,Sulfate Portion of PM2.5-PRI,TON
+37135,2.665932,Styrene,LB
+37135,1.093594,Fluoranthene,LB
+37135,181.88648,Formaldehyde,LB
+37135,4.177186e-05,Mercury,LB
+37135,0.03591446,Ammonia,TON
+37135,0.01706825,Sulfate Portion of PM2.5-PRI,TON
+37137,0.00716615,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.000205728,Benzo[k]Fluoranthene,LB
+37137,0.0330167,Acenaphthylene,LB
+37137,0.009539628,Chrysene,LB
+37131,0.008410074,"1,3-Butadiene",LB
+37131,0.08592736,Acrolein,LB
+37131,0.0002482462,Pyrene,LB
+37131,1.1177082e-08,Chromium (VI),LB
+37131,0.000185682,Acenaphthylene,LB
+37131,0.0679126,Benzene,LB
+37131,2.123604,Acetaldehyde,LB
+37129,0.4211033,PM10 Primary (Filt + Cond),TON
+37129,3.275006,Propionaldehyde,LB
+37129,125.57894,"2,2,4-Trimethylpentane",LB
+37129,57.22854,Acetaldehyde,LB
+37123,14.223774,Propionaldehyde,LB
+37123,0.009881912,"Benzo[g,h,i,]Perylene",LB
+37123,0.04571132,Benzo[b]Fluoranthene,LB
+37123,0.3050894,Chrysene,LB
+37123,0.0001381153,Mercury,LB
+37123,0.8781851,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.04578618,Benzo[b]Fluoranthene,LB
+37117,0.15356382,Benzo[a]Pyrene,LB
+37117,4.413904,"2,2,4-Trimethylpentane",LB
+37117,17.62185,Benzene,LB
+37117,0.007708232,Arsenic,LB
+37117,80.74332,Acetaldehyde,LB
+37117,1.4012984,Fluorene,LB
+37117,20.44734,Naphthalene,LB
+37117,19.27695,Nitrogen Oxides,TON
+37123,187.83392,Benzene,LB
+37121,1178.071,Xylenes (Mixed Isomers),LB
+37121,615.1666,"2,2,4-Trimethylpentane",LB
+37105,1.273689,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,741.2156,"1,3-Butadiene",LB
+37105,102.44294,Acrolein,LB
+37105,2.784076,Benzo[a]Pyrene,LB
+37105,4.764952,Acenaphthene,LB
+37105,1308.239,Carbon Monoxide,TON
+37105,114833.3,Carbon Dioxide,TON
+37103,6.624234,Styrene,LB
+37103,35.3103,Acrolein,LB
+37103,24.21208,Propionaldehyde,LB
+37103,10.591762,"2,2,4-Trimethylpentane",LB
+37103,1.5135844,Acenaphthene,LB
+37103,2.576258,Fluorene,LB
+37103,0.4583224,PM10-Primary from certain diesel engines,TON
+37103,0.02663348,Sulfur Dioxide,TON
+37095,3.61456e-06,Organic Carbon portion of PM2.5-PRI,TON
+37095,7.174909e-06,PM2.5 Primary (Filt + Cond),TON
+37095,0.0006105382,Styrene,LB
+37095,7.0925e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,5.962292e-06,Benzo[k]Fluoranthene,LB
+37095,6.241838e-06,Benz[a]Anthracene,LB
+37093,19.262346,Hexane,LB
+37093,21.87584,Xylenes (Mixed Isomers),LB
+37093,0.8950892,Volatile Organic Compounds,TON
+37093,1.6766026,Ethyl Benzene,LB
+37093,0.06137112,Styrene,LB
+37093,0.004402212,Pyrene,LB
+37093,1.5661658e-06,Chromium (VI),LB
+37093,0.000839981,Benzo[a]Pyrene,LB
+37093,1.5700854e-05,Mercury,LB
+37093,0.8398288,Acetaldehyde,LB
+37093,0.005725231,PM10 Primary (Filt + Cond),TON
+37093,0.05035393,Volatile Organic Compounds,TON
+37089,99.78386,Toluene,LB
+37087,2.509392,Ethyl Benzene,LB
+37087,2.181248e-05,Chromium (VI),LB
+37087,0.018312298,Benzo[b]Fluoranthene,LB
+37087,6.94393,Benzene,LB
+37087,0.04448155,Methane,TON
+37083,2.880534,Fluoranthene,LB
+37083,0.9065084,Benz[a]Anthracene,LB
+37083,0.06140186,Nickel,LB
+37083,1.2377376,Acenaphthene,LB
+37083,0.004698097,Nitrate portion of PM2.5-PRI,TON
+37083,0.05236558,Sulfur Dioxide,TON
+37083,7.571774,"1,3-Butadiene",LB
+37083,0.05859888,Anthracene,LB
+37083,0.0016385888,"Dibenzo[a,h]Anthracene",LB
+37083,0.005056934,Nickel,LB
+37083,0.06620898,Acenaphthene,LB
+37083,0.01232565,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.05958881,Ammonia,TON
+37083,0.0002132397,Nitrate portion of PM2.5-PRI,TON
+37083,3.79367,Nitrogen Oxides,TON
+37083,0.03959257,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.0008654314,Styrene,LB
+37085,3.6602e-05,Anthracene,LB
+37085,2.32982e-05,Benzo[b]Fluoranthene,LB
+37085,0.013725024,Formaldehyde,LB
+37085,5.801786e-06,Arsenic,LB
+37085,4.159338e-05,Acenaphthene,LB
+37085,0.0006717615,Volatile Organic Compounds,TON
+37075,0.012286496,Chrysene,LB
+37075,0.533493,Styrene,LB
+37075,0.002378555,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.2388628,Hexane,LB
+37075,0.004599176,Benz[a]Anthracene,LB
+37075,0.04470078,Fluorene,LB
+37075,0.0006514733,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.001577487,PM2.5 Primary (Filt + Cond),TON
+37069,7.74234,Ethyl Benzene,LB
+37069,233.404,Formaldehyde,LB
+37069,1.060177,PM2.5 Primary (Filt + Cond),TON
+37053,0.546396,Naphthalene,LB
+37053,35.36565,Carbon Dioxide,TON
+37053,0.01197333,PM10-Primary from certain diesel engines,TON
+37053,0.004253374,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.0002942468,Sulfate Portion of PM2.5-PRI,TON
+37053,0.02914901,Volatile Organic Compounds,TON
+37053,0.0002607866,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,17.67555,Benzene,LB
+37153,0.0165689,PM2.5 Primary (Filt + Cond),TON
+37113,16.164414,Benzene,LB
+37113,0.3183414,Naphthalene,LB
+37113,3.455196,Ethyl Benzene,LB
+37097,6.349342,Hexane,LB
+37097,20.41378,"2,2,4-Trimethylpentane",LB
+37083,0.014492536,Pyrene,LB
+37083,0.008054974,Benzo[k]Fluoranthene,LB
+37083,0.0003498142,"Dibenzo[a,h]Anthracene",LB
+37083,0.009342836,Arsenic,LB
+37083,0.04248508,Phenanthrene,LB
+37083,0.009206403,Organic Carbon portion of PM2.5-PRI,TON
+37169,2.927374,Ethyl Benzene,LB
+37169,2.557238,"1,3-Butadiene",LB
+37169,4.297404,Propionaldehyde,LB
+37169,0.4773179,Volatile Organic Compounds,TON
+37169,0.019667668,Chrysene,LB
+37169,0.00012948002,"Dibenzo[a,h]Anthracene",LB
+37169,0.4391232,Fluorene,LB
+37169,0.06134059,Methane,TON
+37157,0.6113734,Pyrene,LB
+37157,0.002176718,"Benzo[g,h,i,]Perylene",LB
+37157,0.0636723,Chrysene,LB
+37157,89.67246,Formaldehyde,LB
+37157,0.5314296,Fluorene,LB
+37145,2.736348,Benzo[k]Fluoranthene,LB
+37145,55.4801,Acenaphthylene,LB
+37145,2.890222,Benz[a]Anthracene,LB
+37145,24.70174,Fluorene,LB
+37145,1.691762,Organic Carbon portion of PM2.5-PRI,TON
+37145,8.035923,PM10 Primary (Filt + Cond),TON
+37199,1.7960278,Ethyl Benzene,LB
+37199,1.3687722,Hexane,LB
+37199,0.3671196,Fluoranthene,LB
+37199,0.11033344,Benz[a]Anthracene,LB
+37199,5.865134,Naphthalene,LB
+37199,0.1440618,PM10 Primary (Filt + Cond),TON
+37199,0.008012613,Methane,TON
+37199,0.0009456985,Nitrous Oxide,TON
+37199,0.001709376,Sulfate Portion of PM2.5-PRI,TON
+37199,0.7036478,Styrene,LB
+37199,2.552922,Propionaldehyde,LB
+37199,9.0716e-06,Chromium (VI),LB
+37199,0.269818,Acenaphthylene,LB
+37193,0.005510596,"Benzo[g,h,i,]Perylene",LB
+37193,0.0020704,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.0018049338,Fluoranthene,LB
+37193,0.0010989808,Benzo[k]Fluoranthene,LB
+37193,0.0018540504,Arsenic,LB
+37193,13.009638,Acetaldehyde,LB
+37193,0.002154234,Fluorene,LB
+37193,0.0088893,Ammonia,TON
+37193,7.682919e-06,Nitrate portion of PM2.5-PRI,TON
+37193,0.01199803,PM10 Primary (Filt + Cond),TON
+37193,0.004272124,Sulfur Dioxide,TON
+37193,0.08172542,Volatile Organic Compounds,TON
+37193,0.007647792,Arsenic,LB
+37193,19.246986,Naphthalene,LB
+37193,0.2309536,PM10 Primary (Filt + Cond),TON
+37193,13.861356,Acrolein,LB
+37193,4.37501,"2,2,4-Trimethylpentane",LB
+37193,0.1359585,Benz[a]Anthracene,LB
+37193,0.4463914,Acrolein,LB
+37193,3.50948e-06,Chromium (VI),LB
+37193,0.008484152,Benzo[b]Fluoranthene,LB
+37193,26.28402,Benzene,LB
+37193,0.0004386824,Nickel,LB
+37193,0.13516002,Phenanthrene,LB
+37193,0.0208867,Methane,TON
+37185,3.470488e-05,Arsenic,LB
+37185,0.824982,Acetaldehyde,LB
+37185,0.3422736,"1,3-Butadiene",LB
+37185,0.000926323,Benzo[b]Fluoranthene,LB
+37185,0.000926323,Benzo[k]Fluoranthene,LB
+37185,0.0007255044,Organic Carbon portion of PM2.5-PRI,TON
+37189,1.575181,PM10-Primary from certain diesel engines,TON
+37189,0.902396,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.178445,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,846.2864,"1,3-Butadiene",LB
+37181,5780.912,Benzene,LB
+37181,0.6650014,Elemental Carbon portion of PM2.5-PRI,TON
+37077,2.154182,Ethyl Benzene,LB
+37077,17.187472,Toluene,LB
+37077,7.30255,Xylenes (Mixed Isomers),LB
+37051,0.0018222924,Benzo[b]Fluoranthene,LB
+37051,0.002284528,Fluoranthene,LB
+37051,0.06515894,Naphthalene,LB
+37041,0.2633842,"1,3-Butadiene",LB
+37041,1.1817452e-05,Chromium (VI),LB
+37041,0.01189859,Phenanthrene,LB
+37041,0.004295262,Fluorene,LB
+37041,0.0167976,Methane,TON
+37041,0.13905,Volatile Organic Compounds,TON
+37031,0.000581529,Anthracene,LB
+37031,0.15002924,Propionaldehyde,LB
+37031,0.74204,"2,2,4-Trimethylpentane",LB
+37031,0.06533604,Acrolein,LB
+37031,0.01191202,PM10 Primary (Filt + Cond),TON
+37031,2.864618,Hexane,LB
+37097,1.4519712,Ethyl Benzene,LB
+37097,0.3413086,"1,3-Butadiene",LB
+37097,0.2589924,Acrolein,LB
+37097,3.816416,Formaldehyde,LB
+37097,0.013784076,Phenanthrene,LB
+37097,4.076047,Carbon Monoxide,TON
+37097,0.006470663,Nitrous Oxide,TON
+37097,2.752562e-05,Nitrate portion of PM2.5-PRI,TON
+37097,0.01197636,PM2.5 Primary (Filt + Cond),TON
+37089,27.1552,Benzene,LB
+37089,0.07881537,Methane,TON
+37089,0.1396018,PM10 Primary (Filt + Cond),TON
+37089,0.01465384,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,22.58528,Toluene,LB
+37089,0.05902496,"Benzo[g,h,i,]Perylene",LB
+37089,0.011602144,Benzo[b]Fluoranthene,LB
+37087,0.1962107,Volatile Organic Compounds,TON
+37169,0.223493,Chrysene,LB
+37169,240.5604,Formaldehyde,LB
+37169,2.81864,Styrene,LB
+37169,6.033038,Hexane,LB
+37169,8918.167,Carbon Dioxide,TON
+37169,0.9731211,PM10-Primary from certain diesel engines,TON
+37169,0.9347687,PM2.5 Primary (Filt + Cond),TON
+37169,0.0758614,Sulfur Dioxide,TON
+37165,0.8509582,Styrene,LB
+37165,0.7224314,Acrolein,LB
+37165,12.42779,Formaldehyde,LB
+37165,0.000620142,"Dibenzo[a,h]Anthracene",LB
+37165,0.02281246,Methane,TON
+37163,0.726216,Toluene,LB
+37163,0.03742978,Anthracene,LB
+37163,0.7225446,Xylenes (Mixed Isomers),LB
+37163,0.002297692,Manganese,LB
+37163,0.01140781,Elemental Carbon portion of PM2.5-PRI,TON
+37155,179.81288,Toluene,LB
+37157,13.319558,Toluene,LB
+37157,0.02154546,Benzo[a]Pyrene,LB
+37157,4.842112,"2,2,4-Trimethylpentane",LB
+37157,0.6099906,Acenaphthene,LB
+37157,0.2083827,PM10-Primary from certain diesel engines,TON
+37157,0.0004290241,Nitrate portion of PM2.5-PRI,TON
+37157,0.01124397,Sulfur Dioxide,TON
+37157,260.365,Naphthalene,LB
+37157,1.855817,PM25-Primary from certain diesel engines,TON
+37157,77.89662,Ethyl Benzene,LB
+37157,188.67206,Acrolein,LB
+37157,0.7956712,Chrysene,LB
+37157,63.05122,Ethyl Benzene,LB
+37157,3.449678e-05,Chromium (VI),LB
+37157,0.04216202,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.13873822,Fluoranthene,LB
+37157,0.4299932,Acenaphthylene,LB
+37157,0.02829016,Chrysene,LB
+37157,0.0009681136,"Dibenzo[a,h]Anthracene",LB
+37157,0.19112354,Fluorene,LB
+37147,2.38785,Acrolein,LB
+37147,1.03754e-05,Chromium (VI),LB
+37147,0.0017821306,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.8503856,"2,2,4-Trimethylpentane",LB
+37147,0.004849856,Nickel,LB
+37147,0.00234852,Arsenic,LB
+37147,0.0918475,Acenaphthene,LB
+37147,0.0214659,Methane,TON
+37147,2.957164,Nitrogen Oxides,TON
+37147,0.03543209,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.007696872,Sulfur Dioxide,TON
+37135,4.55613e-05,Mercury,LB
+37135,0.03168988,Nickel,LB
+37135,0.8353824,Acenaphthene,LB
+37135,3.206236,Phenanthrene,LB
+37135,10.76812,Nitrogen Oxides,TON
+37135,0.7021625,PM2.5 Primary (Filt + Cond),TON
+37135,0.01684429,Sulfur Dioxide,TON
+37135,20.11556,Acrolein,LB
+37135,0.012324582,"Benzo[g,h,i,]Perylene",LB
+37135,2.046566,Fluoranthene,LB
+37135,1.4043992,Acenaphthylene,LB
+37135,0.6651526,Benz[a]Anthracene,LB
+37119,0.12903678,Chromium (VI),LB
+37119,5240.68,Naphthalene,LB
+37119,29320.08,Carbon Monoxide,TON
+37119,11.68628,Elemental Carbon portion of PM2.5-PRI,TON
+37117,5.01089e-05,Ammonia,TON
+37117,6.024632e-05,PM2.5 Primary (Filt + Cond),TON
+37117,1.662334e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.00266945,Styrene,LB
+37117,0.01292463,"1,3-Butadiene",LB
+37117,9.853456e-05,Anthracene,LB
+37117,0.00019298314,Pyrene,LB
+37117,0.12044094,Benzene,LB
+37107,2.647878,Acrolein,LB
+37107,0.02116449,Methane,TON
+37107,0.08724226,PM25-Primary from certain diesel engines,TON
+37097,22.15616,Ethyl Benzene,LB
+37097,0.02672878,Anthracene,LB
+37097,9.896458,Formaldehyde,LB
+37097,34.5029,Benzene,LB
+37097,8.68761e-05,Mercury,LB
+37097,14.45931,Carbon Monoxide,TON
+37097,0.007140974,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.0001813168,Nitrate portion of PM2.5-PRI,TON
+37085,0.01458458,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.08943954,Volatile Organic Compounds,TON
+37143,26.10644,Styrene,LB
+37143,0.968633,Anthracene,LB
+37143,1.893124,Pyrene,LB
+37143,0.3384414,Chrysene,LB
+37143,23.14502,Volatile Organic Compounds,TON
+37143,2.286498,Fluorene,LB
+37137,0.889831,Toluene,LB
+37137,0.5389966,Xylenes (Mixed Isomers),LB
+37137,2.203788e-08,Chromium (VI),LB
+37137,0.00101243,Acenaphthylene,LB
+37137,0.00016713278,Benzo[a]Pyrene,LB
+37137,0.011514432,Naphthalene,LB
+37137,3.101166e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.007101554,Nitrogen Oxides,TON
+37137,0.0002284534,PM10 Primary (Filt + Cond),TON
+37133,9.115592,Styrene,LB
+37133,60.89208,Acrolein,LB
+37133,0.13746796,Benzo[b]Fluoranthene,LB
+37133,3.607078,Acenaphthylene,LB
+37133,0.8908592,Chrysene,LB
+37133,73.64286,Benzene,LB
+37133,8.83482,Phenanthrene,LB
+37127,0.15905664,Pyrene,LB
+37127,4.936538e-05,Chromium (VI),LB
+37127,0.1650523,"Benzo[g,h,i,]Perylene",LB
+37127,0.0620119,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.13961482,Fluoranthene,LB
+37127,71.63606,"2,2,4-Trimethylpentane",LB
+37127,0.5082742,Phenanthrene,LB
+37127,0.03537392,Organic Carbon portion of PM2.5-PRI,TON
+37117,1.30441,Volatile Organic Compounds,TON
+37117,7.02748,"1,3-Butadiene",LB
+37117,0.7460778,Anthracene,LB
+37117,11.774232,Propionaldehyde,LB
+37117,0.13994664,Benzo[a]Pyrene,LB
+37117,0.02229982,Arsenic,LB
+37117,1.029036,PM2.5 Primary (Filt + Cond),TON
+37117,0.06855752,Sulfur Dioxide,TON
+37115,1.7333778,Ethyl Benzene,LB
+37115,0.17052062,Anthracene,LB
+37115,0.010094474,Manganese,LB
+37115,0.549564,Phenanthrene,LB
+37115,2.143198,Carbon Monoxide,TON
+37115,457.6442,Carbon Dioxide,TON
+37115,0.07495992,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.1498495,PM10 Primary (Filt + Cond),TON
+37097,0.08386391,Nitrous Oxide,TON
+37097,1.620684,Organic Carbon portion of PM2.5-PRI,TON
+37097,44.95886,"1,3-Butadiene",LB
+37097,0.0430037,Benzo[k]Fluoranthene,LB
+37105,0.005400726,"Dibenzo[a,h]Anthracene",LB
+37105,581.5938,Benzene,LB
+37105,0.07491414,Nickel,LB
+37079,15.62915,"2,2,4-Trimethylpentane",LB
+37073,0.2709424,"1,3-Butadiene",LB
+37073,0.09320676,Pyrene,LB
+37073,0.656973,Xylenes (Mixed Isomers),LB
+37073,0.002174642,Benzo[b]Fluoranthene,LB
+37073,0.04608126,Acenaphthylene,LB
+37073,0.02332894,Benz[a]Anthracene,LB
+37073,2.750558e-06,Mercury,LB
+37073,0.0007858346,Sulfur Dioxide,TON
+37073,0.4273692,"1,3-Butadiene",LB
+37073,0.0654574,Pyrene,LB
+37073,0.0001499578,"Benzo[g,h,i,]Perylene",LB
+37073,2.48177e-05,"Dibenzo[a,h]Anthracene",LB
+37073,0.01121893,Methane,TON
+37073,0.0001523939,Nitrous Oxide,TON
+37077,0.0002523812,Chromium (VI),LB
+37077,0.02090804,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,3.226012,Fluoranthene,LB
+37077,0.011512626,Benzo[k]Fluoranthene,LB
+37077,0.061637,Arsenic,LB
+37077,1.5238334,Acenaphthene,LB
+37077,5.713818,Phenanthrene,LB
+37077,2.38105,PM2.5 Primary (Filt + Cond),TON
+37053,1.1731218,"2,2,4-Trimethylpentane",LB
+37053,0.01339374,Methane,TON
+37053,1.6002006,Ethyl Benzene,LB
+37053,0.3682632,Pyrene,LB
+37061,2446.12,"1,3-Butadiene",LB
+37061,13147.248,Hexane,LB
+37061,83.51394,Acenaphthylene,LB
+37061,6039.21,Acetaldehyde,LB
+37061,1.332438,Elemental Carbon portion of PM2.5-PRI,TON
+37061,17.05177,Ammonia,TON
+37049,0.6087118,Phenanthrene,LB
+37049,0.0001842356,Nitrate portion of PM2.5-PRI,TON
+37049,0.07213348,PM2.5 Primary (Filt + Cond),TON
+37049,0.002040558,Sulfate Portion of PM2.5-PRI,TON
+37049,70.99414,Ethyl Benzene,LB
+37049,0.03532798,Chrysene,LB
+37047,2.53363,Anthracene,LB
+37047,0.000234313,Chromium (VI),LB
+37047,0.3384034,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.02936118,Ethyl Benzene,LB
+37039,0.19684036,Acrolein,LB
+37039,1.5316616e-05,Mercury,LB
+37043,20.878,Styrene,LB
+37043,879.8184,Hexane,LB
+37043,1.5035456,Pyrene,LB
+37043,0.1967474,Manganese,LB
+37043,0.114855,Nickel,LB
+37043,0.1023395,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.4620087,PM2.5 Primary (Filt + Cond),TON
+37043,0.2613856,Sulfur Dioxide,TON
+37033,1.4879204,Propionaldehyde,LB
+37033,0.0006120934,Pyrene,LB
+37033,0.0011043054,Naphthalene,LB
+37033,0.8274506,Nitrogen Oxides,TON
+37033,0.0232024,Organic Carbon portion of PM2.5-PRI,TON
+37033,1.5199002,Acrolein,LB
+37033,0.4832726,Hexane,LB
+37033,0.07203574,Anthracene,LB
+37033,0.0006770782,Benzo[k]Fluoranthene,LB
+37033,19.22865,Formaldehyde,LB
+37029,3.416054,Ethyl Benzene,LB
+37029,0.5139084,Acenaphthylene,LB
+37029,9.408572,Benzene,LB
+37029,0.2597401,PM10-Primary from certain diesel engines,TON
+37029,0.2526767,PM2.5 Primary (Filt + Cond),TON
+37029,0.04571628,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,448.836,Toluene,LB
+37027,0.03574899,Ammonia,TON
+37027,8.767192e-05,Nitrate portion of PM2.5-PRI,TON
+37027,0.01873205,Sulfur Dioxide,TON
+37129,3.865678,Chrysene,LB
+37129,12.38542,Acenaphthene,LB
+37129,283.8824,Volatile Organic Compounds,TON
+37021,1.0284956,"1,3-Butadiene",LB
+37021,2.448538,Acrolein,LB
+37021,0.0013369678,"Benzo[g,h,i,]Perylene",LB
+37021,0.02142114,Benzo[a]Pyrene,LB
+37021,0.07647115,PM10-Primary from certain diesel engines,TON
+37055,0.004693171,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.000390298,Fluoranthene,LB
+37151,32.16852,Anthracene,LB
+37151,0.3039266,"Dibenzo[a,h]Anthracene",LB
+37151,36667.1,Benzene,LB
+37151,0.191753,Mercury,LB
+37151,76.3021,Fluorene,LB
+37151,3.191631,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.0401696,Nitrate portion of PM2.5-PRI,TON
+37151,34.25811,PM10 Primary (Filt + Cond),TON
+37139,494.7844,Hexane,LB
+37139,0.004377504,"Dibenzo[a,h]Anthracene",LB
+37139,0.04839452,Nickel,LB
+37139,33.05192,Naphthalene,LB
+37139,15.41231,Nitrogen Oxides,TON
+37139,0.1087171,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.03030605,PM2.5 Primary (Filt + Cond),TON
+37101,0.04641162,Fluoranthene,LB
+37101,33.4484,Benzene,LB
+37101,0.0300162,Acenaphthene,LB
+37101,1.5608808,Naphthalene,LB
+37101,477.9003,Carbon Dioxide,TON
+37101,0.004559363,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.01590041,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.4026782,"Benzo[g,h,i,]Perylene",LB
+37117,0.0904736,Manganese,LB
+37117,0.04138404,Nickel,LB
+37117,157.70786,Acetaldehyde,LB
+37117,0.004667307,Sulfate Portion of PM2.5-PRI,TON
+37189,0.0812696,"1,3-Butadiene",LB
+37189,5.100878e-06,Chromium (VI),LB
+37189,0.0017712142,Manganese,LB
+37189,0.000614783,Acenaphthene,LB
+37189,0.003497482,Phenanthrene,LB
+37189,0.03206792,Naphthalene,LB
+37189,0.0003605257,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.0007677232,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,4.531084,Acrolein,LB
+37185,0.4463216,Fluoranthene,LB
+37185,0.04243202,Benzo[a]Pyrene,LB
+37185,0.00142917,Nitrous Oxide,TON
+37185,2.824832,Nitrogen Oxides,TON
+37169,0.06664144,PM2.5 Primary (Filt + Cond),TON
+37169,0.003883914,Sulfur Dioxide,TON
+37169,0.4356751,Volatile Organic Compounds,TON
+37169,1.048418,Styrene,LB
+37169,5.626428,Toluene,LB
+37169,1.9642496,Hexane,LB
+37127,15.864536,"1,3-Butadiene",LB
+37127,0.4167116,Anthracene,LB
+37127,0.2338298,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,745.2702,"2,2,4-Trimethylpentane",LB
+37127,0.00209554,Mercury,LB
+37127,104.69686,Acetaldehyde,LB
+37127,25.1778,Naphthalene,LB
+37133,5.752188e-05,Mercury,LB
+37133,6.504514e-05,Acenaphthene,LB
+37133,0.0004178654,Naphthalene,LB
+37133,0.02721285,Nitrous Oxide,TON
+37133,3891.58,Toluene,LB
+37133,2509.62,Xylenes (Mixed Isomers),LB
+37133,342.8776,Formaldehyde,LB
+37133,0.15203864,Nickel,LB
+37133,2.304322,Fluorene,LB
+37127,8.996586,"2,2,4-Trimethylpentane",LB
+37127,0.05680704,Nickel,LB
+37127,0.02389448,Arsenic,LB
+37127,0.4043952,PM10-Primary from certain diesel engines,TON
+37127,0.2742667,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.0007957256,Nitrate portion of PM2.5-PRI,TON
+37127,1.94977,Volatile Organic Compounds,TON
+37127,0.07974726,Acenaphthylene,LB
+37127,0.007037618,Chrysene,LB
+37127,0.0005878372,Nickel,LB
+37127,0.0270818,PM10 Primary (Filt + Cond),TON
+37127,0.004075,Sulfur Dioxide,TON
+37127,0.4139926,Volatile Organic Compounds,TON
+37127,0.00010916216,Benzo[a]Pyrene,LB
+37127,1.4205476e-07,Mercury,LB
+37127,2.715888e-06,Arsenic,LB
+37127,0.08695616,Acetaldehyde,LB
+37121,0.04111952,Pyrene,LB
+37121,0.00012148168,Benzo[k]Fluoranthene,LB
+37121,0.002947666,Benzo[a]Pyrene,LB
+37121,0.05135436,Phenanthrene,LB
+37121,0.0001457435,Nitrous Oxide,TON
+37117,4.871638e-05,Benz[a]Anthracene,LB
+37117,0.0010851334,Naphthalene,LB
+37117,0.3626746,Nitrogen Oxides,TON
+37117,0.0001287778,Anthracene,LB
+37111,4.264298e-05,Arsenic,LB
+37111,0.004036416,Methane,TON
+37111,0.001021931,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.002911756,PM10 Primary (Filt + Cond),TON
+37125,0.0314441,Fluorene,LB
+37125,0.8056964,Naphthalene,LB
+37125,7.131574,Carbon Monoxide,TON
+37125,78.68746,Carbon Dioxide,TON
+37125,1.790133e-06,Chromium (VI),LB
+37125,0.00929227,"Benzo[g,h,i,]Perylene",LB
+37123,62.53812,Acrolein,LB
+37123,0.003588528,Chromium (VI),LB
+37123,1.0316294,Benzo[b]Fluoranthene,LB
+37123,1.0316294,Benzo[k]Fluoranthene,LB
+37123,0.6877576,Arsenic,LB
+37123,1.561686,Methane,TON
+37123,4.61829,Ammonia,TON
+37115,4719.138,Toluene,LB
+37115,16.4588,Volatile Organic Compounds,TON
+37107,57.02916,"2,2,4-Trimethylpentane",LB
+37107,0.015243632,Benz[a]Anthracene,LB
+37107,0.002103162,Nickel,LB
+37107,0.3336068,Phenanthrene,LB
+37107,0.05428098,Methane,TON
+37107,671.9345,Carbon Dioxide,TON
+37107,8.128342,"1,3-Butadiene",LB
+37107,63.3465,Hexane,LB
+37103,0.1159376,Toluene,LB
+37103,9.36186e-06,Mercury,LB
+37103,0.001324712,Ammonia,TON
+37103,0.2232059,Nitrogen Oxides,TON
+37097,4.108924,Propionaldehyde,LB
+37097,0.0006196346,Acenaphthene,LB
+37097,0.003292892,Phenanthrene,LB
+37097,0.0013901816,Fluorene,LB
+37097,0.004936192,Organic Carbon portion of PM2.5-PRI,TON
+37091,1151.9258,Toluene,LB
+37091,0.2954536,"Benzo[g,h,i,]Perylene",LB
+37091,0.1110064,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,248.3178,"2,2,4-Trimethylpentane",LB
+37091,352.4378,Benzene,LB
+37091,122.62086,Acetaldehyde,LB
+37091,0.2267531,Methane,TON
+37091,0.06124404,Organic Carbon portion of PM2.5-PRI,TON
+37089,1.0638594,Chrysene,LB
+37089,0.0230819,"Dibenzo[a,h]Anthracene",LB
+37089,1.8039682,Benz[a]Anthracene,LB
+37089,28.04962,Ethyl Benzene,LB
+37089,0.0002651948,Chromium (VI),LB
+37089,3.006392,PM25-Primary from certain diesel engines,TON
+37089,0.2267452,Sulfur Dioxide,TON
+37089,4.347697,Volatile Organic Compounds,TON
+37087,4.01692,Acenaphthylene,LB
+37087,1.0507068,Chrysene,LB
+37087,871.6004,Formaldehyde,LB
+37087,0.07775164,Arsenic,LB
+37087,3.662344,PM10-Primary from certain diesel engines,TON
+37087,3.369297,PM25-Primary from certain diesel engines,TON
+37073,1.150429,Styrene,LB
+37073,4.508362,Xylenes (Mixed Isomers),LB
+37073,0.002490636,Benzo[k]Fluoranthene,LB
+37073,0.2003028,Benz[a]Anthracene,LB
+37073,0.02364062,Manganese,LB
+37073,0.001051328,Nitrate portion of PM2.5-PRI,TON
+37073,0.08580195,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.01026896,Sulfur Dioxide,TON
+37073,0.012915538,Anthracene,LB
+37073,0.2998188,Propionaldehyde,LB
+37073,0.004892226,Benzo[a]Pyrene,LB
+37073,0.00011163038,"Dibenzo[a,h]Anthracene",LB
+37073,5.665772e-05,Mercury,LB
+37073,0.006282516,PM2.5 Primary (Filt + Cond),TON
+37067,59.05369,Carbon Monoxide,TON
+37067,0.0008248222,Nitrate portion of PM2.5-PRI,TON
+37067,0.4599247,PM10 Primary (Filt + Cond),TON
+37067,0.04764454,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,1.4412338,Anthracene,LB
+37067,53.71088,Xylenes (Mixed Isomers),LB
+37067,0.006683392,"Benzo[g,h,i,]Perylene",LB
+37067,0.03454976,Benzo[a]Pyrene,LB
+37067,17.031542,"2,2,4-Trimethylpentane",LB
+37067,0.0002922896,Mercury,LB
+37059,4.219976,Pyrene,LB
+37059,496.8886,Formaldehyde,LB
+37059,0.0002119446,Mercury,LB
+37059,208.9158,Acetaldehyde,LB
+37059,1.4465016,Acenaphthene,LB
+37059,16515.77,Carbon Dioxide,TON
+37059,2.134111,PM25-Primary from certain diesel engines,TON
+37059,0.01790286,Nitrous Oxide,TON
+37057,5.841874,Hexane,LB
+37057,11.385272,Propionaldehyde,LB
+37057,1.1552798,Acenaphthylene,LB
+37057,0.6873932,Acenaphthene,LB
+37057,0.6605431,PM10 Primary (Filt + Cond),TON
+37051,1.269738,Sulfate Portion of PM2.5-PRI,TON
+37051,38.04118,Styrene,LB
+37051,95.9488,"1,3-Butadiene",LB
+37051,0.0012490518,Chromium (VI),LB
+37051,3.297484,Chrysene,LB
+37051,0.06968338,"Dibenzo[a,h]Anthracene",LB
+37051,2013.472,Acetaldehyde,LB
+37051,136631.5,Carbon Dioxide,TON
+37051,359.9518,Nitrogen Oxides,TON
+37049,6.486984,Styrene,LB
+37049,1.6605956,Anthracene,LB
+37049,536.5882,Formaldehyde,LB
+37049,1.324506,PM10-Primary from certain diesel engines,TON
+37039,0.04569767,Sulfur Dioxide,TON
+37039,5.450595,Volatile Organic Compounds,TON
+37039,402.5282,Acetaldehyde,LB
+37039,0.00128983,Nitrate portion of PM2.5-PRI,TON
+37039,18.04358,Nitrogen Oxides,TON
+37039,6.702626,Ethyl Benzene,LB
+37039,1.034354,Volatile Organic Compounds,TON
+37031,0.02218736,Arsenic,LB
+37031,1.7773776,Phenanthrene,LB
+37031,0.0003317425,Nitrate portion of PM2.5-PRI,TON
+37031,3.22203,Nitrogen Oxides,TON
+37031,0.2181039,PM10 Primary (Filt + Cond),TON
+37031,2856.53,Toluene,LB
+37031,685.7588,Hexane,LB
+37031,5.281974,Propionaldehyde,LB
+37031,124.23824,Formaldehyde,LB
+37025,5.722948,Hexane,LB
+37025,0.006353588,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.18121428,Chrysene,LB
+37025,1.394012,Fluorene,LB
+37085,13.692968,Propionaldehyde,LB
+37085,1.1458,Fluoranthene,LB
+37085,0.0012618754,Benzo[k]Fluoranthene,LB
+37085,0.09776248,Chrysene,LB
+37085,13.85212,Carbon Monoxide,TON
+37085,2090.129,Carbon Dioxide,TON
+37085,0.2841066,PM10-Primary from certain diesel engines,TON
+37085,0.188692,Elemental Carbon portion of PM2.5-PRI,TON
+37085,5.744026,Nitrogen Oxides,TON
+37085,2331.28,Ethyl Benzene,LB
+37075,7.62917e-05,Ammonia,TON
+37075,1.755246e-06,Nitrate portion of PM2.5-PRI,TON
+37075,0.0006433368,PM2.5 Primary (Filt + Cond),TON
+37075,1.016789e-05,Sulfate Portion of PM2.5-PRI,TON
+37063,27.28228,Acrolein,LB
+37063,2.011288,Fluoranthene,LB
+37063,0.280246,Chrysene,LB
+37063,0.132284,Methane,TON
+37059,0.0014586174,Benzo[k]Fluoranthene,LB
+37059,0.0356655,Benzo[a]Pyrene,LB
+37059,4.042432,Benzene,LB
+37059,4.724252,Naphthalene,LB
+37059,0.02189962,Methane,TON
+37059,538.3121,Carbon Dioxide,TON
+37059,0.1329309,PM10-Primary from certain diesel engines,TON
+37059,0.1285351,PM2.5 Primary (Filt + Cond),TON
+37059,0.02235728,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,1.4464556,Ethyl Benzene,LB
+37059,3.144322,Toluene,LB
+37061,0.2212958,Acrolein,LB
+37061,0.2074518,Toluene,LB
+37061,0.00010604056,Chrysene,LB
+37061,1.6964432e-05,Mercury,LB
+37061,0.0003243592,Arsenic,LB
+37055,0.04347652,Acrolein,LB
+37055,1.5300886e-06,Mercury,LB
+37055,0.0004330024,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.009079386,Styrene,LB
+37053,4.295288e-08,Chromium (VI),LB
+37053,0.00019490026,Benzo[k]Fluoranthene,LB
+37053,0.0004408172,Methane,TON
+37053,7.367673e-05,Nitrous Oxide,TON
+37053,7.800636e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.1475666,Propionaldehyde,LB
+37039,19.86054,Xylenes (Mixed Isomers),LB
+37039,0.002053222,Benzo[k]Fluoranthene,LB
+37039,0.00206357,Benz[a]Anthracene,LB
+37039,0.01453172,Fluorene,LB
+37039,8.610382e-06,Nitrate portion of PM2.5-PRI,TON
+37039,0.3021449,Nitrogen Oxides,TON
+37039,0.00154886,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.007686226,PM10 Primary (Filt + Cond),TON
+37039,0.003211215,PM2.5 Primary (Filt + Cond),TON
+37039,0.001325503,Sulfur Dioxide,TON
+37033,0.0009645536,Nitrous Oxide,TON
+37033,2.563787e-06,Nitrate portion of PM2.5-PRI,TON
+37023,4.866578,Hexane,LB
+37023,0.8456752,Fluoranthene,LB
+37023,0.02731378,Manganese,LB
+37023,0.2753975,PM10 Primary (Filt + Cond),TON
+37023,0.2027325,PM2.5 Primary (Filt + Cond),TON
+37023,6.715054,PM2.5 Primary (Filt + Cond),TON
+37023,182.9925,Volatile Organic Compounds,TON
+37023,14.463768,Pyrene,LB
+37023,0.011509072,Chromium (VI),LB
+37023,5.137372,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,2.205846,Arsenic,LB
+37173,74.78944,Naphthalene,LB
+37173,0.1886915,Elemental Carbon portion of PM2.5-PRI,TON
+37173,1343.1338,Hexane,LB
+37173,0.819889,Benzo[a]Pyrene,LB
+37173,1225.1388,"2,2,4-Trimethylpentane",LB
+37167,2354.598,"1,3-Butadiene",LB
+37167,13013.262,Hexane,LB
+37167,14.426644,Anthracene,LB
+37167,0.0875518,Mercury,LB
+37167,5687.274,Acetaldehyde,LB
+37167,14.56602,PM10 Primary (Filt + Cond),TON
+37167,0.1522847,Sulfate Portion of PM2.5-PRI,TON
+37159,1.45167,Carbon Monoxide,TON
+37159,0.1892599,PM25-Primary from certain diesel engines,TON
+37159,0.5175104,Styrene,LB
+37159,0.2019964,Acenaphthylene,LB
+37159,0.05243212,Chrysene,LB
+37159,0.02723686,Benzo[a]Pyrene,LB
+37155,3.316012e-08,Chromium (VI),LB
+37155,0.0005474139,Sulfur Dioxide,TON
+37149,6.786328,Acenaphthylene,LB
+37149,1.347217,PM10 Primary (Filt + Cond),TON
+37161,4.018166,Hexane,LB
+37161,0.5579096,Anthracene,LB
+37161,2.81132e-05,Chromium (VI),LB
+37161,4.03669,"2,2,4-Trimethylpentane",LB
+37161,0.016774998,Nickel,LB
+37161,0.02013865,Ammonia,TON
+37161,0.06800103,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,1.0999004,Hexane,LB
+37137,8.400584e-06,"Dibenzo[a,h]Anthracene",LB
+37137,0.00081942,Methane,TON
+37137,0.5265678,Carbon Monoxide,TON
+37137,0.004779214,Acenaphthylene,LB
+37131,5.04926,"1,3-Butadiene",LB
+37131,38.16684,Hexane,LB
+37131,0.06520102,Fluoranthene,LB
+37131,0.000819656,"Dibenzo[a,h]Anthracene",LB
+37131,34.32884,"2,2,4-Trimethylpentane",LB
+37131,0.019794556,Benz[a]Anthracene,LB
+37131,44.7063,Benzene,LB
+37131,0.0002378558,Mercury,LB
+37131,2.250876,Nitrogen Oxides,TON
+37117,48.71808,Formaldehyde,LB
+37117,0.0012004652,"Dibenzo[a,h]Anthracene",LB
+37117,180.42068,"2,2,4-Trimethylpentane",LB
+37117,0.03789062,Benz[a]Anthracene,LB
+37117,0.10968066,Anthracene,LB
+37117,0.03793872,Benzo[k]Fluoranthene,LB
+37117,0.00750257,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.07600398,PM10 Primary (Filt + Cond),TON
+37117,0.01771877,Sulfur Dioxide,TON
+37107,65.44676,Toluene,LB
+37107,0.413109,Chrysene,LB
+37107,0.03864816,Arsenic,LB
+37107,469.9434,Acetaldehyde,LB
+37107,60.25415,Carbon Monoxide,TON
+37107,5784.504,Carbon Dioxide,TON
+37107,0.002300342,Nitrate portion of PM2.5-PRI,TON
+37107,21.33801,Nitrogen Oxides,TON
+37107,0.0015334728,Benzo[k]Fluoranthene,LB
+37107,7.337682e-06,Nitrate portion of PM2.5-PRI,TON
+37107,0.2633516,Nitrogen Oxides,TON
+37107,0.001187391,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.1097613,Volatile Organic Compounds,TON
+37105,4953.212,Xylenes (Mixed Isomers),LB
+37105,2586.462,"2,2,4-Trimethylpentane",LB
+37099,0.03057404,Nickel,LB
+37099,9.553931,Carbon Monoxide,TON
+37099,0.03814615,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.2271789,PM2.5 Primary (Filt + Cond),TON
+37099,0.0010279826,Benzo[k]Fluoranthene,LB
+37093,0.3014984,Ethyl Benzene,LB
+37093,0.11764064,Styrene,LB
+37093,0.002109518,Benzo[b]Fluoranthene,LB
+37093,0.013398544,Chrysene,LB
+37093,0.000593519,Arsenic,LB
+37093,0.0618877,Fluorene,LB
+37093,0.2914486,Carbon Monoxide,TON
+37087,22450.88,Benzene,LB
+37087,0.1544782,Mercury,LB
+37087,2.953402,Arsenic,LB
+37087,126.98696,Phenanthrene,LB
+37087,2.442498,Elemental Carbon portion of PM2.5-PRI,TON
+37087,23.76337,Ammonia,TON
+37087,27.00852,PM10 Primary (Filt + Cond),TON
+37087,479.5436,Propionaldehyde,LB
+37087,11.398,Benzo[a]Pyrene,LB
+37085,89.5614,Hexane,LB
+37085,1.8008628,Propionaldehyde,LB
+37085,0.16013264,Pyrene,LB
+37085,0.04603964,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.03161872,Benzo[k]Fluoranthene,LB
+37085,0.4337104,Acenaphthylene,LB
+37085,30.15622,Formaldehyde,LB
+37085,102.67248,Benzene,LB
+37085,0.006106464,Nickel,LB
+37085,0.5182438,Phenanthrene,LB
+37085,0.07597406,Ammonia,TON
+37085,0.001669011,Sulfate Portion of PM2.5-PRI,TON
+37081,0.0004024796,"Dibenzo[a,h]Anthracene",LB
+37081,0.03217172,Anthracene,LB
+37081,0.06294232,Pyrene,LB
+37081,0.7769235,Nitrogen Oxides,TON
+37081,0.01790176,PM2.5 Primary (Filt + Cond),TON
+37081,0.6621551,Volatile Organic Compounds,TON
+37075,0.403023,Propionaldehyde,LB
+37075,4.79066e-06,Mercury,LB
+37075,0.2157946,Carbon Monoxide,TON
+37075,0.001668456,PM2.5 Primary (Filt + Cond),TON
+37075,0.0381586,Propionaldehyde,LB
+37075,3.675342e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,1.9763884e-05,Benzo[k]Fluoranthene,LB
+37075,2.758954e-05,Arsenic,LB
+37075,0.0001357369,Ammonia,TON
+37047,2.709108,Benzene,LB
+37047,0.2485447,Volatile Organic Compounds,TON
+37049,0.002483632,Acenaphthylene,LB
+37049,5.379396e-05,Mercury,LB
+37049,90.95873,Carbon Dioxide,TON
+37049,0.0005022134,Anthracene,LB
+37049,0.12920766,Propionaldehyde,LB
+37049,5.366132e-06,Chromium (VI),LB
+37049,0.0007962781,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.03857879,Volatile Organic Compounds,TON
+37035,2.177915,Nitrogen Oxides,TON
+37115,0.0004421336,Arsenic,LB
+37115,0.3126983,Carbon Monoxide,TON
+37115,0.002330994,PM10 Primary (Filt + Cond),TON
+37115,1.895552e-05,Sulfate Portion of PM2.5-PRI,TON
+37169,0.006579386,Chrysene,LB
+37169,0.003358544,Benzo[a]Pyrene,LB
+37169,0.01255232,PM10-Primary from certain diesel engines,TON
+37167,0.0002946982,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.5043178,Acenaphthylene,LB
+37167,0.02331964,Chrysene,LB
+37167,102.7596,Formaldehyde,LB
+37167,0.00016094406,"Dibenzo[a,h]Anthracene",LB
+37167,2.701386,"2,2,4-Trimethylpentane",LB
+37167,0.05331128,Benz[a]Anthracene,LB
+37167,0.06705769,Methane,TON
+37149,50.71284,Toluene,LB
+37149,1.786924,Volatile Organic Compounds,TON
+37021,0.01436987,Ethyl Benzene,LB
+37021,4.332006e-05,Anthracene,LB
+37021,0.408368,Propionaldehyde,LB
+37021,2.632832e-05,Chrysene,LB
+37021,0.0596815,Benzene,LB
+37021,0.00013807042,Fluorene,LB
+37021,0.000363603,Naphthalene,LB
+37021,0.112773,Nitrogen Oxides,TON
+37021,0.01802323,Volatile Organic Compounds,TON
+37011,0.003498008,Benzo[k]Fluoranthene,LB
+37011,162.33766,Formaldehyde,LB
+37011,0.08420476,Benzo[a]Pyrene,LB
+37011,0.2901828,Benz[a]Anthracene,LB
+37011,14.526116,Benzene,LB
+37011,0.6054864,PM25-Primary from certain diesel engines,TON
+37011,0.001487426,Nitrate portion of PM2.5-PRI,TON
+37011,0.8636737,Volatile Organic Compounds,TON
+37009,0.14847208,Xylenes (Mixed Isomers),LB
+37009,0.0008566022,Naphthalene,LB
+37009,0.0245031,Ethyl Benzene,LB
+37009,0.015887316,"1,3-Butadiene",LB
+37005,0.00944233,Ethyl Benzene,LB
+37005,0.1353777,Methane,TON
+37005,0.1111433,Nitrogen Oxides,TON
+37005,0.003413374,PM10 Primary (Filt + Cond),TON
+37005,0.0001316035,Sulfur Dioxide,TON
+37069,6.032452,Xylenes (Mixed Isomers),LB
+37155,0.02955074,Fluoranthene,LB
+37155,0.016481094,Chrysene,LB
+37155,0.03694998,Manganese,LB
+37155,0.016524456,Acenaphthene,LB
+37155,0.03118318,Nitrous Oxide,TON
+37135,0.05424984,Naphthalene,LB
+37135,0.002851735,Nitrous Oxide,TON
+37135,0.12370772,"1,3-Butadiene",LB
+37135,0.10612054,Acrolein,LB
+37135,0.2500892,Propionaldehyde,LB
+37135,0.00217534,Pyrene,LB
+37135,0.0001269851,Mercury,LB
+37135,0.002427826,Arsenic,LB
+37127,12.896592,Xylenes (Mixed Isomers),LB
+37127,11.389984,"2,2,4-Trimethylpentane",LB
+37121,0.03151694,"1,3-Butadiene",LB
+37121,1.436296e-06,Chromium (VI),LB
+37121,0.0003019314,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.000329402,Fluoranthene,LB
+37121,0.00016500506,Benzo[k]Fluoranthene,LB
+37121,0.0009305098,Acenaphthylene,LB
+37121,0.0005891957,Sulfur Dioxide,TON
+37121,0.0002022614,Acenaphthene,LB
+37121,0.001132323,Phenanthrene,LB
+37121,0.010533826,Naphthalene,LB
+37007,0.5823726,Fluoranthene,LB
+37007,0.002297132,"Dibenzo[a,h]Anthracene",LB
+37007,1.824318,"2,2,4-Trimethylpentane",LB
+37007,6.9744,Benzene,LB
+37007,0.002348155,Nitrous Oxide,TON
+37007,2.449028,Ethyl Benzene,LB
+37189,1.0363632,Chrysene,LB
+37189,1.6374248,Benzo[a]Pyrene,LB
+37189,0.0399169,Mercury,LB
+37189,168.64918,Naphthalene,LB
+37189,0.4245076,Elemental Carbon portion of PM2.5-PRI,TON
+37189,74.95655,Nitrogen Oxides,TON
+37189,75.01238,Styrene,LB
+37189,520.6722,"1,3-Butadiene",LB
+37189,4.802948,Fluoranthene,LB
+37189,0.05542596,Sulfate Portion of PM2.5-PRI,TON
+37187,500.4422,Hexane,LB
+37187,75.41782,Benzene,LB
+37179,0.02186634,Benzo[b]Fluoranthene,LB
+37179,0.019039638,Benz[a]Anthracene,LB
+37179,0.06727852,Manganese,LB
+37179,0.1628634,Methane,TON
+37179,0.1486832,Ammonia,TON
+37179,0.07009918,PM2.5 Primary (Filt + Cond),TON
+37179,0.002004792,Sulfate Portion of PM2.5-PRI,TON
+37179,0.00432949,Benzo[k]Fluoranthene,LB
+37179,0.004301978,"Dibenzo[a,h]Anthracene",LB
+37179,0.1648375,Organic Carbon portion of PM2.5-PRI,TON
+37179,1.201233,PM10 Primary (Filt + Cond),TON
+37179,0.0874466,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.03999565,Sulfate Portion of PM2.5-PRI,TON
+37087,1.4450492,Propionaldehyde,LB
+37087,0.0006499958,Pyrene,LB
+37087,2.11658e-05,"Benzo[g,h,i,]Perylene",LB
+37087,0.1889241,Benzene,LB
+37087,0.00217389,Manganese,LB
+37087,6.217372,Acetaldehyde,LB
+37087,0.4128295,Nitrogen Oxides,TON
+37087,0.002111674,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.01438473,PM10 Primary (Filt + Cond),TON
+37075,124.83834,Ethyl Benzene,LB
+37075,5.148248,Styrene,LB
+37075,0.1858348,Anthracene,LB
+37075,0.0016410796,"Dibenzo[a,h]Anthracene",LB
+37075,0.01598666,Nickel,LB
+37075,0.03870884,Organic Carbon portion of PM2.5-PRI,TON
+37069,3.276659e-06,Methane,TON
+37069,2.564001e-06,Nitrous Oxide,TON
+37069,0.00366159,Hexane,LB
+37069,3.049256e-10,Chromium (VI),LB
+37069,4.012706e-06,"Benzo[g,h,i,]Perylene",LB
+37069,1.1435e-06,Chrysene,LB
+37069,1.5142208e-06,Benzo[a]Pyrene,LB
+37065,0.014431256,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,2.122384,Acenaphthylene,LB
+37065,0.3850886,Chrysene,LB
+37065,0.18932268,Benzo[a]Pyrene,LB
+37065,0.6734832,Benz[a]Anthracene,LB
+37063,1.1769084,Pyrene,LB
+37063,10.54852,Xylenes (Mixed Isomers),LB
+37063,126.23928,Formaldehyde,LB
+37055,0.013231986,"Benzo[g,h,i,]Perylene",LB
+37055,0.2026396,Manganese,LB
+37055,142.3308,Acetaldehyde,LB
+37055,0.01413078,Nitrous Oxide,TON
+37055,32.43317,Nitrogen Oxides,TON
+37055,0.08972943,Sulfate Portion of PM2.5-PRI,TON
+37049,4.772608,Formaldehyde,LB
+37049,0.01150223,Methane,TON
+37049,0.005396256,Ammonia,TON
+37049,0.2849074,Acrolein,LB
+37049,0.004675658,Benzo[k]Fluoranthene,LB
+37049,0.004467734,Chrysene,LB
+37035,4.117142e-09,Chromium (VI),LB
+37035,0.0003596,Manganese,LB
+37035,2.358534e-06,Mercury,LB
+37035,6.065222e-05,Fluorene,LB
+37035,0.0932342,Carbon Monoxide,TON
+37035,0.007890948,Volatile Organic Compounds,TON
+37033,2.930618,Styrene,LB
+37033,5.38997,Hexane,LB
+37033,2.422958,Phenanthrene,LB
+37033,6204.881,Carbon Dioxide,TON
+37027,0.1381146,Anthracene,LB
+37027,0.009634652,Benzo[b]Fluoranthene,LB
+37027,0.3094492,Fluoranthene,LB
+37027,0.10315336,Benz[a]Anthracene,LB
+37027,0.002351064,Arsenic,LB
+37027,4.368216,Naphthalene,LB
+37027,0.9453212,Carbon Monoxide,TON
+37027,0.0005674016,Nitrate portion of PM2.5-PRI,TON
+37023,0.4422984,Ethyl Benzene,LB
+37023,1.059368,Acrolein,LB
+37023,0.3337688,Hexane,LB
+37023,0.13392914,Pyrene,LB
+37023,0.2500107,Carbon Monoxide,TON
+37023,0.01311632,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.276584,Propionaldehyde,LB
+37077,0.00532893,Acenaphthylene,LB
+37077,0.003423408,Manganese,LB
+37077,0.01016128,Methane,TON
+37175,0.7884878,Xylenes (Mixed Isomers),LB
+37175,0.001575187,"Benzo[g,h,i,]Perylene",LB
+37175,0.0002814676,Benz[a]Anthracene,LB
+37175,0.0003587658,Nickel,LB
+37175,4.391788,Acetaldehyde,LB
+37175,0.0007349474,Fluorene,LB
+37175,0.001295216,Sulfur Dioxide,TON
+37167,10.04809,Acetaldehyde,LB
+37167,0.07024608,Nitrogen Oxides,TON
+37167,0.5107932,Ethyl Benzene,LB
+37167,0.09249422,Acrolein,LB
+37167,0.202011,Propionaldehyde,LB
+37167,9.723708e-06,Chromium (VI),LB
+37167,0.002821544,Manganese,LB
+37137,0.002634204,Styrene,LB
+37137,8.794246e-05,Benzo[k]Fluoranthene,LB
+37137,0.0004201114,Acenaphthylene,LB
+37137,0.004746486,Naphthalene,LB
+37137,0.00078028,Methane,TON
+37137,0.0005944718,Ammonia,TON
+37123,0.00446978,Benzo[k]Fluoranthene,LB
+37123,2.639076e-05,Nitrate portion of PM2.5-PRI,TON
+37123,0.0002812569,Sulfate Portion of PM2.5-PRI,TON
+37121,6.119122,Benzene,LB
+37121,0.002196856,Manganese,LB
+37121,1.985679,Carbon Monoxide,TON
+37121,0.005315913,Sulfur Dioxide,TON
+37121,0.2417048,Acrolein,LB
+37121,0.002092516,Anthracene,LB
+37121,0.06737042,Styrene,LB
+37121,0.2953364,"1,3-Butadiene",LB
+37079,6.851888,Toluene,LB
+37079,0.7997034,Hexane,LB
+37175,2.711532,Styrene,LB
+37175,9.917534,Propionaldehyde,LB
+37175,1.3976258,Fluorene,LB
+37175,1.072868,Volatile Organic Compounds,TON
+37175,283.9092,Ethyl Benzene,LB
+37175,0.1429432,Benzo[a]Pyrene,LB
+37175,0.2583742,Nitrous Oxide,TON
+37171,0.12866004,"Benzo[g,h,i,]Perylene",LB
+37171,0.03364072,Benzo[b]Fluoranthene,LB
+37171,0.03364072,Benzo[k]Fluoranthene,LB
+37171,0.002377358,Nickel,LB
+37171,0.5678156,Phenanthrene,LB
+37171,73.52646,Ethyl Benzene,LB
+37171,0.2112602,Fluorene,LB
+37171,0.0900635,Nitrous Oxide,TON
+37171,0.0913382,PM10 Primary (Filt + Cond),TON
+37169,8.458106,"2,2,4-Trimethylpentane",LB
+37169,27.98592,Benzene,LB
+37169,0.649553,PM25-Primary from certain diesel engines,TON
+37169,8.76145,"1,3-Butadiene",LB
+37169,24.95018,Toluene,LB
+37169,0.011789686,"Benzo[g,h,i,]Perylene",LB
+37169,1.4824024,Acenaphthylene,LB
+37167,0.008435864,Nickel,LB
+37167,2.048554,"1,3-Butadiene",LB
+37167,0.0010173464,Benzo[k]Fluoranthene,LB
+37167,0.02432057,Methane,TON
+37167,4.429619,Nitrogen Oxides,TON
+37167,0.02038616,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,7.214648e-05,Mercury,LB
+37167,0.1424657,Methane,TON
+37167,14.6368,Carbon Monoxide,TON
+37167,0.01755372,Sulfur Dioxide,TON
+37167,21.44976,Toluene,LB
+37167,0.004270042,"Benzo[g,h,i,]Perylene",LB
+37167,0.0013502092,Benzo[k]Fluoranthene,LB
+37167,303.9248,Formaldehyde,LB
+37149,4.60357,Pyrene,LB
+37149,542.5094,Acetaldehyde,LB
+37149,22.86335,Carbon Monoxide,TON
+37149,0.4450742,Ammonia,TON
+37045,0.0004382896,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.0277217,Chrysene,LB
+37045,0.02383372,Manganese,LB
+37041,0.8718044,Pyrene,LB
+37041,0.1055024,Chrysene,LB
+37041,0.18470648,Benz[a]Anthracene,LB
+37041,5923.548,Carbon Dioxide,TON
+37041,0.005542286,Nitrous Oxide,TON
+37041,15.12497,Nitrogen Oxides,TON
+37041,0.4964678,PM2.5 Primary (Filt + Cond),TON
+37035,1.031553,Benzo[a]Pyrene,LB
+37035,0.255829,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.003291918,Nitrate portion of PM2.5-PRI,TON
+37035,8879.454,Toluene,LB
+37035,2060.778,Hexane,LB
+37035,5864.798,Xylenes (Mixed Isomers),LB
+37035,0.002092208,Chromium (VI),LB
+37033,1.7799388,Fluoranthene,LB
+37033,0.3318458,Chrysene,LB
+37033,0.05879064,Manganese,LB
+37029,0.19072716,Benz[a]Anthracene,LB
+37029,1.6021486e-05,Mercury,LB
+37029,0.003350052,Arsenic,LB
+37029,0.0364703,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,3.088478,Anthracene,LB
+37019,8.326094,Pyrene,LB
+37019,1.8874818,Benz[a]Anthracene,LB
+37019,6.505778,Fluorene,LB
+37019,4.401007,PM25-Primary from certain diesel engines,TON
+37019,0.9397833,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.1975324,Hexane,LB
+37009,0.07092318,Pyrene,LB
+37009,0.03990022,Acenaphthylene,LB
+37009,0.009724788,Chrysene,LB
+37009,7.866784,Formaldehyde,LB
+37009,0.0012426526,Nickel,LB
+37009,0.0002670132,Nitrous Oxide,TON
+37009,0.0459622,PM10 Primary (Filt + Cond),TON
+37009,0.003655714,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.10937326,Anthracene,LB
+37009,0.14144402,"Benzo[g,h,i,]Perylene",LB
+37009,47.2414,Formaldehyde,LB
+37009,0.008239946,Manganese,LB
+37009,0.00955212,Arsenic,LB
+37009,29.95898,Acetaldehyde,LB
+37009,33.96165,Carbon Monoxide,TON
+37009,829.8764,Carbon Dioxide,TON
+37009,0.007651416,Nitrous Oxide,TON
+37009,0.02912197,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.07251742,PM10 Primary (Filt + Cond),TON
+37009,4.240431,Volatile Organic Compounds,TON
+37005,0.002942732,Acetaldehyde,LB
+37005,8.587638e-06,Acenaphthene,LB
+37005,9.37068e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37005,1.4428886e-05,Pyrene,LB
+37005,0.02010718,Xylenes (Mixed Isomers),LB
+37005,2.779858e-06,Benzo[b]Fluoranthene,LB
+37005,3.998854e-06,Benzo[a]Pyrene,LB
+37005,0.1490761,Ethyl Benzene,LB
+37005,0.04414026,"1,3-Butadiene",LB
+37005,0.7797838,Toluene,LB
+37005,0.004731984,Propionaldehyde,LB
+37005,6.40751e-05,Benzo[k]Fluoranthene,LB
+37005,1.7166558e-06,"Dibenzo[a,h]Anthracene",LB
+37033,0.00301601,Anthracene,LB
+37033,6.653878,Xylenes (Mixed Isomers),LB
+37033,0.012440578,"Benzo[g,h,i,]Perylene",LB
+37033,0.015427956,Acenaphthylene,LB
+37033,0.00010730888,"Dibenzo[a,h]Anthracene",LB
+37033,0.003356686,Acenaphthene,LB
+37033,0.01434323,PM10 Primary (Filt + Cond),TON
+37009,0.000108426,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.0010084936,"Benzo[g,h,i,]Perylene",LB
+37009,0.3806092,Formaldehyde,LB
+37009,0.0003742738,Benzo[a]Pyrene,LB
+37009,0.6033466,Benzene,LB
+37009,0.0003318226,Manganese,LB
+37009,0.001791272,Methane,TON
+37143,0.002255022,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,9.541698,Ethyl Benzene,LB
+37143,35.33288,Xylenes (Mixed Isomers),LB
+37143,0.012532678,"Benzo[g,h,i,]Perylene",LB
+37143,0.003720656,Benzo[b]Fluoranthene,LB
+37143,0.00010813848,"Dibenzo[a,h]Anthracene",LB
+37143,12.526734,"2,2,4-Trimethylpentane",LB
+37143,0.014578412,Acenaphthene,LB
+37143,0.5866025,Nitrogen Oxides,TON
+37129,12861.962,Xylenes (Mixed Isomers),LB
+37125,7.559168,Styrene,LB
+37125,0.03490554,Arsenic,LB
+37125,6.934826,Phenanthrene,LB
+37125,0.1739363,Ammonia,TON
+37125,3839.072,Carbon Monoxide,TON
+37125,9.835793,Nitrous Oxide,TON
+37125,4.827259,Sulfur Dioxide,TON
+37125,13595.088,"2,2,4-Trimethylpentane",LB
+37125,4.683912,Benz[a]Anthracene,LB
+37125,18070.184,Benzene,LB
+37121,1.2761102,Acrolein,LB
+37121,133.12564,Hexane,LB
+37121,0.02671282,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.0006128824,"Dibenzo[a,h]Anthracene",LB
+37121,88.61258,Benzene,LB
+37121,0.000253372,Mercury,LB
+37121,0.13292152,Fluorene,LB
+37121,0.02978526,Methane,TON
+37121,0.004255968,Nitrous Oxide,TON
+37121,0.9075018,Nitrogen Oxides,TON
+37119,18.119228,Acenaphthene,LB
+37119,480.9334,Nitrogen Oxides,TON
+37119,1.021064,Sulfur Dioxide,TON
+37119,448.4518,Acrolein,LB
+37119,414.3554,Toluene,LB
+37119,296.4676,Propionaldehyde,LB
+37119,5810.182,Formaldehyde,LB
+37119,148.6217,"2,2,4-Trimethylpentane",LB
+37119,15.217638,Benz[a]Anthracene,LB
+37119,8.205374,Anthracene,LB
+37119,297.7892,Benzene,LB
+37119,0.7265714,Manganese,LB
+37119,0.4558672,Nickel,LB
+37119,0.01028715,Nitrate portion of PM2.5-PRI,TON
+37119,79.61395,Nitrogen Oxides,TON
+37099,414.8086,Formaldehyde,LB
+37099,0.00011695046,Mercury,LB
+37099,0.05359918,Nickel,LB
+37099,174.42052,Acetaldehyde,LB
+37099,0.2620658,Methane,TON
+37099,0.9831824,PM2.5 Primary (Filt + Cond),TON
+37099,0.1840859,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.04043856,Sulfur Dioxide,TON
+37091,1.658619,Formaldehyde,LB
+37091,0.0017476634,Benzo[a]Pyrene,LB
+37071,0.7861144,Styrene,LB
+37071,83.11196,Xylenes (Mixed Isomers),LB
+37071,35.32646,Benzene,LB
+37071,0.01092237,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.009720938,Benzo[k]Fluoranthene,LB
+37063,0.009802438,Manganese,LB
+37063,0.002796786,Arsenic,LB
+37063,0.7183588,Naphthalene,LB
+37063,0.02327568,Ammonia,TON
+37063,0.02089695,PM2.5 Primary (Filt + Cond),TON
+37063,0.3135682,Styrene,LB
+37063,0.2265028,Volatile Organic Compounds,TON
+37065,0.07759752,Styrene,LB
+37065,0.00689914,"Benzo[g,h,i,]Perylene",LB
+37065,0.0015774178,Benzo[b]Fluoranthene,LB
+37065,0.001505682,Manganese,LB
+37065,1.0490298,Acetaldehyde,LB
+37065,0.001043999,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.06354774,Volatile Organic Compounds,TON
+37061,0.8225952,Styrene,LB
+37061,4.688074,Acrolein,LB
+37061,0.002941826,"Benzo[g,h,i,]Perylene",LB
+37061,0.07216865,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.02123176,Ammonia,TON
+37061,0.1796651,PM2.5 Primary (Filt + Cond),TON
+37049,25.0184,Styrene,LB
+37049,162.28432,Benzene,LB
+37049,747.2106,Acetaldehyde,LB
+37047,0.9910926,Toluene,LB
+37047,0.0006803112,"Benzo[g,h,i,]Perylene",LB
+37047,0.0002556046,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.00013347844,Chrysene,LB
+37047,0.1090394,Formaldehyde,LB
+37047,5.865166e-06,"Dibenzo[a,h]Anthracene",LB
+37047,0.00014384054,Benz[a]Anthracene,LB
+37047,2.19106e-05,Arsenic,LB
+37047,0.1509417,Carbon Monoxide,TON
+37047,4.216913e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37045,20047.32,Hexane,LB
+37045,59410.12,Xylenes (Mixed Isomers),LB
+37045,9.427368,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,7.208992,Benzo[b]Fluoranthene,LB
+37045,0.2164316,"Dibenzo[a,h]Anthracene",LB
+37045,25968.44,Benzene,LB
+37045,54.27828,Fluorene,LB
+37045,13.95542,Methane,TON
+37045,0.2873828,Sulfate Portion of PM2.5-PRI,TON
+37035,38.65772,Acrolein,LB
+37035,34.13452,Xylenes (Mixed Isomers),LB
+37035,8.066716e-05,Chromium (VI),LB
+37035,1.1941192,Benz[a]Anthracene,LB
+37035,53.80588,Naphthalene,LB
+37035,0.2085665,Methane,TON
+37035,1.214078,PM2.5 Primary (Filt + Cond),TON
+37035,0.02665975,Sulfate Portion of PM2.5-PRI,TON
+37025,0.2566174,Pyrene,LB
+37025,0.000741665,Benzo[k]Fluoranthene,LB
+37025,0.006090383,Methane,TON
+37025,0.0105468,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.7879554,Anthracene,LB
+37027,2.722684,Phenanthrene,LB
+37027,1.5724292,Fluorene,LB
+37027,24.39926,Naphthalene,LB
+37027,0.09792413,Methane,TON
+37027,0.5553394,PM10-Primary from certain diesel engines,TON
+37027,0.0248389,Ammonia,TON
+37023,0.04672926,Ethyl Benzene,LB
+37023,0.02392402,"1,3-Butadiene",LB
+37023,0.0005639622,Acenaphthylene,LB
+37023,0.5981005,Methane,TON
+37023,0.4263229,Nitrogen Oxides,TON
+37023,525.52,Ethyl Benzene,LB
+37023,3816.108,Toluene,LB
+37023,901.3488,Hexane,LB
+37023,0.3913654,Anthracene,LB
+37023,0.6688822,Fluoranthene,LB
+37023,0.12951372,Chrysene,LB
+37023,0.03159784,Arsenic,LB
+37023,0.02902148,Nitrous Oxide,TON
+37023,0.1006332,Organic Carbon portion of PM2.5-PRI,TON
+37171,30.88054,"1,3-Butadiene",LB
+37171,82.51274,Acrolein,LB
+37171,89.5972,Toluene,LB
+37171,99.26014,Benzene,LB
+37171,6.643344,Fluorene,LB
+37171,0.045574,Nitrous Oxide,TON
+37171,0.3289687,Ammonia,TON
+37171,2.43329,PM2.5 Primary (Filt + Cond),TON
+37165,3.761644,Ethyl Benzene,LB
+37165,5.396284e-05,Nickel,LB
+37165,0.1613968,Nitrogen Oxides,TON
+37165,0.003219969,PM2.5 Primary (Filt + Cond),TON
+37165,8.448224e-05,Sulfate Portion of PM2.5-PRI,TON
+37163,0.005283238,Sulfate Portion of PM2.5-PRI,TON
+37163,0.09055582,Anthracene,LB
+37163,0.0007467644,"Dibenzo[a,h]Anthracene",LB
+37163,0.0008673402,Nitrous Oxide,TON
+37163,2.9358,Nitrogen Oxides,TON
+37159,163.06164,Ethyl Benzene,LB
+37159,0.6959924,Nickel,LB
+37159,44.91864,Phenanthrene,LB
+37159,1.116529,Methane,TON
+37159,274.1392,Carbon Monoxide,TON
+37159,0.8385488,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.4002846,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,1.826818,Toluene,LB
+37145,0.0008230508,"Dibenzo[a,h]Anthracene",LB
+37145,0.003329014,Nickel,LB
+37145,244.4139,Carbon Dioxide,TON
+37145,0.02152609,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.002095727,Sulfur Dioxide,TON
+37131,0.0006392026,"Dibenzo[a,h]Anthracene",LB
+37131,0.0012856754,Arsenic,LB
+37131,0.06572983,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.100211,PM2.5 Primary (Filt + Cond),TON
+37131,0.003218978,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.0003218338,Manganese,LB
+37131,0.002646156,Nitrous Oxide,TON
+37131,0.0007159161,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,6.09271,Styrene,LB
+37121,26.68148,Toluene,LB
+37121,1.128902,Anthracene,LB
+37121,0.0017345562,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.0009475758,Benzo[k]Fluoranthene,LB
+37121,39.21558,Benzene,LB
+37121,1.394518,Acenaphthene,LB
+37121,2.34809,Fluorene,LB
+37121,0.2948991,PM10-Primary from certain diesel engines,TON
+37121,0.03748417,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.2789964,PM2.5 Primary (Filt + Cond),TON
+37117,0.4733712,Benzene,LB
+37117,43.12993,Carbon Dioxide,TON
+37117,0.01191982,PM25-Primary from certain diesel engines,TON
+37117,0.02906907,Volatile Organic Compounds,TON
+37117,0.16216418,"1,3-Butadiene",LB
+37117,0.05092516,Pyrene,LB
+37117,0.001101967,Benzo[b]Fluoranthene,LB
+37117,0.02765454,Acenaphthylene,LB
+37117,0.12622052,"2,2,4-Trimethylpentane",LB
+37111,137.7613,Acrolein,LB
+37111,108.81714,Toluene,LB
+37111,9.884416,Acenaphthylene,LB
+37111,10.015206,Fluorene,LB
+37111,190.32664,Naphthalene,LB
+37111,10.1986,Volatile Organic Compounds,TON
+37123,0.03330602,Phenanthrene,LB
+37123,0.003227725,Methane,TON
+37123,0.003330125,Nitrous Oxide,TON
+37123,0.09169127,Volatile Organic Compounds,TON
+37123,0.13500412,Styrene,LB
+37123,0.14427314,Acrolein,LB
+37123,0.1007402,Propionaldehyde,LB
+37123,0.008383568,"Benzo[g,h,i,]Perylene",LB
+37123,0.002123038,Benzo[b]Fluoranthene,LB
+37177,0.0016301746,Arsenic,LB
+37177,0.0004918471,Nitrate portion of PM2.5-PRI,TON
+37177,0.005165063,Sulfur Dioxide,TON
+37177,2.264282,Toluene,LB
+37177,1.0288488e-05,Chromium (VI),LB
+37177,0.0017476758,"Benzo[g,h,i,]Perylene",LB
+37177,0.008519484,Benzo[b]Fluoranthene,LB
+37177,0.02857202,Benzo[a]Pyrene,LB
+37177,0.00109913,PM2.5 Primary (Filt + Cond),TON
+37177,4.733816e-05,Nickel,LB
+37177,0.003411264,Fluorene,LB
+37171,1.2290486,Ethyl Benzene,LB
+37171,0.0013388654,"Benzo[g,h,i,]Perylene",LB
+37171,0.2331757,PM10 Primary (Filt + Cond),TON
+37171,0.01628149,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.005010052,Sulfur Dioxide,TON
+37165,0.003521828,"Benzo[g,h,i,]Perylene",LB
+37165,0.017249452,Benzo[b]Fluoranthene,LB
+37165,0.002358178,Benzo[k]Fluoranthene,LB
+37165,0.1900777,Benz[a]Anthracene,LB
+37165,0.002669398,Arsenic,LB
+37165,32.62698,Acetaldehyde,LB
+37165,8.243804,Naphthalene,LB
+37165,0.02460786,Methane,TON
+37163,1.9302606,Ethyl Benzene,LB
+37163,58.56098,Formaldehyde,LB
+37163,688.7229,Carbon Dioxide,TON
+37163,0.006467334,Sulfate Portion of PM2.5-PRI,TON
+37153,0.0006554256,Elemental Carbon portion of PM2.5-PRI,TON
+37153,1.187576e-05,Nitrate portion of PM2.5-PRI,TON
+37153,0.01116812,PM10 Primary (Filt + Cond),TON
+37153,0.004423015,PM2.5 Primary (Filt + Cond),TON
+37153,0.001461007,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,2.591458,Ethyl Benzene,LB
+37153,0.4498492,"1,3-Butadiene",LB
+37153,0.006506348,Fluoranthene,LB
+37153,0.002045532,Benz[a]Anthracene,LB
+37153,4.502328,Benzene,LB
+37153,1.2712796,Acetaldehyde,LB
+37153,0.00423392,Acenaphthene,LB
+37153,0.008575912,Fluorene,LB
+37149,0.00437704,Acrolein,LB
+37149,0.0004322764,Pyrene,LB
+37149,7.23023e-06,"Dibenzo[a,h]Anthracene",LB
+37149,0.1270949,Carbon Monoxide,TON
+37149,0.000307716,PM2.5 Primary (Filt + Cond),TON
+37135,0.0018652298,Propionaldehyde,LB
+37135,4.983252e-06,"Dibenzo[a,h]Anthracene",LB
+37135,0.00010392508,Benz[a]Anthracene,LB
+37135,1.7639788e-05,Nickel,LB
+37135,2.704914e-05,Arsenic,LB
+37135,9.353536,Carbon Dioxide,TON
+37135,0.0001239202,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.000508603,PM10 Primary (Filt + Cond),TON
+37135,0.001934049,Volatile Organic Compounds,TON
+37127,3.404858,Arsenic,LB
+37127,6197.602,Acetaldehyde,LB
+37127,346.2542,Acrolein,LB
+37127,61705.86,Toluene,LB
+37127,84.17854,Acenaphthylene,LB
+37111,8.926296,Toluene,LB
+37111,0.02960502,Benzo[b]Fluoranthene,LB
+37111,0.004044898,Benzo[k]Fluoranthene,LB
+37111,135.42664,Formaldehyde,LB
+37111,0.0993013,Benzo[a]Pyrene,LB
+37111,0.004042118,"Dibenzo[a,h]Anthracene",LB
+37111,3.350926,"2,2,4-Trimethylpentane",LB
+37111,0.3297704,Benz[a]Anthracene,LB
+37111,0.016130628,Nickel,LB
+37111,0.453872,Acenaphthene,LB
+37111,902.1438,Carbon Dioxide,TON
+37111,0.01762239,Ammonia,TON
+37087,0.04334303,PM2.5 Primary (Filt + Cond),TON
+37087,0.001331287,Sulfate Portion of PM2.5-PRI,TON
+37087,26.2387,Ethyl Benzene,LB
+37087,5.092828,"1,3-Butadiene",LB
+37087,36.17492,Hexane,LB
+37087,0.08870206,Pyrene,LB
+37087,0.03256192,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.014015836,Benzo[k]Fluoranthene,LB
+37071,7.151664e-05,Mercury,LB
+37071,49.02294,Naphthalene,LB
+37071,0.00605895,Nitrate portion of PM2.5-PRI,TON
+37063,0.1182527,Nickel,LB
+37063,50.5378,Xylenes (Mixed Isomers),LB
+37063,2.153026,Fluoranthene,LB
+37051,55.79942,"1,3-Butadiene",LB
+37051,115.24824,Xylenes (Mixed Isomers),LB
+37051,9.51829,Acenaphthylene,LB
+37051,12.755184,Fluorene,LB
+37051,44.95349,Carbon Monoxide,TON
+37051,152.7654,Nitrogen Oxides,TON
+37033,0.01765918,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.5265452,Styrene,LB
+37033,0.2620014,Pyrene,LB
+37033,2.1853,Xylenes (Mixed Isomers),LB
+37031,0.3888028,Ethyl Benzene,LB
+37031,0.00017591704,Benzo[a]Pyrene,LB
+37031,0.00329953,Phenanthrene,LB
+37031,0.17662,Carbon Monoxide,TON
+37031,0.0002310024,Nitrous Oxide,TON
+37031,0.0003509853,PM10 Primary (Filt + Cond),TON
+37177,0.8258436,Acenaphthylene,LB
+37177,0.011013814,Benzo[a]Pyrene,LB
+37177,0.000217306,Nitrate portion of PM2.5-PRI,TON
+37173,1.8486818e-05,Mercury,LB
+37173,3.754584,Naphthalene,LB
+37173,1.1742966,Ethyl Benzene,LB
+37173,0.000529392,Benzo[b]Fluoranthene,LB
+37173,0.9681128,"2,2,4-Trimethylpentane",LB
+37015,1.0333856,Styrene,LB
+37015,1.7616966,Hexane,LB
+37015,0.745209,Pyrene,LB
+37015,0.002231376,"Dibenzo[a,h]Anthracene",LB
+37015,0.18004412,Benz[a]Anthracene,LB
+37015,0.0009699678,Nitrate portion of PM2.5-PRI,TON
+37015,0.003686169,Sulfate Portion of PM2.5-PRI,TON
+37149,59.37702,Styrene,LB
+37149,2441.53,Hexane,LB
+37149,1.0834514,Benzo[b]Fluoranthene,LB
+37149,0.03964916,"Dibenzo[a,h]Anthracene",LB
+37149,888.461,Acetaldehyde,LB
+37149,796.0624,Carbon Monoxide,TON
+37149,0.9724814,Nitrous Oxide,TON
+37061,0.18853722,Styrene,LB
+37061,30.92874,Toluene,LB
+37061,8.587236,Benzene,LB
+37061,0.0007220538,Nickel,LB
+37061,0.0011071428,Arsenic,LB
+37061,0.0445574,Phenanthrene,LB
+37061,0.01894409,PM10 Primary (Filt + Cond),TON
+37173,10.855936,Ethyl Benzene,LB
+37173,6.642252,"1,3-Butadiene",LB
+37173,0.004175876,Benzo[k]Fluoranthene,LB
+37173,0.09734796,Benzo[a]Pyrene,LB
+37173,0.652854,Acenaphthene,LB
+37173,0.4678332,Methane,TON
+37173,7.499594,Carbon Monoxide,TON
+37173,0.00204429,Nitrate portion of PM2.5-PRI,TON
+37173,0.08944741,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.08829376,Sulfate Portion of PM2.5-PRI,TON
+37173,0.09353412,Styrene,LB
+37173,4.64907,Hexane,LB
+37173,0.0001690884,Arsenic,LB
+37173,1.274825,Acetaldehyde,LB
+37173,8.346731e-06,Nitrate portion of PM2.5-PRI,TON
+37173,0.08874626,Volatile Organic Compounds,TON
+37173,0.006746598,Pyrene,LB
+37173,0.00759351,"Benzo[g,h,i,]Perylene",LB
+37195,4.17207,Toluene,LB
+37195,0.003141714,Pyrene,LB
+37195,3.422944,Xylenes (Mixed Isomers),LB
+37195,0.004374222,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.0019219788,Benz[a]Anthracene,LB
+37195,0.002986951,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.006957435,PM2.5 Primary (Filt + Cond),TON
+37057,24.7704,Propionaldehyde,LB
+37057,44.4425,Benzene,LB
+37057,0.06257568,Manganese,LB
+37057,4.174018,Phenanthrene,LB
+37057,51.862,Naphthalene,LB
+37057,0.017397,Sulfate Portion of PM2.5-PRI,TON
+37051,0.09674313,Ammonia,TON
+37051,1.470433,PM2.5 Primary (Filt + Cond),TON
+37051,14.753828,"2,2,4-Trimethylpentane",LB
+37051,14.545692,Hexane,LB
+37049,41.35958,Acrolein,LB
+37049,0.01928637,"Benzo[g,h,i,]Perylene",LB
+37049,3.291658,Fluorene,LB
+37049,1.406365,Elemental Carbon portion of PM2.5-PRI,TON
+37049,6.590744,"1,3-Butadiene",LB
+37049,16.169678,Acrolein,LB
+37049,0.007009378,Arsenic,LB
+37049,22.48436,Naphthalene,LB
+37049,0.563439,PM10-Primary from certain diesel engines,TON
+37049,0.5183551,PM25-Primary from certain diesel engines,TON
+37049,0.002803488,Nitrate portion of PM2.5-PRI,TON
+37049,0.2224721,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.09642485,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.01317785,Sulfur Dioxide,TON
+37045,209.2334,Acrolein,LB
+37045,0.0004704164,Mercury,LB
+37045,288.4076,Naphthalene,LB
+37045,0.03913643,Nitrous Oxide,TON
+37045,9.88822,Ethyl Benzene,LB
+37045,0.2470428,Acrolein,LB
+37045,12.879686,Hexane,LB
+37045,0.017568438,"Benzo[g,h,i,]Perylene",LB
+37045,0.004737934,Benzo[b]Fluoranthene,LB
+37045,0.00471522,Benz[a]Anthracene,LB
+37035,2.637396,Pyrene,LB
+37035,342.8178,Formaldehyde,LB
+37035,0.01328545,Arsenic,LB
+37035,149.6789,Acetaldehyde,LB
+37035,0.7646792,PM2.5 Primary (Filt + Cond),TON
+37035,0.02735974,Sulfate Portion of PM2.5-PRI,TON
+37033,2.489808,Propionaldehyde,LB
+37033,1.1772016e-05,Chromium (VI),LB
+37033,0.014619884,Chrysene,LB
+37033,1.2009258,"2,2,4-Trimethylpentane",LB
+37033,0.03159312,Benz[a]Anthracene,LB
+37027,14.19371,Carbon Monoxide,TON
+37027,0.1979196,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.04072416,Propionaldehyde,LB
+37023,0.003415552,Pyrene,LB
+37023,4.05154,Xylenes (Mixed Isomers),LB
+37023,0.006276662,"Benzo[g,h,i,]Perylene",LB
+37023,0.0011816152,Benz[a]Anthracene,LB
+37023,1.686935,Benzene,LB
+37157,2.61649,Acenaphthylene,LB
+37157,2.408798,PM10-Primary from certain diesel engines,TON
+37157,1.45881,Elemental Carbon portion of PM2.5-PRI,TON
+37157,62.33936,Nitrogen Oxides,TON
+37157,52.82388,Xylenes (Mixed Isomers),LB
+37157,0.019072454,"Benzo[g,h,i,]Perylene",LB
+37153,39.52144,Xylenes (Mixed Isomers),LB
+37135,0.0002606632,"Benzo[g,h,i,]Perylene",LB
+37135,0.0005066262,Acenaphthylene,LB
+37135,2.816371e-05,Ammonia,TON
+37137,0.001033858,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.256216,Volatile Organic Compounds,TON
+37137,0.00058118,Nickel,LB
+37137,0.2457004,Propionaldehyde,LB
+37137,0.02107868,Pyrene,LB
+37137,1.1997452,Styrene,LB
+37137,0.01634048,Benzo[k]Fluoranthene,LB
+37137,0.0002319598,Mercury,LB
+37137,0.05468332,Acenaphthene,LB
+37131,1.8287822,Benzo[k]Fluoranthene,LB
+37131,29.8167,Acenaphthylene,LB
+37131,2085.26,Formaldehyde,LB
+37131,2.45233,Benzo[a]Pyrene,LB
+37131,35.55628,Phenanthrene,LB
+37131,0.5232353,Elemental Carbon portion of PM2.5-PRI,TON
+37131,217.0079,Nitrogen Oxides,TON
+37129,0.81403,Anthracene,LB
+37129,0.008073936,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.00437134,Benzo[k]Fluoranthene,LB
+37129,24.43374,Benzene,LB
+37129,0.02946528,Nickel,LB
+37129,0.8526062,Acenaphthene,LB
+37129,2.733926,Phenanthrene,LB
+37129,0.008536232,Nitrous Oxide,TON
+37129,0.5562526,PM2.5 Primary (Filt + Cond),TON
+37123,4.011868,Styrene,LB
+37123,15.20553,Propionaldehyde,LB
+37123,22.52516,Xylenes (Mixed Isomers),LB
+37123,0.008501352,Benzo[k]Fluoranthene,LB
+37123,0.1583163,Methane,TON
+37117,0.11107092,Styrene,LB
+37117,0.0991937,Phenanthrene,LB
+37117,0.8855054,Naphthalene,LB
+37117,0.02363136,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.0001056434,Nitrate portion of PM2.5-PRI,TON
+37115,0.2760342,Acrolein,LB
+37115,0.08872212,Hexane,LB
+37115,0.03337926,Pyrene,LB
+37115,0.00014479326,"Benzo[g,h,i,]Perylene",LB
+37115,0.0006911604,Benzo[b]Fluoranthene,LB
+37115,0.0253998,Fluoranthene,LB
+37115,0.3295342,Benzene,LB
+37115,0.0002509464,Sulfate Portion of PM2.5-PRI,TON
+37115,5.939468,Naphthalene,LB
+37115,0.04462022,Methane,TON
+37115,0.001903472,Elemental Carbon portion of PM2.5-PRI,TON
+37113,1.566458,Volatile Organic Compounds,TON
+37113,134.199,Acetaldehyde,LB
+37113,14290.97,Carbon Dioxide,TON
+37113,0.00014183978,Chromium (VI),LB
+37113,0.0062661,Benzo[k]Fluoranthene,LB
+37107,0.16865006,Manganese,LB
+37107,0.00013074376,Mercury,LB
+37107,197.78082,Acetaldehyde,LB
+37107,11.02589,Carbon Monoxide,TON
+37107,0.005676687,Nitrate portion of PM2.5-PRI,TON
+37107,0.00011953592,Chromium (VI),LB
+37107,2.276056,Acenaphthylene,LB
+37107,0.010640888,Chrysene,LB
+37107,0.12923946,Acenaphthene,LB
+37107,4.587552,Naphthalene,LB
+37107,0.006859974,PM25-Primary from certain diesel engines,TON
+37107,0.03117248,PM10 Primary (Filt + Cond),TON
+37107,0.009999541,PM2.5 Primary (Filt + Cond),TON
+37107,341.0368,Styrene,LB
+37107,294.6064,Propionaldehyde,LB
+37107,13822.606,Benzene,LB
+37107,77.27612,Phenanthrene,LB
+37107,28.86968,Fluorene,LB
+37107,248.5583,Volatile Organic Compounds,TON
+37097,34.11732,Styrene,LB
+37097,521.5316,Toluene,LB
+37097,8.578934,Anthracene,LB
+37097,114000.4,Carbon Dioxide,TON
+37097,1.099005,Sulfate Portion of PM2.5-PRI,TON
+37091,0.02229112,Chrysene,LB
+37091,0.00095915,Arsenic,LB
+37091,1.577067,Naphthalene,LB
+37091,0.0002047114,Nitrate portion of PM2.5-PRI,TON
+37099,1.1738514,Styrene,LB
+37099,0.015007954,Benzo[b]Fluoranthene,LB
+37099,16.237926,Formaldehyde,LB
+37099,0.03907939,Nitrous Oxide,TON
+37099,0.01218246,Organic Carbon portion of PM2.5-PRI,TON
+37095,3.24889e-05,Nickel,LB
+37095,0.05295907,Nitrogen Oxides,TON
+37095,1.581579,Ethyl Benzene,LB
+37095,0.07841614,Propionaldehyde,LB
+37095,0.0008341446,Benzo[b]Fluoranthene,LB
+37095,0.005250404,Fluoranthene,LB
+37095,0.000875871,Chrysene,LB
+37095,1.1659828,Formaldehyde,LB
+37095,3.225104,"2,2,4-Trimethylpentane",LB
+37095,1.419995e-05,Nickel,LB
+37095,0.001654173,Nitrous Oxide,TON
+37095,0.0001554233,Ammonia,TON
+37095,1.686744e-05,Sulfate Portion of PM2.5-PRI,TON
+37091,0.0006476356,Benzo[k]Fluoranthene,LB
+37091,0.05306624,Styrene,LB
+37091,0.0448954,Acrolein,LB
+37091,2.40867,Benzene,LB
+37091,0.0002383384,Arsenic,LB
+37091,0.7514616,Acetaldehyde,LB
+37091,0.0008632755,Sulfur Dioxide,TON
+37089,99.60996,"2,2,4-Trimethylpentane",LB
+37089,0.04257598,Benz[a]Anthracene,LB
+37089,0.2610236,Fluorene,LB
+37089,6.693164,Naphthalene,LB
+37089,0.01457368,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.08322346,PM2.5 Primary (Filt + Cond),TON
+37075,0.03798192,Styrene,LB
+37075,0.002828144,Pyrene,LB
+37075,0.001369142,"Benzo[g,h,i,]Perylene",LB
+37075,0.0004183512,Benzo[k]Fluoranthene,LB
+37075,0.4873904,Formaldehyde,LB
+37075,4.458364e-06,Mercury,LB
+37075,23.64112,Carbon Dioxide,TON
+37075,0.0001277206,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.003138594,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,4.974084,Benzene,LB
+37071,0.2894594,PM10-Primary from certain diesel engines,TON
+37071,0.001985165,Nitrous Oxide,TON
+37071,0.00015896716,Chromium (VI),LB
+37071,0.010524888,"Benzo[g,h,i,]Perylene",LB
+37071,17.394236,"2,2,4-Trimethylpentane",LB
+37071,0.2940777,Methane,TON
+37071,0.4561274,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.1369858,Organic Carbon portion of PM2.5-PRI,TON
+37059,10185.322,Hexane,LB
+37059,20.80318,Fluoranthene,LB
+37059,65.17444,Acenaphthylene,LB
+37059,3.749428,Chrysene,LB
+37059,28.9985,Fluorene,LB
+37059,0.01430224,Nitrate portion of PM2.5-PRI,TON
+37051,287.8456,Formaldehyde,LB
+37051,0.00017554124,Mercury,LB
+37051,6.77225,"1,3-Butadiene",LB
+37051,28.83044,Xylenes (Mixed Isomers),LB
+37051,0.00014736718,Chromium (VI),LB
+37051,0.00243111,"Benzo[g,h,i,]Perylene",LB
+37051,0.0008150838,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.004841955,Nitrous Oxide,TON
+37051,0.3195175,PM10 Primary (Filt + Cond),TON
+37051,0.03007552,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,567.4778,Ethyl Benzene,LB
+37049,782.0294,Hexane,LB
+37049,2094.144,Xylenes (Mixed Isomers),LB
+37049,4.339252,Acenaphthylene,LB
+37049,0.0010814,Nitrate portion of PM2.5-PRI,TON
+37049,0.1946844,Organic Carbon portion of PM2.5-PRI,TON
+37037,48317.1,Toluene,LB
+37037,23.96792,Pyrene,LB
+37037,0.010864876,Chromium (VI),LB
+37037,13.964432,"Benzo[g,h,i,]Perylene",LB
+37037,4462.374,Formaldehyde,LB
+37037,0.1089181,Mercury,LB
+37037,2.082482,Arsenic,LB
+37037,14.407824,Acenaphthene,LB
+37037,8.586106,Methane,TON
+37037,14.4573,Ammonia,TON
+37037,14.86407,PM10 Primary (Filt + Cond),TON
+37035,13.80167,Anthracene,LB
+37035,6.143024,Benzo[b]Fluoranthene,LB
+37035,23.83314,Fluoranthene,LB
+37035,4712.508,Formaldehyde,LB
+37035,829.5884,Naphthalene,LB
+37035,325976.8,Carbon Dioxide,TON
+37035,7.927552,Nitrous Oxide,TON
+37171,0.03443246,Chrysene,LB
+37171,133.5472,Formaldehyde,LB
+37171,0.0003093384,"Dibenzo[a,h]Anthracene",LB
+37171,56.2228,Acetaldehyde,LB
+37171,0.0261435,PM10-Primary from certain diesel engines,TON
+37171,0.7184973,Volatile Organic Compounds,TON
+37149,0.13278418,"2,2,4-Trimethylpentane",LB
+37149,2.331696,Acetaldehyde,LB
+37149,0.1778261,Ethyl Benzene,LB
+37149,0.0498119,Pyrene,LB
+37149,0.03806964,Fluoranthene,LB
+37149,5.669704e-05,Nitrate portion of PM2.5-PRI,TON
+37157,0.013065708,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.013077342,Benzo[a]Pyrene,LB
+37157,0.0002998546,"Dibenzo[a,h]Anthracene",LB
+37157,1.587146,Naphthalene,LB
+37157,0.002798154,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.6767929,Carbon Dioxide,TON
+37155,0.0002141521,PM10 Primary (Filt + Cond),TON
+37155,0.8982974,Toluene,LB
+37155,9.557926e-05,Benzo[b]Fluoranthene,LB
+37155,0.1997051,"2,2,4-Trimethylpentane",LB
+37155,3.13117e-06,Arsenic,LB
+37155,0.0004927826,Fluorene,LB
+37153,7.281558,Hexane,LB
+37153,289.4756,Formaldehyde,LB
+37153,0.011530532,Arsenic,LB
+37153,0.06546003,Methane,TON
+37153,4426.2,Carbon Dioxide,TON
+37153,1.514289,PM10-Primary from certain diesel engines,TON
+37153,0.005854747,Nitrous Oxide,TON
+37153,0.06212085,Ammonia,TON
+37153,30.17756,Nitrogen Oxides,TON
+37147,0.1053948,Ammonia,TON
+37147,5.605297,Nitrogen Oxides,TON
+37147,0.03207736,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.238791,Pyrene,LB
+37147,0.0391746,Chrysene,LB
+37147,0.003341644,Styrene,LB
+37147,0.14199792,Hexane,LB
+37147,0.00015096766,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.05913976,Formaldehyde,LB
+37147,8.785438e-05,Manganese,LB
+37147,0.002338599,Volatile Organic Compounds,TON
+37141,2.66121,Propionaldehyde,LB
+37141,0.0017237336,"Dibenzo[a,h]Anthracene",LB
+37141,0.652089,Phenanthrene,LB
+37141,0.144078,PM25-Primary from certain diesel engines,TON
+37141,0.009537987,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.07892975,PM10 Primary (Filt + Cond),TON
+37141,0.004909782,Sulfate Portion of PM2.5-PRI,TON
+37141,0.02199774,Chrysene,LB
+37141,0.00018642034,"Dibenzo[a,h]Anthracene",LB
+37141,43.2858,Acetaldehyde,LB
+37141,10.771084,Naphthalene,LB
+37133,14.931108,Acrolein,LB
+37133,0.7586394,Pyrene,LB
+37133,0.00010223812,Chromium (VI),LB
+37133,0.006715836,Benzo[a]Pyrene,LB
+37133,0.00012178768,Mercury,LB
+37133,0.5047134,Acenaphthene,LB
+37133,0.04042419,Ammonia,TON
+37133,0.0001964303,Nitrate portion of PM2.5-PRI,TON
+37133,0.016916,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.000202444,"Benzo[g,h,i,]Perylene",LB
+37121,0.1016342,Acenaphthylene,LB
+37121,0.010364806,Benz[a]Anthracene,LB
+37121,113.403,Carbon Dioxide,TON
+37121,0.00273819,PM10-Primary from certain diesel engines,TON
+37121,0.0006450802,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.002475614,Ammonia,TON
+37121,0.003218378,PM2.5 Primary (Filt + Cond),TON
+37121,1.6287122,Acrolein,LB
+37121,1.8186348,Toluene,LB
+37121,0.0482801,Anthracene,LB
+37123,92.80506,Xylenes (Mixed Isomers),LB
+37123,0.016259138,Benzo[k]Fluoranthene,LB
+37123,0.01435609,Chrysene,LB
+37123,0.015328382,Benz[a]Anthracene,LB
+37123,1.9632332,Naphthalene,LB
+37123,0.02883311,Nitrous Oxide,TON
+37123,0.02854177,PM2.5 Primary (Filt + Cond),TON
+37111,0.0008538608,Arsenic,LB
+37111,0.019601012,Fluorene,LB
+37111,0.004548659,Nitrous Oxide,TON
+37111,0.4836042,Nitrogen Oxides,TON
+37111,0.003703414,Organic Carbon portion of PM2.5-PRI,TON
+37111,24.13456,Toluene,LB
+37107,18.033192,Ethyl Benzene,LB
+37107,51.20402,Toluene,LB
+37107,3.834796,Pyrene,LB
+37107,0.600326,Methane,TON
+37107,0.02641898,Nitrous Oxide,TON
+37107,2.257861,PM2.5 Primary (Filt + Cond),TON
+37085,161.82518,Acetaldehyde,LB
+37085,0.007024574,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.04170803,PM2.5 Primary (Filt + Cond),TON
+37063,0.0006135418,Mercury,LB
+37063,0.007783699,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.0005547404,Sulfate Portion of PM2.5-PRI,TON
+37063,0.446851,Acrolein,LB
+37063,0.003911724,Anthracene,LB
+37063,0.005775564,Benzo[b]Fluoranthene,LB
+37033,0.0006552768,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.001405712,PM2.5 Primary (Filt + Cond),TON
+37033,3.781593e-05,Sulfate Portion of PM2.5-PRI,TON
+37033,0.0005692794,Benzo[k]Fluoranthene,LB
+37033,0.001029764,Manganese,LB
+37033,5.050154e-05,Mercury,LB
+37033,0.003698418,Phenanthrene,LB
+37033,0.004890574,Methane,TON
+37021,15.869562,"2,2,4-Trimethylpentane",LB
+37017,5.150342,Xylenes (Mixed Isomers),LB
+37017,0.1161556,Volatile Organic Compounds,TON
+37001,9.502236e-06,Chromium (VI),LB
+37001,1.1538746,"2,2,4-Trimethylpentane",LB
+37001,0.002136054,Fluorene,LB
+37001,0.07258432,Volatile Organic Compounds,TON
+37149,0.6841126,Xylenes (Mixed Isomers),LB
+37149,0.0014787584,Acenaphthylene,LB
+37149,0.0008246688,Benzo[a]Pyrene,LB
+37149,0.0005455302,Nickel,LB
+37149,0.000836498,Arsenic,LB
+37149,0.6256246,Carbon Monoxide,TON
+37149,58.75606,Carbon Dioxide,TON
+37149,0.037422,Nitrogen Oxides,TON
+37157,10.013358,Styrene,LB
+37157,0.12170524,Benzo[b]Fluoranthene,LB
+37157,0.1115166,Arsenic,LB
+37157,117.81314,Naphthalene,LB
+37157,0.6262042,Ammonia,TON
+37157,0.13340758,Benzo[a]Pyrene,LB
+37157,18.230836,Benzene,LB
+37157,0.00607256,Arsenic,LB
+37157,0.09878934,Methane,TON
+37157,1289.089,Carbon Dioxide,TON
+37157,0.4658054,PM2.5 Primary (Filt + Cond),TON
+37155,1.874273,PM10 Primary (Filt + Cond),TON
+37155,866.9808,Ethyl Benzene,LB
+37155,1126.9926,Hexane,LB
+37155,6.67252,Acenaphthylene,LB
+37155,0.2736012,Arsenic,LB
+37155,487.2244,Acetaldehyde,LB
+37155,1.4641886,Acenaphthene,LB
+37147,7683.046,Toluene,LB
+37147,0.8535198,Manganese,LB
+37147,0.2120368,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.4226424,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,39.3313,Volatile Organic Compounds,TON
+37143,0.1057584,Phenanthrene,LB
+37143,0.0006605656,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.000958096,Sulfur Dioxide,TON
+37143,1.3034502,Toluene,LB
+37143,0.05250156,Pyrene,LB
+37143,0.0588937,Acenaphthylene,LB
+37143,0.002649112,Chrysene,LB
+37143,0.006062316,Benz[a]Anthracene,LB
+37143,0.03506842,Acenaphthene,LB
+37177,1.5705988,Ethyl Benzene,LB
+37197,201.1376,Toluene,LB
+37197,46.31612,Hexane,LB
+37197,2.585348,Anthracene,LB
+37197,0.0003641694,Chromium (VI),LB
+37197,4.72157,Acenaphthylene,LB
+37197,3.250548,PM2.5 Primary (Filt + Cond),TON
+37197,21.41896,Acrolein,LB
+37197,0.01419448,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.007641088,Benzo[k]Fluoranthene,LB
+37197,1.9403744,Fluorene,LB
+37197,29.55762,Naphthalene,LB
+37197,0.02351304,Sulfate Portion of PM2.5-PRI,TON
+37153,2.485878,Toluene,LB
+37153,0.3747092,Pyrene,LB
+37153,3.234648,Benzene,LB
+37153,0.0009587661,Nitrous Oxide,TON
+37153,1.569268,Nitrogen Oxides,TON
+37153,0.1039529,PM2.5 Primary (Filt + Cond),TON
+37153,0.003981282,Sulfate Portion of PM2.5-PRI,TON
+37147,6.93171e-05,Mercury,LB
+37147,0.01449385,Arsenic,LB
+37147,1215.793,Carbon Dioxide,TON
+37147,0.0001732688,Nitrate portion of PM2.5-PRI,TON
+37147,7.327298,Propionaldehyde,LB
+37147,0.6625006,Pyrene,LB
+37147,0.0015321044,"Benzo[g,h,i,]Perylene",LB
+37147,0.0002666672,"Dibenzo[a,h]Anthracene",LB
+37145,25.18752,Benzene,LB
+37145,0.8075766,Acenaphthene,LB
+37145,3.13849,Phenanthrene,LB
+37145,1.084335,PM25-Primary from certain diesel engines,TON
+37145,1.496677,Volatile Organic Compounds,TON
+37145,8.538756e-05,Anthracene,LB
+37145,2.709332e-05,Benzo[k]Fluoranthene,LB
+37145,2.695748e-05,Chrysene,LB
+37145,8.266108e-06,Manganese,LB
+37145,0.03609429,Carbon Monoxide,TON
+37145,6.382458e-05,Nitrous Oxide,TON
+37145,9.28893e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.3139204,Styrene,LB
+37145,0.0233092,Pyrene,LB
+37145,0.003341554,Benzo[a]Pyrene,LB
+37145,0.07680006,Phenanthrene,LB
+37145,0.3300399,Nitrogen Oxides,TON
+37145,0.006081106,PM2.5 Primary (Filt + Cond),TON
+37145,0.002808236,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.000224917,"Benzo[g,h,i,]Perylene",LB
+37143,6.652726e-05,Benzo[b]Fluoranthene,LB
+37143,0.0001252805,Methane,TON
+37115,0.007745652,Manganese,LB
+37115,1.5116148e-05,Mercury,LB
+37115,7.436484,Naphthalene,LB
+37115,0.06713724,PM10-Primary from certain diesel engines,TON
+37115,0.04726757,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.06384422,PM2.5 Primary (Filt + Cond),TON
+37115,4.767894,Toluene,LB
+37115,0.1799958,Anthracene,LB
+37115,0.2911764,Fluoranthene,LB
+37113,0.04733724,Benzo[b]Fluoranthene,LB
+37113,0.16481972,Acenaphthene,LB
+37113,0.3338836,Fluorene,LB
+37095,0.00435708,Mercury,LB
+37079,0.0007961942,Acrolein,LB
+37079,5.754252e-06,Ammonia,TON
+37079,4.208524e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,10.548622,Acrolein,LB
+37081,11.894754,Xylenes (Mixed Isomers),LB
+37081,4.818686e-05,Chromium (VI),LB
+37081,0.0980608,Benzo[a]Pyrene,LB
+37081,0.004044192,"Dibenzo[a,h]Anthracene",LB
+37081,0.3176634,Benz[a]Anthracene,LB
+37081,0.3850832,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.1497373,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.0551908,Chrysene,LB
+37077,2.083286,Ethyl Benzene,LB
+37077,0.4905576,Pyrene,LB
+37077,0.00196156,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.665352,Phenanthrene,LB
+37077,6.90521,Naphthalene,LB
+37077,0.0004696688,Nitrate portion of PM2.5-PRI,TON
+37077,0.1679127,PM2.5 Primary (Filt + Cond),TON
+37077,0.3424758,Pyrene,LB
+37077,0.00017991062,"Dibenzo[a,h]Anthracene",LB
+37077,0.04285104,Benz[a]Anthracene,LB
+37077,6.713164,Benzene,LB
+37077,0.013898476,Manganese,LB
+37077,0.03843549,PM10 Primary (Filt + Cond),TON
+37077,0.002062207,Sulfate Portion of PM2.5-PRI,TON
+37075,0.003984912,Chrysene,LB
+37075,0.0013422522,Manganese,LB
+37075,0.3339776,Naphthalene,LB
+37075,0.2384934,Acrolein,LB
+37075,0.227887,Toluene,LB
+37063,1.0657568,Benzo[a]Pyrene,LB
+37063,0.6255006,Manganese,LB
+37063,0.0002816346,Mercury,LB
+37063,6.557207,PM10-Primary from certain diesel engines,TON
+37063,0.02937054,Nitrous Oxide,TON
+37063,116.681,Nitrogen Oxides,TON
+37063,6.325177,PM2.5 Primary (Filt + Cond),TON
+37063,7.238484,Volatile Organic Compounds,TON
+37063,0.0004401192,Acetaldehyde,LB
+37063,3.22921e-05,Styrene,LB
+37063,0.002954678,Xylenes (Mixed Isomers),LB
+37063,1.5549532e-06,Benzo[b]Fluoranthene,LB
+37063,0.0005206462,Formaldehyde,LB
+37063,4.64794e-06,PM2.5 Primary (Filt + Cond),TON
+37063,5.013064e-06,Sulfur Dioxide,TON
+37053,0.7596446,Anthracene,LB
+37053,0.04484346,Benzo[b]Fluoranthene,LB
+37053,0.2917218,Chrysene,LB
+37053,2.781326,Phenanthrene,LB
+37053,0.1886864,Methane,TON
+37053,0.9669691,PM25-Primary from certain diesel engines,TON
+37053,1.024241,PM2.5 Primary (Filt + Cond),TON
+37065,0.00545969,Phenanthrene,LB
+37065,0.1322342,"1,3-Butadiene",LB
+37065,0.015533156,Acrolein,LB
+37065,0.0006142672,Benzo[k]Fluoranthene,LB
+37065,0.0010648764,Benzo[a]Pyrene,LB
+37065,9.001708e-05,Sulfur Dioxide,TON
+37063,0.011262284,Formaldehyde,LB
+37063,0.03515696,Benzene,LB
+37063,0.0016684602,Naphthalene,LB
+37063,2.338058e-05,Nitrous Oxide,TON
+37043,5.023298e-06,Chromium (VI),LB
+37043,0.0006899644,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.0003709836,Benzo[k]Fluoranthene,LB
+37043,0.000370557,"Dibenzo[a,h]Anthracene",LB
+37043,0.5678102,"2,2,4-Trimethylpentane",LB
+37043,0.9739972,Carbon Monoxide,TON
+37043,0.0004817688,Nitrous Oxide,TON
+37031,0.0012113378,"Benzo[g,h,i,]Perylene",LB
+37031,0.06227514,Benz[a]Anthracene,LB
+37031,11.228486,Benzene,LB
+37031,0.011104492,Arsenic,LB
+37031,0.9882708,Phenanthrene,LB
+37025,10.116538,Benzene,LB
+37025,0.013857282,Nickel,LB
+37025,47.57516,Acetaldehyde,LB
+37025,0.08440941,Methane,TON
+37025,0.001445829,Nitrate portion of PM2.5-PRI,TON
+37025,0.1190744,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.06047238,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,22.99062,Benzene,LB
+37025,0.002969902,Nitrous Oxide,TON
+37025,1.222467,Acenaphthylene,LB
+37021,3.461683,Organic Carbon portion of PM2.5-PRI,TON
+37021,2.046996,Benzo[a]Pyrene,LB
+37021,12.48767,PM25-Primary from certain diesel engines,TON
+37019,73.08926,Ethyl Benzene,LB
+37019,175.28396,Acrolein,LB
+37019,119.01614,Propionaldehyde,LB
+37019,0.2999822,Nickel,LB
+37019,0.6900718,Methane,TON
+37019,0.05355418,Manganese,LB
+37019,56.01559,Carbon Monoxide,TON
+37019,0.07815892,Pyrene,LB
+37019,2.222858e-05,Chromium (VI),LB
+37019,0.05174642,"Benzo[g,h,i,]Perylene",LB
+37019,0.06851714,Fluoranthene,LB
+37019,0.014011826,Benzo[k]Fluoranthene,LB
+37019,0.0002228422,Mercury,LB
+37019,1200.413,Carbon Dioxide,TON
+37019,0.3852782,Chrysene,LB
+37019,1461.524,Benzene,LB
+37019,1.4480642,Acenaphthene,LB
+37019,0.9778433,Methane,TON
+37019,352.077,Carbon Monoxide,TON
+37019,1.605257,Ammonia,TON
+37019,41.07696,Nitrogen Oxides,TON
+37019,1193.5082,Hexane,LB
+37019,1.236207,Anthracene,LB
+37019,2.404318,Pyrene,LB
+37019,0.0013875074,Chromium (VI),LB
+37019,0.3849322,Benzo[k]Fluoranthene,LB
+37019,0.5267013,Sulfur Dioxide,TON
+37015,0.2044946,"1,3-Butadiene",LB
+37015,0.0012881302,Anthracene,LB
+37015,1.3794964,Benzene,LB
+37015,1.8016902e-05,Arsenic,LB
+37015,0.0009398186,PM10 Primary (Filt + Cond),TON
+37009,0.0327244,Arsenic,LB
+37009,403.9696,Acetaldehyde,LB
+37009,0.6266282,PM25-Primary from certain diesel engines,TON
+37009,0.08617358,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.8110382,PM10 Primary (Filt + Cond),TON
+37009,0.6444467,PM2.5 Primary (Filt + Cond),TON
+37009,73.78362,Acrolein,LB
+37009,59.89278,Toluene,LB
+37009,50.1794,Propionaldehyde,LB
+37009,4.852052,Pyrene,LB
+37009,58.19124,Xylenes (Mixed Isomers),LB
+37009,22.66206,"2,2,4-Trimethylpentane",LB
+37009,0.110377,Styrene,LB
+37009,3.747556,Hexane,LB
+37009,0.00423808,Anthracene,LB
+37009,9.501666,Xylenes (Mixed Isomers),LB
+37009,1.267078e-06,Chromium (VI),LB
+37009,0.004128542,"Benzo[g,h,i,]Perylene",LB
+37009,2.66428,"2,2,4-Trimethylpentane",LB
+37009,0.000158388,Nickel,LB
+37009,0.001782669,Ammonia,TON
+37009,5.335875e-06,Nitrate portion of PM2.5-PRI,TON
+37009,0.007061953,PM10 Primary (Filt + Cond),TON
+37001,3.690078,Hexane,LB
+37001,146.89632,Formaldehyde,LB
+37001,0.002028484,"Dibenzo[a,h]Anthracene",LB
+37001,0.03111964,Ammonia,TON
+37055,6.255594,"2,2,4-Trimethylpentane",LB
+37175,0.006441526,Pyrene,LB
+37175,0.002763006,Benzo[b]Fluoranthene,LB
+37175,0.016106024,Acenaphthylene,LB
+37175,0.004975042,Benzo[a]Pyrene,LB
+37175,9.277202,Benzene,LB
+37163,1.3890752,"1,3-Butadiene",LB
+37163,0.011572096,Anthracene,LB
+37163,0.1013762,Methane,TON
+37193,0.0002573968,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.0006943698,PM10 Primary (Filt + Cond),TON
+37193,0.08994062,"1,3-Butadiene",LB
+37193,0.0011628986,Pyrene,LB
+37193,7.51379e-08,Chromium (VI),LB
+37193,0.0012804508,"Benzo[g,h,i,]Perylene",LB
+37193,0.0002984248,Benzo[k]Fluoranthene,LB
+37193,0.003087778,Acenaphthylene,LB
+37193,1.4401804e-05,Arsenic,LB
+37193,5.036379,Carbon Dioxide,TON
+37189,0.6545558,"1,3-Butadiene",LB
+37189,0.5466072,Acrolein,LB
+37189,0.004866578,Anthracene,LB
+37189,0.009916616,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.02444268,Acenaphthylene,LB
+37189,5.27993,"2,2,4-Trimethylpentane",LB
+37189,0.010725872,Fluorene,LB
+37189,637.9869,Carbon Dioxide,TON
+37191,0.0003936562,Benzo[k]Fluoranthene,LB
+37191,0.000385497,Chrysene,LB
+37191,0.007480924,Phenanthrene,LB
+37191,0.0002695083,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.0008831643,PM10 Primary (Filt + Cond),TON
+37191,1.241289e-05,Sulfate Portion of PM2.5-PRI,TON
+37191,0.02558196,Volatile Organic Compounds,TON
+37187,2.803246,Carbon Monoxide,TON
+37187,0.0132939,Ammonia,TON
+37187,1.215478e-05,Nitrate portion of PM2.5-PRI,TON
+37187,0.2817341,Nitrogen Oxides,TON
+37187,0.0016058302,Chrysene,LB
+37183,1.5452246e-05,Chromium (VI),LB
+37183,0.0074063,Benzo[k]Fluoranthene,LB
+37183,0.03503066,Acenaphthylene,LB
+37183,9.41715,Benzene,LB
+37183,0.04287956,Phenanthrene,LB
+37183,0.3957228,Naphthalene,LB
+37183,4.691054e-05,Nitrate portion of PM2.5-PRI,TON
+37183,0.05489535,PM10 Primary (Filt + Cond),TON
+37179,114.00734,Acrolein,LB
+37179,95.87192,Toluene,LB
+37179,5.50193,Anthracene,LB
+37179,0.0003415374,Chromium (VI),LB
+37179,12.376204,Fluoranthene,LB
+37179,0.0532172,"Dibenzo[a,h]Anthracene",LB
+37179,158.17158,Naphthalene,LB
+37179,0.3073833,Ammonia,TON
+37177,0.014969464,Styrene,LB
+37177,0.0002841538,Benzo[k]Fluoranthene,LB
+37177,0.000249339,Chrysene,LB
+37177,1.0524048e-05,"Dibenzo[a,h]Anthracene",LB
+37177,0.0006412202,Acenaphthene,LB
+37177,0.001374482,PM10 Primary (Filt + Cond),TON
+37019,0.599268,Hexane,LB
+37019,0.0013158726,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.18444342,Fluoranthene,LB
+37019,0.08006896,Acenaphthene,LB
+37019,0.2930938,Phenanthrene,LB
+37019,0.0004651124,Nitrous Oxide,TON
+37019,0.001614862,Sulfur Dioxide,TON
+37011,3.815308,Acrolein,LB
+37011,0.005052798,Benzo[b]Fluoranthene,LB
+37011,0.0006916644,Benzo[k]Fluoranthene,LB
+37011,0.495687,Phenanthrene,LB
+37011,5.250458,Naphthalene,LB
+37011,0.00341605,Sulfur Dioxide,TON
+37011,4.13658,Ethyl Benzene,LB
+37011,4.189126,"1,3-Butadiene",LB
+37011,7.589184,Xylenes (Mixed Isomers),LB
+37011,0.007343996,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.003950314,Benzo[k]Fluoranthene,LB
+37011,3.02203,"2,2,4-Trimethylpentane",LB
+37011,0.03746298,Manganese,LB
+37011,0.425883,Acenaphthene,LB
+37011,0.7289357,PM10 Primary (Filt + Cond),TON
+37011,0.5748155,PM2.5 Primary (Filt + Cond),TON
+37023,0.2634246,Styrene,LB
+37023,0.9161606,Acrolein,LB
+37023,6.698418e-05,Chromium (VI),LB
+37023,0.02587284,Manganese,LB
+37023,0.0520435,Phenanthrene,LB
+37023,11.55653,Carbon Monoxide,TON
+37023,7.551446e-05,Nitrate portion of PM2.5-PRI,TON
+37023,0.6030438,Volatile Organic Compounds,TON
+37003,6.042234e-07,Chromium (VI),LB
+37003,0.00010165552,Benzo[b]Fluoranthene,LB
+37003,8.192788e-05,Chrysene,LB
+37003,1.8342132,Acetaldehyde,LB
+37003,0.0002850442,Fluorene,LB
+37003,0.0002865744,Nitrous Oxide,TON
+37003,0.0005683485,Ammonia,TON
+37119,758.2092,Xylenes (Mixed Isomers),LB
+37119,604.335,"2,2,4-Trimethylpentane",LB
+37079,0.008071184,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.6726044,Pyrene,LB
+37079,8.650828,Xylenes (Mixed Isomers),LB
+37079,55.21042,Acetaldehyde,LB
+37079,0.4145548,Acenaphthene,LB
+37079,13.927396,Naphthalene,LB
+37079,0.1241375,PM25-Primary from certain diesel engines,TON
+37081,46.65078,Styrene,LB
+37081,255.1932,Acrolein,LB
+37081,15.17795,PM10-Primary from certain diesel engines,TON
+37071,0.6858868,"1,3-Butadiene",LB
+37071,1.7058402,Acrolein,LB
+37071,0.016816044,Benzo[a]Pyrene,LB
+37071,0.5581928,"2,2,4-Trimethylpentane",LB
+37071,0.0002917859,Nitrate portion of PM2.5-PRI,TON
+37071,0.9368958,Nitrogen Oxides,TON
+37071,0.07861388,PM10 Primary (Filt + Cond),TON
+37071,86.0534,Nitrogen Oxides,TON
+37071,0.2099917,Sulfur Dioxide,TON
+37071,25.4052,Volatile Organic Compounds,TON
+37071,235.1354,Propionaldehyde,LB
+37071,4208.68,Formaldehyde,LB
+37071,471.87,Naphthalene,LB
+37071,223.0958,Carbon Monoxide,TON
+37069,9041.634,Ethyl Benzene,LB
+37069,2104.326,"1,3-Butadiene",LB
+37069,3.588222,Benzo[k]Fluoranthene,LB
+37069,5049.148,Acetaldehyde,LB
+37069,143160.7,Carbon Dioxide,TON
+37069,13.24519,PM10 Primary (Filt + Cond),TON
+37063,29.18883,Carbon Monoxide,TON
+37063,0.05165557,Nitrous Oxide,TON
+37063,12.200412,Pyrene,LB
+37063,1385.7978,Formaldehyde,LB
+37063,0.10566506,Arsenic,LB
+37059,0.0008665128,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.09578456,Acenaphthylene,LB
+37059,18.192344,Formaldehyde,LB
+37059,0.011399754,Benzo[a]Pyrene,LB
+37059,0.08594267,PM25-Primary from certain diesel engines,TON
+37065,0.007572738,Chrysene,LB
+37065,6.481024e-05,"Dibenzo[a,h]Anthracene",LB
+37065,0.9664658,Ethyl Benzene,LB
+37065,218.9293,Carbon Dioxide,TON
+37065,0.1607969,Volatile Organic Compounds,TON
+37065,255.9514,Toluene,LB
+37065,0.0230659,Benzo[k]Fluoranthene,LB
+37065,0.06827454,Acenaphthene,LB
+37065,0.001185781,Sulfate Portion of PM2.5-PRI,TON
+37065,1.278835,Volatile Organic Compounds,TON
+37061,0.16233356,Anthracene,LB
+37061,0.3132468,Pyrene,LB
+37061,0.0011762124,Benzo[b]Fluoranthene,LB
+37061,0.03907936,Benz[a]Anthracene,LB
+37061,29.37044,Acetaldehyde,LB
+37061,0.007188648,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.00529507,Sulfur Dioxide,TON
+37061,0.002391196,Sulfate Portion of PM2.5-PRI,TON
+37045,2.781406e-05,Benzo[b]Fluoranthene,LB
+37045,2.781406e-05,Benzo[k]Fluoranthene,LB
+37045,0.0003981734,Acenaphthylene,LB
+37045,8.48318e-07,Nickel,LB
+37045,0.03600972,Carbon Monoxide,TON
+37045,6.488878e-05,PM10 Primary (Filt + Cond),TON
+37039,4.858354e-06,Sulfate Portion of PM2.5-PRI,TON
+37039,0.15127562,Ethyl Benzene,LB
+37039,0.830389,Toluene,LB
+37039,0.0002319842,Anthracene,LB
+37039,0.557022,Xylenes (Mixed Isomers),LB
+37039,0.0004007,Fluoranthene,LB
+37039,0.00010377518,Benzo[k]Fluoranthene,LB
+37039,0.0002683632,Acenaphthene,LB
+37039,3.002644e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.0001723075,Sulfur Dioxide,TON
+37037,0.10978976,Hexane,LB
+37037,1.2494098e-07,Chromium (VI),LB
+37037,1.25254e-06,Mercury,LB
+37035,14.792444,Formaldehyde,LB
+37035,2.415076,Naphthalene,LB
+37035,0.0008549959,Sulfate Portion of PM2.5-PRI,TON
+37025,43.73126,Ethyl Benzene,LB
+37025,0.06075574,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.2382824,Benzo[b]Fluoranthene,LB
+37025,0.1245294,Arsenic,LB
+37025,1.228564,Methane,TON
+37025,2.903159,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.408807,Sulfate Portion of PM2.5-PRI,TON
+37025,37.31474,Ethyl Benzene,LB
+37025,0.0002045236,"Dibenzo[a,h]Anthracene",LB
+37025,0.0131282,PM2.5 Primary (Filt + Cond),TON
+37025,0.008911554,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.005831364,Benzo[b]Fluoranthene,LB
+37025,48.02016,Ethyl Benzene,LB
+37025,0.08714894,"Benzo[g,h,i,]Perylene",LB
+37025,0.4495136,Acenaphthylene,LB
+37025,0.05567414,Manganese,LB
+37025,0.2626772,PM10 Primary (Filt + Cond),TON
+37025,0.001856514,Sulfate Portion of PM2.5-PRI,TON
+37007,39.68518,Toluene,LB
+37007,11.493746,Hexane,LB
+37007,28.28082,Xylenes (Mixed Isomers),LB
+37007,0.02200964,Fluoranthene,LB
+37007,0.004083338,Benzo[k]Fluoranthene,LB
+37007,0.00012286168,"Dibenzo[a,h]Anthracene",LB
+37007,0.03061182,Fluorene,LB
+37007,0.0344442,PM10 Primary (Filt + Cond),TON
+37007,0.008730993,PM2.5 Primary (Filt + Cond),TON
+37007,0.00374122,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,5.616748,Styrene,LB
+37001,12.799912,"1,3-Butadiene",LB
+37001,1.0496506,Anthracene,LB
+37001,0.0017882994,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.0009770674,Benzo[k]Fluoranthene,LB
+37001,2.177152,Acenaphthylene,LB
+37001,418.7454,Formaldehyde,LB
+37001,0.0235382,Benzo[a]Pyrene,LB
+37001,45.02486,Naphthalene,LB
+37001,0.00011109714,Manganese,LB
+37001,0.0004309011,Nitrous Oxide,TON
+37001,0.0014757746,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.0008989038,Benzo[k]Fluoranthene,LB
+37189,29.6586,Acrolein,LB
+37189,10.729776,Hexane,LB
+37189,1.0870844,Anthracene,LB
+37189,3.012374,Pyrene,LB
+37189,171.52856,Acetaldehyde,LB
+37189,2.250708,Fluorene,LB
+37189,42.60992,Naphthalene,LB
+37189,12.6154,Carbon Monoxide,TON
+37189,1.051395,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.2906659,Ammonia,TON
+37189,0.1646814,Sulfate Portion of PM2.5-PRI,TON
+37183,123.95384,"2,2,4-Trimethylpentane",LB
+37183,22.30594,Fluorene,LB
+37183,427.5026,Naphthalene,LB
+37183,76138.92,Carbon Dioxide,TON
+37183,0.6440228,Sulfur Dioxide,TON
+37183,20.2129,Volatile Organic Compounds,TON
+37199,73.93088,Naphthalene,LB
+37199,32.87695,Carbon Monoxide,TON
+37199,0.1162598,Ammonia,TON
+37199,0.06339443,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.0001425296,Chromium (VI),LB
+37199,0.008214916,"Benzo[g,h,i,]Perylene",LB
+37115,1.1258634,Toluene,LB
+37115,0.00017936094,Benzo[a]Pyrene,LB
+37115,0.14615012,Acetaldehyde,LB
+37115,0.0004223698,Acenaphthene,LB
+37115,0.02193278,Naphthalene,LB
+37115,8.607281e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,4.762942,Carbon Monoxide,TON
+37109,3.916972,Ethyl Benzene,LB
+37109,3.643598,"1,3-Butadiene",LB
+37109,2.984888,Hexane,LB
+37109,3.066328e-05,Chromium (VI),LB
+37109,0.003342442,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,48.94428,"2,2,4-Trimethylpentane",LB
+37101,0.002152247,Sulfate Portion of PM2.5-PRI,TON
+37101,7.892962e-06,Chromium (VI),LB
+37101,0.0010799282,Benzo[k]Fluoranthene,LB
+37101,0.12929454,Acenaphthene,LB
+37101,0.00839687,Methane,TON
+37095,0.2455426,Fluorene,LB
+37095,2.059326,Toluene,LB
+37095,0.18996072,Acenaphthylene,LB
+37095,0.0010604372,"Dibenzo[a,h]Anthracene",LB
+37083,0.00360537,Pyrene,LB
+37083,0.000811173,Chrysene,LB
+37083,2.450954,Benzene,LB
+37083,1.0610322e-05,Mercury,LB
+37083,0.1089302,Naphthalene,LB
+37083,0.0009026111,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.001248835,Sulfur Dioxide,TON
+37053,8.948838,Ethyl Benzene,LB
+37053,7.944748,"1,3-Butadiene",LB
+37053,21.71378,Xylenes (Mixed Isomers),LB
+37053,0.19086592,Benzo[a]Pyrene,LB
+37053,0.9773369,PM10 Primary (Filt + Cond),TON
+37053,0.02956659,Sulfate Portion of PM2.5-PRI,TON
+37053,0.9254162,Manganese,LB
+37053,558.5778,Carbon Monoxide,TON
+37053,3.948825,Ammonia,TON
+37053,1.447294,PM2.5 Primary (Filt + Cond),TON
+37053,0.03970975,Sulfate Portion of PM2.5-PRI,TON
+37051,2.148398,Anthracene,LB
+37051,11.426238,Acenaphthylene,LB
+37051,0.7453908,Benz[a]Anthracene,LB
+37051,0.003733299,Nitrate portion of PM2.5-PRI,TON
+37029,3.171718,Benzene,LB
+37029,14.659562,Acetaldehyde,LB
+37029,0.10975722,Acenaphthene,LB
+37029,0.18003064,Pyrene,LB
+37029,2.315286,Xylenes (Mixed Isomers),LB
+37023,0.003986984,Benz[a]Anthracene,LB
+37023,0.19867804,Styrene,LB
+37171,0.08033517,Nitrogen Oxides,TON
+37171,3.134276,Ethyl Benzene,LB
+37171,0.07410942,Acrolein,LB
+37171,0.0040401,Anthracene,LB
+37171,0.006930524,Fluoranthene,LB
+37171,19391.032,Xylenes (Mixed Isomers),LB
+37171,4.90201,Benzo[a]Pyrene,LB
+37171,2.951354,Benz[a]Anthracene,LB
+37171,41.0931,Phenanthrene,LB
+37171,13.91151,Ammonia,TON
+37171,2.831059,Organic Carbon portion of PM2.5-PRI,TON
+37171,155.914,Volatile Organic Compounds,TON
+37167,0.01734198,Arsenic,LB
+37167,2.975016,Fluorene,LB
+37167,0.1225186,Methane,TON
+37167,21.32104,Propionaldehyde,LB
+37165,6.343852,Hexane,LB
+37165,21.3351,Xylenes (Mixed Isomers),LB
+37165,0.00887855,"Benzo[g,h,i,]Perylene",LB
+37165,0.4753812,Benz[a]Anthracene,LB
+37165,0.1162567,Manganese,LB
+37165,105.18008,Acetaldehyde,LB
+37165,0.7061192,Acenaphthene,LB
+37165,27.57544,Nitrogen Oxides,TON
+37165,1.566232,PM10 Primary (Filt + Cond),TON
+37165,0.08106971,Sulfur Dioxide,TON
+37165,0.0009150035,Ammonia,TON
+37165,0.002169712,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.0002347408,"Benzo[g,h,i,]Perylene",LB
+37165,0.018413192,Acenaphthene,LB
+37165,0.0007010216,Styrene,LB
+37165,0.09583668,Toluene,LB
+37165,4.44222e-05,Fluoranthene,LB
+37165,0.001535171,Naphthalene,LB
+37165,1.412981e-05,Nitrous Oxide,TON
+37165,3.568332e-05,PM10 Primary (Filt + Cond),TON
+37153,41080.24,Toluene,LB
+37153,20.64596,Pyrene,LB
+37153,3.017464,Benzo[b]Fluoranthene,LB
+37153,3.136598,Benz[a]Anthracene,LB
+37153,0.7890624,Nickel,LB
+37153,1.2098724,Arsenic,LB
+37153,12.496356,Acenaphthene,LB
+37153,5.378872,Nitrous Oxide,TON
+37153,11.00702,PM10 Primary (Filt + Cond),TON
+37135,7.257546,Acrolein,LB
+37135,3.392338e-05,Chromium (VI),LB
+37135,0.05001065,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.007770007,PM10 Primary (Filt + Cond),TON
+37131,0.05642447,Volatile Organic Compounds,TON
+37131,2.41328,"2,2,4-Trimethylpentane",LB
+37131,55.3765,Acrolein,LB
+37131,4.36371,"Benzo[g,h,i,]Perylene",LB
+37131,1.0100192,Benz[a]Anthracene,LB
+37131,0.4843368,Nickel,LB
+37131,0.7426422,Arsenic,LB
+37131,5.47918,Fluorene,LB
+37131,0.3557711,Elemental Carbon portion of PM2.5-PRI,TON
+37131,1.891829,PM2.5 Primary (Filt + Cond),TON
+37131,54.20733,Volatile Organic Compounds,TON
+37117,486.1852,Carbon Dioxide,TON
+37117,0.000358637,Sulfate Portion of PM2.5-PRI,TON
+37117,0.807854,Styrene,LB
+37117,10.802276,Formaldehyde,LB
+37117,0.0016369004,Nickel,LB
+37117,0.002510014,Arsenic,LB
+37125,0.00357683,Acrolein,LB
+37125,7.312748e-08,Chromium (VI),LB
+37125,0.0006467012,Acenaphthylene,LB
+37125,0.04295176,Formaldehyde,LB
+37125,9.497708e-05,Benzo[a]Pyrene,LB
+37125,0.0002868654,Fluorene,LB
+37125,5.319782e-05,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.0002731963,PM10 Primary (Filt + Cond),TON
+37123,0.001614174,Nitrous Oxide,TON
+37123,0.02162491,Ammonia,TON
+37123,0.1146611,PM10 Primary (Filt + Cond),TON
+37123,0.4844718,Acenaphthylene,LB
+37123,2.226,"2,2,4-Trimethylpentane",LB
+37109,0.0566123,Chrysene,LB
+37109,41.7542,Formaldehyde,LB
+37109,0.1533799,PM10 Primary (Filt + Cond),TON
+37109,0.01902991,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.2208205,Volatile Organic Compounds,TON
+37103,4.70472,Naphthalene,LB
+37103,0.006055992,Ammonia,TON
+37103,0.0005948169,Nitrate portion of PM2.5-PRI,TON
+37103,2.323554,Propionaldehyde,LB
+37103,0.01007761,Benzo[b]Fluoranthene,LB
+37103,0.0013766976,Benzo[k]Fluoranthene,LB
+37103,0.0649963,Chrysene,LB
+37093,2.513668e-06,Manganese,LB
+37093,6.046794e-05,Fluorene,LB
+37093,3.654814e-06,Ammonia,TON
+37093,0.0007423036,Nitrogen Oxides,TON
+37093,2.464902e-07,Sulfate Portion of PM2.5-PRI,TON
+37091,4.832502,Formaldehyde,LB
+37091,16.351398,Benzene,LB
+37091,0.00323342,Manganese,LB
+37091,5.213974e-05,Mercury,LB
+37091,0.001471081,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.5576367,Nitrogen Oxides,TON
+37091,0.01745596,PM10 Primary (Filt + Cond),TON
+37091,0.3204173,Volatile Organic Compounds,TON
+37091,2.126058,"1,3-Butadiene",LB
+37089,0.4866252,Styrene,LB
+37089,0.017910406,Anthracene,LB
+37089,0.0420048,Fluorene,LB
+37087,74.00668,Hexane,LB
+37073,21.23588,Toluene,LB
+37073,0.02046074,Phenanthrene,LB
+37073,0.001196716,Nitrous Oxide,TON
+37073,3.997701e-06,Nitrate portion of PM2.5-PRI,TON
+37073,0.0007147723,Organic Carbon portion of PM2.5-PRI,TON
+37081,33.6209,Pyrene,LB
+37081,0.02690508,Benzo[k]Fluoranthene,LB
+37081,145.17396,"2,2,4-Trimethylpentane",LB
+37081,4.652768,Benz[a]Anthracene,LB
+37081,34.63736,Fluorene,LB
+37081,5.604656,PM2.5 Primary (Filt + Cond),TON
+37075,0.03387178,Volatile Organic Compounds,TON
+37075,0.4567194,Toluene,LB
+37075,0.155294,Hexane,LB
+37075,0.06029666,Pyrene,LB
+37075,0.0003456716,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.006452807,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.01543174,PM2.5 Primary (Filt + Cond),TON
+37069,0.2242102,Anthracene,LB
+37069,0.07291688,Benzo[k]Fluoranthene,LB
+37069,0.0009743544,Mercury,LB
+37069,60.0925,Acetaldehyde,LB
+37069,0.01725509,Nitrous Oxide,TON
+37059,0.8279457,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.005203373,Nitrous Oxide,TON
+37059,8.589234,Ethyl Benzene,LB
+37059,0.012307786,"Benzo[g,h,i,]Perylene",LB
+37059,1.4999578,Acenaphthylene,LB
+37059,0.04227352,Nickel,LB
+37059,0.06291749,Methane,TON
+37119,88.10164,Xylenes (Mixed Isomers),LB
+37115,0.2073164,Benzene,LB
+37115,0.0006427207,PM10 Primary (Filt + Cond),TON
+37115,0.06156416,Hexane,LB
+37115,6.703474e-05,Anthracene,LB
+37115,0.14613734,Xylenes (Mixed Isomers),LB
+37115,0.00014936932,Benzo[a]Pyrene,LB
+37115,0.07394722,"2,2,4-Trimethylpentane",LB
+37083,0.8544538,Ethyl Benzene,LB
+37083,0.0013499206,Anthracene,LB
+37083,0.01359338,Methane,TON
+37083,2.582424,Carbon Monoxide,TON
+37083,0.001682034,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,1.9495088,Ethyl Benzene,LB
+37079,0.3422308,Acrolein,LB
+37079,41.69834,Acetaldehyde,LB
+37079,391.0451,Carbon Dioxide,TON
+37175,0.09371486,Ethyl Benzene,LB
+37175,0.08917956,"1,3-Butadiene",LB
+37175,0.1990592,Xylenes (Mixed Isomers),LB
+37175,0.019774788,Fluorene,LB
+37175,0.03611726,PM2.5 Primary (Filt + Cond),TON
+37175,0.2024688,"2,2,4-Trimethylpentane",LB
+37175,0.000439367,Arsenic,LB
+37175,0.8414256,Naphthalene,LB
+37175,0.03384138,PM25-Primary from certain diesel engines,TON
+37175,0.0002806931,Nitrous Oxide,TON
+37169,22.18928,Formaldehyde,LB
+37169,0.02440579,PM10 Primary (Filt + Cond),TON
+37169,0.013839112,"Benzo[g,h,i,]Perylene",LB
+37169,0.004553722,Manganese,LB
+37167,725.5466,Hexane,LB
+37167,0.00012662734,Chromium (VI),LB
+37167,0.09362684,Benzo[k]Fluoranthene,LB
+37167,0.3279914,Acenaphthene,LB
+37167,0.01854724,Elemental Carbon portion of PM2.5-PRI,TON
+37163,2.533664,"1,3-Butadiene",LB
+37163,28.7003,Hexane,LB
+37163,57.50848,Xylenes (Mixed Isomers),LB
+37163,6.01245,Formaldehyde,LB
+37163,20.43004,Benzene,LB
+37163,0.9870706,Naphthalene,LB
+37163,0.006219799,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.358775,Fluoranthene,LB
+37161,0.08976316,Benz[a]Anthracene,LB
+37161,0.07746348,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.01118458,Ammonia,TON
+37161,0.01779046,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.03826086,Propionaldehyde,LB
+37157,0.003050968,Pyrene,LB
+37157,4.06094,Xylenes (Mixed Isomers),LB
+37157,0.0007665122,Benzo[k]Fluoranthene,LB
+37157,0.008115828,Acenaphthylene,LB
+37139,5.170478,Benzene,LB
+37139,9.191268e-06,Mercury,LB
+37139,0.006960364,Nickel,LB
+37139,0.1201507,PM2.5 Primary (Filt + Cond),TON
+37139,0.003714052,Sulfate Portion of PM2.5-PRI,TON
+37125,4.51487e-05,Chromium (VI),LB
+37125,0.0008058808,Benzo[k]Fluoranthene,LB
+37125,0.923544,Acenaphthylene,LB
+37125,0.06343088,Chrysene,LB
+37125,0.02259748,Nickel,LB
+37125,0.009505148,Arsenic,LB
+37125,1.546161,Phenanthrene,LB
+37125,0.9598698,Fluorene,LB
+37125,0.163911,PM25-Primary from certain diesel engines,TON
+37069,0.5718586,Formaldehyde,LB
+37069,0.8396428,Benzene,LB
+37069,0.015553938,Naphthalene,LB
+37065,0.0002918682,Anthracene,LB
+37065,0.0004269492,Nickel,LB
+37065,0.000620075,Fluorene,LB
+37065,0.03646204,Nitrogen Oxides,TON
+37065,0.005286572,PM10 Primary (Filt + Cond),TON
+37061,0.0005902276,Anthracene,LB
+37061,0.0015332414,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.0007975482,Benzo[b]Fluoranthene,LB
+37061,0.6737862,"2,2,4-Trimethylpentane",LB
+37061,0.0006253446,Acenaphthene,LB
+37061,0.003590412,Phenanthrene,LB
+37061,0.04241217,Volatile Organic Compounds,TON
+37049,2.936782,Hexane,LB
+37171,5.47246,Ethyl Benzene,LB
+37171,0.0007224736,Mercury,LB
+37171,0.00900846,Nickel,LB
+37171,0.501716,Naphthalene,LB
+37171,0.005055265,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.07301298,Ammonia,TON
+37171,0.08758575,PM10 Primary (Filt + Cond),TON
+37171,0.0008436437,Sulfate Portion of PM2.5-PRI,TON
+37165,7.80282,Xylenes (Mixed Isomers),LB
+37165,0.02203764,"Benzo[g,h,i,]Perylene",LB
+37165,0.003324632,Chrysene,LB
+37165,4.005104,"2,2,4-Trimethylpentane",LB
+37165,10.7066,Benzene,LB
+37165,44.041,Acetaldehyde,LB
+37165,0.00380961,Acenaphthene,LB
+37165,0.19875974,Naphthalene,LB
+37165,0.03534683,Methane,TON
+37165,6.066013,Carbon Monoxide,TON
+37165,583.7518,Carbon Dioxide,TON
+37165,0.01773443,Sulfur Dioxide,TON
+37171,45.14226,Styrene,LB
+37171,8.477782,Anthracene,LB
+37171,173.6557,Xylenes (Mixed Isomers),LB
+37171,13.6443,Fluoranthene,LB
+37171,0.010866848,"Dibenzo[a,h]Anthracene",LB
+37171,1302.755,Acetaldehyde,LB
+37171,10.307296,Acenaphthene,LB
+37171,0.4061011,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.1868862,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.3772888,Formaldehyde,LB
+37169,8.720974e-06,Nickel,LB
+37169,4.643838,Carbon Dioxide,TON
+37169,0.7115328,Ethyl Benzene,LB
+37169,0.883539,Hexane,LB
+37169,0.0003037936,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,3.787141e-05,Sulfate Portion of PM2.5-PRI,TON
+37165,0.6179782,"1,3-Butadiene",LB
+37165,0.14529436,Propionaldehyde,LB
+37165,0.013705144,Pyrene,LB
+37165,0.002676334,Chrysene,LB
+37165,0.002811278,Benz[a]Anthracene,LB
+37165,0.0047824,Manganese,LB
+37165,1.617963e-05,Nitrate portion of PM2.5-PRI,TON
+37165,0.006613216,PM2.5 Primary (Filt + Cond),TON
+37165,0.1152872,Volatile Organic Compounds,TON
+37165,0.12434002,Benzo[k]Fluoranthene,LB
+37165,448.1186,Benzene,LB
+37165,13.80919,Nitrogen Oxides,TON
+37165,0.07189842,PM2.5 Primary (Filt + Cond),TON
+37165,3.616794,Styrene,LB
+37165,2.656984,Propionaldehyde,LB
+37165,35.472,Acetaldehyde,LB
+37165,0.8971454,Phenanthrene,LB
+37165,2.157609,Nitrogen Oxides,TON
+37155,7.76974,Ethyl Benzene,LB
+37155,0.017667664,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,9.326518,"2,2,4-Trimethylpentane",LB
+37155,0.0736712,Phenanthrene,LB
+37155,0.02676864,Fluorene,LB
+37155,1.025512,Nitrogen Oxides,TON
+37059,1.1498516,Benzene,LB
+37005,0.02525822,"1,3-Butadiene",LB
+37005,0.018000112,Acrolein,LB
+37005,0.00014375562,Anthracene,LB
+37005,0.0002580618,Fluoranthene,LB
+37005,9.789188e-05,Chrysene,LB
+37005,0.1474153,Carbon Monoxide,TON
+37169,4.918068,"2,2,4-Trimethylpentane",LB
+37169,0.003003772,Nickel,LB
+37169,0.002066465,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.02185414,Acenaphthylene,LB
+37169,0.007782286,Benzo[a]Pyrene,LB
+37129,0.2367152,Acrolein,LB
+37129,0.003490098,Nickel,LB
+37129,25.16144,Acetaldehyde,LB
+37129,0.02294079,Ammonia,TON
+37129,0.01335731,Sulfur Dioxide,TON
+37007,0.06552004,Acetaldehyde,LB
+37007,0.0001089873,Nitrous Oxide,TON
+37007,8.3117e-05,Sulfur Dioxide,TON
+37007,3.459868e-06,Sulfate Portion of PM2.5-PRI,TON
+37007,0.0230024,"1,3-Butadiene",LB
+37007,0.7028298,Toluene,LB
+37007,0.00018837392,Anthracene,LB
+37007,0.004171138,Propionaldehyde,LB
+37019,3.021912,Chrysene,LB
+37019,0.11232478,"Dibenzo[a,h]Anthracene",LB
+37019,18.690142,Fluorene,LB
+37019,6.997604,PM2.5 Primary (Filt + Cond),TON
+37019,4.94247,Sulfur Dioxide,TON
+37019,25179.18,Xylenes (Mixed Isomers),LB
+37005,4.666396e-05,"Benzo[g,h,i,]Perylene",LB
+37005,0.0002216658,Benzo[b]Fluoranthene,LB
+37005,0.0014570746,Chrysene,LB
+37005,0.0007434534,Benzo[a]Pyrene,LB
+37005,0.03217778,"2,2,4-Trimethylpentane",LB
+37005,0.003706836,Acenaphthene,LB
+37005,0.0002080024,Ammonia,TON
+37005,7.74518e-05,Sulfate Portion of PM2.5-PRI,TON
+37005,0.1947476,"1,3-Butadiene",LB
+37005,0.0760742,Phenanthrene,LB
+37081,0.017845072,Phenanthrene,LB
+37039,0.2758232,Ethyl Benzene,LB
+37039,0.05099814,Acrolein,LB
+37039,1.9782152e-05,"Dibenzo[a,h]Anthracene",LB
+37039,0.0004011386,Benz[a]Anthracene,LB
+37039,1.4698954,Benzene,LB
+37039,0.003884116,Methane,TON
+37039,0.0002319612,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.0002470456,Acenaphthylene,LB
+37029,6.616024e-05,Nickel,LB
+37029,0.00010810294,Fluorene,LB
+37029,0.002784424,Naphthalene,LB
+37029,0.0005103164,Methane,TON
+37029,0.0001278087,Nitrous Oxide,TON
+37029,0.0015437158,Styrene,LB
+37029,0.12490416,Toluene,LB
+37029,0.000311039,"Benzo[g,h,i,]Perylene",LB
+37029,0.00011685936,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,6.136006e-05,Benzo[k]Fluoranthene,LB
+37011,0.0237648,Acrolein,LB
+37011,0.0010364598,Acenaphthylene,LB
+37011,1.7190216e-05,Mercury,LB
+37011,0.001272219,Phenanthrene,LB
+37011,28.52227,Carbon Dioxide,TON
+37011,1.487149e-06,Nitrate portion of PM2.5-PRI,TON
+37011,0.0008674165,Sulfur Dioxide,TON
+37113,0.015276218,Styrene,LB
+37113,0.0009956916,Pyrene,LB
+37113,4.594086e-06,Chromium (VI),LB
+37113,0.615273,"2,2,4-Trimethylpentane",LB
+37113,4.605526e-05,Mercury,LB
+37113,0.000574245,Nickel,LB
+37113,0.0008805208,Arsenic,LB
+37113,0.0010697646,Fluorene,LB
+37113,1.0294424,Hexane,LB
+37113,0.9212626,Benzene,LB
+37101,0.0001996954,Nitrate portion of PM2.5-PRI,TON
+37101,23.335,Hexane,LB
+37101,0.05095002,Pyrene,LB
+37101,0.03138116,Benzo[k]Fluoranthene,LB
+37127,3805.902,Hexane,LB
+37127,9639.4,Xylenes (Mixed Isomers),LB
+37127,75.03772,Volatile Organic Compounds,TON
+37117,9.968082,"2,2,4-Trimethylpentane",LB
+37117,0.0002954864,Arsenic,LB
+37117,0.007510864,PM10 Primary (Filt + Cond),TON
+37111,7.216368,Styrene,LB
+37111,42.97762,Toluene,LB
+37111,14.285384,Hexane,LB
+37111,0.0002450008,Chromium (VI),LB
+37111,0.0555327,Arsenic,LB
+37111,239.864,Acetaldehyde,LB
+37119,4.556872,Acrolein,LB
+37119,0.414078,Fluoranthene,LB
+37119,0.04439239,Methane,TON
+37119,0.1288171,PM25-Primary from certain diesel engines,TON
+37119,0.05833953,Organic Carbon portion of PM2.5-PRI,TON
+37113,9.022598,Hexane,LB
+37113,0.2192941,Nitrogen Oxides,TON
+37109,0.017512308,Benzo[k]Fluoranthene,LB
+37109,12.377804,"2,2,4-Trimethylpentane",LB
+37109,46.40712,Benzene,LB
+37109,0.0253652,"Benzo[g,h,i,]Perylene",LB
+37091,1.2976486,Pyrene,LB
+37091,0.003646814,"Dibenzo[a,h]Anthracene",LB
+37091,5.348218,"2,2,4-Trimethylpentane",LB
+37091,0.0256748,Arsenic,LB
+37091,1.8616374,Phenanthrene,LB
+37103,0.688954,"1,3-Butadiene",LB
+37103,0.00026431,"Benzo[g,h,i,]Perylene",LB
+37103,0.0004237484,Benzo[b]Fluoranthene,LB
+37103,0.00627148,Chrysene,LB
+37103,24.03794,Formaldehyde,LB
+37103,0.6344172,"2,2,4-Trimethylpentane",LB
+37103,2.529428,Naphthalene,LB
+37103,0.000295429,Nitrous Oxide,TON
+37095,0.0225946,"1,3-Butadiene",LB
+37095,1.574916e-07,Chromium (VI),LB
+37095,2.020696e-05,Benzo[k]Fluoranthene,LB
+37095,8.91224e-05,Nickel,LB
+37095,0.00493377,Fluorene,LB
+37095,0.01615884,Carbon Monoxide,TON
+37095,0.001680826,PM2.5 Primary (Filt + Cond),TON
+37089,0.02138108,Benzo[k]Fluoranthene,LB
+37089,3.759112,Acenaphthylene,LB
+37089,1.861487,PM10-Primary from certain diesel engines,TON
+37089,0.08741586,Sulfur Dioxide,TON
+37089,0.09240226,Sulfate Portion of PM2.5-PRI,TON
+37089,59.45586,Acrolein,LB
+37089,0.03961522,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,61.23056,Hexane,LB
+37083,2.845295,Volatile Organic Compounds,TON
+37087,0.08653091,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.001166447,Nitrate portion of PM2.5-PRI,TON
+37087,0.2127569,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.4420383,PM2.5 Primary (Filt + Cond),TON
+37087,12.14963,Volatile Organic Compounds,TON
+37087,103.87404,"1,3-Butadiene",LB
+37087,0.375097,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,230.8206,Formaldehyde,LB
+37087,252.5532,Acetaldehyde,LB
+37087,1.5080768,Fluorene,LB
+37075,6.80425,Xylenes (Mixed Isomers),LB
+37075,2.282928,Benzene,LB
+37075,0.2784072,Volatile Organic Compounds,TON
+37061,22.7749,"1,3-Butadiene",LB
+37061,0.0002408698,Chromium (VI),LB
+37061,747.9258,Formaldehyde,LB
+37061,68.69642,Benzene,LB
+37061,319.301,Acetaldehyde,LB
+37061,0.3851444,Methane,TON
+37061,35.1067,Nitrogen Oxides,TON
+37061,2.015489,PM2.5 Primary (Filt + Cond),TON
+37061,4.157159,Volatile Organic Compounds,TON
+37061,15.60037,Propionaldehyde,LB
+37055,1.4616798,Naphthalene,LB
+37055,0.4120548,Carbon Monoxide,TON
+37055,0.009251426,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.00317737,Sulfate Portion of PM2.5-PRI,TON
+37055,0.17705144,Styrene,LB
+37039,1.5883536,Toluene,LB
+37039,0.2321858,Pyrene,LB
+37039,0.005404494,Benzo[b]Fluoranthene,LB
+37039,0.05803232,Benz[a]Anthracene,LB
+37039,9.456076,Acetaldehyde,LB
+37039,0.01114583,Methane,TON
+37039,0.06354093,PM10-Primary from certain diesel engines,TON
+37039,0.8930981,Nitrogen Oxides,TON
+37039,0.002007237,Sulfur Dioxide,TON
+37037,0.10689114,Benz[a]Anthracene,LB
+37025,0.00258602,Naphthalene,LB
+37025,1.338691,Carbon Monoxide,TON
+37025,0.02514619,Nitrous Oxide,TON
+37029,0.0002302973,Methane,TON
+37029,0.09419102,Carbon Monoxide,TON
+37029,9.107843e-05,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.0003506944,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,1.529276,Acetaldehyde,LB
+37131,0.01879588,Nitrogen Oxides,TON
+37131,1.377806e-05,Sulfate Portion of PM2.5-PRI,TON
+37169,0.7358288,Anthracene,LB
+37169,12.844852,Xylenes (Mixed Isomers),LB
+37169,0.04620574,Benzo[b]Fluoranthene,LB
+37169,87.3482,Acetaldehyde,LB
+37169,6.022165,Carbon Monoxide,TON
+37169,0.00268895,Nitrate portion of PM2.5-PRI,TON
+37169,0.9151009,PM2.5 Primary (Filt + Cond),TON
+37155,0.0477474,Ammonia,TON
+37155,0.3532483,PM2.5 Primary (Filt + Cond),TON
+37155,0.005567946,"Benzo[g,h,i,]Perylene",LB
+37155,0.02789186,Benzo[b]Fluoranthene,LB
+37155,0.9071656,Fluoranthene,LB
+37155,3.074932,"2,2,4-Trimethylpentane",LB
+37155,0.3000442,Benz[a]Anthracene,LB
+37155,4.732998e-05,Mercury,LB
+37155,0.02038582,Nickel,LB
+37155,1.445611,Phenanthrene,LB
+37163,3947.112,Toluene,LB
+37163,0.0008465154,Chromium (VI),LB
+37163,5.516008,Acenaphthylene,LB
+37163,0.4062108,Benzo[a]Pyrene,LB
+37163,1.080332,Ammonia,TON
+37163,0.228411,Organic Carbon portion of PM2.5-PRI,TON
+37153,1.8490064,Manganese,LB
+37153,87338.22,Carbon Dioxide,TON
+37153,7.693453,Ammonia,TON
+37153,4.279362,Anthracene,LB
+37153,2.405808,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,1.6529218,Benzo[b]Fluoranthene,LB
+37153,1473.423,Formaldehyde,LB
+37153,2.403162,Benzo[a]Pyrene,LB
+37145,0.05824991,Methane,TON
+37145,6.749211,Carbon Monoxide,TON
+37145,0.02157935,Sulfate Portion of PM2.5-PRI,TON
+37145,29.1654,Toluene,LB
+37129,0.02705522,Ethyl Benzene,LB
+37129,1.8702438e-06,"Benzo[g,h,i,]Perylene",LB
+37129,9.342746e-05,Fluorene,LB
+37129,0.0001990459,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.01891767,Nitrous Oxide,TON
+37129,0.004482267,Ammonia,TON
+37129,0.002594841,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.0002609376,Benzo[k]Fluoranthene,LB
+37139,0.4678986,Benzene,LB
+37139,0.002753994,Phenanthrene,LB
+37139,3.132315,Carbon Dioxide,TON
+37139,7.871865e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.0002320412,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.009557495,Volatile Organic Compounds,TON
+37139,0.0390795,Chrysene,LB
+37139,273.8016,"2,2,4-Trimethylpentane",LB
+37139,0.04010936,Benz[a]Anthracene,LB
+37139,874.9797,Carbon Dioxide,TON
+37127,0.2027687,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.08298513,Organic Carbon portion of PM2.5-PRI,TON
+37127,7.313622,Propionaldehyde,LB
+37127,0.8265638,Fluoranthene,LB
+37013,3.758468,Ethyl Benzene,LB
+37013,8.920038,Acrolein,LB
+37013,0.3997542,Anthracene,LB
+37013,5.988916,Propionaldehyde,LB
+37013,1.8896932e-05,Chromium (VI),LB
+37013,0.006171176,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,10.64011,Benzene,LB
+37013,49.14298,Acetaldehyde,LB
+37013,0.3695948,Acenaphthene,LB
+37007,1.322834,Volatile Organic Compounds,TON
+37007,26.00034,Naphthalene,LB
+37005,0.0010054512,Benzo[k]Fluoranthene,LB
+37005,0.0012541304,Benzo[a]Pyrene,LB
+37005,0.0010402926,Benz[a]Anthracene,LB
+37005,0.2114432,Naphthalene,LB
+37005,1.64746,Carbon Monoxide,TON
+37005,3.589856e-06,Nitrate portion of PM2.5-PRI,TON
+37005,0.07946864,Acrolein,LB
+37005,6.631802,Hexane,LB
+37073,0.0016091428,Benzo[b]Fluoranthene,LB
+37073,4.057766,Formaldehyde,LB
+37073,1.000234e-05,Nitrate portion of PM2.5-PRI,TON
+37073,0.01237179,PM10 Primary (Filt + Cond),TON
+37073,1.0969282,Ethyl Benzene,LB
+37073,0.2267296,"1,3-Butadiene",LB
+37021,25.39024,Hexane,LB
+37021,0.0019889124,Benzo[k]Fluoranthene,LB
+37021,0.245504,Manganese,LB
+37021,7.933764,Phenanthrene,LB
+37021,0.08539243,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,68.76266,Benzene,LB
+37021,54.33914,Ethyl Benzene,LB
+37013,0.3120588,Hexane,LB
+37013,0.009144098,Benzo[a]Pyrene,LB
+37013,0.14961454,Phenanthrene,LB
+37013,0.4375294,Carbon Monoxide,TON
+37013,0.002357385,Sulfate Portion of PM2.5-PRI,TON
+37013,0.06910658,Volatile Organic Compounds,TON
+37019,3277.53,Ethyl Benzene,LB
+37019,95.22111,Volatile Organic Compounds,TON
+37017,5.260049e-06,Methane,TON
+37017,7.601771e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.0003122312,Nitrogen Oxides,TON
+37017,2.693254e-06,Benzo[k]Fluoranthene,LB
+37013,0.11647076,Styrene,LB
+37013,0.001883886,Benzo[a]Pyrene,LB
+37013,4.312134e-05,"Dibenzo[a,h]Anthracene",LB
+37013,5.311512,Benzene,LB
+37013,0.2133758,Nitrogen Oxides,TON
+37013,6.412496e-05,Sulfate Portion of PM2.5-PRI,TON
+37013,0.1633856,"1,3-Butadiene",LB
+37013,0.02580572,Propionaldehyde,LB
+37013,0.3841924,Formaldehyde,LB
+37013,0.3897137,Carbon Monoxide,TON
+37013,6.911918e-06,Sulfate Portion of PM2.5-PRI,TON
+37011,0.08134922,"1,3-Butadiene",LB
+37011,0.1877492,Toluene,LB
+37011,0.00013197094,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,7.0871e-05,"Dibenzo[a,h]Anthracene",LB
+37011,0.2844214,Naphthalene,LB
+37011,0.05346184,Carbon Monoxide,TON
+37011,0.006189647,PM10-Primary from certain diesel engines,TON
+37011,0.005694419,PM25-Primary from certain diesel engines,TON
+37011,5.75004e-05,Nitrous Oxide,TON
+37011,0.01478468,Volatile Organic Compounds,TON
+37011,1.4715328e-06,Pyrene,LB
+37011,7.839202e-07,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.0005328868,"2,2,4-Trimethylpentane",LB
+37011,0.00082961,Benzene,LB
+37011,4.618518e-06,Phenanthrene,LB
+37011,1.30489e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37011,2.380325e-08,Sulfate Portion of PM2.5-PRI,TON
+37027,0.00702682,Styrene,LB
+37027,2.179256e-06,Chromium (VI),LB
+37027,37.62556,Carbon Dioxide,TON
+37027,0.001788184,Ammonia,TON
+37153,0.6527118,Ethyl Benzene,LB
+37153,0.0010407642,Benz[a]Anthracene,LB
+37153,0.0010738586,Acenaphthene,LB
+37153,0.0005988214,Elemental Carbon portion of PM2.5-PRI,TON
+37181,16.384476,Toluene,LB
+37181,0.005674456,Anthracene,LB
+37181,0.003548956,Benzo[a]Pyrene,LB
+37181,1.923658,Acetaldehyde,LB
+37181,0.002875446,Methane,TON
+37181,1.287461e-05,Nitrate portion of PM2.5-PRI,TON
+37181,0.3016139,Nitrogen Oxides,TON
+37181,0.01842206,PM10 Primary (Filt + Cond),TON
+37181,0.003298025,Sulfur Dioxide,TON
+37179,26.43764,Pyrene,LB
+37179,0.02374914,Chromium (VI),LB
+37179,71.57522,Acenaphthylene,LB
+37179,4478.972,Formaldehyde,LB
+37179,4.551468,Arsenic,LB
+37179,15.699898,Acenaphthene,LB
+37179,85.5354,Phenanthrene,LB
+37179,343311.8,Carbon Dioxide,TON
+37179,2.059972,Elemental Carbon portion of PM2.5-PRI,TON
+37179,11.39852,PM2.5 Primary (Filt + Cond),TON
+37197,0.191544,Carbon Monoxide,TON
+37197,2.47938,Propionaldehyde,LB
+37197,0.4987578,Pyrene,LB
+37197,0.002893726,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,48.72464,Formaldehyde,LB
+37197,0.03811162,Benzo[a]Pyrene,LB
+37197,0.5973824,Phenanthrene,LB
+37185,1.5703766,Acrolein,LB
+37185,0.016596994,Benzo[a]Pyrene,LB
+37185,0.0006776,"Dibenzo[a,h]Anthracene",LB
+37185,0.001494854,Arsenic,LB
+37185,0.009742574,Methane,TON
+37185,0.02343051,Organic Carbon portion of PM2.5-PRI,TON
+37189,21.5243,Pyrene,LB
+37189,27029.64,Xylenes (Mixed Isomers),LB
+37189,18.861664,Fluoranthene,LB
+37199,0.8909172,Fluoranthene,LB
+37199,0.00329157,Benzo[k]Fluoranthene,LB
+37199,4.87666,"2,2,4-Trimethylpentane",LB
+37199,0.6492708,PM25-Primary from certain diesel engines,TON
+37199,0.1247637,Ammonia,TON
+37199,0.06504462,Sulfate Portion of PM2.5-PRI,TON
+37199,0.8271125,Volatile Organic Compounds,TON
+37199,1.1621886,Pyrene,LB
+37199,0.0760745,Benzo[a]Pyrene,LB
+37199,13.076708,Benzene,LB
+37199,0.3693123,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.001344974,Nitrate portion of PM2.5-PRI,TON
+37199,15.55132,Nitrogen Oxides,TON
+37199,0.5703448,PM2.5 Primary (Filt + Cond),TON
+37199,0.03024555,Sulfate Portion of PM2.5-PRI,TON
+37193,22.05206,Xylenes (Mixed Isomers),LB
+37193,0.012738366,"Benzo[g,h,i,]Perylene",LB
+37193,0.004785932,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,8.063252,"2,2,4-Trimethylpentane",LB
+37193,0.000420951,Nickel,LB
+37193,0.01312806,PM10 Primary (Filt + Cond),TON
+37193,1.1268912,"1,3-Butadiene",LB
+37187,0.310205,Ethyl Benzene,LB
+37187,4.833836e-06,Chromium (VI),LB
+37187,0.0001360038,Benzo[b]Fluoranthene,LB
+37187,1.8963374e-05,"Dibenzo[a,h]Anthracene",LB
+37187,0.0019443464,Manganese,LB
+37187,4.561396e-06,Mercury,LB
+37187,0.0003558002,Elemental Carbon portion of PM2.5-PRI,TON
+37187,8.90194e-05,Nitrous Oxide,TON
+37183,375.4708,Toluene,LB
+37183,0.10388778,"Benzo[g,h,i,]Perylene",LB
+37183,0.06951152,"Dibenzo[a,h]Anthracene",LB
+37183,0.002523586,Mercury,LB
+37183,35.93466,Phenanthrene,LB
+37183,12.39163,PM25-Primary from certain diesel engines,TON
+37183,0.2265343,Nitrous Oxide,TON
+37183,2.868683,Organic Carbon portion of PM2.5-PRI,TON
+37183,24.69008,PM10 Primary (Filt + Cond),TON
+37183,313.7614,Benzene,LB
+37183,1457.5158,Acetaldehyde,LB
+37183,9.345054,Elemental Carbon portion of PM2.5-PRI,TON
+37183,104.31972,"1,3-Butadiene",LB
+37183,0.2007008,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,26.15072,Fluoranthene,LB
+37181,1.0600566e-05,Benzo[k]Fluoranthene,LB
+37181,3.008079e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.5233178,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.02889828,Sulfur Dioxide,TON
+37179,6.783108,Styrene,LB
+37179,37.055,Toluene,LB
+37179,1.7267186,Anthracene,LB
+37179,25.71278,Propionaldehyde,LB
+37179,38.1445,Xylenes (Mixed Isomers),LB
+37179,0.015106458,Benzo[k]Fluoranthene,LB
+37179,217.7486,Acetaldehyde,LB
+37179,6.057014,Phenanthrene,LB
+37177,0.06865864,"1,3-Butadiene",LB
+37177,8.16904e-07,Chromium (VI),LB
+37177,6.157164e-05,Benzo[k]Fluoranthene,LB
+37177,0.002895646,Chrysene,LB
+37177,0.2049472,Benzene,LB
+37177,6.931625e-05,Nitrous Oxide,TON
+37177,0.002210716,Organic Carbon portion of PM2.5-PRI,TON
+37013,19.01924,Acrolein,LB
+37013,3283.458,Toluene,LB
+37013,0.006338894,"Dibenzo[a,h]Anthracene",LB
+37013,0.2429654,Benz[a]Anthracene,LB
+37013,0.101016,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,16.91223,Volatile Organic Compounds,TON
+37001,0.008295998,Benz[a]Anthracene,LB
+37001,0.02518532,Acenaphthene,LB
+37001,0.02166164,Anthracene,LB
+37001,59.16602,Xylenes (Mixed Isomers),LB
+37001,1.5905384e-06,Chromium (VI),LB
+37073,0.4200262,Ethyl Benzene,LB
+37045,3.507686,Ethyl Benzene,LB
+37031,0.02000842,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.019754,Benzo[a]Pyrene,LB
+37031,11.463206,"2,2,4-Trimethylpentane",LB
+37031,121.86994,Acetaldehyde,LB
+37031,0.009895646,Acenaphthene,LB
+37031,0.05617874,Phenanthrene,LB
+37031,12.46826,Carbon Monoxide,TON
+37031,0.03739464,PM2.5 Primary (Filt + Cond),TON
+37031,0.04796514,Sulfur Dioxide,TON
+37037,0.2389808,Ethyl Benzene,LB
+37037,0.7920954,Formaldehyde,LB
+37037,0.003876126,Methane,TON
+37037,0.001417124,PM2.5 Primary (Filt + Cond),TON
+37037,0.0004781535,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.002203818,Sulfur Dioxide,TON
+37127,0.3075786,Styrene,LB
+37127,0.0011538536,Mercury,LB
+37127,126.63966,Acetaldehyde,LB
+37127,0.0617523,Phenanthrene,LB
+37127,0.5558278,Naphthalene,LB
+37127,1928.668,Carbon Dioxide,TON
+37091,0.002064076,Chrysene,LB
+37091,0.0001099356,"Dibenzo[a,h]Anthracene",LB
+37091,0.002196298,Nickel,LB
+37091,0.00612115,PM2.5 Primary (Filt + Cond),TON
+37091,0.000166521,Sulfate Portion of PM2.5-PRI,TON
+37089,2.374106,Hexane,LB
+37179,0.001183699,Nitrate portion of PM2.5-PRI,TON
+37179,0.0004201408,Chromium (VI),LB
+37179,0.5323736,Methane,TON
+37179,257.3531,Carbon Monoxide,TON
+37179,6558.031,Carbon Dioxide,TON
+37197,0.003691602,"Benzo[g,h,i,]Perylene",LB
+37197,0.7510796,"2,2,4-Trimethylpentane",LB
+37197,0.03342332,Naphthalene,LB
+37197,0.005804841,Methane,TON
+37197,0.001266488,Nitrous Oxide,TON
+37197,0.0008803577,Organic Carbon portion of PM2.5-PRI,TON
+37193,1.66377,Ethyl Benzene,LB
+37193,0.6740124,Styrene,LB
+37193,2.520272,Propionaldehyde,LB
+37193,0.5220654,Pyrene,LB
+37193,0.2605052,Acenaphthylene,LB
+37193,0.13011574,Benz[a]Anthracene,LB
+37193,0.013569222,Manganese,LB
+37193,0.1319541,PM25-Primary from certain diesel engines,TON
+37193,1.993333,Nitrogen Oxides,TON
+37193,0.02430236,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,6257.794,Ethyl Benzene,LB
+37191,8753.27,"2,2,4-Trimethylpentane",LB
+37191,2.951292,Benz[a]Anthracene,LB
+37191,47.21788,Phenanthrene,LB
+37191,449.7676,Naphthalene,LB
+37191,14.79778,Ammonia,TON
+37191,0.01558893,Nitrate portion of PM2.5-PRI,TON
+37191,20.44352,PM10 Primary (Filt + Cond),TON
+37191,0.1723636,Sulfate Portion of PM2.5-PRI,TON
+37075,0.0451236,PM10-Primary from certain diesel engines,TON
+37075,0.0001375827,Nitrate portion of PM2.5-PRI,TON
+37075,0.313441,Styrene,LB
+37075,0.5057096,Hexane,LB
+37075,0.07149162,Acenaphthene,LB
+37071,1.8554792,Chrysene,LB
+37071,90.5132,"2,2,4-Trimethylpentane",LB
+37071,12.08452,Fluorene,LB
+37071,38.91526,Ethyl Benzene,LB
+37071,49.24472,Benzene,LB
+37069,0.0573216,Benzo[b]Fluoranthene,LB
+37069,0.3730008,Chrysene,LB
+37069,0.6391464,Benz[a]Anthracene,LB
+37069,1.270565,PM25-Primary from certain diesel engines,TON
+37067,12712.316,Toluene,LB
+37067,0.5735446,Benzo[b]Fluoranthene,LB
+37067,2.741188,Fluoranthene,LB
+37067,8.508092,Acenaphthylene,LB
+37067,0.9174836,Methane,TON
+37067,0.002343067,Nitrate portion of PM2.5-PRI,TON
+37067,0.2490607,Sulfur Dioxide,TON
+37059,3.888804,Acrolein,LB
+37059,889.7136,Xylenes (Mixed Isomers),LB
+37059,0.06169962,Benzo[k]Fluoranthene,LB
+37059,0.0096057,Nickel,LB
+37059,46.24518,Acetaldehyde,LB
+37059,0.411579,Fluorene,LB
+37059,0.1576441,Ammonia,TON
+37059,0.04744626,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.08485399,PM2.5 Primary (Filt + Cond),TON
+37059,0.02205085,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,1.028607e-05,Nitrous Oxide,TON
+37053,0.0003836258,Acrolein,LB
+37053,2.914648e-09,Chromium (VI),LB
+37053,2.013694e-05,Acenaphthene,LB
+37053,4.396772,Hexane,LB
+37053,0.02941066,Acenaphthylene,LB
+37053,0.0002792556,Nickel,LB
+37053,0.01308486,Fluorene,LB
+37053,0.3353732,Naphthalene,LB
+37053,0.002946088,Methane,TON
+37053,3.474026,Carbon Monoxide,TON
+37043,0.001997304,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,43.27632,Xylenes (Mixed Isomers),LB
+37043,15.735914,"2,2,4-Trimethylpentane",LB
+37043,11.686254,Ethyl Benzene,LB
+37043,0.4002058,Styrene,LB
+37037,35.78858,Hexane,LB
+37037,0.015893566,Benzo[k]Fluoranthene,LB
+37037,0.7595848,Chrysene,LB
+37037,2.611352,Acenaphthene,LB
+37037,1.984546,Methane,TON
+37037,0.008006084,Nitrate portion of PM2.5-PRI,TON
+37037,11.24357,Toluene,LB
+37037,0.2061814,Chrysene,LB
+37037,0.3532812,Benz[a]Anthracene,LB
+37037,0.3709759,PM25-Primary from certain diesel engines,TON
+37037,0.8826827,Volatile Organic Compounds,TON
+37037,12.259424,Fluorene,LB
+37037,10.99888,Ammonia,TON
+37037,0.01078333,Nitrate portion of PM2.5-PRI,TON
+37037,4.197234,PM2.5 Primary (Filt + Cond),TON
+37037,15848.184,Xylenes (Mixed Isomers),LB
+37037,0.0768814,"Dibenzo[a,h]Anthracene",LB
+37033,0.04151946,"Benzo[g,h,i,]Perylene",LB
+37033,0.02959046,Acenaphthene,LB
+37033,1.5370346,Naphthalene,LB
+37033,0.004721207,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.007073356,Sulfur Dioxide,TON
+37031,0.12675334,Phenanthrene,LB
+37031,0.00366938,Methane,TON
+37031,0.0002265306,Nitrous Oxide,TON
+37031,0.0006730689,Sulfate Portion of PM2.5-PRI,TON
+37031,0.8207132,Acrolein,LB
+37031,0.07967958,Fluoranthene,LB
+37031,0.2577652,"2,2,4-Trimethylpentane",LB
+37031,0.03427188,Acenaphthene,LB
+37029,0.0011942284,Benzo[a]Pyrene,LB
+37029,0.01640985,Phenanthrene,LB
+37029,0.15680866,Naphthalene,LB
+37029,6.343091,Carbon Dioxide,TON
+37119,0.0001453371,Chromium (VI),LB
+37119,0.00019463,Mercury,LB
+37119,0.05165722,Nickel,LB
+37119,0.9436339,PM25-Primary from certain diesel engines,TON
+37109,15.367494,Xylenes (Mixed Isomers),LB
+37109,0.3026386,Chrysene,LB
+37109,1299.462,Carbon Dioxide,TON
+37109,0.012884718,Anthracene,LB
+37109,0.02498434,Pyrene,LB
+37109,17.671306,"2,2,4-Trimethylpentane",LB
+37109,0.002877094,Manganese,LB
+37109,0.03066428,Fluorene,LB
+37109,0.785879,Naphthalene,LB
+37109,0.002290365,Sulfur Dioxide,TON
+37105,38.8576,Propionaldehyde,LB
+37105,0.5894188,Chrysene,LB
+37105,1198.1142,Formaldehyde,LB
+37105,0.012098048,"Dibenzo[a,h]Anthracene",LB
+37097,0.0219183,"Dibenzo[a,h]Anthracene",LB
+37097,1.410436,Methane,TON
+37091,0.000257574,Acenaphthylene,LB
+37091,0.011604246,"1,3-Butadiene",LB
+37091,9.215678e-06,Mercury,LB
+37105,3.62853e-06,Chromium (VI),LB
+37105,0.00374656,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.00221144,Benzo[k]Fluoranthene,LB
+37105,0.00162172,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,1.5277176,Ethyl Benzene,LB
+37103,0.00018000618,Benzo[k]Fluoranthene,LB
+37103,0.004330584,Benzo[a]Pyrene,LB
+37103,0.00781866,Nickel,LB
+37103,0.01239953,Ammonia,TON
+37103,0.006903787,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.06728118,PM10 Primary (Filt + Cond),TON
+37101,0.02967624,Chromium (VI),LB
+37101,162.43084,Acenaphthylene,LB
+37101,25597.18,"2,2,4-Trimethylpentane",LB
+37101,5.688108,Arsenic,LB
+37101,72.22456,Fluorene,LB
+37101,1851.4964,Naphthalene,LB
+37101,3.33735,Elemental Carbon portion of PM2.5-PRI,TON
+37101,17.93303,Nitrous Oxide,TON
+37101,16.62076,PM2.5 Primary (Filt + Cond),TON
+37101,11.62739,Sulfur Dioxide,TON
+37099,2.207856e-05,Mercury,LB
+37099,0.01567597,PM10 Primary (Filt + Cond),TON
+37099,0.0210036,"1,3-Butadiene",LB
+37099,1.3963504,Propionaldehyde,LB
+37099,0.1282444,Xylenes (Mixed Isomers),LB
+37093,93.27066,Acetaldehyde,LB
+37093,0.6472186,Acenaphthene,LB
+37093,2.566184,Phenanthrene,LB
+37093,5.080708,Carbon Monoxide,TON
+37093,0.4949959,PM25-Primary from certain diesel engines,TON
+37093,0.03103228,Anthracene,LB
+37093,86.69572,Xylenes (Mixed Isomers),LB
+37093,0.010105834,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.000232103,"Dibenzo[a,h]Anthracene",LB
+37093,12.042928,Acetaldehyde,LB
+37093,0.03091947,Nitrous Oxide,TON
+37089,459.0674,Naphthalene,LB
+37089,0.01741021,Nitrate portion of PM2.5-PRI,TON
+37089,209.1448,Nitrogen Oxides,TON
+37089,6137.192,Ethyl Benzene,LB
+37089,204.1436,Styrene,LB
+37079,0.00421804,Benzo[k]Fluoranthene,LB
+37079,0.06270114,Manganese,LB
+37079,78.40124,Acetaldehyde,LB
+37079,19.670136,Naphthalene,LB
+37079,0.7975854,PM2.5 Primary (Filt + Cond),TON
+37073,1.321434,Styrene,LB
+37073,2.487178,"1,3-Butadiene",LB
+37073,118.44078,Hexane,LB
+37073,2.359336e-05,Chromium (VI),LB
+37073,0.08723902,Fluoranthene,LB
+37073,0.00452209,Arsenic,LB
+37073,15.73248,Carbon Monoxide,TON
+37073,0.04872674,Ammonia,TON
+37073,0.02320144,PM2.5 Primary (Filt + Cond),TON
+37073,2.109341,Volatile Organic Compounds,TON
+37069,42.98582,Toluene,LB
+37067,14.59556,PM10-Primary from certain diesel engines,TON
+37067,0.07899412,Nitrous Oxide,TON
+37067,0.16204502,"Benzo[g,h,i,]Perylene",LB
+37063,0.00015330224,Chromium (VI),LB
+37063,0.007300146,"Benzo[g,h,i,]Perylene",LB
+37063,3847.394,"1,3-Butadiene",LB
+37063,15.825362,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,10.078376,Benzo[b]Fluoranthene,LB
+37063,10.078376,Benzo[k]Fluoranthene,LB
+37063,26542.92,Benzene,LB
+37063,0.4302894,Mercury,LB
+37063,135.86882,Phenanthrene,LB
+37063,683.1447,Nitrogen Oxides,TON
+37063,12.95548,Sulfur Dioxide,TON
+37061,64.29288,Hexane,LB
+37061,73.0154,Xylenes (Mixed Isomers),LB
+37057,24.785,Ethyl Benzene,LB
+37057,9.97092,Acetaldehyde,LB
+37057,0.003016732,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.02705594,PM10 Primary (Filt + Cond),TON
+37057,182.39518,Toluene,LB
+37057,0.04877892,Pyrene,LB
+37057,3.539674e-06,Chromium (VI),LB
+37055,50.2517,Ethyl Benzene,LB
+37055,82.59608,Propionaldehyde,LB
+37055,0.2060496,Benzo[a]Pyrene,LB
+37055,661.7776,Acetaldehyde,LB
+37047,44491.69,Carbon Dioxide,TON
+37047,49.01848,Ethyl Benzene,LB
+37047,2.687058,Anthracene,LB
+37047,6.76958,Pyrene,LB
+37047,190.6633,Xylenes (Mixed Isomers),LB
+37047,5.289218,Fluoranthene,LB
+37047,0.016930974,Benzo[k]Fluoranthene,LB
+37039,0.05831092,Benzo[b]Fluoranthene,LB
+37039,0.0386966,Nickel,LB
+37039,1.8430674,Fluorene,LB
+37039,0.7102062,PM10-Primary from certain diesel engines,TON
+37039,0.07879594,Ammonia,TON
+37039,0.003427242,Nitrate portion of PM2.5-PRI,TON
+37039,0.6860396,PM2.5 Primary (Filt + Cond),TON
+37039,0.02541375,Sulfur Dioxide,TON
+37033,16.97763,Fluorene,LB
+37033,3.666185,Nitrous Oxide,TON
+37033,0.00698889,Nitrate portion of PM2.5-PRI,TON
+37033,0.06015182,Sulfate Portion of PM2.5-PRI,TON
+37033,1164.7244,"1,3-Butadiene",LB
+37033,27389.66,Toluene,LB
+37033,6098.212,Hexane,LB
+37033,173.71624,Propionaldehyde,LB
+37033,18227.064,Xylenes (Mixed Isomers),LB
+37033,0.003030688,Chromium (VI),LB
+37033,38.13984,Acenaphthylene,LB
+37033,2.089968,Benz[a]Anthracene,LB
+37029,2.985532,"1,3-Butadiene",LB
+37029,8.536344,Acrolein,LB
+37029,122.20044,Formaldehyde,LB
+37029,0.002393932,"Dibenzo[a,h]Anthracene",LB
+37029,0.05846844,Manganese,LB
+37029,7.970956e-05,Mercury,LB
+37029,0.02193924,Nickel,LB
+37029,0.016666334,Arsenic,LB
+37029,1.2048642,Phenanthrene,LB
+37029,0.4764965,PM25-Primary from certain diesel engines,TON
+37029,0.09113221,Ammonia,TON
+37121,0.390952,Toluene,LB
+37121,0.0958047,Hexane,LB
+37121,0.00015603128,"Benzo[g,h,i,]Perylene",LB
+37121,5.862472e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.0005322368,Acenaphthylene,LB
+37121,3.087069e-05,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.15586284,Manganese,LB
+37105,0.1620436,Nickel,LB
+37105,3.9314,Acenaphthene,LB
+37105,0.002398844,Nitrate portion of PM2.5-PRI,TON
+37105,92.60836,Acrolein,LB
+37105,1152.411,Formaldehyde,LB
+37105,0.12345358,Benzo[a]Pyrene,LB
+37105,28.26732,"2,2,4-Trimethylpentane",LB
+37097,165.02256,Hexane,LB
+37089,0.19902976,Benzo[a]Pyrene,LB
+37089,30.30816,Naphthalene,LB
+37089,0.140708,Methane,TON
+37089,0.6872469,PM10-Primary from certain diesel engines,TON
+37089,3.795452,Styrene,LB
+37089,14.32515,Propionaldehyde,LB
+37089,0.05933676,Benzo[b]Fluoranthene,LB
+37089,0.6322543,PM25-Primary from certain diesel engines,TON
+37089,0.009419562,Nitrous Oxide,TON
+37089,0.2792368,Organic Carbon portion of PM2.5-PRI,TON
+37089,1.573243,Volatile Organic Compounds,TON
+37085,49.64822,Ethyl Benzene,LB
+37085,30.3906,"1,3-Butadiene",LB
+37085,39.70452,Hexane,LB
+37085,0.03264194,"Benzo[g,h,i,]Perylene",LB
+37085,0.01027471,Nitrate portion of PM2.5-PRI,TON
+37085,6.64063,Volatile Organic Compounds,TON
+37083,15.095594,Xylenes (Mixed Isomers),LB
+37083,0.0002288338,"Dibenzo[a,h]Anthracene",LB
+37083,0.0056073,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.02174193,PM10 Primary (Filt + Cond),TON
+37079,0.004512384,Styrene,LB
+37079,6.110066e-08,Chromium (VI),LB
+37079,8.138256e-05,Benzo[k]Fluoranthene,LB
+37079,0.0008859152,Acenaphthylene,LB
+37079,7.226176e-05,Chrysene,LB
+37079,2.81087e-05,Manganese,LB
+37079,0.08715353,Carbon Monoxide,TON
+37079,3.91997,Carbon Dioxide,TON
+37079,0.0002401899,PM10 Primary (Filt + Cond),TON
+37079,0.003275061,Volatile Organic Compounds,TON
+37075,0.0015459416,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.006068884,Benzo[b]Fluoranthene,LB
+37075,0.01273672,Arsenic,LB
+37075,1.801062,Fluorene,LB
+37075,0.0004337292,Nitrate portion of PM2.5-PRI,TON
+37075,0.03278774,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.2460328,"1,3-Butadiene",LB
+37075,0.001457016,Anthracene,LB
+37075,0.0005301732,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.0004350324,Chrysene,LB
+37075,0.04789005,Nitrogen Oxides,TON
+37075,2.395616,Anthracene,LB
+37075,0.8543644,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.6918568,Benzo[b]Fluoranthene,LB
+37075,5.695892,Fluorene,LB
+37075,1.528554,Methane,TON
+37071,98.70426,Acrolein,LB
+37071,10.76869,Pyrene,LB
+37071,0.05644574,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.13354324,Arsenic,LB
+37071,0.05464891,Nitrous Oxide,TON
+37071,0.7232203,Ammonia,TON
+37071,0.3595508,Sulfate Portion of PM2.5-PRI,TON
+37069,0.3226222,Fluoranthene,LB
+37069,0.04732514,Chrysene,LB
+37069,1.5813068e-05,Mercury,LB
+37069,0.1259255,PM25-Primary from certain diesel engines,TON
+37069,4.065286,Nitrogen Oxides,TON
+37069,2.436416,"1,3-Butadiene",LB
+37069,2.010018,Hexane,LB
+37069,4.044372,Propionaldehyde,LB
+37069,0.0001388405,"Dibenzo[a,h]Anthracene",LB
+37069,0.4174934,Fluorene,LB
+37069,0.004330512,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,3.223858,Formaldehyde,LB
+37069,0.2074568,Propionaldehyde,LB
+37069,0.0006816518,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.001583096,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.4905458,Styrene,LB
+37061,0.3707218,Acrolein,LB
+37061,0.03128716,Fluoranthene,LB
+37061,0.009972798,Benzo[k]Fluoranthene,LB
+37061,6.655728,Acetaldehyde,LB
+37061,0.02052294,Acenaphthene,LB
+37061,4.803327e-05,Nitrate portion of PM2.5-PRI,TON
+37061,0.01675923,PM2.5 Primary (Filt + Cond),TON
+37057,0.4429763,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,27.96404,Ethyl Benzene,LB
+37057,2.947214,Anthracene,LB
+37057,0.03802966,"Benzo[g,h,i,]Perylene",LB
+37057,1.2020294,Chrysene,LB
+37057,3.453304,PM25-Primary from certain diesel engines,TON
+37057,2.053752e-05,Chromium (VI),LB
+37057,0.5193844,Phenanthrene,LB
+37055,0.002297044,"Dibenzo[a,h]Anthracene",LB
+37055,0.5637096,PM10 Primary (Filt + Cond),TON
+37053,0.005983162,PM10 Primary (Filt + Cond),TON
+37053,4.592992e-05,Sulfate Portion of PM2.5-PRI,TON
+37053,2.59174,Hexane,LB
+37053,0.002783586,"Benzo[g,h,i,]Perylene",LB
+37053,0.001290569,Manganese,LB
+37053,0.000386518,Arsenic,LB
+37053,0.005506138,Fluorene,LB
+37053,0.14114294,Naphthalene,LB
+37053,68.85823,Carbon Dioxide,TON
+37039,4.665766,Propionaldehyde,LB
+37039,0.4822916,Acenaphthylene,LB
+37039,0.000303281,"Dibenzo[a,h]Anthracene",LB
+37039,0.01183983,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.1985662,Hexane,LB
+37041,0.638651,Xylenes (Mixed Isomers),LB
+37041,0.0003345822,"Benzo[g,h,i,]Perylene",LB
+37041,0.0004207056,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,7.911984,Formaldehyde,LB
+37041,0.000570364,Arsenic,LB
+37041,3.32156,Acetaldehyde,LB
+37041,96.37753,Carbon Dioxide,TON
+37041,0.01998184,PM2.5 Primary (Filt + Cond),TON
+37035,3.364576e-07,Mercury,LB
+37035,0.0008793012,PM10 Primary (Filt + Cond),TON
+37035,0.012228942,Acrolein,LB
+37035,0.016733528,Propionaldehyde,LB
+37035,0.2515898,Formaldehyde,LB
+37031,0.16311376,"1,3-Butadiene",LB
+37031,0.0001148402,"Benzo[g,h,i,]Perylene",LB
+37031,0.006354806,Phenanthrene,LB
+37031,0.007213174,Naphthalene,LB
+37031,2.616167,Carbon Monoxide,TON
+37031,3.997389e-06,Nitrate portion of PM2.5-PRI,TON
+37031,0.01083022,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.16638682,Naphthalene,LB
+37025,0.0011216016,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.014591624,Acenaphthylene,LB
+37135,1.016435,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.6438136,Benzo[a]Pyrene,LB
+37135,2.154454,Benz[a]Anthracene,LB
+37135,102.97002,Benzene,LB
+37135,0.634548,Manganese,LB
+37135,0.13168148,Arsenic,LB
+37135,6.834916,Fluorene,LB
+37129,1.959132e-05,Chromium (VI),LB
+37129,2.33492e-05,Mercury,LB
+37129,36.11826,Acetaldehyde,LB
+37129,0.2359846,Acenaphthene,LB
+37129,0.999162,Phenanthrene,LB
+37135,238.314,Acrolein,LB
+37135,19.188548,Pyrene,LB
+37135,20.48562,"Benzo[g,h,i,]Perylene",LB
+37135,4.24803,Chrysene,LB
+37135,4043.444,Acetaldehyde,LB
+37135,6.840384,Methane,TON
+37135,6.307647,Sulfur Dioxide,TON
+37133,2.75919,Acrolein,LB
+37133,2.290194,Propionaldehyde,LB
+37133,0.04189032,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,40.55646,Formaldehyde,LB
+37133,0.009221154,Nickel,LB
+37133,0.01413902,Arsenic,LB
+37123,0.7610902,Pyrene,LB
+37123,0.4203052,"Benzo[g,h,i,]Perylene",LB
+37123,0.666932,Fluoranthene,LB
+37123,0.003040306,Mercury,LB
+37123,5416.771,Carbon Dioxide,TON
+37123,13.07293,Nitrogen Oxides,TON
+37113,1.012112,PM25-Primary from certain diesel engines,TON
+37113,1.062731,PM2.5 Primary (Filt + Cond),TON
+37113,0.7887204,Anthracene,LB
+37113,1.6517796,Fluoranthene,LB
+37113,479.6308,"1,3-Butadiene",LB
+37113,12247.152,Toluene,LB
+37113,0.002979028,Chromium (VI),LB
+37113,3.692018,"Benzo[g,h,i,]Perylene",LB
+37113,1.3869062,Benzo[a]Pyrene,LB
+37113,0.3723764,Nickel,LB
+37113,3.046074,Acenaphthene,LB
+37113,158.19272,Naphthalene,LB
+37113,1.418311,Methane,TON
+37113,70.77363,Nitrogen Oxides,TON
+37113,4.2809,PM10 Primary (Filt + Cond),TON
+37111,320.4062,Ethyl Benzene,LB
+37111,399.1306,Hexane,LB
+37111,0.5574046,Acenaphthene,LB
+37111,0.05187323,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.001530161,Sulfate Portion of PM2.5-PRI,TON
+37103,0.07586506,Volatile Organic Compounds,TON
+37103,1.0443604,Acrolein,LB
+37103,0.9582272,Toluene,LB
+37103,0.04839172,Anthracene,LB
+37103,0.0006683226,"Benzo[g,h,i,]Perylene",LB
+37103,0.000855809,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.003361078,Benzo[b]Fluoranthene,LB
+37103,0.07111832,Acenaphthylene,LB
+37103,0.02131394,Chrysene,LB
+37103,0.3446444,"2,2,4-Trimethylpentane",LB
+37103,0.03605332,Benz[a]Anthracene,LB
+37091,0.02047156,Pyrene,LB
+37091,0.0004376254,Benzo[b]Fluoranthene,LB
+37091,0.0002646766,Nickel,LB
+37091,0.014487482,Fluorene,LB
+37091,0.002056031,Organic Carbon portion of PM2.5-PRI,TON
+37105,1.3523792,Phenanthrene,LB
+37095,4.725954,Volatile Organic Compounds,TON
+37093,0.016598908,"1,3-Butadiene",LB
+37093,8.722364e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.04239628,Formaldehyde,LB
+37093,9.639826e-06,Manganese,LB
+37093,8.617493e-05,PM2.5 Primary (Filt + Cond),TON
+37091,1.4262558,Pyrene,LB
+37091,3.540162e-05,Chromium (VI),LB
+37091,0.985697,Fluorene,LB
+37085,0.5813508,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.2024782,Sulfate Portion of PM2.5-PRI,TON
+37085,63.0852,Xylenes (Mixed Isomers),LB
+37085,288.4964,Acetaldehyde,LB
+37085,1.857933,Acenaphthene,LB
+37083,11.541838,Ethyl Benzene,LB
+37083,0.4100082,Styrene,LB
+37083,16.0124,"2,2,4-Trimethylpentane",LB
+37083,4.603952e-05,Mercury,LB
+37077,0.7112646,Ethyl Benzene,LB
+37077,0.6467804,"1,3-Butadiene",LB
+37077,0.07032652,Anthracene,LB
+37077,1.6532314,Xylenes (Mixed Isomers),LB
+37077,0.0005818714,Benzo[k]Fluoranthene,LB
+37077,0.00419415,Nickel,LB
+37077,0.009693592,Ammonia,TON
+37077,0.005256091,Sulfate Portion of PM2.5-PRI,TON
+37065,0.01291514,Nitrous Oxide,TON
+37065,1.910269,Volatile Organic Compounds,TON
+37065,11.636488,Ethyl Benzene,LB
+37065,0.00010506342,Mercury,LB
+37049,0.011376716,Chromium (VI),LB
+37049,3.70122,Benzo[a]Pyrene,LB
+37049,0.0851711,"Dibenzo[a,h]Anthracene",LB
+37049,7.063896,Acenaphthene,LB
+37049,1781,Carbon Monoxide,TON
+37049,0.01232237,Nitrate portion of PM2.5-PRI,TON
+37047,242.1276,Toluene,LB
+37047,0.0235189,Benzo[b]Fluoranthene,LB
+37047,0.06045668,Acenaphthene,LB
+37047,3.140946,Naphthalene,LB
+37047,0.04514816,Nitrous Oxide,TON
+37041,0.05021146,Acenaphthene,LB
+37041,0.1518694,Phenanthrene,LB
+37041,0.00256295,PM25-Primary from certain diesel engines,TON
+37041,0.6026888,"2,2,4-Trimethylpentane",LB
+37031,0.0006947968,"Benzo[g,h,i,]Perylene",LB
+37031,0.07114318,Acenaphthylene,LB
+37031,0.011801912,Benzo[a]Pyrene,LB
+37031,380.029,Carbon Dioxide,TON
+37031,0.0006683113,Nitrous Oxide,TON
+37115,0.5336746,Ethyl Benzene,LB
+37115,4.257938,Toluene,LB
+37115,0.4447188,Benzene,LB
+37115,0.04080036,Volatile Organic Compounds,TON
+37109,0.004118824,Manganese,LB
+37109,0.01644727,PM10 Primary (Filt + Cond),TON
+37109,0.006131692,Sulfur Dioxide,TON
+37171,2610.284,Ethyl Benzene,LB
+37169,0.6113384,Fluoranthene,LB
+37169,0.002248538,Benzo[k]Fluoranthene,LB
+37169,0.016066386,Manganese,LB
+37169,1.1401754e-05,Mercury,LB
+37169,1.4493492e-05,Chromium (VI),LB
+37169,0.003464702,"Benzo[g,h,i,]Perylene",LB
+37167,270.8406,Xylenes (Mixed Isomers),LB
+37167,0.5821496,Phenanthrene,LB
+37167,3.605362,Nitrogen Oxides,TON
+37159,26.58376,Ethyl Benzene,LB
+37159,2.920016,Anthracene,LB
+37159,20.10416,"2,2,4-Trimethylpentane",LB
+37155,3.319422,Propionaldehyde,LB
+37155,5.098918,Xylenes (Mixed Isomers),LB
+37155,0.0008070778,"Benzo[g,h,i,]Perylene",LB
+37155,0.3384798,Acenaphthylene,LB
+37155,0.019655768,Chrysene,LB
+37155,0.016634914,Manganese,LB
+37133,1.6437354,Toluene,LB
+37133,0.004960916,Benzo[b]Fluoranthene,LB
+37133,4.416072e-06,Mercury,LB
+37133,0.0009233528,Arsenic,LB
+37133,0.07649794,Acenaphthene,LB
+37133,0.2843264,Phenanthrene,LB
+37133,0.0559924,PM10-Primary from certain diesel engines,TON
+37133,0.004760038,Ammonia,TON
+37133,0.03140466,Fluorene,LB
+37133,11.346562,Ethyl Benzene,LB
+37133,0.3634624,Styrene,LB
+37133,0.02246616,Fluoranthene,LB
+37133,0.07056382,Acenaphthylene,LB
+37133,0.003960866,Benz[a]Anthracene,LB
+37125,0.05177596,Chrysene,LB
+37125,20.65636,Toluene,LB
+37125,0.04057976,Nickel,LB
+37125,0.671124,Acenaphthene,LB
+37125,1.9173676,Phenanthrene,LB
+37125,0.209018,Methane,TON
+37125,0.00861686,Elemental Carbon portion of PM2.5-PRI,TON
+37121,1.6805858,"1,3-Butadiene",LB
+37121,0.2229074,Fluoranthene,LB
+37121,0.00537309,Manganese,LB
+37121,0.006354546,Nickel,LB
+37121,0.4602444,Phenanthrene,LB
+37121,2.637441,Carbon Monoxide,TON
+37121,0.03408131,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.0452109,PM2.5 Primary (Filt + Cond),TON
+37021,0.002678876,Nitrous Oxide,TON
+37021,0.03889601,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.3450086,Volatile Organic Compounds,TON
+37021,2.144732,Ethyl Benzene,LB
+37021,0.7926416,Styrene,LB
+37021,1.8315862,"1,3-Butadiene",LB
+37021,1.6536402,Hexane,LB
+37021,0.4457376,Fluoranthene,LB
+37021,65.91976,Formaldehyde,LB
+37021,0.001815416,"Dibenzo[a,h]Anthracene",LB
+37021,0.14311664,Benz[a]Anthracene,LB
+37021,0.4124942,Fluorene,LB
+37021,6.866928,Naphthalene,LB
+37019,0.12074206,Nickel,LB
+37019,3.795822,PM25-Primary from certain diesel engines,TON
+37019,4.999406,Volatile Organic Compounds,TON
+37015,0.2488316,Chrysene,LB
+37015,1.4382772,Fluorene,LB
+37015,1.156758,PM10-Primary from certain diesel engines,TON
+37015,1.13856,PM2.5 Primary (Filt + Cond),TON
+37015,1.315297,Volatile Organic Compounds,TON
+37015,0.2813496,Toluene,LB
+37015,0.013706762,Acenaphthene,LB
+37011,25.93618,Formaldehyde,LB
+37011,0.0001639164,Arsenic,LB
+37011,0.001631408,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,2.609394e-05,Chromium (VI),LB
+37001,0.1296499,Chrysene,LB
+37001,0.2192734,Benz[a]Anthracene,LB
+37001,0.0382524,Manganese,LB
+37001,1.91822,Carbon Monoxide,TON
+37001,0.2456254,PM10-Primary from certain diesel engines,TON
+37001,0.003148079,Nitrous Oxide,TON
+37001,0.2436911,PM2.5 Primary (Filt + Cond),TON
+37001,0.01184808,Sulfate Portion of PM2.5-PRI,TON
+37075,0.07679754,Ethyl Benzene,LB
+37075,0.13874908,"2,2,4-Trimethylpentane",LB
+37075,0.0136009,Nitrogen Oxides,TON
+37075,0.001051877,PM10 Primary (Filt + Cond),TON
+37157,0.936597,Ethyl Benzene,LB
+37157,0.04464492,Styrene,LB
+37157,0.0013305262,Chrysene,LB
+37157,2.401776,Formaldehyde,LB
+37157,1.953095,"2,2,4-Trimethylpentane",LB
+37157,18.349564,Acetaldehyde,LB
+37157,0.0015434312,Acenaphthene,LB
+37157,0.005183129,PM2.5 Primary (Filt + Cond),TON
+37125,1.1214738,Toluene,LB
+37125,0.0005083394,Benzo[k]Fluoranthene,LB
+37125,0.0004566822,Acenaphthene,LB
+37125,0.001527371,PM2.5 Primary (Filt + Cond),TON
+37125,0.0005870227,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.00011602168,Chromium (VI),LB
+37119,0.0691839,"Benzo[g,h,i,]Perylene",LB
+37119,83.70556,Acetaldehyde,LB
+37119,0.5763937,Volatile Organic Compounds,TON
+37013,0.006534546,Benzo[b]Fluoranthene,LB
+37013,0.141197,Acenaphthylene,LB
+37013,27.40488,Formaldehyde,LB
+37013,0.0008943262,"Dibenzo[a,h]Anthracene",LB
+37013,0.1902855,Fluorene,LB
+37013,0.0761156,PM10-Primary from certain diesel engines,TON
+37013,0.9017842,Ethyl Benzene,LB
+37019,0.10030088,Anthracene,LB
+37019,0.2950512,Pyrene,LB
+37019,0.2224914,Fluoranthene,LB
+37019,0.00094174,Benzo[k]Fluoranthene,LB
+37019,0.14898358,Acenaphthylene,LB
+37019,30.73686,Formaldehyde,LB
+37019,1.113676e-05,Mercury,LB
+37019,0.9347179,Carbon Monoxide,TON
+37019,0.08159735,Elemental Carbon portion of PM2.5-PRI,TON
+37019,2.832638,Nitrogen Oxides,TON
+37019,0.2285627,PM10 Primary (Filt + Cond),TON
+37015,0.12790694,Acrolein,LB
+37015,0.0009246358,Manganese,LB
+37015,8.283064e-07,Nickel,LB
+37015,0.0005921078,Phenanthrene,LB
+37015,51.33845,Carbon Dioxide,TON
+37013,0.002430042,Styrene,LB
+37013,0.013610492,"1,3-Butadiene",LB
+37013,8.843446e-05,Anthracene,LB
+37013,0.00010355768,Acenaphthene,LB
+37013,0.03779561,Carbon Monoxide,TON
+37013,0.9553028,Carbon Dioxide,TON
+37013,0.001957952,Volatile Organic Compounds,TON
+37009,0.5230258,"1,3-Butadiene",LB
+37009,0.08878658,Acenaphthylene,LB
+37009,0.012431682,Benzo[a]Pyrene,LB
+37009,0.0002197219,Nitrate portion of PM2.5-PRI,TON
+37009,0.63133,Nitrogen Oxides,TON
+37009,392.9056,"1,3-Butadiene",LB
+37009,2.921082,"Benzo[g,h,i,]Perylene",LB
+37009,0.257208,Nickel,LB
+37009,1.216665,PM2.5 Primary (Filt + Cond),TON
+37005,0.3183912,Benzo[k]Fluoranthene,LB
+37005,0.438148,Benzo[a]Pyrene,LB
+37005,0.010044118,"Dibenzo[a,h]Anthracene",LB
+37005,0.0998746,Nickel,LB
+37005,5.889322,Phenanthrene,LB
+37005,21.4408,Nitrogen Oxides,TON
+37005,0.4836099,PM2.5 Primary (Filt + Cond),TON
+37003,0.2961322,Propionaldehyde,LB
+37003,0.0003558672,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.04616674,Fluoranthene,LB
+37003,0.02087298,Anthracene,LB
+37003,5.32068,Formaldehyde,LB
+37003,0.0005746756,Nickel,LB
+37003,0.07062612,Phenanthrene,LB
+37003,0.1039738,Carbon Monoxide,TON
+37003,31.6749,Carbon Dioxide,TON
+37003,0.0155346,PM10-Primary from certain diesel engines,TON
+37003,0.005179155,Elemental Carbon portion of PM2.5-PRI,TON
+37003,9.83018e-05,Nitrous Oxide,TON
+37003,0.01464352,PM2.5 Primary (Filt + Cond),TON
+37003,0.002607185,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,11470.452,Xylenes (Mixed Isomers),LB
+37003,4.423646,"Benzo[g,h,i,]Perylene",LB
+37003,1.6620042,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,6.353342,Fluoranthene,LB
+37003,1.2107166,Chrysene,LB
+37003,225.8672,Naphthalene,LB
+37003,92.5374,Volatile Organic Compounds,TON
+37199,1.066492e-05,"Benzo[g,h,i,]Perylene",LB
+37199,0.0002481446,Acenaphthylene,LB
+37199,26.726,Formaldehyde,LB
+37199,0.001686304,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.02441878,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.05502452,Acenaphthene,LB
+37187,15.57314,Carbon Monoxide,TON
+37187,387.7151,Carbon Dioxide,TON
+37187,0.7820515,Nitrogen Oxides,TON
+37187,0.005923343,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,9.329888e-06,Pyrene,LB
+37183,2.152308e-07,"Benzo[g,h,i,]Perylene",LB
+37183,4.18451e-07,Mercury,LB
+37183,0.01336981,Carbon Monoxide,TON
+37183,2.072927,Carbon Dioxide,TON
+37177,0.3847798,Styrene,LB
+37177,0.0002038762,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.019897966,Benz[a]Anthracene,LB
+37177,0.003815468,Manganese,LB
+37177,0.08825478,Acenaphthene,LB
+37177,0.237456,Phenanthrene,LB
+37177,0.03385742,PM10-Primary from certain diesel engines,TON
+37177,0.03208904,PM2.5 Primary (Filt + Cond),TON
+37045,671.811,Benzene,LB
+37045,88.00009,Volatile Organic Compounds,TON
+37041,0.003964276,Chrysene,LB
+37041,3.382554,Formaldehyde,LB
+37041,0.00154313,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,8.361482e-05,"Dibenzo[a,h]Anthracene",LB
+37041,0.01533164,PM10-Primary from certain diesel engines,TON
+37041,0.00945965,Elemental Carbon portion of PM2.5-PRI,TON
+37037,16.72,Acetaldehyde,LB
+37037,0.1262043,"1,3-Butadiene",LB
+37037,0.002321122,Acenaphthylene,LB
+37037,0.01229668,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.000200367,"Benzo[g,h,i,]Perylene",LB
+37033,0.004345442,Chrysene,LB
+37033,0.265311,Styrene,LB
+37033,0.6163194,"1,3-Butadiene",LB
+37033,0.5757326,Hexane,LB
+37033,0.00205228,Arsenic,LB
+37027,0.352582,Benzene,LB
+37027,2.581154e-06,Nickel,LB
+37027,0.000593651,Arsenic,LB
+37027,0.5960714,Nitrogen Oxides,TON
+37027,0.005336059,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.3828522,Acrolein,LB
+37155,0.011040426,Acenaphthylene,LB
+37155,0.00011209596,Manganese,LB
+37155,0.0001101588,Sulfate Portion of PM2.5-PRI,TON
+37151,0.1010219,Sulfur Dioxide,TON
+37151,0.018783606,Benzo[k]Fluoranthene,LB
+37151,7.532488,Phenanthrene,LB
+37151,4.347132,Fluorene,LB
+37143,0.0008566146,Benzo[b]Fluoranthene,LB
+37143,4.436762,"2,2,4-Trimethylpentane",LB
+37143,0.003405956,Acenaphthene,LB
+37143,0.001171729,Nitrous Oxide,TON
+37143,0.1223117,Nitrogen Oxides,TON
+37143,0.001289881,PM2.5 Primary (Filt + Cond),TON
+37139,76.36444,Styrene,LB
+37139,1.3916256,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.0319531,"Dibenzo[a,h]Anthracene",LB
+37139,0.4590956,Nickel,LB
+37139,0.7039694,Arsenic,LB
+37139,1.546356,Nitrous Oxide,TON
+37123,13.811178,Acrolein,LB
+37123,1.8080252,Pyrene,LB
+37123,0.0079498,"Benzo[g,h,i,]Perylene",LB
+37123,0.005268816,Benzo[k]Fluoranthene,LB
+37123,16.415194,Benzene,LB
+37123,0.007831344,Arsenic,LB
+37119,110.96692,Toluene,LB
+37119,1462.212,Formaldehyde,LB
+37119,0.9790118,Manganese,LB
+37119,0.1803392,Nickel,LB
+37119,4.27119,Acenaphthene,LB
+37119,0.9164427,Methane,TON
+37119,2.475599,PM25-Primary from certain diesel engines,TON
+37119,1.331059,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.3753566,Ammonia,TON
+37115,8.406424,Hexane,LB
+37115,1.246171e-05,Mercury,LB
+37115,0.03584752,Phenanthrene,LB
+37115,0.005181051,PM2.5 Primary (Filt + Cond),TON
+37115,0.001353479,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.00107846,Sulfur Dioxide,TON
+37101,0.1309222,Benz[a]Anthracene,LB
+37101,0.01165013,Nickel,LB
+37101,0.0609774,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.002440488,"Benzo[g,h,i,]Perylene",LB
+37103,4308.262,Toluene,LB
+37103,762.1242,Hexane,LB
+37073,15.484068,Toluene,LB
+37073,0.006895894,Pyrene,LB
+37073,0.0011062766,Benzo[k]Fluoranthene,LB
+37073,3.826142,Benzene,LB
+37073,3.733876e-05,Arsenic,LB
+37073,0.02253452,Phenanthrene,LB
+37085,84.4957,Xylenes (Mixed Isomers),LB
+37081,0.03941474,Benzo[a]Pyrene,LB
+37081,0.00016167684,Mercury,LB
+37081,735.1318,Carbon Dioxide,TON
+37081,0.1026859,PM10 Primary (Filt + Cond),TON
+37081,1.0999422,Propionaldehyde,LB
+37081,0.02194838,Chrysene,LB
+37081,0.04050114,Benzo[b]Fluoranthene,LB
+37081,59.04368,"2,2,4-Trimethylpentane",LB
+37081,35.64122,Acetaldehyde,LB
+37081,0.12974138,Acenaphthene,LB
+37081,0.03748032,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.002946217,Sulfate Portion of PM2.5-PRI,TON
+37081,1838.5136,Styrene,LB
+37081,256206.8,Toluene,LB
+37081,114.08712,Fluoranthene,LB
+37081,55365.34,"2,2,4-Trimethylpentane",LB
+37081,13.18917,Arsenic,LB
+37081,119.2838,PM10 Primary (Filt + Cond),TON
+37067,0.05840114,Benzo[b]Fluoranthene,LB
+37067,7.033524e-05,Chromium (VI),LB
+37067,0.2172226,"Benzo[g,h,i,]Perylene",LB
+37067,1.0445656,Phenanthrene,LB
+37067,0.06974499,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.08228811,Sulfur Dioxide,TON
+37067,26.2557,Benzo[a]Pyrene,LB
+37067,0.6023492,"Dibenzo[a,h]Anthracene",LB
+37067,36.97195,Methane,TON
+37067,1018188,Carbon Dioxide,TON
+37067,30.2497,Nitrous Oxide,TON
+37067,69.60163,Ammonia,TON
+37067,15.21186,Organic Carbon portion of PM2.5-PRI,TON
+37067,21.35589,Sulfur Dioxide,TON
+37067,0.8890846,Sulfate Portion of PM2.5-PRI,TON
+37065,12.037044,Formaldehyde,LB
+37065,0.05654195,PM25-Primary from certain diesel engines,TON
+37065,1.212216,Nitrogen Oxides,TON
+37065,0.08950682,PM10 Primary (Filt + Cond),TON
+37065,0.0069973,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.5457728,Acrolein,LB
+37043,0.5179572,Toluene,LB
+37043,2.170946e-06,Chromium (VI),LB
+37043,7.128922,Formaldehyde,LB
+37043,0.1838292,"2,2,4-Trimethylpentane",LB
+37043,0.0019964696,Manganese,LB
+37043,0.00108775,Nickel,LB
+37043,0.0492087,Fluorene,LB
+37043,0.007910039,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.0260937,PM10 Primary (Filt + Cond),TON
+37043,0.01892511,PM2.5 Primary (Filt + Cond),TON
+37043,0.00062071,Sulfur Dioxide,TON
+37037,0.05786306,Anthracene,LB
+37037,0.06691208,Acenaphthene,LB
+37037,0.06376593,Ammonia,TON
+37035,1837.3618,Acetaldehyde,LB
+37035,38.1618,Phenanthrene,LB
+37035,465.3908,Naphthalene,LB
+37035,0.1963921,Sulfur Dioxide,TON
+37035,0.1004968,Sulfate Portion of PM2.5-PRI,TON
+37035,0.0005008964,Propionaldehyde,LB
+37035,0.05468554,Xylenes (Mixed Isomers),LB
+37035,1.5150038e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,9.714448e-06,Benzo[k]Fluoranthene,LB
+37035,0.00776448,Formaldehyde,LB
+37035,2.443898e-05,Acenaphthene,LB
+37035,1.685919e-05,Methane,TON
+37035,0.0008368831,Nitrogen Oxides,TON
+37031,1.075496,PM10-Primary from certain diesel engines,TON
+37031,0.02001858,Nitrous Oxide,TON
+37031,0.1283914,Ammonia,TON
+37031,0.005664606,Nitrate portion of PM2.5-PRI,TON
+37031,1.4349878,Anthracene,LB
+37031,0.013019156,Benzo[k]Fluoranthene,LB
+37025,103.5275,Ethyl Benzene,LB
+37025,20.011,"1,3-Butadiene",LB
+37025,3.582648,Acrolein,LB
+37025,0.0520912,Chrysene,LB
+37025,189.9269,Benzene,LB
+37025,0.1325905,Ammonia,TON
+37027,18.555812,Hexane,LB
+37027,1.3375984,Naphthalene,LB
+37027,0.006984942,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.1172445,Acenaphthylene,LB
+37027,8.069324,Formaldehyde,LB
+37027,0.13954738,Phenanthrene,LB
+37173,797.5462,Hexane,LB
+37159,3.24834,Ethyl Benzene,LB
+37159,2.82422,"1,3-Butadiene",LB
+37159,2.8212e-05,Chromium (VI),LB
+37159,0.7228744,Fluoranthene,LB
+37159,0.4784674,Acenaphthylene,LB
+37159,0.00305919,"Dibenzo[a,h]Anthracene",LB
+37159,10.442702,Naphthalene,LB
+37159,0.107319,Organic Carbon portion of PM2.5-PRI,TON
+37151,30.9194,Acrolein,LB
+37151,5291.834,Toluene,LB
+37151,0.4347236,Benzo[k]Fluoranthene,LB
+37151,7.31237,Acenaphthylene,LB
+37151,0.013101834,"Dibenzo[a,h]Anthracene",LB
+37151,8.71705,Phenanthrene,LB
+37151,19299.49,Carbon Dioxide,TON
+37151,0.1473409,Elemental Carbon portion of PM2.5-PRI,TON
+37141,3.734351,Nitrogen Oxides,TON
+37141,0.05855411,PM2.5 Primary (Filt + Cond),TON
+37141,0.05821754,Anthracene,LB
+37141,0.02999518,Benzo[k]Fluoranthene,LB
+37141,1819.73,Carbon Dioxide,TON
+37137,1.0468844,Propionaldehyde,LB
+37137,0.14534614,Pyrene,LB
+37137,19.116496,Formaldehyde,LB
+37137,0.007017158,Benzo[a]Pyrene,LB
+37137,0.02576405,Elemental Carbon portion of PM2.5-PRI,TON
+37123,2.115838e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.0001443349,Volatile Organic Compounds,TON
+37123,0.0278535,Toluene,LB
+37123,0.00625828,Hexane,LB
+37123,1.585202e-09,Chromium (VI),LB
+37123,8.503316e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,4.956928e-06,Benzo[k]Fluoranthene,LB
+37123,1.9512388e-07,"Dibenzo[a,h]Anthracene",LB
+37123,3.038202e-07,Arsenic,LB
+37123,8.781342e-06,Acenaphthene,LB
+37123,0.004649896,Carbon Monoxide,TON
+37109,0.003920334,"Benzo[g,h,i,]Perylene",LB
+37109,3.581278,"2,2,4-Trimethylpentane",LB
+37109,3.9263,Benzene,LB
+37109,2.611052e-06,Mercury,LB
+37109,3.25547e-05,Nickel,LB
+37109,0.001297243,Nitrous Oxide,TON
+37109,0.003021813,PM10 Primary (Filt + Cond),TON
+37109,0.0003857517,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.0002027059,Sulfur Dioxide,TON
+37105,1.083374,Acenaphthene,LB
+37105,4.30883,Phenanthrene,LB
+37105,0.8729128,PM25-Primary from certain diesel engines,TON
+37105,34.62888,Xylenes (Mixed Isomers),LB
+37105,2.538806,Fluoranthene,LB
+37105,10.757758,"2,2,4-Trimethylpentane",LB
+37103,9.567008,Ethyl Benzene,LB
+37103,1.477285,Pyrene,LB
+37103,35.00036,Xylenes (Mixed Isomers),LB
+37103,0.005973888,"Benzo[g,h,i,]Perylene",LB
+37103,0.313598,Benz[a]Anthracene,LB
+37103,24.04578,Benzene,LB
+37103,0.07512558,Manganese,LB
+37103,117.04286,Acetaldehyde,LB
+37103,0.5335708,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.009038513,Nitrous Oxide,TON
+37103,0.1608124,Ammonia,TON
+37103,0.001809121,Nitrate portion of PM2.5-PRI,TON
+37103,26.07487,Nitrogen Oxides,TON
+37103,11.939514,Toluene,LB
+37103,0.9946308,Fluoranthene,LB
+37103,158.68744,Formaldehyde,LB
+37103,0.718983,PM10-Primary from certain diesel engines,TON
+37103,0.04829509,Sulfur Dioxide,TON
+37103,0.03637157,Sulfate Portion of PM2.5-PRI,TON
+37103,13.11791,Acrolein,LB
+37103,5.416426e-05,Chromium (VI),LB
+37103,1.2845114,Fluoranthene,LB
+37103,0.8883532,Acenaphthylene,LB
+37103,0.4804642,PM10-Primary from certain diesel engines,TON
+37103,0.07792631,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.01790683,Sulfur Dioxide,TON
+37101,0.04448666,Nickel,LB
+37101,2.416876,Fluorene,LB
+37101,38.81174,Naphthalene,LB
+37101,0.004442952,Nitrate portion of PM2.5-PRI,TON
+37101,0.02372823,Sulfur Dioxide,TON
+37101,27.72776,Acrolein,LB
+37101,9.09563,Hexane,LB
+37101,1.2043538,Anthracene,LB
+37101,0.015236516,"Benzo[g,h,i,]Perylene",LB
+37101,29.26163,Volatile Organic Compounds,TON
+37101,15.094174,Acrolein,LB
+37101,1662.7114,Hexane,LB
+37101,0.251622,Benzo[k]Fluoranthene,LB
+37101,1080.524,Benzene,LB
+37101,175.90504,Acetaldehyde,LB
+37101,0.001033065,Nitrate portion of PM2.5-PRI,TON
+37097,1.418691,Ethyl Benzene,LB
+37097,0.005451682,Pyrene,LB
+37097,0.002464778,Benzo[k]Fluoranthene,LB
+37097,0.004475678,Benzo[a]Pyrene,LB
+37097,0.0008788202,Arsenic,LB
+37097,0.016462866,Phenanthrene,LB
+37097,1.164743,Carbon Monoxide,TON
+37093,0.23725,Acenaphthene,LB
+37093,0.5166348,Fluorene,LB
+37093,8.051566,Naphthalene,LB
+37093,2.676942,Carbon Monoxide,TON
+37093,470.4661,Carbon Dioxide,TON
+37093,0.07553731,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.016036398,Benzo[b]Fluoranthene,LB
+37093,0.5586716,Fluoranthene,LB
+37089,0.014195968,Toluene,LB
+37089,4.665416e-06,Anthracene,LB
+37089,2.184882e-06,Methane,TON
+37089,1.364802e-08,Nitrate portion of PM2.5-PRI,TON
+37089,4.947827e-06,PM2.5 Primary (Filt + Cond),TON
+37087,8.368402e-05,Propionaldehyde,LB
+37087,0.007931478,Xylenes (Mixed Isomers),LB
+37087,5.563164e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,8.698854e-09,Mercury,LB
+37087,5.673227e-06,PM2.5 Primary (Filt + Cond),TON
+37081,0.000231816,Benzo[a]Pyrene,LB
+37081,0.0004524288,Fluorene,LB
+37081,4.202275e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.0001380141,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.0008267767,PM10 Primary (Filt + Cond),TON
+37081,0.003520415,Volatile Organic Compounds,TON
+37081,0.00019739998,Anthracene,LB
+37081,0.0003965424,Pyrene,LB
+37081,0.0006228122,"Benzo[g,h,i,]Perylene",LB
+37081,0.0010234368,Acenaphthylene,LB
+37059,45.27616,Ethyl Benzene,LB
+37059,0.05985578,Anthracene,LB
+37059,0.04894062,Benzo[a]Pyrene,LB
+37059,0.06883506,Acenaphthene,LB
+37059,0.13943186,Fluorene,LB
+37061,0.00012135658,Anthracene,LB
+37061,4.191134e-05,Benz[a]Anthracene,LB
+37061,0.00014170338,Acenaphthene,LB
+37061,0.000287036,Fluorene,LB
+37061,8.551554e-05,PM10 Primary (Filt + Cond),TON
+37055,1.158776,Benzene,LB
+37055,4.244916e-05,Nickel,LB
+37055,0.0009716076,Acenaphthene,LB
+37055,0.05044216,Naphthalene,LB
+37055,18.08363,Carbon Dioxide,TON
+37055,1.367863e-06,Nitrate portion of PM2.5-PRI,TON
+37055,1.8073728,Xylenes (Mixed Isomers),LB
+37051,49361.26,Toluene,LB
+37051,1318.8908,Benzene,LB
+37047,0.3788696,Benzo[a]Pyrene,LB
+37047,0.0003171742,Mercury,LB
+37047,7.450516,Phenanthrene,LB
+37047,72.15772,Naphthalene,LB
+37047,0.00660905,Nitrate portion of PM2.5-PRI,TON
+37047,79.32131,Nitrogen Oxides,TON
+37047,4.08766,PM10 Primary (Filt + Cond),TON
+37047,125.25564,Naphthalene,LB
+37177,0.1444158,Benzo[b]Fluoranthene,LB
+37177,19.243504,Naphthalene,LB
+37177,109.4527,Carbon Monoxide,TON
+37177,0.259433,PM2.5 Primary (Filt + Cond),TON
+37177,0.007318466,Sulfate Portion of PM2.5-PRI,TON
+37175,0.00215778,Benzo[k]Fluoranthene,LB
+37175,1.87685,"2,2,4-Trimethylpentane",LB
+37175,0.006843792,Nickel,LB
+37175,0.001721956,Arsenic,LB
+37175,2.674269,Carbon Monoxide,TON
+37161,0.05357724,Sulfur Dioxide,TON
+37161,16.042228,Ethyl Benzene,LB
+37161,1.5292724,Anthracene,LB
+37161,0.09458078,Benzo[b]Fluoranthene,LB
+37161,0.3171616,Benzo[a]Pyrene,LB
+37161,11.38695,Carbon Monoxide,TON
+37161,1.092881,PM25-Primary from certain diesel engines,TON
+37155,44.59318,Ethyl Benzene,LB
+37155,38.06438,"1,3-Butadiene",LB
+37155,107.98818,Toluene,LB
+37155,36.64118,"2,2,4-Trimethylpentane",LB
+37155,0.541804,Manganese,LB
+37155,57024.21,Carbon Dioxide,TON
+37155,0.01225495,Nitrate portion of PM2.5-PRI,TON
+37155,7.171762,Volatile Organic Compounds,TON
+37155,6.19885,Anthracene,LB
+37155,0.0006112654,Chromium (VI),LB
+37155,0.201935,Benzo[a]Pyrene,LB
+37155,19.554896,Phenanthrene,LB
+37161,31.32196,Acrolein,LB
+37161,24.70378,Xylenes (Mixed Isomers),LB
+37161,0.019632176,"Benzo[g,h,i,]Perylene",LB
+37161,3.257204,Fluoranthene,LB
+37161,0.01334966,Benzo[k]Fluoranthene,LB
+37161,0.3265616,Benzo[a]Pyrene,LB
+37161,1.0600028,Benz[a]Anthracene,LB
+37161,0.1195094,Methane,TON
+37161,0.4627752,Organic Carbon portion of PM2.5-PRI,TON
+37143,2.729196,Ethyl Benzene,LB
+37143,5.229074,Toluene,LB
+37143,2.299936e-05,Chromium (VI),LB
+37143,0.06438546,Benzo[a]Pyrene,LB
+37143,0.002626702,"Dibenzo[a,h]Anthracene",LB
+37143,1.0413768,Phenanthrene,LB
+37143,0.001112243,Nitrate portion of PM2.5-PRI,TON
+37143,0.3838764,PM2.5 Primary (Filt + Cond),TON
+37143,0.4869673,Volatile Organic Compounds,TON
+37143,19.47273,"1,3-Butadiene",LB
+37143,9.68242e-05,Chromium (VI),LB
+37143,0.08976848,Methane,TON
+37143,1741.427,Carbon Dioxide,TON
+37143,0.1173162,Ammonia,TON
+37143,0.02421091,Organic Carbon portion of PM2.5-PRI,TON
+37131,9.585106,Xylenes (Mixed Isomers),LB
+37131,0.007750574,"Benzo[g,h,i,]Perylene",LB
+37131,1.3227514,Fluoranthene,LB
+37131,0.005164758,"Dibenzo[a,h]Anthracene",LB
+37131,3.422052e-05,Mercury,LB
+37131,18.076394,Naphthalene,LB
+37131,0.8441335,PM10-Primary from certain diesel engines,TON
+37131,0.7766228,PM25-Primary from certain diesel engines,TON
+37131,0.003137771,Nitrous Oxide,TON
+37129,15.629538,Ethyl Benzene,LB
+37129,0.446034,PM25-Primary from certain diesel engines,TON
+37129,0.07077742,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.004016556,Anthracene,LB
+37129,0.0009660982,Chrysene,LB
+37129,1.3820674,Formaldehyde,LB
+37129,1.7042886e-05,"Dibenzo[a,h]Anthracene",LB
+37129,6.224102e-05,Arsenic,LB
+37129,0.2464634,Naphthalene,LB
+37129,0.0001946798,Elemental Carbon portion of PM2.5-PRI,TON
+37121,3.358734,Ethyl Benzene,LB
+37121,7.668814,Acrolein,LB
+37121,2.582306,Hexane,LB
+37121,0.8166518,Pyrene,LB
+37121,3.90874e-05,Chromium (VI),LB
+37121,0.01592521,Benzo[b]Fluoranthene,LB
+37111,0.0014582416,Nickel,LB
+37111,0.0321239,Acenaphthene,LB
+37111,106.5217,Carbon Dioxide,TON
+37111,0.0001130492,Nitrate portion of PM2.5-PRI,TON
+37111,0.0009219365,Sulfur Dioxide,TON
+37111,2251.246,"1,3-Butadiene",LB
+37111,35593.02,Xylenes (Mixed Isomers),LB
+37111,5548.476,Acetaldehyde,LB
+37111,3.467947,Organic Carbon portion of PM2.5-PRI,TON
+37111,1.900204,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,92.8654,Formaldehyde,LB
+37111,1596.125,Carbon Dioxide,TON
+37111,3.221408,Nitrogen Oxides,TON
+37111,0.1553809,PM10 Primary (Filt + Cond),TON
+37111,0.02715188,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.009477674,Chromium (VI),LB
+37109,39.79716,Phenanthrene,LB
+37103,2.259369e-06,Sulfur Dioxide,TON
+37101,578.922,Carbon Monoxide,TON
+37101,0.8941722,Sulfur Dioxide,TON
+37101,1.8797404,Anthracene,LB
+37101,0.002426152,Chromium (VI),LB
+37101,0.6706646,Benzo[b]Fluoranthene,LB
+37101,0.6441916,Chrysene,LB
+37101,0.6660228,Benz[a]Anthracene,LB
+37101,2.192592,Acenaphthene,LB
+37091,4.178002e-08,Chromium (VI),LB
+37091,5.648238e-05,Benzo[b]Fluoranthene,LB
+37091,0.00016646782,Acenaphthene,LB
+37091,0.008646378,Naphthalene,LB
+37091,7.17835e-05,Ammonia,TON
+37091,5.599161e-05,Sulfur Dioxide,TON
+37089,64.06756,Ethyl Benzene,LB
+37089,0.0004238088,Chromium (VI),LB
+37089,0.0586638,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,1.1729534,Manganese,LB
+37089,0.0005596988,Mercury,LB
+37089,0.8721821,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.4087573,Sulfur Dioxide,TON
+37089,2.09291,"1,3-Butadiene",LB
+37089,0.5379134,Fluoranthene,LB
+37089,0.3543996,Acenaphthylene,LB
+37089,0.17874402,Benz[a]Anthracene,LB
+37089,2.024764e-05,Mercury,LB
+37089,0.4830862,Fluorene,LB
+37089,0.05109336,Methane,TON
+37089,0.04015783,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,3.070096e-05,Chromium (VI),LB
+37117,0.009451414,Fluorene,LB
+37117,2.6871e-05,Nitrate portion of PM2.5-PRI,TON
+37117,0.01074831,PM2.5 Primary (Filt + Cond),TON
+37175,0.5449114,Anthracene,LB
+37175,1.5360156,Pyrene,LB
+37175,1.1697582,Fluoranthene,LB
+37175,0.00470931,Benzo[k]Fluoranthene,LB
+37175,0.004649002,"Dibenzo[a,h]Anthracene",LB
+37175,17.797382,Benzene,LB
+37175,0.2150723,Methane,TON
+37175,0.002007353,Nitrate portion of PM2.5-PRI,TON
+37175,18.881046,Toluene,LB
+37175,0.3151816,Anthracene,LB
+37175,2.956404,"2,2,4-Trimethylpentane",LB
+37175,0.012714222,Nickel,LB
+37175,0.376858,Acenaphthene,LB
+37175,0.146468,PM10 Primary (Filt + Cond),TON
+37165,18.887906,Propionaldehyde,LB
+37165,1.1766406,Acenaphthene,LB
+37161,14.233232,Propionaldehyde,LB
+37161,0.005586494,"Dibenzo[a,h]Anthracene",LB
+37161,0.09273778,Arsenic,LB
+37161,0.4520481,Methane,TON
+37161,0.4086354,Nitrous Oxide,TON
+37157,0.270717,Xylenes (Mixed Isomers),LB
+37157,4.528198e-08,Chromium (VI),LB
+37157,0.2088912,Benzene,LB
+37157,0.8674196,Carbon Monoxide,TON
+37157,133.888,Carbon Dioxide,TON
+37157,0.01730656,PM10 Primary (Filt + Cond),TON
+37157,0.0007088374,Sulfur Dioxide,TON
+37157,8.305359e-05,Sulfate Portion of PM2.5-PRI,TON
+37157,0.06427871,Volatile Organic Compounds,TON
+37151,2.422538,"1,3-Butadiene",LB
+37151,0.018308602,Benzo[b]Fluoranthene,LB
+37151,0.6055786,Fluoranthene,LB
+37151,0.1167619,Chrysene,LB
+37151,0.19802836,Benz[a]Anthracene,LB
+37151,3.109152e-05,Mercury,LB
+37151,0.5513186,Fluorene,LB
+37151,8.971238,Naphthalene,LB
+37151,0.05763876,Methane,TON
+37151,0.2127118,PM25-Primary from certain diesel engines,TON
+37151,0.08814157,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.19019988,Fluoranthene,LB
+37149,2.460352,Acrolein,LB
+37149,0.06095561,PM2.5 Primary (Filt + Cond),TON
+37149,0.01497552,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,233.2148,"2,2,4-Trimethylpentane",LB
+37141,53.293,Ethyl Benzene,LB
+37141,106.25854,Acrolein,LB
+37141,0.0321059,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,643.4254,Acetaldehyde,LB
+37141,2.525832,Methane,TON
+37141,32.00685,Carbon Monoxide,TON
+37141,43981.56,Carbon Dioxide,TON
+37141,0.04082784,Nitrous Oxide,TON
+37141,6.832944,Volatile Organic Compounds,TON
+37003,290.7734,Formaldehyde,LB
+37075,0.0001104624,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.4368868,Benzene,LB
+37075,0.000277923,Manganese,LB
+37075,0.0007843766,Phenanthrene,LB
+37021,0.00015193136,Chromium (VI),LB
+37021,0.04732168,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.02451638,Benzo[b]Fluoranthene,LB
+37021,0.0010862328,"Dibenzo[a,h]Anthracene",LB
+37021,0.0683185,Manganese,LB
+37021,0.03709934,Fluorene,LB
+37021,2884.432,Carbon Dioxide,TON
+37021,0.01160805,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.2944597,PM10 Primary (Filt + Cond),TON
+37021,0.0312787,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.002986256,Benzo[k]Fluoranthene,LB
+37147,0.006082514,Arsenic,LB
+37147,0.013549456,Phenanthrene,LB
+37147,0.05201402,PM10 Primary (Filt + Cond),TON
+37127,0.002723606,Benzo[k]Fluoranthene,LB
+37127,2.851206,Formaldehyde,LB
+37127,0.005238986,Benzo[a]Pyrene,LB
+37127,2.321756,"2,2,4-Trimethylpentane",LB
+37127,0.0003239144,Mercury,LB
+37127,0.009221065,PM2.5 Primary (Filt + Cond),TON
+37127,4.031066,Xylenes (Mixed Isomers),LB
+37121,2.66552,Toluene,LB
+37121,1.1325338,Xylenes (Mixed Isomers),LB
+37011,0.0608028,Formaldehyde,LB
+37011,5.22245e-06,Nickel,LB
+37011,8.007576e-06,Arsenic,LB
+37011,2.634104,Carbon Dioxide,TON
+37011,5.526008e-05,Sulfur Dioxide,TON
+37005,786.5081,Carbon Dioxide,TON
+37005,0.006749905,Sulfur Dioxide,TON
+37005,0.002071536,"Dibenzo[a,h]Anthracene",LB
+37005,2.679794,"2,2,4-Trimethylpentane",LB
+37005,0.2819172,Acenaphthene,LB
+37005,10.46979,Naphthalene,LB
+37053,2.075468e-05,"Dibenzo[a,h]Anthracene",LB
+37053,0.0004114494,Benz[a]Anthracene,LB
+37053,1.3559148,Benzene,LB
+37053,0.0004170984,Acenaphthene,LB
+37053,0.6284701,Carbon Monoxide,TON
+37039,3.724258,Hexane,LB
+37039,1.1277298,Propionaldehyde,LB
+37039,0.00403089,Benzo[k]Fluoranthene,LB
+37039,0.00017060026,"Dibenzo[a,h]Anthracene",LB
+37039,0.003550872,Benz[a]Anthracene,LB
+37039,0.02625648,Phenanthrene,LB
+37039,0.2437152,Naphthalene,LB
+37013,5.734868,Xylenes (Mixed Isomers),LB
+37013,2.76819e-05,Chromium (VI),LB
+37013,0.03398368,Benz[a]Anthracene,LB
+37013,0.04985486,Methane,TON
+37013,0.5163643,Nitrogen Oxides,TON
+37013,0.004887413,Organic Carbon portion of PM2.5-PRI,TON
+37011,16.073082,Xylenes (Mixed Isomers),LB
+37005,7.298866,Toluene,LB
+37005,1.7375908,Hexane,LB
+37005,0.0004309186,Benzo[b]Fluoranthene,LB
+37005,0.0004398688,Benz[a]Anthracene,LB
+37005,0.08477512,Naphthalene,LB
+37177,1.814188e-06,Nitrate portion of PM2.5-PRI,TON
+37177,0.5532256,Acetaldehyde,LB
+37173,0.651559,Pyrene,LB
+37173,0.05509372,Arsenic,LB
+37173,20.284,Naphthalene,LB
+37173,0.03739285,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.1851705,Nitrous Oxide,TON
+37173,0.0004598004,Nitrate portion of PM2.5-PRI,TON
+37173,0.3720867,PM10 Primary (Filt + Cond),TON
+37173,0.4071382,"Benzo[g,h,i,]Perylene",LB
+37173,1.779229,Acenaphthylene,LB
+37171,34.70952,"2,2,4-Trimethylpentane",LB
+37171,0.009719692,Benz[a]Anthracene,LB
+37171,0.002206946,Manganese,LB
+37169,681.0622,"1,3-Butadiene",LB
+37169,90.697,Acrolein,LB
+37169,1.3731548,Benzo[k]Fluoranthene,LB
+37169,221.7614,Naphthalene,LB
+37169,802.9615,Carbon Monoxide,TON
+37169,90.32097,Nitrogen Oxides,TON
+37149,0.006059266,PM2.5 Primary (Filt + Cond),TON
+37149,0.0005830896,Pyrene,LB
+37149,0.15631618,Xylenes (Mixed Isomers),LB
+37149,0.000408583,Acenaphthylene,LB
+37149,1.4608414e-05,Mercury,LB
+37149,0.00019814586,Acenaphthene,LB
+37149,0.3923423,Methane,TON
+37153,0.1031737,Carbon Monoxide,TON
+37153,0.03084031,Volatile Organic Compounds,TON
+37153,0.5002594,Benzene,LB
+37153,0.13300288,Hexane,LB
+37153,0.01893933,Anthracene,LB
+37147,6.457604,Ethyl Benzene,LB
+37147,15.432038,Acrolein,LB
+37147,12.860884,Toluene,LB
+37147,1.4931594,Pyrene,LB
+37147,1.1644448,Fluoranthene,LB
+37147,0.07655316,Benzo[a]Pyrene,LB
+37147,84.7128,Acetaldehyde,LB
+37147,7.083119,Carbon Monoxide,TON
+37147,0.005724252,Nitrous Oxide,TON
+37147,0.6807488,PM10 Primary (Filt + Cond),TON
+37147,0.01990543,"Benzo[g,h,i,]Perylene",LB
+37147,15.141898,Ethyl Benzene,LB
+37147,0.019879874,Acenaphthene,LB
+37147,0.04026872,Fluorene,LB
+37147,0.00705289,Ammonia,TON
+37147,0.0002663381,Sulfate Portion of PM2.5-PRI,TON
+37139,7.812956,Ethyl Benzene,LB
+37139,6.8492,"1,3-Butadiene",LB
+37139,6.003284,Hexane,LB
+37139,2.144082,Pyrene,LB
+37139,1.6252502,Fluoranthene,LB
+37139,1.1609634,Acenaphthylene,LB
+37139,0.0790203,Manganese,LB
+37139,6.387206e-05,Mercury,LB
+37139,2825.328,Carbon Dioxide,TON
+37139,0.02491396,Sulfate Portion of PM2.5-PRI,TON
+37143,0.00228935,Pyrene,LB
+37143,0.0003907058,Benzo[k]Fluoranthene,LB
+37143,0.006255844,Acenaphthylene,LB
+37143,1.4063002,Hexane,LB
+37143,8.936696e-06,Mercury,LB
+37143,0.0001340861,Elemental Carbon portion of PM2.5-PRI,TON
+37141,4.792754,"1,3-Butadiene",LB
+37141,6.336887,Nitrogen Oxides,TON
+37137,0.014161288,Chrysene,LB
+37137,0.03008324,Benz[a]Anthracene,LB
+37137,0.01774949,Methane,TON
+37137,0.04092003,PM10-Primary from certain diesel engines,TON
+37137,0.03893003,PM2.5 Primary (Filt + Cond),TON
+37133,0.05139022,Chrysene,LB
+37133,36.74984,Formaldehyde,LB
+37133,0.0869935,Benz[a]Anthracene,LB
+37133,1.1986908,Ethyl Benzene,LB
+37133,0.1190303,Anthracene,LB
+37133,3.281452,Benzene,LB
+37133,999.9546,Carbon Dioxide,TON
+37133,3.382067,Nitrogen Oxides,TON
+37133,0.04096172,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.1385538,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.06554493,Sulfate Portion of PM2.5-PRI,TON
+37127,10.36784,Volatile Organic Compounds,TON
+37127,0.05215048,Benzo[b]Fluoranthene,LB
+37127,0.4173272,Ammonia,TON
+37127,0.003400846,Nitrate portion of PM2.5-PRI,TON
+37121,2.713032,Ethyl Benzene,LB
+37121,9.01003,Hexane,LB
+37121,3.433212,Benzene,LB
+37121,9.679928e-06,Methane,TON
+37121,0.0004159254,Nitrogen Oxides,TON
+37121,0.007793786,Ethyl Benzene,LB
+37121,1.0778912e-05,Anthracene,LB
+37121,4.453662e-06,Benzo[k]Fluoranthene,LB
+37117,0.266107,Styrene,LB
+37117,1.0049046,Propionaldehyde,LB
+37117,0.000972551,"Benzo[g,h,i,]Perylene",LB
+37117,0.4437264,Carbon Monoxide,TON
+37117,0.0005663059,Nitrous Oxide,TON
+37117,0.01002569,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.8952382,Toluene,LB
+37117,0.00531569,Propionaldehyde,LB
+37117,1.4621952e-08,Chromium (VI),LB
+37117,6.812354e-05,Benzo[b]Fluoranthene,LB
+37117,0.0011228018,Acenaphthylene,LB
+37117,0.0004994248,Fluorene,LB
+37117,0.0001518037,PM10 Primary (Filt + Cond),TON
+37117,9.22747e-05,PM2.5 Primary (Filt + Cond),TON
+37107,65.23608,Acetaldehyde,LB
+37107,11.824732,Acrolein,LB
+37107,1.1582614,Fluoranthene,LB
+37107,0.3695542,Benz[a]Anthracene,LB
+37107,0.139717,Elemental Carbon portion of PM2.5-PRI,TON
+37097,3.186215,Volatile Organic Compounds,TON
+37097,58.86072,Formaldehyde,LB
+37097,20.93214,"1,3-Butadiene",LB
+37097,0.15830708,Anthracene,LB
+37105,0.0018531716,"Benzo[g,h,i,]Perylene",LB
+37105,0.0006962746,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.0004715956,Chrysene,LB
+37105,1.0284648e-05,Nickel,LB
+37105,0.08243234,Naphthalene,LB
+37105,0.03279284,Nitrogen Oxides,TON
+37105,0.008375514,Chromium (VI),LB
+37105,10.986676,"Benzo[g,h,i,]Perylene",LB
+37105,15.581496,Fluoranthene,LB
+37105,2.985624,Chrysene,LB
+37105,3601.282,Acetaldehyde,LB
+37105,165793.1,Carbon Dioxide,TON
+37103,0.3428959,Elemental Carbon portion of PM2.5-PRI,TON
+37103,8.688224,Acrolein,LB
+37103,6.630616,Toluene,LB
+37103,0.16490904,Chrysene,LB
+37103,2.577396,"2,2,4-Trimethylpentane",LB
+37099,10.594524,Ethyl Benzene,LB
+37099,4.763004,Styrene,LB
+37099,19.50282,Xylenes (Mixed Isomers),LB
+37099,1.8314132,Acenaphthylene,LB
+37099,4.134848,Phenanthrene,LB
+37099,2.40708,Fluorene,LB
+37099,0.004603898,Nitrate portion of PM2.5-PRI,TON
+37099,0.1720321,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,8.538454,Hexane,LB
+37099,0.007634432,"Benzo[g,h,i,]Perylene",LB
+37099,0.002096024,Benzo[k]Fluoranthene,LB
+37099,0.0015487666,Manganese,LB
+37099,3.046474,Carbon Monoxide,TON
+37099,0.2868667,Nitrogen Oxides,TON
+37099,0.001477604,Sulfur Dioxide,TON
+37083,7.24411,Pyrene,LB
+37083,257.9252,Xylenes (Mixed Isomers),LB
+37083,0.0004391104,Chromium (VI),LB
+37083,5.381332,Acenaphthylene,LB
+37083,0.8091692,Chrysene,LB
+37083,33.10942,"1,3-Butadiene",LB
+37083,122.74202,Acrolein,LB
+37083,216.7114,Toluene,LB
+37083,1.4380884,Benz[a]Anthracene,LB
+37083,34.49179,Carbon Monoxide,TON
+37083,0.7168517,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.371097,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,7.784663,Volatile Organic Compounds,TON
+37017,51.25391,Carbon Dioxide,TON
+37017,0.002501948,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.18890476,"1,3-Butadiene",LB
+37017,0.000325835,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,50.353,Ammonia,TON
+37021,12.71507,Organic Carbon portion of PM2.5-PRI,TON
+37021,84.91293,PM10 Primary (Filt + Cond),TON
+37021,9.738538,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,16.23855,Sulfur Dioxide,TON
+37021,946.25,Acrolein,LB
+37021,0.03835192,Chromium (VI),LB
+37017,5927.75,Ethyl Benzene,LB
+37017,2.479596,Chrysene,LB
+37017,20.3609,Fluorene,LB
+37017,2290.923,Carbon Monoxide,TON
+37017,0.008676135,Nitrate portion of PM2.5-PRI,TON
+37009,2.077568,"1,3-Butadiene",LB
+37009,1.16159e-05,Chromium (VI),LB
+37009,0.0062931,Benzo[b]Fluoranthene,LB
+37009,0.6303514,Phenanthrene,LB
+37009,0.01145816,Methane,TON
+37009,485.0069,Carbon Dioxide,TON
+37009,0.01374312,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.3631971,Volatile Organic Compounds,TON
+37015,0.1190216,Styrene,LB
+37015,0.4076342,Acrolein,LB
+37015,0.991845,Propionaldehyde,LB
+37015,0.003931958,Benzo[b]Fluoranthene,LB
+37015,0.007252642,Benzo[a]Pyrene,LB
+37015,4.118534,"2,2,4-Trimethylpentane",LB
+37015,0.03373345,Methane,TON
+37015,515.6353,Carbon Dioxide,TON
+37015,0.5665666,Nitrogen Oxides,TON
+37015,0.01566967,Sulfur Dioxide,TON
+37015,0.0002735233,Sulfate Portion of PM2.5-PRI,TON
+37021,0.01291048,Methane,TON
+37021,2.960374,Toluene,LB
+37021,0.006526256,Manganese,LB
+37021,14.351488,Acetaldehyde,LB
+37009,0.4500738,Acrolein,LB
+37009,0.007995254,Pyrene,LB
+37009,8.541322,Xylenes (Mixed Isomers),LB
+37009,0.007043738,Fluoranthene,LB
+37009,0.00014451498,"Dibenzo[a,h]Anthracene",LB
+37009,4.16562,"2,2,4-Trimethylpentane",LB
+37009,0.008796296,Fluorene,LB
+37009,0.2635823,Volatile Organic Compounds,TON
+37171,0.05152358,Acrolein,LB
+37171,0.000476683,Anthracene,LB
+37171,0.0013562382,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,5.291948e-05,Mercury,LB
+37171,0.004630132,Ammonia,TON
+37171,4.714526e-06,Nitrate portion of PM2.5-PRI,TON
+37151,1.5861066,Acrolein,LB
+37151,13.867656,Hexane,LB
+37151,0.014427586,Anthracene,LB
+37151,31.8803,Xylenes (Mixed Isomers),LB
+37151,194.1034,Acetaldehyde,LB
+37151,0.1379242,PM10 Primary (Filt + Cond),TON
+37103,0.07354686,"2,2,4-Trimethylpentane",LB
+37103,0.19906966,Benzene,LB
+37103,0.03932864,Ethyl Benzene,LB
+37103,0.0019619076,Styrene,LB
+37103,0.006813728,Acrolein,LB
+37103,0.00019935892,Manganese,LB
+37103,0.0001695492,Arsenic,LB
+37103,0.7623216,Acetaldehyde,LB
+37103,0.1157638,Carbon Monoxide,TON
+37103,0.0007441804,Ammonia,TON
+37103,0.0001179583,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.7456102,Ethyl Benzene,LB
+37089,0.03555814,Styrene,LB
+37089,0.002909302,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.005699236,Acenaphthylene,LB
+37089,0.06416524,Naphthalene,LB
+37089,0.003262497,Nitrous Oxide,TON
+37089,0.01275844,Ammonia,TON
+37089,0.0244363,PM10 Primary (Filt + Cond),TON
+37021,15.359572,"2,2,4-Trimethylpentane",LB
+37021,17.819368,"1,3-Butadiene",LB
+37021,45.27532,Acrolein,LB
+37021,63.4291,Naphthalene,LB
+37017,10.660804,Benzene,LB
+37017,4.030052,Styrene,LB
+37017,0.05481858,Benzo[k]Fluoranthene,LB
+37017,0.0017493642,"Dibenzo[a,h]Anthracene",LB
+37017,9.450784,Naphthalene,LB
+37017,0.002279426,Sulfate Portion of PM2.5-PRI,TON
+37011,0.0245786,Arsenic,LB
+37011,0.1855044,Methane,TON
+37011,1283.244,Carbon Monoxide,TON
+37011,4.938909,Ammonia,TON
+37011,127.92418,Acrolein,LB
+37011,0.003214262,Chromium (VI),LB
+37011,2131.282,Formaldehyde,LB
+37011,1.838608,Benz[a]Anthracene,LB
+37003,0.002413182,"Dibenzo[a,h]Anthracene",LB
+37003,2.195802,"2,2,4-Trimethylpentane",LB
+37003,0.2001652,Benz[a]Anthracene,LB
+37003,8.358808,Benzene,LB
+37003,0.6205136,Fluorene,LB
+37003,0.1924798,PM25-Primary from certain diesel engines,TON
+37001,0.271354,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,251.4602,Formaldehyde,LB
+37001,0.2718532,Benzo[a]Pyrene,LB
+37001,0.00246221,Mercury,LB
+37001,1.3564082,Fluorene,LB
+37001,7.564395,Nitrogen Oxides,TON
+37001,23.62917,Volatile Organic Compounds,TON
+37199,3.444308,Ethyl Benzene,LB
+37199,2.033956e-06,Mercury,LB
+37199,8.4574,Carbon Dioxide,TON
+37199,0.000277593,Ammonia,TON
+37185,8.072206,Propionaldehyde,LB
+37185,1.5415104,Pyrene,LB
+37185,8.486552,Xylenes (Mixed Isomers),LB
+37185,0.00449854,Benzo[k]Fluoranthene,LB
+37185,0.1101228,Benzo[a]Pyrene,LB
+37185,0.7006276,PM25-Primary from certain diesel engines,TON
+37185,8.966188,Toluene,LB
+37185,1.4403492,Ethyl Benzene,LB
+37185,0.0446331,Acrolein,LB
+37185,0.002115384,Anthracene,LB
+37185,0.04547694,Propionaldehyde,LB
+37185,1.980652e-06,Chromium (VI),LB
+37185,0.010899076,Acenaphthylene,LB
+37185,0.7151496,Acetaldehyde,LB
+37185,0.123604,Naphthalene,LB
+37185,0.003053749,Ammonia,TON
+37189,0.02623496,Manganese,LB
+37189,13.976794,Naphthalene,LB
+37189,0.006540447,Sulfate Portion of PM2.5-PRI,TON
+37189,0.4169566,Anthracene,LB
+37189,1.1516094,Pyrene,LB
+37189,0.07931324,Benzo[a]Pyrene,LB
+37189,3.637198,Anthracene,LB
+37189,7.246382,Pyrene,LB
+37189,0.0003049232,Chromium (VI),LB
+37189,0.009854462,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,5.904044,Fluoranthene,LB
+37189,0.7867297,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.0241995,Nitrous Oxide,TON
+37189,0.09824311,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.03902832,Sulfate Portion of PM2.5-PRI,TON
+37193,13.991592,"2,2,4-Trimethylpentane",LB
+37193,0.2013716,Manganese,LB
+37193,0.09940538,Nickel,LB
+37193,1.6623694,Acenaphthene,LB
+37193,3.529996,Fluorene,LB
+37193,3.005663,Volatile Organic Compounds,TON
+37193,3.671884,Fluoranthene,LB
+37185,0.05268933,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.105453,PM2.5 Primary (Filt + Cond),TON
+37185,0.02708334,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,4.151807,Volatile Organic Compounds,TON
+37185,0.4202518,Pyrene,LB
+37185,535.0718,Xylenes (Mixed Isomers),LB
+37185,0.07108628,Benzo[b]Fluoranthene,LB
+37185,0.0017876918,Mercury,LB
+37185,0.2522674,Acenaphthene,LB
+37185,0.5109896,Fluorene,LB
+37183,271.0778,Ethyl Benzene,LB
+37183,0.2003772,Benzo[b]Fluoranthene,LB
+37183,0.4845878,Acenaphthene,LB
+37183,16261.9,Carbon Dioxide,TON
+37179,25975.12,Carbon Dioxide,TON
+37179,287.2712,Xylenes (Mixed Isomers),LB
+37179,0.15004592,Benzo[b]Fluoranthene,LB
+37179,112.83798,"2,2,4-Trimethylpentane",LB
+37179,9.33816,Ethyl Benzene,LB
+37179,0.00398588,Chrysene,LB
+37179,0.003308872,Organic Carbon portion of PM2.5-PRI,TON
+37173,7.640336e-06,Mercury,LB
+37173,0.1785597,Acenaphthene,LB
+37173,0.002876286,Sulfur Dioxide,TON
+37125,4.178612,Styrene,LB
+37125,187.89478,Hexane,LB
+37125,0.8137222,Acenaphthylene,LB
+37125,0.000410706,Mercury,LB
+37125,63.31454,Acetaldehyde,LB
+37125,1638.018,Carbon Dioxide,TON
+37125,0.01450257,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.1677995,Nitrous Oxide,TON
+37113,0.08980216,Pyrene,LB
+37113,0.018902028,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,18.17265,Acetaldehyde,LB
+37113,22.23893,Carbon Monoxide,TON
+37113,0.007237089,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,15.690692,Xylenes (Mixed Isomers),LB
+37109,5.680936,"2,2,4-Trimethylpentane",LB
+37105,0.3518294,Anthracene,LB
+37105,0.7174446,Pyrene,LB
+37105,142.23834,Formaldehyde,LB
+37105,0.08593685,Methane,TON
+37105,0.0003205879,Nitrate portion of PM2.5-PRI,TON
+37105,3.111936,Nitrogen Oxides,TON
+37105,0.02591568,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.015570876,Acenaphthene,LB
+37101,594.352,Carbon Dioxide,TON
+37101,0.009563278,Nitrous Oxide,TON
+37101,0.02542248,Ammonia,TON
+37101,0.3552402,Styrene,LB
+37101,0.3100512,Acrolein,LB
+37097,217.0956,Toluene,LB
+37097,65.78188,Hexane,LB
+37097,0.03641336,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.003438138,Nickel,LB
+37097,4.669026,Naphthalene,LB
+37097,1426.84,Carbon Dioxide,TON
+37089,54.12556,Acrolein,LB
+37089,16.971138,"2,2,4-Trimethylpentane",LB
+37089,0.3524396,Manganese,LB
+37089,5.110318,Fluorene,LB
+37089,0.01780536,Nitrous Oxide,TON
+37089,0.1589375,Ammonia,TON
+37087,29.48384,Formaldehyde,LB
+37087,2.182446,Toluene,LB
+37087,0.7402106,Hexane,LB
+37087,0.01461725,Manganese,LB
+37087,0.1467151,PM10-Primary from certain diesel engines,TON
+37087,0.006918469,Sulfate Portion of PM2.5-PRI,TON
+37079,1.2734724,Acrolein,LB
+37079,0.1735789,Pyrene,LB
+37079,0.13057778,Fluoranthene,LB
+37079,1.5226652,Benzene,LB
+37079,7.070518,Acetaldehyde,LB
+37079,0.2056732,Phenanthrene,LB
+37079,0.01785032,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.0004659707,Nitrous Oxide,TON
+37073,0.008249796,Ethyl Benzene,LB
+37073,1.1671648e-05,Anthracene,LB
+37073,4.502526e-06,Chrysene,LB
+37073,0.00430466,Formaldehyde,LB
+37073,0.0135656,Benzene,LB
+37073,2.74174e-05,Fluorene,LB
+37085,1.5424144,Acenaphthene,LB
+37085,8.372832,Phenanthrene,LB
+37085,23754.83,Carbon Dioxide,TON
+37085,0.2265037,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.01829279,Sulfate Portion of PM2.5-PRI,TON
+37085,915.5406,Ethyl Benzene,LB
+37085,1249.4918,Hexane,LB
+37085,0.4183724,Benzo[b]Fluoranthene,LB
+37081,22.77554,Xylenes (Mixed Isomers),LB
+37081,23.70224,Benzene,LB
+37081,111.40014,Acetaldehyde,LB
+37081,0.7448,Acenaphthene,LB
+37081,0.03898808,Sulfate Portion of PM2.5-PRI,TON
+37071,8.945066,Xylenes (Mixed Isomers),LB
+37071,0.0248385,Benzo[b]Fluoranthene,LB
+37071,0.003413614,Benzo[k]Fluoranthene,LB
+37071,0.5590926,Acenaphthylene,LB
+37071,10.208056,Benzene,LB
+37071,0.008376034,Arsenic,LB
+37071,0.003672193,Nitrous Oxide,TON
+37071,0.001447106,Nitrate portion of PM2.5-PRI,TON
+37071,0.4510289,PM10 Primary (Filt + Cond),TON
+37065,0.1130594,Styrene,LB
+37065,0.0016890878,Benzo[b]Fluoranthene,LB
+37065,0.0002308266,"Dibenzo[a,h]Anthracene",LB
+37065,0.04534286,Volatile Organic Compounds,TON
+37063,33.29,"1,3-Butadiene",LB
+37063,0.3077102,Chrysene,LB
+37063,385.7716,Formaldehyde,LB
+37063,1477.842,"2,2,4-Trimethylpentane",LB
+37063,52.4566,Naphthalene,LB
+37063,253.5964,Carbon Monoxide,TON
+37063,0.8506047,Ammonia,TON
+37063,0.7337634,PM10 Primary (Filt + Cond),TON
+37057,345.1106,Toluene,LB
+37057,9.322868,Fluoranthene,LB
+37057,100.53226,"2,2,4-Trimethylpentane",LB
+37057,243.0036,Benzene,LB
+37057,0.01559477,Nitrate portion of PM2.5-PRI,TON
+37057,6.311919,PM2.5 Primary (Filt + Cond),TON
+37055,9.905392,Ethyl Benzene,LB
+37055,43.38206,Toluene,LB
+37055,32.89598,Hexane,LB
+37051,0.06860747,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.04758724,Sulfur Dioxide,TON
+37051,0.393508,Benz[a]Anthracene,LB
+37051,0.01935968,Nitrous Oxide,TON
+37051,0.8974776,PM10 Primary (Filt + Cond),TON
+37051,0.003016686,Benzo[k]Fluoranthene,LB
+37045,0.012437832,Acrolein,LB
+37045,4.514434e-08,Chromium (VI),LB
+37045,0.0008213812,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.00361675,Acenaphthylene,LB
+37045,0.5656252,"2,2,4-Trimethylpentane",LB
+37045,0.0004293782,Benz[a]Anthracene,LB
+37045,0.2528696,Acetaldehyde,LB
+37045,0.0007893972,Acenaphthene,LB
+37045,0.0410605,Naphthalene,LB
+37045,0.0001904013,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,1.596653,PM10 Primary (Filt + Cond),TON
+37045,25.07882,Acrolein,LB
+37045,26.48506,Propionaldehyde,LB
+37045,0.01035568,Mercury,LB
+37045,0.12912154,Nickel,LB
+37045,0.8538064,Methane,TON
+37045,18944.95,Carbon Dioxide,TON
+37045,0.001570984,Nitrate portion of PM2.5-PRI,TON
+37039,2987.924,Xylenes (Mixed Isomers),LB
+37035,3.18575,"1,3-Butadiene",LB
+37035,8.582268,Xylenes (Mixed Isomers),LB
+37035,0.02485492,Benzo[b]Fluoranthene,LB
+37035,0.267603,Benz[a]Anthracene,LB
+37035,0.015599006,Nickel,LB
+37035,0.3020683,PM10-Primary from certain diesel engines,TON
+37035,0.01312057,Sulfate Portion of PM2.5-PRI,TON
+37035,30.80013,Carbon Monoxide,TON
+37035,2386.934,Carbon Dioxide,TON
+37035,0.01348359,Elemental Carbon portion of PM2.5-PRI,TON
+37035,2.933739,Nitrogen Oxides,TON
+37035,4.44363,Styrene,LB
+37035,1.728751,Acenaphthylene,LB
+37033,9.772704e-05,Chromium (VI),LB
+37033,0.3703152,Fluoranthene,LB
+37033,0.256012,Acenaphthene,LB
+37033,6.280057,Nitrogen Oxides,TON
+37033,0.03894132,Organic Carbon portion of PM2.5-PRI,TON
+37033,4.25647,Volatile Organic Compounds,TON
+37033,12960.716,Toluene,LB
+37033,3111.448,Hexane,LB
+37033,2.99252,Acenaphthene,LB
+37033,72.50145,Nitrogen Oxides,TON
+37029,0.1007688,Styrene,LB
+37029,0.5919498,Toluene,LB
+37029,7.888272,Formaldehyde,LB
+37029,0.0002466318,"Dibenzo[a,h]Anthracene",LB
+37029,0.01938768,Benz[a]Anthracene,LB
+37029,0.000587927,Arsenic,LB
+37029,94.59593,Carbon Dioxide,TON
+37027,0.4691912,Hexane,LB
+37027,0.011876936,Propionaldehyde,LB
+37027,0.00014591982,Benzo[b]Fluoranthene,LB
+37027,0.178465,Formaldehyde,LB
+37027,0.0286018,Naphthalene,LB
+37027,4.25909e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.10971168,Propionaldehyde,LB
+37175,0.0013171444,Benzo[k]Fluoranthene,LB
+37175,0.001329325,Chrysene,LB
+37175,1.6344856,Formaldehyde,LB
+37175,0.006108574,Methane,TON
+37175,0.00206002,Nitrous Oxide,TON
+37175,0.002809906,PM10 Primary (Filt + Cond),TON
+37175,0.000173672,Sulfur Dioxide,TON
+37171,0.014194444,Mercury,LB
+37171,0.002321695,Nitrate portion of PM2.5-PRI,TON
+37171,0.2505552,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,29.47646,Volatile Organic Compounds,TON
+37171,0.5384736,Benzo[b]Fluoranthene,LB
+37171,0.5351172,Benz[a]Anthracene,LB
+37165,0.016841256,Benzo[a]Pyrene,LB
+37165,2.26435,Naphthalene,LB
+37165,0.007942563,Ammonia,TON
+37165,0.0002907686,Nitrate portion of PM2.5-PRI,TON
+37165,0.08783902,PM10 Primary (Filt + Cond),TON
+37165,0.002472162,Sulfur Dioxide,TON
+37165,0.00274098,Sulfate Portion of PM2.5-PRI,TON
+37165,0.7726548,Acrolein,LB
+37165,0.5047624,Propionaldehyde,LB
+37165,0.0004382462,"Benzo[g,h,i,]Perylene",LB
+37165,0.02356894,Benz[a]Anthracene,LB
+37165,0.0306131,Acenaphthene,LB
+37165,0.12033796,Phenanthrene,LB
+37161,0.00283634,Nickel,LB
+37161,0.4108478,Phenanthrene,LB
+37161,1.4857132,Acrolein,LB
+37161,3.922132,Naphthalene,LB
+37153,1.1338758,Toluene,LB
+37153,9.385032e-05,Benzo[k]Fluoranthene,LB
+37153,0.10199664,Formaldehyde,LB
+37153,0.2891638,Benzene,LB
+37153,1.9339172e-07,Mercury,LB
+37145,0.3758074,Ethyl Benzene,LB
+37145,0.03921284,Anthracene,LB
+37145,0.1148156,Pyrene,LB
+37145,0.05343086,PM25-Primary from certain diesel engines,TON
+37143,12.278332,Xylenes (Mixed Isomers),LB
+37139,28.01104,Toluene,LB
+37139,24.122,Xylenes (Mixed Isomers),LB
+37129,86.9183,Benzene,LB
+37129,0.01171657,Nitrate portion of PM2.5-PRI,TON
+37129,32.3815,Ethyl Benzene,LB
+37129,72.08346,Acrolein,LB
+37129,2.948096,Anthracene,LB
+37129,0.0002108572,Chromium (VI),LB
+37129,0.0394468,"Benzo[g,h,i,]Perylene",LB
+37129,0.6562586,Benzo[a]Pyrene,LB
+37141,4.428304,Pyrene,LB
+37141,0.09742838,Ammonia,TON
+37141,0.019857046,"Benzo[g,h,i,]Perylene",LB
+37141,403.716,Formaldehyde,LB
+37141,8.824066e-05,Mercury,LB
+37139,1358.2772,"2,2,4-Trimethylpentane",LB
+37139,154.8988,Benzene,LB
+37133,7.028984,Ethyl Benzene,LB
+37133,0.03959222,Manganese,LB
+37133,0.017258518,Arsenic,LB
+37133,10.63743,Carbon Monoxide,TON
+37133,0.199114,PM25-Primary from certain diesel engines,TON
+37133,0.07484365,Ammonia,TON
+37129,11.221492,Ethyl Benzene,LB
+37129,4.602618,Styrene,LB
+37129,24.27528,Toluene,LB
+37129,0.01977296,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.02231744,Sulfur Dioxide,TON
+37129,0.02563243,Sulfate Portion of PM2.5-PRI,TON
+37125,0.0742622,Phenanthrene,LB
+37125,7.372075e-05,Nitrate portion of PM2.5-PRI,TON
+37125,0.2009134,"1,3-Butadiene",LB
+37125,0.1636607,Hexane,LB
+37125,0.02142866,Anthracene,LB
+37121,1.3970312,Propionaldehyde,LB
+37121,0.2626508,Phenanthrene,LB
+37121,0.01296869,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.001826311,Sulfur Dioxide,TON
+37123,0.07923566,Styrene,LB
+37123,2.395796e-06,Chromium (VI),LB
+37123,0.005264774,Fluoranthene,LB
+37123,0.2176389,Nitrogen Oxides,TON
+37123,0.008054554,PM10 Primary (Filt + Cond),TON
+37123,0.00366847,PM2.5 Primary (Filt + Cond),TON
+37119,27.05783,Volatile Organic Compounds,TON
+37119,135.64758,"1,3-Butadiene",LB
+37119,22.73784,Acenaphthylene,LB
+37119,10.402262,Benz[a]Anthracene,LB
+37119,2.208653,Ammonia,TON
+37119,11.4965,Propionaldehyde,LB
+37119,27680.87,Carbon Dioxide,TON
+37119,0.001827153,Nitrate portion of PM2.5-PRI,TON
+37107,28.95686,Styrene,LB
+37107,0.3219122,Benzo[b]Fluoranthene,LB
+37107,1.7783528,Fluoranthene,LB
+37107,5.567774,Acenaphthylene,LB
+37107,0.4176556,Benzo[a]Pyrene,LB
+37107,63.4936,Naphthalene,LB
+37107,1.666241,PM10 Primary (Filt + Cond),TON
+37097,8.815762,Volatile Organic Compounds,TON
+37097,46.25534,"1,3-Butadiene",LB
+37097,14.501236,Pyrene,LB
+37097,3.49277,Benz[a]Anthracene,LB
+37097,0.2077332,Nickel,LB
+37101,14.015746,Acenaphthene,LB
+37101,28.3902,Fluorene,LB
+37101,728.1848,Naphthalene,LB
+37101,7.215309,Nitrous Oxide,TON
+37101,386.8483,Nitrogen Oxides,TON
+37101,3.025643,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,298.869,Volatile Organic Compounds,TON
+37099,6.300168,Ethyl Benzene,LB
+37099,1.3171856,"1,3-Butadiene",LB
+37099,0.15571922,Acrolein,LB
+37099,0.2130792,Propionaldehyde,LB
+37099,0.004527746,Benzo[a]Pyrene,LB
+37099,8.901788,Benzene,LB
+37099,0.009883278,Acenaphthene,LB
+37099,8.91243e-05,Sulfate Portion of PM2.5-PRI,TON
+37093,8.566464,Toluene,LB
+37093,0.0008266442,Benzo[b]Fluoranthene,LB
+37093,1.0677972,Formaldehyde,LB
+37089,94.17288,Ethyl Benzene,LB
+37089,12.829384,Fluoranthene,LB
+37089,1.061624,Chrysene,LB
+37089,0.3949774,Manganese,LB
+37089,1234.8214,Acetaldehyde,LB
+37089,25.40702,Phenanthrene,LB
+37089,2.248393,PM25-Primary from certain diesel engines,TON
+37089,16.52969,Volatile Organic Compounds,TON
+37067,68358.8,Toluene,LB
+37067,12092.504,Hexane,LB
+37065,0.02261886,Methane,TON
+37065,908.9746,Carbon Dioxide,TON
+37065,0.1700308,PM25-Primary from certain diesel engines,TON
+37065,0.006437923,Sulfate Portion of PM2.5-PRI,TON
+37065,2.259618,"1,3-Butadiene",LB
+37065,4.518194,Toluene,LB
+37065,4.425456,Xylenes (Mixed Isomers),LB
+37065,0.3857908,Acenaphthylene,LB
+37065,0.0620921,Chrysene,LB
+37065,1.695551,"2,2,4-Trimethylpentane",LB
+37063,0.03321678,Acrolein,LB
+37063,0.003050498,"Benzo[g,h,i,]Perylene",LB
+37063,0.0006998206,Chrysene,LB
+37063,0.6814542,Acetaldehyde,LB
+37063,0.04805177,Nitrogen Oxides,TON
+37063,0.001168846,PM2.5 Primary (Filt + Cond),TON
+37061,1.3345348,Fluoranthene,LB
+37061,0.005128804,Benzo[k]Fluoranthene,LB
+37061,0.4184086,Benz[a]Anthracene,LB
+37061,0.005477118,Arsenic,LB
+37061,2.118568,Phenanthrene,LB
+37061,0.002259083,Nitrate portion of PM2.5-PRI,TON
+37057,3.856302,Acrolein,LB
+37057,0.2178126,"Benzo[g,h,i,]Perylene",LB
+37057,0.0018795184,"Dibenzo[a,h]Anthracene",LB
+37057,201.3528,Benzene,LB
+37057,9.99891,Naphthalene,LB
+37057,79.93471,Carbon Monoxide,TON
+37057,0.05563757,Ammonia,TON
+37057,0.04188387,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.08823048,PM2.5 Primary (Filt + Cond),TON
+37057,243.9128,Formaldehyde,LB
+37057,1412.5316,"2,2,4-Trimethylpentane",LB
+37057,169.5247,Carbon Monoxide,TON
+37057,0.04342081,Nitrous Oxide,TON
+37057,0.2813787,PM2.5 Primary (Filt + Cond),TON
+37057,0.008585844,Sulfate Portion of PM2.5-PRI,TON
+37057,0.0002586972,Chromium (VI),LB
+37057,0.19527394,Chrysene,LB
+37053,21.46468,Ethyl Benzene,LB
+37053,0.02972554,"Benzo[g,h,i,]Perylene",LB
+37053,0.00882991,Chrysene,LB
+37053,10.922296,Acetaldehyde,LB
+37053,0.03381188,Acenaphthene,LB
+37053,0.18340406,Phenanthrene,LB
+37053,690.9894,Carbon Dioxide,TON
+37053,0.002950598,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.02945896,Ammonia,TON
+37053,0.06200453,PM10 Primary (Filt + Cond),TON
+37047,860.8122,"1,3-Butadiene",LB
+37047,114.43824,Propionaldehyde,LB
+37047,8.760546,Fluoranthene,LB
+37047,2.170368,Benzo[k]Fluoranthene,LB
+37047,1.9858138,Chrysene,LB
+37047,6181.828,Benzene,LB
+37047,1.1262998,Nickel,LB
+37043,0.4493196,Benzene,LB
+37043,7.118976,Carbon Dioxide,TON
+37043,0.0002075833,PM2.5 Primary (Filt + Cond),TON
+37043,0.008624822,Styrene,LB
+37043,0.04892836,"1,3-Butadiene",LB
+37037,7.577786,Ethyl Benzene,LB
+37037,16.91894,Acrolein,LB
+37037,19.200404,Toluene,LB
+37037,0.7902798,Fluoranthene,LB
+37037,0.0516845,Chrysene,LB
+37037,0.0004238716,"Dibenzo[a,h]Anthracene",LB
+37037,0.04516296,Nickel,LB
+37037,24.03736,Naphthalene,LB
+37037,0.03694309,PM25-Primary from certain diesel engines,TON
+37037,0.01365297,Sulfur Dioxide,TON
+37037,0.007122263,Sulfate Portion of PM2.5-PRI,TON
+37031,0.3169398,Pyrene,LB
+37031,0.2383226,Fluoranthene,LB
+37031,0.3844278,Phenanthrene,LB
+37031,0.7478371,Carbon Monoxide,TON
+37031,0.01098637,Ammonia,TON
+37031,0.00416587,Sulfate Portion of PM2.5-PRI,TON
+37029,0.07733514,"1,3-Butadiene",LB
+37029,0.01764858,Fluoranthene,LB
+37029,0.2206652,Benzene,LB
+37029,1.014432,Acetaldehyde,LB
+37029,0.005646508,PM10-Primary from certain diesel engines,TON
+37029,4.075989e-05,Nitrous Oxide,TON
+37029,0.0009234063,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.002093134,Anthracene,LB
+37029,0.7766068,Formaldehyde,LB
+37029,0.0003385674,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,7275.756,Toluene,LB
+37165,1287.066,Hexane,LB
+37165,194.15566,Benzene,LB
+37149,381.463,Formaldehyde,LB
+37149,5680.046,Carbon Dioxide,TON
+37149,1.048159,PM25-Primary from certain diesel engines,TON
+37149,0.130906,Ammonia,TON
+37149,3.618622,Pyrene,LB
+37149,0.5032132,Chrysene,LB
+37157,17.847566,"2,2,4-Trimethylpentane",LB
+37157,58.78758,Benzene,LB
+37157,8873.335,Carbon Dioxide,TON
+37157,2.337999,PM10 Primary (Filt + Cond),TON
+37157,0.07836685,Sulfate Portion of PM2.5-PRI,TON
+37151,0.9824144,Anthracene,LB
+37151,0.05637664,Benzo[b]Fluoranthene,LB
+37151,2.074322,Fluoranthene,LB
+37151,0.05979152,Manganese,LB
+37151,13.00706,Carbon Monoxide,TON
+37151,1977.018,Carbon Dioxide,TON
+37151,0.1134585,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,1949.2552,Toluene,LB
+37145,0.9912826,Pyrene,LB
+37145,0.05554728,Arsenic,LB
+37145,0.09004376,Organic Carbon portion of PM2.5-PRI,TON
+37143,2.606022,Toluene,LB
+37143,8.684212e-06,Mercury,LB
+37143,0.3285844,Phenanthrene,LB
+37143,0.02782952,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.001193101,Sulfate Portion of PM2.5-PRI,TON
+37139,0.011762404,Chrysene,LB
+37139,8.733638,Formaldehyde,LB
+37139,0.7895508,Benzene,LB
+37139,2.899274e-06,Mercury,LB
+37139,0.04086116,PM10-Primary from certain diesel engines,TON
+37139,0.04013917,PM2.5 Primary (Filt + Cond),TON
+37141,1.240927,Pyrene,LB
+37141,0.7468702,Acenaphthene,LB
+37141,11684.69,Carbon Dioxide,TON
+37135,0.2835102,Methane,TON
+37135,0.5803578,Acenaphthene,LB
+37135,9.359832,Propionaldehyde,LB
+37135,2117.784,Xylenes (Mixed Isomers),LB
+37129,0.000269026,Chromium (VI),LB
+37129,0.19904656,Benzo[b]Fluoranthene,LB
+37129,1345.821,"2,2,4-Trimethylpentane",LB
+37129,0.3872509,Methane,TON
+37129,0.08323884,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,16.379692,Toluene,LB
+37127,0.002963332,Nitrate portion of PM2.5-PRI,TON
+37127,0.2334172,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.0592891,Xylenes (Mixed Isomers),LB
+37127,3.424272e-08,Chromium (VI),LB
+37127,2.588524e-05,Benzo[k]Fluoranthene,LB
+37127,0.00015709448,Acenaphthylene,LB
+37127,0.04213534,Benzene,LB
+37127,0.00019074918,Phenanthrene,LB
+37127,1.199742e-05,Nitrous Oxide,TON
+37127,4.622309e-05,Sulfur Dioxide,TON
+37119,0.1459403,"Dibenzo[a,h]Anthracene",LB
+37119,9046.112,"2,2,4-Trimethylpentane",LB
+37119,69.3066,Phenanthrene,LB
+37119,375.4589,Nitrogen Oxides,TON
+37119,220.7145,Volatile Organic Compounds,TON
+37119,6.357276,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,18.802072,Fluoranthene,LB
+37119,4.32385,Benzo[k]Fluoranthene,LB
+37115,3.350228,Styrene,LB
+37115,0.008139672,Benzo[k]Fluoranthene,LB
+37115,7.492484,Carbon Monoxide,TON
+37115,0.6361919,Elemental Carbon portion of PM2.5-PRI,TON
+37109,18.32208,Ethyl Benzene,LB
+37109,0.10417492,Benzo[b]Fluoranthene,LB
+37109,0.17820998,Manganese,LB
+37109,0.02277108,Nitrous Oxide,TON
+37109,0.5039523,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.07774082,Chrysene,LB
+37107,61.37388,Acetaldehyde,LB
+37107,1744.583,Carbon Dioxide,TON
+37097,0.0004636648,Benzo[a]Pyrene,LB
+37097,0.3406356,Acetaldehyde,LB
+37097,0.002135484,Fluorene,LB
+37097,0.000784751,PM10 Primary (Filt + Cond),TON
+37097,4.491988e-05,Sulfur Dioxide,TON
+37097,1.102616e-05,Sulfate Portion of PM2.5-PRI,TON
+37097,0.02272936,Propionaldehyde,LB
+37091,0.007314664,Pyrene,LB
+37091,3.23797e-05,"Dibenzo[a,h]Anthracene",LB
+37091,7.605632e-06,Mercury,LB
+37091,0.02394974,Phenanthrene,LB
+37091,0.0003247818,Elemental Carbon portion of PM2.5-PRI,TON
+37079,19.31135,Ethyl Benzene,LB
+37079,3.748482,"1,3-Butadiene",LB
+37079,0.13060406,Acenaphthylene,LB
+37079,25.97682,"2,2,4-Trimethylpentane",LB
+37079,0.009108484,Benz[a]Anthracene,LB
+37079,0.003120612,Elemental Carbon portion of PM2.5-PRI,TON
+37077,18.156486,Ethyl Benzene,LB
+37077,27.05576,Propionaldehyde,LB
+37077,0.0002107632,Mercury,LB
+37077,0.6264673,Elemental Carbon portion of PM2.5-PRI,TON
+37025,2.214816,Toluene,LB
+37025,2.648664,Benzene,LB
+37025,0.00189172,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.9850592,Ethyl Benzene,LB
+37145,7.859498,Toluene,LB
+37145,2.949216,"2,2,4-Trimethylpentane",LB
+37145,0.820885,Benzene,LB
+37137,0.0017395,Anthracene,LB
+37137,0.002960622,Benzo[a]Pyrene,LB
+37137,0.0014360584,Benz[a]Anthracene,LB
+37137,0.001920672,Acenaphthene,LB
+37103,0.6006238,Benzene,LB
+37089,0.13301228,Propionaldehyde,LB
+37089,0.001376691,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.002561318,Acenaphthylene,LB
+37089,3.160526e-05,"Dibenzo[a,h]Anthracene",LB
+37089,6.794318,Acetaldehyde,LB
+37089,0.0005518092,Acenaphthene,LB
+37089,0.00317171,Phenanthrene,LB
+37089,0.0011177466,Fluorene,LB
+37167,0.0016290552,Anthracene,LB
+37167,0.003242758,Pyrene,LB
+37167,0.0008678288,Benz[a]Anthracene,LB
+37167,0.001989319,Methane,TON
+37167,0.05687751,Nitrogen Oxides,TON
+37167,0.001513546,PM2.5 Primary (Filt + Cond),TON
+37021,12.479864,Ethyl Benzene,LB
+37021,19.666728,Propionaldehyde,LB
+37021,0.01007945,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.0395668,Benzo[b]Fluoranthene,LB
+37021,2.033048,Acenaphthylene,LB
+37021,0.2909284,Chrysene,LB
+37021,0.13265316,Benzo[a]Pyrene,LB
+37021,0.01615706,Arsenic,LB
+37021,0.7683869,PM10-Primary from certain diesel engines,TON
+37021,0.07521962,Ammonia,TON
+37021,0.578418,Fluorene,LB
+37021,14.837096,Naphthalene,LB
+37021,0.006689535,Sulfate Portion of PM2.5-PRI,TON
+37021,31.90628,"1,3-Butadiene",LB
+37021,5.869914,Acrolein,LB
+37005,3.594282,Xylenes (Mixed Isomers),LB
+37005,0.002612976,"Benzo[g,h,i,]Perylene",LB
+37005,0.04254746,Benzo[a]Pyrene,LB
+37005,0.00227546,Arsenic,LB
+37005,1.825522,Carbon Monoxide,TON
+37005,0.06005408,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.3207169,PM10 Primary (Filt + Cond),TON
+37061,0.05378292,"Benzo[g,h,i,]Perylene",LB
+37061,0.010761734,Benzo[b]Fluoranthene,LB
+37061,0.0007319226,Mercury,LB
+37061,0.5596696,Naphthalene,LB
+37061,0.0007128682,Sulfate Portion of PM2.5-PRI,TON
+37035,3.430985,Carbon Monoxide,TON
+37035,0.003989337,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.245966,Acrolein,LB
+37035,0.014981222,"Benzo[g,h,i,]Perylene",LB
+37035,0.005628696,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.010803718,Styrene,LB
+37023,0.000529767,Benzo[b]Fluoranthene,LB
+37023,0.0003974512,Chrysene,LB
+37023,0.0006050025,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.04290606,"1,3-Butadiene",LB
+37143,0.0002446254,Benz[a]Anthracene,LB
+37143,3.03297e-05,Mercury,LB
+37143,0.3841997,Carbon Monoxide,TON
+37143,0.0003446133,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.0002509964,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.06713216,Acenaphthylene,LB
+37017,0.1733313,Styrene,LB
+37017,0.3210426,Hexane,LB
+37017,0.006038346,Manganese,LB
+37017,0.000891161,Arsenic,LB
+37017,0.421525,Carbon Monoxide,TON
+37017,1.311443,Nitrogen Oxides,TON
+37007,3.251056,"1,3-Butadiene",LB
+37007,7.911776,Acrolein,LB
+37007,2.512086,Hexane,LB
+37007,0.0014935244,"Benzo[g,h,i,]Perylene",LB
+37007,99.94556,Formaldehyde,LB
+37007,0.000481662,"Dibenzo[a,h]Anthracene",LB
+37007,9.43185,Benzene,LB
+37007,0.002034047,Nitrous Oxide,TON
+37017,26.70284,Ethyl Benzene,LB
+37017,39.99996,Hexane,LB
+37017,0.01322246,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.2148768,Phenanthrene,LB
+37017,0.003524933,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.03157194,Nitrous Oxide,TON
+37017,0.01317017,Sulfur Dioxide,TON
+37015,6.186024,Acenaphthene,LB
+37015,1472.209,Carbon Monoxide,TON
+37015,831.0324,"1,3-Butadiene",LB
+37015,5.274318,Anthracene,LB
+37015,127.1286,Propionaldehyde,LB
+37015,13266.194,Xylenes (Mixed Isomers),LB
+37015,0.003815864,Chromium (VI),LB
+37015,1.593298,Chrysene,LB
+37181,2.642016,Formaldehyde,LB
+37181,9.081812,"2,2,4-Trimethylpentane",LB
+37181,1.6991774e-05,Mercury,LB
+37181,0.4278952,Naphthalene,LB
+37181,0.007024874,PM2.5 Primary (Filt + Cond),TON
+37181,10.312932,Hexane,LB
+37181,0.1693598,Propionaldehyde,LB
+37195,0.0003282392,Benzo[a]Pyrene,LB
+37195,4.04824e-06,Nickel,LB
+37195,0.0013394412,Fluorene,LB
+37195,0.0008094463,Methane,TON
+37191,0.010392748,Benzo[a]Pyrene,LB
+37191,0.000423525,"Dibenzo[a,h]Anthracene",LB
+37191,0.01298998,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.011128748,Ethyl Benzene,LB
+37187,7.807662e-06,"Benzo[g,h,i,]Perylene",LB
+37187,0.004138788,PM10 Primary (Filt + Cond),TON
+37191,0.014959906,Anthracene,LB
+37191,50.76536,Xylenes (Mixed Isomers),LB
+37191,0.017417466,Acenaphthene,LB
+37191,0.6119777,Nitrogen Oxides,TON
+37191,0.02243091,PM10 Primary (Filt + Cond),TON
+37181,1.1023178e-05,Chromium (VI),LB
+37181,8.190734e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,4.531672e-05,Benzo[k]Fluoranthene,LB
+37181,1.040225e-05,Mercury,LB
+37181,0.002067133,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.00147893,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,36.29934,Ethyl Benzene,LB
+37179,158.97704,Toluene,LB
+37197,4672.938,Hexane,LB
+37197,1.793724,Benzo[k]Fluoranthene,LB
+37197,1.722666,Benz[a]Anthracene,LB
+37197,4.761436,Acenaphthene,LB
+37197,1232.807,Carbon Monoxide,TON
+37197,94.58607,Volatile Organic Compounds,TON
+37195,0.5794148,Pyrene,LB
+37195,1.5730044,Acenaphthylene,LB
+37195,0.3451464,Acenaphthene,LB
+37195,0.0004554655,Nitrate portion of PM2.5-PRI,TON
+37195,4.536785,Nitrogen Oxides,TON
+37183,1.3587432,Hexane,LB
+37183,0.002050018,"Benzo[g,h,i,]Perylene",LB
+37183,0.01779975,Manganese,LB
+37183,0.14552096,Acenaphthene,LB
+37183,0.323431,Fluorene,LB
+37183,0.01496957,Ammonia,TON
+37183,0.1817129,PM10 Primary (Filt + Cond),TON
+37183,0.006231092,Sulfate Portion of PM2.5-PRI,TON
+37185,0.02059395,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,1.9324856,Fluoranthene,LB
+37185,0.2940734,Benz[a]Anthracene,LB
+37041,0.02722748,Manganese,LB
+37041,0.09288201,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.03971135,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.002535086,"Dibenzo[a,h]Anthracene",LB
+37031,20.4943,Acrolein,LB
+37031,1.5190054,Fluoranthene,LB
+37031,0.268077,Chrysene,LB
+37031,0.106799,Nickel,LB
+37031,26.29432,Nitrogen Oxides,TON
+37031,0.2035555,Organic Carbon portion of PM2.5-PRI,TON
+37029,4.6054e-06,Methane,TON
+37029,0.0718176,Carbon Dioxide,TON
+37029,7.502281e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37029,1.157895e-08,Nitrate portion of PM2.5-PRI,TON
+37029,2.1705e-06,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.004378806,Ethyl Benzene,LB
+37029,1.1080164e-09,Chromium (VI),LB
+37029,3.363976e-05,Acenaphthylene,LB
+37095,1.2581346,Ethyl Benzene,LB
+37095,4.178186,Hexane,LB
+37087,31.08644,Toluene,LB
+37087,12.02902,Hexane,LB
+37087,0.02307174,"Benzo[g,h,i,]Perylene",LB
+37087,45.64368,Benzene,LB
+37087,0.00010499376,Mercury,LB
+37087,0.5392298,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.253083,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.09657811,PM10 Primary (Filt + Cond),TON
+37087,137.76628,Formaldehyde,LB
+37087,0.6969314,Fluorene,LB
+37087,14.56909,Naphthalene,LB
+37087,6.71089,Propionaldehyde,LB
+37083,0.0002759682,Benzo[k]Fluoranthene,LB
+37083,0.02718162,PM25-Primary from certain diesel engines,TON
+37079,0.005023,Chrysene,LB
+37079,3.65666,Formaldehyde,LB
+37079,0.3444426,Benzene,LB
+37079,0.003810169,Elemental Carbon portion of PM2.5-PRI,TON
+37079,4.485498e-05,Nitrate portion of PM2.5-PRI,TON
+37079,0.1759495,Nitrogen Oxides,TON
+37079,0.02118444,Volatile Organic Compounds,TON
+37071,2.063331,Nitrogen Oxides,TON
+37071,0.06081323,PM2.5 Primary (Filt + Cond),TON
+37071,1.403735,Volatile Organic Compounds,TON
+37071,12.717588,Propionaldehyde,LB
+37071,0.001021863,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.14643458,Benz[a]Anthracene,LB
+37071,0.04637766,Nickel,LB
+37071,2.102592,Phenanthrene,LB
+37071,29.5657,Xylenes (Mixed Isomers),LB
+37071,0.03057396,"Benzo[g,h,i,]Perylene",LB
+37071,0.0002635888,"Dibenzo[a,h]Anthracene",LB
+37071,0.00011289284,Mercury,LB
+37071,0.008016583,Methane,TON
+37071,6.519989,Carbon Monoxide,TON
+37071,0.8669637,Nitrogen Oxides,TON
+37071,0.006759222,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.04096761,PM10 Primary (Filt + Cond),TON
+37071,0.01441579,PM2.5 Primary (Filt + Cond),TON
+37053,0.13597444,Acrolein,LB
+37053,1.459196e-05,Mercury,LB
+37053,1.2128612e-06,Nickel,LB
+37053,0.0001253804,Acenaphthene,LB
+37053,0.0002707872,Fluorene,LB
+37041,6.80736,Acrolein,LB
+37041,2.333164,Hexane,LB
+37041,0.2616978,Anthracene,LB
+37041,0.6979026,Pyrene,LB
+37041,93.019,Formaldehyde,LB
+37041,0.03160054,Manganese,LB
+37041,0.0008021788,Nitrate portion of PM2.5-PRI,TON
+37041,9.914994,Nitrogen Oxides,TON
+37041,0.0648565,Propionaldehyde,LB
+37041,5.814072e-06,Mercury,LB
+37041,7.249648e-05,Nickel,LB
+37041,0.003308462,Acenaphthene,LB
+37041,0.003011732,PM10 Primary (Filt + Cond),TON
+37037,0.03883324,Anthracene,LB
+37037,0.71426,Xylenes (Mixed Isomers),LB
+37037,0.0144488,Chrysene,LB
+37037,0.0003001188,"Dibenzo[a,h]Anthracene",LB
+37037,1.0439852,Benzene,LB
+37037,97.74842,Carbon Dioxide,TON
+37037,0.4915525,Nitrogen Oxides,TON
+37029,0.002960414,Chrysene,LB
+37029,10.923196,Hexane,LB
+37029,199.04,Carbon Dioxide,TON
+37023,0.00010582018,Mercury,LB
+37023,5.316349e-05,Nitrate portion of PM2.5-PRI,TON
+37023,0.000672647,Sulfate Portion of PM2.5-PRI,TON
+37199,0.02693586,Phenanthrene,LB
+37199,0.004351449,PM10 Primary (Filt + Cond),TON
+37199,0.008257724,Pyrene,LB
+37199,8.20422e-07,Chromium (VI),LB
+37199,0.00138232,Benzo[k]Fluoranthene,LB
+37199,1.542312,Formaldehyde,LB
+37185,0.1771731,Volatile Organic Compounds,TON
+37185,0.002896096,Benzo[k]Fluoranthene,LB
+37185,2.802854,"2,2,4-Trimethylpentane",LB
+37185,7.61831,Benzene,LB
+37185,0.003615416,Manganese,LB
+37185,0.0001831202,Mercury,LB
+37185,0.01841401,Ammonia,TON
+37191,3.17176e-05,Chromium (VI),LB
+37191,0.003883358,"Benzo[g,h,i,]Perylene",LB
+37191,140.31178,Formaldehyde,LB
+37191,0.005852334,Arsenic,LB
+37191,58.90764,"2,2,4-Trimethylpentane",LB
+37191,3.023991,Volatile Organic Compounds,TON
+37191,0.5733292,Styrene,LB
+37191,68.67458,Toluene,LB
+37191,0.007318516,Chrysene,LB
+37191,0.007507984,Benz[a]Anthracene,LB
+37191,0.014642992,Manganese,LB
+37191,0.1425627,Phenanthrene,LB
+37191,530.0239,Carbon Dioxide,TON
+37191,0.01243665,Nitrous Oxide,TON
+37191,0.01110923,Sulfur Dioxide,TON
+37189,0.216144,Acenaphthene,LB
+37189,0.1052116,Methane,TON
+37189,0.02295868,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,4.1871,Acrolein,LB
+37189,0.3163574,Fluoranthene,LB
+37181,22.92736,Fluorene,LB
+37181,0.01111622,Nitrate portion of PM2.5-PRI,TON
+37181,4.151723,PM2.5 Primary (Filt + Cond),TON
+37023,19.512732,Ethyl Benzene,LB
+37023,85.4582,Toluene,LB
+37023,6.347402,Xylenes (Mixed Isomers),LB
+37023,0.001413574,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,2.451074,Benzene,LB
+37023,1.4219678e-06,Mercury,LB
+37023,0.004150341,Methane,TON
+37023,0.8355523,Carbon Monoxide,TON
+37023,0.000631449,Nitrous Oxide,TON
+37023,0.06030706,Nitrogen Oxides,TON
+37095,0.17109,Styrene,LB
+37095,33.06376,Toluene,LB
+37095,0.03298326,Acenaphthylene,LB
+37095,7.301368,"2,2,4-Trimethylpentane",LB
+37095,0.0012728342,Manganese,LB
+37095,2.05226e-05,Mercury,LB
+37095,0.007249378,Acenaphthene,LB
+37095,3.121099,Carbon Monoxide,TON
+37095,6.141252e-06,Nitrate portion of PM2.5-PRI,TON
+37093,0.5522186,"1,3-Butadiene",LB
+37093,1.4841148,Xylenes (Mixed Isomers),LB
+37093,0.0008909714,"Benzo[g,h,i,]Perylene",LB
+37093,0.004489776,Benzo[b]Fluoranthene,LB
+37093,0.002504256,Nickel,LB
+37093,0.4230743,Carbon Monoxide,TON
+37093,0.1021699,Volatile Organic Compounds,TON
+37087,16.251088,"1,3-Butadiene",LB
+37087,650.0738,Hexane,LB
+37087,0.62762,Pyrene,LB
+37087,0.00141187,Mercury,LB
+37085,0.07733996,Fluoranthene,LB
+37085,0.0004806242,"Dibenzo[a,h]Anthracene",LB
+37085,139.05266,Toluene,LB
+37085,41.81142,Hexane,LB
+37085,0.05287326,Acenaphthene,LB
+37085,0.2873264,Phenanthrene,LB
+37085,0.02350087,Sulfur Dioxide,TON
+37077,2.60222,Styrene,LB
+37077,0.0013313176,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,17.633774,Benzene,LB
+37077,5.303e-05,Mercury,LB
+37077,0.1532008,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.000354167,Nitrate portion of PM2.5-PRI,TON
+37077,6.685424e-05,Nickel,LB
+37077,0.00887659,Acenaphthene,LB
+37077,0.001159248,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.1895903,Nitrogen Oxides,TON
+37077,0.00117187,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,7.14705,Hexane,LB
+37077,0.003347392,Benzo[b]Fluoranthene,LB
+37069,0.5681136,Anthracene,LB
+37069,0.16457528,Benzo[b]Fluoranthene,LB
+37069,0.16457528,Benzo[k]Fluoranthene,LB
+37069,203.2364,Formaldehyde,LB
+37069,3.614396,Phenanthrene,LB
+37069,1.350642,Fluorene,LB
+37069,34.61466,Naphthalene,LB
+37069,7582.549,Carbon Dioxide,TON
+37069,0.5103245,Ammonia,TON
+37069,1996.934,Hexane,LB
+37045,0.5728666,"Benzo[g,h,i,]Perylene",LB
+37045,936.4098,"2,2,4-Trimethylpentane",LB
+37045,0.15599908,Benz[a]Anthracene,LB
+37045,0.04257522,Manganese,LB
+37045,0.002077134,Mercury,LB
+37045,6.707895,Nitrogen Oxides,TON
+37037,0.017685608,"Benzo[g,h,i,]Perylene",LB
+37037,9.610926e-05,Mercury,LB
+37037,0.1318277,Methane,TON
+37037,7374.538,Carbon Dioxide,TON
+37037,0.412947,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.1923923,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,30.4682,Acrolein,LB
+37031,36.86366,Xylenes (Mixed Isomers),LB
+37031,0.480327,Chrysene,LB
+37031,166.39992,Acetaldehyde,LB
+37031,35.75389,Nitrogen Oxides,TON
+37031,2.763715,PM10 Primary (Filt + Cond),TON
+37031,1.657235,PM2.5 Primary (Filt + Cond),TON
+37031,0.1180721,Sulfur Dioxide,TON
+37031,303.7076,Acrolein,LB
+37031,13.807588,Anthracene,LB
+37031,329.1132,Propionaldehyde,LB
+37031,26.79424,Pyrene,LB
+37031,16.211118,Acenaphthene,LB
+37031,9.054662,Methane,TON
+37031,9.029847,Nitrous Oxide,TON
+37031,7.184339,PM2.5 Primary (Filt + Cond),TON
+37027,0.0009258674,"Benzo[g,h,i,]Perylene",LB
+37027,0.004661124,Benzo[b]Fluoranthene,LB
+37027,0.6530368,Ethyl Benzene,LB
+37027,1.5183238,Toluene,LB
+37027,0.06676636,Anthracene,LB
+37027,454.6699,Carbon Dioxide,TON
+37027,0.04916479,Elemental Carbon portion of PM2.5-PRI,TON
+37169,3179.001,Carbon Dioxide,TON
+37169,0.3010477,PM10 Primary (Filt + Cond),TON
+37169,0.5443512,Pyrene,LB
+37169,0.08384704,Chrysene,LB
+37169,0.10320254,Benzo[a]Pyrene,LB
+37169,0.002353248,"Dibenzo[a,h]Anthracene",LB
+37153,407.5818,Hexane,LB
+37153,3.253854,Propionaldehyde,LB
+37153,0.05620464,Benzo[b]Fluoranthene,LB
+37153,0.016183628,Manganese,LB
+37153,0.19589352,Acenaphthene,LB
+37151,1255.545,"2,2,4-Trimethylpentane",LB
+37151,0.17267468,Benz[a]Anthracene,LB
+37151,1.1861518,Fluorene,LB
+37151,0.6328656,"Benzo[g,h,i,]Perylene",LB
+37151,6.929246,Nitrogen Oxides,TON
+37151,0.07343175,Sulfur Dioxide,TON
+37143,0.06161888,Acrolein,LB
+37143,6.436968e-06,"Benzo[g,h,i,]Perylene",LB
+37143,2.930164e-05,Chrysene,LB
+37143,5.742918e-05,Acenaphthene,LB
+37143,0.0001681119,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.0001738936,Sulfur Dioxide,TON
+37143,0.0142383,Volatile Organic Compounds,TON
+37141,1.0325068,Acrolein,LB
+37141,0.016774848,Chrysene,LB
+37141,0.003442851,Methane,TON
+37139,0.00016673786,Fluoranthene,LB
+37139,9.782678e-07,Nickel,LB
+37139,0.1693828,Nitrogen Oxides,TON
+37135,0.018310114,Benzo[a]Pyrene,LB
+37135,2.412374,Benzene,LB
+37135,4.710756e-06,Mercury,LB
+37135,2.804914,Naphthalene,LB
+37135,1.068295,Nitrogen Oxides,TON
+37135,0.01058691,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.3741512,Styrene,LB
+37127,0.02684524,Nickel,LB
+37127,3.34914,Ethyl Benzene,LB
+37127,2.804852,"1,3-Butadiene",LB
+37127,0.8934717,Nitrogen Oxides,TON
+37127,0.01111249,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.008400502,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,8.283224,Toluene,LB
+37127,0.2287242,Anthracene,LB
+37127,8.924112,Xylenes (Mixed Isomers),LB
+37127,0.0002374622,Benzo[k]Fluoranthene,LB
+37119,6.24142,Manganese,LB
+37119,0.003315806,Mercury,LB
+37119,0.7729304,Nickel,LB
+37119,30.2145,Fluorene,LB
+37119,601.748,Naphthalene,LB
+37119,272625.5,Carbon Dioxide,TON
+37119,54.52528,Styrene,LB
+37119,0.18865638,"Benzo[g,h,i,]Perylene",LB
+37119,5.908342,Chrysene,LB
+37115,0.03175042,Benz[a]Anthracene,LB
+37115,0.06329265,PM10 Primary (Filt + Cond),TON
+37115,0.04328733,PM2.5 Primary (Filt + Cond),TON
+37115,0.01102775,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.04433016,Benzo[a]Pyrene,LB
+37115,2.057022,Acrolein,LB
+37097,0.06642508,Chrysene,LB
+37097,4.147252,Toluene,LB
+37097,0.2758709,Volatile Organic Compounds,TON
+37103,0.0011312576,"Benzo[g,h,i,]Perylene",LB
+37103,0.03348458,Chrysene,LB
+37103,0.0006195098,"Dibenzo[a,h]Anthracene",LB
+37103,4.364992,Naphthalene,LB
+37103,0.09368059,PM2.5 Primary (Filt + Cond),TON
+37103,0.6142812,Styrene,LB
+37095,1.2843466,Hexane,LB
+37095,0.0101915,Benzo[b]Fluoranthene,LB
+37095,1.342892e-05,Mercury,LB
+37095,0.1529786,Acenaphthene,LB
+37095,0.1151025,PM25-Primary from certain diesel engines,TON
+37095,0.01370765,Ammonia,TON
+37079,0.00018600576,Nickel,LB
+37079,0.00145803,Nitrous Oxide,TON
+37079,0.003741788,"Benzo[g,h,i,]Perylene",LB
+37079,0.0008968618,Benzo[k]Fluoranthene,LB
+37079,0.05190804,Styrene,LB
+37079,0.0019243468,Anthracene,LB
+37073,8.534524,Acrolein,LB
+37073,3.06773,Hexane,LB
+37073,0.05558754,Manganese,LB
+37073,0.0216542,Nickel,LB
+37073,0.11863,Methane,TON
+37073,0.5043157,PM10-Primary from certain diesel engines,TON
+37073,0.3008391,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.5888312,Volatile Organic Compounds,TON
+37073,48.10318,Acetaldehyde,LB
+37073,0.03222253,Ammonia,TON
+37073,0.009902528,Sulfur Dioxide,TON
+37073,8.326598,Toluene,LB
+37073,0.377233,Anthracene,LB
+37073,0.006121404,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,113.25618,Formaldehyde,LB
+37085,2.031808,Styrene,LB
+37085,4.720532,"1,3-Butadiene",LB
+37085,4.41314,Hexane,LB
+37085,8.029906,Propionaldehyde,LB
+37085,0.002253772,Benzo[b]Fluoranthene,LB
+37085,4.767518,"2,2,4-Trimethylpentane",LB
+37085,0.474482,Acenaphthene,LB
+37085,1.3557132,Phenanthrene,LB
+37085,0.03015829,PM10-Primary from certain diesel engines,TON
+37085,0.006645254,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.001926477,Nitrous Oxide,TON
+37085,0.01508814,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.016729242,Acenaphthene,LB
+37085,0.002996005,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.3291062,Propionaldehyde,LB
+37085,47.71232,Xylenes (Mixed Isomers),LB
+37085,4.145212e-06,Chromium (VI),LB
+37085,0.008400744,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,1070.994,"1,3-Butadiene",LB
+37083,6.237046,Anthracene,LB
+37083,18072.65,Xylenes (Mixed Isomers),LB
+37083,10.77229,Fluoranthene,LB
+37083,2.788268,Benzo[k]Fluoranthene,LB
+37083,4.2891,Benzo[a]Pyrene,LB
+37083,14.613954,Fluorene,LB
+37079,0.2659396,"1,3-Butadiene",LB
+37079,0.0006814262,Chrysene,LB
+37079,2.689242,Benzene,LB
+37079,0.0009200524,Manganese,LB
+37079,0.012612178,Phenanthrene,LB
+37079,1.428918,Carbon Monoxide,TON
+37079,3.543555e-06,Nitrate portion of PM2.5-PRI,TON
+37079,0.001062597,Sulfur Dioxide,TON
+37077,0.0903287,Benz[a]Anthracene,LB
+37077,390.0764,Benzene,LB
+37077,0.0011947424,Mercury,LB
+37077,0.0228412,Arsenic,LB
+37077,2366.91,Toluene,LB
+37077,566.3056,Hexane,LB
+37077,4.793296,Propionaldehyde,LB
+37077,0.2892322,Acenaphthene,LB
+37077,3.97263,Nitrogen Oxides,TON
+37077,0.1803855,PM10 Primary (Filt + Cond),TON
+37077,0.03202415,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,10.11467,Volatile Organic Compounds,TON
+37053,0.6484598,Pyrene,LB
+37053,7.4155,Naphthalene,LB
+37053,0.1553725,PM25-Primary from certain diesel engines,TON
+37061,2.112274,Anthracene,LB
+37061,55.20846,Xylenes (Mixed Isomers),LB
+37061,0.000304627,Chromium (VI),LB
+37061,0.02818152,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.015312374,"Dibenzo[a,h]Anthracene",LB
+37061,18.29205,"2,2,4-Trimethylpentane",LB
+37061,294.1052,Acetaldehyde,LB
+37061,25194.34,Carbon Dioxide,TON
+37061,82.66121,Nitrogen Oxides,TON
+37061,71.42142,Propionaldehyde,LB
+37061,31.37506,"2,2,4-Trimethylpentane",LB
+37061,0.2146826,Nickel,LB
+37061,143.97406,Naphthalene,LB
+37061,0.001852742,Nitrate portion of PM2.5-PRI,TON
+37051,768.2838,Acrolein,LB
+37051,34.04404,Anthracene,LB
+37051,88735.02,Xylenes (Mixed Isomers),LB
+37051,15.798316,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,40155.42,Benzene,LB
+37051,2065.306,Naphthalene,LB
+37051,695.4084,Volatile Organic Compounds,TON
+37043,8.247972,Xylenes (Mixed Isomers),LB
+37039,8.967404,Carbon Monoxide,TON
+37039,0.7673499,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.01053686,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,20.92746,Acrolein,LB
+37039,0.7605648,Anthracene,LB
+37029,0.19602368,"1,3-Butadiene",LB
+37029,3.437738,Xylenes (Mixed Isomers),LB
+37023,2.716828,Ethyl Benzene,LB
+37023,21.6765,Toluene,LB
+37017,0.005093656,Benzo[k]Fluoranthene,LB
+37017,0.0003790336,Mercury,LB
+37017,0.03734752,Ammonia,TON
+37017,0.005848202,Organic Carbon portion of PM2.5-PRI,TON
+37017,4.850972,Hexane,LB
+37017,0.0003485423,Sulfate Portion of PM2.5-PRI,TON
+37177,0.10618836,Hexane,LB
+37177,0.0221164,Propionaldehyde,LB
+37177,0.00018601844,Pyrene,LB
+37177,0.00016461674,Fluoranthene,LB
+37177,0.01184763,"1,3-Butadiene",LB
+37177,0.2952472,Benzene,LB
+37177,0.0002764128,Arsenic,LB
+37177,0.00018584994,Fluorene,LB
+37139,0.002597652,Manganese,LB
+37139,7.351748e-05,Mercury,LB
+37139,108.8261,Carbon Dioxide,TON
+37139,0.006303418,Ammonia,TON
+37139,1.8042828,Xylenes (Mixed Isomers),LB
+37139,7.333406e-06,Chromium (VI),LB
+37139,0.003771424,"Benzo[g,h,i,]Perylene",LB
+37139,1.0178708,"2,2,4-Trimethylpentane",LB
+37129,0.4359644,Propionaldehyde,LB
+37129,0.004252876,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.0016852306,Chrysene,LB
+37129,3.358834,Formaldehyde,LB
+37129,0.010148184,Manganese,LB
+37129,0.004239925,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.8863094,Toluene,LB
+37103,0.0008696798,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.0004499414,Benzo[k]Fluoranthene,LB
+37103,0.001273464,Manganese,LB
+37103,0.017255242,Naphthalene,LB
+37103,0.003229429,Methane,TON
+37087,19.519742,Toluene,LB
+37087,0.012686836,Benzo[b]Fluoranthene,LB
+37175,0.08805329,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.04370735,Sulfur Dioxide,TON
+37175,13.525232,Acrolein,LB
+37175,6.1552e-05,Chromium (VI),LB
+37175,0.006919888,"Benzo[g,h,i,]Perylene",LB
+37175,0.0333694,Benzo[b]Fluoranthene,LB
+37175,0.7616487,PM10-Primary from certain diesel engines,TON
+37175,0.7007219,PM25-Primary from certain diesel engines,TON
+37171,13.351588,Hexane,LB
+37171,28.35956,Propionaldehyde,LB
+37171,2.950188,Acenaphthylene,LB
+37171,0.5513342,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.07790762,Nickel,LB
+37171,27.90774,Carbon Monoxide,TON
+37171,0.1378233,Ammonia,TON
+37171,2.940798,Volatile Organic Compounds,TON
+37171,7.138618,Styrene,LB
+37171,13.096864,Hexane,LB
+37171,2.241994,Fluoranthene,LB
+37171,521.3634,Formaldehyde,LB
+37171,0.05583938,Benzo[a]Pyrene,LB
+37159,0.001131828,Pyrene,LB
+37159,13.125424,Acetaldehyde,LB
+37159,0.0019886722,Phenanthrene,LB
+37159,0.005275114,Ammonia,TON
+37159,4.671809e-06,Nitrate portion of PM2.5-PRI,TON
+37159,107.28028,Hexane,LB
+37159,121.83558,Xylenes (Mixed Isomers),LB
+37159,97.10938,"2,2,4-Trimethylpentane",LB
+37159,40.8777,Benzene,LB
+37155,1.321379,Propionaldehyde,LB
+37155,1.5149988,Xylenes (Mixed Isomers),LB
+37155,0.0006589258,Benzo[k]Fluoranthene,LB
+37155,0.08226612,Acenaphthene,LB
+37155,0.06170603,PM25-Primary from certain diesel engines,TON
+37155,0.009307084,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.1432995,Volatile Organic Compounds,TON
+37155,1.8114576,Ethyl Benzene,LB
+37155,0.0013931094,"Dibenzo[a,h]Anthracene",LB
+37155,5.03693,Benzene,LB
+37155,23.44308,Acetaldehyde,LB
+37155,0.1676382,Acenaphthene,LB
+37155,5.893032,Naphthalene,LB
+37155,0.2832109,PM10-Primary from certain diesel engines,TON
+37155,0.2605467,PM25-Primary from certain diesel engines,TON
+37155,0.1822205,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.001824524,Nitrous Oxide,TON
+37155,6.516064,Nitrogen Oxides,TON
+37155,0.05120948,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.0002872122,Acenaphthene,LB
+37009,3.259073e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37009,8.91158e-05,Ammonia,TON
+37009,0.0002453398,PM10 Primary (Filt + Cond),TON
+37009,0.17174594,Ethyl Benzene,LB
+37009,0.00013740764,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,263.6874,Acrolein,LB
+37001,194.10306,Xylenes (Mixed Isomers),LB
+37001,0.10100236,Benzo[b]Fluoranthene,LB
+37001,1.2109936,Chrysene,LB
+37001,2.70206,PM25-Primary from certain diesel engines,TON
+37001,19.56775,Volatile Organic Compounds,TON
+37071,0.02192384,"Benzo[g,h,i,]Perylene",LB
+37071,0.008125898,Benzo[a]Pyrene,LB
+37071,0.003665594,Benz[a]Anthracene,LB
+37071,0.2769606,Nitrogen Oxides,TON
+37071,0.02043117,Sulfur Dioxide,TON
+37013,7.619524,Hexane,LB
+37013,23.39264,Benzene,LB
+37013,0.005380136,Nickel,LB
+37013,0.003210824,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.02449747,Sulfur Dioxide,TON
+37005,0.0418947,Ethyl Benzene,LB
+37005,0.0001371963,Pyrene,LB
+37005,0.00011735718,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,6.362602e-05,Benzo[k]Fluoranthene,LB
+37005,0.1305352,Formaldehyde,LB
+37005,2.695402e-06,"Dibenzo[a,h]Anthracene",LB
+37005,9.580818e-05,Manganese,LB
+37005,3.794119e-07,Nitrate portion of PM2.5-PRI,TON
+37005,0.005975858,Nitrogen Oxides,TON
+37157,0.016998842,Pyrene,LB
+37157,0.015003176,Fluoranthene,LB
+37157,0.016646238,Manganese,LB
+37157,0.4630926,Naphthalene,LB
+37157,0.02306748,PM2.5 Primary (Filt + Cond),TON
+37157,0.0078464,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.3720118,Formaldehyde,LB
+37117,0.0005372408,Manganese,LB
+37117,0.0002460974,Nickel,LB
+37117,0.0011027248,Phenanthrene,LB
+37117,0.0004633341,Nitrous Oxide,TON
+37117,0.0131996,Volatile Organic Compounds,TON
+37095,9.80154e-05,Benzo[k]Fluoranthene,LB
+37095,0.0004371046,Acenaphthylene,LB
+37095,0.154421,Formaldehyde,LB
+37095,0.11827978,"2,2,4-Trimethylpentane",LB
+37095,0.0001372924,Nickel,LB
+37095,0.0002105096,Arsenic,LB
+37095,0.000209115,Nitrous Oxide,TON
+37095,0.0009399385,Ammonia,TON
+37095,0.000270792,PM2.5 Primary (Filt + Cond),TON
+37095,9.081648e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,8.728852e-05,Anthracene,LB
+37013,37.68256,"1,3-Butadiene",LB
+37013,0.8185496,Benz[a]Anthracene,LB
+37013,0.04001974,Arsenic,LB
+37013,123.7688,Naphthalene,LB
+37021,73.75616,Toluene,LB
+37021,0.02070226,Anthracene,LB
+37021,1.419578e-05,Chromium (VI),LB
+37021,0.011083116,Benzo[k]Fluoranthene,LB
+37021,0.10854824,Acenaphthylene,LB
+37021,0.010342388,Benz[a]Anthracene,LB
+37021,0.017334774,Manganese,LB
+37021,0.00014231196,Mercury,LB
+37021,6.807916,Acetaldehyde,LB
+37021,9.818733,Carbon Monoxide,TON
+37021,0.013079,Sulfur Dioxide,TON
+37011,0.8008336,Acenaphthylene,LB
+37011,0.0471996,Chrysene,LB
+37011,3.827494,"2,2,4-Trimethylpentane",LB
+37011,0.01945958,Nickel,LB
+37011,0.8178232,Fluorene,LB
+37011,0.1448323,PM10-Primary from certain diesel engines,TON
+37011,0.009026636,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,19.812518,Ethyl Benzene,LB
+37001,0.6406502,Styrene,LB
+37001,0.02355084,Anthracene,LB
+37001,0.0207258,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.000704701,Nickel,LB
+37001,11.27412,Carbon Monoxide,TON
+37001,0.0006531351,Sulfate Portion of PM2.5-PRI,TON
+37051,0.755176,Styrene,LB
+37051,0.05337708,Pyrene,LB
+37051,0.03630514,Benzo[k]Fluoranthene,LB
+37051,0.2525418,Methane,TON
+37051,0.1631352,Sulfur Dioxide,TON
+37047,0.4667958,Ethyl Benzene,LB
+37047,1.6743644,Xylenes (Mixed Isomers),LB
+37047,0.002090112,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.0004909197,Elemental Carbon portion of PM2.5-PRI,TON
+37047,7.404129e-06,Nitrate portion of PM2.5-PRI,TON
+37047,0.001360474,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.16312024,"1,3-Butadiene",LB
+37023,1.3972072,Hexane,LB
+37023,0.0012870462,Benz[a]Anthracene,LB
+37023,0.01288103,Ammonia,TON
+37159,6.114802,Toluene,LB
+37159,0.004479752,Pyrene,LB
+37159,0.003029308,Benzo[b]Fluoranthene,LB
+37159,2.872652,"2,2,4-Trimethylpentane",LB
+37159,7.202448,Benzene,LB
+37159,25.58138,Acetaldehyde,LB
+37159,3.522476,Carbon Monoxide,TON
+37159,2.382905e-05,Nitrate portion of PM2.5-PRI,TON
+37159,0.04349267,PM10 Primary (Filt + Cond),TON
+37111,16.799082,Toluene,LB
+37111,0.03611118,Acenaphthylene,LB
+37111,0.007318278,Benz[a]Anthracene,LB
+37111,0.009886198,Arsenic,LB
+37111,0.0657744,Methane,TON
+37111,0.02085012,PM2.5 Primary (Filt + Cond),TON
+37017,0.019341414,"1,3-Butadiene",LB
+37017,0.000556023,Pyrene,LB
+37017,2.687014e-08,Chromium (VI),LB
+37017,5.358341e-05,Sulfate Portion of PM2.5-PRI,TON
+37017,0.050704,Volatile Organic Compounds,TON
+37007,2.940466,Styrene,LB
+37007,0.7507746,Anthracene,LB
+37007,0.012543542,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.006745248,Benzo[k]Fluoranthene,LB
+37007,0.04500091,Methane,TON
+37005,1.9950546,"1,3-Butadiene",LB
+37005,1.7889312,Hexane,LB
+37005,5.94834,Xylenes (Mixed Isomers),LB
+37005,0.4129368,Fluoranthene,LB
+37005,0.06802818,Chrysene,LB
+37005,0.02071072,Manganese,LB
+37005,0.002815163,Nitrous Oxide,TON
+37005,0.05163481,Organic Carbon portion of PM2.5-PRI,TON
+37001,89.27852,Phenanthrene,LB
+37001,848.9672,Naphthalene,LB
+37001,306192.2,Carbon Dioxide,TON
+37001,0.03131925,Nitrate portion of PM2.5-PRI,TON
+37001,352.3274,Volatile Organic Compounds,TON
+37001,43491.76,Xylenes (Mixed Isomers),LB
+37001,25.73788,"Benzo[g,h,i,]Perylene",LB
+37001,6.275144,Benzo[b]Fluoranthene,LB
+37001,74.56682,Acenaphthylene,LB
+37043,0.0120242,Nitrogen Oxides,TON
+37043,0.004349608,Styrene,LB
+37043,0.00013720696,Anthracene,LB
+37043,0.3240712,Xylenes (Mixed Isomers),LB
+37043,0.2377714,Formaldehyde,LB
+37043,5.930154e-06,"Dibenzo[a,h]Anthracene",LB
+37017,737.9751,Carbon Dioxide,TON
+37017,0.1973714,PM10-Primary from certain diesel engines,TON
+37017,0.001496166,Nitrous Oxide,TON
+37017,0.04515586,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.0012930812,"Dibenzo[a,h]Anthracene",LB
+37017,0.12599404,Benz[a]Anthracene,LB
+37015,0.003426538,Ammonia,TON
+37011,0.1902494,Styrene,LB
+37011,1.0714146,Toluene,LB
+37011,0.0491054,Anthracene,LB
+37011,0.7245474,Propionaldehyde,LB
+37011,0.1431706,Pyrene,LB
+37011,4.209094e-06,Chromium (VI),LB
+37011,0.0008241382,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.07389768,Acenaphthylene,LB
+37011,0.02070362,Chrysene,LB
+37011,0.01085619,Benzo[a]Pyrene,LB
+37011,0.000885118,Arsenic,LB
+37011,0.03815678,PM10-Primary from certain diesel engines,TON
+37199,0.0004091684,Benzo[a]Pyrene,LB
+37199,0.0002558882,Nickel,LB
+37199,0.0002580524,Acenaphthene,LB
+37199,0.0001779602,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.004617228,Arsenic,LB
+37193,0.669585,Acenaphthene,LB
+37193,5.01759,Hexane,LB
+37193,1.1257742,Acenaphthylene,LB
+37193,0.4796928,PM25-Primary from certain diesel engines,TON
+37193,7.851891,Nitrogen Oxides,TON
+37193,2621.45,Acetaldehyde,LB
+37193,0.9468897,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.007072982,Chromium (VI),LB
+37193,33.10954,Acenaphthylene,LB
+37191,44.6025,Ethyl Benzene,LB
+37191,26.9886,"1,3-Butadiene",LB
+37191,5.377684,Fluoranthene,LB
+37191,0.0005471864,Mercury,LB
+37191,3.59074,PM25-Primary from certain diesel engines,TON
+37191,0.3584065,Sulfur Dioxide,TON
+37181,0.2111772,Xylenes (Mixed Isomers),LB
+37181,0.6481644,Carbon Monoxide,TON
+37181,0.003293264,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.05764233,Volatile Organic Compounds,TON
+37181,0.02165534,"1,3-Butadiene",LB
+37199,2.698638,Carbon Monoxide,TON
+37199,0.0011761,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.004920776,Nitrous Oxide,TON
+37197,8.413028,Naphthalene,LB
+37197,0.007493504,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.4220425,Volatile Organic Compounds,TON
+37197,0.3500186,Pyrene,LB
+37197,0.019534656,Chrysene,LB
+37197,0.02052438,Nickel,LB
+37195,7.153672,Pyrene,LB
+37195,0.03184154,"Benzo[g,h,i,]Perylene",LB
+37195,1.0011148,Chrysene,LB
+37195,2.085014,PM2.5 Primary (Filt + Cond),TON
+37195,0.3486034,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.09265346,Fluoranthene,LB
+37069,13.259218,Formaldehyde,LB
+37069,0.002174938,Nickel,LB
+37069,5.546288,Acetaldehyde,LB
+37069,0.003355455,Sulfate Portion of PM2.5-PRI,TON
+37067,6.156036,PM10 Primary (Filt + Cond),TON
+37067,0.07101408,"Benzo[g,h,i,]Perylene",LB
+37067,0.02105058,"Dibenzo[a,h]Anthracene",LB
+37067,0.0010554006,Mercury,LB
+37063,209.8698,Toluene,LB
+37063,7.395029,Volatile Organic Compounds,TON
+37049,0.326262,Sulfur Dioxide,TON
+37049,3.21691,PM25-Primary from certain diesel engines,TON
+37049,3.471561,PM2.5 Primary (Filt + Cond),TON
+37049,2.378214,Anthracene,LB
+37049,0.11838304,Benzo[b]Fluoranthene,LB
+37049,2.368578,Acenaphthene,LB
+37049,38579.47,Carbon Dioxide,TON
+37037,0.2674218,Benzo[a]Pyrene,LB
+37037,15.35967,"2,2,4-Trimethylpentane",LB
+37037,49.11672,Benzene,LB
+37037,2.138729,PM25-Primary from certain diesel engines,TON
+37037,1.449289,Elemental Carbon portion of PM2.5-PRI,TON
+37037,62.59065,Nitrogen Oxides,TON
+37037,3.104188,PM10 Primary (Filt + Cond),TON
+37037,40.75718,Acrolein,LB
+37035,0.003216526,"Dibenzo[a,h]Anthracene",LB
+37035,0.016988556,Arsenic,LB
+37035,87.71552,Formaldehyde,LB
+37035,5.440018,Acrolein,LB
+37035,27098.74,Ethyl Benzene,LB
+37035,1075.6406,Styrene,LB
+37035,768.8483,Volatile Organic Compounds,TON
+37035,74.79892,Pyrene,LB
+37035,99786.44,Xylenes (Mixed Isomers),LB
+37035,43.01274,"Benzo[g,h,i,]Perylene",LB
+37035,12.262786,Benzo[k]Fluoranthene,LB
+37035,4.93788,Arsenic,LB
+37035,44.98598,Acenaphthene,LB
+37035,2335.734,Naphthalene,LB
+37033,1.440074,PM10 Primary (Filt + Cond),TON
+37033,0.09432372,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.0929472,Sulfate Portion of PM2.5-PRI,TON
+37033,0.3650036,Benz[a]Anthracene,LB
+37033,33.86296,Naphthalene,LB
+37033,7.893361,Carbon Monoxide,TON
+37033,0.1782956,Ammonia,TON
+37033,0.2087598,Chrysene,LB
+37023,3.279178e-08,"Dibenzo[a,h]Anthracene",LB
+37023,7.590806e-07,Benz[a]Anthracene,LB
+37023,2.590996e-05,Acrolein,LB
+37023,1.2876512e-06,Anthracene,LB
+37023,0.0007953032,Ethyl Benzene,LB
+37023,4.235797e-09,Nitrate portion of PM2.5-PRI,TON
+37023,4.638451e-08,Sulfate Portion of PM2.5-PRI,TON
+37023,0.2549946,Manganese,LB
+37023,2.036368,Fluorene,LB
+37023,27.99166,Nitrogen Oxides,TON
+37023,0.394105,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.289838,Benzo[k]Fluoranthene,LB
+37159,1.4836534e-06,Chromium (VI),LB
+37159,0.0294547,"Benzo[g,h,i,]Perylene",LB
+37159,24.1769,Benzene,LB
+37159,0.0002843594,Arsenic,LB
+37159,0.4847587,Nitrogen Oxides,TON
+37159,0.01877599,PM10 Primary (Filt + Cond),TON
+37159,0.002571485,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.5002502,Volatile Organic Compounds,TON
+37145,0.0045249,Acenaphthene,LB
+37145,3.070652,Ethyl Benzene,LB
+37145,4.6439,Hexane,LB
+37145,0.001473106,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.001160406,Benzo[b]Fluoranthene,LB
+37145,1.4152626,Formaldehyde,LB
+37145,0.09225557,Volatile Organic Compounds,TON
+37143,7.437974e-05,Benzo[k]Fluoranthene,LB
+37143,4.365598e-07,Mercury,LB
+37143,0.015733,Volatile Organic Compounds,TON
+37139,9.166842e-05,Styrene,LB
+37139,3.292576e-06,Anthracene,LB
+37139,7.841108e-05,Propionaldehyde,LB
+37139,0.008928558,Xylenes (Mixed Isomers),LB
+37139,1.0522626e-06,Benzo[b]Fluoranthene,LB
+37139,1.0522626e-06,Benzo[k]Fluoranthene,LB
+37139,0.003085682,"2,2,4-Trimethylpentane",LB
+37139,0.001337718,Acetaldehyde,LB
+37139,3.853886e-06,Acenaphthene,LB
+37139,2.393854e-06,Nitrous Oxide,TON
+37127,0.435718,Styrene,LB
+37127,2.621428,Acrolein,LB
+37127,2.704268,Toluene,LB
+37127,1.3306618e-05,Chromium (VI),LB
+37127,0.0461407,Chrysene,LB
+37127,1045.105,Carbon Dioxide,TON
+37125,4.76293,Pyrene,LB
+37125,460.1334,Formaldehyde,LB
+37125,50.16586,Naphthalene,LB
+37125,0.006261532,Nitrate portion of PM2.5-PRI,TON
+37125,8.35134,Ethyl Benzene,LB
+37125,52.78006,Toluene,LB
+37125,0.2316676,Propionaldehyde,LB
+37125,0.02008554,Pyrene,LB
+37125,4.840962e-06,Chromium (VI),LB
+37125,13.22362,Benzene,LB
+37125,0.001070817,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.4366931,Nitrogen Oxides,TON
+37125,0.00180586,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,24.14144,"2,2,4-Trimethylpentane",LB
+37113,0.0018681592,Nickel,LB
+37113,0.15321042,Styrene,LB
+37113,0.8806354,Acrolein,LB
+37113,3.594874e-06,Chromium (VI),LB
+37113,0.000505892,"Benzo[g,h,i,]Perylene",LB
+37113,0.0006336398,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.005926806,Methane,TON
+37113,1.131095,Nitrogen Oxides,TON
+37113,0.002252862,Sulfur Dioxide,TON
+37113,2.615552,Ethyl Benzene,LB
+37113,4.444776,Propionaldehyde,LB
+37113,0.01216296,Methane,TON
+37113,658.4884,Carbon Dioxide,TON
+37113,0.009960884,Ammonia,TON
+37113,0.0005706833,Nitrate portion of PM2.5-PRI,TON
+37113,0.003169584,Sulfate Portion of PM2.5-PRI,TON
+37109,2.153248,Propionaldehyde,LB
+37109,0.1052076,"Benzo[g,h,i,]Perylene",LB
+37109,0.0299062,Benzo[b]Fluoranthene,LB
+37109,36.227,Acetaldehyde,LB
+37109,1491.372,Carbon Dioxide,TON
+37109,0.008561192,Phenanthrene,LB
+37109,0.002340842,Fluoranthene,LB
+37109,0.0005520722,Chrysene,LB
+37109,0.508247,Formaldehyde,LB
+37109,0.0009443732,Benzo[a]Pyrene,LB
+37109,1.4192722,Benzene,LB
+37109,0.02769519,Volatile Organic Compounds,TON
+37109,0.004801114,Chrysene,LB
+37097,0.1985155,Chrysene,LB
+37097,3.635674,Styrene,LB
+37097,18.287538,Toluene,LB
+37097,13.61939,Propionaldehyde,LB
+37097,0.09015522,Benzo[a]Pyrene,LB
+37097,24.4183,Benzene,LB
+37097,2.637374,Phenanthrene,LB
+37097,28.49126,Naphthalene,LB
+37097,0.03012678,Sulfur Dioxide,TON
+37099,0.000425831,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,8.029642,Formaldehyde,LB
+37099,0.005610398,Benzo[a]Pyrene,LB
+37099,0.19767764,"2,2,4-Trimethylpentane",LB
+37099,0.0271877,Acenaphthene,LB
+37099,0.11876004,Styrene,LB
+37099,0.2676102,"1,3-Butadiene",LB
+37099,0.6430328,Acrolein,LB
+37099,0.4371694,Propionaldehyde,LB
+37099,0.508301,Xylenes (Mixed Isomers),LB
+37093,201.9028,Ethyl Benzene,LB
+37093,0.07809272,Benzo[b]Fluoranthene,LB
+37093,0.0696063,Manganese,LB
+37093,0.02491154,Nickel,LB
+37093,0.03819862,Arsenic,LB
+37093,120.07174,Acetaldehyde,LB
+37093,0.2162737,Methane,TON
+37093,0.05190425,Organic Carbon portion of PM2.5-PRI,TON
+37093,5.862915,Volatile Organic Compounds,TON
+37083,0.0006840238,Fluoranthene,LB
+37083,1.8388976e-06,Mercury,LB
+37083,0.02246022,Naphthalene,LB
+37083,0.0003073448,Ammonia,TON
+37083,0.0002509093,Sulfur Dioxide,TON
+37083,0.006713642,Volatile Organic Compounds,TON
+37081,128.72286,Xylenes (Mixed Isomers),LB
+37081,83.31368,Carbon Monoxide,TON
+37081,1.240182,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.3272955,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.1699346,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.03572404,Ethyl Benzene,LB
+37077,0.04596168,Hexane,LB
+37077,0.1317285,Xylenes (Mixed Isomers),LB
+37077,0.018730756,Formaldehyde,LB
+37077,1.0892506e-06,"Dibenzo[a,h]Anthracene",LB
+37077,0.0440852,"2,2,4-Trimethylpentane",LB
+37075,0.19718428,Anthracene,LB
+37075,3.213988,Propionaldehyde,LB
+37075,0.3235884,Acenaphthylene,LB
+37075,67.40458,Formaldehyde,LB
+37075,0.00565148,Arsenic,LB
+37075,0.1925536,Acenaphthene,LB
+37075,1745.5488,Toluene,LB
+37065,0.5789952,Hexane,LB
+37065,0.014047458,Propionaldehyde,LB
+37065,0.003766936,Acenaphthylene,LB
+37065,0.277824,Formaldehyde,LB
+37065,3.948462e-05,Nickel,LB
+37065,6.054528e-05,Arsenic,LB
+37065,0.3760918,Carbon Monoxide,TON
+37065,1.37325e-06,Nitrate portion of PM2.5-PRI,TON
+37057,0.0008416048,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.4023756,"2,2,4-Trimethylpentane",LB
+37057,0.2137864,Styrene,LB
+37057,0.4865504,"1,3-Butadiene",LB
+37057,0.003107268,Manganese,LB
+37057,0.03837863,PM25-Primary from certain diesel engines,TON
+37057,0.000404672,Nitrous Oxide,TON
+37057,0.006466666,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.001184434,Sulfur Dioxide,TON
+37055,4.427166,Styrene,LB
+37055,0.0001847498,Chromium (VI),LB
+37055,175.0284,Acetaldehyde,LB
+37055,2.36541,Fluorene,LB
+37041,4.894528e-05,"Dibenzo[a,h]Anthracene",LB
+37041,0.06420538,Ethyl Benzene,LB
+37041,0.006645738,Anthracene,LB
+37041,0.0006795206,Methane,TON
+37041,0.0001119085,Sulfate Portion of PM2.5-PRI,TON
+37029,390.0792,"1,3-Butadiene",LB
+37029,0.019612732,Mercury,LB
+37029,15.286546,Phenanthrene,LB
+37029,1.225874,Nitrous Oxide,TON
+37029,0.7583281,Sulfur Dioxide,TON
+37029,0.02635389,Sulfate Portion of PM2.5-PRI,TON
+37029,46.54205,Volatile Organic Compounds,TON
+37107,0.1958648,Volatile Organic Compounds,TON
+37101,0.6792112,Ethyl Benzene,LB
+37101,0.14786036,"1,3-Butadiene",LB
+37101,0.00238702,Pyrene,LB
+37101,0.002763086,Arsenic,LB
+37101,0.06027474,Naphthalene,LB
+37093,0.0006571096,Chrysene,LB
+37093,0.002671088,Manganese,LB
+37093,120.9183,Carbon Dioxide,TON
+37093,0.0004545902,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.06441508,Hexane,LB
+37177,2.634462e-05,Benzo[b]Fluoranthene,LB
+37177,0.00012349384,Fluoranthene,LB
+37177,8.575258e-07,"Dibenzo[a,h]Anthracene",LB
+37177,8.40049e-05,Acenaphthene,LB
+37177,0.000457121,Phenanthrene,LB
+37177,0.05238211,Carbon Monoxide,TON
+37175,4.913094,Acrolein,LB
+37175,0.0010547232,Benzo[k]Fluoranthene,LB
+37175,0.05562216,Chrysene,LB
+37175,0.02585682,Benzo[a]Pyrene,LB
+37175,26.63938,Acetaldehyde,LB
+37175,2.308607,Carbon Monoxide,TON
+37175,0.07830529,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.01784095,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.0214664,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,2.782532,Fluorene,LB
+37165,18.09532,Phenanthrene,LB
+37165,1.995673,Methane,TON
+37165,6.360884,Ammonia,TON
+37165,498.9694,"1,3-Butadiene",LB
+37165,977.6156,Formaldehyde,LB
+37165,3106.106,"2,2,4-Trimethylpentane",LB
+37163,6.423836,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,95.20604,Acenaphthylene,LB
+37163,6620.532,Formaldehyde,LB
+37163,2.815638,Manganese,LB
+37163,113.39282,Phenanthrene,LB
+37163,11.4507,Methane,TON
+37163,8.742843,Nitrous Oxide,TON
+37163,0.01941146,Nitrate portion of PM2.5-PRI,TON
+37163,349.4382,Volatile Organic Compounds,TON
+37145,0.019975056,Manganese,LB
+37145,0.04280405,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.004245123,Sulfur Dioxide,TON
+37139,39.83566,Naphthalene,LB
+37139,9.620414,Carbon Monoxide,TON
+37139,2.035834,PM10 Primary (Filt + Cond),TON
+37139,0.8322876,Anthracene,LB
+37139,18.025906,Toluene,LB
+37139,1.81889,Pyrene,LB
+37139,0.2465394,Chrysene,LB
+37139,0.03871206,Nickel,LB
+37139,2.411196,Phenanthrene,LB
+37139,1.3396706,Fluorene,LB
+37139,6.893005,Carbon Monoxide,TON
+37139,0.9435841,PM10-Primary from certain diesel engines,TON
+37139,0.195005,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.00017312356,Chromium (VI),LB
+37131,0.00671772,Benzo[k]Fluoranthene,LB
+37131,0.325106,Chrysene,LB
+37131,0.006549376,"Dibenzo[a,h]Anthracene",LB
+37131,0.0002286426,Mercury,LB
+37131,49.13967,Nitrogen Oxides,TON
+37131,0.1472652,Sulfate Portion of PM2.5-PRI,TON
+37127,3195.682,Xylenes (Mixed Isomers),LB
+37127,2.169926,Fluoranthene,LB
+37127,0.3192266,Arsenic,LB
+37127,2.494605,PM10 Primary (Filt + Cond),TON
+37123,5.396488,Phenanthrene,LB
+37123,0.003746127,Nitrate portion of PM2.5-PRI,TON
+37123,2.284178,PM10 Primary (Filt + Cond),TON
+37123,0.1516423,Sulfate Portion of PM2.5-PRI,TON
+37123,2.930514,Volatile Organic Compounds,TON
+37123,92.57912,Xylenes (Mixed Isomers),LB
+37123,0.04711862,Benzo[b]Fluoranthene,LB
+37123,2.080542,Acenaphthylene,LB
+37111,0.04113438,Ethyl Benzene,LB
+37111,0.02669904,"1,3-Butadiene",LB
+37111,0.0007850162,Pyrene,LB
+37111,3.428354e-08,Chromium (VI),LB
+37111,0.000375493,Arsenic,LB
+37111,0.8278472,Carbon Monoxide,TON
+37111,0.007549109,PM2.5 Primary (Filt + Cond),TON
+37007,13.042208,Propionaldehyde,LB
+37007,0.014473932,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,1.3338098,Acenaphthylene,LB
+37007,0.6207476,Benz[a]Anthracene,LB
+37007,0.07973418,Manganese,LB
+37007,0.793534,Acenaphthene,LB
+37007,0.0721258,Ammonia,TON
+37015,6.406922,Acrolein,LB
+37015,1.8495684,Phenanthrene,LB
+37015,13.18793,Phenanthrene,LB
+37015,73.85763,Nitrogen Oxides,TON
+37015,0.04136156,Sulfate Portion of PM2.5-PRI,TON
+37015,49.66706,Acrolein,LB
+37015,2461.066,Hexane,LB
+37015,46.8494,Propionaldehyde,LB
+37015,4.087934,Pyrene,LB
+37015,0.8568174,Benzo[b]Fluoranthene,LB
+37015,1.2780276,Benzo[a]Pyrene,LB
+37015,0.035486,Mercury,LB
+37077,0.14025242,Ethyl Benzene,LB
+37077,0.02946612,"1,3-Butadiene",LB
+37077,0.0011267896,Acenaphthylene,LB
+37077,0.000255248,Chrysene,LB
+37077,1.5118312e-05,"Dibenzo[a,h]Anthracene",LB
+37077,0.3635504,Carbon Monoxide,TON
+37077,0.0006230585,Nitrous Oxide,TON
+37077,0.03069748,Nitrogen Oxides,TON
+37077,0.0002889779,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,1.5784114,Ethyl Benzene,LB
+37025,0.0740158,Styrene,LB
+37025,0.004539044,Nickel,LB
+37025,30.2398,Acetaldehyde,LB
+37025,0.005183114,Fluorene,LB
+37025,0.007345554,Nitrous Oxide,TON
+37025,0.02997387,Ammonia,TON
+37025,0.005520666,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,4.007544,Formaldehyde,LB
+37025,0.006297654,Benzo[a]Pyrene,LB
+37133,0.2482356,Acrolein,LB
+37133,0.012803438,Phenanthrene,LB
+37133,3.371699,Carbon Monoxide,TON
+37133,477.7537,Carbon Dioxide,TON
+37133,0.001552866,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.1772192,Hexane,LB
+37111,0.0009342578,Acenaphthylene,LB
+37111,0.0005185038,Benzo[a]Pyrene,LB
+37111,1.2064726e-05,"Dibenzo[a,h]Anthracene",LB
+37111,0.0002010618,Acenaphthene,LB
+37111,1.832846e-06,Nitrate portion of PM2.5-PRI,TON
+37111,0.0003338169,Organic Carbon portion of PM2.5-PRI,TON
+37111,2.131825e-05,Sulfate Portion of PM2.5-PRI,TON
+37021,193.4484,Ethyl Benzene,LB
+37021,145.79538,Hexane,LB
+37021,365.7572,Xylenes (Mixed Isomers),LB
+37021,0.7664334,Benzo[a]Pyrene,LB
+37021,0.03143376,"Dibenzo[a,h]Anthracene",LB
+37021,553.2758,Benzene,LB
+37021,53.23212,Phenanthrene,LB
+37021,3.500046,Elemental Carbon portion of PM2.5-PRI,TON
+37013,4.006564,Styrene,LB
+37013,9.07312,"1,3-Butadiene",LB
+37013,5.78794e-05,Mercury,LB
+37013,0.920156,Acenaphthene,LB
+37013,30.93888,Naphthalene,LB
+37013,1647.1,Carbon Dioxide,TON
+37013,3220.11,Ethyl Benzene,LB
+37013,20239.4,Toluene,LB
+37013,6.691612,Fluoranthene,LB
+37013,1.8606714,Benzo[a]Pyrene,LB
+37013,1667.2984,Acetaldehyde,LB
+37013,9.256848,Fluorene,LB
+37013,107.1371,Nitrogen Oxides,TON
+37011,0.07222962,Acenaphthene,LB
+37011,0.2003957,Nitrogen Oxides,TON
+37011,2.326044,Xylenes (Mixed Isomers),LB
+37011,26.6531,Formaldehyde,LB
+37005,0.3892986,Propionaldehyde,LB
+37005,0.02808216,Fluoranthene,LB
+37005,0.0016919164,Manganese,LB
+37005,0.0175166,Nitrous Oxide,TON
+37005,0.004244302,Ammonia,TON
+37005,0.002165515,Sulfur Dioxide,TON
+37021,6.084742,Toluene,LB
+37021,0.00168593,Elemental Carbon portion of PM2.5-PRI,TON
+37021,2.611312e-05,Nitrate portion of PM2.5-PRI,TON
+37021,0.005247177,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.0014095032,Manganese,LB
+37013,0.002490953,Ammonia,TON
+37009,4.9651,"1,3-Butadiene",LB
+37009,0.4107042,Anthracene,LB
+37009,0.8450266,Acenaphthylene,LB
+37009,0.015495266,Manganese,LB
+37009,3.155188e-05,Mercury,LB
+37009,0.1305589,PM2.5 Primary (Filt + Cond),TON
+37009,0.9016469,Volatile Organic Compounds,TON
+37005,85.5779,Nitrogen Oxides,TON
+37005,0.5298431,Sulfur Dioxide,TON
+37005,6.288922,Pyrene,LB
+37005,0.8926876,Benzo[k]Fluoranthene,LB
+37005,20.65006,Phenanthrene,LB
+37005,197.8962,Naphthalene,LB
+37005,2.061236,Methane,TON
+37005,0.2977703,Elemental Carbon portion of PM2.5-PRI,TON
+37001,61.14636,Formaldehyde,LB
+37001,0.8882207,Carbon Monoxide,TON
+37001,0.004145788,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.07121052,Volatile Organic Compounds,TON
+37015,0.1065724,Methane,TON
+37015,2826.923,Carbon Dioxide,TON
+37015,26.56644,Toluene,LB
+37015,0.020476,Arsenic,LB
+37199,0.01046618,"1,3-Butadiene",LB
+37199,5.111514e-07,Chromium (VI),LB
+37199,0.0003527676,Acenaphthylene,LB
+37199,5.124402e-06,Mercury,LB
+37199,0.0001703393,Nitrous Oxide,TON
+37199,0.001096202,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.9266704,Ethyl Benzene,LB
+37199,2.313736,Toluene,LB
+37199,0.1163058,Pyrene,LB
+37199,28.59588,Formaldehyde,LB
+37199,0.0134556,Benz[a]Anthracene,LB
+37199,0.004452998,Manganese,LB
+37199,0.0773366,Acenaphthene,LB
+37199,0.1325964,Fluorene,LB
+37199,0.003479847,Ammonia,TON
+37199,2.484421e-05,Nitrate portion of PM2.5-PRI,TON
+37197,5.557498,Toluene,LB
+37197,2.335566,Hexane,LB
+37197,1.3735892e-05,Mercury,LB
+37197,0.002871974,Arsenic,LB
+37197,0.6199624,Fluorene,LB
+37193,162.63284,Toluene,LB
+37193,151.39558,Xylenes (Mixed Isomers),LB
+37193,2.023394,Benz[a]Anthracene,LB
+37193,0.3255884,Nickel,LB
+37193,0.07915552,Arsenic,LB
+37193,144.5492,Carbon Monoxide,TON
+37193,0.19671082,Anthracene,LB
+37193,9.985562e-05,Benzo[k]Fluoranthene,LB
+37193,9.840906e-05,"Dibenzo[a,h]Anthracene",LB
+37193,0.2467922,Acenaphthene,LB
+37193,0.06605442,Methane,TON
+37193,6.668319e-05,Nitrate portion of PM2.5-PRI,TON
+37193,0.6733978,Nitrogen Oxides,TON
+37193,0.005260623,Organic Carbon portion of PM2.5-PRI,TON
+37195,3.800366,"1,3-Butadiene",LB
+37195,6.225912,Propionaldehyde,LB
+37195,50.57488,Acetaldehyde,LB
+37195,0.009814178,Sulfate Portion of PM2.5-PRI,TON
+37195,0.8108747,PM2.5 Primary (Filt + Cond),TON
+37195,869.034,Ethyl Benzene,LB
+37195,0.015129454,"Dibenzo[a,h]Anthracene",LB
+37191,18.753174,"1,3-Butadiene",LB
+37191,45.44376,Acrolein,LB
+37191,3.200898,Acenaphthylene,LB
+37191,571.817,Formaldehyde,LB
+37191,1.5560054,Benz[a]Anthracene,LB
+37191,0.2725526,Manganese,LB
+37191,15.91504,Carbon Monoxide,TON
+37191,2.744083,PM10-Primary from certain diesel engines,TON
+37191,2.650128,PM2.5 Primary (Filt + Cond),TON
+37191,0.3349518,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.2326226,Methane,TON
+37191,0.03035735,Nitrous Oxide,TON
+37191,5.645,Nitrogen Oxides,TON
+37191,9.124884,Acrolein,LB
+37191,2049.69,Xylenes (Mixed Isomers),LB
+37191,180.29956,Formaldehyde,LB
+37191,0.004332746,"Dibenzo[a,h]Anthracene",LB
+37191,651.4232,Benzene,LB
+37191,104.3594,Acetaldehyde,LB
+37189,28.48381,Volatile Organic Compounds,TON
+37185,11.642854,Acenaphthylene,LB
+37185,0.6203248,Manganese,LB
+37185,0.0323694,Mercury,LB
+37185,5.169986,Fluorene,LB
+37185,1.365118,Methane,TON
+37185,0.3184999,Elemental Carbon portion of PM2.5-PRI,TON
+37185,4.165798,Ammonia,TON
+37185,0.004267368,Nitrate portion of PM2.5-PRI,TON
+37185,0.4091803,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.04224283,Sulfate Portion of PM2.5-PRI,TON
+37181,0.00680374,Manganese,LB
+37181,0.07167217,PM10-Primary from certain diesel engines,TON
+37181,0.0001717847,Nitrate portion of PM2.5-PRI,TON
+37181,0.4630402,Ethyl Benzene,LB
+37181,0.4339644,"1,3-Butadiene",LB
+37181,0.0006017782,"Benzo[g,h,i,]Perylene",LB
+37179,0.6364496,Styrene,LB
+37179,0.17079486,Anthracene,LB
+37179,1.5925242e-05,Chromium (VI),LB
+37179,0.012024954,Benzo[b]Fluoranthene,LB
+37179,0.383685,Fluoranthene,LB
+37179,0.007334032,Nickel,LB
+37179,0.0007253683,Nitrate portion of PM2.5-PRI,TON
+37179,0.01257597,Sulfur Dioxide,TON
+37191,3.642748,Fluoranthene,LB
+37191,255.185,Acetaldehyde,LB
+37191,1.6393404,Acenaphthene,LB
+37191,3.54614,Fluorene,LB
+37191,0.5144314,Methane,TON
+37191,23870.85,Carbon Dioxide,TON
+37191,62.15266,Nitrogen Oxides,TON
+37191,0.2750091,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,24.4008,Benzo[b]Fluoranthene,LB
+37183,22.40498,Chrysene,LB
+37183,366.6038,Phenanthrene,LB
+37183,123.5377,Ammonia,TON
+37183,21.21984,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,1408.036,Volatile Organic Compounds,TON
+37031,26.63812,Toluene,LB
+37031,33.35927,Nitrogen Oxides,TON
+37031,0.5227562,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.04957734,Manganese,LB
+37031,30.95206,Naphthalene,LB
+37031,14.19034,Carbon Monoxide,TON
+37031,0.2896282,PM25-Primary from certain diesel engines,TON
+37031,0.007996626,Nitrous Oxide,TON
+37031,119.80956,Toluene,LB
+37031,5.198798,Anthracene,LB
+37031,10.420286,Acenaphthylene,LB
+37031,1.5278578,Benz[a]Anthracene,LB
+37031,16.779152,Phenanthrene,LB
+37029,0.01741081,Nickel,LB
+37029,0.2569244,Acenaphthene,LB
+37029,0.06732835,Methane,TON
+37029,0.3534381,PM25-Primary from certain diesel engines,TON
+37029,0.3712573,PM2.5 Primary (Filt + Cond),TON
+37029,1.1031646,Styrene,LB
+37029,6.799824,Acrolein,LB
+37029,0.003108438,"Benzo[g,h,i,]Perylene",LB
+37029,0.09636316,Chrysene,LB
+37029,0.0007566346,Benzo[k]Fluoranthene,LB
+37029,0.1557101,Volatile Organic Compounds,TON
+37029,0.0007559612,"Dibenzo[a,h]Anthracene",LB
+37029,0.18737068,Fluorene,LB
+37119,151.34624,Hexane,LB
+37119,0.06377538,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.2502642,Benzo[b]Fluoranthene,LB
+37119,0.0346074,"Dibenzo[a,h]Anthracene",LB
+37119,0.7848008,Nickel,LB
+37119,33.41908,Fluorene,LB
+37119,1.590922,Ammonia,TON
+37119,0.3392079,Sulfate Portion of PM2.5-PRI,TON
+37101,408.912,Acetaldehyde,LB
+37101,0.3221485,Methane,TON
+37101,91.20275,Nitrogen Oxides,TON
+37101,5.478587,Volatile Organic Compounds,TON
+37101,0.0002781152,Chromium (VI),LB
+37091,0.009792244,Chrysene,LB
+37091,0.22185,"1,3-Butadiene",LB
+37091,0.5576258,Acrolein,LB
+37091,8.956776e-05,Nitrate portion of PM2.5-PRI,TON
+37091,0.003709362,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.04041819,Volatile Organic Compounds,TON
+37091,0.04908078,Fluorene,LB
+37091,0.7794268,Naphthalene,LB
+37091,0.03154923,PM25-Primary from certain diesel engines,TON
+37103,0.1760633,Acenaphthene,LB
+37103,0.3566268,Fluorene,LB
+37103,46.65476,Carbon Monoxide,TON
+37103,4.172112,Styrene,LB
+37103,564.9612,Toluene,LB
+37103,0.2931936,Pyrene,LB
+37103,0.04858258,Chrysene,LB
+37099,0.21179,Styrene,LB
+37099,1.2367232,Toluene,LB
+37099,5.51942e-06,Chromium (VI),LB
+37099,0.0008882654,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.1089693,Fluorene,LB
+37099,1.618588,Nitrogen Oxides,TON
+37099,0.009272941,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,42.21494,Xylenes (Mixed Isomers),LB
+37093,6.545326,"1,3-Butadiene",LB
+37093,0.03186424,Arsenic,LB
+37093,2.816848,Phenanthrene,LB
+37093,1.177555,PM10-Primary from certain diesel engines,TON
+37093,0.6712839,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.002766077,Nitrate portion of PM2.5-PRI,TON
+37093,11.417854,Propionaldehyde,LB
+37091,3.276236,Benzene,LB
+37091,0.002829488,Acenaphthene,LB
+37091,0.1469154,Naphthalene,LB
+37091,0.001545425,Nitrous Oxide,TON
+37091,0.0006434468,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.002419726,Anthracene,LB
+37091,5.327668,Xylenes (Mixed Isomers),LB
+37071,11.062248,Toluene,LB
+37071,0.004435764,Anthracene,LB
+37071,0.011353774,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.000260477,"Dibenzo[a,h]Anthracene",LB
+37071,0.009537688,Fluorene,LB
+37069,0.2003928,Styrene,LB
+37069,0.007828754,Anthracene,LB
+37069,6.390736e-05,"Dibenzo[a,h]Anthracene",LB
+37069,4.794696,"2,2,4-Trimethylpentane",LB
+37069,2.8915,Acetaldehyde,LB
+37069,0.0006775075,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.2764747,Nitrogen Oxides,TON
+37069,0.001857049,Organic Carbon portion of PM2.5-PRI,TON
+37067,82.51782,Propionaldehyde,LB
+37067,7.160664,Pyrene,LB
+37067,19.438426,Acenaphthylene,LB
+37067,4342.688,Benzene,LB
+37067,1.5315894,Manganese,LB
+37067,0.636964,Nickel,LB
+37061,284.0156,Ethyl Benzene,LB
+37061,0.02165216,Manganese,LB
+37061,68.14708,Acetaldehyde,LB
+37061,0.2929426,Ammonia,TON
+37061,0.1371064,PM2.5 Primary (Filt + Cond),TON
+37061,8.637322,Volatile Organic Compounds,TON
+37057,34.46896,Ethyl Benzene,LB
+37039,8.729945e-06,Nitrous Oxide,TON
+37039,0.005746506,Acetaldehyde,LB
+37039,0.013324552,Hexane,LB
+37043,0.002203306,Styrene,LB
+37043,0.0018207898,Propionaldehyde,LB
+37043,2.411638e-08,Chromium (VI),LB
+37043,0.00014013184,Fluoranthene,LB
+37043,0.03091824,Formaldehyde,LB
+37043,4.98311e-05,Benzo[a]Pyrene,LB
+37043,0.004909214,Naphthalene,LB
+37041,2.130324,Acrolein,LB
+37041,0.08510252,Anthracene,LB
+37041,0.000788234,Arsenic,LB
+37027,17.71488,Styrene,LB
+37027,1.085992,Fluoranthene,LB
+37027,3.409536,Acenaphthylene,LB
+37027,0.2341792,Benzo[a]Pyrene,LB
+37027,0.18266576,Manganese,LB
+37027,4.061044,Phenanthrene,LB
+37027,38.88836,Naphthalene,LB
+37027,8726.145,Carbon Dioxide,TON
+37027,0.06620572,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.0007603871,Nitrate portion of PM2.5-PRI,TON
+37027,0.1327204,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.06032036,Benz[a]Anthracene,LB
+37023,0.015542872,Manganese,LB
+37023,0.1436973,Volatile Organic Compounds,TON
+37023,0.6622046,Hexane,LB
+37023,2.045714,Xylenes (Mixed Isomers),LB
+37023,0.0007638518,Benzo[k]Fluoranthene,LB
+37197,3.673382,Propionaldehyde,LB
+37197,0.2209126,Acenaphthene,LB
+37197,0.02473392,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,8.440484e-07,Nickel,LB
+37195,3.576251e-05,Nitrous Oxide,TON
+37195,1.179042e-07,Nitrate portion of PM2.5-PRI,TON
+37195,2.21419e-05,Organic Carbon portion of PM2.5-PRI,TON
+37195,5.612128e-05,Anthracene,LB
+37195,0.14584102,Xylenes (Mixed Isomers),LB
+37195,0.00010990412,"Benzo[g,h,i,]Perylene",LB
+37195,9.713324e-05,Fluoranthene,LB
+37195,9.476988e-07,"Dibenzo[a,h]Anthracene",LB
+37195,121.41416,Propionaldehyde,LB
+37195,4.271286,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,13.056584,Fluorene,LB
+37195,3.991744,Methane,TON
+37195,1965.945,Carbon Monoxide,TON
+37195,3.276454,Nitrous Oxide,TON
+37195,2.556001,Organic Carbon portion of PM2.5-PRI,TON
+37195,5.427418,PM2.5 Primary (Filt + Cond),TON
+37195,137.2945,Volatile Organic Compounds,TON
+37191,0.0127698,Pyrene,LB
+37191,5.463668e-06,Chromium (VI),LB
+37191,0.011207058,Fluoranthene,LB
+37191,0.03413752,Acenaphthylene,LB
+37191,2.39286,Acetaldehyde,LB
+37191,0.0180247,PM10 Primary (Filt + Cond),TON
+37191,0.15220546,Acrolein,LB
+37187,0.4867522,Naphthalene,LB
+37187,0.002172087,Methane,TON
+37187,0.02942797,PM10 Primary (Filt + Cond),TON
+37187,0.002094569,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.0008859093,Sulfate Portion of PM2.5-PRI,TON
+37183,0.0006117896,Chromium (VI),LB
+37183,0.11725858,Arsenic,LB
+37183,1.065026,PM10 Primary (Filt + Cond),TON
+37183,2750.414,Nitrogen Oxides,TON
+37183,26.01662,Organic Carbon portion of PM2.5-PRI,TON
+37179,3.422752,Anthracene,LB
+37179,54.22004,Propionaldehyde,LB
+37179,0.0538208,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,1.3604488,Chrysene,LB
+37179,0.02931044,"Dibenzo[a,h]Anthracene",LB
+37179,7.965852,PM10 Primary (Filt + Cond),TON
+37167,5.623664,Ethyl Benzene,LB
+37167,1.6949266,Pyrene,LB
+37167,2.048984,Phenanthrene,LB
+37167,0.1460009,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.0010247898,Fluorene,LB
+37165,4.465525,Carbon Dioxide,TON
+37165,7.176588e-05,Nitrous Oxide,TON
+37165,0.0003199601,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.012198018,Styrene,LB
+37163,0.0259235,Manganese,LB
+37163,0.3513644,Acenaphthene,LB
+37163,7.780678,Styrene,LB
+37163,2281,Toluene,LB
+37163,0.3992384,"Benzo[g,h,i,]Perylene",LB
+37163,0.1071718,Benzo[k]Fluoranthene,LB
+37163,133.78094,Formaldehyde,LB
+37163,0.10648424,Benz[a]Anthracene,LB
+37161,652.941,Hexane,LB
+37161,0.4662496,Fluoranthene,LB
+37161,119.7709,Formaldehyde,LB
+37161,1.7326498,Phenanthrene,LB
+37161,79.52296,Carbon Monoxide,TON
+37161,0.0003625559,Nitrate portion of PM2.5-PRI,TON
+37161,0.06921485,Organic Carbon portion of PM2.5-PRI,TON
+37153,6.844614,Propionaldehyde,LB
+37153,8.596578,Xylenes (Mixed Isomers),LB
+37153,1.1537038,Phenanthrene,LB
+37153,0.141408,PM10-Primary from certain diesel engines,TON
+37153,0.1353698,PM2.5 Primary (Filt + Cond),TON
+37139,9.397098,Benzene,LB
+37139,10.953576,Naphthalene,LB
+37139,0.04052151,Methane,TON
+37139,1.967635,Nitrogen Oxides,TON
+37139,0.5561856,Pyrene,LB
+37129,1137.0206,Formaldehyde,LB
+37129,0.7545738,Benzo[a]Pyrene,LB
+37129,95.98162,Benzene,LB
+37129,6.49042,Fluorene,LB
+37129,0.01365014,Nitrate portion of PM2.5-PRI,TON
+37129,5.473001,Volatile Organic Compounds,TON
+37131,0.008160441,Nitrous Oxide,TON
+37131,0.9678452,PM10 Primary (Filt + Cond),TON
+37131,1.3666932,Acenaphthylene,LB
+37127,6.737114,Xylenes (Mixed Isomers),LB
+37127,2.185724,"2,2,4-Trimethylpentane",LB
+37127,34.59722,Acetaldehyde,LB
+37123,2.839374,Styrene,LB
+37123,1039.7408,Toluene,LB
+37123,0.2149182,Pyrene,LB
+37123,533.9544,Xylenes (Mixed Isomers),LB
+37123,0.01831468,Sulfur Dioxide,TON
+37093,0.0001845656,Arsenic,LB
+37093,0.005511754,PM10 Primary (Filt + Cond),TON
+37093,0.001314973,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.0011443346,Benzo[k]Fluoranthene,LB
+37093,0.001212191,Chrysene,LB
+37085,4.593776,Toluene,LB
+37085,2.255572e-05,Mercury,LB
+37085,0.0007643176,Nitrate portion of PM2.5-PRI,TON
+37085,0.1568728,PM2.5 Primary (Filt + Cond),TON
+37073,7.223314e-05,Manganese,LB
+37073,1.356468e-05,Arsenic,LB
+37073,0.0001053696,PM2.5 Primary (Filt + Cond),TON
+37073,0.004410502,Styrene,LB
+37073,0.00477917,Acrolein,LB
+37085,0.15248122,Ethyl Benzene,LB
+37085,0.5647108,Xylenes (Mixed Isomers),LB
+37085,1.222818e-07,Mercury,LB
+37085,9.736013e-05,PM2.5 Primary (Filt + Cond),TON
+37199,5.594641,Nitrogen Oxides,TON
+37199,0.08606643,PM2.5 Primary (Filt + Cond),TON
+37199,0.0612132,Benzo[b]Fluoranthene,LB
+37199,234.827,Benzene,LB
+37195,18.343662,Xylenes (Mixed Isomers),LB
+37195,0.009856512,Benzo[a]Pyrene,LB
+37195,0.005256131,Methane,TON
+37195,4.339158,Carbon Monoxide,TON
+37195,26.7632,Benzene,LB
+37195,13.76626,Carbon Monoxide,TON
+37191,106.36968,Toluene,LB
+37191,1613.7682,Formaldehyde,LB
+37191,0.05474762,Sulfate Portion of PM2.5-PRI,TON
+37181,28.47318,Xylenes (Mixed Isomers),LB
+37181,0.0001473194,Chromium (VI),LB
+37181,2.287564,Fluoranthene,LB
+37181,0.06877382,Nickel,LB
+37181,0.0333929,Arsenic,LB
+37181,1.659084,PM10-Primary from certain diesel engines,TON
+37181,0.00354445,Nitrate portion of PM2.5-PRI,TON
+37173,2.988588,"1,3-Butadiene",LB
+37173,89.78544,Toluene,LB
+37173,0.005088287,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,68.86642,Phenanthrene,LB
+37113,2.042688,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.1036855,Sulfate Portion of PM2.5-PRI,TON
+37113,20.99884,Pyrene,LB
+37113,27039.82,Xylenes (Mixed Isomers),LB
+37113,3.081688,Benzo[b]Fluoranthene,LB
+37113,18.396334,Fluoranthene,LB
+37101,139.42184,Toluene,LB
+37101,0.05161436,"Benzo[g,h,i,]Perylene",LB
+37101,0.2416064,Benzo[b]Fluoranthene,LB
+37101,143.401,Benzene,LB
+37101,0.6977451,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,8.300383,Volatile Organic Compounds,TON
+37105,30.33682,Ethyl Benzene,LB
+37105,0.04388552,Anthracene,LB
+37105,16.21366,Formaldehyde,LB
+37105,36.91102,"2,2,4-Trimethylpentane",LB
+37105,55.34882,Benzene,LB
+37105,0.005609392,Arsenic,LB
+37105,0.001182277,Sulfate Portion of PM2.5-PRI,TON
+37103,0.00011921266,Acenaphthene,LB
+37103,0.0006544236,Phenanthrene,LB
+37103,0.0002414842,Fluorene,LB
+37103,1.512214e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.002255752,Propionaldehyde,LB
+37103,4.561916e-08,Chromium (VI),LB
+37103,5.580446e-05,Benzo[b]Fluoranthene,LB
+37103,4.573438e-07,Mercury,LB
+37097,9.972588,Acenaphthylene,LB
+37097,11.910946,Phenanthrene,LB
+37097,4.43218,Fluorene,LB
+37097,582.4977,Carbon Monoxide,TON
+37097,2.892005,Ammonia,TON
+37093,4.879882e-05,Chromium (VI),LB
+37093,0.0568991,Methane,TON
+37093,5.832271,Carbon Monoxide,TON
+37093,1.376772,PM10 Primary (Filt + Cond),TON
+37093,0.02721153,Sulfur Dioxide,TON
+37093,3.526886,Styrene,LB
+37093,6.024782e-05,Chromium (VI),LB
+37093,0.0438106,Chrysene,LB
+37093,0.05889326,Benzo[a]Pyrene,LB
+37093,0.32535,Fluorene,LB
+37093,0.07897197,Methane,TON
+37087,0.8464308,Acrolein,LB
+37087,0.6853226,Xylenes (Mixed Isomers),LB
+37087,0.002215112,Manganese,LB
+37087,0.12689162,Phenanthrene,LB
+37087,0.07488584,Fluorene,LB
+37087,0.2021384,Carbon Monoxide,TON
+37087,105.0713,Carbon Dioxide,TON
+37087,0.0120484,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.0007257784,Sulfate Portion of PM2.5-PRI,TON
+37085,4.102344,Fluorene,LB
+37085,53.25976,Nitrogen Oxides,TON
+37085,0.06817034,Sulfate Portion of PM2.5-PRI,TON
+37085,0.03449208,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.018588904,Benzo[k]Fluoranthene,LB
+37085,0.018549924,"Dibenzo[a,h]Anthracene",LB
+37085,0.248879,Manganese,LB
+37085,0.0827067,Nickel,LB
+37081,0.02439964,"Benzo[g,h,i,]Perylene",LB
+37081,0.02518356,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,4.945798,Acenaphthylene,LB
+37081,84.8932,Benzene,LB
+37077,0.02987732,Fluorene,LB
+37077,0.002504783,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.006365494,Ammonia,TON
+37077,0.0005110108,Sulfate Portion of PM2.5-PRI,TON
+37077,0.013072862,Anthracene,LB
+37077,0.02633086,Pyrene,LB
+37077,0.009311206,Benzo[b]Fluoranthene,LB
+37077,0.009311206,Benzo[k]Fluoranthene,LB
+37077,0.007656682,Chrysene,LB
+37077,4.816416,Formaldehyde,LB
+37067,2.046724,Anthracene,LB
+37067,3.894984,Fluoranthene,LB
+37067,0.9952518,Benz[a]Anthracene,LB
+37067,286.3046,Acetaldehyde,LB
+37067,2.160922,Acenaphthene,LB
+37067,6.872778,Phenanthrene,LB
+37067,21.57011,Carbon Monoxide,TON
+37067,1.292647,PM25-Primary from certain diesel engines,TON
+37067,0.004626352,Nitrate portion of PM2.5-PRI,TON
+37067,0.23334,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,6.925756,Toluene,LB
+37065,0.004927866,"Benzo[g,h,i,]Perylene",LB
+37065,0.00618948,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,103.03174,Formaldehyde,LB
+37065,0.2659518,Benz[a]Anthracene,LB
+37065,0.748265,Fluorene,LB
+37065,0.001439943,Nitrate portion of PM2.5-PRI,TON
+37065,4.278609,Nitrogen Oxides,TON
+37065,0.3706233,PM10 Primary (Filt + Cond),TON
+37065,0.5980496,Volatile Organic Compounds,TON
+37065,0.0965152,Nickel,LB
+37065,1.394469,PM10 Primary (Filt + Cond),TON
+37065,0.01274033,Sulfate Portion of PM2.5-PRI,TON
+37065,22.87864,Styrene,LB
+37061,0.00795411,Acrolein,LB
+37061,0.0007330222,Pyrene,LB
+37061,0.0002030968,Benzo[b]Fluoranthene,LB
+37061,0.0019328696,Acenaphthylene,LB
+37061,1.3980918e-06,Mercury,LB
+37061,0.02164124,Nitrogen Oxides,TON
+37061,0.0001826701,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.02820848,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.371323,Benzo[a]Pyrene,LB
+37057,3.490662,Benz[a]Anthracene,LB
+37057,0.7091224,Nickel,LB
+37057,2189.766,Acetaldehyde,LB
+37057,4.025552,PM25-Primary from certain diesel engines,TON
+37057,29.79276,Volatile Organic Compounds,TON
+37055,155.55218,"1,3-Butadiene",LB
+37055,854.552,Hexane,LB
+37055,0.2887764,Benzo[k]Fluoranthene,LB
+37055,351.3022,Formaldehyde,LB
+37039,4.88965e-05,Nitrate portion of PM2.5-PRI,TON
+37039,0.001646526,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.12489236,"1,3-Butadiene",LB
+37039,0.000214592,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.0001617894,Arsenic,LB
+37041,1.669456,Hexane,LB
+37041,0.3437698,Pyrene,LB
+37041,0.2138126,Acenaphthene,LB
+37041,0.5744048,Phenanthrene,LB
+37171,32.99632,Benzene,LB
+37167,0.00986224,Pyrene,LB
+37167,14.93379,Xylenes (Mixed Isomers),LB
+37167,0.004289595,Nitrous Oxide,TON
+37167,0.005113932,Ammonia,TON
+37167,0.002986765,PM2.5 Primary (Filt + Cond),TON
+37165,0.0010669168,Arsenic,LB
+37165,0.001383627,PM25-Primary from certain diesel engines,TON
+37165,0.001783457,Ammonia,TON
+37165,0.0007147726,Sulfur Dioxide,TON
+37165,0.20489,Hexane,LB
+37165,0.3489084,Propionaldehyde,LB
+37163,0.0004630584,Acenaphthylene,LB
+37163,0.0003052866,Arsenic,LB
+37163,0.003195295,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,56.10018,Toluene,LB
+37151,0.000346492,Mercury,LB
+37151,0.04317662,Nitrous Oxide,TON
+37151,85.95548,Toluene,LB
+37151,0.0262959,Benzo[k]Fluoranthene,LB
+37151,0.02621922,"Dibenzo[a,h]Anthracene",LB
+37151,2.12242,Benz[a]Anthracene,LB
+37137,0.0024145,Chrysene,LB
+37137,2.929478,Formaldehyde,LB
+37137,4.021698e-06,Mercury,LB
+37137,0.18836,Nitrogen Oxides,TON
+37137,0.0006367723,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.7905576,Styrene,LB
+37133,4.971992,Acrolein,LB
+37133,0.04795668,Benzo[a]Pyrene,LB
+37133,0.005684712,Arsenic,LB
+37133,0.18462728,Acenaphthene,LB
+37133,1.545763,Carbon Monoxide,TON
+37133,996.8744,Carbon Dioxide,TON
+37133,0.002660262,Nitrous Oxide,TON
+37133,0.09691294,Manganese,LB
+37133,0.03617346,Nickel,LB
+37133,0.1545151,Methane,TON
+37133,2627.521,Carbon Dioxide,TON
+37133,0.004154599,Nitrate portion of PM2.5-PRI,TON
+37133,0.017892298,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,317.4056,Formaldehyde,LB
+37115,0.9547952,Propionaldehyde,LB
+37115,0.0003179062,Acenaphthylene,LB
+37115,0.0002110294,Arsenic,LB
+37115,0.3153738,Methane,TON
+37115,0.00961174,Nitrous Oxide,TON
+37115,0.002263925,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.3301788,Styrene,LB
+37115,0.0015896106,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,10.566758,Acetaldehyde,LB
+37115,0.0007537412,Nitrous Oxide,TON
+37115,0.02953161,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.01951434,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.012804766,Benzo[k]Fluoranthene,LB
+37115,0.06964486,Fluorene,LB
+37115,4.632366,"1,3-Butadiene",LB
+37115,0.004641512,Elemental Carbon portion of PM2.5-PRI,TON
+37115,1.244562,Nitrogen Oxides,TON
+37115,0.008858581,Sulfur Dioxide,TON
+37103,0.4719242,Acrolein,LB
+37103,0.4365748,Xylenes (Mixed Isomers),LB
+37103,0.00017372488,Benzo[k]Fluoranthene,LB
+37103,0.002863551,Methane,TON
+37103,0.1949161,Carbon Monoxide,TON
+37103,0.02838311,PM25-Primary from certain diesel engines,TON
+37103,0.01915205,Elemental Carbon portion of PM2.5-PRI,TON
+37099,780.8946,Xylenes (Mixed Isomers),LB
+37099,0.2355618,"Benzo[g,h,i,]Perylene",LB
+37099,0.9681268,Acenaphthylene,LB
+37099,11.034486,Naphthalene,LB
+37099,0.18528,Ammonia,TON
+37099,2.918579,Nitrogen Oxides,TON
+37099,0.002686423,Sulfate Portion of PM2.5-PRI,TON
+37095,0.0002492788,Manganese,LB
+37077,3.092364,Hexane,LB
+37077,0.8811746,Fluorene,LB
+37077,851.2487,Carbon Dioxide,TON
+37075,0.2299454,Acenaphthene,LB
+37075,8.330668,Naphthalene,LB
+37075,1.925151,Carbon Monoxide,TON
+37075,721.1542,Carbon Dioxide,TON
+37075,0.1584248,PM25-Primary from certain diesel engines,TON
+37075,0.0008526265,Nitrate portion of PM2.5-PRI,TON
+37075,0.06730041,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.006186812,Sulfur Dioxide,TON
+37075,0.548385,Anthracene,LB
+37075,12.268512,Propionaldehyde,LB
+37075,2.910356,Acenaphthylene,LB
+37075,0.19521,Chrysene,LB
+37075,550.0582,"2,2,4-Trimethylpentane",LB
+37075,0.3375105,PM2.5 Primary (Filt + Cond),TON
+37065,86.58262,Acetaldehyde,LB
+37065,0.3046433,PM10 Primary (Filt + Cond),TON
+37065,0.008611591,Sulfate Portion of PM2.5-PRI,TON
+37065,3.193508e-07,Arsenic,LB
+37065,6.634552e-06,Methane,TON
+37065,0.005160418,Carbon Monoxide,TON
+37065,4.777385e-06,Nitrous Oxide,TON
+37065,1.275531e-05,PM10 Primary (Filt + Cond),TON
+37065,0.0002471532,Styrene,LB
+37065,4.19778e-06,Chrysene,LB
+37065,7.8657e-06,Benzo[a]Pyrene,LB
+37065,4.512072e-06,Benz[a]Anthracene,LB
+37061,0.06833354,Acenaphthene,LB
+37053,0.3799504,"Benzo[g,h,i,]Perylene",LB
+37053,285.9966,"2,2,4-Trimethylpentane",LB
+37053,0.003516336,Mercury,LB
+37053,6341.104,Carbon Dioxide,TON
+37053,0.08313947,Organic Carbon portion of PM2.5-PRI,TON
+37053,6.960947,Volatile Organic Compounds,TON
+37051,0.004572494,"Dibenzo[a,h]Anthracene",LB
+37051,4.262892,"2,2,4-Trimethylpentane",LB
+37051,0.012613972,Arsenic,LB
+37051,16.299488,Naphthalene,LB
+37051,0.02143091,Sulfur Dioxide,TON
+37049,2.458196e-05,Benzo[a]Pyrene,LB
+37049,0.03030886,Benzene,LB
+37049,0.0005106224,Styrene,LB
+37049,3781.888,Toluene,LB
+37049,845.5124,"2,2,4-Trimethylpentane",LB
+37049,557.5514,Benzene,LB
+37049,0.02416416,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.02709719,Nitrous Oxide,TON
+37049,0.04267774,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.0547142,Sulfur Dioxide,TON
+37173,3.296099,Methane,TON
+37173,3407.698,Ethyl Benzene,LB
+37173,5.089618,Anthracene,LB
+37173,12515.932,Xylenes (Mixed Isomers),LB
+37173,0.003430548,Chromium (VI),LB
+37173,2.171882,Benzo[a]Pyrene,LB
+37169,9.844508,Ethyl Benzene,LB
+37169,0.2452868,Propionaldehyde,LB
+37169,0.0549059,Acenaphthylene,LB
+37169,0.006665456,Benzo[a]Pyrene,LB
+37169,2.15178e-05,Mercury,LB
+37169,0.01055241,Methane,TON
+37169,5.226274,Carbon Monoxide,TON
+37169,0.00128114,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.003607067,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.0001970278,Sulfate Portion of PM2.5-PRI,TON
+37161,112.80272,Xylenes (Mixed Isomers),LB
+37161,0.012350308,Benzo[k]Fluoranthene,LB
+37161,0.2890956,Benzo[a]Pyrene,LB
+37161,1.775492,Acenaphthene,LB
+37161,28695.73,Carbon Dioxide,TON
+37161,0.4341362,Ammonia,TON
+37161,74.8583,Nitrogen Oxides,TON
+37155,101.93442,Acrolein,LB
+37155,3.022088,Benz[a]Anthracene,LB
+37155,0.0005272438,Mercury,LB
+37155,0.2229964,Nickel,LB
+37155,0.04379894,Nitrous Oxide,TON
+37163,0.05783458,Pyrene,LB
+37163,0.01036635,Benzo[b]Fluoranthene,LB
+37163,0.01036635,Benzo[k]Fluoranthene,LB
+37163,0.010014518,Chrysene,LB
+37163,0.0003300692,"Dibenzo[a,h]Anthracene",LB
+37163,0.0015987074,Nickel,LB
+37163,11.323404,Acetaldehyde,LB
+37163,0.01827121,Ammonia,TON
+37163,0.01459083,Sulfur Dioxide,TON
+37161,0.006993592,Benzo[k]Fluoranthene,LB
+37161,0.006967668,"Dibenzo[a,h]Anthracene",LB
+37161,60.97178,"1,3-Butadiene",LB
+37161,99.14361,Carbon Monoxide,TON
+37161,0.293445,Ammonia,TON
+37155,5520.554,Toluene,LB
+37155,3.062078,Acenaphthylene,LB
+37155,253.7148,Formaldehyde,LB
+37155,1227.7806,"2,2,4-Trimethylpentane",LB
+37155,0.07482026,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.09411301,Sulfur Dioxide,TON
+37155,0.008978175,Sulfate Portion of PM2.5-PRI,TON
+37153,6.679806,Xylenes (Mixed Isomers),LB
+37153,2.060986e-05,Chromium (VI),LB
+37153,0.003522708,Benzo[k]Fluoranthene,LB
+37151,2.431386,Fluorene,LB
+37151,11.041184,Hexane,LB
+37151,2.353132,Acenaphthylene,LB
+37151,0.06166314,Nickel,LB
+37151,1.3998304,Acenaphthene,LB
+37135,133.11562,Ethyl Benzene,LB
+37135,465.5012,Toluene,LB
+37135,6.373278,Anthracene,LB
+37135,133.83846,Propionaldehyde,LB
+37135,12.419452,Fluoranthene,LB
+37135,0.03743834,"Dibenzo[a,h]Anthracene",LB
+37135,0.2264066,Arsenic,LB
+37135,388.8648,Naphthalene,LB
+37135,1.355685,Ammonia,TON
+37135,0.02228428,Nitrate portion of PM2.5-PRI,TON
+37135,8.275562,PM2.5 Primary (Filt + Cond),TON
+37131,9.320174,Benzene,LB
+37117,2.559432,"1,3-Butadiene",LB
+37117,77.0966,Formaldehyde,LB
+37019,2.257112,Styrene,LB
+37019,0.03273015,PM10-Primary from certain diesel engines,TON
+37019,0.0002135175,Nitrate portion of PM2.5-PRI,TON
+37019,1.502282,Nitrogen Oxides,TON
+37019,0.006270329,Sulfate Portion of PM2.5-PRI,TON
+37003,0.009403532,Fluorene,LB
+37003,4.229855e-06,Nitrate portion of PM2.5-PRI,TON
+37003,0.000612561,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,4.016686e-05,Sulfate Portion of PM2.5-PRI,TON
+37003,0.10920522,Styrene,LB
+37003,19.646516,Toluene,LB
+37003,0.001259134,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.00015678442,Nickel,LB
+37003,1.5378532,Acetaldehyde,LB
+37001,74.86088,Acrolein,LB
+37001,46.62308,Propionaldehyde,LB
+37001,0.03735944,"Benzo[g,h,i,]Perylene",LB
+37001,0.6074288,Benzo[a]Pyrene,LB
+37001,28.47742,"2,2,4-Trimethylpentane",LB
+37001,0.6623204,Manganese,LB
+37001,0.0004693354,Mercury,LB
+37001,0.1590066,Nickel,LB
+37001,0.01083497,Nitrate portion of PM2.5-PRI,TON
+37001,6.925125,PM10 Primary (Filt + Cond),TON
+37015,0.001487627,Nitrous Oxide,TON
+37015,5.69823e-06,Nitrate portion of PM2.5-PRI,TON
+37015,0.1691928,Propionaldehyde,LB
+37015,0.0015837444,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.000631894,Chrysene,LB
+37015,0.8607422,"2,2,4-Trimethylpentane",LB
+37015,0.0007167974,Benz[a]Anthracene,LB
+37015,0.002082308,Manganese,LB
+37015,0.001863866,Arsenic,LB
+37003,4.796868,"2,2,4-Trimethylpentane",LB
+37003,0.00017215086,Mercury,LB
+37003,0.004257312,Anthracene,LB
+37003,0.00261031,Chrysene,LB
+37003,0.0002238834,Sulfate Portion of PM2.5-PRI,TON
+37143,0.08200342,Hexane,LB
+37143,9.51812e-05,Nickel,LB
+37143,0.0001459498,Arsenic,LB
+37143,6.687515e-06,Sulfate Portion of PM2.5-PRI,TON
+37125,10.70792,Carbon Monoxide,TON
+37125,0.2620504,Styrene,LB
+37125,21.65758,Toluene,LB
+37125,0.012534578,Arsenic,LB
+37109,0.002090654,Phenanthrene,LB
+37109,0.01914862,Naphthalene,LB
+37109,2.799365e-06,Nitrate portion of PM2.5-PRI,TON
+37109,3.191369e-05,Sulfate Portion of PM2.5-PRI,TON
+37109,0.0003416416,Anthracene,LB
+37109,0.7655552,Xylenes (Mixed Isomers),LB
+37109,0.0003170372,Chrysene,LB
+37109,1.0336074,Benzene,LB
+37099,0.0012159266,Benzo[a]Pyrene,LB
+37099,2.82836e-05,"Dibenzo[a,h]Anthracene",LB
+37099,0.0010743078,Fluorene,LB
+37099,6.066353e-05,Sulfate Portion of PM2.5-PRI,TON
+37099,0.003279514,"Benzo[g,h,i,]Perylene",LB
+37099,0.0012321578,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,3.518494,Phenanthrene,LB
+37013,0.2065629,Methane,TON
+37013,0.8386343,Elemental Carbon portion of PM2.5-PRI,TON
+37013,1.880388,PM10 Primary (Filt + Cond),TON
+37013,3.993568,Styrene,LB
+37013,0.011723922,"Benzo[g,h,i,]Perylene",LB
+37013,0.6288012,Benz[a]Anthracene,LB
+37007,0.5857232,Toluene,LB
+37007,0.03336924,Pyrene,LB
+37007,2.63408e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.03646988,Acenaphthylene,LB
+37007,3.173624,Acetaldehyde,LB
+37009,0.735517,Pyrene,LB
+37009,0.5630656,Fluoranthene,LB
+37009,0.09577382,Chrysene,LB
+37009,0.04810866,Benzo[a]Pyrene,LB
+37009,0.007630152,Nickel,LB
+37009,0.1696231,PM2.5 Primary (Filt + Cond),TON
+37003,2.526286,Propionaldehyde,LB
+37003,4.452432,Benzene,LB
+37003,0.01615174,Methane,TON
+37001,1.3099748,Acrolein,LB
+37001,0.12137482,Fluorene,LB
+37057,0.019859786,Acenaphthene,LB
+37057,0.02534447,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.1464131,PM10 Primary (Filt + Cond),TON
+37057,2.008258,Acrolein,LB
+37057,0.018470708,Anthracene,LB
+37057,40.26524,Xylenes (Mixed Isomers),LB
+37057,0.11262002,"Benzo[g,h,i,]Perylene",LB
+37057,0.0417671,Benzo[a]Pyrene,LB
+37057,0.0009712698,"Dibenzo[a,h]Anthracene",LB
+37057,20.4139,"2,2,4-Trimethylpentane",LB
+37041,0.04641252,Acrolein,LB
+37041,0.0003599668,Benzo[b]Fluoranthene,LB
+37041,0.511755,"2,2,4-Trimethylpentane",LB
+37041,0.000660931,Arsenic,LB
+37041,0.02170432,Naphthalene,LB
+37041,0.0009097422,PM2.5 Primary (Filt + Cond),TON
+37007,0.08596658,"1,3-Butadiene",LB
+37007,0.06687488,Acrolein,LB
+37007,0.14944302,Propionaldehyde,LB
+37007,0.0010433058,Nickel,LB
+37007,0.003539106,Phenanthrene,LB
+37007,0.005570907,Methane,TON
+37007,115.8783,Carbon Dioxide,TON
+37003,4.397862,Toluene,LB
+37003,1.3094364e-05,Chromium (VI),LB
+37003,0.3556442,Fluorene,LB
+37003,0.01087428,Ammonia,TON
+37003,1.115483,Nitrogen Oxides,TON
+37003,0.0743055,PM10 Primary (Filt + Cond),TON
+37003,63.83234,Formaldehyde,LB
+37003,0.007039422,Nickel,LB
+37003,0.5605782,Phenanthrene,LB
+37007,54.84906,Propionaldehyde,LB
+37007,0.9304786,Benz[a]Anthracene,LB
+37007,1.150879,Sulfur Dioxide,TON
+37007,59.42991,Volatile Organic Compounds,TON
+37007,26.54556,Ethyl Benzene,LB
+37007,0.7747214,Acrolein,LB
+37007,0.013012934,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.002113526,Nickel,LB
+37007,0.08120898,Fluorene,LB
+37007,17.2066,Carbon Monoxide,TON
+37007,0.01334046,Sulfur Dioxide,TON
+37007,0.0004645189,Sulfate Portion of PM2.5-PRI,TON
+37019,0.5890518,Anthracene,LB
+37019,4.366668e-05,Chromium (VI),LB
+37019,1.121816,Fluoranthene,LB
+37019,0.02422954,Nickel,LB
+37019,1.1946122,Fluorene,LB
+37019,0.01638334,Sulfate Portion of PM2.5-PRI,TON
+37019,1.084396,Volatile Organic Compounds,TON
+37013,8.629638,Benzene,LB
+37013,0.0005367734,Elemental Carbon portion of PM2.5-PRI,TON
+37013,2.274446,Formaldehyde,LB
+37005,0.0044731,"Benzo[g,h,i,]Perylene",LB
+37005,0.02206282,Acenaphthylene,LB
+37005,0.0012920488,Chrysene,LB
+37005,1.5929016,Acetaldehyde,LB
+37005,0.07202632,Nitrogen Oxides,TON
+37005,0.002200889,PM10 Primary (Filt + Cond),TON
+37199,1.08037,Acetaldehyde,LB
+37199,0.005552165,PM25-Primary from certain diesel engines,TON
+37199,0.007509408,PM10 Primary (Filt + Cond),TON
+37191,1.0113818,Benzene,LB
+37191,0.0599328,Ethyl Benzene,LB
+37191,3.113322e-05,Mercury,LB
+37191,0.0005952344,Arsenic,LB
+37191,1.748354,Nitrogen Oxides,TON
+37191,0.03985344,PM2.5 Primary (Filt + Cond),TON
+37191,0.3745817,Volatile Organic Compounds,TON
+37189,0.0322229,"Benzo[g,h,i,]Perylene",LB
+37189,7.98751,Carbon Monoxide,TON
+37189,0.006477979,Nitrous Oxide,TON
+37137,0.0019055368,"Benzo[g,h,i,]Perylene",LB
+37137,5.231646e-06,Mercury,LB
+37137,0.01349126,Phenanthrene,LB
+37137,0.0008688545,PM2.5 Primary (Filt + Cond),TON
+37137,0.0004364772,Sulfur Dioxide,TON
+37127,8.299752,Acenaphthene,LB
+37127,16.811822,Fluorene,LB
+37127,1.345555,Elemental Carbon portion of PM2.5-PRI,TON
+37127,238.8099,Nitrogen Oxides,TON
+37127,7.688371,PM2.5 Primary (Filt + Cond),TON
+37127,0.2184427,Sulfate Portion of PM2.5-PRI,TON
+37127,37.90846,Acenaphthylene,LB
+37111,1.7730798,Acrolein,LB
+37111,0.2128096,Pyrene,LB
+37111,0.5823356,"2,2,4-Trimethylpentane",LB
+37111,0.004526772,Nickel,LB
+37111,0.0002584289,Nitrate portion of PM2.5-PRI,TON
+37111,0.1148567,PM2.5 Primary (Filt + Cond),TON
+37111,21.11464,Toluene,LB
+37111,0.011172814,Benzo[k]Fluoranthene,LB
+37111,0.014518044,Arsenic,LB
+37119,0.15286178,Anthracene,LB
+37119,77.32614,"2,2,4-Trimethylpentane",LB
+37119,0.17832526,Acenaphthene,LB
+37119,0.01567603,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.08511499,Ammonia,TON
+37119,0.06903113,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.004575702,Nitrous Oxide,TON
+37113,1.344542,Volatile Organic Compounds,TON
+37113,5.444504,"2,2,4-Trimethylpentane",LB
+37113,0.008885904,Arsenic,LB
+37113,98.90256,Acetaldehyde,LB
+37113,14.139458,Toluene,LB
+37109,164.57658,Xylenes (Mixed Isomers),LB
+37109,2757.758,Formaldehyde,LB
+37109,2.042682,Benz[a]Anthracene,LB
+37109,14855.55,Carbon Dioxide,TON
+37109,3.026315,PM10 Primary (Filt + Cond),TON
+37107,29.8042,Acrolein,LB
+37107,35.21548,Xylenes (Mixed Isomers),LB
+37107,1.690933,PM10-Primary from certain diesel engines,TON
+37107,0.208974,Ammonia,TON
+37107,0.004170984,Nitrate portion of PM2.5-PRI,TON
+37107,0.1046311,Sulfate Portion of PM2.5-PRI,TON
+37103,0.005423908,Manganese,LB
+37103,0.018415218,Acenaphthene,LB
+37103,0.000336782,Sulfate Portion of PM2.5-PRI,TON
+37103,0.3614054,Propionaldehyde,LB
+37103,16.016692,"2,2,4-Trimethylpentane",LB
+37103,0.006460726,Benz[a]Anthracene,LB
+37103,80.41914,Ethyl Benzene,LB
+37103,0.068314,Anthracene,LB
+37103,0.00406162,Nitrous Oxide,TON
+37103,9.534872e-05,Nitrate portion of PM2.5-PRI,TON
+37103,0.008338148,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,1602.5834,Hexane,LB
+37099,31.59737,Volatile Organic Compounds,TON
+37095,6.629936,"1,3-Butadiene",LB
+37095,0.002542842,"Benzo[g,h,i,]Perylene",LB
+37095,21.76274,Naphthalene,LB
+37095,0.1658235,PM2.5 Primary (Filt + Cond),TON
+37083,0.02748806,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.10783,Benzo[b]Fluoranthene,LB
+37083,17.82089,"2,2,4-Trimethylpentane",LB
+37083,0.068573,Arsenic,LB
+37083,2.005954,Acenaphthene,LB
+37083,20.9066,"1,3-Butadiene",LB
+37083,680.6908,Formaldehyde,LB
+37083,1.582875,Benz[a]Anthracene,LB
+37083,0.0002323326,Mercury,LB
+37083,0.8607143,Elemental Carbon portion of PM2.5-PRI,TON
+37083,2.606691,PM10 Primary (Filt + Cond),TON
+37087,2.378186,Propionaldehyde,LB
+37087,0.19133244,Fluoranthene,LB
+37087,0.12371,Benzo[a]Pyrene,LB
+37087,0.03995138,Manganese,LB
+37087,52.66676,Carbon Monoxide,TON
+37087,0.07521192,Nitrous Oxide,TON
+37087,0.09231151,Ammonia,TON
+37083,0.233564,Benzo[b]Fluoranthene,LB
+37083,1.6173244,Fluorene,LB
+37083,0.07332863,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.3804456,Nitrous Oxide,TON
+37083,0.0009691336,Nitrate portion of PM2.5-PRI,TON
+37083,0.3609275,PM2.5 Primary (Filt + Cond),TON
+37071,0.2640933,Ammonia,TON
+37071,122.6262,Nitrogen Oxides,TON
+37071,107.42708,Acrolein,LB
+37071,11.613182,Fluoranthene,LB
+37071,0.04885648,Benzo[k]Fluoranthene,LB
+37071,2.26828,Chrysene,LB
+37071,1.1956494,Benzo[a]Pyrene,LB
+37071,3.843672,Benz[a]Anthracene,LB
+37071,38322.06,Toluene,LB
+37069,0.5256598,"1,3-Butadiene",LB
+37069,0.0012103054,Benz[a]Anthracene,LB
+37069,5.895845e-06,Nitrate portion of PM2.5-PRI,TON
+37055,0.0013530718,"Benzo[g,h,i,]Perylene",LB
+37055,0.000935013,"Dibenzo[a,h]Anthracene",LB
+37055,0.003866588,Nickel,LB
+37055,0.1537465,Volatile Organic Compounds,TON
+37051,75.45544,Benzene,LB
+37051,0.01003532,Sulfur Dioxide,TON
+37051,7.199124,Xylenes (Mixed Isomers),LB
+37051,0.005796244,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,5.010066,Benzene,LB
+37051,0.001699873,Nitrous Oxide,TON
+37039,2.57851,Ethyl Benzene,LB
+37039,1.1175898,Styrene,LB
+37039,0.10993004,Chrysene,LB
+37039,3.197264,Nitrogen Oxides,TON
+37039,0.03251677,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.003844181,Sulfate Portion of PM2.5-PRI,TON
+37041,0.02303515,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.002934585,Ammonia,TON
+37041,0.001765649,Sulfur Dioxide,TON
+37041,1.1491768,Xylenes (Mixed Isomers),LB
+37041,0.001731653,Benzo[b]Fluoranthene,LB
+37041,0.0239789,Benz[a]Anthracene,LB
+37041,3.156092e-06,Mercury,LB
+37037,0.03170112,Phenanthrene,LB
+37037,0.004055461,Methane,TON
+37037,0.002885522,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.0001791214,Sulfate Portion of PM2.5-PRI,TON
+37037,0.2266511,Sulfur Dioxide,TON
+37037,0.19048762,Chrysene,LB
+37037,0.006095008,Mercury,LB
+37031,0.78465,"1,3-Butadiene",LB
+37031,0.002594668,Benzo[k]Fluoranthene,LB
+37031,7.348492e-05,"Dibenzo[a,h]Anthracene",LB
+37031,12.599944,Benzene,LB
+37031,0.007546632,Manganese,LB
+37031,0.010554842,Acenaphthene,LB
+37031,208.6254,Carbon Dioxide,TON
+37031,0.004452681,Nitrous Oxide,TON
+37031,0.3597089,Nitrogen Oxides,TON
+37031,0.0035898,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.0002758532,Arsenic,LB
+37029,0.01686132,PM10-Primary from certain diesel engines,TON
+37029,0.00995974,Elemental Carbon portion of PM2.5-PRI,TON
+37029,4.376979e-05,Nitrate portion of PM2.5-PRI,TON
+37029,0.02566534,Fluoranthene,LB
+37029,0.018206942,Acenaphthylene,LB
+37029,0.002483238,Benzo[a]Pyrene,LB
+37029,0.0008069668,Sulfate Portion of PM2.5-PRI,TON
+37029,0.01978127,Volatile Organic Compounds,TON
+37029,2.62587,Styrene,LB
+37029,0.18537946,Pyrene,LB
+37029,0.000890384,Mercury,LB
+37029,0.011102038,Nickel,LB
+37029,38.43212,Acetaldehyde,LB
+37029,26.51948,Carbon Monoxide,TON
+37029,0.1075877,Ammonia,TON
+37029,0.033415,Sulfur Dioxide,TON
+37029,0.001157433,Sulfate Portion of PM2.5-PRI,TON
+37029,1.85887,Volatile Organic Compounds,TON
+37025,1.072359,PM2.5 Primary (Filt + Cond),TON
+37025,6308.92,Toluene,LB
+37025,36.74904,Propionaldehyde,LB
+37025,0.5458222,Benzo[k]Fluoranthene,LB
+37025,572.3152,Formaldehyde,LB
+37023,1.5639746,Hexane,LB
+37023,0.4768274,Fluoranthene,LB
+37023,0.002040104,Benzo[k]Fluoranthene,LB
+37023,0.0498354,Benzo[a]Pyrene,LB
+37023,1.624491,"2,2,4-Trimethylpentane",LB
+37023,0.1633756,PM25-Primary from certain diesel engines,TON
+37023,0.174638,PM2.5 Primary (Filt + Cond),TON
+37169,0.018459212,Styrene,LB
+37169,0.15382336,Propionaldehyde,LB
+37169,0.0010665544,Fluoranthene,LB
+37169,0.0015508268,Manganese,LB
+37169,0.0006381548,Acenaphthene,LB
+37107,0.002378702,Acenaphthylene,LB
+37107,0.0005702212,Benz[a]Anthracene,LB
+37107,5.682922e-05,Mercury,LB
+37107,0.002945278,Phenanthrene,LB
+37107,0.02675986,Naphthalene,LB
+37175,0.03863108,"2,2,4-Trimethylpentane",LB
+37175,0.01595118,Acetaldehyde,LB
+37175,0.002402834,Naphthalene,LB
+37175,3.949744e-05,Anthracene,LB
+37171,17.74014,"1,3-Butadiene",LB
+37171,0.18722272,Benzo[a]Pyrene,LB
+37171,0.04737193,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.05807231,Sulfur Dioxide,TON
+37171,14.17102,Volatile Organic Compounds,TON
+37161,14.077996,Ethyl Benzene,LB
+37161,10.87839,Hexane,LB
+37161,0.00017563594,Chromium (VI),LB
+37161,2.550214,Fluorene,LB
+37161,1.115229,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.3631464,Organic Carbon portion of PM2.5-PRI,TON
+37161,1.78509,PM2.5 Primary (Filt + Cond),TON
+37159,0.204329,PM10 Primary (Filt + Cond),TON
+37159,0.2432924,Pyrene,LB
+37159,4.410444e-05,Chromium (VI),LB
+37159,0.066716,Benzo[a]Pyrene,LB
+37159,0.0084529,Arsenic,LB
+37159,47.73772,Acetaldehyde,LB
+37159,0.113236,Nitrous Oxide,TON
+37161,1.3523316,Arsenic,LB
+37161,10.51399,PM10 Primary (Filt + Cond),TON
+37155,4273.356,"1,3-Butadiene",LB
+37155,10378.9,Formaldehyde,LB
+37155,0.307835,"Dibenzo[a,h]Anthracene",LB
+37155,5.71853,Manganese,LB
+37155,0.2276906,Mercury,LB
+37155,9169.934,Carbon Monoxide,TON
+37153,0.006192054,Manganese,LB
+37153,0.009231068,Anthracene,LB
+37153,257.2898,Carbon Dioxide,TON
+37153,0.004912181,Nitrous Oxide,TON
+37153,0.0002523848,Sulfate Portion of PM2.5-PRI,TON
+37151,3.567538,"1,3-Butadiene",LB
+37151,0.4604118,Propionaldehyde,LB
+37151,0.01849539,Methane,TON
+37151,18.74892,Carbon Monoxide,TON
+37007,62.34564,Naphthalene,LB
+37007,557.8348,Formaldehyde,LB
+37007,0.002135222,"Dibenzo[a,h]Anthracene",LB
+37007,0.0001147359,Mercury,LB
+37019,10.648656,"1,3-Butadiene",LB
+37019,2.667202,Fluoranthene,LB
+37019,0.5122478,Chrysene,LB
+37019,0.8704274,Benz[a]Anthracene,LB
+37019,0.0920536,Manganese,LB
+37019,5.497778e-05,Mercury,LB
+37019,0.1121105,Methane,TON
+37019,13.32882,Nitrogen Oxides,TON
+37019,1.228581,PM10 Primary (Filt + Cond),TON
+37019,1.896798,Volatile Organic Compounds,TON
+37011,1.4408684,Ethyl Benzene,LB
+37011,7.792538e-05,Manganese,LB
+37011,0.012591864,Phenanthrene,LB
+37009,0.0144524,Sulfate Portion of PM2.5-PRI,TON
+37009,0.9943999,Volatile Organic Compounds,TON
+37009,5.629356,"1,3-Butadiene",LB
+37009,10.32938,Xylenes (Mixed Isomers),LB
+37009,4.36024e-05,Chromium (VI),LB
+37009,0.00526924,Benzo[k]Fluoranthene,LB
+37009,4.086664,"2,2,4-Trimethylpentane",LB
+37009,15.997842,Benzene,LB
+37009,0.8106287,PM10-Primary from certain diesel engines,TON
+37003,3.61523,Formaldehyde,LB
+37003,4.31938e-05,Nickel,LB
+37003,3.621244,Acetaldehyde,LB
+37003,0.06082254,Phenanthrene,LB
+37003,0.003193652,Nitrous Oxide,TON
+37003,0.00410358,PM2.5 Primary (Filt + Cond),TON
+37003,0.0003195793,Sulfur Dioxide,TON
+37003,0.220648,Volatile Organic Compounds,TON
+37085,7.302604e-05,Mercury,LB
+37085,0.0007765662,Acenaphthene,LB
+37085,0.001143825,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.4558298,Ethyl Benzene,LB
+37085,0.02246278,Styrene,LB
+37085,0.003597204,Acenaphthylene,LB
+37067,29.18952,"2,2,4-Trimethylpentane",LB
+37061,0.001789711,Benzo[b]Fluoranthene,LB
+37061,0.01716782,Ammonia,TON
+37199,0.000324213,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.0012726582,Benzo[b]Fluoranthene,LB
+37199,0.01412956,Benz[a]Anthracene,LB
+37199,1.9686406e-06,Mercury,LB
+37199,0.0010620524,Nickel,LB
+37199,0.6291867,Nitrogen Oxides,TON
+37199,0.02786933,PM2.5 Primary (Filt + Cond),TON
+37199,0.003116542,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,3.198977e-06,Methane,TON
+37199,0.001842289,Carbon Monoxide,TON
+37199,5.461064e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,5.309874e-08,"Dibenzo[a,h]Anthracene",LB
+37193,0.1818411,Ethyl Benzene,LB
+37193,0.0006046262,Pyrene,LB
+37193,0.02886457,Nitrogen Oxides,TON
+37193,0.0003730348,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.0003221201,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.02086908,Volatile Organic Compounds,TON
+37193,0.009066442,Chromium (VI),LB
+37193,18.893222,"Benzo[g,h,i,]Perylene",LB
+37193,7096.952,Formaldehyde,LB
+37193,22.5553,Acenaphthene,LB
+37193,122.2922,Phenanthrene,LB
+37193,17.40073,PM10 Primary (Filt + Cond),TON
+37185,0.000200881,Anthracene,LB
+37185,0.0010396548,Acenaphthylene,LB
+37185,9.694324e-07,Mercury,LB
+37185,0.06508132,Acetaldehyde,LB
+37185,3.904788e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.0003937773,PM10 Primary (Filt + Cond),TON
+37185,0.0001299368,Sulfur Dioxide,TON
+37185,7.552541e-06,Sulfate Portion of PM2.5-PRI,TON
+37187,3.297438,Benzene,LB
+37187,0.00431895,Manganese,LB
+37187,0.000903947,Benzo[b]Fluoranthene,LB
+37187,35.10534,Formaldehyde,LB
+37187,0.00012510662,"Dibenzo[a,h]Anthracene",LB
+37187,0.1962912,Fluorene,LB
+37187,3.842288,Naphthalene,LB
+37187,2.189791,Carbon Monoxide,TON
+37187,0.0006487851,Nitrous Oxide,TON
+37187,0.00015372074,Arsenic,LB
+37187,1.292579,Carbon Monoxide,TON
+37187,0.0009124533,Sulfur Dioxide,TON
+37187,3.798791e-05,Sulfate Portion of PM2.5-PRI,TON
+37187,0.001750778,Anthracene,LB
+37187,0.003423048,Pyrene,LB
+37179,0.002803034,Benzo[b]Fluoranthene,LB
+37179,0.011242746,Acenaphthylene,LB
+37179,0.002139956,Chrysene,LB
+37179,0.00012259552,"Dibenzo[a,h]Anthracene",LB
+37179,2.331284e-05,Nitrate portion of PM2.5-PRI,TON
+37179,0.1900376,Nitrogen Oxides,TON
+37179,0.004671633,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.2037183,Volatile Organic Compounds,TON
+37177,3.238628e-10,Chromium (VI),LB
+37177,3.591542e-08,"Dibenzo[a,h]Anthracene",LB
+37177,0.0024785,Benzene,LB
+37177,6.207482e-08,Arsenic,LB
+37177,0.000811988,Acetaldehyde,LB
+37177,0.0003260136,"1,3-Butadiene",LB
+37177,4.58728e-05,Acrolein,LB
+37187,9.732554,Xylenes (Mixed Isomers),LB
+37187,0.005484452,"Benzo[g,h,i,]Perylene",LB
+37187,0.2952622,Benz[a]Anthracene,LB
+37187,0.02003646,Nickel,LB
+37187,3.085149,Carbon Monoxide,TON
+37187,0.4618689,PM10 Primary (Filt + Cond),TON
+37183,17.570326,Hexane,LB
+37183,0.05984729,PM2.5 Primary (Filt + Cond),TON
+37177,0.0006383884,Benzo[a]Pyrene,LB
+37193,1936.529,Ethyl Benzene,LB
+37181,4.441364,Xylenes (Mixed Isomers),LB
+37181,0.1001666,Volatile Organic Compounds,TON
+37023,7.679388,Toluene,LB
+37023,2.92793,Hexane,LB
+37023,0.09709562,Chrysene,LB
+37023,4.402592,Carbon Monoxide,TON
+37023,0.01233399,Sulfur Dioxide,TON
+37173,4.588166,Hexane,LB
+37173,8.863712,Propionaldehyde,LB
+37173,7.635272e-05,Chromium (VI),LB
+37173,0.007394404,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.8970202,Acenaphthylene,LB
+37173,0.09721292,Benzo[a]Pyrene,LB
+37173,0.3344168,Benz[a]Anthracene,LB
+37173,0.06022442,Manganese,LB
+37173,0.01730662,Arsenic,LB
+37173,0.811743,PM10-Primary from certain diesel engines,TON
+37173,0.7467509,PM25-Primary from certain diesel engines,TON
+37173,0.05269651,Sulfur Dioxide,TON
+37167,2.443742,Fluoranthene,LB
+37167,0.009146906,Benzo[k]Fluoranthene,LB
+37167,4.278296,Phenanthrene,LB
+37167,0.9767411,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.2105203,Ammonia,TON
+37167,1.596148,PM2.5 Primary (Filt + Cond),TON
+37167,0.1009427,Sulfate Portion of PM2.5-PRI,TON
+37139,4.332564e-05,Nickel,LB
+37139,6.194884e-05,Sulfate Portion of PM2.5-PRI,TON
+37131,0.22115,Acrolein,LB
+37131,0.04318844,Acenaphthylene,LB
+37131,3.921608e-05,Mercury,LB
+37131,0.0004889608,Nickel,LB
+37131,0.05165166,Phenanthrene,LB
+37131,0.005650505,Ammonia,TON
+37131,0.00308159,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.002497246,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.00452837,Sulfur Dioxide,TON
+37125,0.1843118,Methane,TON
+37125,0.01298176,Nitrous Oxide,TON
+37125,0.5507984,PM10 Primary (Filt + Cond),TON
+37125,1.233906,Volatile Organic Compounds,TON
+37125,6.488248,"1,3-Butadiene",LB
+37125,3.007646e-05,Chromium (VI),LB
+37113,8.631674,"1,3-Butadiene",LB
+37113,14.399124,Propionaldehyde,LB
+37113,0.01498942,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.08352624,Manganese,LB
+37113,0.1672338,Methane,TON
+37113,11.29666,Nitrogen Oxides,TON
+37109,2.042992,Benzene,LB
+37109,9.581618,Acetaldehyde,LB
+37109,0.0010180358,"Benzo[g,h,i,]Perylene",LB
+37109,0.01577616,Methane,TON
+37109,0.1164997,PM2.5 Primary (Filt + Cond),TON
+37105,0.0008013156,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,16.26978,Formaldehyde,LB
+37105,0.05040828,Anthracene,LB
+37105,0.14374182,Pyrene,LB
+37105,1.4480026,Benzene,LB
+37105,0.04541412,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.13482524,Anthracene,LB
+37097,2.028912,Propionaldehyde,LB
+37097,0.8877598,"2,2,4-Trimethylpentane",LB
+37097,3.51822,Benzene,LB
+37097,1.559774,Nitrogen Oxides,TON
+37097,0.002366984,Sulfur Dioxide,TON
+37095,0.13493284,Acrolein,LB
+37095,0.12605108,Toluene,LB
+37095,5.04978e-05,Benzo[k]Fluoranthene,LB
+37095,0.0008909944,Methane,TON
+37095,0.06676979,Carbon Monoxide,TON
+37095,0.009777391,Volatile Organic Compounds,TON
+37089,8.463458,Propionaldehyde,LB
+37089,0.14770536,Benzo[b]Fluoranthene,LB
+37089,0.14770536,Benzo[k]Fluoranthene,LB
+37089,118.41502,Acetaldehyde,LB
+37079,6.100232,Naphthalene,LB
+37079,0.8052714,Styrene,LB
+37079,0.2003416,Anthracene,LB
+37087,69.40386,Volatile Organic Compounds,TON
+37075,0.01768436,Methane,TON
+37075,1.8955016,"1,3-Butadiene",LB
+37075,0.7540664,Acrolein,LB
+37075,0.0332852,Anthracene,LB
+37075,0.011434814,Benzo[k]Fluoranthene,LB
+37075,14.36271,Formaldehyde,LB
+37075,0.015744142,Benzo[a]Pyrene,LB
+37075,0.0003605426,"Dibenzo[a,h]Anthracene",LB
+37059,15.363408,"1,3-Butadiene",LB
+37059,509.5706,Formaldehyde,LB
+37059,0.3479916,Benzo[a]Pyrene,LB
+37059,1.1481744,Benz[a]Anthracene,LB
+37059,54.53696,Naphthalene,LB
+37059,0.006117302,Nitrate portion of PM2.5-PRI,TON
+37059,1.848692,PM10 Primary (Filt + Cond),TON
+37059,0.2187982,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,9.72774e-05,Nitrous Oxide,TON
+37065,2.857052e-05,Ammonia,TON
+37065,1.960214e-05,Sulfur Dioxide,TON
+37065,4.493629e-06,Sulfate Portion of PM2.5-PRI,TON
+37065,0.010663882,Styrene,LB
+37065,0.0003762678,Anthracene,LB
+37065,0.14206416,Formaldehyde,LB
+37065,0.355392,"2,2,4-Trimethylpentane",LB
+37059,141.8267,Carbon Monoxide,TON
+37059,0.00672724,Sulfate Portion of PM2.5-PRI,TON
+37059,0.5980758,"Benzo[g,h,i,]Perylene",LB
+37059,0.2247058,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.1732161,Benz[a]Anthracene,LB
+37059,619.4462,Benzene,LB
+37057,5967.594,"1,3-Butadiene",LB
+37057,32303.66,Hexane,LB
+37057,0.3758354,"Dibenzo[a,h]Anthracene",LB
+37057,23.57366,Methane,TON
+37057,20.67231,Nitrous Oxide,TON
+37057,0.04838958,Nitrate portion of PM2.5-PRI,TON
+37057,1241.863,Nitrogen Oxides,TON
+37057,8.906128,Organic Carbon portion of PM2.5-PRI,TON
+37057,17.78736,PM2.5 Primary (Filt + Cond),TON
+37057,9.683951,Sulfur Dioxide,TON
+37057,732.1382,Volatile Organic Compounds,TON
+37055,0.09327174,Benzo[a]Pyrene,LB
+37055,0.003797916,"Dibenzo[a,h]Anthracene",LB
+37055,11.114466,Benzene,LB
+37055,0.04257612,Methane,TON
+37055,0.01601683,Ammonia,TON
+37055,0.1303827,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.06506108,Propionaldehyde,LB
+37055,0.005815694,Pyrene,LB
+37055,7.925278,Xylenes (Mixed Isomers),LB
+37055,0.0009213292,Chrysene,LB
+37055,0.00030164,Nickel,LB
+37055,1.0613188,Acetaldehyde,LB
+37055,0.008917099,PM10 Primary (Filt + Cond),TON
+37043,0.9076904,Benzo[k]Fluoranthene,LB
+37043,17.14664,Acenaphthylene,LB
+37043,0.017314976,Mercury,LB
+37043,2.653891,Ammonia,TON
+37043,0.6801157,Sulfur Dioxide,TON
+37033,0.004163624,Benzo[a]Pyrene,LB
+37033,0.0002594152,Arsenic,LB
+37033,0.013136746,Fluorene,LB
+37033,0.3369774,Naphthalene,LB
+37025,39.3901,Ethyl Benzene,LB
+37025,1.9745392,Chrysene,LB
+37027,1518.817,Carbon Monoxide,TON
+37027,129799.9,Carbon Dioxide,TON
+37027,10.43572,Ammonia,TON
+37027,1160.9976,"1,3-Butadiene",LB
+37027,12.4858,Pyrene,LB
+37027,7773.944,Benzene,LB
+37027,17.76507,PM10 Primary (Filt + Cond),TON
+37023,5.972352,Pyrene,LB
+37023,0.12950594,Benzo[b]Fluoranthene,LB
+37023,707.0136,Formaldehyde,LB
+37023,0.4339656,Benzo[a]Pyrene,LB
+37023,0.1131338,Nickel,LB
+37023,0.3495448,Ammonia,TON
+37179,0.02905796,Benzo[b]Fluoranthene,LB
+37179,151.08834,Benzene,LB
+37179,0.0750104,Manganese,LB
+37179,0.12590166,Acenaphthene,LB
+37179,3.326535,Nitrogen Oxides,TON
+37171,3.780213,PM2.5 Primary (Filt + Cond),TON
+37171,0.0289296,"Benzo[g,h,i,]Perylene",LB
+37171,4.312596,Acenaphthylene,LB
+37171,943.908,Formaldehyde,LB
+37171,0.0953307,Arsenic,LB
+37171,9.60292,Phenanthrene,LB
+37171,2.483261,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.5107088,Ethyl Benzene,LB
+37149,0.0824909,Acenaphthylene,LB
+37149,1.4356844,Benzene,LB
+37149,6.348456e-06,Mercury,LB
+37149,0.04907118,Acenaphthene,LB
+37149,0.17397724,Phenanthrene,LB
+37149,0.0875602,Volatile Organic Compounds,TON
+37161,0.0008843236,Benzo[b]Fluoranthene,LB
+37161,0.07396476,Naphthalene,LB
+37161,0.0002459159,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.05187354,Nitrogen Oxides,TON
+37147,1.4825816e-05,Nickel,LB
+37147,0.012468122,Phenanthrene,LB
+37147,0.0002097337,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.0004430484,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.00153497,PM10 Primary (Filt + Cond),TON
+37147,0.04797632,Pyrene,LB
+37147,0.010710272,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.0014033846,Nickel,LB
+37147,0.007355541,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.4228065,Volatile Organic Compounds,TON
+37143,0.0303531,"1,3-Butadiene",LB
+37143,4.444194e-06,"Dibenzo[a,h]Anthracene",LB
+37143,3.009678e-06,Nickel,LB
+37143,0.1117326,Carbon Monoxide,TON
+37143,5.446358e-07,Nitrate portion of PM2.5-PRI,TON
+37143,0.0001877736,PM2.5 Primary (Filt + Cond),TON
+37143,5.248109e-06,Sulfate Portion of PM2.5-PRI,TON
+37131,0.0011722318,"Benzo[g,h,i,]Perylene",LB
+37131,2.238324,Benzene,LB
+37131,0.07176926,PM2.5 Primary (Filt + Cond),TON
+37131,0.002750005,Sulfate Portion of PM2.5-PRI,TON
+37131,0.7473462,"1,3-Butadiene",LB
+37111,1.7633538,Styrene,LB
+37111,0.05914607,Ammonia,TON
+37111,0.03216122,Sulfur Dioxide,TON
+37111,0.002156503,Sulfate Portion of PM2.5-PRI,TON
+37119,5.567534e-05,Chromium (VI),LB
+37119,0.0442324,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,25.76699,Carbon Monoxide,TON
+37119,3.412271,Nitrogen Oxides,TON
+37119,0.8695102,Volatile Organic Compounds,TON
+37109,1.9536726e-05,Mercury,LB
+37109,0.0010896356,Naphthalene,LB
+37109,0.01216518,Nitrous Oxide,TON
+37109,45.6466,Formaldehyde,LB
+37109,96.23524,Acetaldehyde,LB
+37109,0.0008034636,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,1.1766862,Fluorene,LB
+37109,16.938,Carbon Monoxide,TON
+37109,1125.22,Carbon Dioxide,TON
+37109,0.001715198,Nitrous Oxide,TON
+37109,0.0118661,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,10.256604,Styrene,LB
+37109,1021.3718,Hexane,LB
+37109,0.13411522,Benz[a]Anthracene,LB
+37109,117.8618,Carbon Monoxide,TON
+37109,0.02665969,Elemental Carbon portion of PM2.5-PRI,TON
+37107,85.53898,Carbon Dioxide,TON
+37107,0.001971069,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.010155268,Anthracene,LB
+37107,9.95285,Ethyl Benzene,LB
+37097,32.3847,Hexane,LB
+37097,69.05458,Propionaldehyde,LB
+37097,23451.19,Carbon Dioxide,TON
+37097,6.211716,PM25-Primary from certain diesel engines,TON
+37099,16.875648,Ethyl Benzene,LB
+37099,1.2883346,Anthracene,LB
+37099,2.698168,Fluoranthene,LB
+37099,2.061576,Acenaphthylene,LB
+37099,1.252253,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.004392287,Nitrate portion of PM2.5-PRI,TON
+37099,58.35619,Nitrogen Oxides,TON
+37089,0.003863854,Organic Carbon portion of PM2.5-PRI,TON
+37089,6.12889,Ethyl Benzene,LB
+37089,0.008858162,Anthracene,LB
+37089,0.017324816,"Benzo[g,h,i,]Perylene",LB
+37089,0.006509278,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,3.39621,Formaldehyde,LB
+37089,7.399344,"2,2,4-Trimethylpentane",LB
+37089,3.072754,Acetaldehyde,LB
+37089,0.02071536,Fluorene,LB
+37089,235.3687,Carbon Dioxide,TON
+37089,0.006225121,Nitrous Oxide,TON
+37137,0.5406092,Fluorene,LB
+37137,0.2587993,Elemental Carbon portion of PM2.5-PRI,TON
+37137,4.940266e-05,Chromium (VI),LB
+37137,0.5458494,Fluoranthene,LB
+37137,0.002067958,Benzo[k]Fluoranthene,LB
+37137,0.09513332,Chrysene,LB
+37137,0.04857534,Benzo[a]Pyrene,LB
+37137,8.647984,Benzene,LB
+37137,1.0541624,Styrene,LB
+37137,0.2610548,Anthracene,LB
+37123,4.310746,Fluorene,LB
+37123,82.75488,Naphthalene,LB
+37123,46.965,Carbon Monoxide,TON
+37123,15.4888,Nitrogen Oxides,TON
+37123,0.7668044,PM10 Primary (Filt + Cond),TON
+37123,0.0191959,Sulfate Portion of PM2.5-PRI,TON
+37123,4.29981,Acenaphthylene,LB
+37123,1.9203276,Acrolein,LB
+37123,9.711438e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.0003810482,Benzo[b]Fluoranthene,LB
+37123,0.0012763414,Benzo[a]Pyrene,LB
+37123,0.005186532,Manganese,LB
+37123,1.233337e-05,Mercury,LB
+37123,0.07309196,Acenaphthene,LB
+37123,0.12571134,Fluorene,LB
+37123,2.712582,Naphthalene,LB
+37123,2.501871,Carbon Monoxide,TON
+37123,196.3038,Carbon Dioxide,TON
+37123,0.004329466,Ammonia,TON
+37123,0.13648,Volatile Organic Compounds,TON
+37115,7.689078,Ethyl Benzene,LB
+37115,6.111834,"2,2,4-Trimethylpentane",LB
+37115,0.1366872,Methane,TON
+37115,9.635323,Nitrogen Oxides,TON
+37113,7.001259e-05,Sulfur Dioxide,TON
+37113,5.132204e-08,Chromium (VI),LB
+37113,0.00011530266,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,7.677228e-05,Benzo[b]Fluoranthene,LB
+37113,9.83644e-06,Arsenic,LB
+37113,0.0002142484,Acenaphthene,LB
+37113,3.397885e-07,Nitrate portion of PM2.5-PRI,TON
+37107,7.466822,Hexane,LB
+37107,15.491118,Propionaldehyde,LB
+37107,0.0404301,Benzo[a]Pyrene,LB
+37107,27.71736,Benzene,LB
+37107,0.04035944,Nickel,LB
+37107,0.9523276,Acenaphthene,LB
+37107,2.655962,Phenanthrene,LB
+37107,0.06998242,Ammonia,TON
+37107,0.3287579,PM2.5 Primary (Filt + Cond),TON
+37105,4.952014,Nitrogen Oxides,TON
+37105,0.3600724,Acenaphthylene,LB
+37105,0.6679524,Phenanthrene,LB
+37097,36.65222,Acrolein,LB
+37097,12.062516,Hexane,LB
+37097,1.5789548,Anthracene,LB
+37097,0.02451764,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.06193302,Ammonia,TON
+37097,0.005778807,Nitrate portion of PM2.5-PRI,TON
+37097,0.4565242,Organic Carbon portion of PM2.5-PRI,TON
+37101,6362.878,Hexane,LB
+37099,1970.5108,Ethyl Benzene,LB
+37099,69.49592,Styrene,LB
+37099,2805.388,Hexane,LB
+37099,13.69438,Acenaphthylene,LB
+37099,871.8932,Formaldehyde,LB
+37099,2519.666,"2,2,4-Trimethylpentane",LB
+37099,3147.802,Benzene,LB
+37093,0.010557778,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,5.913868,"2,2,4-Trimethylpentane",LB
+37093,8.976296e-05,Mercury,LB
+37093,0.03467956,Nickel,LB
+37093,6777.228,Carbon Dioxide,TON
+37093,0.9080478,PM10-Primary from certain diesel engines,TON
+37093,0.2120205,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.1157285,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,16.052802,Acrolein,LB
+37091,19.010746,Toluene,LB
+37085,0.04817788,Ethyl Benzene,LB
+37085,0.0332263,PM2.5 Primary (Filt + Cond),TON
+37085,0.3011162,Volatile Organic Compounds,TON
+37079,0.9116298,Propionaldehyde,LB
+37079,0.12475274,Xylenes (Mixed Isomers),LB
+37079,1.3450182e-05,"Benzo[g,h,i,]Perylene",LB
+37079,0.0002090806,Fluoranthene,LB
+37079,3.499018e-05,Benz[a]Anthracene,LB
+37079,0.4441452,Carbon Monoxide,TON
+37079,0.001532675,Ammonia,TON
+37079,0.013713852,"1,3-Butadiene",LB
+37079,0.13518548,Toluene,LB
+37081,105.03716,Ethyl Benzene,LB
+37081,0.4878014,Benzo[b]Fluoranthene,LB
+37081,89.9458,"2,2,4-Trimethylpentane",LB
+37081,0.3675504,Arsenic,LB
+37081,133516.8,Carbon Dioxide,TON
+37081,12.05359,PM25-Primary from certain diesel engines,TON
+37081,0.02904597,Nitrate portion of PM2.5-PRI,TON
+37081,1.009549,Sulfate Portion of PM2.5-PRI,TON
+37081,112.9342,Toluene,LB
+37081,0.15451694,Acenaphthylene,LB
+37081,0.04224687,PM2.5 Primary (Filt + Cond),TON
+37079,19308.6,Toluene,LB
+37079,4333.25,Hexane,LB
+37079,1.866761,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,184.4869,Nitrogen Oxides,TON
+37077,2.211998e-05,Nickel,LB
+37077,9.835088e-06,Nitrate portion of PM2.5-PRI,TON
+37077,1.2317008,Ethyl Benzene,LB
+37077,1.3934808,"2,2,4-Trimethylpentane",LB
+37069,0.018997154,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.010574126,Benzo[k]Fluoranthene,LB
+37069,0.4819174,Chrysene,LB
+37069,0.06080984,Arsenic,LB
+37069,0.4783196,Methane,TON
+37069,14.35335,Carbon Monoxide,TON
+37069,2.058756,PM10-Primary from certain diesel engines,TON
+37069,1.208008,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.02395122,Nitrous Oxide,TON
+37069,1.4473812,Propionaldehyde,LB
+37069,0.010978646,Manganese,LB
+37069,0.002183176,Arsenic,LB
+37069,12.695122,Acetaldehyde,LB
+37069,0.19836148,Fluorene,LB
+37069,3.181232,Naphthalene,LB
+37069,0.07258368,PM25-Primary from certain diesel engines,TON
+37069,0.03281277,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.117833,PM10 Primary (Filt + Cond),TON
+37069,0.07765075,PM2.5 Primary (Filt + Cond),TON
+37061,14.129438,Ethyl Benzene,LB
+37061,24.94902,Xylenes (Mixed Isomers),LB
+37061,1.0775722,Benz[a]Anthracene,LB
+37061,40.76044,Benzene,LB
+37061,0.0193736,Arsenic,LB
+37061,1.386734,Elemental Carbon portion of PM2.5-PRI,TON
+37061,2.086259,PM2.5 Primary (Filt + Cond),TON
+37055,4.054282e-06,Benzo[b]Fluoranthene,LB
+37055,1.8699268e-05,Fluoranthene,LB
+37055,2.089478e-07,Nickel,LB
+37055,0.004012014,Acetaldehyde,LB
+37055,0.000659813,Naphthalene,LB
+37055,0.0003010162,Styrene,LB
+37055,0.04049064,Toluene,LB
+37055,0.02713886,Xylenes (Mixed Isomers),LB
+37055,2.004938e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.2392782,Ethyl Benzene,LB
+37055,1.3596472,Toluene,LB
+37055,0.008303216,Propionaldehyde,LB
+37055,0.00017661734,Benzo[k]Fluoranthene,LB
+37055,0.0018003254,Acenaphthylene,LB
+37055,0.00016564106,Benz[a]Anthracene,LB
+37055,0.1231474,Acetaldehyde,LB
+37055,0.0003940586,Acenaphthene,LB
+37055,0.002160796,Phenanthrene,LB
+37055,0.1735298,Carbon Monoxide,TON
+37055,8.22222e-07,Nitrate portion of PM2.5-PRI,TON
+37055,0.0001539827,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.0002852758,PM2.5 Primary (Filt + Cond),TON
+37049,0.006779988,Toluene,LB
+37049,0.004843026,Xylenes (Mixed Isomers),LB
+37049,5.823132e-10,Chromium (VI),LB
+37049,2.45393e-06,Acenaphthene,LB
+37049,1.005319e-06,Ammonia,TON
+37045,205.305,Xylenes (Mixed Isomers),LB
+37045,52.51744,"2,2,4-Trimethylpentane",LB
+37045,36.53403,Carbon Monoxide,TON
+37045,0.05082195,Nitrous Oxide,TON
+37039,6.406326,Ethyl Benzene,LB
+37039,2.922492,Styrene,LB
+37039,4.810336,Hexane,LB
+37039,84.6283,Acetaldehyde,LB
+37039,2.476348,Phenanthrene,LB
+37039,0.9742302,PM10-Primary from certain diesel engines,TON
+37045,0.05749832,Benzo[b]Fluoranthene,LB
+37045,0.3697098,Chrysene,LB
+37045,0.008024318,Arsenic,LB
+37045,8.035927,Carbon Monoxide,TON
+37045,0.007493982,Nitrous Oxide,TON
+37045,0.2697,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.6439783,PM2.5 Primary (Filt + Cond),TON
+37033,0.456195,Propionaldehyde,LB
+37033,0.000248137,Benzo[k]Fluoranthene,LB
+37033,8.57554,Formaldehyde,LB
+37033,0.001340304,Sulfate Portion of PM2.5-PRI,TON
+37033,61.4208,Acrolein,LB
+37033,0.013839174,Benzo[b]Fluoranthene,LB
+37033,0.04639876,Benzo[a]Pyrene,LB
+37033,0.4597087,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.009448925,Nitrous Oxide,TON
+37033,0.001019988,Nitrate portion of PM2.5-PRI,TON
+37033,0.07397556,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.7119573,PM10 Primary (Filt + Cond),TON
+37033,0.01376617,Sulfate Portion of PM2.5-PRI,TON
+37031,0.05271868,Toluene,LB
+37031,4.698216e-06,Benz[a]Anthracene,LB
+37195,0.15541562,Benz[a]Anthracene,LB
+37195,0.1908176,Acenaphthene,LB
+37195,1048.794,Carbon Dioxide,TON
+37195,33.2775,Acrolein,LB
+37195,27.78816,Toluene,LB
+37195,3.285884,Fluoranthene,LB
+37195,418.6334,Formaldehyde,LB
+37195,0.005475688,Nitrate portion of PM2.5-PRI,TON
+37195,2.653347,PM10 Primary (Filt + Cond),TON
+37195,0.2146685,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.195971,Hexane,LB
+37189,1.3685246e-06,Chromium (VI),LB
+37189,0.0002282718,Arsenic,LB
+37189,0.1440775,Carbon Monoxide,TON
+37189,0.007326846,Organic Carbon portion of PM2.5-PRI,TON
+37183,3.54416,Acenaphthene,LB
+37183,109.71202,"1,3-Butadiene",LB
+37183,16.14534,Acenaphthylene,LB
+37183,5460.81,"2,2,4-Trimethylpentane",LB
+37021,8.297321,PM10-Primary from certain diesel engines,TON
+37021,8.60135,PM2.5 Primary (Filt + Cond),TON
+37021,0.5930446,Sulfur Dioxide,TON
+37017,0.0001592779,Mercury,LB
+37017,0.62838,PM25-Primary from certain diesel engines,TON
+37017,0.03832511,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,39.56324,Propionaldehyde,LB
+37017,3.928344,Pyrene,LB
+37017,0.015751508,Benzo[b]Fluoranthene,LB
+37017,0.002176642,"Dibenzo[a,h]Anthracene",LB
+37015,1.4384376,Xylenes (Mixed Isomers),LB
+37015,0.03110194,Chrysene,LB
+37015,0.016459702,Benzo[a]Pyrene,LB
+37015,0.2472424,Phenanthrene,LB
+37015,0.13985916,Fluorene,LB
+37015,0.009711572,Methane,TON
+37015,0.0005497146,Nitrous Oxide,TON
+37015,0.0002842845,Nitrate portion of PM2.5-PRI,TON
+37015,0.110283,Volatile Organic Compounds,TON
+37015,0.19132618,Anthracene,LB
+37015,1.256554e-05,Chromium (VI),LB
+37015,0.001778732,Arsenic,LB
+37013,0.892355,Acenaphthylene,LB
+37013,0.05594912,Benz[a]Anthracene,LB
+37013,0.015744126,Manganese,LB
+37013,0.014371974,Arsenic,LB
+37013,10.173294,Naphthalene,LB
+37013,0.0108891,Elemental Carbon portion of PM2.5-PRI,TON
+37003,6.396612e-06,Nickel,LB
+37003,0.2443934,Carbon Monoxide,TON
+37003,0.0001583729,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.00491094,Anthracene,LB
+37067,11.512918,Xylenes (Mixed Isomers),LB
+37067,8.194888e-05,Chromium (VI),LB
+37067,0.03838048,"Benzo[g,h,i,]Perylene",LB
+37067,0.02382642,Acenaphthylene,LB
+37067,16.724068,Benzene,LB
+37067,0.003807083,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.06895934,Ammonia,TON
+37067,5.737751e-05,Nitrate portion of PM2.5-PRI,TON
+37067,0.4963444,Nitrogen Oxides,TON
+37027,0.001698808,Arsenic,LB
+37027,0.0001087204,Sulfate Portion of PM2.5-PRI,TON
+37027,0.00095658,Benzo[b]Fluoranthene,LB
+37133,0.0345018,Arsenic,LB
+37133,23.5492,Carbon Monoxide,TON
+37133,3153.431,Carbon Dioxide,TON
+37133,0.016120062,Anthracene,LB
+37133,4.139722,Propionaldehyde,LB
+37133,0.015887478,Chrysene,LB
+37133,0.0009190886,"Dibenzo[a,h]Anthracene",LB
+37069,0.00012432658,Fluoranthene,LB
+37069,21.3764,Formaldehyde,LB
+37069,0.08758534,Acrolein,LB
+37069,2.930846,Acetaldehyde,LB
+37069,2.968597e-05,Sulfate Portion of PM2.5-PRI,TON
+37053,0.12069564,Anthracene,LB
+37053,3.391738e-05,Chromium (VI),LB
+37053,0.0001627465,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,9.253138e-05,Benzo[k]Fluoranthene,LB
+37053,0.015500706,Nickel,LB
+37053,0.2629182,Fluorene,LB
+37053,0.002559104,Sulfate Portion of PM2.5-PRI,TON
+37053,2.35037,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,33.79412,Acenaphthylene,LB
+37053,0.05395992,"Dibenzo[a,h]Anthracene",LB
+37053,7.57727,PM10 Primary (Filt + Cond),TON
+37053,0.8715023,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.1449797,Manganese,LB
+37051,1.3232994,Acenaphthene,LB
+37051,0.07776064,Elemental Carbon portion of PM2.5-PRI,TON
+37051,40.05128,"1,3-Butadiene",LB
+37051,20.56862,Propionaldehyde,LB
+37047,0.8920848,Ethyl Benzene,LB
+37047,0.0183764,Benzo[a]Pyrene,LB
+37047,0.06106344,Benz[a]Anthracene,LB
+37047,0.1391007,PM10-Primary from certain diesel engines,TON
+37047,0.127968,PM25-Primary from certain diesel engines,TON
+37047,0.0008312925,Nitrous Oxide,TON
+37047,0.01079818,Ammonia,TON
+37047,0.0003209364,Nitrate portion of PM2.5-PRI,TON
+37047,0.1523155,Volatile Organic Compounds,TON
+37041,1.9807306,"1,3-Butadiene",LB
+37041,4.74866,Acrolein,LB
+37041,3.233252,Propionaldehyde,LB
+37041,1.6747482e-05,Chromium (VI),LB
+37041,0.0018012792,Benzo[k]Fluoranthene,LB
+37041,0.018354154,Manganese,LB
+37041,0.7380628,Phenanthrene,LB
+37041,0.266921,PM25-Primary from certain diesel engines,TON
+37031,0.11565496,Styrene,LB
+37031,0.0011912634,Benzo[b]Fluoranthene,LB
+37031,4.138642,"2,2,4-Trimethylpentane",LB
+37031,0.005023832,Acenaphthene,LB
+37017,2.986198e-05,Mercury,LB
+37017,0.3791446,Acenaphthene,LB
+37017,12.66692,Naphthalene,LB
+37017,0.00412613,Sulfate Portion of PM2.5-PRI,TON
+37017,6.135772,Propionaldehyde,LB
+37017,0.6209882,Pyrene,LB
+37017,7.732784,Xylenes (Mixed Isomers),LB
+37019,0.4692736,Fluoranthene,LB
+37019,0.009892466,Nickel,LB
+37019,0.7560122,Phenanthrene,LB
+37019,0.1596265,PM25-Primary from certain diesel engines,TON
+37015,164.4803,Benzene,LB
+37015,0.694962,Phenanthrene,LB
+37015,0.0584086,Methane,TON
+37015,892.8964,Carbon Dioxide,TON
+37015,0.0001549916,Nitrate portion of PM2.5-PRI,TON
+37015,0.0526537,PM2.5 Primary (Filt + Cond),TON
+37015,2.829938,Styrene,LB
+37167,0.0005177344,Pyrene,LB
+37167,0.16974646,Benzene,LB
+37167,0.0003904072,Fluorene,LB
+37167,0.0004274088,Sulfur Dioxide,TON
+37021,0.010513862,Arsenic,LB
+37021,4.563944,Hexane,LB
+37021,0.009964138,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.0596169,Ammonia,TON
+37021,0.1005679,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.9450011,Volatile Organic Compounds,TON
+37017,0.1665934,Fluoranthene,LB
+37017,0.01062582,Chrysene,LB
+37017,8.06174e-05,"Dibenzo[a,h]Anthracene",LB
+37017,0.00447808,Arsenic,LB
+37017,0.006941021,PM25-Primary from certain diesel engines,TON
+37017,0.0004478269,Nitrous Oxide,TON
+37017,0.0037505,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.009030676,PM2.5 Primary (Filt + Cond),TON
+37021,200.3484,Toluene,LB
+37021,147.75112,Xylenes (Mixed Isomers),LB
+37021,3.116515,Nitrogen Oxides,TON
+37021,0.02324878,Organic Carbon portion of PM2.5-PRI,TON
+37011,1.5855664,"2,2,4-Trimethylpentane",LB
+37011,26.37586,Acetaldehyde,LB
+37011,2.033696,Ethyl Benzene,LB
+37011,0.8269228,Styrene,LB
+37011,4.444806,Toluene,LB
+37011,0.002738076,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.1268151,PM2.5 Primary (Filt + Cond),TON
+37011,0.002630959,Sulfur Dioxide,TON
+37081,0.0004826138,"Dibenzo[a,h]Anthracene",LB
+37081,24.0839,Benzene,LB
+37051,7.911266,Benzene,LB
+37043,0.05114554,Styrene,LB
+37043,0.1805078,Acrolein,LB
+37043,0.0011562376,Chrysene,LB
+37043,0.009221133,Ammonia,TON
+37043,8.644287e-06,Nitrate portion of PM2.5-PRI,TON
+37041,3.227956,Toluene,LB
+37041,0.3767392,Hexane,LB
+37031,0.00095178,Benz[a]Anthracene,LB
+37031,0.004563148,PM2.5 Primary (Filt + Cond),TON
+37031,0.07850534,Volatile Organic Compounds,TON
+37037,2.404168,Toluene,LB
+37037,1.3768524,Formaldehyde,LB
+37037,7.591831e-06,Nitrate portion of PM2.5-PRI,TON
+37135,0.013548962,Arsenic,LB
+37135,0.01677457,Nitrous Oxide,TON
+37135,7.216983e-05,Nitrate portion of PM2.5-PRI,TON
+37135,1.067622,Nitrogen Oxides,TON
+37135,0.09666992,PM10 Primary (Filt + Cond),TON
+37135,4.376,Ethyl Benzene,LB
+37135,0.01552431,Pyrene,LB
+37103,0.0001824585,Sulfate Portion of PM2.5-PRI,TON
+37103,0.00018363196,Mercury,LB
+37103,0.002289664,Nickel,LB
+37103,1.8318494e-05,Chromium (VI),LB
+37103,0.003869684,Fluoranthene,LB
+37103,0.00010480348,"Dibenzo[a,h]Anthracene",LB
+37103,0.003677118,Nitrous Oxide,TON
+37175,13.74572,Acenaphthylene,LB
+37175,869.936,Formaldehyde,LB
+37175,0.3284492,Nickel,LB
+37175,0.7194064,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.5353622,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,12391.866,Toluene,LB
+37175,3.318524,"Benzo[g,h,i,]Perylene",LB
+37167,5.380342,Acenaphthene,LB
+37167,8.437987,Ammonia,TON
+37155,0.04597678,Manganese,LB
+37155,0.0008568964,Mercury,LB
+37155,7.598006,Naphthalene,LB
+37155,0.0239716,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.09325183,Nitrous Oxide,TON
+37155,0.0004157333,Nitrate portion of PM2.5-PRI,TON
+37155,91.29788,Ethyl Benzene,LB
+37155,3.418076,Styrene,LB
+37155,2.84178,Propionaldehyde,LB
+37149,10.200404,Toluene,LB
+37149,15.816348,Benzene,LB
+37149,0.0315832,Nickel,LB
+37149,0.003004794,Nitrous Oxide,TON
+37149,0.1561682,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.8354449,PM2.5 Primary (Filt + Cond),TON
+37149,0.0664355,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,25.2796,Ethyl Benzene,LB
+37153,0.011017092,"Benzo[g,h,i,]Perylene",LB
+37153,4.401502,Acenaphthylene,LB
+37153,0.143569,Ammonia,TON
+37153,0.6635469,PM2.5 Primary (Filt + Cond),TON
+37143,0.3063292,Ethyl Benzene,LB
+37143,0.0309464,Anthracene,LB
+37143,0.00053045,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.2456012,"2,2,4-Trimethylpentane",LB
+37143,0.11068786,Phenanthrene,LB
+37143,0.003382965,Ammonia,TON
+37143,0.0001220598,Nitrate portion of PM2.5-PRI,TON
+37143,0.3633271,Nitrogen Oxides,TON
+37137,1.977824,Hexane,LB
+37137,0.2278026,Anthracene,LB
+37137,6.73584,Xylenes (Mixed Isomers),LB
+37137,0.002665194,"Benzo[g,h,i,]Perylene",LB
+37137,0.012554394,Benzo[b]Fluoranthene,LB
+37137,0.05809612,Methane,TON
+37137,0.1946956,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.605013,Ethyl Benzene,LB
+37131,8.20749e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,4.486412e-05,"Dibenzo[a,h]Anthracene",LB
+37131,0.005815598,Nickel,LB
+37131,1.9418624,Naphthalene,LB
+37119,29.46554,Hexane,LB
+37119,2.28812,Anthracene,LB
+37119,49.48454,Propionaldehyde,LB
+37119,0.04858846,Benzo[a]Pyrene,LB
+37119,472.4702,Acetaldehyde,LB
+37119,8.595402,Phenanthrene,LB
+37119,1.398938,PM10 Primary (Filt + Cond),TON
+37119,0.05974598,Sulfate Portion of PM2.5-PRI,TON
+37119,0.06119944,Ethyl Benzene,LB
+37119,0.00011326304,Anthracene,LB
+37119,0.00018025242,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.000578484,Acenaphthylene,LB
+37119,1.9425448e-06,Mercury,LB
+37119,0.000125817,Acenaphthene,LB
+37119,0.0001444715,Methane,TON
+37119,0.0002488986,PM2.5 Primary (Filt + Cond),TON
+37119,9.819392e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.002638294,Methane,TON
+37107,0.01694714,PM25-Primary from certain diesel engines,TON
+37107,0.006147698,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.007633967,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.1883466,Hexane,LB
+37107,0.07605102,Pyrene,LB
+37107,0.0003360414,"Benzo[g,h,i,]Perylene",LB
+37103,0.19642798,Toluene,LB
+37103,0.0741396,Hexane,LB
+37103,0.19343526,Xylenes (Mixed Isomers),LB
+37103,0.00016116468,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.0006494472,Manganese,LB
+37103,0.03601458,Phenanthrene,LB
+37103,29.04301,Carbon Dioxide,TON
+37103,0.01720982,Volatile Organic Compounds,TON
+37099,0.6486692,Pyrene,LB
+37099,0.0323253,Benzo[a]Pyrene,LB
+37099,2.81232,"1,3-Butadiene",LB
+37097,0.3279168,Benzo[b]Fluoranthene,LB
+37095,3.535634,Acrolein,LB
+37095,0.02316304,Benzo[a]Pyrene,LB
+37095,0.0009730314,"Dibenzo[a,h]Anthracene",LB
+37095,0.02332558,Manganese,LB
+37095,3.274904e-05,Mercury,LB
+37095,0.04920777,Methane,TON
+37095,0.02110308,Sulfur Dioxide,TON
+37095,0.0195187,Sulfate Portion of PM2.5-PRI,TON
+37095,0.4058684,Benzo[b]Fluoranthene,LB
+37095,7.864398,Acenaphthylene,LB
+37095,0.4227596,Chrysene,LB
+37095,0.009122636,Mercury,LB
+37095,1011.5134,Ethyl Benzene,LB
+37095,41.2688,Styrene,LB
+37095,3724.742,Xylenes (Mixed Isomers),LB
+37095,1.2900102,"Benzo[g,h,i,]Perylene",LB
+37095,9.362212,Phenanthrene,LB
+37085,6.230512e-06,Chromium (VI),LB
+37085,0.013742788,"Benzo[g,h,i,]Perylene",LB
+37085,0.00325108,Benzo[b]Fluoranthene,LB
+37085,0.002885344,Chrysene,LB
+37085,0.00307459,Benz[a]Anthracene,LB
+37085,8.440312,Benzene,LB
+37085,0.0423416,Phenanthrene,LB
+37085,0.1445079,Volatile Organic Compounds,TON
+37083,5.653786,Styrene,LB
+37083,0.00010362312,Chromium (VI),LB
+37083,0.01368464,Nitrous Oxide,TON
+37081,3.163204,Benzo[a]Pyrene,LB
+37081,0.7738841,Elemental Carbon portion of PM2.5-PRI,TON
+37081,208.95,Nitrogen Oxides,TON
+37081,1.897053,Organic Carbon portion of PM2.5-PRI,TON
+37077,58.17822,Propionaldehyde,LB
+37077,0.0005289998,Mercury,LB
+37077,0.14560484,Nickel,LB
+37077,684.1546,Acetaldehyde,LB
+37077,2.863072,Methane,TON
+37077,5.233994,PM10 Primary (Filt + Cond),TON
+37077,85.3572,Xylenes (Mixed Isomers),LB
+37077,0.019639564,"Benzo[g,h,i,]Perylene",LB
+37077,0.03346262,Benzo[b]Fluoranthene,LB
+37077,6.627166,Fluoranthene,LB
+37077,0.2196632,Nickel,LB
+37077,5.076996,Acenaphthene,LB
+37077,1.235536,PM25-Primary from certain diesel engines,TON
+37077,1.268905,PM2.5 Primary (Filt + Cond),TON
+37077,0.03393961,Sulfate Portion of PM2.5-PRI,TON
+37071,3.045394e-06,Nitrate portion of PM2.5-PRI,TON
+37071,1.5900176,Ethyl Benzene,LB
+37071,0.05601796,Propionaldehyde,LB
+37071,43.04308,"1,3-Butadiene",LB
+37071,8477.74,Toluene,LB
+37071,4.735818,Acenaphthylene,LB
+37071,386.1898,Formaldehyde,LB
+37071,0.008881436,"Dibenzo[a,h]Anthracene",LB
+37071,1.0398946,Acenaphthene,LB
+37071,5.64723,Phenanthrene,LB
+37069,66.12076,Hexane,LB
+37069,0.05128044,"Benzo[g,h,i,]Perylene",LB
+37069,0.015899304,Benzo[k]Fluoranthene,LB
+37069,0.019440588,Benzo[a]Pyrene,LB
+37069,0.02646269,PM2.5 Primary (Filt + Cond),TON
+37069,0.009219283,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,57.38128,Hexane,LB
+37067,6.815516,Anthracene,LB
+37067,0.0586759,Benzo[k]Fluoranthene,LB
+37067,0.05848792,"Dibenzo[a,h]Anthracene",LB
+37067,0.8596684,Manganese,LB
+37067,24.93026,Phenanthrene,LB
+37067,0.8295771,Ammonia,TON
+37061,0.4059517,PM10 Primary (Filt + Cond),TON
+37061,12.918216,Benzene,LB
+37061,0.004189944,Arsenic,LB
+37043,0.018059224,Hexane,LB
+37043,0.05029942,Xylenes (Mixed Isomers),LB
+37043,1.67298e-09,Chromium (VI),LB
+37043,0.017517188,"2,2,4-Trimethylpentane",LB
+37043,9.970288e-07,Manganese,LB
+37043,3.206656e-07,Arsenic,LB
+37043,0.0011046154,Naphthalene,LB
+37043,1.406123e-05,PM10 Primary (Filt + Cond),TON
+37081,11.980424,Hexane,LB
+37065,0.00612223,Manganese,LB
+37065,0.00017426442,Mercury,LB
+37111,154.3942,Carbon Dioxide,TON
+37111,0.0013833982,Nickel,LB
+37111,0.9805346,Hexane,LB
+37111,0.0017809814,Pyrene,LB
+37111,0.005642736,"Benzo[g,h,i,]Perylene",LB
+37111,0.004145548,Acenaphthylene,LB
+37177,321.512,"2,2,4-Trimethylpentane",LB
+37177,36.64002,Benzene,LB
+37169,0.02305156,Sulfur Dioxide,TON
+37169,8.69616,Volatile Organic Compounds,TON
+37169,9.661672,"1,3-Butadiene",LB
+37163,16.862132,Hexane,LB
+37163,2.041084,Anthracene,LB
+37163,4.232994,Fluoranthene,LB
+37163,0.7282756,Chrysene,LB
+37163,17.652262,"2,2,4-Trimethylpentane",LB
+37163,60.50018,Benzene,LB
+37163,0.2405358,Manganese,LB
+37163,7.293606,Phenanthrene,LB
+37163,0.419865,Methane,TON
+37163,23130.48,Carbon Dioxide,TON
+37163,3.037753,PM10-Primary from certain diesel engines,TON
+37163,0.02424225,Nitrous Oxide,TON
+37149,1.0805676,"1,3-Butadiene",LB
+37149,1.7877966,Propionaldehyde,LB
+37149,0.3633968,Pyrene,LB
+37149,1.2715176e-05,Chromium (VI),LB
+37149,0.2737696,Fluoranthene,LB
+37149,0.006370914,Nickel,LB
+37149,0.10941852,Acenaphthene,LB
+37149,0.1042899,PM25-Primary from certain diesel engines,TON
+37149,0.0008940028,Nitrous Oxide,TON
+37149,0.1084635,PM2.5 Primary (Filt + Cond),TON
+37149,0.1960741,Volatile Organic Compounds,TON
+37149,0.00901254,Nickel,LB
+37149,2.465076,Carbon Monoxide,TON
+37149,0.0008025233,Nitrate portion of PM2.5-PRI,TON
+37149,0.06262529,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.2293667,PM10 Primary (Filt + Cond),TON
+37149,5.41642,Acrolein,LB
+37149,1.6948968,"2,2,4-Trimethylpentane",LB
+37149,0.15170508,Benz[a]Anthracene,LB
+37149,0.011615,Manganese,LB
+37145,0.06770302,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.003896996,Sulfur Dioxide,TON
+37145,0.12190786,Chrysene,LB
+37145,0.208954,Benz[a]Anthracene,LB
+37199,0.4251416,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.2174029,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.02059881,Sulfate Portion of PM2.5-PRI,TON
+37199,40.8467,Styrene,LB
+37199,0.5517276,Benzo[k]Fluoranthene,LB
+37199,0.7833552,Benzo[a]Pyrene,LB
+37187,0.2704288,Phenanthrene,LB
+37187,2.204851,Nitrogen Oxides,TON
+37187,0.630351,Hexane,LB
+37187,0.08413262,Anthracene,LB
+37187,1.4395534,Propionaldehyde,LB
+37187,0.000382521,"Dibenzo[a,h]Anthracene",LB
+37181,0.1718655,Ethyl Benzene,LB
+37181,0.018224236,Anthracene,LB
+37181,0.0006991566,Nickel,LB
+37181,0.0002214706,Arsenic,LB
+37181,0.0576539,Anthracene,LB
+37181,3.290828e-05,Chromium (VI),LB
+37181,0.13344276,"Benzo[g,h,i,]Perylene",LB
+37181,21.51044,Formaldehyde,LB
+37181,0.0001539929,Nitrate portion of PM2.5-PRI,TON
+37179,4262.84,Ethyl Benzene,LB
+37169,0.0201999,Ethyl Benzene,LB
+37169,0.0001743686,Fluoranthene,LB
+37169,8.712844e-07,Nickel,LB
+37169,0.0005516354,Phenanthrene,LB
+37169,0.0002804089,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.2143269,Nitrogen Oxides,TON
+37169,0.007344939,PM10 Primary (Filt + Cond),TON
+37169,0.001794942,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.2664244,"2,2,4-Trimethylpentane",LB
+37169,0.004943386,Manganese,LB
+37169,0.04622585,PM10-Primary from certain diesel engines,TON
+37169,0.004074,Ammonia,TON
+37169,13.170172,Acenaphthene,LB
+37169,26.6767,Fluorene,LB
+37169,307.5596,Nitrogen Oxides,TON
+37169,4088.25,Formaldehyde,LB
+37169,0.1034768,Sulfate Portion of PM2.5-PRI,TON
+37165,0.0003425622,Sulfur Dioxide,TON
+37165,0.0295106,Volatile Organic Compounds,TON
+37165,0.08543958,Benzene,LB
+37165,0.0002401722,Arsenic,LB
+37165,0.1884998,Nitrogen Oxides,TON
+37165,0.001278981,Organic Carbon portion of PM2.5-PRI,TON
+37165,5.6637,Anthracene,LB
+37165,2.293888,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,35.99972,Phenanthrene,LB
+37165,1.33548,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.0011318332,"Dibenzo[a,h]Anthracene",LB
+37155,27.47238,Naphthalene,LB
+37155,0.0005310173,Nitrate portion of PM2.5-PRI,TON
+37155,13.17051,Propionaldehyde,LB
+37155,0.0011400726,Benzo[k]Fluoranthene,LB
+37155,252.4232,Formaldehyde,LB
+37161,15.087536,Anthracene,LB
+37161,29.31066,Pyrene,LB
+37161,13129.594,"2,2,4-Trimethylpentane",LB
+37161,95.9512,Phenanthrene,LB
+37161,13.92569,Ammonia,TON
+37143,4.18643e-07,Arsenic,LB
+37143,2.830472e-05,Acenaphthene,LB
+37143,0.00015358574,Phenanthrene,LB
+37143,5.733584e-05,Fluorene,LB
+37143,0.0014694136,Naphthalene,LB
+37143,1.625056e-05,PM10 Primary (Filt + Cond),TON
+37143,7.455474e-06,Benzo[b]Fluoranthene,LB
+37143,2.210146e-07,"Dibenzo[a,h]Anthracene",LB
+37143,2.289964e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,2.37777e-07,Sulfate Portion of PM2.5-PRI,TON
+37143,0.0005218459,Volatile Organic Compounds,TON
+37141,0.8711378,Chrysene,LB
+37141,19.120546,"1,3-Butadiene",LB
+37141,2.127196,Anthracene,LB
+37141,0.0002204826,Mercury,LB
+37141,273.7484,Acetaldehyde,LB
+37141,4.271158,Fluorene,LB
+37141,0.02179096,Nitrous Oxide,TON
+37141,0.2214702,Ammonia,TON
+37141,2.429427,PM10 Primary (Filt + Cond),TON
+37141,3.524755,Volatile Organic Compounds,TON
+37139,0.06652368,Fluoranthene,LB
+37139,0.008508308,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.09518646,Ethyl Benzene,LB
+37137,0.2193438,Acrolein,LB
+37137,1.0200228e-06,Chromium (VI),LB
+37137,0.00021782,Arsenic,LB
+37137,0.03350624,Phenanthrene,LB
+37137,0.0006341863,Sulfate Portion of PM2.5-PRI,TON
+37133,34.43682,Fluoranthene,LB
+37133,107.74672,Acenaphthylene,LB
+37133,7260.136,Formaldehyde,LB
+37133,423585.2,Carbon Dioxide,TON
+37133,656.0748,Nitrogen Oxides,TON
+37133,14314.172,Ethyl Benzene,LB
+37133,39.29812,Pyrene,LB
+37129,1.5300792e-05,Chromium (VI),LB
+37129,0.002932546,Arsenic,LB
+37129,11.512468,Acetaldehyde,LB
+37129,853.6061,Carbon Dioxide,TON
+37129,6.33125e-05,Nitrate portion of PM2.5-PRI,TON
+37127,32.85058,Ethyl Benzene,LB
+37127,74.61456,Acrolein,LB
+37127,0.6885202,Benzo[a]Pyrene,LB
+37127,6.370148,Fluorene,LB
+37127,22.53591,Carbon Monoxide,TON
+37127,2.539331,PM10-Primary from certain diesel engines,TON
+37127,2.336136,PM25-Primary from certain diesel engines,TON
+37125,0.003546457,Nitrate portion of PM2.5-PRI,TON
+37125,37.60779,Nitrogen Oxides,TON
+37007,992.9532,Toluene,LB
+37007,5.27619e-05,Chromium (VI),LB
+37007,0.05228648,Benzo[a]Pyrene,LB
+37007,0.038469,Benz[a]Anthracene,LB
+37007,0.2690482,Fluorene,LB
+37007,34.94518,Carbon Monoxide,TON
+37007,0.0001504916,Nitrate portion of PM2.5-PRI,TON
+37007,4.300368,Volatile Organic Compounds,TON
+37077,91.68058,Acetaldehyde,LB
+37077,0.04288402,Phenanthrene,LB
+37077,0.0572113,PM10 Primary (Filt + Cond),TON
+37077,0.02104416,PM2.5 Primary (Filt + Cond),TON
+37077,4.279962,Ethyl Benzene,LB
+37077,6.325382,Hexane,LB
+37077,5.40576e-05,Chromium (VI),LB
+37077,0.04481642,"Benzo[g,h,i,]Perylene",LB
+37077,0.016838046,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.008823184,Benzo[k]Fluoranthene,LB
+37077,0.0297969,Sulfur Dioxide,TON
+37053,0.127228,Styrene,LB
+37053,0.445222,Acrolein,LB
+37053,0.00019279138,"Dibenzo[a,h]Anthracene",LB
+37053,0.006709724,Arsenic,LB
+37053,0.004398376,Acenaphthene,LB
+37053,0.01224338,PM2.5 Primary (Filt + Cond),TON
+37053,0.004373928,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.005303576,Styrene,LB
+37029,0.2922494,Formaldehyde,LB
+37029,0.0004881236,Manganese,LB
+37029,0.0004197664,Arsenic,LB
+37029,0.00956152,Naphthalene,LB
+37029,0.001637186,Methane,TON
+37015,0.9613028,Benzene,LB
+37141,0.0010138154,Anthracene,LB
+37141,2.435558,Xylenes (Mixed Isomers),LB
+37141,0.002190122,Fluorene,LB
+37141,0.006171804,Sulfur Dioxide,TON
+37117,3.627688,"2,2,4-Trimethylpentane",LB
+37117,1.0097706,Benzene,LB
+37093,0.04389963,Methane,TON
+37093,619.6668,Carbon Dioxide,TON
+37093,0.6144928,Acrolein,LB
+37093,0.004815144,Benzo[k]Fluoranthene,LB
+37091,0.019313492,Acrolein,LB
+37091,0.04450302,Propionaldehyde,LB
+37091,0.3819686,Xylenes (Mixed Isomers),LB
+37091,0.000853072,Acenaphthylene,LB
+37091,0.000361729,Benzo[a]Pyrene,LB
+37091,0.19842132,"2,2,4-Trimethylpentane",LB
+37091,0.0010471112,Phenanthrene,LB
+37091,0.000229754,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.0001676195,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,1.389709e-05,Sulfate Portion of PM2.5-PRI,TON
+37085,7.056852,Anthracene,LB
+37085,12.142142,Fluoranthene,LB
+37085,205.7212,Nitrogen Oxides,TON
+37085,5.770324,PM2.5 Primary (Filt + Cond),TON
+37077,0.00805738,Nickel,LB
+37077,0.01888161,Ammonia,TON
+37077,0.1952664,PM10 Primary (Filt + Cond),TON
+37077,0.1386837,PM2.5 Primary (Filt + Cond),TON
+37077,0.00219753,"Benzo[g,h,i,]Perylene",LB
+37077,0.1183964,Benz[a]Anthracene,LB
+37077,4.31871,Benzene,LB
+37077,52.38584,"2,2,4-Trimethylpentane",LB
+37077,0.00458286,Nickel,LB
+37077,0.06588958,Acenaphthene,LB
+37077,0.10171978,Fluoranthene,LB
+37077,0.03605782,Benzo[k]Fluoranthene,LB
+37059,2.884301,PM10-Primary from certain diesel engines,TON
+37059,4.485738,PM10 Primary (Filt + Cond),TON
+37059,0.2699084,Sulfate Portion of PM2.5-PRI,TON
+37059,0.3828152,Manganese,LB
+37059,3.64419,"1,3-Butadiene",LB
+37059,0.003039546,Benzo[k]Fluoranthene,LB
+37059,2.874432,"2,2,4-Trimethylpentane",LB
+37059,4.923119,Nitrogen Oxides,TON
+37059,0.6551028,Volatile Organic Compounds,TON
+37057,0.0004657486,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.005771752,Phenanthrene,LB
+37057,2.415209,Carbon Dioxide,TON
+37057,5.068462e-05,Sulfur Dioxide,TON
+37057,0.02437552,Volatile Organic Compounds,TON
+37055,0.0007481706,Nickel,LB
+37055,0.02582052,Acenaphthene,LB
+37055,0.05540678,Fluorene,LB
+37055,0.1345731,Carbon Monoxide,TON
+37055,50.81413,Carbon Dioxide,TON
+37055,0.00329764,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,154.08938,Ethyl Benzene,LB
+37051,0.00017909438,Chromium (VI),LB
+37051,0.1585586,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.10414488,Benzo[k]Fluoranthene,LB
+37051,171.67172,"2,2,4-Trimethylpentane",LB
+37051,0.2904231,Ammonia,TON
+37043,0.0007228444,Chrysene,LB
+37043,0.01467348,Phenanthrene,LB
+37043,14.953944,Toluene,LB
+37043,0.0007650354,Ammonia,TON
+37039,9.85874e-05,Chromium (VI),LB
+37039,0.005582888,Benzo[k]Fluoranthene,LB
+37039,0.00554514,"Dibenzo[a,h]Anthracene",LB
+37039,0.00010686892,Mercury,LB
+37039,0.002351592,Nitrate portion of PM2.5-PRI,TON
+37039,0.05340171,Sulfate Portion of PM2.5-PRI,TON
+37039,0.013764652,Manganese,LB
+37039,9.54457e-06,Mercury,LB
+37039,0.00908616,Nickel,LB
+37039,28.7824,Acetaldehyde,LB
+37039,0.009169096,Methane,TON
+37039,0.1455772,PM25-Primary from certain diesel engines,TON
+37039,0.0004581962,Nitrate portion of PM2.5-PRI,TON
+37039,1.409704e-05,Chromium (VI),LB
+37039,0.0019306364,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.08652254,Xylenes (Mixed Isomers),LB
+37025,0.13228924,Toluene,LB
+37025,1.6410102e-05,Manganese,LB
+37025,8.376721e-07,Sulfate Portion of PM2.5-PRI,TON
+37171,0.05369748,Ethyl Benzene,LB
+37171,0.3103794,Acrolein,LB
+37171,0.3170414,Xylenes (Mixed Isomers),LB
+37171,3.068646e-05,"Benzo[g,h,i,]Perylene",LB
+37167,3.9523,Acenaphthylene,LB
+37167,0.18890754,Manganese,LB
+37167,0.07436708,Nickel,LB
+37167,298.592,Acetaldehyde,LB
+37167,0.3544026,PM2.5 Primary (Filt + Cond),TON
+37161,7.947168e-07,PM10 Primary (Filt + Cond),TON
+37161,4.324398e-07,Anthracene,LB
+37161,9.363764e-11,Chromium (VI),LB
+37161,4.384104e-07,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,4.348746e-07,Benzo[a]Pyrene,LB
+37161,0.0003121372,"2,2,4-Trimethylpentane",LB
+37161,1.170475e-08,Nickel,LB
+37161,2.715928e-06,Phenanthrene,LB
+37161,2.563856e-05,Naphthalene,LB
+37161,1.617455e-07,Ammonia,TON
+37141,9.750987,Ammonia,TON
+37141,0.09536972,Sulfate Portion of PM2.5-PRI,TON
+37141,22231.64,Toluene,LB
+37141,1.808299,Benzo[b]Fluoranthene,LB
+37141,23.49936,Acenaphthylene,LB
+37129,108.5047,Xylenes (Mixed Isomers),LB
+37129,86.4838,"2,2,4-Trimethylpentane",LB
+37127,8.089816,Styrene,LB
+37127,44.27154,Acrolein,LB
+37127,0.0275022,"Benzo[g,h,i,]Perylene",LB
+37127,0.03474008,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.87325,Chrysene,LB
+37127,0.4574892,Benzo[a]Pyrene,LB
+37121,1.3420134,Ethyl Benzene,LB
+37121,0.3622896,Pyrene,LB
+37121,6.31556e-06,Chromium (VI),LB
+37121,0.2130026,Acenaphthylene,LB
+37121,0.04826744,Chrysene,LB
+37121,0.001328796,Nitrous Oxide,TON
+37121,0.08600962,PM2.5 Primary (Filt + Cond),TON
+37121,0.001708382,Sulfate Portion of PM2.5-PRI,TON
+37111,3.349868e-05,Arsenic,LB
+37111,0.002312806,Phenanthrene,LB
+37111,0.0002165197,Methane,TON
+37111,0.0266614,Nitrogen Oxides,TON
+37111,0.0007754001,PM10 Primary (Filt + Cond),TON
+37111,1.485685e-05,Sulfate Portion of PM2.5-PRI,TON
+37113,0.02487376,Acenaphthylene,LB
+37113,0.001903622,Benzo[a]Pyrene,LB
+37113,4.348192e-05,"Dibenzo[a,h]Anthracene",LB
+37101,10.085822,Acrolein,LB
+37101,0.4294834,Anthracene,LB
+37101,11.499092,Xylenes (Mixed Isomers),LB
+37101,0.007289988,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,3.654396,"2,2,4-Trimethylpentane",LB
+37101,0.001668595,Nitrate portion of PM2.5-PRI,TON
+37101,0.1387104,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.2926714,Benzo[b]Fluoranthene,LB
+37101,0.04033262,Benzo[k]Fluoranthene,LB
+37101,139.63576,Benzene,LB
+37101,0.237306,Nickel,LB
+37101,4.363736,Acenaphthene,LB
+37101,0.2247223,Sulfur Dioxide,TON
+37101,42.11496,Acrolein,LB
+37101,14.620878,"2,2,4-Trimethylpentane",LB
+37101,1.6495684,Acenaphthene,LB
+37101,0.3383005,Methane,TON
+37101,5022.82,Carbon Dioxide,TON
+37101,0.02783998,Arsenic,LB
+37101,0.484529,PM10 Primary (Filt + Cond),TON
+37101,0.1187737,Sulfur Dioxide,TON
+37101,4.633632,Styrene,LB
+37101,3.719602,Propionaldehyde,LB
+37101,0.4481928,"Benzo[g,h,i,]Perylene",LB
+37101,0.1009808,Benzo[b]Fluoranthene,LB
+37101,65.08604,Formaldehyde,LB
+37101,144.84714,"2,2,4-Trimethylpentane",LB
+37099,0.8444094,Hexane,LB
+37099,0.8808488,"2,2,4-Trimethylpentane",LB
+37099,0.09920392,Acenaphthene,LB
+37099,0.4017208,Phenanthrene,LB
+37099,3.561968,Naphthalene,LB
+37099,0.001032722,Nitrous Oxide,TON
+37099,0.01180331,Ammonia,TON
+37099,1.351233,Nitrogen Oxides,TON
+37099,0.01653303,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.01113957,Volatile Organic Compounds,TON
+37015,9.038046e-06,"Dibenzo[a,h]Anthracene",LB
+37015,0.0003332264,Fluorene,LB
+37015,0.03965434,Propionaldehyde,LB
+37015,1.866712e-06,Chromium (VI),LB
+37015,0.0002052068,Benzo[b]Fluoranthene,LB
+37015,0.0002903142,Fluoranthene,LB
+37015,0.000762904,Acenaphthylene,LB
+37163,6.650108,Acetaldehyde,LB
+37163,0.00557141,Methane,TON
+37163,4.505095e-06,Nitrate portion of PM2.5-PRI,TON
+37163,0.05877076,Acrolein,LB
+37163,0.13780866,Propionaldehyde,LB
+37163,0.0011273516,Pyrene,LB
+37163,0.0006735006,Benzo[b]Fluoranthene,LB
+37163,0.000513225,Chrysene,LB
+37163,0.2348046,"1,3-Butadiene",LB
+37163,2.019528,Hexane,LB
+37163,0.001891061,Benzo[k]Fluoranthene,LB
+37163,0.004829376,Manganese,LB
+37163,0.00341488,Fluorene,LB
+37163,0.002410902,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.00956259,"1,3-Butadiene",LB
+37149,0.0782032,Hexane,LB
+37149,0.00018933378,Pyrene,LB
+37149,6.104216e-06,"Dibenzo[a,h]Anthracene",LB
+37149,0.00011672288,Benz[a]Anthracene,LB
+37149,5.712976e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.014251228,Benzo[a]Pyrene,LB
+37105,0.0005165578,Mercury,LB
+37017,0.0009212416,Benzo[k]Fluoranthene,LB
+37017,0.02253586,Benzo[a]Pyrene,LB
+37017,11.582934,Acetaldehyde,LB
+37007,0.0012588492,"Benzo[g,h,i,]Perylene",LB
+37007,0.0013082488,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.0012432266,Arsenic,LB
+37007,0.005828295,Methane,TON
+37007,0.1022975,PM10-Primary from certain diesel engines,TON
+37007,0.09411676,PM25-Primary from certain diesel engines,TON
+37017,0.006075938,Styrene,LB
+37017,0.087288,Formaldehyde,LB
+37017,0.1803618,"2,2,4-Trimethylpentane",LB
+37003,10.57127,Styrene,LB
+37003,0.3759618,Anthracene,LB
+37003,0.04886096,Manganese,LB
+37059,3.57915e-05,Chromium (VI),LB
+37059,0.02957828,Acenaphthylene,LB
+37059,13.655198,Formaldehyde,LB
+37059,17.084712,Benzene,LB
+37059,0.005057227,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.009534856,Anthracene,LB
+37047,0.009589334,Nickel,LB
+37029,0.3964068,Ethyl Benzene,LB
+37029,1.1867982,"2,2,4-Trimethylpentane",LB
+37125,0.06608928,Naphthalene,LB
+37125,0.01209394,Ammonia,TON
+37125,0.0001277044,Sulfate Portion of PM2.5-PRI,TON
+37125,0.002569134,Benzo[a]Pyrene,LB
+37125,5.974372e-05,"Dibenzo[a,h]Anthracene",LB
+37125,0.0012671654,Acenaphthene,LB
+37125,0.00719977,Phenanthrene,LB
+37125,0.002566708,Fluorene,LB
+37125,0.1412889,Acrolein,LB
+37199,2.09643,Benzo[a]Pyrene,LB
+37199,14358.354,Xylenes (Mixed Isomers),LB
+37199,0.0027751,Chromium (VI),LB
+37199,9.918804,Fluoranthene,LB
+37199,1.684362,Benzo[k]Fluoranthene,LB
+37199,31.1599,Acenaphthylene,LB
+37199,109.612,Volatile Organic Compounds,TON
+37199,4.264034,Ammonia,TON
+37199,0.006001179,Nitrate portion of PM2.5-PRI,TON
+37197,4.875832,Anthracene,LB
+37197,9.43114,Pyrene,LB
+37197,0.03475682,Benzo[b]Fluoranthene,LB
+37197,1743.7064,Formaldehyde,LB
+37197,1.1793234,Benz[a]Anthracene,LB
+37197,0.000366287,Mercury,LB
+37197,1.172107,Elemental Carbon portion of PM2.5-PRI,TON
+37197,20.098,Benzene,LB
+37195,0.0013968866,Benzo[b]Fluoranthene,LB
+37195,0.3067422,Fluoranthene,LB
+37195,0.02112932,Chrysene,LB
+37195,0.01769581,PM10-Primary from certain diesel engines,TON
+37195,0.008773793,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.02160149,PM2.5 Primary (Filt + Cond),TON
+37193,1394.4884,Xylenes (Mixed Isomers),LB
+37193,0.4484918,Fluoranthene,LB
+37193,616.7166,"2,2,4-Trimethylpentane",LB
+37193,0.2623764,Anthracene,LB
+37193,419.862,Benzene,LB
+37193,0.02425036,Manganese,LB
+37193,15.914098,Naphthalene,LB
+37193,0.1437152,Methane,TON
+37187,0.004838978,Benzo[k]Fluoranthene,LB
+37187,0.3231828,Styrene,LB
+37187,0.000165789,"Dibenzo[a,h]Anthracene",LB
+37181,0.09438132,Ethyl Benzene,LB
+37181,0.003151242,Acrolein,LB
+37181,0.5212906,Toluene,LB
+37181,7.934328e-05,Nitrous Oxide,TON
+37181,0.00016760312,Acenaphthene,LB
+37189,0.2786203,Methane,TON
+37189,0.1021157,Ammonia,TON
+37189,1.294085,PM10 Primary (Filt + Cond),TON
+37189,2.117462,Volatile Organic Compounds,TON
+37189,10.092694,Hexane,LB
+37189,1.2231504,Anthracene,LB
+37189,10.713718,"2,2,4-Trimethylpentane",LB
+37185,640.6792,Toluene,LB
+37185,0.0312209,Chrysene,LB
+37185,0.001086311,"Dibenzo[a,h]Anthracene",LB
+37185,132.44404,Benzene,LB
+37185,0.5571348,Phenanthrene,LB
+37185,0.006733318,Elemental Carbon portion of PM2.5-PRI,TON
+37185,1.494443,Nitrogen Oxides,TON
+37179,12.264698,Benzo[a]Pyrene,LB
+37179,32.5088,Anthracene,LB
+37193,47.1707,Acetaldehyde,LB
+37193,0.0031209,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.6507942,Fluoranthene,LB
+37183,0.3032738,Pyrene,LB
+37183,0.05525598,Benz[a]Anthracene,LB
+37183,0.07342478,Nitrous Oxide,TON
+37085,0.0014641512,"Dibenzo[a,h]Anthracene",LB
+37085,1.0061598,Phenanthrene,LB
+37085,10.689834,Naphthalene,LB
+37085,6.346812,Xylenes (Mixed Isomers),LB
+37085,0.5426158,Acenaphthylene,LB
+37085,74.40112,Ethyl Benzene,LB
+37085,73.6636,"1,3-Butadiene",LB
+37085,12.237426,Pyrene,LB
+37085,0.00417899,Nitrate portion of PM2.5-PRI,TON
+37085,0.0623528,Benzo[b]Fluoranthene,LB
+37067,14.574828,Xylenes (Mixed Isomers),LB
+37067,0.2258988,Chrysene,LB
+37067,0.4468701,PM2.5 Primary (Filt + Cond),TON
+37067,4.749634,"1,3-Butadiene",LB
+37067,7.321492e-05,Mercury,LB
+37067,3.825798,Carbon Monoxide,TON
+37067,0.00594402,Nitrous Oxide,TON
+37063,12.75867,Acetaldehyde,LB
+37063,0.002155344,Naphthalene,LB
+37063,1.030122,Methane,TON
+37063,0.3665006,Acrolein,LB
+37063,0.0002569478,Anthracene,LB
+37063,8.513242e-05,Benz[a]Anthracene,LB
+37063,0.0006658338,Arsenic,LB
+37053,0.8283707,PM25-Primary from certain diesel engines,TON
+37053,0.09208711,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,11.489854,Toluene,LB
+37053,180.23134,Formaldehyde,LB
+37053,0.008194296,Arsenic,LB
+37053,5.270002,Carbon Monoxide,TON
+37053,11.03303,Xylenes (Mixed Isomers),LB
+37053,0.008854414,"Benzo[g,h,i,]Perylene",LB
+37053,0.2803802,Chrysene,LB
+37053,17.305798,Benzene,LB
+37053,2.715738,Styrene,LB
+37053,0.001076034,Manganese,LB
+37053,0.0014187494,Benzo[b]Fluoranthene,LB
+37053,0.0251372,Acenaphthylene,LB
+37045,0.09564112,Sulfur Dioxide,TON
+37045,0.11352756,Nickel,LB
+37045,18.50201,Carbon Monoxide,TON
+37045,0.00989237,Nitrate portion of PM2.5-PRI,TON
+37045,3.084982,PM10 Primary (Filt + Cond),TON
+37045,20.91046,Hexane,LB
+37045,0.16772114,Benzo[b]Fluoranthene,LB
+37047,0.4307341,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.2604436,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,48.84812,Styrene,LB
+37047,279.6268,"1,3-Butadiene",LB
+37047,6690.866,Toluene,LB
+37047,9.389486,Acenaphthylene,LB
+37047,0.5721836,Benz[a]Anthracene,LB
+37047,107.05832,Naphthalene,LB
+37045,0.04018828,Benzo[b]Fluoranthene,LB
+37045,73.70878,Ethyl Benzene,LB
+37045,0.05993754,Benzo[a]Pyrene,LB
+37045,0.005911452,Nickel,LB
+37045,0.11345894,Acenaphthene,LB
+37045,0.1849928,PM10 Primary (Filt + Cond),TON
+37033,0.314618,"1,3-Butadiene",LB
+37033,0.04901684,Acrolein,LB
+37033,1.4324226e-05,Mercury,LB
+37033,0.1513076,Nitrogen Oxides,TON
+37025,2.09518e-09,Chromium (VI),LB
+37025,4.0156e-07,Arsenic,LB
+37025,0.0004319684,Acetaldehyde,LB
+37025,0.002265269,Carbon Monoxide,TON
+37025,3.678188e-06,Ammonia,TON
+37025,2.452445e-05,Volatile Organic Compounds,TON
+37029,17.45009,Carbon Dioxide,TON
+37029,0.492177,Ethyl Benzene,LB
+37029,0.02130514,Styrene,LB
+37029,0.03672121,Nitrogen Oxides,TON
+37029,0.0013553376,Fluoranthene,LB
+37029,0.0003332128,Benzo[a]Pyrene,LB
+37029,1.0959382,Benzene,LB
+37175,0.009474938,Naphthalene,LB
+37175,0.0002160428,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.00017700756,Benzo[b]Fluoranthene,LB
+37155,0.07919584,Styrene,LB
+37155,6.184706,Xylenes (Mixed Isomers),LB
+37155,4.746424,Formaldehyde,LB
+37155,8.89919,Benzene,LB
+37155,0.0055459,Fluorene,LB
+37177,0.007452038,Benz[a]Anthracene,LB
+37177,22.00858,Ethyl Benzene,LB
+37177,36.85018,Hexane,LB
+37177,81.80956,Xylenes (Mixed Isomers),LB
+37177,1.034647e-05,Chromium (VI),LB
+37177,3.038082e-05,Nitrate portion of PM2.5-PRI,TON
+37177,0.0003167196,Sulfate Portion of PM2.5-PRI,TON
+37169,0.18437924,Xylenes (Mixed Isomers),LB
+37169,7.802758e-07,"Dibenzo[a,h]Anthracene",LB
+37169,2.382628e-05,Benz[a]Anthracene,LB
+37169,0.00401961,Naphthalene,LB
+37169,8.142672e-07,Sulfate Portion of PM2.5-PRI,TON
+37165,3.047512,Propionaldehyde,LB
+37165,0.0016125532,"Benzo[g,h,i,]Perylene",LB
+37165,1.3283278,"2,2,4-Trimethylpentane",LB
+37165,5.278698,Benzene,LB
+37165,0.016879574,Manganese,LB
+37165,0.0003928663,Nitrate portion of PM2.5-PRI,TON
+37165,0.005786059,Sulfur Dioxide,TON
+37163,0.4915805,PM2.5 Primary (Filt + Cond),TON
+37163,0.0790351,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.01045789,Sulfur Dioxide,TON
+37163,2.737174,Styrene,LB
+37163,2.643118e-05,Mercury,LB
+37163,1195.839,Carbon Dioxide,TON
+37163,0.5197532,PM10-Primary from certain diesel engines,TON
+37161,4.902824,Ethyl Benzene,LB
+37161,0.0012967936,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.11292594,Benz[a]Anthracene,LB
+37161,3.585442e-05,Mercury,LB
+37161,1021.941,Carbon Dioxide,TON
+37161,0.1580826,PM10-Primary from certain diesel engines,TON
+37161,0.02663131,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.04327492,"Benzo[g,h,i,]Perylene",LB
+37161,0.012299398,Benz[a]Anthracene,LB
+37161,0.018770436,Manganese,LB
+37161,0.00013735594,Mercury,LB
+37161,14.07182,Acetaldehyde,LB
+37161,0.23719,Phenanthrene,LB
+37161,0.003452291,Elemental Carbon portion of PM2.5-PRI,TON
+37159,1530.5632,Hexane,LB
+37159,13.240902,Propionaldehyde,LB
+37159,0.2293836,Benzo[k]Fluoranthene,LB
+37159,0.00714315,"Dibenzo[a,h]Anthracene",LB
+37159,179.47634,Acetaldehyde,LB
+37159,0.3134098,PM2.5 Primary (Filt + Cond),TON
+37159,0.09717729,Sulfur Dioxide,TON
+37159,27.52665,Volatile Organic Compounds,TON
+37151,6.277006,PM2.5 Primary (Filt + Cond),TON
+37151,73.08776,Hexane,LB
+37151,94.21782,Propionaldehyde,LB
+37151,365.8956,Xylenes (Mixed Isomers),LB
+37151,0.0006529634,Chromium (VI),LB
+37151,0.04052156,Styrene,LB
+37151,0.002856184,Pyrene,LB
+37151,0.000663272,Benz[a]Anthracene,LB
+37151,0.003376678,Fluorene,LB
+37151,7.483345,Carbon Dioxide,TON
+37151,3.037688e-05,Sulfate Portion of PM2.5-PRI,TON
+37139,5.431331,Carbon Monoxide,TON
+37139,0.8712133,PM25-Primary from certain diesel engines,TON
+37139,1.227985,PM10 Primary (Filt + Cond),TON
+37139,0.1108912,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.0196822,Sulfate Portion of PM2.5-PRI,TON
+37191,15.7782,Carbon Monoxide,TON
+37191,0.03041495,Nitrous Oxide,TON
+37191,0.011523864,Anthracene,LB
+37191,0.01700586,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.152636,PM10 Primary (Filt + Cond),TON
+37159,15.73723,PM2.5 Primary (Filt + Cond),TON
+37159,9.662572,Chrysene,LB
+37159,0.2982214,"Dibenzo[a,h]Anthracene",LB
+37159,26002.6,"2,2,4-Trimethylpentane",LB
+37153,0.3409138,Styrene,LB
+37153,9.40235e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.0003688706,Benzo[b]Fluoranthene,LB
+37153,0.006500904,Chrysene,LB
+37153,0.004367894,PM25-Primary from certain diesel engines,TON
+37153,0.001868911,Sulfur Dioxide,TON
+37147,11.450944,Styrene,LB
+37147,0.649406,Benzo[a]Pyrene,LB
+37147,84.05214,Benzene,LB
+37147,0.6628104,Methane,TON
+37147,12468.07,Carbon Dioxide,TON
+37147,2.089985,PM25-Primary from certain diesel engines,TON
+37145,63.8821,Toluene,LB
+37145,0.013200144,"Benzo[g,h,i,]Perylene",LB
+37145,0.00015844322,Mercury,LB
+37145,8.894276,Phenanthrene,LB
+37145,0.5118503,Elemental Carbon portion of PM2.5-PRI,TON
+37145,8.127968,"1,3-Butadiene",LB
+37145,0.014024448,Benzo[b]Fluoranthene,LB
+37145,0.08533788,Fluoranthene,LB
+37145,24.0917,Carbon Monoxide,TON
+37145,0.01216157,Sulfur Dioxide,TON
+37145,0.002523086,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.013838404,Fluoranthene,LB
+37145,0.00217259,Benzo[k]Fluoranthene,LB
+37145,0.0004151494,Manganese,LB
+37145,0.05193882,Phenanthrene,LB
+37145,0.1272694,Nitrogen Oxides,TON
+37145,0.1748399,Volatile Organic Compounds,TON
+37145,6.017832,Ethyl Benzene,LB
+37141,9.313706e-05,Benz[a]Anthracene,LB
+37141,0.0007066208,Arsenic,LB
+37141,1.188477,Carbon Monoxide,TON
+37141,189.8166,Carbon Dioxide,TON
+37141,0.0009915524,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.02528598,PM10 Primary (Filt + Cond),TON
+37135,0.04535366,Organic Carbon portion of PM2.5-PRI,TON
+37135,1.2430218,"1,3-Butadiene",LB
+37135,0.0018034128,"Benzo[g,h,i,]Perylene",LB
+37135,4.548716,Naphthalene,LB
+37135,0.02756064,Methane,TON
+37135,0.02292994,Acrolein,LB
+37135,1.2974098,Benzene,LB
+37135,0.007936688,Phenanthrene,LB
+37135,8.181622e-05,Sulfur Dioxide,TON
+37091,0.006997914,Ethyl Benzene,LB
+37091,0.001524114,"1,3-Butadiene",LB
+37091,0.02583858,Xylenes (Mixed Isomers),LB
+37091,1.351018e-09,Chromium (VI),LB
+37091,5.159336e-05,Acenaphthylene,LB
+37091,0.08788548,Carbon Dioxide,TON
+37091,1.170497e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.2704618,PM10-Primary from certain diesel engines,TON
+37083,0.1944472,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.006797764,Benzo[b]Fluoranthene,LB
+37081,38.5303,Anthracene,LB
+37081,115498.06,Xylenes (Mixed Isomers),LB
+37081,78.26894,"Benzo[g,h,i,]Perylene",LB
+37081,47268.66,Benzene,LB
+37081,2308.474,Naphthalene,LB
+37081,22.78478,Nitrous Oxide,TON
+37081,17.9441,Organic Carbon portion of PM2.5-PRI,TON
+37081,24.55866,Sulfur Dioxide,TON
+37079,0.06178295,PM10 Primary (Filt + Cond),TON
+37079,1.9748102,Acrolein,LB
+37079,0.12006554,"Benzo[g,h,i,]Perylene",LB
+37079,0.04511064,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,136.87202,Benzene,LB
+37079,0.0004456974,Mercury,LB
+37079,0.006444481,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.004931906,Nitrous Oxide,TON
+37079,0.09543834,Ammonia,TON
+37079,0.02481866,Organic Carbon portion of PM2.5-PRI,TON
+37077,17.153008,Propionaldehyde,LB
+37077,7.565694e-05,Mercury,LB
+37077,0.01581921,Arsenic,LB
+37077,1.64596,PM10-Primary from certain diesel engines,TON
+37077,0.1640938,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.1872532,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,2.044094,Pyrene,LB
+37073,0.3823382,Benzo[b]Fluoranthene,LB
+37073,0.331974,Manganese,LB
+37073,0.2562314,Arsenic,LB
+37073,63.31106,Naphthalene,LB
+37073,0.5313997,Nitrous Oxide,TON
+37069,1.309156e-06,Chromium (VI),LB
+37069,0.000393155,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.016656118,Benz[a]Anthracene,LB
+37069,0.01567145,PM25-Primary from certain diesel engines,TON
+37069,8.98389e-05,Nitrate portion of PM2.5-PRI,TON
+37059,0.00014723612,Anthracene,LB
+37059,55.10946,Formaldehyde,LB
+37049,0.7652172,Acenaphthylene,LB
+37049,0.002146036,"Dibenzo[a,h]Anthracene",LB
+37049,0.04408254,Methane,TON
+37049,0.3062493,PM10-Primary from certain diesel engines,TON
+37049,0.1702096,Elemental Carbon portion of PM2.5-PRI,TON
+37049,10.28649,Nitrogen Oxides,TON
+37049,0.04269861,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,1.5645496e-07,Arsenic,LB
+37047,0.0009411798,Acetaldehyde,LB
+37047,1.777772e-05,Phenanthrene,LB
+37047,0.05331993,Carbon Dioxide,TON
+37047,5.449763e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37047,2.044117e-06,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.001862636,Hexane,LB
+37047,2.846118e-06,Anthracene,LB
+37047,8.162958e-10,Chromium (VI),LB
+37047,3.667876e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,1.10636,Hexane,LB
+37043,0.0009408934,Anthracene,LB
+37043,0.3429354,Formaldehyde,LB
+37043,0.0010990906,Acenaphthene,LB
+37043,0.001694466,PM10 Primary (Filt + Cond),TON
+37043,0.02229105,Volatile Organic Compounds,TON
+37047,2.713304,Benzene,LB
+37047,1.925744e-06,Mercury,LB
+37047,0.001098737,Nitrous Oxide,TON
+37047,0.0002991221,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.05371369,Volatile Organic Compounds,TON
+37047,10.775646,Toluene,LB
+37047,9874.874,Ethyl Benzene,LB
+37047,36338.02,Xylenes (Mixed Isomers),LB
+37047,4.359616,Benzo[b]Fluoranthene,LB
+37047,76.63846,Acenaphthylene,LB
+37047,5381.612,Formaldehyde,LB
+37047,11777.504,"2,2,4-Trimethylpentane",LB
+37047,16.834506,Acenaphthene,LB
+37047,91.31768,Phenanthrene,LB
+37047,3.15711,Organic Carbon portion of PM2.5-PRI,TON
+37041,8.279026e-05,Nickel,LB
+37041,1.0604612,Acetaldehyde,LB
+37041,0.14622054,Naphthalene,LB
+37041,1.665488,Carbon Monoxide,TON
+37041,3.235687e-05,Sulfate Portion of PM2.5-PRI,TON
+37041,0.0648308,Styrene,LB
+37041,0.0742404,Acrolein,LB
+37041,0.002399166,Anthracene,LB
+37033,0.00625133,Acrolein,LB
+37033,0.0009679838,"Benzo[g,h,i,]Perylene",LB
+37033,0.0017982986,Acenaphthylene,LB
+37033,0.3589114,Benzene,LB
+37033,1.1305224e-05,Arsenic,LB
+37033,0.002166192,Phenanthrene,LB
+37033,0.0001801483,Nitrous Oxide,TON
+37033,0.01631282,Nitrogen Oxides,TON
+37141,0.0249722,Pyrene,LB
+37141,0.005635256,Chrysene,LB
+37141,0.005743039,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.0003335011,Sulfate Portion of PM2.5-PRI,TON
+37141,0.12397698,Acrolein,LB
+37141,0.01547645,"Benzo[g,h,i,]Perylene",LB
+37141,4.709534,"2,2,4-Trimethylpentane",LB
+37141,0.003825775,Methane,TON
+37141,0.01841594,PM10 Primary (Filt + Cond),TON
+37141,0.007001521,PM2.5 Primary (Filt + Cond),TON
+37137,0.3697312,Volatile Organic Compounds,TON
+37125,0.4943136,PM10 Primary (Filt + Cond),TON
+37125,0.01647332,Sulfur Dioxide,TON
+37125,3.422976e-05,Chromium (VI),LB
+37125,0.006315644,Arsenic,LB
+37125,18.519122,Naphthalene,LB
+37125,0.3009329,PM25-Primary from certain diesel engines,TON
+37125,0.001109995,Nitrate portion of PM2.5-PRI,TON
+37107,2.06177,Acenaphthylene,LB
+37107,0.31308,Benzo[a]Pyrene,LB
+37107,8.901022,"2,2,4-Trimethylpentane",LB
+37107,1.0098138,Benz[a]Anthracene,LB
+37107,0.1588252,Manganese,LB
+37107,0.018697654,"Benzo[g,h,i,]Perylene",LB
+37107,0.02376916,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,3.070192,Fluoranthene,LB
+37107,158.68866,Acetaldehyde,LB
+37107,1.61857,PM25-Primary from certain diesel engines,TON
+37107,0.9916821,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.007460206,Benzo[b]Fluoranthene,LB
+37107,0.04138728,Fluoranthene,LB
+37107,0.007460206,Benzo[k]Fluoranthene,LB
+37107,14.09428,Carbon Monoxide,TON
+37107,0.01053614,Sulfur Dioxide,TON
+37087,61.7442,Toluene,LB
+37087,1.0618166,Chrysene,LB
+37087,5.220584,Fluorene,LB
+37087,16.9936,Carbon Monoxide,TON
+37073,0.18951006,Benz[a]Anthracene,LB
+37073,0.6061206,Fluorene,LB
+37073,0.0009831017,Nitrate portion of PM2.5-PRI,TON
+37073,0.02596045,Sulfur Dioxide,TON
+37073,0.0210163,Sulfate Portion of PM2.5-PRI,TON
+37073,0.004263126,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.002325704,Benzo[k]Fluoranthene,LB
+37073,97.74792,Formaldehyde,LB
+37081,6.684206,Propionaldehyde,LB
+37081,259.1924,"2,2,4-Trimethylpentane",LB
+37081,0.14699496,Benz[a]Anthracene,LB
+37081,0.04839358,Elemental Carbon portion of PM2.5-PRI,TON
+37081,17.14996,Nitrogen Oxides,TON
+37081,0.3059075,PM2.5 Primary (Filt + Cond),TON
+37053,0.802573,Acenaphthene,LB
+37053,0.3238376,Methane,TON
+37053,36.05113,Nitrogen Oxides,TON
+37053,1.387086,PM2.5 Primary (Filt + Cond),TON
+37053,0.007238362,Benzo[k]Fluoranthene,LB
+37067,159.3353,Ethyl Benzene,LB
+37067,0.406756,Fluoranthene,LB
+37067,0.0317563,Arsenic,LB
+37067,1.4774274,Phenanthrene,LB
+37061,11.73949,Acetaldehyde,LB
+37061,0.08605336,Acenaphthene,LB
+37061,0.1834584,Fluorene,LB
+37061,0.02607359,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.1804893,PM10 Primary (Filt + Cond),TON
+37061,0.1343475,PM2.5 Primary (Filt + Cond),TON
+37061,0.0007244134,Benzo[k]Fluoranthene,LB
+37043,0.9721296,Styrene,LB
+37043,8.30706,Toluene,LB
+37043,2.377662,Hexane,LB
+37043,3.994936,Propionaldehyde,LB
+37043,0.004526833,Nitrous Oxide,TON
+37043,11.24069,Nitrogen Oxides,TON
+37043,0.07236209,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.03868478,Sulfur Dioxide,TON
+37039,0.02848266,Methane,TON
+37039,0.005694813,Ammonia,TON
+37039,0.01759236,PM10 Primary (Filt + Cond),TON
+37039,0.9448874,Hexane,LB
+37039,0.0839488,Anthracene,LB
+37039,0.4488154,Styrene,LB
+37039,2.986558,Toluene,LB
+37047,0.0320035,Acenaphthylene,LB
+37047,2.315286,Formaldehyde,LB
+37047,0.0385183,Phenanthrene,LB
+37047,0.004535087,Methane,TON
+37047,0.01761605,PM10 Primary (Filt + Cond),TON
+37047,0.003994829,Sulfur Dioxide,TON
+37039,2.374228,Hexane,LB
+37039,0.004465818,Fluoranthene,LB
+37039,0.0008663594,Chrysene,LB
+37039,2.419636,"2,2,4-Trimethylpentane",LB
+37039,0.00015568702,Manganese,LB
+37039,7.440194,Propionaldehyde,LB
+37039,786.818,Xylenes (Mixed Isomers),LB
+37039,0.1224696,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.096009,Benzo[b]Fluoranthene,LB
+37039,0.539745,Fluoranthene,LB
+37039,127.75092,Acetaldehyde,LB
+37037,15.15138,Benzene,LB
+37037,0.02051954,Methane,TON
+37037,2.111326e-05,Nitrate portion of PM2.5-PRI,TON
+37035,1.7047616,Acrolein,LB
+37035,0.0193582,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.1251867,Volatile Organic Compounds,TON
+37031,0.226069,Propionaldehyde,LB
+37031,3.647178,Formaldehyde,LB
+37031,5.339702e-05,"Dibenzo[a,h]Anthracene",LB
+37031,1.931671e-05,Mercury,LB
+37031,0.06247488,Phenanthrene,LB
+37031,0.001366877,Organic Carbon portion of PM2.5-PRI,TON
+37025,22.19526,Acetaldehyde,LB
+37025,0.2703694,PM10-Primary from certain diesel engines,TON
+37025,0.1597834,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.02050282,Ammonia,TON
+37025,1.3396778,Hexane,LB
+37025,2.496502,Propionaldehyde,LB
+37025,0.011357212,Benzo[b]Fluoranthene,LB
+37025,0.0015819394,Benzo[k]Fluoranthene,LB
+37025,123.2084,Volatile Organic Compounds,TON
+37199,1.7163342,Styrene,LB
+37199,7.26103,Toluene,LB
+37199,0.9266062,Fluoranthene,LB
+37199,113.91498,Formaldehyde,LB
+37199,2.286906e-05,Mercury,LB
+37199,50.20912,Acetaldehyde,LB
+37199,0.0022978,Nitrous Oxide,TON
+37199,0.02497536,Ammonia,TON
+37199,0.01483901,Sulfur Dioxide,TON
+37193,0.0854896,Naphthalene,LB
+37193,0.002324041,Methane,TON
+37193,0.000331112,Organic Carbon portion of PM2.5-PRI,TON
+37193,1.4574932,Hexane,LB
+37193,1.4558082e-05,Arsenic,LB
+37195,11.450844,Ethyl Benzene,LB
+37195,8.743366,Hexane,LB
+37195,26.18324,Xylenes (Mixed Isomers),LB
+37195,0.07034978,Anthracene,LB
+37195,4.910938e-05,Chromium (VI),LB
+37195,0.12293564,Fluoranthene,LB
+37195,0.367948,Acenaphthylene,LB
+37195,0.001526969,"Dibenzo[a,h]Anthracene",LB
+37195,25.75326,Acetaldehyde,LB
+37195,39.20894,Carbon Monoxide,TON
+37195,0.0373693,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.001447191,"1,3-Butadiene",LB
+37189,0.03589504,Toluene,LB
+37189,9.703464e-06,Anthracene,LB
+37189,0.0002272322,Propionaldehyde,LB
+37189,1.4283428e-09,Chromium (VI),LB
+37189,4.308524e-06,Benzo[b]Fluoranthene,LB
+37189,5.12343e-05,Acenaphthylene,LB
+37189,0.007751248,"2,2,4-Trimethylpentane",LB
+37189,1.939078e-08,Nitrate portion of PM2.5-PRI,TON
+37189,3.590243e-06,Organic Carbon portion of PM2.5-PRI,TON
+37189,1.260533e-05,PM10 Primary (Filt + Cond),TON
+37019,1.0390944,Pyrene,LB
+37019,1184.5766,"2,2,4-Trimethylpentane",LB
+37019,0.03133058,Nickel,LB
+37019,0.03582273,Elemental Carbon portion of PM2.5-PRI,TON
+37019,7.613804,Nitrogen Oxides,TON
+37019,0.06614367,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,1.3515054,Fluorene,LB
+37015,0.002490235,Nitrate portion of PM2.5-PRI,TON
+37015,6.094862,"1,3-Butadiene",LB
+37015,4.452422,Hexane,LB
+37015,0.01100479,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.04322034,Benzo[b]Fluoranthene,LB
+37015,0.2786758,Chrysene,LB
+37015,0.4754212,Benz[a]Anthracene,LB
+37003,0.7756658,Anthracene,LB
+37003,11.056436,Propionaldehyde,LB
+37003,0.06883736,Manganese,LB
+37003,2.613374,Phenanthrene,LB
+37003,5.849625,Carbon Monoxide,TON
+37003,0.8908085,PM25-Primary from certain diesel engines,TON
+37023,8.34781,Anthracene,LB
+37023,0.0006315514,Chromium (VI),LB
+37023,2.338782,Benz[a]Anthracene,LB
+37023,161.8538,Carbon Monoxide,TON
+37023,2.666399,PM10-Primary from certain diesel engines,TON
+37023,0.4730947,Ammonia,TON
+37023,3.430641,PM10 Primary (Filt + Cond),TON
+37023,0.1330607,Sulfur Dioxide,TON
+37003,0.000206378,Arsenic,LB
+37003,0.01494211,Pyrene,LB
+37003,1.0766568e-06,Chromium (VI),LB
+37003,6.609168e-05,Sulfate Portion of PM2.5-PRI,TON
+37001,36.72176,Benzene,LB
+37039,0.015507672,Acrolein,LB
+37039,0.0356338,Propionaldehyde,LB
+37039,1.2518244e-05,Mercury,LB
+37039,0.007709084,Naphthalene,LB
+37039,0.0006337181,Sulfur Dioxide,TON
+37039,0.009745308,Volatile Organic Compounds,TON
+37039,0.000292964,Benzo[a]Pyrene,LB
+37035,0.00267294,Benzo[a]Pyrene,LB
+37035,0.0010291182,Acenaphthene,LB
+37035,0.005936444,Phenanthrene,LB
+37035,0.004210519,PM2.5 Primary (Filt + Cond),TON
+37037,0.3284548,Naphthalene,LB
+37037,0.04921719,Ammonia,TON
+37037,0.05932985,PM10 Primary (Filt + Cond),TON
+37037,0.005873788,Anthracene,LB
+37165,0.007192002,Styrene,LB
+37165,0.519975,Xylenes (Mixed Isomers),LB
+37165,48.03934,Carbon Dioxide,TON
+37165,0.000419396,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.017631562,Benzo[b]Fluoranthene,LB
+37147,0.2339431,PM10 Primary (Filt + Cond),TON
+37147,0.02425741,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,1.098896,Volatile Organic Compounds,TON
+37147,1.8912714,"1,3-Butadiene",LB
+37147,1.6034446,Acrolein,LB
+37147,44.15902,Benzene,LB
+37119,6.70794,Acrolein,LB
+37119,0.120151,Fluoranthene,LB
+37119,0.3036972,Acenaphthylene,LB
+37119,0.004356652,"Dibenzo[a,h]Anthracene",LB
+37119,0.0833425,Benz[a]Anthracene,LB
+37119,0.09134804,Nickel,LB
+37119,0.6499426,Methane,TON
+37091,2.011474,Benzene,LB
+37091,7.419168,Acetaldehyde,LB
+37091,0.0012762016,Fluorene,LB
+37091,0.8292738,Carbon Monoxide,TON
+37091,0.001658452,PM2.5 Primary (Filt + Cond),TON
+37091,0.000545144,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.377568,Ethyl Benzene,LB
+37091,0.0691648,Acrolein,LB
+37091,1.6404528,Toluene,LB
+37091,0.0005777756,Anthracene,LB
+37091,1.3814274,Xylenes (Mixed Isomers),LB
+37091,0.00306202,"Benzo[g,h,i,]Perylene",LB
+37173,8.418576,Toluene,LB
+37173,8.009898,Xylenes (Mixed Isomers),LB
+37173,0.10537696,Benzo[a]Pyrene,LB
+37173,15.022568,Naphthalene,LB
+37173,0.6499157,PM2.5 Primary (Filt + Cond),TON
+37193,28.19598,Ethyl Benzene,LB
+37193,0.0003574274,Mercury,LB
+37193,3.692258,Fluorene,LB
+37193,84.62442,Naphthalene,LB
+37193,1.515409,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.2365725,Sulfate Portion of PM2.5-PRI,TON
+37185,20.15658,Ethyl Benzene,LB
+37185,1.0061906,Anthracene,LB
+37185,81.6167,Xylenes (Mixed Isomers),LB
+37185,0.005720976,Benzo[k]Fluoranthene,LB
+37185,0.13256804,Benzo[a]Pyrene,LB
+37185,0.12635248,Manganese,LB
+37185,0.05607,Nickel,LB
+37185,242.4936,Acetaldehyde,LB
+37185,0.1348741,Sulfur Dioxide,TON
+37195,0.0001610292,Ammonia,TON
+37195,7.877543e-05,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.0001485578,PM2.5 Primary (Filt + Cond),TON
+37195,0.0003727682,"Benzo[g,h,i,]Perylene",LB
+37195,449.6308,Benzene,LB
+37189,8.425648e-06,Chromium (VI),LB
+37189,0.7811084,"2,2,4-Trimethylpentane",LB
+37189,0.06862476,Benz[a]Anthracene,LB
+37189,2.649508,Benzene,LB
+37189,0.003995244,Nickel,LB
+37189,0.6600991,Carbon Monoxide,TON
+37189,316.3868,Carbon Dioxide,TON
+37187,0.0002207579,Elemental Carbon portion of PM2.5-PRI,TON
+37187,2.425544e-06,Nitrate portion of PM2.5-PRI,TON
+37187,0.0008674772,PM2.5 Primary (Filt + Cond),TON
+37187,0.003778636,Pyrene,LB
+37187,0.7277786,Formaldehyde,LB
+37187,0.0006500734,Benz[a]Anthracene,LB
+37187,0.002760372,Methane,TON
+37179,0.03497498,"Dibenzo[a,h]Anthracene",LB
+37179,2.790582,Benz[a]Anthracene,LB
+37179,0.14041182,Nickel,LB
+37179,563.6934,Acetaldehyde,LB
+37179,8.149296,Fluorene,LB
+37023,0.09350678,Benzo[a]Pyrene,LB
+37023,0.12511416,Anthracene,LB
+37023,0.04029762,Manganese,LB
+37023,0.03299661,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,6.78332e-06,Chromium (VI),LB
+37199,23.44354,"2,2,4-Trimethylpentane",LB
+37199,6.800192e-05,Mercury,LB
+37199,8.895194,Acetaldehyde,LB
+37199,0.02583924,Acenaphthene,LB
+37199,0.000206719,Sulfate Portion of PM2.5-PRI,TON
+37197,0.9867604,Benz[a]Anthracene,LB
+37197,44.52496,Xylenes (Mixed Isomers),LB
+37197,0.02152604,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,236.6754,Acetaldehyde,LB
+37197,0.3464822,Methane,TON
+37197,2.653671,PM10-Primary from certain diesel engines,TON
+37197,0.004948258,Nitrate portion of PM2.5-PRI,TON
+37195,29.33478,Formaldehyde,LB
+37195,0.0013169434,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.005166184,Benzo[b]Fluoranthene,LB
+37195,0.3250406,Phenanthrene,LB
+37195,0.18315392,Fluorene,LB
+37195,3.092592,Naphthalene,LB
+37195,0.0919026,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.01448816,Ammonia,TON
+37193,0.012163724,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.005118926,Chrysene,LB
+37193,15.367886,Formaldehyde,LB
+37193,0.04022366,Phenanthrene,LB
+37193,0.04908185,Methane,TON
+37193,7.033195,Carbon Monoxide,TON
+37193,0.4600573,Volatile Organic Compounds,TON
+37185,0.000523235,"Dibenzo[a,h]Anthracene",LB
+37185,1.3089114,Naphthalene,LB
+37185,565.8048,Carbon Dioxide,TON
+37185,0.01713901,Nitrous Oxide,TON
+37185,0.05193189,PM10 Primary (Filt + Cond),TON
+37185,0.007244628,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.01186077,Sulfur Dioxide,TON
+37197,8.484216,Hexane,LB
+37197,0.003911354,Benz[a]Anthracene,LB
+37197,0.001184105,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.007444358,PM2.5 Primary (Filt + Cond),TON
+37183,1.4447968,Propionaldehyde,LB
+37183,0.11550576,Fluoranthene,LB
+37183,0.0011008654,"Dibenzo[a,h]Anthracene",LB
+37183,77.92916,"2,2,4-Trimethylpentane",LB
+37183,0.15630768,Fluorene,LB
+37183,0.03019549,Nitrous Oxide,TON
+37183,0.02720281,Organic Carbon portion of PM2.5-PRI,TON
+37183,9.828272,"1,3-Butadiene",LB
+37183,356.7404,Toluene,LB
+37017,3.214474,Ethyl Benzene,LB
+37017,0.005376348,Anthracene,LB
+37017,0.1031992,Propionaldehyde,LB
+37017,11.781002,Xylenes (Mixed Isomers),LB
+37017,1.9866,Formaldehyde,LB
+37017,0.006281362,Acenaphthene,LB
+37017,0.01414228,PM10 Primary (Filt + Cond),TON
+37017,0.09394297,Volatile Organic Compounds,TON
+37015,29.12568,Hexane,LB
+37015,0.010704702,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.010749874,Benzo[a]Pyrene,LB
+37015,0.002630444,Arsenic,LB
+37015,0.02988842,Acenaphthene,LB
+37015,3.550485e-05,Nitrate portion of PM2.5-PRI,TON
+37015,0.0003620915,Sulfate Portion of PM2.5-PRI,TON
+37003,0.04116342,PM10 Primary (Filt + Cond),TON
+37003,1.404374,Styrene,LB
+37003,1.1323744,Acrolein,LB
+37003,0.08494768,Fluoranthene,LB
+37003,0.012968856,Benzo[k]Fluoranthene,LB
+37003,18.189798,Formaldehyde,LB
+37003,315.2465,Carbon Dioxide,TON
+37003,0.384432,Acrolein,LB
+37003,16.799426,Benzene,LB
+37003,0.014228104,Acenaphthene,LB
+37003,93.92911,Carbon Dioxide,TON
+37057,0.0012917544,Fluoranthene,LB
+37057,8.959844,Acetaldehyde,LB
+37057,0.0007323472,Acenaphthene,LB
+37057,0.0004336355,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.0008175377,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,20.04767,Carbon Dioxide,TON
+37007,0.0009998397,Ammonia,TON
+37007,0.02522466,Propionaldehyde,LB
+37007,0.0002470962,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.2044758,Formaldehyde,LB
+37007,0.11552916,"2,2,4-Trimethylpentane",LB
+37165,10.863652,Acetaldehyde,LB
+37165,0.002242387,Nitrous Oxide,TON
+37165,0.005922537,Sulfur Dioxide,TON
+37159,0.00462327,Acenaphthylene,LB
+37159,1.098119,"2,2,4-Trimethylpentane",LB
+37159,0.003628644,Manganese,LB
+37159,0.00010235662,Mercury,LB
+37159,0.00269891,Nitrous Oxide,TON
+37139,0.007527516,Styrene,LB
+37139,0.0012973666,"Benzo[g,h,i,]Perylene",LB
+37175,0.0006662296,Benzo[b]Fluoranthene,LB
+37175,0.000692369,Chrysene,LB
+37175,3.257886,Benzene,LB
+37175,0.0001979622,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.08590378,Nitrogen Oxides,TON
+37173,4.24938e-08,Chromium (VI),LB
+37173,0.0001062678,PM2.5 Primary (Filt + Cond),TON
+37173,5.641047e-05,Sulfur Dioxide,TON
+37171,0.8690042,Toluene,LB
+37171,0.04061092,Anthracene,LB
+37171,2.741632e-06,Chromium (VI),LB
+37171,0.3149028,"2,2,4-Trimethylpentane",LB
+37171,1.152681,Benzene,LB
+37171,5.340346,Acetaldehyde,LB
+37171,0.0001296528,Nitrate portion of PM2.5-PRI,TON
+37171,0.07027741,Volatile Organic Compounds,TON
+37159,0.1145898,Fluorene,LB
+37159,0.01672892,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.002955672,Ammonia,TON
+37159,0.0002199078,Nitrate portion of PM2.5-PRI,TON
+37159,0.001102383,Sulfate Portion of PM2.5-PRI,TON
+37159,1.0712152,Toluene,LB
+37159,0.16755402,Pyrene,LB
+37161,3.827624,Ethyl Benzene,LB
+37161,0.13634914,Styrene,LB
+37161,0.009803156,"Benzo[g,h,i,]Perylene",LB
+37161,0.002353368,Benzo[k]Fluoranthene,LB
+37161,0.00223947,Benz[a]Anthracene,LB
+37161,0.002337936,Manganese,LB
+37161,1.8814328,Acetaldehyde,LB
+37161,0.005858276,Acenaphthene,LB
+37161,0.003881107,Nitrous Oxide,TON
+37161,1.191825e-05,Nitrate portion of PM2.5-PRI,TON
+37161,0.3083502,Nitrogen Oxides,TON
+37161,0.004571482,PM2.5 Primary (Filt + Cond),TON
+37161,0.001553114,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.003088382,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.002164612,Benzo[k]Fluoranthene,LB
+37151,2.201026,Formaldehyde,LB
+37151,2.559011,Carbon Monoxide,TON
+37143,4.574756,Ethyl Benzene,LB
+37143,3.57789,Hexane,LB
+37143,13.853258,Xylenes (Mixed Isomers),LB
+37143,0.019635764,Benzo[b]Fluoranthene,LB
+37143,0.01944138,Arsenic,LB
+37143,0.006857079,Nitrous Oxide,TON
+37143,0.05767747,PM2.5 Primary (Filt + Cond),TON
+37143,0.15561646,Fluoranthene,LB
+37143,0.02107858,Chrysene,LB
+37143,0.00661438,Manganese,LB
+37143,10.401074,Ethyl Benzene,LB
+37143,20.2781,Toluene,LB
+37143,0.001591179,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.2557075,PM25-Primary from certain diesel engines,TON
+37143,1.843501,Volatile Organic Compounds,TON
+37141,0.12632812,Nickel,LB
+37141,71.23128,Nitrogen Oxides,TON
+37141,0.5590081,Organic Carbon portion of PM2.5-PRI,TON
+37141,3.44207,Volatile Organic Compounds,TON
+37141,30.8594,Propionaldehyde,LB
+37141,0.10774638,Benzo[b]Fluoranthene,LB
+37141,1.2199266,Benz[a]Anthracene,LB
+37139,24.19346,"1,3-Butadiene",LB
+37139,39.50806,Propionaldehyde,LB
+37139,45.6762,Xylenes (Mixed Isomers),LB
+37139,0.01048152,"Benzo[g,h,i,]Perylene",LB
+37139,0.02211008,Benzo[b]Fluoranthene,LB
+37139,0.003057776,Benzo[k]Fluoranthene,LB
+37139,17.816854,"2,2,4-Trimethylpentane",LB
+37139,69.1281,Benzene,LB
+37139,0.02712568,Arsenic,LB
+37139,0.8209298,PM10 Primary (Filt + Cond),TON
+37135,51.70852,Acrolein,LB
+37135,42.74442,Toluene,LB
+37135,0.0222659,"Dibenzo[a,h]Anthracene",LB
+37135,61.59642,Benzene,LB
+37135,0.1034074,Nickel,LB
+37135,18.33282,Carbon Monoxide,TON
+37143,2.804752,Anthracene,LB
+37143,2.570646,"Benzo[g,h,i,]Perylene",LB
+37143,0.7936722,Benzo[k]Fluoranthene,LB
+37143,2275.158,"2,2,4-Trimethylpentane",LB
+37143,0.825378,Benz[a]Anthracene,LB
+37143,0.2414798,Elemental Carbon portion of PM2.5-PRI,TON
+37143,91.9695,Nitrogen Oxides,TON
+37143,1.099288,PM2.5 Primary (Filt + Cond),TON
+37143,0.2898905,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.02758712,Sulfate Portion of PM2.5-PRI,TON
+37117,32.77198,Xylenes (Mixed Isomers),LB
+37117,0.00014103506,Chromium (VI),LB
+37117,0.1805188,Chrysene,LB
+37117,0.00011425576,Mercury,LB
+37117,1.8656128,Acenaphthene,LB
+37117,0.138095,Methane,TON
+37117,0.3636423,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.008617271,Nitrous Oxide,TON
+37117,6.638572e-06,Benzo[b]Fluoranthene,LB
+37117,2.542066e-05,Fluoranthene,LB
+37117,6.342974e-06,Benz[a]Anthracene,LB
+37117,4.598147e-06,Ammonia,TON
+37117,1.876559e-05,PM10 Primary (Filt + Cond),TON
+37119,15.295872,Acrolein,LB
+37119,1.8006924,Pyrene,LB
+37119,0.008362886,"Benzo[g,h,i,]Perylene",LB
+37119,0.14027578,Benzo[a]Pyrene,LB
+37119,9.21428e-05,Mercury,LB
+37119,2.359272,Phenanthrene,LB
+37119,19.59558,Nitrogen Oxides,TON
+37113,7.269024,Acrolein,LB
+37113,6.380364,Toluene,LB
+37113,2.33084,Hexane,LB
+37113,10.115272,Naphthalene,LB
+37105,0.04103626,Ethyl Benzene,LB
+37105,0.263461,Toluene,LB
+37105,0.002440354,Manganese,LB
+37105,6.124132,Acetaldehyde,LB
+37105,0.3690839,Nitrogen Oxides,TON
+37105,0.5515296,Xylenes (Mixed Isomers),LB
+37105,0.000262974,"Dibenzo[a,h]Anthracene",LB
+37105,0.00215481,Methane,TON
+37105,0.1659576,Carbon Monoxide,TON
+37105,0.001429622,Ammonia,TON
+37105,0.7478362,Acrolein,LB
+37105,0.5132978,Propionaldehyde,LB
+37105,0.2673314,Propionaldehyde,LB
+37105,5.721376e-05,Mercury,LB
+37105,8.569854,Carbon Monoxide,TON
+37105,0.6573016,Nitrogen Oxides,TON
+37105,0.04081741,PM10 Primary (Filt + Cond),TON
+37093,0.0007318798,Manganese,LB
+37093,0.0003571676,Nickel,LB
+37093,0.011912802,Acenaphthene,LB
+37093,0.19150586,Propionaldehyde,LB
+37093,0.00015727792,"Benzo[g,h,i,]Perylene",LB
+37093,0.00019292672,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.02002934,Acenaphthylene,LB
+37093,0.007678687,PM25-Primary from certain diesel engines,TON
+37093,6.75993e-05,Nitrous Oxide,TON
+37093,0.1223622,Nitrogen Oxides,TON
+37093,0.003538523,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.001488567,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.02077892,Volatile Organic Compounds,TON
+37089,0.05514934,"1,3-Butadiene",LB
+37089,0.3277948,"2,2,4-Trimethylpentane",LB
+37089,0.0008365882,Fluorene,LB
+37089,0.7893881,Carbon Dioxide,TON
+37089,4.345307e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.0002910664,PM10 Primary (Filt + Cond),TON
+37089,0.17101872,Acenaphthylene,LB
+37089,0.010403428,Chrysene,LB
+37089,0.014245936,Benzo[a]Pyrene,LB
+37089,19.18662,Carbon Monoxide,TON
+37089,5.799167e-05,Nitrate portion of PM2.5-PRI,TON
+37089,0.02508818,PM2.5 Primary (Filt + Cond),TON
+37089,0.0007689394,Sulfate Portion of PM2.5-PRI,TON
+37073,0.3788383,PM10 Primary (Filt + Cond),TON
+37073,2.182712,Volatile Organic Compounds,TON
+37073,12.37854,"1,3-Butadiene",LB
+37073,0.1174724,Chrysene,LB
+37073,1.258498,Acenaphthene,LB
+37073,3.26863,Phenanthrene,LB
+37073,40.72312,Naphthalene,LB
+37085,17.613276,Acrolein,LB
+37085,0.0484123,Benzo[b]Fluoranthene,LB
+37085,1.6864818,Fluoranthene,LB
+37085,0.006620008,Benzo[k]Fluoranthene,LB
+37085,0.3131548,Chrysene,LB
+37085,21.04552,Benzene,LB
+37085,0.5857454,PM10-Primary from certain diesel engines,TON
+37085,0.228029,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.09825991,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.1422195,Ethyl Benzene,LB
+37079,0.03071436,"1,3-Butadiene",LB
+37079,0.0003295576,Fluoranthene,LB
+37079,0.07249802,Formaldehyde,LB
+37067,0.0001192002,Fluoranthene,LB
+37067,5.945274e-07,Nickel,LB
+37067,0.006519984,PM10 Primary (Filt + Cond),TON
+37063,0.4395585,Elemental Carbon portion of PM2.5-PRI,TON
+37063,23.43142,Propionaldehyde,LB
+37063,9.425992e-05,Chromium (VI),LB
+37063,0.013443154,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.00731082,Benzo[k]Fluoranthene,LB
+37063,0.6296724,Chrysene,LB
+37063,0.06597852,"Benzo[g,h,i,]Perylene",LB
+37063,107.13882,Toluene,LB
+37063,0.0231579,Anthracene,LB
+37063,0.008000359,Sulfur Dioxide,TON
+37067,43.12716,"2,2,4-Trimethylpentane",LB
+37067,0.0016077062,Nickel,LB
+37067,0.002465192,Arsenic,LB
+37067,2.335784,Naphthalene,LB
+37067,591.0648,Carbon Dioxide,TON
+37067,0.03378547,PM2.5 Primary (Filt + Cond),TON
+37067,0.9618558,Volatile Organic Compounds,TON
+37065,4.920427,Volatile Organic Compounds,TON
+37065,7.555928,Phenanthrene,LB
+37065,0.5316749,Elemental Carbon portion of PM2.5-PRI,TON
+37063,395.9534,"1,3-Butadiene",LB
+37063,2225.612,Hexane,LB
+37063,0.8745052,Benzo[b]Fluoranthene,LB
+37063,1.2440434,Benzo[a]Pyrene,LB
+37063,960.1084,Acetaldehyde,LB
+37063,56302.91,Carbon Dioxide,TON
+37063,0.5321657,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,37.94561,Volatile Organic Compounds,TON
+37047,1.085327,Acrolein,LB
+37047,0.9107362,Toluene,LB
+37047,0.896881,Xylenes (Mixed Isomers),LB
+37047,0.10369798,Fluoranthene,LB
+37047,0.0763424,Acenaphthylene,LB
+37047,0.09716438,Fluorene,LB
+37199,1.1955376,Fluoranthene,LB
+37199,0.3728243,PM25-Primary from certain diesel engines,TON
+37199,0.04462915,Ammonia,TON
+37199,0.3912886,PM2.5 Primary (Filt + Cond),TON
+37199,0.01540027,Sulfate Portion of PM2.5-PRI,TON
+37195,73.6948,Toluene,LB
+37195,0.02610286,Pyrene,LB
+37195,0.007983512,Benzo[b]Fluoranthene,LB
+37195,4.771284,Formaldehyde,LB
+37195,4.792296,Acetaldehyde,LB
+37195,0.014893034,Acenaphthene,LB
+37195,0.003819698,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,205.4272,Ethyl Benzene,LB
+37183,84.14196,Styrene,LB
+37183,32.47386,Pyrene,LB
+37183,0.0015154188,Chromium (VI),LB
+37183,0.0015215868,Mercury,LB
+37183,19.393662,Acenaphthene,LB
+37183,5.39423,PM10-Primary from certain diesel engines,TON
+37183,4.9627,PM25-Primary from certain diesel engines,TON
+37183,1.048633,Organic Carbon portion of PM2.5-PRI,TON
+37181,5.594164,Hexane,LB
+37181,0.01213868,Pyrene,LB
+37181,16.464708,Xylenes (Mixed Isomers),LB
+37181,0.03293218,Acenaphthylene,LB
+37181,0.0004256428,Manganese,LB
+37181,5.035774e-05,Nickel,LB
+37181,0.37526,Naphthalene,LB
+37181,0.002665058,Nitrous Oxide,TON
+37181,0.001715233,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.005213985,PM10 Primary (Filt + Cond),TON
+37179,8.39923,"1,3-Butadiene",LB
+37179,23.94914,Toluene,LB
+37179,0.677519,Anthracene,LB
+37179,303.2904,Formaldehyde,LB
+37179,0.8456898,Acenaphthene,LB
+37179,31.56046,Naphthalene,LB
+37179,0.04451068,PM10-Primary from certain diesel engines,TON
+37179,0.06264448,PM2.5 Primary (Filt + Cond),TON
+37019,794.0248,Formaldehyde,LB
+37019,0.14481006,Nickel,LB
+37019,0.03256724,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,4.713852,Fluoranthene,LB
+37019,0.8352688,Chrysene,LB
+37019,8.31336,Phenanthrene,LB
+37019,23.19385,Carbon Monoxide,TON
+37013,0.010122598,"Dibenzo[a,h]Anthracene",LB
+37013,0.091496,Ammonia,TON
+37013,0.1592992,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.02113382,Chromium (VI),LB
+37019,6.687756,Benzo[k]Fluoranthene,LB
+37019,0.19551422,"Dibenzo[a,h]Anthracene",LB
+37019,7.158758,Manganese,LB
+37019,2.641574,Nickel,LB
+37019,8745.342,Acetaldehyde,LB
+37019,140.7699,Phenanthrene,LB
+37015,2751.098,Xylenes (Mixed Isomers),LB
+37011,0.06235534,Pyrene,LB
+37011,0.0002752326,"Benzo[g,h,i,]Perylene",LB
+37011,0.04734782,Fluoranthene,LB
+37011,0.002917654,Manganese,LB
+37011,2.059558e-06,Mercury,LB
+37011,0.02049728,Acenaphthene,LB
+37011,0.03013716,PM10-Primary from certain diesel engines,TON
+37011,7.538506,Hexane,LB
+37011,0.004778664,Anthracene,LB
+37011,0.005598964,"Benzo[g,h,i,]Perylene",LB
+37011,0.001569388,Benzo[b]Fluoranthene,LB
+37011,0.1333504,Styrene,LB
+37011,0.0001086582,Nickel,LB
+37011,0.01132022,Fluorene,LB
+37011,0.002304425,PM2.5 Primary (Filt + Cond),TON
+37019,0.002208836,Benz[a]Anthracene,LB
+37019,23.30466,Acetaldehyde,LB
+37019,0.03852837,PM10 Primary (Filt + Cond),TON
+37019,0.292804,"1,3-Butadiene",LB
+37019,2.840346,Hexane,LB
+37019,3.061438e-05,Chromium (VI),LB
+37019,0.009212326,Acenaphthylene,LB
+37151,0.3099258,"1,3-Butadiene",LB
+37151,2.566202,Hexane,LB
+37151,0.003612154,Fluoranthene,LB
+37151,3.250114,Formaldehyde,LB
+37151,0.00010737502,"Dibenzo[a,h]Anthracene",LB
+37151,0.002817916,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,3.787074,Benzene,LB
+37135,0.00540977,Manganese,LB
+37135,0.01564946,Ammonia,TON
+37159,0.02437079,Ammonia,TON
+37159,1.4011234,Acrolein,LB
+37159,49.05192,Hexane,LB
+37159,0.0650557,"Benzo[g,h,i,]Perylene",LB
+37159,0.017854232,Benzo[b]Fluoranthene,LB
+37159,0.08946648,Fluoranthene,LB
+37159,0.2785206,Acenaphthylene,LB
+37159,31.6705,"2,2,4-Trimethylpentane",LB
+37159,0.002460066,Nickel,LB
+37141,3.000646,Manganese,LB
+37141,15.507906,Acenaphthene,LB
+37141,4002.015,Carbon Monoxide,TON
+37141,15.76012,Ammonia,TON
+37141,1.786707,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,9056.622,Ethyl Benzene,LB
+37141,2089.914,"1,3-Butadiene",LB
+37141,11512.722,Hexane,LB
+37141,25.70906,Pyrene,LB
+37137,26.74821,Carbon Dioxide,TON
+37137,0.0008662942,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,2.835002e-05,Anthracene,LB
+37137,4.66047e-05,Acenaphthene,LB
+37137,0.00010042398,Fluorene,LB
+37137,0.000240622,Naphthalene,LB
+37123,0.039674,Pyrene,LB
+37123,0.00017135614,"Benzo[g,h,i,]Perylene",LB
+37123,0.02392104,Volatile Organic Compounds,TON
+37123,0.4531966,Naphthalene,LB
+37123,4.754376e-05,Nitrate portion of PM2.5-PRI,TON
+37121,6.585456e-05,Acenaphthene,LB
+37121,0.2283574,Carbon Monoxide,TON
+37121,0.004980598,Nitrous Oxide,TON
+37121,0.06866628,Acrolein,LB
+37121,0.0626183,Xylenes (Mixed Isomers),LB
+37199,0.370287,Xylenes (Mixed Isomers),LB
+37199,3.815066e-08,Chromium (VI),LB
+37199,8.961032e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,6.013456e-05,Benzo[b]Fluoranthene,LB
+37199,6.013456e-05,Benzo[k]Fluoranthene,LB
+37199,2.595912e-07,Nitrate portion of PM2.5-PRI,TON
+37193,12.826286,Ethyl Benzene,LB
+37191,0.0011773342,Benzo[k]Fluoranthene,LB
+37191,0.001168973,"Dibenzo[a,h]Anthracene",LB
+37191,1.465744,Fluorene,LB
+37191,13.7067,Carbon Monoxide,TON
+37191,0.006629315,Nitrous Oxide,TON
+37181,0.0002036102,Chromium (VI),LB
+37181,2.432598,Acenaphthylene,LB
+37181,26.85948,"2,2,4-Trimethylpentane",LB
+37181,0.07401312,Nickel,LB
+37181,325.3058,Acetaldehyde,LB
+37181,58.34351,Nitrogen Oxides,TON
+37161,0.0005358622,Pyrene,LB
+37161,0.16401086,Benzene,LB
+37161,0.01260013,PM10 Primary (Filt + Cond),TON
+37157,0.5245815,Nitrous Oxide,TON
+37157,0.0009656952,Nitrate portion of PM2.5-PRI,TON
+37157,0.9649031,PM10 Primary (Filt + Cond),TON
+37157,0.3748769,PM2.5 Primary (Filt + Cond),TON
+37151,0.006227126,Sulfur Dioxide,TON
+37151,0.02963896,Anthracene,LB
+37151,6.820674e-06,Chromium (VI),LB
+37151,0.015429626,Benzo[k]Fluoranthene,LB
+37151,0.001307261,Arsenic,LB
+37149,16969.814,Xylenes (Mixed Isomers),LB
+37149,0.005096706,Chromium (VI),LB
+37149,2.44876,Benzo[b]Fluoranthene,LB
+37149,36.91814,Acenaphthylene,LB
+37149,2.359986,Chrysene,LB
+37149,0.07830548,"Dibenzo[a,h]Anthracene",LB
+37149,8.10303,Acenaphthene,LB
+37149,0.6795713,Elemental Carbon portion of PM2.5-PRI,TON
+37145,2.890938,Propionaldehyde,LB
+37145,0.17374604,"Benzo[g,h,i,]Perylene",LB
+37145,385.8534,"2,2,4-Trimethylpentane",LB
+37145,0.1305215,Ammonia,TON
+37145,0.03597545,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.09922645,PM10 Primary (Filt + Cond),TON
+37135,15.857012,Ethyl Benzene,LB
+37135,0.0221307,Anthracene,LB
+37135,0.0006382236,"Dibenzo[a,h]Anthracene",LB
+37135,7.5892,Acetaldehyde,LB
+37135,0.02496074,Acenaphthene,LB
+37135,1.2985926,Naphthalene,LB
+37133,5.14155,Benzo[a]Pyrene,LB
+37133,10719.954,Benzene,LB
+37133,5.851748,Nitrous Oxide,TON
+37125,14.979768,Hexane,LB
+37125,26.08914,Propionaldehyde,LB
+37125,0.2870854,Benzo[a]Pyrene,LB
+37125,0.2682648,Manganese,LB
+37125,60.52016,Naphthalene,LB
+37125,20130.13,Carbon Dioxide,TON
+37125,0.03005784,Nitrous Oxide,TON
+37117,2.64935,Hexane,LB
+37117,2.48815e-05,"Dibenzo[a,h]Anthracene",LB
+37117,2.329564,"2,2,4-Trimethylpentane",LB
+37117,0.0006447478,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.001511445,PM2.5 Primary (Filt + Cond),TON
+37117,0.05268872,Volatile Organic Compounds,TON
+37123,468.8274,Carbon Dioxide,TON
+37123,0.002176083,Nitrous Oxide,TON
+37123,21.58034,Toluene,LB
+37123,0.006729966,"Benzo[g,h,i,]Perylene",LB
+37123,0.002528528,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.008587222,Fluoranthene,LB
+37123,0.0017848788,Benz[a]Anthracene,LB
+37123,2.003509,Carbon Monoxide,TON
+37123,5054.602,Ethyl Benzene,LB
+37123,2.199852,Benzo[b]Fluoranthene,LB
+37123,2.791652,Benzo[a]Pyrene,LB
+37123,0.5580222,Nickel,LB
+37123,0.855646,Arsenic,LB
+37123,4.819877,Methane,TON
+37115,1.108184,Benzo[a]Pyrene,LB
+37115,0.02548768,"Dibenzo[a,h]Anthracene",LB
+37115,0.2713488,Nickel,LB
+37115,0.6177325,Organic Carbon portion of PM2.5-PRI,TON
+37115,8731.872,Toluene,LB
+37115,2094.572,Hexane,LB
+37115,3.728084,Pyrene,LB
+37115,2.954518,"Benzo[g,h,i,]Perylene",LB
+37099,0.004242823,Sulfur Dioxide,TON
+37099,0.011253914,"Benzo[g,h,i,]Perylene",LB
+37099,0.004242008,Benzo[a]Pyrene,LB
+37099,0.003182932,Benz[a]Anthracene,LB
+37099,3.876394e-05,Mercury,LB
+37095,3.524744,Xylenes (Mixed Isomers),LB
+37095,0.2747546,Fluoranthene,LB
+37095,0.014683892,Manganese,LB
+37095,0.473985,Phenanthrene,LB
+37095,1.514648,Carbon Monoxide,TON
+37095,0.1721667,PM25-Primary from certain diesel engines,TON
+37095,0.02143568,Ammonia,TON
+37095,0.03637715,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.1795042,PM2.5 Primary (Filt + Cond),TON
+37095,8.535563e-05,Nitrate portion of PM2.5-PRI,TON
+37095,0.0009206814,Sulfur Dioxide,TON
+37095,2.455672e-06,Chromium (VI),LB
+37091,21.70978,Toluene,LB
+37091,0.0009306656,Benzo[k]Fluoranthene,LB
+37091,1.97134,Acenaphthylene,LB
+37091,340.4366,Formaldehyde,LB
+37091,0.3457126,PM10 Primary (Filt + Cond),TON
+37091,0.2623978,Hexane,LB
+37091,0.02351588,Anthracene,LB
+37091,0.4909194,Propionaldehyde,LB
+37091,0.04460044,Pyrene,LB
+37091,10.46005,Formaldehyde,LB
+37091,0.0004179658,Benzo[a]Pyrene,LB
+37091,0.0052889,Benz[a]Anthracene,LB
+37091,0.9268868,Benzene,LB
+37091,0.002044608,Manganese,LB
+37091,0.0292697,Acenaphthene,LB
+37091,0.001633502,PM10-Primary from certain diesel engines,TON
+37091,9.70856e-05,Nitrous Oxide,TON
+37091,1.063237e-05,Nitrate portion of PM2.5-PRI,TON
+37091,0.001954171,PM2.5 Primary (Filt + Cond),TON
+37089,0.18131898,Styrene,LB
+37089,0.0005379224,"Benzo[g,h,i,]Perylene",LB
+37089,0.06993648,Acenaphthylene,LB
+37089,5.492536,Acetaldehyde,LB
+37089,99.8773,Carbon Dioxide,TON
+37089,0.0002517247,Nitrous Oxide,TON
+37089,0.005147063,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.018107212,Arsenic,LB
+37089,0.0006385778,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,2.88214,Styrene,LB
+37087,0.02222392,Nickel,LB
+37087,0.08786937,Methane,TON
+37087,0.5015974,PM25-Primary from certain diesel engines,TON
+37087,0.1992506,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.6744184,PM10 Primary (Filt + Cond),TON
+37073,0.000138506,Arsenic,LB
+37073,0.5972486,Carbon Monoxide,TON
+37073,0.0009011338,Nitrous Oxide,TON
+37073,0.0002294354,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.8608706,Ethyl Benzene,LB
+37073,1.316028,Hexane,LB
+37073,0.0010857058,Anthracene,LB
+37081,21412.66,"2,2,4-Trimethylpentane",LB
+37081,2444.444,Benzene,LB
+37065,0.650447,Hexane,LB
+37065,0.08762464,Anthracene,LB
+37065,8.995522e-06,Chromium (VI),LB
+37065,0.12989802,Acenaphthylene,LB
+37065,0.31207,Phenanthrene,LB
+37065,2.75353,Naphthalene,LB
+37063,0.19620022,Anthracene,LB
+37063,0.013175848,Benzo[b]Fluoranthene,LB
+37063,0.08380844,Chrysene,LB
+37063,0.04532066,Manganese,LB
+37063,0.17390146,Acenaphthene,LB
+37063,1.841099,Carbon Monoxide,TON
+37063,6.011781,Nitrogen Oxides,TON
+37063,0.01890257,Sulfate Portion of PM2.5-PRI,TON
+37059,0.000337235,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,2.587248,"2,2,4-Trimethylpentane",LB
+37059,0.07148528,Methane,TON
+37059,0.7995759,Nitrogen Oxides,TON
+37053,8.695688,Propionaldehyde,LB
+37053,4.11607,"2,2,4-Trimethylpentane",LB
+37053,0.536765,Acenaphthene,LB
+37053,8.333823,Carbon Monoxide,TON
+37053,0.1323885,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.02911105,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.1815575,PM2.5 Primary (Filt + Cond),TON
+37053,0.009880541,Sulfur Dioxide,TON
+37041,0.004788206,"1,3-Butadiene",LB
+37041,7.257394e-05,Fluoranthene,LB
+37041,0.000209368,Phenanthrene,LB
+37041,0.1950247,Carbon Monoxide,TON
+37041,0.0001415737,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.03073694,PM10 Primary (Filt + Cond),TON
+37041,0.007523179,Sulfur Dioxide,TON
+37041,18.756164,Formaldehyde,LB
+37035,1.3324786,Hexane,LB
+37035,0.0006733954,Nitrate portion of PM2.5-PRI,TON
+37035,0.03122945,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.01204202,Sulfur Dioxide,TON
+37033,8.961006e-07,Chromium (VI),LB
+37033,0.0002095434,"Benzo[g,h,i,]Perylene",LB
+37033,0.0315085,Fluorene,LB
+37033,326.5099,Carbon Dioxide,TON
+37033,0.001604348,Nitrous Oxide,TON
+37033,0.0066524,Ammonia,TON
+37033,0.02343008,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.8592334,Styrene,LB
+37033,0.2103876,Anthracene,LB
+37033,3.15221,Propionaldehyde,LB
+37033,0.58926,Pyrene,LB
+37033,0.00257428,"Benzo[g,h,i,]Perylene",LB
+37033,0.0016902586,Benzo[k]Fluoranthene,LB
+37033,0.3304388,Acenaphthylene,LB
+37029,0.0003004016,Benzo[b]Fluoranthene,LB
+37029,1.0722556,Benzene,LB
+37029,0.000434666,Manganese,LB
+37029,9.48762e-05,Nickel,LB
+37029,0.3208418,Acetaldehyde,LB
+37029,0.0007058051,Nitrous Oxide,TON
+37029,0.001199447,Ammonia,TON
+37029,1.47865e-06,Nitrate portion of PM2.5-PRI,TON
+37029,0.0002290277,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.0005265855,Sulfur Dioxide,TON
+37125,9.180324,"Benzo[g,h,i,]Perylene",LB
+37125,10.697262,Fluoranthene,LB
+37125,2063.288,Formaldehyde,LB
+37125,3.446314,Benzo[a]Pyrene,LB
+37125,5223.426,Ethyl Benzene,LB
+37125,136.19784,Propionaldehyde,LB
+37125,12.198972,Pyrene,LB
+37125,1.9194342,Arsenic,LB
+37125,2700.812,Acetaldehyde,LB
+37125,39.50342,Phenanthrene,LB
+37125,14.43279,PM10 Primary (Filt + Cond),TON
+37125,0.1234532,Sulfate Portion of PM2.5-PRI,TON
+37121,0.004310536,Acenaphthene,LB
+37121,0.0234227,Phenanthrene,LB
+37121,0.5890984,"1,3-Butadiene",LB
+37121,0.07031358,Acrolein,LB
+37121,15.414892,Toluene,LB
+37121,0.09292962,Propionaldehyde,LB
+37121,0.0012510332,Benzo[k]Fluoranthene,LB
+37121,0.019634692,Acenaphthylene,LB
+37121,1.423355,Carbon Monoxide,TON
+37121,6.780791,Carbon Dioxide,TON
+37121,0.0002238676,Ammonia,TON
+37121,0.001691399,PM2.5 Primary (Filt + Cond),TON
+37121,0.0001438821,Sulfur Dioxide,TON
+37111,1671.6068,Ethyl Benzene,LB
+37101,0.04544691,Ammonia,TON
+37101,1.3493002,Pyrene,LB
+37101,1.4525202,Acenaphthylene,LB
+37103,0.00496457,Acrolein,LB
+37103,7.494248e-05,Benzo[b]Fluoranthene,LB
+37103,0.0003234202,Fluoranthene,LB
+37103,7.494248e-05,Benzo[k]Fluoranthene,LB
+37103,0.00011036556,Benzo[a]Pyrene,LB
+37103,7.30199e-05,Benz[a]Anthracene,LB
+37103,0.2553706,Benzene,LB
+37103,0.126902,Carbon Monoxide,TON
+37101,2.172622,Acrolein,LB
+37101,229.007,Toluene,LB
+37101,0.0801775,Anthracene,LB
+37101,1.49515,Propionaldehyde,LB
+37101,167.5088,Xylenes (Mixed Isomers),LB
+37101,0.0289628,Chrysene,LB
+37101,0.00870876,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.04270453,Ammonia,TON
+37101,0.02823805,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.06538909,PM2.5 Primary (Filt + Cond),TON
+37099,0.0001033143,Nitrous Oxide,TON
+37099,0.0182943,Nitrogen Oxides,TON
+37099,0.011135312,Propionaldehyde,LB
+37099,1.2014674,Xylenes (Mixed Isomers),LB
+37099,0.0002525112,Chrysene,LB
+37095,0.0011926312,Styrene,LB
+37095,0.1923166,Toluene,LB
+37095,1.4039726e-05,Benzo[b]Fluoranthene,LB
+37095,7.415562e-05,Fluoranthene,LB
+37095,0.0002315704,Acenaphthylene,LB
+37091,11.056984,Acenaphthylene,LB
+37091,0.7336848,Chrysene,LB
+37091,708.2144,Formaldehyde,LB
+37091,0.02532576,"Dibenzo[a,h]Anthracene",LB
+37091,2248.004,"2,2,4-Trimethylpentane",LB
+37091,375.8648,"1,3-Butadiene",LB
+37091,0.761677,Benz[a]Anthracene,LB
+37091,2545.158,Benzene,LB
+37091,0.2723124,Elemental Carbon portion of PM2.5-PRI,TON
+37091,3.439258,Ammonia,TON
+37091,62.44516,Nitrogen Oxides,TON
+37091,0.6251884,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.7797017,Sulfur Dioxide,TON
+37091,0.03282657,Sulfate Portion of PM2.5-PRI,TON
+37073,8.799842,Hexane,LB
+37073,7.965622,"2,2,4-Trimethylpentane",LB
+37073,0.4089166,Volatile Organic Compounds,TON
+37075,0.003136354,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.01598791,Manganese,LB
+37075,23.5361,Acetaldehyde,LB
+37075,0.3965794,Fluorene,LB
+37075,1.671314,Carbon Monoxide,TON
+37075,0.2595678,PM10-Primary from certain diesel engines,TON
+37075,0.006901777,Sulfur Dioxide,TON
+37075,1.7867278,Ethyl Benzene,LB
+37071,119.79092,Ethyl Benzene,LB
+37071,173.16746,Hexane,LB
+37071,223.6622,Benzene,LB
+37071,0.4106146,Fluorene,LB
+37071,5294.699,Carbon Dioxide,TON
+37059,4.715046,Propionaldehyde,LB
+37059,1.9612316,"2,2,4-Trimethylpentane",LB
+37059,1.1585754e-05,Mercury,LB
+37059,9.33214,Naphthalene,LB
+37059,0.01108134,Ammonia,TON
+37059,0.507313,Volatile Organic Compounds,TON
+37055,0.0002669506,"Dibenzo[a,h]Anthracene",LB
+37055,0.03077107,Methane,TON
+37055,0.09029619,PM10 Primary (Filt + Cond),TON
+37051,0.08568878,Propionaldehyde,LB
+37051,0.1663965,Methane,TON
+37051,123.4879,Carbon Dioxide,TON
+37051,0.01642087,PM10 Primary (Filt + Cond),TON
+37051,7.073076e-05,Sulfate Portion of PM2.5-PRI,TON
+37051,0.009951697,Volatile Organic Compounds,TON
+37039,80.8173,Xylenes (Mixed Isomers),LB
+37039,0.04753232,Fluoranthene,LB
+37039,0.00012808082,Mercury,LB
+37039,0.001596792,Nickel,LB
+37039,0.0326231,Acenaphthene,LB
+37039,0.02602378,Nitrous Oxide,TON
+37039,0.01487643,PM2.5 Primary (Filt + Cond),TON
+37037,0.15966468,Fluoranthene,LB
+37037,0.015033696,Benzo[a]Pyrene,LB
+37037,0.0006204056,"Dibenzo[a,h]Anthracene",LB
+37037,0.7659244,Carbon Monoxide,TON
+37037,0.06887574,Elemental Carbon portion of PM2.5-PRI,TON
+37037,2.539972,Nitrogen Oxides,TON
+37029,6.501192e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.10465804,Fluorene,LB
+37029,2.48515,Naphthalene,LB
+37029,0.003642588,PM25-Primary from certain diesel engines,TON
+37029,0.005047483,Ammonia,TON
+37029,0.001369946,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.16775676,Manganese,LB
+37053,31.58364,Hexane,LB
+37053,68.6084,Propionaldehyde,LB
+37053,1256.1058,Formaldehyde,LB
+37045,25.31204,Ethyl Benzene,LB
+37045,9.236836,Styrene,LB
+37045,2.261294,Anthracene,LB
+37045,36.2084,Propionaldehyde,LB
+37045,0.656715,Organic Carbon portion of PM2.5-PRI,TON
+37045,4.711545,PM10 Primary (Filt + Cond),TON
+37043,0.10204374,"1,3-Butadiene",LB
+37043,0.2569996,Acrolein,LB
+37043,1.0681424e-06,Mercury,LB
+37043,0.0005762748,Nickel,LB
+37043,0.01032575,Acenaphthene,LB
+37043,0.03949974,Phenanthrene,LB
+37043,0.01861387,Volatile Organic Compounds,TON
+37039,0.945682,Arsenic,LB
+37039,5.354933,Methane,TON
+37039,0.7321871,Elemental Carbon portion of PM2.5-PRI,TON
+37039,278.3194,Nitrogen Oxides,TON
+37039,9560.268,Benzene,LB
+37027,0.6572138,Chrysene,LB
+37027,0.000312226,Mercury,LB
+37027,2.589144,PM10-Primary from certain diesel engines,TON
+37027,1.460951,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.03148085,Nitrous Oxide,TON
+37011,9.302634,Styrene,LB
+37011,20.95384,"1,3-Butadiene",LB
+37011,50.24766,Acrolein,LB
+37011,15.7481,Hexane,LB
+37011,34.206,Propionaldehyde,LB
+37011,0.0252302,Arsenic,LB
+37011,3.596934,Fluorene,LB
+37011,31.90684,Carbon Monoxide,TON
+37011,0.6211151,PM10 Primary (Filt + Cond),TON
+37005,17.25456,"1,3-Butadiene",LB
+37005,0.00622421,"Benzo[g,h,i,]Perylene",LB
+37005,0.1449392,Chrysene,LB
+37005,0.0438242,Manganese,LB
+37005,0.007089887,Nitrous Oxide,TON
+37005,0.08073783,Ammonia,TON
+37005,0.02025073,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.8211642,Propionaldehyde,LB
+37005,0.008197348,Benz[a]Anthracene,LB
+37005,0.002316416,Manganese,LB
+37005,7.426132,Acetaldehyde,LB
+37003,1.1510412,Propionaldehyde,LB
+37003,7.894536e-06,Mercury,LB
+37003,0.337232,Methane,TON
+37003,0.002210455,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.0002272919,Sulfur Dioxide,TON
+37001,0.009149274,"Dibenzo[a,h]Anthracene",LB
+37001,2.173878,Fluorene,LB
+37001,0.3013193,Elemental Carbon portion of PM2.5-PRI,TON
+37001,7.933402,Hexane,LB
+37001,24.53178,Acrolein,LB
+37177,1.9026836,Ethyl Benzene,LB
+37177,4.324132,Xylenes (Mixed Isomers),LB
+37177,1.756407e-05,Chromium (VI),LB
+37177,0.4200086,Fluoranthene,LB
+37177,0.0016671026,Benzo[k]Fluoranthene,LB
+37177,0.0016636798,"Dibenzo[a,h]Anthracene",LB
+37177,6.197524,Naphthalene,LB
+37177,1.35706,Carbon Monoxide,TON
+37177,0.001883204,Nitrous Oxide,TON
+37193,0.211433,Pyrene,LB
+37193,0.5299202,"2,2,4-Trimethylpentane",LB
+37193,0.003566954,Nickel,LB
+37193,2.285186,Naphthalene,LB
+37193,0.00338739,Sulfate Portion of PM2.5-PRI,TON
+37185,0.06081656,Acrolein,LB
+37185,0.0005267608,Anthracene,LB
+37185,0.005146564,Methane,TON
+37185,0.0003043718,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.005840509,Ammonia,TON
+37185,3.895486,Naphthalene,LB
+37185,0.2892965,Nitrogen Oxides,TON
+37185,0.001952306,Sulfur Dioxide,TON
+37185,1.0308834,"1,3-Butadiene",LB
+37185,0.17433552,Acenaphthylene,LB
+37185,0.018784204,Benz[a]Anthracene,LB
+37185,1.893156e-06,Chromium (VI),LB
+37185,0.004342874,Benzo[k]Fluoranthene,LB
+37185,0.004703497,Methane,TON
+37191,0.12469812,Benzo[b]Fluoranthene,LB
+37191,0.017148174,Benzo[k]Fluoranthene,LB
+37191,21.29134,Ethyl Benzene,LB
+37191,0.2150236,Ammonia,TON
+37191,2.332733,PM10 Primary (Filt + Cond),TON
+37191,1.528499,PM2.5 Primary (Filt + Cond),TON
+37187,0.10611936,Pyrene,LB
+37187,0.0006233494,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.008209876,Benzo[a]Pyrene,LB
+37187,0.12625462,Phenanthrene,LB
+37187,1.0985368,Naphthalene,LB
+37187,0.00497225,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.001132193,Sulfate Portion of PM2.5-PRI,TON
+37179,1.8197736e-05,Benzo[b]Fluoranthene,LB
+37179,0.16555508,Toluene,LB
+37179,0.0001259114,PM10 Primary (Filt + Cond),TON
+37179,3.74593e-05,PM2.5 Primary (Filt + Cond),TON
+37019,2.393946,"1,3-Butadiene",LB
+37019,96.1039,Toluene,LB
+37019,0.006429756,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.02834774,Fluoranthene,LB
+37019,0.005041278,Benzo[k]Fluoranthene,LB
+37019,0.0006054636,Nickel,LB
+37019,2.160723e-05,Nitrate portion of PM2.5-PRI,TON
+37019,0.02585053,PM10 Primary (Filt + Cond),TON
+37015,1.702608,Toluene,LB
+37015,4.645402e-05,"Dibenzo[a,h]Anthracene",LB
+37015,1.95491,Benzene,LB
+37015,2.19355,Carbon Monoxide,TON
+37015,2.614045e-05,Nitrate portion of PM2.5-PRI,TON
+37015,0.0007226892,Sulfate Portion of PM2.5-PRI,TON
+37009,0.007969764,PM10-Primary from certain diesel engines,TON
+37009,0.0006258661,Ammonia,TON
+37009,0.2712208,Acrolein,LB
+37009,0.0320075,Pyrene,LB
+37009,0.3245794,Benzene,LB
+37009,1.509723,Acetaldehyde,LB
+37009,0.0231789,Fluorene,LB
+37001,23.99832,Propionaldehyde,LB
+37001,31.9527,Xylenes (Mixed Isomers),LB
+37001,0.004680556,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.09427154,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.7412138,Ethyl Benzene,LB
+37063,1.322618,Hexane,LB
+37063,0.005855886,Acenaphthylene,LB
+37063,0.0014537594,Chrysene,LB
+37025,0.2719789,PM10 Primary (Filt + Cond),TON
+37025,0.02999798,Arsenic,LB
+37025,23.38311,Carbon Monoxide,TON
+37025,0.04144952,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.01715375,Anthracene,LB
+37025,0.01653186,Chrysene,LB
+37017,10.316158,"1,3-Butadiene",LB
+37017,1.1536202,Anthracene,LB
+37017,2.309312,Fluorene,LB
+37017,0.8311167,PM25-Primary from certain diesel engines,TON
+37017,0.004369656,Nitrate portion of PM2.5-PRI,TON
+37017,13.95797,Nitrogen Oxides,TON
+37011,3923.614,Toluene,LB
+37011,917.9496,"2,2,4-Trimethylpentane",LB
+37009,8.491724e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.01697102,Benz[a]Anthracene,LB
+37009,15.083234,Acetaldehyde,LB
+37009,0.02987215,Methane,TON
+37009,0.0007524941,Sulfate Portion of PM2.5-PRI,TON
+37005,0.198321,Fluoranthene,LB
+37005,0.1657128,Acenaphthylene,LB
+37005,33.79676,Formaldehyde,LB
+37005,0.015818646,Benzo[a]Pyrene,LB
+37005,140.943,Carbon Dioxide,TON
+37005,0.001172352,Sulfate Portion of PM2.5-PRI,TON
+37059,1.3591172,Xylenes (Mixed Isomers),LB
+37059,0.9256863,Carbon Monoxide,TON
+37059,0.002734608,Sulfur Dioxide,TON
+37059,0.04698871,Volatile Organic Compounds,TON
+37013,2.407204,Xylenes (Mixed Isomers),LB
+37013,0.0009782542,Benzo[k]Fluoranthene,LB
+37013,0.05611538,Naphthalene,LB
+37013,0.001175138,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.004203907,Sulfur Dioxide,TON
+37169,0.019185794,"1,3-Butadiene",LB
+37169,0.0007211476,"Benzo[g,h,i,]Perylene",LB
+37169,0.0002354898,Fluoranthene,LB
+37169,0.0003184668,Manganese,LB
+37115,0.00011892156,"Dibenzo[a,h]Anthracene",LB
+37115,0.006626314,PM2.5 Primary (Filt + Cond),TON
+37115,0.002072742,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.1186988,Carbon Monoxide,TON
+37177,0.005362902,Ethyl Benzene,LB
+37177,0.2417024,Propionaldehyde,LB
+37177,0.00010621634,Pyrene,LB
+37177,0.02925546,Benzene,LB
+37195,26.09128,Ethyl Benzene,LB
+37195,66.00236,Toluene,LB
+37195,20.22456,Hexane,LB
+37195,71.68962,Xylenes (Mixed Isomers),LB
+37195,0.3532802,Manganese,LB
+37195,2.208294,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.0005916418,Fluoranthene,LB
+37189,0.0011261066,Manganese,LB
+37189,0.0006705698,Arsenic,LB
+37189,0.0007114527,Nitrous Oxide,TON
+37185,0.2709655,Methane,TON
+37185,0.4043548,Carbon Monoxide,TON
+37191,1.4005792,"2,2,4-Trimethylpentane",LB
+37191,1.965405e-05,Mercury,LB
+37191,0.6129422,Phenanthrene,LB
+37191,0.001869044,Nitrous Oxide,TON
+37191,0.6444048,Styrene,LB
+37191,3.909604,Acrolein,LB
+37191,2.502554,Propionaldehyde,LB
+37181,10.000158,"1,3-Butadiene",LB
+37181,9.698574e-05,Chromium (VI),LB
+37181,0.06977346,Benzo[b]Fluoranthene,LB
+37181,7.332282,Carbon Monoxide,TON
+37181,0.8758627,PM2.5 Primary (Filt + Cond),TON
+37181,0.03391439,Sulfate Portion of PM2.5-PRI,TON
+37057,40.35142,Toluene,LB
+37039,0.9468974,Ethyl Benzene,LB
+37039,0.07239366,Volatile Organic Compounds,TON
+37157,0.010124496,Styrene,LB
+37157,0.03665066,Acrolein,LB
+37157,0.0007511296,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.0003951,Benzo[b]Fluoranthene,LB
+37157,0.0003022742,Chrysene,LB
+37157,0.0005703928,Arsenic,LB
+37157,0.0003500206,Acenaphthene,LB
+37157,0.002604368,Ammonia,TON
+37157,0.001127407,PM2.5 Primary (Filt + Cond),TON
+37153,5.115082,"2,2,4-Trimethylpentane",LB
+37145,0.557821,Ethyl Benzene,LB
+37145,0.0008435714,Anthracene,LB
+37145,0.003805348,"Benzo[g,h,i,]Perylene",LB
+37145,0.0015244974,Fluoranthene,LB
+37145,1.448134,Formaldehyde,LB
+37145,3.282934e-05,"Dibenzo[a,h]Anthracene",LB
+37145,0.00202818,Manganese,LB
+37145,0.0018890586,Fluorene,LB
+37145,0.0008211758,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.003070178,Sulfur Dioxide,TON
+37125,1.9624746,Benzene,LB
+37177,0.1344882,Fluoranthene,LB
+37177,28.97336,Formaldehyde,LB
+37177,0.02639644,Benz[a]Anthracene,LB
+37177,0.010165406,Nickel,LB
+37177,0.015587244,Arsenic,LB
+37177,30.61704,Acetaldehyde,LB
+37177,3.097309,Nitrogen Oxides,TON
+37177,1.7168124,Acrolein,LB
+37177,67.18096,Hexane,LB
+37177,195.45568,Xylenes (Mixed Isomers),LB
+37175,0.01120355,Pyrene,LB
+37175,0.0019137804,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.009814412,Fluoranthene,LB
+37175,4.394346e-05,"Dibenzo[a,h]Anthracene",LB
+37175,2.254474,Acetaldehyde,LB
+37175,0.0004723525,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.00218999,Nitrous Oxide,TON
+37163,0.03035508,"Benzo[g,h,i,]Perylene",LB
+37163,0.02034942,Benzo[k]Fluoranthene,LB
+37163,65.18368,Benzene,LB
+37163,1.8398,PM2.5 Primary (Filt + Cond),TON
+37163,28.66616,Toluene,LB
+37163,25.5026,Propionaldehyde,LB
+37163,27.2541,Xylenes (Mixed Isomers),LB
+37163,1.217004,Benz[a]Anthracene,LB
+37163,202.3092,Acetaldehyde,LB
+37163,3.474244,Fluorene,LB
+37163,0.1079441,Methane,TON
+37163,2.171331,PM25-Primary from certain diesel engines,TON
+37163,0.04184081,Sulfate Portion of PM2.5-PRI,TON
+37163,20.74156,Styrene,LB
+37163,0.018752618,"Benzo[g,h,i,]Perylene",LB
+37163,0.03376094,Benzo[b]Fluoranthene,LB
+37163,0.004685922,Benzo[k]Fluoranthene,LB
+37163,0.1131691,Benzo[a]Pyrene,LB
+37163,0.0002960654,Mercury,LB
+37163,8.048754,Fluorene,LB
+37163,0.1775348,Organic Carbon portion of PM2.5-PRI,TON
+37163,1.24694,PM2.5 Primary (Filt + Cond),TON
+37173,0.3304946,Acenaphthylene,LB
+37173,0.007691804,Nickel,LB
+37173,0.0016894346,Arsenic,LB
+37173,0.00776461,Methane,TON
+37173,0.1235948,PM25-Primary from certain diesel engines,TON
+37185,811.2654,"1,3-Butadiene",LB
+37185,9.95086,Pyrene,LB
+37185,0.04835496,"Dibenzo[a,h]Anthracene",LB
+37185,4074.578,"2,2,4-Trimethylpentane",LB
+37185,61894.23,Carbon Dioxide,TON
+37185,5.117433,Ammonia,TON
+37185,187.1437,Nitrogen Oxides,TON
+37181,667.7934,Xylenes (Mixed Isomers),LB
+37181,7.250614e-05,Chromium (VI),LB
+37181,5.471162,Volatile Organic Compounds,TON
+37001,0.450234,Styrene,LB
+37001,3.751976,Propionaldehyde,LB
+37001,0.0001064695,Chromium (VI),LB
+37001,0.09002192,"Benzo[g,h,i,]Perylene",LB
+37001,0.03823608,Manganese,LB
+37001,0.0887173,Phenanthrene,LB
+37001,0.02120238,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.00140284,Sulfate Portion of PM2.5-PRI,TON
+37127,9.999768e-06,Chromium (VI),LB
+37127,0.006067352,"Benzo[g,h,i,]Perylene",LB
+37127,0.0008674034,Chrysene,LB
+37127,0.000994087,Benz[a]Anthracene,LB
+37127,0.0012499668,Nickel,LB
+37127,0.0019166342,Arsenic,LB
+37127,160.2788,Carbon Dioxide,TON
+37127,0.01298743,PM10 Primary (Filt + Cond),TON
+37101,0.003022166,Anthracene,LB
+37101,0.003198808,Chrysene,LB
+37101,0.010765136,Manganese,LB
+37101,0.000467196,Mercury,LB
+37101,5.250954,Carbon Monoxide,TON
+37101,0.03906992,Ammonia,TON
+37177,0.0013957544,Styrene,LB
+37177,0.00011639964,"Benzo[g,h,i,]Perylene",LB
+37177,2.541428e-06,Nickel,LB
+37177,0.00012166708,Fluorene,LB
+37177,3.821467e-05,Methane,TON
+37177,1.33097e-06,Sulfate Portion of PM2.5-PRI,TON
+37161,0.018939188,Acenaphthene,LB
+37161,0.002176382,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.001221812,Ammonia,TON
+37161,0.3602829,Volatile Organic Compounds,TON
+37161,2.525534,"1,3-Butadiene",LB
+37161,73.32686,Toluene,LB
+37161,6.135694,Formaldehyde,LB
+37151,0.3821962,"2,2,4-Trimethylpentane",LB
+37151,0.0019828654,Nickel,LB
+37151,6.647922,Acetaldehyde,LB
+37151,0.0003345016,Nitrous Oxide,TON
+37139,0.003954616,PM25-Primary from certain diesel engines,TON
+37139,2.301214,Acrolein,LB
+37139,0.831443,Hexane,LB
+37139,3.269562,Xylenes (Mixed Isomers),LB
+37139,1.2744938e-05,Chromium (VI),LB
+37139,6.577248e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.007234922,Manganese,LB
+37141,0.003594904,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,1576.53,Carbon Dioxide,TON
+37141,0.01372623,Sulfur Dioxide,TON
+37131,2.234312,Acrolein,LB
+37131,189.93692,Hexane,LB
+37131,0.10145916,Anthracene,LB
+37131,0.17390332,Fluoranthene,LB
+37131,0.03559526,Chrysene,LB
+37131,0.07374892,PM10 Primary (Filt + Cond),TON
+37131,0.001590569,Sulfate Portion of PM2.5-PRI,TON
+37131,3.48011,Volatile Organic Compounds,TON
+37125,0.002253572,Nitrous Oxide,TON
+37125,1.891388,Nitrogen Oxides,TON
+37125,0.14580922,Acenaphthene,LB
+37125,0.002110292,"Benzo[g,h,i,]Perylene",LB
+37121,0.03848536,Styrene,LB
+37121,0.0004286498,Manganese,LB
+37121,9.51202e-05,Nickel,LB
+37121,0.003324806,Fluorene,LB
+37121,0.001177331,Nitrous Oxide,TON
+37121,0.000522135,Sulfur Dioxide,TON
+37111,0.014168664,"Dibenzo[a,h]Anthracene",LB
+37111,105.77826,Acrolein,LB
+37111,54.7897,Propionaldehyde,LB
+37111,646.544,Acetaldehyde,LB
+37111,12.249142,Phenanthrene,LB
+37111,5.852896,Fluorene,LB
+37111,157.9295,Naphthalene,LB
+37111,3.176193,PM25-Primary from certain diesel engines,TON
+37111,0.5984158,Ammonia,TON
+37111,4.982425,PM10 Primary (Filt + Cond),TON
+37111,0.3327761,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.3224437,Sulfate Portion of PM2.5-PRI,TON
+37157,1.3032006,Hexane,LB
+37157,0.002293106,"Benzo[g,h,i,]Perylene",LB
+37157,0.011459072,Benzo[b]Fluoranthene,LB
+37157,0.0015749432,Benzo[k]Fluoranthene,LB
+37157,0.0384253,Benzo[a]Pyrene,LB
+37157,4.644048,Benzene,LB
+37157,21.75266,Acetaldehyde,LB
+37157,0.01977061,Ammonia,TON
+37157,0.2760214,Volatile Organic Compounds,TON
+37157,0.5237728,Pyrene,LB
+37157,0.0002211932,Benzo[k]Fluoranthene,LB
+37157,111.50352,Formaldehyde,LB
+37157,0.06311196,Benz[a]Anthracene,LB
+37157,8.307879,Carbon Monoxide,TON
+37157,4.560012,"2,2,4-Trimethylpentane",LB
+37157,3.435112,Ethyl Benzene,LB
+37157,0.11452434,Propionaldehyde,LB
+37157,0.00893658,Pyrene,LB
+37157,6.348452e-06,Nitrate portion of PM2.5-PRI,TON
+37153,5.439642,Styrene,LB
+37153,31.15268,Acrolein,LB
+37153,29.04318,Toluene,LB
+37153,0.30123,Benzo[a]Pyrene,LB
+37153,173.057,Acetaldehyde,LB
+37153,1.569876,PM10 Primary (Filt + Cond),TON
+37153,1.105711,PM2.5 Primary (Filt + Cond),TON
+37153,16.631152,Formaldehyde,LB
+37153,1.2879136,Acrolein,LB
+37153,446.1168,Carbon Dioxide,TON
+37153,0.1170233,PM10 Primary (Filt + Cond),TON
+37153,0.09360952,Volatile Organic Compounds,TON
+37151,0.0206653,Nickel,LB
+37151,76.27444,Acetaldehyde,LB
+37151,1.0382832,Fluorene,LB
+37151,0.006071461,Nitrous Oxide,TON
+37151,0.344141,PM2.5 Primary (Filt + Cond),TON
+37151,5.435142,"1,3-Butadiene",LB
+37151,13.279252,Xylenes (Mixed Isomers),LB
+37149,4.0616,Xylenes (Mixed Isomers),LB
+37149,1.0434432e-07,Chromium (VI),LB
+37149,1.6175802,Benzene,LB
+37149,6.800414e-05,Manganese,LB
+37149,0.0919367,Naphthalene,LB
+37149,0.0006757611,Nitrous Oxide,TON
+37149,0.0005440295,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.03170523,Volatile Organic Compounds,TON
+37147,26.3208,Styrene,LB
+37147,59.37008,"1,3-Butadiene",LB
+37147,0.02724238,"Benzo[g,h,i,]Perylene",LB
+37147,0.698958,Chrysene,LB
+37147,1.4401674,Benz[a]Anthracene,LB
+37147,97.37234,Carbon Monoxide,TON
+37147,0.1689649,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,3.808888,Benz[a]Anthracene,LB
+37147,275.6968,Nitrogen Oxides,TON
+37147,3.708104,Organic Carbon portion of PM2.5-PRI,TON
+37147,18.617366,Pyrene,LB
+37147,16.33095,Fluoranthene,LB
+37139,1.1813812e-06,Chromium (VI),LB
+37139,0.003586146,"Benzo[g,h,i,]Perylene",LB
+37139,0.001080676,Benzo[k]Fluoranthene,LB
+37139,0.0197122,Acenaphthylene,LB
+37139,0.0011034536,Chrysene,LB
+37139,1.1843438e-05,Mercury,LB
+37139,1.439446,Acetaldehyde,LB
+37139,0.00877258,Fluorene,LB
+37135,5130.288,Toluene,LB
+37135,0.016204858,Mercury,LB
+37135,0.2020586,Nickel,LB
+37135,0.3098238,Arsenic,LB
+37135,8.547882,Phenanthrene,LB
+37135,26.54014,Volatile Organic Compounds,TON
+37131,0.2477806,Propionaldehyde,LB
+37131,0.3078826,Xylenes (Mixed Isomers),LB
+37131,0.03452736,Fluoranthene,LB
+37131,0.0001293124,Benzo[k]Fluoranthene,LB
+37131,0.0006872704,Nickel,LB
+37131,0.05563112,Phenanthrene,LB
+37131,0.5102462,Naphthalene,LB
+37131,0.251388,Nitrogen Oxides,TON
+37131,0.0003472201,Sulfate Portion of PM2.5-PRI,TON
+37131,0.00010991474,Benzo[b]Fluoranthene,LB
+37131,0.004818848,Styrene,LB
+37131,0.00018200244,Anthracene,LB
+37131,0.000130852,Methane,TON
+37131,0.09632693,Carbon Monoxide,TON
+37131,0.000305489,PM10 Primary (Filt + Cond),TON
+37131,0.003398364,Volatile Organic Compounds,TON
+37123,0.03857666,Acenaphthylene,LB
+37123,0.0003646836,Arsenic,LB
+37123,0.04640598,Phenanthrene,LB
+37115,5.937214,Hexane,LB
+37115,0.002343562,Benzo[b]Fluoranthene,LB
+37115,0.00232241,Benz[a]Anthracene,LB
+37115,0.3930516,Naphthalene,LB
+37115,0.0004067262,Ammonia,TON
+37115,0.445966,Nickel,LB
+37115,8.015514,Acenaphthene,LB
+37115,416.1414,Naphthalene,LB
+37115,1123.5202,"1,3-Butadiene",LB
+37115,2.677956,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,68594.03,Carbon Dioxide,TON
+37115,0.6594283,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.004263965,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.3138804,Fluoranthene,LB
+37113,8.124482,Benzene,LB
+37113,0.006340188,Arsenic,LB
+37109,0.0018398452,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,49354.56,Xylenes (Mixed Isomers),LB
+37109,0.012509968,Chromium (VI),LB
+37109,6946.472,Formaldehyde,LB
+37109,0.02212093,Nitrate portion of PM2.5-PRI,TON
+37109,8.41493,PM2.5 Primary (Filt + Cond),TON
+37099,1.0651066,Nickel,LB
+37099,1.633128,Arsenic,LB
+37099,263.9222,Styrene,LB
+37099,0.09361668,"Dibenzo[a,h]Anthracene",LB
+37099,4.680701,Nitrous Oxide,TON
+37099,1.531328,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,2.1445,Acrolein,LB
+37089,2.252052,Toluene,LB
+37089,1.3719096,Propionaldehyde,LB
+37089,0.0012248896,"Benzo[g,h,i,]Perylene",LB
+37089,12.081072,Acetaldehyde,LB
+37089,0.01985489,Methane,TON
+37089,0.007214642,Sulfate Portion of PM2.5-PRI,TON
+37081,0.16792388,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,7.243606,Benz[a]Anthracene,LB
+37081,0.0011949414,Mercury,LB
+37081,1461.1686,Acetaldehyde,LB
+37081,365.2834,Naphthalene,LB
+37081,3.203028,Organic Carbon portion of PM2.5-PRI,TON
+37081,8.355933,PM2.5 Primary (Filt + Cond),TON
+37081,0.4597489,Sulfate Portion of PM2.5-PRI,TON
+37077,16.726508,Ethyl Benzene,LB
+37077,3.529408,Phenanthrene,LB
+37077,0.06444913,Elemental Carbon portion of PM2.5-PRI,TON
+37077,19.27495,Nitrogen Oxides,TON
+37077,0.3071024,PM2.5 Primary (Filt + Cond),TON
+37077,496.4282,Hexane,LB
+37077,0.5561498,Anthracene,LB
+37077,1402.9102,Xylenes (Mixed Isomers),LB
+37077,0.1948033,Benzo[b]Fluoranthene,LB
+37069,0.003051582,"Dibenzo[a,h]Anthracene",LB
+37069,0.2547453,PM10-Primary from certain diesel engines,TON
+37069,0.08636877,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.1056209,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.005926724,Sulfate Portion of PM2.5-PRI,TON
+37065,0.000389226,Fluoranthene,LB
+37065,116.0436,Carbon Dioxide,TON
+37065,0.0005209879,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.00277505,Ammonia,TON
+37067,2.809061e-06,Nitrate portion of PM2.5-PRI,TON
+37051,165.61386,Toluene,LB
+37051,0.0597577,"Benzo[g,h,i,]Perylene",LB
+37051,0.013797712,Benz[a]Anthracene,LB
+37051,0.01146647,Nitrous Oxide,TON
+37051,1.469341,Nitrogen Oxides,TON
+37051,0.02635565,PM2.5 Primary (Filt + Cond),TON
+37051,0.01029976,Sulfur Dioxide,TON
+37143,66.80874,Benzene,LB
+37117,0.509631,Pyrene,LB
+37117,0.0007311072,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,8.816224,Benzene,LB
+37117,2.359526e-05,Mercury,LB
+37117,0.1041582,PM10-Primary from certain diesel engines,TON
+37117,0.0001925874,Nitrate portion of PM2.5-PRI,TON
+37117,0.003375099,Sulfate Portion of PM2.5-PRI,TON
+37111,0.0007973254,Arsenic,LB
+37111,0.01047492,Organic Carbon portion of PM2.5-PRI,TON
+37111,10.889876,Ethyl Benzene,LB
+37111,4.159884e-06,Chromium (VI),LB
+37111,0.0748204,Acenaphthylene,LB
+37121,4.535506,Anthracene,LB
+37121,0.00200922,Chromium (VI),LB
+37121,4.12668,"Benzo[g,h,i,]Perylene",LB
+37121,1642.922,Formaldehyde,LB
+37121,0.03561094,"Dibenzo[a,h]Anthracene",LB
+37121,0.4471052,Manganese,LB
+37121,1831.5846,Acetaldehyde,LB
+37121,2.315522,Nitrous Oxide,TON
+37115,0.5465562,Pyrene,LB
+37115,0.3419681,Volatile Organic Compounds,TON
+37115,0.002803588,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.01101447,Benzo[b]Fluoranthene,LB
+37115,0.0015042082,"Dibenzo[a,h]Anthracene",LB
+37115,1.5459372,"2,2,4-Trimethylpentane",LB
+37115,0.6886618,Phenanthrene,LB
+37115,0.4018598,Fluorene,LB
+37115,2.400315,Carbon Monoxide,TON
+37115,4.379022,Ethyl Benzene,LB
+37115,1.6608804,Phenanthrene,LB
+37115,0.9764366,Fluorene,LB
+37115,14.617566,Naphthalene,LB
+37115,2036.859,Carbon Dioxide,TON
+37113,43.92904,Formaldehyde,LB
+37113,0.0015642754,Manganese,LB
+37113,1.3712554e-05,Mercury,LB
+37113,0.00017567768,Acenaphthene,LB
+37113,70.97407,Carbon Dioxide,TON
+37113,0.002657658,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.0013601632,Benzo[b]Fluoranthene,LB
+37099,104.9168,Carbon Dioxide,TON
+37099,0.001090472,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,22.26302,Ethyl Benzene,LB
+37095,0.5875802,Styrene,LB
+37095,0.03892656,Fluoranthene,LB
+37095,1.378082,Naphthalene,LB
+37095,0.01213673,Methane,TON
+37095,7.543136,Carbon Monoxide,TON
+37079,0.6783036,"1,3-Butadiene",LB
+37079,0.09418764,Acrolein,LB
+37079,6.63476e-05,"Dibenzo[a,h]Anthracene",LB
+37079,6.273354,"2,2,4-Trimethylpentane",LB
+37079,0.001761767,Ammonia,TON
+37081,0.06232888,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,29.45804,"2,2,4-Trimethylpentane",LB
+37081,2.884302,PM10-Primary from certain diesel engines,TON
+37057,44.81886,Hexane,LB
+37057,0.0779586,Pyrene,LB
+37057,0.0683356,Fluoranthene,LB
+37057,0.04669986,Acenaphthene,LB
+37057,0.08450031,Methane,TON
+37057,69.70684,Carbon Dioxide,TON
+37057,5.056745e-05,Nitrate portion of PM2.5-PRI,TON
+37057,0.02638862,PM10 Primary (Filt + Cond),TON
+37055,1.5064048,Styrene,LB
+37055,0.3305888,Anthracene,LB
+37055,0.637492,Fluoranthene,LB
+37055,0.04418766,Benzo[a]Pyrene,LB
+37055,0.3443056,Acenaphthene,LB
+37055,11.117876,Naphthalene,LB
+37055,0.2321284,PM2.5 Primary (Filt + Cond),TON
+37055,0.007239276,Sulfate Portion of PM2.5-PRI,TON
+37053,22.31246,"2,2,4-Trimethylpentane",LB
+37053,9.392224,Benzene,LB
+37049,0.00838827,Naphthalene,LB
+37049,1.909264,Nitrogen Oxides,TON
+37049,5.937722e-08,Chromium (VI),LB
+37049,0.0004213938,Benz[a]Anthracene,LB
+37049,0.0001307251,Chromium (VI),LB
+37049,0.2426016,Manganese,LB
+37049,0.01288846,Nitrous Oxide,TON
+37049,0.1286526,Ammonia,TON
+37049,3.341596,PM10 Primary (Filt + Cond),TON
+37049,2.99533,Volatile Organic Compounds,TON
+37035,58.5713,Propionaldehyde,LB
+37035,1.3730426,Chrysene,LB
+37035,0.702969,Benzo[a]Pyrene,LB
+37035,0.0005894404,Mercury,LB
+37035,38.65983,Carbon Monoxide,TON
+37035,45263.16,Carbon Dioxide,TON
+37013,0.3525984,Chrysene,LB
+37013,41.3282,Naphthalene,LB
+37013,11.70227,Carbon Monoxide,TON
+37013,17347.94,Carbon Dioxide,TON
+37013,1.558501,PM10-Primary from certain diesel engines,TON
+37013,0.2579762,Ammonia,TON
+37013,9.418228,"1,3-Butadiene",LB
+37013,28.54294,Acrolein,LB
+37013,0.9754478,Anthracene,LB
+37013,6.57667,Hexane,LB
+37013,2.98459,Pyrene,LB
+37013,0.013601436,"Benzo[g,h,i,]Perylene",LB
+37013,4.862604e-05,Mercury,LB
+37013,0.03909736,Nickel,LB
+37013,115.55412,Acetaldehyde,LB
+37013,2.015134,Fluorene,LB
+37013,0.003920557,Nitrate portion of PM2.5-PRI,TON
+37013,26.01278,Nitrogen Oxides,TON
+37013,1.258326,PM2.5 Primary (Filt + Cond),TON
+37013,0.03351556,Sulfur Dioxide,TON
+37021,10034.534,Toluene,LB
+37021,0.000432905,Chromium (VI),LB
+37021,2.54055,Fluorene,LB
+37021,0.144005,Sulfur Dioxide,TON
+37005,1.601998e-05,Chromium (VI),LB
+37005,0.012301812,Benzo[k]Fluoranthene,LB
+37005,0.190011,Acenaphthylene,LB
+37005,81.89108,"2,2,4-Trimethylpentane",LB
+37005,0.04170838,Acenaphthene,LB
+37005,0.2267126,Phenanthrene,LB
+37085,3.173848,Benzene,LB
+37049,2.669704,Propionaldehyde,LB
+37049,0.019036836,Fluoranthene,LB
+37049,0.02243452,Fluorene,LB
+37049,0.03342692,PM2.5 Primary (Filt + Cond),TON
+37113,0.4802218,Anthracene,LB
+37113,0.0003113762,Chromium (VI),LB
+37113,0.004137338,"Dibenzo[a,h]Anthracene",LB
+37113,378.5862,"2,2,4-Trimethylpentane",LB
+37113,0.003121556,Mercury,LB
+37113,3.05417,Phenanthrene,LB
+37099,28.6497,Acrolein,LB
+37099,33.4529,Xylenes (Mixed Isomers),LB
+37099,0.06399408,Benzo[b]Fluoranthene,LB
+37099,0.008939556,Benzo[k]Fluoranthene,LB
+37099,390.9534,Formaldehyde,LB
+37099,0.03749118,Arsenic,LB
+37099,2.315836,Fluorene,LB
+37099,40.54864,Naphthalene,LB
+37099,0.2891611,Methane,TON
+37099,0.0151852,Nitrous Oxide,TON
+37099,2.263348,PM10 Primary (Filt + Cond),TON
+37099,0.09877111,Sulfate Portion of PM2.5-PRI,TON
+37095,0.012992076,Chrysene,LB
+37095,0.05133932,PM10 Primary (Filt + Cond),TON
+37095,0.9571524,Hexane,LB
+37095,0.103101,Anthracene,LB
+37095,2.022374,Propionaldehyde,LB
+37083,0.012379754,Hexane,LB
+37083,0.0388166,Xylenes (Mixed Isomers),LB
+37083,6.353226e-05,"Benzo[g,h,i,]Perylene",LB
+37083,4.750082e-07,Nickel,LB
+37083,7.283458e-07,Arsenic,LB
+37083,1.8907174e-05,Acenaphthene,LB
+37083,0.01036735,Carbon Monoxide,TON
+37083,3.474276e-05,PM10 Primary (Filt + Cond),TON
+37083,5.940471e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.09162482,Anthracene,LB
+37073,1.5573746,Propionaldehyde,LB
+37073,0.0007926952,"Benzo[g,h,i,]Perylene",LB
+37073,0.003172566,Benzo[b]Fluoranthene,LB
+37073,0.010640582,Benzo[a]Pyrene,LB
+37065,237.6438,Propionaldehyde,LB
+37065,3.143932,Benzo[b]Fluoranthene,LB
+37065,205.963,Acrolein,LB
+37065,2.519924,Manganese,LB
+37065,0.1361541,Sulfate Portion of PM2.5-PRI,TON
+37061,0.3383766,Ethyl Benzene,LB
+37061,0.5429686,Propionaldehyde,LB
+37061,0.002051218,Benzo[b]Fluoranthene,LB
+37061,10.182616,Formaldehyde,LB
+37061,0.006879434,Benzo[a]Pyrene,LB
+37061,0.2539096,"2,2,4-Trimethylpentane",LB
+37061,0.000486943,Arsenic,LB
+37061,0.2100859,Carbon Monoxide,TON
+37061,0.01205983,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.0007637028,Sulfate Portion of PM2.5-PRI,TON
+37051,0.08377818,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,15.322432,Anthracene,LB
+37049,6.078256,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,4.71592,Benzo[b]Fluoranthene,LB
+37049,3.94395,Manganese,LB
+37049,9.499189,Nitrous Oxide,TON
+37049,3.489357,Organic Carbon portion of PM2.5-PRI,TON
+37049,19.63116,PM10 Primary (Filt + Cond),TON
+37049,7.454799,PM2.5 Primary (Filt + Cond),TON
+37049,0.1957188,Sulfate Portion of PM2.5-PRI,TON
+37035,0.07822942,Manganese,LB
+37035,5342.864,Carbon Dioxide,TON
+37035,0.3505517,PM2.5 Primary (Filt + Cond),TON
+37027,7.707652,Benzene,LB
+37027,0.014543564,Fluorene,LB
+37027,3.081242e-06,Chromium (VI),LB
+37027,0.0017850466,Chrysene,LB
+37027,9.564344e-05,Ammonia,TON
+37027,2.015638e-05,"Dibenzo[a,h]Anthracene",LB
+37047,4357.948,"2,2,4-Trimethylpentane",LB
+37047,495.3394,Benzene,LB
+37045,0.9821726,"1,3-Butadiene",LB
+37045,0.11038048,Anthracene,LB
+37045,0.0240358,Benzo[a]Pyrene,LB
+37045,0.0992092,Acenaphthene,LB
+37045,3.351395,Nitrogen Oxides,TON
+37045,0.008199413,Sulfate Portion of PM2.5-PRI,TON
+37041,53.69724,Benzene,LB
+37039,0.005818314,Pyrene,LB
+37039,1.363602e-06,Chromium (VI),LB
+37039,0.0013564038,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.015891556,Acenaphthylene,LB
+37039,1.3669884e-05,Mercury,LB
+37039,0.007067356,Fluorene,LB
+37039,0.0003006221,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.2407301,Ammonia,TON
+37027,0.03958577,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,3731.45,Toluene,LB
+37027,151.54564,Formaldehyde,LB
+37027,834.701,"2,2,4-Trimethylpentane",LB
+37027,0.0012965856,Mercury,LB
+37007,0.11391934,Xylenes (Mixed Isomers),LB
+37007,2.781258e-05,Benz[a]Anthracene,LB
+37007,0.0001698372,Arsenic,LB
+37007,46.32278,Carbon Dioxide,TON
+37007,0.01031111,PM10-Primary from certain diesel engines,TON
+37007,8.57952e-05,Nitrous Oxide,TON
+37007,0.00018196716,"Benzo[g,h,i,]Perylene",LB
+37007,0.05765928,Acrolein,LB
+37007,11.930176,Toluene,LB
+37007,0.002966398,Acenaphthene,LB
+37007,0.000687556,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.0006241338,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,2.869866,Phenanthrene,LB
+37019,0.4938738,PM10 Primary (Filt + Cond),TON
+37019,10.104478,"1,3-Butadiene",LB
+37019,1.7190776,Acenaphthylene,LB
+37019,0.0016378,"Dibenzo[a,h]Anthracene",LB
+37019,30.32922,Benzene,LB
+37019,0.05166424,Manganese,LB
+37011,13.486104,Acrolein,LB
+37011,0.5590062,Anthracene,LB
+37011,8.722366,Propionaldehyde,LB
+37011,4.28628e-05,Chromium (VI),LB
+37011,1.1851434,Fluoranthene,LB
+37011,179.59402,Formaldehyde,LB
+37011,75.61094,Acetaldehyde,LB
+37011,0.006090112,Nitrous Oxide,TON
+37011,6.461188,Nitrogen Oxides,TON
+37011,0.1555948,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.5377444,PM10 Primary (Filt + Cond),TON
+37009,15.43816,Acrolein,LB
+37009,0.007406116,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.8894214,Acenaphthylene,LB
+37009,223.5342,Formaldehyde,LB
+37009,0.0971075,Benzo[a]Pyrene,LB
+37009,0.0977736,Manganese,LB
+37009,0.037785,Nickel,LB
+37009,10257.51,Carbon Dioxide,TON
+37009,0.8167829,PM25-Primary from certain diesel engines,TON
+37009,0.08674801,Sulfur Dioxide,TON
+37009,2.782796,Formaldehyde,LB
+37009,0.01842162,Fluorene,LB
+37005,7.2858,Toluene,LB
+37005,2.042422,Hexane,LB
+37005,0.4046556,Fluoranthene,LB
+37005,0.06842964,Chrysene,LB
+37005,6.801358,Benzene,LB
+37005,4.88446e-05,Mercury,LB
+37005,0.05821536,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.0013380906,"Dibenzo[a,h]Anthracene",LB
+37005,126.08192,"2,2,4-Trimethylpentane",LB
+37005,0.04883748,Benz[a]Anthracene,LB
+37005,0.1053683,Ammonia,TON
+37005,0.06389053,PM2.5 Primary (Filt + Cond),TON
+37005,0.04716832,Benzo[k]Fluoranthene,LB
+37005,0.8725488,Acenaphthylene,LB
+37003,6.699512e-06,Acrolein,LB
+37003,5.873544e-06,Propionaldehyde,LB
+37003,8.599428e-05,Formaldehyde,LB
+37003,2.859208e-09,"Dibenzo[a,h]Anthracene",LB
+37003,1.4148786e-05,Naphthalene,LB
+37001,27269.32,Hexane,LB
+37001,10.213012,Benz[a]Anthracene,LB
+37001,8090.578,Carbon Monoxide,TON
+37001,29.91896,Ammonia,TON
+37185,0.02693548,Propionaldehyde,LB
+37185,1.0958048e-06,Chromium (VI),LB
+37185,0.00013972936,Benzo[k]Fluoranthene,LB
+37185,0.0002354504,Manganese,LB
+37185,1.0985616e-05,Mercury,LB
+37185,1.28453,Acetaldehyde,LB
+37055,8.191868e-05,Sulfate Portion of PM2.5-PRI,TON
+37055,0.06787646,Acrolein,LB
+37055,0.15833642,Propionaldehyde,LB
+37055,0.0013178,Arsenic,LB
+37055,0.0004028209,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.0001512631,Nitrous Oxide,TON
+37043,5.479974e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.0002581424,Sulfur Dioxide,TON
+37167,0.04496656,"1,3-Butadiene",LB
+37167,0.000323238,Anthracene,LB
+37167,0.0003457542,Acenaphthene,LB
+37167,0.0019742496,Phenanthrene,LB
+37167,0.0009831468,Nitrous Oxide,TON
+37167,0.0005033021,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.04306176,Phenanthrene,LB
+37167,0.8703666,Nitrogen Oxides,TON
+37167,0.014482264,Pyrene,LB
+37167,15.64986,Xylenes (Mixed Isomers),LB
+37175,0.0008030212,Phenanthrene,LB
+37175,0.0003313321,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.000318644,Sulfur Dioxide,TON
+37175,0.0004586926,Pyrene,LB
+37175,0.000240056,Fluoranthene,LB
+37175,3.625886e-05,Benz[a]Anthracene,LB
+37173,105.10998,Ethyl Benzene,LB
+37173,0.0838929,Anthracene,LB
+37173,0.1436424,Fluoranthene,LB
+37173,0.006422396,Manganese,LB
+37173,0.0003976164,Mercury,LB
+37173,0.5322112,Phenanthrene,LB
+37173,0.1981821,Fluorene,LB
+37173,0.006130715,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.02318296,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.01355051,Sulfur Dioxide,TON
+37165,6.778527e-06,Nitrate portion of PM2.5-PRI,TON
+37165,0.001222072,Organic Carbon portion of PM2.5-PRI,TON
+37165,1.927646,Hexane,LB
+37165,0.04181486,Propionaldehyde,LB
+37165,4.883688,Xylenes (Mixed Isomers),LB
+37165,0.0012202606,Benzo[b]Fluoranthene,LB
+37165,0.010376758,Acenaphthylene,LB
+37165,0.00205402,Benzo[a]Pyrene,LB
+37165,1.5789014,"2,2,4-Trimethylpentane",LB
+37165,0.0011202062,Benz[a]Anthracene,LB
+37165,0.0013431914,Manganese,LB
+37027,2.092348,Ethyl Benzene,LB
+37027,1.9483996,Hexane,LB
+37173,0.0003099798,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.12120218,Ethyl Benzene,LB
+37173,2.077902e-06,Chromium (VI),LB
+37173,0.0002599778,Benzo[b]Fluoranthene,LB
+37173,0.0009856548,Acenaphthylene,LB
+37153,0.5570742,Toluene,LB
+37153,0.000274634,Benzo[b]Fluoranthene,LB
+37153,0.0007330092,Manganese,LB
+37153,2.71562,Acetaldehyde,LB
+37153,0.02799452,Nitrogen Oxides,TON
+37123,0.000236269,Benzo[b]Fluoranthene,LB
+37123,0.0002041932,Benz[a]Anthracene,LB
+37123,0.010447274,Naphthalene,LB
+37109,0.009219384,Nickel,LB
+37109,0.02116416,Fluorene,LB
+37109,0.01249386,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.09424328,PM10 Primary (Filt + Cond),TON
+37109,0.009958363,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,24.02368,Toluene,LB
+37109,21.46022,Xylenes (Mixed Isomers),LB
+37175,1.197127,Carbon Monoxide,TON
+37175,0.1167104,Nitrogen Oxides,TON
+37175,0.001327284,PM2.5 Primary (Filt + Cond),TON
+37175,11.445086,Toluene,LB
+37175,0.0007473546,Benz[a]Anthracene,LB
+37175,17.130792,Pyrene,LB
+37175,2.498006,Benz[a]Anthracene,LB
+37175,10070.594,Benzene,LB
+37175,0.04085722,Mercury,LB
+37175,10.397338,Acenaphthene,LB
+37175,539.707,Naphthalene,LB
+37167,1.16298e-05,Mercury,LB
+37167,0.002431634,Arsenic,LB
+37167,0.02227056,Methane,TON
+37167,0.003486675,Sulfur Dioxide,TON
+37167,0.0016097416,"Benzo[g,h,i,]Perylene",LB
+37167,1.1699418,Ethyl Benzene,LB
+37167,0.0005233872,Benzo[k]Fluoranthene,LB
+37167,0.08424792,Acenaphthylene,LB
+37167,5.56318e-06,Mercury,LB
+37167,1.808704,Naphthalene,LB
+37167,432.1901,Carbon Dioxide,TON
+37167,0.1293735,PM10 Primary (Filt + Cond),TON
+37167,0.09215637,Volatile Organic Compounds,TON
+37159,1238.9188,Formaldehyde,LB
+37159,2.866952,PM10-Primary from certain diesel engines,TON
+37149,2.135583,Volatile Organic Compounds,TON
+37149,9.90346,Hexane,LB
+37149,3.130956,Pyrene,LB
+37149,0.008204828,"Dibenzo[a,h]Anthracene",LB
+37149,0.6925762,Benz[a]Anthracene,LB
+37149,166.5159,Acetaldehyde,LB
+37149,0.2148253,Ammonia,TON
+37149,0.003447075,Nitrate portion of PM2.5-PRI,TON
+37151,138.76572,Ethyl Benzene,LB
+37151,0.0008958686,Chromium (VI),LB
+37151,0.1149043,Benzo[b]Fluoranthene,LB
+37151,0.3852574,Benzo[a]Pyrene,LB
+37151,13.320978,Propionaldehyde,LB
+37151,0.0412991,Manganese,LB
+37151,0.8112086,Acenaphthene,LB
+37151,2.076026,Nitrogen Oxides,TON
+37147,82.96828,Hexane,LB
+37147,75.10416,"2,2,4-Trimethylpentane",LB
+37147,31.61432,Benzene,LB
+37139,0.0019749872,Benzo[k]Fluoranthene,LB
+37139,0.0019732442,"Dibenzo[a,h]Anthracene",LB
+37139,9.868102e-06,Mercury,LB
+37139,0.0357566,Methane,TON
+37139,2.49284,Nitrogen Oxides,TON
+37139,0.2234565,PM10 Primary (Filt + Cond),TON
+37139,0.00401363,Sulfate Portion of PM2.5-PRI,TON
+37139,0.4078806,Volatile Organic Compounds,TON
+37199,0.2692334,Hexane,LB
+37199,1.345032e-05,Nickel,LB
+37199,0.0007262002,Fluorene,LB
+37199,2.934259e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.002039198,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.003372232,Acenaphthylene,LB
+37195,1.4300396,Formaldehyde,LB
+37195,0.004198702,Phenanthrene,LB
+37195,0.007350655,Methane,TON
+37197,0.08016738,Benzo[a]Pyrene,LB
+37197,0.04348938,Benz[a]Anthracene,LB
+37197,0.17571886,Fluorene,LB
+37197,0.01494835,Elemental Carbon portion of PM2.5-PRI,TON
+37197,1.652103,Volatile Organic Compounds,TON
+37197,59.4133,Toluene,LB
+37197,0.013997794,Anthracene,LB
+37197,0.00812868,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.001935896,Elemental Carbon portion of PM2.5-PRI,TON
+37197,2.241615e-05,Nitrate portion of PM2.5-PRI,TON
+37189,0.002822218,Benzo[b]Fluoranthene,LB
+37189,0.0003907208,Benzo[k]Fluoranthene,LB
+37189,0.00205515,Nickel,LB
+37189,323.6005,Carbon Dioxide,TON
+37189,0.002771311,Sulfur Dioxide,TON
+37187,6.010332,Hexane,LB
+37187,0.6708092,Anthracene,LB
+37187,0.0006494018,Benzo[k]Fluoranthene,LB
+37187,1.3868666,Acenaphthylene,LB
+37187,0.015628218,Benzo[a]Pyrene,LB
+37179,0.0816152,Benz[a]Anthracene,LB
+37179,3.573272,Naphthalene,LB
+37179,0.5934875,Carbon Monoxide,TON
+37179,0.09833663,PM10 Primary (Filt + Cond),TON
+37179,4.891638e-06,Chromium (VI),LB
+37177,3.750986e-06,Mercury,LB
+37177,0.0002550031,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.0006607407,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.02661564,Pyrene,LB
+37177,2.740506e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.0283452,Acenaphthylene,LB
+37173,5.70657,"1,3-Butadiene",LB
+37173,0.005331028,Benzo[k]Fluoranthene,LB
+37173,0.429228,Benz[a]Anthracene,LB
+37173,1.2612626,Fluorene,LB
+37173,2198.635,Carbon Dioxide,TON
+37173,0.01877893,Sulfate Portion of PM2.5-PRI,TON
+37173,1.8369718,"1,3-Butadiene",LB
+37173,0.003186854,Arsenic,LB
+37173,24.95016,Acetaldehyde,LB
+37173,0.5030806,Phenanthrene,LB
+37173,0.001060539,Nitrous Oxide,TON
+37173,0.07785244,PM10 Primary (Filt + Cond),TON
+37173,0.003482258,Sulfur Dioxide,TON
+37041,0.5868192,Anthracene,LB
+37041,0.00261344,"Benzo[g,h,i,]Perylene",LB
+37041,0.0005034166,Benzo[k]Fluoranthene,LB
+37041,0.02095474,Manganese,LB
+37041,0.7245554,Acenaphthene,LB
+37041,0.06697112,Methane,TON
+37041,11.48262,Carbon Monoxide,TON
+37041,0.02011854,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.006105042,Elemental Carbon portion of PM2.5-PRI,TON
+37033,4.331636,"1,3-Butadiene",LB
+37033,1.6618972,Propionaldehyde,LB
+37033,4.051758e-05,Chromium (VI),LB
+37033,0.11258434,"Benzo[g,h,i,]Perylene",LB
+37033,0.08663095,Ammonia,TON
+37031,5.516576,Styrene,LB
+37031,3.182948,Fluoranthene,LB
+37031,0.01340084,Benzo[k]Fluoranthene,LB
+37031,0.060678,Arsenic,LB
+37031,219.833,Acetaldehyde,LB
+37031,2.986284,Fluorene,LB
+37031,0.5516795,Methane,TON
+37031,0.3398231,Ammonia,TON
+37031,0.2218663,Sulfate Portion of PM2.5-PRI,TON
+37025,29.48304,Anthracene,LB
+37025,33.80876,"Benzo[g,h,i,]Perylene",LB
+37025,12.702156,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.273325,Mercury,LB
+37025,73949.12,Toluene,LB
+37025,5.754602,Benz[a]Anthracene,LB
+37025,17296.37,Benzene,LB
+37025,10.145798,Manganese,LB
+37025,32.77188,Fluorene,LB
+37025,410.2189,Nitrogen Oxides,TON
+37173,0.02485152,Chrysene,LB
+37173,0.0005348514,"Dibenzo[a,h]Anthracene",LB
+37173,0.4179944,"2,2,4-Trimethylpentane",LB
+37173,0.0420945,Benz[a]Anthracene,LB
+37173,0.3550689,Carbon Monoxide,TON
+37173,0.0631205,PM10 Primary (Filt + Cond),TON
+37173,0.007933423,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.01163356,Nitrous Oxide,TON
+37097,41.14868,Xylenes (Mixed Isomers),LB
+37097,0.0017461058,Nickel,LB
+37081,1072.1048,Toluene,LB
+37081,1272.7494,Xylenes (Mixed Isomers),LB
+37081,312.9696,"2,2,4-Trimethylpentane",LB
+37081,0.5989216,Arsenic,LB
+37081,918.9968,Naphthalene,LB
+37081,0.0019035436,Chrysene,LB
+37081,0.00217077,Benz[a]Anthracene,LB
+37081,1.337355,Carbon Monoxide,TON
+37077,4.648424,Hexane,LB
+37077,0.009868258,Pyrene,LB
+37077,1.821825,Formaldehyde,LB
+37077,0.00016056202,"Dibenzo[a,h]Anthracene",LB
+37077,3.97981,"2,2,4-Trimethylpentane",LB
+37077,0.0006301566,Nickel,LB
+37077,0.011016446,Fluorene,LB
+37075,2.010056,Acrolein,LB
+37075,1.9928508,Xylenes (Mixed Isomers),LB
+37075,0.1695756,Fluoranthene,LB
+37075,0.0005904066,"Dibenzo[a,h]Anthracene",LB
+37075,1.204759,Carbon Monoxide,TON
+37075,124.9034,Carbon Dioxide,TON
+37075,0.04989828,PM25-Primary from certain diesel engines,TON
+37075,0.02095637,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.002474649,Ammonia,TON
+37075,0.06487913,PM10 Primary (Filt + Cond),TON
+37071,0.04319124,Benzo[k]Fluoranthene,LB
+37071,1499.493,Formaldehyde,LB
+37071,633.5008,Acetaldehyde,LB
+37071,4.445682,Acenaphthene,LB
+37071,3.768426,PM10-Primary from certain diesel engines,TON
+37071,1.506101,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.0009859524,Benzo[b]Fluoranthene,LB
+37071,0.0017013732,Benzo[a]Pyrene,LB
+37071,0.08437378,Naphthalene,LB
+37071,0.001959595,PM2.5 Primary (Filt + Cond),TON
+37071,0.02492632,Volatile Organic Compounds,TON
+37071,0.8766052,Ethyl Benzene,LB
+37071,0.0014342484,Anthracene,LB
+37071,0.004571344,"Benzo[g,h,i,]Perylene",LB
+37063,2.46042,Toluene,LB
+37063,0.14887608,Anthracene,LB
+37063,7.320248e-06,Chromium (VI),LB
+37063,0.0012099074,Benzo[k]Fluoranthene,LB
+37063,0.0012089736,"Dibenzo[a,h]Anthracene",LB
+37063,3.818844,Benzene,LB
+37057,0.3681133,Sulfur Dioxide,TON
+37057,105.35932,Xylenes (Mixed Isomers),LB
+37057,0.03669372,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.3806772,Manganese,LB
+37057,360.9532,Formaldehyde,LB
+37057,0.215424,Benz[a]Anthracene,LB
+37057,0.0001117543,Mercury,LB
+37057,0.06376986,Nickel,LB
+37057,0.002492076,Nitrous Oxide,TON
+37057,0.07795948,PM2.5 Primary (Filt + Cond),TON
+37057,0.007735819,Sulfate Portion of PM2.5-PRI,TON
+37055,2.957882,Acenaphthene,LB
+37055,1.42131,Nitrous Oxide,TON
+37055,79.53758,Nitrogen Oxides,TON
+37055,451.923,"1,3-Butadiene",LB
+37055,12677.872,Toluene,LB
+37055,56.46802,Propionaldehyde,LB
+37055,867.9426,Formaldehyde,LB
+37055,1.472757,Benzo[a]Pyrene,LB
+37055,0.9797706,Benz[a]Anthracene,LB
+37053,0.04583258,Benzo[k]Fluoranthene,LB
+37053,0.0001826821,Nitrate portion of PM2.5-PRI,TON
+37047,4.494062,"1,3-Butadiene",LB
+37047,0.002036552,Benzo[k]Fluoranthene,LB
+37047,56.34602,Acetaldehyde,LB
+37047,0.4579036,Acenaphthene,LB
+37047,14.299954,Naphthalene,LB
+37047,4.969459,Carbon Monoxide,TON
+37047,0.4007059,PM10 Primary (Filt + Cond),TON
+37047,0.0323818,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.1440644,Styrene,LB
+37039,0.0005779176,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.002268456,Benzo[b]Fluoranthene,LB
+37039,0.07864216,Fluoranthene,LB
+37039,0.983275,Benzene,LB
+37039,0.0007346668,Arsenic,LB
+37039,0.07277126,Fluorene,LB
+37039,259.8177,Carbon Dioxide,TON
+37039,0.04965017,PM2.5 Primary (Filt + Cond),TON
+37039,0.002232665,Sulfur Dioxide,TON
+37037,0.02427032,Pyrene,LB
+37037,4.164988e-06,Chromium (VI),LB
+37037,6.724953,Carbon Monoxide,TON
+37037,0.006355964,Ammonia,TON
+37037,0.02059594,PM10 Primary (Filt + Cond),TON
+37029,0.00513436,"1,3-Butadiene",LB
+37029,0.03046078,Toluene,LB
+37029,0.00014317806,Pyrene,LB
+37029,11.847874,Formaldehyde,LB
+37029,1.329016e-05,Benz[a]Anthracene,LB
+37029,4.722856e-07,Nickel,LB
+37029,0.1801566,Carbon Monoxide,TON
+37029,0.000541039,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.001601804,PM2.5 Primary (Filt + Cond),TON
+37027,3.86198,Pyrene,LB
+37027,1.2203628,Acenaphthene,LB
+37027,1.83698,PM10-Primary from certain diesel engines,TON
+37173,0.000529328,Pyrene,LB
+37173,0.5774194,Xylenes (Mixed Isomers),LB
+37173,0.0004199974,"Benzo[g,h,i,]Perylene",LB
+37173,0.15542108,"2,2,4-Trimethylpentane",LB
+37173,0.3642116,Benzene,LB
+37173,0.0017108656,Phenanthrene,LB
+37173,0.016304908,Naphthalene,LB
+37173,0.0001560641,Sulfur Dioxide,TON
+37171,430.2802,Acrolein,LB
+37171,51898.78,Xylenes (Mixed Isomers),LB
+37171,7.02943,Benzo[k]Fluoranthene,LB
+37171,9.689068,Benzo[a]Pyrene,LB
+37171,23066.22,Benzene,LB
+37171,12.66794,Methane,TON
+37171,22.09756,Ammonia,TON
+37171,398.4118,Volatile Organic Compounds,TON
+37165,6.179832,Carbon Monoxide,TON
+37165,1.15947,PM10-Primary from certain diesel engines,TON
+37165,0.004732119,Nitrous Oxide,TON
+37165,0.05200207,Ammonia,TON
+37165,0.03221395,Sulfur Dioxide,TON
+37165,14.24375,Toluene,LB
+37165,5.666514,Hexane,LB
+37165,12.501864,Propionaldehyde,LB
+37165,0.627519,Benz[a]Anthracene,LB
+37157,0.01453921,Nitrate portion of PM2.5-PRI,TON
+37157,14.21235,PM10 Primary (Filt + Cond),TON
+37157,4.63648,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,40.39842,Acenaphthylene,LB
+37157,2.834372,Manganese,LB
+37147,24.00688,Ethyl Benzene,LB
+37147,38.80106,Propionaldehyde,LB
+37147,0.00017487684,Chromium (VI),LB
+37147,0.18659134,Benzo[b]Fluoranthene,LB
+37147,0.02554512,"Dibenzo[a,h]Anthracene",LB
+37147,0.03146958,Arsenic,LB
+37147,3.347364,PM2.5 Primary (Filt + Cond),TON
+37147,0.4379008,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,10.39056,Ethyl Benzene,LB
+37145,0.008752544,Benzo[k]Fluoranthene,LB
+37145,0.2140926,Benzo[a]Pyrene,LB
+37145,133.98544,Acetaldehyde,LB
+37145,0.01157195,Nitrous Oxide,TON
+37145,0.003826751,Nitrate portion of PM2.5-PRI,TON
+37145,0.1355335,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,1.720898,Volatile Organic Compounds,TON
+37145,4.574442,"Benzo[g,h,i,]Perylene",LB
+37145,1.2633088,Benz[a]Anthracene,LB
+37145,4557.104,Benzene,LB
+37145,4.345128,Acenaphthene,LB
+37129,0.0004922408,Chromium (VI),LB
+37129,0.3306862,Benzo[b]Fluoranthene,LB
+37129,2.492739,Methane,TON
+37129,3.594346,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.06370788,Anthracene,LB
+37129,7.972068,Acetaldehyde,LB
+37129,0.0002262054,Nitrate portion of PM2.5-PRI,TON
+37141,0.0006196966,"Dibenzo[a,h]Anthracene",LB
+37141,0.6003764,"2,2,4-Trimethylpentane",LB
+37141,0.1065448,PM25-Primary from certain diesel engines,TON
+37141,0.0002641886,Nitrate portion of PM2.5-PRI,TON
+37141,0.1590227,PM10 Primary (Filt + Cond),TON
+37141,0.3028106,Styrene,LB
+37141,0.211429,Pyrene,LB
+37141,0.0006235188,Benzo[k]Fluoranthene,LB
+37137,0.06936856,Ethyl Benzene,LB
+37137,0.0306743,Styrene,LB
+37137,0.0691477,"1,3-Butadiene",LB
+37137,0.13249148,Xylenes (Mixed Isomers),LB
+37137,2.08084,Formaldehyde,LB
+37137,0.0003892328,Manganese,LB
+37137,0.04163877,Carbon Monoxide,TON
+37137,4.01847e-05,Nitrous Oxide,TON
+37137,0.07590901,Nitrogen Oxides,TON
+37137,0.01226986,Volatile Organic Compounds,TON
+37137,1.56632e-05,Nitrate portion of PM2.5-PRI,TON
+37137,0.01055185,PM10 Primary (Filt + Cond),TON
+37137,0.502284,"1,3-Butadiene",LB
+37137,0.00188921,Arsenic,LB
+37131,0.934192,Styrene,LB
+37131,0.003498422,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,1.6032182,"2,2,4-Trimethylpentane",LB
+37131,0.15357424,Benz[a]Anthracene,LB
+37131,2.267936,Carbon Monoxide,TON
+37131,0.06444807,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.00011073194,Mercury,LB
+37131,0.4859242,PM10-Primary from certain diesel engines,TON
+37131,0.007535351,Nitrous Oxide,TON
+37131,0.1127158,Ammonia,TON
+37131,0.06242805,Organic Carbon portion of PM2.5-PRI,TON
+37131,481.6812,Formaldehyde,LB
+37131,11.741568,"2,2,4-Trimethylpentane",LB
+37125,23.0035,Benzene,LB
+37113,0.06251981,PM2.5 Primary (Filt + Cond),TON
+37113,1.7021284,Toluene,LB
+37113,0.0011089568,"Benzo[g,h,i,]Perylene",LB
+37113,0.000759406,"Dibenzo[a,h]Anthracene",LB
+37113,0.003411216,Nickel,LB
+37109,0.2535456,Chrysene,LB
+37109,0.5469738,Nitrous Oxide,TON
+37109,0.997761,PM10 Primary (Filt + Cond),TON
+37109,0.009742244,Sulfate Portion of PM2.5-PRI,TON
+37097,0.9091872,Anthracene,LB
+37097,0.08302094,Nickel,LB
+37097,2991.726,Carbon Dioxide,TON
+37097,0.01657263,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.0623236,Ammonia,TON
+37091,0.4834155,PM10-Primary from certain diesel engines,TON
+37091,0.1745528,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.01834819,Sulfate Portion of PM2.5-PRI,TON
+37091,6.377372,Ethyl Benzene,LB
+37091,2.529592,Styrene,LB
+37091,0.052443,Manganese,LB
+37105,0.000172849,Sulfate Portion of PM2.5-PRI,TON
+37105,19.89884,Xylenes (Mixed Isomers),LB
+37105,2.33069e-06,Chromium (VI),LB
+37105,0.01353688,"Benzo[g,h,i,]Perylene",LB
+37105,0.002792198,Chrysene,LB
+37105,3.54563,Carbon Monoxide,TON
+37105,102.7605,Carbon Dioxide,TON
+37101,4.96833e-06,"Dibenzo[a,h]Anthracene",LB
+37101,0.00010387832,Benz[a]Anthracene,LB
+37101,2.85253e-05,Nickel,LB
+37101,0.0002967791,Sulfur Dioxide,TON
+37101,7.752589e-06,Sulfate Portion of PM2.5-PRI,TON
+37099,3.891204,Ethyl Benzene,LB
+37099,0.004855732,"Benzo[g,h,i,]Perylene",LB
+37099,117.89584,Formaldehyde,LB
+37099,1.7358822e-05,Mercury,LB
+37099,0.3697432,Acenaphthene,LB
+37167,2.030908,Ethyl Benzene,LB
+37167,16.203896,Toluene,LB
+37167,6.080274,"2,2,4-Trimethylpentane",LB
+37129,1.204752,Volatile Organic Compounds,TON
+37129,0.018372396,Benzo[b]Fluoranthene,LB
+37129,0.02751498,Fluoranthene,LB
+37129,0.015892866,Benz[a]Anthracene,LB
+37129,0.01584047,Acenaphthene,LB
+37129,0.09037284,Phenanthrene,LB
+37129,0.03208572,Fluorene,LB
+37129,0.1349466,Methane,TON
+37131,0.7226568,Hexane,LB
+37131,1.4069074,Xylenes (Mixed Isomers),LB
+37131,0.001692121,Arsenic,LB
+37131,7.24423,Acetaldehyde,LB
+37131,0.07076195,Nitrogen Oxides,TON
+37177,2.223854,Pyrene,LB
+37177,0.3640502,Benzo[b]Fluoranthene,LB
+37177,0.3693718,Benz[a]Anthracene,LB
+37177,0.009112736,Mercury,LB
+37177,355.4157,Carbon Monoxide,TON
+37177,0.1008877,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.001437672,Nitrate portion of PM2.5-PRI,TON
+37175,0.04603178,Benzo[a]Pyrene,LB
+37175,0.267368,Fluorene,LB
+37175,0.01260262,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.01508429,Sulfur Dioxide,TON
+37169,0.2630924,Fluoranthene,LB
+37169,20.49806,Acetaldehyde,LB
+37169,0.001442628,Nitrous Oxide,TON
+37169,0.00241118,Benzo[a]Pyrene,LB
+37169,0.0010614484,Manganese,LB
+37169,1.3317982,Acetaldehyde,LB
+37169,0.002868174,Nitrous Oxide,TON
+37167,53.0522,Toluene,LB
+37167,40.22896,Hexane,LB
+37153,1.2324176,Anthracene,LB
+37153,10.465496,"2,2,4-Trimethylpentane",LB
+37153,35.92328,Benzene,LB
+37153,0.2475525,Methane,TON
+37153,1.856176,PM10-Primary from certain diesel engines,TON
+37135,0.13608534,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.2548916,Fluorene,LB
+37137,0.005381912,Nitrous Oxide,TON
+37137,7.971628,Hexane,LB
+37137,1.70664,Pyrene,LB
+37137,0.0009293908,Benzo[k]Fluoranthene,LB
+37137,0.0224045,Benzo[a]Pyrene,LB
+37137,7.790762,"2,2,4-Trimethylpentane",LB
+37137,0.2364816,PM25-Primary from certain diesel engines,TON
+37129,2.381268,"1,3-Butadiene",LB
+37129,53.36014,Xylenes (Mixed Isomers),LB
+37129,3.61549e-06,Chromium (VI),LB
+37129,0.08630348,Acenaphthylene,LB
+37129,22.38622,"2,2,4-Trimethylpentane",LB
+37129,0.004673358,Benz[a]Anthracene,LB
+37129,0.006829334,Nitrous Oxide,TON
+37129,0.0002193922,Sulfate Portion of PM2.5-PRI,TON
+37129,3.62463e-05,Mercury,LB
+37129,6.140196,Acetaldehyde,LB
+37065,1.3278694,Propionaldehyde,LB
+37065,0.01081599,Pyrene,LB
+37065,0.02550158,Acenaphthylene,LB
+37065,4.443514e-05,Nitrate portion of PM2.5-PRI,TON
+37137,0.0002236055,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.14733164,Ethyl Benzene,LB
+37137,0.00700082,Styrene,LB
+37137,0.659909,Toluene,LB
+37137,0.300913,Hexane,LB
+37137,0.000220327,Anthracene,LB
+37137,0.05833962,Propionaldehyde,LB
+37137,0.0004543088,Pyrene,LB
+37137,0.000170732,Chrysene,LB
+37137,0.3749608,Formaldehyde,LB
+37137,0.000440914,Arsenic,LB
+37137,2.867768,Acetaldehyde,LB
+37137,0.3035928,Carbon Monoxide,TON
+37175,0.008831164,Methane,TON
+37175,0.0002290347,Nitrate portion of PM2.5-PRI,TON
+37175,0.008334128,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,1.19685,Toluene,LB
+37175,0.00390502,Benzo[b]Fluoranthene,LB
+37175,0.42374,"2,2,4-Trimethylpentane",LB
+37175,0.0419951,Benz[a]Anthracene,LB
+37175,0.02254234,"1,3-Butadiene",LB
+37175,8.55825e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,2.50841,Carbon Dioxide,TON
+37165,0.008937242,Pyrene,LB
+37165,13.119174,Xylenes (Mixed Isomers),LB
+37165,0.007845764,Fluoranthene,LB
+37165,4.969976,"2,2,4-Trimethylpentane",LB
+37165,0.0005815936,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.1102256,Volatile Organic Compounds,TON
+37159,0.01453688,Ammonia,TON
+37159,0.0384451,PM10 Primary (Filt + Cond),TON
+37159,0.007188592,Sulfur Dioxide,TON
+37159,0.3569204,Styrene,LB
+37159,0.2909894,Propionaldehyde,LB
+37159,0.02634232,Pyrene,LB
+37159,5.005898,Formaldehyde,LB
+37159,0.03124764,Fluorene,LB
+37155,19.536398,Ethyl Benzene,LB
+37155,0.13119048,Acenaphthylene,LB
+37147,15.205368,Ethyl Benzene,LB
+37147,2.555328,Pyrene,LB
+37147,0.7213738,PM10 Primary (Filt + Cond),TON
+37147,0.4979929,PM2.5 Primary (Filt + Cond),TON
+37147,0.007438278,"Benzo[g,h,i,]Perylene",LB
+37147,2.058626,Fluoranthene,LB
+37147,11.854094,"2,2,4-Trimethylpentane",LB
+37143,0.8567468,Pyrene,LB
+37143,0.017034828,Benzo[b]Fluoranthene,LB
+37143,110.23708,Formaldehyde,LB
+37143,0.6463866,Fluorene,LB
+37143,3985.046,Carbon Dioxide,TON
+37143,0.451264,PM10-Primary from certain diesel engines,TON
+37143,0.04261096,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.02760834,Sulfate Portion of PM2.5-PRI,TON
+37143,0.5728336,Volatile Organic Compounds,TON
+37141,0.7740496,Acetaldehyde,LB
+37141,0.001052323,Nitrous Oxide,TON
+37141,0.0006771595,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.03666321,Volatile Organic Compounds,TON
+37127,9.244746,Hexane,LB
+37127,0.04864906,Acenaphthylene,LB
+37127,0.005982774,Manganese,LB
+37127,8.342038e-05,Mercury,LB
+37127,315.2552,Carbon Dioxide,TON
+37127,0.0003591288,Sulfate Portion of PM2.5-PRI,TON
+37111,0.650202,Volatile Organic Compounds,TON
+37111,5.733906,Xylenes (Mixed Isomers),LB
+37111,5.054974,Acrolein,LB
+37111,0.3236076,Acenaphthylene,LB
+37111,68.40646,Formaldehyde,LB
+37111,0.0007376073,Nitrous Oxide,TON
+37111,0.04458054,PM10 Primary (Filt + Cond),TON
+37177,0.02412764,Styrene,LB
+37177,9.788006,Acetaldehyde,LB
+37177,0.000834119,Acenaphthene,LB
+37177,5.496998e-06,Nitrate portion of PM2.5-PRI,TON
+37177,0.0006535216,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,21.27312,Toluene,LB
+37079,0.0003543892,Anthracene,LB
+37079,0.09201094,Propionaldehyde,LB
+37079,0.0007882928,Benzo[a]Pyrene,LB
+37079,1.8329464e-05,"Dibenzo[a,h]Anthracene",LB
+37079,0.591533,Carbon Monoxide,TON
+37079,0.0002035491,Elemental Carbon portion of PM2.5-PRI,TON
+37171,29.07502,Ethyl Benzene,LB
+37171,0.9450812,Propionaldehyde,LB
+37171,106.62396,Xylenes (Mixed Isomers),LB
+37171,14.881454,Formaldehyde,LB
+37171,0.292376,Phenanthrene,LB
+37171,618.0574,Carbon Dioxide,TON
+37171,0.01566796,Ammonia,TON
+37171,1.501195,Nitrogen Oxides,TON
+37165,7.42065,Naphthalene,LB
+37165,0.02606667,Methane,TON
+37165,0.005832177,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.004052377,Sulfur Dioxide,TON
+37165,3.589146,Propionaldehyde,LB
+37165,0.3751774,Pyrene,LB
+37165,0.002363786,Benzo[b]Fluoranthene,LB
+37161,109.383,Carbon Dioxide,TON
+37149,0.00360368,"Benzo[g,h,i,]Perylene",LB
+37149,0.0008269234,Benzo[b]Fluoranthene,LB
+37149,0.000718013,Chrysene,LB
+37147,4630.974,Hexane,LB
+37019,0.04053081,Carbon Monoxide,TON
+37019,3.813041e-05,Nitrous Oxide,TON
+37019,0.0001733799,Ammonia,TON
+37019,4.630716e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.001729576,Volatile Organic Compounds,TON
+37015,1.6636252,Fluorene,LB
+37015,26.2464,Naphthalene,LB
+37015,5.544192,Carbon Monoxide,TON
+37015,0.003144623,Nitrate portion of PM2.5-PRI,TON
+37015,0.02468694,Sulfate Portion of PM2.5-PRI,TON
+37015,1.356817,Volatile Organic Compounds,TON
+37015,8.053276,Ethyl Benzene,LB
+37015,7.076674e-05,Chromium (VI),LB
+37015,0.3440212,Chrysene,LB
+37015,244.6884,Formaldehyde,LB
+37007,0.33795,"Benzo[g,h,i,]Perylene",LB
+37007,389.4298,Benzene,LB
+37007,0.00293493,Mercury,LB
+37007,0.05611192,Arsenic,LB
+37007,0.7983328,Fluorene,LB
+37007,0.2504573,Methane,TON
+37007,0.197511,Nitrous Oxide,TON
+37007,0.1120869,Sulfur Dioxide,TON
+37007,0.004200738,Sulfate Portion of PM2.5-PRI,TON
+37003,0.1278539,Methane,TON
+37003,1.121249,PM10-Primary from certain diesel engines,TON
+37003,0.646693,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.2636708,Organic Carbon portion of PM2.5-PRI,TON
+37003,1.568926,PM10 Primary (Filt + Cond),TON
+37003,0.046734,Sulfur Dioxide,TON
+37003,7.48878,"1,3-Butadiene",LB
+37003,18.285796,Xylenes (Mixed Isomers),LB
+37001,138.06992,Toluene,LB
+37001,41.9514,Hexane,LB
+37001,0.0677128,"Benzo[g,h,i,]Perylene",LB
+37001,0.017542982,Benzo[k]Fluoranthene,LB
+37001,0.00019494266,Mercury,LB
+37001,58.8275,Styrene,LB
+37001,5410.692,Xylenes (Mixed Isomers),LB
+37001,0.6867692,Chrysene,LB
+37001,0.9368122,Benzo[a]Pyrene,LB
+37001,0.2171458,Nickel,LB
+37001,1.582658,Methane,TON
+37001,32766.45,Carbon Dioxide,TON
+37001,1.391336,Nitrous Oxide,TON
+37001,2.205155,Ammonia,TON
+37001,1.171355,PM2.5 Primary (Filt + Cond),TON
+37041,0.02017164,"1,3-Butadiene",LB
+37041,0.0002858818,Pyrene,LB
+37041,0.0002660222,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.000306057,Fluorene,LB
+37041,0.001300321,Methane,TON
+37041,17.32913,Carbon Dioxide,TON
+37149,2.469926,Hexane,LB
+37149,0.003062014,Anthracene,LB
+37149,0.006459492,Pyrene,LB
+37149,0.003872696,Benzo[b]Fluoranthene,LB
+37149,0.003346556,Benz[a]Anthracene,LB
+37149,0.006629268,Fluorene,LB
+37149,412.5922,Carbon Dioxide,TON
+37149,2.273801e-05,Nitrate portion of PM2.5-PRI,TON
+37149,0.004361868,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.07499474,Pyrene,LB
+37173,7.998036,Formaldehyde,LB
+37173,0.005301042,Benzo[a]Pyrene,LB
+37173,0.0015062388,Nickel,LB
+37173,9.274029e-05,Nitrate portion of PM2.5-PRI,TON
+37173,0.003815318,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.001794386,Sulfur Dioxide,TON
+37173,0.04484264,Volatile Organic Compounds,TON
+37193,14.730282,Ethyl Benzene,LB
+37193,5.103328,Pyrene,LB
+37193,2.607626,Acenaphthylene,LB
+37193,0.01581984,"Dibenzo[a,h]Anthracene",LB
+37193,0.1516503,Manganese,LB
+37193,0.0663552,Nickel,LB
+37193,1.5506438,Acenaphthene,LB
+37193,0.08540714,Ammonia,TON
+37191,0.8282157,Carbon Monoxide,TON
+37191,0.1185486,PM10-Primary from certain diesel engines,TON
+37191,0.02693127,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.17835892,Fluoranthene,LB
+37191,10.715348,Acetaldehyde,LB
+37189,8.621044,Hexane,LB
+37189,2.711508,Pyrene,LB
+37189,0.03061222,Arsenic,LB
+37189,3.62323,Phenanthrene,LB
+37189,10983.98,Carbon Dioxide,TON
+37189,0.800984,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.1783914,"1,3-Butadiene",LB
+37187,0.003071764,"Benzo[g,h,i,]Perylene",LB
+37187,0.003093046,PM10 Primary (Filt + Cond),TON
+37187,0.02877366,Volatile Organic Compounds,TON
+37183,0.04380518,"Benzo[g,h,i,]Perylene",LB
+37183,125.9347,Naphthalene,LB
+37183,50.72065,Carbon Monoxide,TON
+37183,0.1034531,Sulfate Portion of PM2.5-PRI,TON
+37183,0.4468882,Styrene,LB
+37183,2.63077,"1,3-Butadiene",LB
+37183,14.426694,"2,2,4-Trimethylpentane",LB
+37183,18.228732,Benzene,LB
+37183,0.01041222,Nitrous Oxide,TON
+37183,0.0002257991,Sulfate Portion of PM2.5-PRI,TON
+37181,1.8961394,Formaldehyde,LB
+37181,0.001091448,Benz[a]Anthracene,LB
+37181,0.002314938,Arsenic,LB
+37181,172.3234,Carbon Dioxide,TON
+37181,1.3236352,Hexane,LB
+37181,0.00237907,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.007685794,Acrolein,LB
+37059,0.0003739778,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.0002201856,Benzo[k]Fluoranthene,LB
+37059,0.0014611856,Fluoranthene,LB
+37059,3.827314e-05,Manganese,LB
+37059,0.002013508,Fluorene,LB
+37059,1.870086,Carbon Dioxide,TON
+37059,0.0002203626,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.0004343383,PM2.5 Primary (Filt + Cond),TON
+37059,9.660531e-06,Sulfate Portion of PM2.5-PRI,TON
+37057,0.06437868,Chrysene,LB
+37057,0.01291793,Sulfate Portion of PM2.5-PRI,TON
+37057,7.628282,Acenaphthylene,LB
+37057,0.014756488,"Dibenzo[a,h]Anthracene",LB
+37057,33.51442,Propionaldehyde,LB
+37057,0.0011699514,Chromium (VI),LB
+37057,1658.273,Benzene,LB
+37057,0.1462445,Nickel,LB
+37057,3.392578,Fluorene,LB
+37057,1.728037,PM10 Primary (Filt + Cond),TON
+37057,0.2064828,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,8.386452,Acenaphthylene,LB
+37051,1.2083906,Benzo[a]Pyrene,LB
+37051,1.51854,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.6634728,Ammonia,TON
+37049,1.0089844,Propionaldehyde,LB
+37049,0.10174634,Acenaphthylene,LB
+37049,1.884251,Benzene,LB
+37049,8.823318,Acetaldehyde,LB
+37049,0.06054376,Acenaphthene,LB
+37049,0.13601492,Fluorene,LB
+37049,0.09115684,PM25-Primary from certain diesel engines,TON
+37049,0.1535096,PM10 Primary (Filt + Cond),TON
+37047,0.287424,Acrolein,LB
+37047,0.03207364,"Benzo[g,h,i,]Perylene",LB
+37047,0.02444734,Fluoranthene,LB
+37047,0.00739455,Benzo[k]Fluoranthene,LB
+37047,0.07369808,Acenaphthylene,LB
+37047,0.0002765086,"Dibenzo[a,h]Anthracene",LB
+37047,0.002659254,Manganese,LB
+37047,7.111461,Carbon Monoxide,TON
+37047,0.006645911,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.007611368,Anthracene,LB
+37045,0.017242096,"Benzo[g,h,i,]Perylene",LB
+37045,0.003982456,Benzo[k]Fluoranthene,LB
+37045,234.6062,Carbon Dioxide,TON
+37045,2.70788,Acetaldehyde,LB
+37045,0.017708578,Fluorene,LB
+37045,0.006060394,Methane,TON
+37025,1.5082812,Chrysene,LB
+37025,3.114464,Benz[a]Anthracene,LB
+37025,0.541118,Manganese,LB
+37025,1689.4974,Acetaldehyde,LB
+37025,0.7115876,Ammonia,TON
+37025,0.6956398,Organic Carbon portion of PM2.5-PRI,TON
+37025,4.81851,PM10 Primary (Filt + Cond),TON
+37157,0.015196546,"1,3-Butadiene",LB
+37157,0.0912094,Hexane,LB
+37157,0.00011891186,"Benzo[g,h,i,]Perylene",LB
+37157,0.08713028,"2,2,4-Trimethylpentane",LB
+37157,7.450736e-08,Mercury,LB
+37157,2.321369e-05,Organic Carbon portion of PM2.5-PRI,TON
+37157,5.268944e-05,Mercury,LB
+37157,0.007094798,Acenaphthene,LB
+37157,0.414331,Nitrogen Oxides,TON
+37157,0.010636568,Fluoranthene,LB
+37139,0.929549,Propionaldehyde,LB
+37139,0.014316236,Benzo[a]Pyrene,LB
+37139,0.01180294,Methane,TON
+37139,0.05084247,PM10-Primary from certain diesel engines,TON
+37139,0.006401721,Ammonia,TON
+37139,0.002272236,Sulfate Portion of PM2.5-PRI,TON
+37135,18.511706,Anthracene,LB
+37135,21395.4,Benzene,LB
+37135,13.20576,Methane,TON
+37135,29.95219,PM10 Primary (Filt + Cond),TON
+37135,11.64537,PM2.5 Primary (Filt + Cond),TON
+37135,365.1339,Volatile Organic Compounds,TON
+37133,0.005352,Manganese,LB
+37133,0.006064318,PM2.5 Primary (Filt + Cond),TON
+37133,0.005621786,Sulfur Dioxide,TON
+37133,0.859198,"1,3-Butadiene",LB
+37133,17.677362,Xylenes (Mixed Isomers),LB
+37133,0.003690768,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.011777968,Fluoranthene,LB
+37125,13.55896,Xylenes (Mixed Isomers),LB
+37125,0.001461818,Benzo[b]Fluoranthene,LB
+37125,0.0002688716,Arsenic,LB
+37125,0.006818712,Acenaphthene,LB
+37125,6.073224e-06,Nitrate portion of PM2.5-PRI,TON
+37125,2292.696,Xylenes (Mixed Isomers),LB
+37125,4.755328,Acenaphthylene,LB
+37125,0.007850882,Mercury,LB
+37125,0.6430944,Nitrous Oxide,TON
+37125,0.03335732,Manganese,LB
+37125,0.0015403836,Mercury,LB
+37125,0.0004439892,Nitrate portion of PM2.5-PRI,TON
+37125,4.877924,Nitrogen Oxides,TON
+37125,15.41789,Volatile Organic Compounds,TON
+37125,8.550254,Styrene,LB
+37125,7.534304,Acrolein,LB
+37125,0.6498748,Pyrene,LB
+37125,0.15302866,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.11245924,Benzo[k]Fluoranthene,LB
+37125,0.15338732,Benzo[a]Pyrene,LB
+37121,31.91356,Acrolein,LB
+37121,1384.9136,Hexane,LB
+37121,76.71736,Naphthalene,LB
+37121,0.1699839,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.00185438,Nitrate portion of PM2.5-PRI,TON
+37121,30.60044,Nitrogen Oxides,TON
+37121,0.3379203,Organic Carbon portion of PM2.5-PRI,TON
+37121,1.449352,PM10 Primary (Filt + Cond),TON
+37121,0.6969792,PM2.5 Primary (Filt + Cond),TON
+37121,0.4462832,Benz[a]Anthracene,LB
+37121,550.8328,Acetaldehyde,LB
+37119,31825.76,"2,2,4-Trimethylpentane",LB
+37115,71.93526,Acrolein,LB
+37115,0.6198504,Benz[a]Anthracene,LB
+37115,0.09537578,Manganese,LB
+37115,0.0339105,Arsenic,LB
+37115,3.0558,Acenaphthene,LB
+37115,0.7358017,PM10-Primary from certain diesel engines,TON
+37115,0.1050043,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.0221364,Sulfate Portion of PM2.5-PRI,TON
+37113,0.14892008,Acrolein,LB
+37113,41.84506,Toluene,LB
+37113,0.00227799,Benz[a]Anthracene,LB
+37113,0.0002586368,Arsenic,LB
+37113,0.0006654234,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.002541605,Nitrous Oxide,TON
+37109,1.2853122,Acenaphthene,LB
+37109,15.37404,Carbon Monoxide,TON
+37109,19557.78,Carbon Dioxide,TON
+37109,1.93321,PM10-Primary from certain diesel engines,TON
+37109,0.2929952,Ammonia,TON
+37109,2.457053,Volatile Organic Compounds,TON
+37109,43.45272,Xylenes (Mixed Isomers),LB
+37109,0.06726208,Benzo[b]Fluoranthene,LB
+37109,0.009370902,"Dibenzo[a,h]Anthracene",LB
+37109,0.7796762,Benz[a]Anthracene,LB
+37109,0.16921952,Manganese,LB
+37109,1.0694552,Acrolein,LB
+37109,0.05087038,Anthracene,LB
+37109,0.00351125,Benzo[b]Fluoranthene,LB
+37109,5.88109,Acetaldehyde,LB
+37109,1.484589,Naphthalene,LB
+37109,0.004904779,Methane,TON
+37109,0.03477894,PM25-Primary from certain diesel engines,TON
+37089,0.004474794,Styrene,LB
+37089,0.3736308,Xylenes (Mixed Isomers),LB
+37089,0.0005661584,"Benzo[g,h,i,]Perylene",LB
+37089,0.09629058,"2,2,4-Trimethylpentane",LB
+37089,0.00010430188,Manganese,LB
+37087,265.4218,Acrolein,LB
+37087,203.7896,Toluene,LB
+37087,9.462178,Anthracene,LB
+37087,19.212096,Acenaphthylene,LB
+37087,0.7386833,Methane,TON
+37087,3.074982,PM25-Primary from certain diesel engines,TON
+37087,2.326819,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.6520147,Ammonia,TON
+37087,69.73352,Nitrogen Oxides,TON
+37087,0.170175,Sulfur Dioxide,TON
+37087,19.71345,Volatile Organic Compounds,TON
+37083,58.73334,Formaldehyde,LB
+37083,781.2727,Carbon Dioxide,TON
+37083,0.06770332,Organic Carbon portion of PM2.5-PRI,TON
+37083,4.161188,Toluene,LB
+37083,0.2092948,Anthracene,LB
+37083,0.3098784,Acenaphthylene,LB
+37049,6.028302,Propionaldehyde,LB
+37049,5.190212e-05,Chromium (VI),LB
+37049,132.27304,Formaldehyde,LB
+37049,11.22212,Carbon Monoxide,TON
+37049,0.004913098,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.003967737,Sulfate Portion of PM2.5-PRI,TON
+37043,0.05008056,Acenaphthene,LB
+37043,0.2281462,Acenaphthylene,LB
+37043,0.0281481,PM10 Primary (Filt + Cond),TON
+37035,21.1606,Styrene,LB
+37035,74.43526,Hexane,LB
+37035,13.36583,Pyrene,LB
+37035,0.03536952,Benzo[k]Fluoranthene,LB
+37035,0.8275436,Benzo[a]Pyrene,LB
+37035,4.276327,Methane,TON
+37035,78973.25,Carbon Dioxide,TON
+37035,0.8726003,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,32.56768,Acrolein,LB
+37025,1.4183074,Anthracene,LB
+37025,32.14528,Xylenes (Mixed Isomers),LB
+37025,7.913254e-05,Chromium (VI),LB
+37025,38.98576,Benzene,LB
+37167,0.03456446,Fluorene,LB
+37167,6.708563,Carbon Monoxide,TON
+37167,0.00555125,Nitrous Oxide,TON
+37167,0.4658146,Volatile Organic Compounds,TON
+37163,0.2426766,Fluorene,LB
+37163,0.011502818,Manganese,LB
+37163,2.462038e-05,Mercury,LB
+37163,0.0005138308,"Benzo[g,h,i,]Perylene",LB
+37163,0.0007147078,Benzo[b]Fluoranthene,LB
+37157,28.8637,Toluene,LB
+37157,1.5325294,Anthracene,LB
+37157,4.411012,Pyrene,LB
+37157,0.00011610692,Chromium (VI),LB
+37157,0.019829152,"Benzo[g,h,i,]Perylene",LB
+37157,0.024816,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,3.334884,Fluoranthene,LB
+37157,0.00010374008,Mercury,LB
+37157,0.01099916,Nitrous Oxide,TON
+37139,0.11887858,Acrolein,LB
+37139,0.0018159888,Chrysene,LB
+37139,0.3225198,Naphthalene,LB
+37139,0.0005336617,Elemental Carbon portion of PM2.5-PRI,TON
+37139,8.083331e-06,Nitrate portion of PM2.5-PRI,TON
+37139,0.006943162,PM10 Primary (Filt + Cond),TON
+37135,0.4278892,Ammonia,TON
+37135,0.2808481,Organic Carbon portion of PM2.5-PRI,TON
+37135,1.664156,PM2.5 Primary (Filt + Cond),TON
+37133,3.277314e-05,Benzo[b]Fluoranthene,LB
+37133,3.277314e-05,Benzo[k]Fluoranthene,LB
+37133,2.771306e-05,Chrysene,LB
+37133,0.0001389107,Ammonia,TON
+37133,0.0002657349,PM10 Primary (Filt + Cond),TON
+37131,0.03709782,Methane,TON
+37131,3.12192,Ethyl Benzene,LB
+37131,0.25334,Anthracene,LB
+37131,94.10486,Formaldehyde,LB
+37127,2.975712e-05,Mercury,LB
+37127,0.0008734295,Sulfur Dioxide,TON
+37125,0.10927832,Ethyl Benzene,LB
+37125,0.007897192,Pyrene,LB
+37125,0.00759949,Manganese,LB
+37125,5.894248e-05,Mercury,LB
+37125,4.899628e-06,Nickel,LB
+37125,6.073076e-06,Nitrate portion of PM2.5-PRI,TON
+37115,17.562516,"2,2,4-Trimethylpentane",LB
+37105,2.966156,"2,2,4-Trimethylpentane",LB
+37105,0.2545032,Benz[a]Anthracene,LB
+37105,8.820448,Acrolein,LB
+37105,0.14858918,Chrysene,LB
+37073,0.004531664,Acrolein,LB
+37073,4.024718e-05,Benz[a]Anthracene,LB
+37073,8.346988e-05,Pyrene,LB
+37073,8.76539e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.017906408,"1,3-Butadiene",LB
+37121,0.2834166,Toluene,LB
+37121,0.000588996,Acenaphthylene,LB
+37095,0.014595168,"1,3-Butadiene",LB
+37095,1.063716e-06,Chromium (VI),LB
+37095,0.00012475782,Benzo[k]Fluoranthene,LB
+37095,9.595714e-05,Chrysene,LB
+37095,0.0002365044,Fluorene,LB
+37095,0.0001501454,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.0001116431,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,1.2286512,"2,2,4-Trimethylpentane",LB
+37095,0.001973778,Fluoranthene,LB
+37095,0.006762906,Phenanthrene,LB
+37095,0.062841,Naphthalene,LB
+37083,0.03914192,"1,3-Butadiene",LB
+37083,0.7770198,Toluene,LB
+37083,0.0003401168,Chrysene,LB
+37083,3.44647e-05,Mercury,LB
+37083,0.003527588,Methane,TON
+37083,0.5586556,Carbon Monoxide,TON
+37083,0.0003845233,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,0.0013087328,Acenaphthene,LB
+37021,0.06797668,Naphthalene,LB
+37021,0.0001578161,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.02821546,Propionaldehyde,LB
+37021,0.0004488622,Benzo[k]Fluoranthene,LB
+37021,0.0004181304,Chrysene,LB
+37021,1.565642e-05,Sulfate Portion of PM2.5-PRI,TON
+37021,493.4922,Styrene,LB
+37021,0.335861,Mercury,LB
+37021,7871.782,Acetaldehyde,LB
+37021,0.04792848,Nitrate portion of PM2.5-PRI,TON
+37021,7.096015,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,10.66502,Sulfur Dioxide,TON
+37021,0.5441862,Sulfate Portion of PM2.5-PRI,TON
+37017,0.9771716,"1,3-Butadiene",LB
+37017,0.1548308,Propionaldehyde,LB
+37017,0.0003607706,Manganese,LB
+37017,4.969944e-05,Nickel,LB
+37017,2.348112,Acetaldehyde,LB
+37017,0.002884936,Nitrous Oxide,TON
+37017,0.1522077,Nitrogen Oxides,TON
+37017,0.0005603736,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,5.380405e-05,Sulfate Portion of PM2.5-PRI,TON
+37015,0.9710506,PM2.5 Primary (Filt + Cond),TON
+37015,0.06590375,Sulfur Dioxide,TON
+37015,6.66562,"1,3-Butadiene",LB
+37015,0.0386635,Benzo[b]Fluoranthene,LB
+37015,0.005345822,"Dibenzo[a,h]Anthracene",LB
+37015,0.6295264,Elemental Carbon portion of PM2.5-PRI,TON
+37015,25.7839,Nitrogen Oxides,TON
+37011,11.45988,Propionaldehyde,LB
+37011,0.2074034,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.004763402,"Dibenzo[a,h]Anthracene",LB
+37011,369.7572,"2,2,4-Trimethylpentane",LB
+37011,111.3056,Carbon Monoxide,TON
+37011,0.05634234,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.4299008,Ammonia,TON
+37011,0.005315253,Sulfate Portion of PM2.5-PRI,TON
+37009,0.9685861,PM10 Primary (Filt + Cond),TON
+37009,1.021118,Volatile Organic Compounds,TON
+37009,2.365216,Styrene,LB
+37009,0.003983756,Benzo[k]Fluoranthene,LB
+37009,0.157375,Acrolein,LB
+37009,0.002716162,Chrysene,LB
+37009,0.003793948,Benzo[a]Pyrene,LB
+37009,8.819592,Benzene,LB
+37009,3.873428e-05,Nickel,LB
+37009,0.1619899,Nitrogen Oxides,TON
+37009,0.001780411,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.003732202,PM2.5 Primary (Filt + Cond),TON
+37003,3235.338,Xylenes (Mixed Isomers),LB
+37189,0.007468812,Pyrene,LB
+37189,0.00472598,"Benzo[g,h,i,]Perylene",LB
+37189,0.0013003988,Benzo[b]Fluoranthene,LB
+37189,1.394767,Formaldehyde,LB
+37189,0.0017182656,Manganese,LB
+37189,2.500418e-05,Mercury,LB
+37189,1.4836606,Acetaldehyde,LB
+37189,0.002507564,PM2.5 Primary (Filt + Cond),TON
+37177,0.0013172976,"Dibenzo[a,h]Anthracene",LB
+37177,0.012741534,Nickel,LB
+37177,42.50772,Acetaldehyde,LB
+37177,0.4467056,Fluorene,LB
+37177,0.0006595251,Nitrate portion of PM2.5-PRI,TON
+37167,0.2663754,Ethyl Benzene,LB
+37167,0.06205542,Fluoranthene,LB
+37167,0.1613,Carbon Monoxide,TON
+37167,0.01785005,PM25-Primary from certain diesel engines,TON
+37167,0.0005184358,Sulfur Dioxide,TON
+37195,0.5346346,"1,3-Butadiene",LB
+37195,16.258042,Formaldehyde,LB
+37195,0.0006889174,Arsenic,LB
+37195,0.1907273,Phenanthrene,LB
+37195,0.04193147,PM10-Primary from certain diesel engines,TON
+37195,0.03857783,PM25-Primary from certain diesel engines,TON
+37195,0.09518187,Volatile Organic Compounds,TON
+37193,2.215072e-05,Anthracene,LB
+37193,0.06339172,Xylenes (Mixed Isomers),LB
+37193,3.834832e-05,Fluoranthene,LB
+37193,0.0001167132,Acenaphthylene,LB
+37193,2.875523e-05,Methane,TON
+37193,0.0004980789,Volatile Organic Compounds,TON
+37053,0.00017823862,Chrysene,LB
+37053,0.000437933,Benzo[a]Pyrene,LB
+37053,0.0002046286,Acenaphthene,LB
+37053,0.0002508671,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.482836,Hexane,LB
+37045,1.032636,Xylenes (Mixed Isomers),LB
+37045,0.5451908,"2,2,4-Trimethylpentane",LB
+37045,91.47203,Carbon Dioxide,TON
+37045,0.03427819,Volatile Organic Compounds,TON
+37045,0.010996246,Benz[a]Anthracene,LB
+37045,0.5956966,Naphthalene,LB
+37045,0.0900696,Methane,TON
+37045,0.005698898,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.08516195,Ammonia,TON
+37045,25.9491,Toluene,LB
+37045,0.010610314,Anthracene,LB
+37151,0.005748299,Methane,TON
+37151,0.06849577,Nitrogen Oxides,TON
+37151,0.002182919,PM2.5 Primary (Filt + Cond),TON
+37151,0.0006262918,Anthracene,LB
+37151,0.0017448944,Manganese,LB
+37151,0.0010664478,Arsenic,LB
+37147,0.03509572,Styrene,LB
+37147,0.002832878,Benzo[a]Pyrene,LB
+37147,0.006950498,Phenanthrene,LB
+37147,1.180013e-05,Nitrate portion of PM2.5-PRI,TON
+37147,0.02226679,PM10 Primary (Filt + Cond),TON
+37147,0.0001507342,Sulfate Portion of PM2.5-PRI,TON
+37143,0.4437724,Ethyl Benzene,LB
+37107,5.696143e-05,Nitrate portion of PM2.5-PRI,TON
+37107,0.02399465,PM2.5 Primary (Filt + Cond),TON
+37107,0.03306938,Sulfur Dioxide,TON
+37107,0.0006952488,Sulfate Portion of PM2.5-PRI,TON
+37107,18.075072,Toluene,LB
+37107,7.223546,Hexane,LB
+37107,0.008037694,Benzo[b]Fluoranthene,LB
+37107,0.008037694,Benzo[k]Fluoranthene,LB
+37107,20.87428,Benzene,LB
+37093,0.0002145272,Acenaphthene,LB
+37093,0.0012087442,Phenanthrene,LB
+37093,0.01117907,Naphthalene,LB
+37093,0.001749882,Methane,TON
+37093,0.01920568,Nitrogen Oxides,TON
+37093,0.0002335767,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.5224426,Toluene,LB
+37093,0.217126,Hexane,LB
+37093,8.55827e-06,"Dibenzo[a,h]Anthracene",LB
+37013,28.1792,Hexane,LB
+37019,84.83902,Hexane,LB
+37017,75.12694,Acrolein,LB
+37017,3896.434,Hexane,LB
+37017,1.1935046,Benzo[b]Fluoranthene,LB
+37017,5.363316,Fluoranthene,LB
+37017,7.36701,Fluorene,LB
+37017,188.891,Naphthalene,LB
+37017,1.882613,Methane,TON
+37017,6.118518,Ammonia,TON
+37017,0.5776184,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.05525039,Sulfate Portion of PM2.5-PRI,TON
+37017,76.80481,Volatile Organic Compounds,TON
+37009,6648.526,"2,2,4-Trimethylpentane",LB
+37009,2.601214,Benz[a]Anthracene,LB
+37009,3479.926,Acetaldehyde,LB
+37009,0.8438414,Elemental Carbon portion of PM2.5-PRI,TON
+37009,244.3337,Nitrogen Oxides,TON
+37009,6.089524,PM10 Primary (Filt + Cond),TON
+37009,3.323345,PM2.5 Primary (Filt + Cond),TON
+37197,0.3615894,Propionaldehyde,LB
+37197,5.598558,Formaldehyde,LB
+37189,0.01802063,Sulfur Dioxide,TON
+37183,1.0312796,Benzo[b]Fluoranthene,LB
+37183,646.3216,Benzene,LB
+37183,27.58872,PM25-Primary from certain diesel engines,TON
+37183,5.841957,Organic Carbon portion of PM2.5-PRI,TON
+37183,49.44723,PM10 Primary (Filt + Cond),TON
+37185,0.007556838,Phenanthrene,LB
+37185,37.44473,Carbon Dioxide,TON
+37185,0.07343989,Nitrogen Oxides,TON
+37185,0.0005181428,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.002355812,Pyrene,LB
+37185,6.888536e-07,Chromium (VI),LB
+37185,0.6885572,"2,2,4-Trimethylpentane",LB
+37185,8.61082e-05,Nickel,LB
+37191,2.289384,Acrolein,LB
+37191,0.0962348,Anthracene,LB
+37191,0.05151724,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.03594516,Benzo[b]Fluoranthene,LB
+37191,0.0340808,Chrysene,LB
+37191,35.16686,Formaldehyde,LB
+37191,0.05150018,Benzo[a]Pyrene,LB
+37191,52.2877,Carbon Monoxide,TON
+37191,2076.453,Carbon Dioxide,TON
+37191,0.06649182,PM2.5 Primary (Filt + Cond),TON
+37191,2299.42,Ethyl Benzene,LB
+37179,130.12348,Ethyl Benzene,LB
+37179,26.3605,"1,3-Butadiene",LB
+37179,757.4568,Toluene,LB
+37179,480.5714,Xylenes (Mixed Isomers),LB
+37179,0.05643852,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.05096062,Chrysene,LB
+37179,0.05708268,Benzo[a]Pyrene,LB
+37179,0.05096768,Benz[a]Anthracene,LB
+37067,0.0003313308,Nickel,LB
+37067,0.0005080448,Arsenic,LB
+37067,0.0016159744,Acenaphthene,LB
+37067,0.000100202,Sulfate Portion of PM2.5-PRI,TON
+37067,0.08531874,"1,3-Butadiene",LB
+37067,0.002629818,Fluoranthene,LB
+37067,0.001312249,Benzo[k]Fluoranthene,LB
+37061,21.55198,Acrolein,LB
+37061,2458.068,Xylenes (Mixed Isomers),LB
+37061,0.419243,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.00962464,"Dibenzo[a,h]Anthracene",LB
+37061,59.51182,Naphthalene,LB
+37061,0.75774,Methane,TON
+37061,0.09640454,Elemental Carbon portion of PM2.5-PRI,TON
+37049,3.081877,Carbon Monoxide,TON
+37049,0.001905375,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.0293319,"1,3-Butadiene",LB
+37047,7.462404e-05,Benz[a]Anthracene,LB
+37047,0.6461037,Methane,TON
+37047,0.008099493,PM2.5 Primary (Filt + Cond),TON
+37041,0.03052644,Acrolein,LB
+37041,0.007958724,Phenanthrene,LB
+37041,0.000437208,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.0012733358,Nickel,LB
+37035,7.917305,Carbon Monoxide,TON
+37035,0.01093169,Nitrous Oxide,TON
+37035,16.460634,Hexane,LB
+37035,0.02946598,Pyrene,LB
+37035,5020.354,Ethyl Benzene,LB
+37035,145.8545,Volatile Organic Compounds,TON
+37031,0.02624328,Ethyl Benzene,LB
+37031,2.294392e-05,Benzo[k]Fluoranthene,LB
+37031,3.189778e-07,Mercury,LB
+37031,5.461078e-05,Acenaphthene,LB
+37031,6.826512e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37031,4.781625e-05,PM2.5 Primary (Filt + Cond),TON
+37031,1.441451e-06,Sulfate Portion of PM2.5-PRI,TON
+37027,171.35608,Toluene,LB
+37027,154.79178,Propionaldehyde,LB
+37027,0.3038544,Nickel,LB
+37027,0.007005147,Nitrate portion of PM2.5-PRI,TON
+37027,0.2648679,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,3.197318,Styrene,LB
+37023,2.305574,Pyrene,LB
+37023,15.053304,Xylenes (Mixed Isomers),LB
+37023,0.00690263,Benzo[k]Fluoranthene,LB
+37023,97.2965,Acetaldehyde,LB
+37023,6.996384,Carbon Monoxide,TON
+37023,0.02912656,Ammonia,TON
+37023,0.00610337,Nitrous Oxide,TON
+37023,0.0005683016,Sulfate Portion of PM2.5-PRI,TON
+37023,22.96134,"2,2,4-Trimethylpentane",LB
+37023,26.11532,Hexane,LB
+37023,19602.192,Hexane,LB
+37023,43.984,Pyrene,LB
+37023,120.34748,Acenaphthylene,LB
+37023,8344.44,Formaldehyde,LB
+37023,7.409142,Benz[a]Anthracene,LB
+37023,5.607758,Manganese,LB
+37023,53.5303,Fluorene,LB
+37023,1372.1424,Naphthalene,LB
+37023,5829.227,Carbon Monoxide,TON
+37023,0.03066722,Nitrate portion of PM2.5-PRI,TON
+37119,82.14778,Propionaldehyde,LB
+37113,0.004567086,Sulfate Portion of PM2.5-PRI,TON
+37113,0.00423002,Benzo[b]Fluoranthene,LB
+37113,0.0491474,Chrysene,LB
+37113,0.01417973,Benzo[a]Pyrene,LB
+37113,0.10256256,Benz[a]Anthracene,LB
+37113,826.7439,Carbon Dioxide,TON
+37113,0.1268277,PM25-Primary from certain diesel engines,TON
+37113,0.00268177,Nitrous Oxide,TON
+37113,0.0002894629,Nitrate portion of PM2.5-PRI,TON
+37107,37.11412,Hexane,LB
+37107,1.724619,Volatile Organic Compounds,TON
+37105,7.89357,Benzene,LB
+37105,8.397805,Carbon Monoxide,TON
+37105,0.008791404,Organic Carbon portion of PM2.5-PRI,TON
+37091,7.82851,Acrolein,LB
+37091,0.5261868,Pyrene,LB
+37091,2.503006,"2,2,4-Trimethylpentane",LB
+37091,43.1627,Acetaldehyde,LB
+37091,10.886808,Naphthalene,LB
+37089,40.28026,Pyrene,LB
+37089,9.118596,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,6.79873,Benzo[k]Fluoranthene,LB
+37089,13.9557,Methane,TON
+37089,629.4348,Nitrogen Oxides,TON
+37089,14361.806,Ethyl Benzene,LB
+37087,6.062482,Hexane,LB
+37087,0.008981682,Benzo[b]Fluoranthene,LB
+37087,241.3372,Formaldehyde,LB
+37087,5.299767,Nitrogen Oxides,TON
+37079,8.35023,Hexane,LB
+37079,1.3160598,Fluoranthene,LB
+37087,1.7314804,Arsenic,LB
+37087,292.326,Naphthalene,LB
+37087,0.01374132,Nitrate portion of PM2.5-PRI,TON
+37087,11.667316,"Benzo[g,h,i,]Perylene",LB
+37087,2.665484,Benzo[b]Fluoranthene,LB
+37087,1664.8258,Formaldehyde,LB
+37087,4.905528,Anthracene,LB
+37075,0.275799,Acrolein,LB
+37075,0.0229203,Pyrene,LB
+37075,0.003503584,Benzo[b]Fluoranthene,LB
+37075,14.387164,Benzene,LB
+37075,0.4132829,Nitrogen Oxides,TON
+37075,0.2836351,Volatile Organic Compounds,TON
+37063,4.808942,Propionaldehyde,LB
+37063,0.0002017378,Chromium (VI),LB
+37063,0.2496238,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,0.4119584,Fluoranthene,LB
+37063,170.87696,"2,2,4-Trimethylpentane",LB
+37063,0.002022464,Mercury,LB
+37063,0.02521792,Nickel,LB
+37063,0.5403244,Fluorene,LB
+37063,0.3046511,PM2.5 Primary (Filt + Cond),TON
+37059,4.333146,Styrene,LB
+37059,0.8237602,Anthracene,LB
+37059,0.02992694,Benzo[a]Pyrene,LB
+37059,0.3743786,PM10 Primary (Filt + Cond),TON
+37059,0.014105552,Benzo[a]Pyrene,LB
+37059,15.062996,Benzene,LB
+37057,15.33768,Ethyl Benzene,LB
+37057,5.640584,Styrene,LB
+37057,22.05286,Propionaldehyde,LB
+37057,196.04216,Acetaldehyde,LB
+37057,1.3132264,Acenaphthene,LB
+37055,34.64086,Toluene,LB
+37055,0.005074634,"Benzo[g,h,i,]Perylene",LB
+37055,0.00166752,Benzo[k]Fluoranthene,LB
+37055,0.001765232,Benz[a]Anthracene,LB
+37055,0.000295661,Arsenic,LB
+37055,66.99611,Carbon Dioxide,TON
+37055,0.2450934,Nitrogen Oxides,TON
+37055,0.00917202,PM10 Primary (Filt + Cond),TON
+37055,0.001404995,Sulfur Dioxide,TON
+37051,7.63618,Chrysene,LB
+37051,21885.68,"2,2,4-Trimethylpentane",LB
+37051,18.745912,Anthracene,LB
+37051,401.8978,Propionaldehyde,LB
+37051,58265.78,Xylenes (Mixed Isomers),LB
+37051,13.112794,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,8.079842,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,1.90991,Xylenes (Mixed Isomers),LB
+37043,0.147452,Acenaphthylene,LB
+37043,27.37666,Formaldehyde,LB
+37043,0.6918844,"2,2,4-Trimethylpentane",LB
+37043,0.0007281066,Arsenic,LB
+37043,0.08771,Acenaphthene,LB
+37043,0.003119163,Ammonia,TON
+37043,0.001310734,Sulfur Dioxide,TON
+37045,5.33558,"1,3-Butadiene",LB
+37045,10.49315,Xylenes (Mixed Isomers),LB
+37045,0.98652,Fluoranthene,LB
+37045,0.14209298,Chrysene,LB
+37045,161.98558,Formaldehyde,LB
+37045,0.2548102,Benz[a]Anthracene,LB
+37045,15.36701,Benzene,LB
+37045,12.51684,Nitrogen Oxides,TON
+37045,0.09787604,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.010215844,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.0006983024,Nickel,LB
+37025,0.001959191,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.008416313,Ammonia,TON
+37025,0.005852102,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.03465703,PM10 Primary (Filt + Cond),TON
+37029,0.016581722,Benzo[b]Fluoranthene,LB
+37029,0.2485872,Acenaphthylene,LB
+37029,0.0005315142,"Dibenzo[a,h]Anthracene",LB
+37029,75.66888,Benzene,LB
+37029,0.004457266,Arsenic,LB
+37029,14.95947,Carbon Monoxide,TON
+37029,0.0325195,PM10 Primary (Filt + Cond),TON
+37027,101.25478,Toluene,LB
+37027,0.02616128,Fluoranthene,LB
+37027,0.004677842,Benzo[a]Pyrene,LB
+37027,0.003441356,Manganese,LB
+37027,0.00050304,Arsenic,LB
+37027,0.002142413,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.0001571829,Sulfate Portion of PM2.5-PRI,TON
+37147,0.0001479975,Sulfate Portion of PM2.5-PRI,TON
+37145,0.0515987,Methane,TON
+37145,5.738132,Carbon Monoxide,TON
+37145,623.2506,Carbon Dioxide,TON
+37145,2.058902,Nitrogen Oxides,TON
+37145,0.3161752,Anthracene,LB
+37145,0.6289148,Pyrene,LB
+37145,0.0016160642,"Benzo[g,h,i,]Perylene",LB
+37145,0.5128682,Fluoranthene,LB
+37139,0.005124456,Pyrene,LB
+37139,3.294804,Benzene,LB
+37139,0.0009173577,Organic Carbon portion of PM2.5-PRI,TON
+37135,19.746546,Acrolein,LB
+37135,0.00370333,"Benzo[g,h,i,]Perylene",LB
+37135,0.00232098,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.09566058,Chrysene,LB
+37135,0.0012608284,"Dibenzo[a,h]Anthracene",LB
+37127,55.07832,Xylenes (Mixed Isomers),LB
+37127,0.009647666,Benzo[b]Fluoranthene,LB
+37127,9.937326,Formaldehyde,LB
+37127,0.0003170952,"Dibenzo[a,h]Anthracene",LB
+37127,0.015844364,Manganese,LB
+37127,0.16399776,Phenanthrene,LB
+37123,2.704856,Naphthalene,LB
+37123,0.07700722,PM10-Primary from certain diesel engines,TON
+37123,0.008727707,Ammonia,TON
+37123,1.142929,Nitrogen Oxides,TON
+37123,0.02854255,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.3392188,Styrene,LB
+37123,10.74757,Acetaldehyde,LB
+37121,0.0510082,"1,3-Butadiene",LB
+37121,0.1182722,Xylenes (Mixed Isomers),LB
+37121,0.002136762,Chrysene,LB
+37121,0.04190668,"2,2,4-Trimethylpentane",LB
+37121,0.001540825,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.004866845,PM10 Primary (Filt + Cond),TON
+37115,1.04352,Anthracene,LB
+37115,18.677772,Propionaldehyde,LB
+37115,0.06182878,Benzo[b]Fluoranthene,LB
+37115,1.6508606,Acenaphthylene,LB
+37115,0.6821126,Benz[a]Anthracene,LB
+37115,0.0327746,Arsenic,LB
+37115,50.69958,Naphthalene,LB
+37115,1.43902,PM10-Primary from certain diesel engines,TON
+37115,0.7678065,Elemental Carbon portion of PM2.5-PRI,TON
+37113,4.477235e-06,Organic Carbon portion of PM2.5-PRI,TON
+37113,1.5227932e-09,Chromium (VI),LB
+37113,8.577322e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,5.959812e-06,Benzo[k]Fluoranthene,LB
+37113,8.392892e-05,Acenaphthylene,LB
+37113,5.6368e-06,Chrysene,LB
+37113,8.5728e-06,Benzo[a]Pyrene,LB
+37113,1.9035432e-07,Nickel,LB
+37113,2.918662e-07,Arsenic,LB
+37113,1.8413968e-05,Acenaphthene,LB
+37107,0.019107082,Ethyl Benzene,LB
+37107,0.009634274,"1,3-Butadiene",LB
+37107,0.12343834,Toluene,LB
+37107,7.154648e-07,Nickel,LB
+37107,44.9164,Carbon Dioxide,TON
+37107,9.494204e-07,Nitrate portion of PM2.5-PRI,TON
+37107,0.006781797,PM10 Primary (Filt + Cond),TON
+37105,1.432964,PM10-Primary from certain diesel engines,TON
+37105,1.381805,PM2.5 Primary (Filt + Cond),TON
+37105,0.03790397,Sulfate Portion of PM2.5-PRI,TON
+37097,4.070766,"1,3-Butadiene",LB
+37097,0.4633964,Anthracene,LB
+37097,12.579282,Xylenes (Mixed Isomers),LB
+37097,0.200413,Chrysene,LB
+37097,0.00432579,"Dibenzo[a,h]Anthracene",LB
+37097,0.1527748,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.6251708,PM10 Primary (Filt + Cond),TON
+37103,5.704864,Benzene,LB
+37103,0.6957149,Volatile Organic Compounds,TON
+37103,3.6943,Ethyl Benzene,LB
+37103,1.3069988e-06,Chromium (VI),LB
+37103,0.002039032,Benzo[k]Fluoranthene,LB
+37103,1.6524092,Formaldehyde,LB
+37103,5.304516,Benzene,LB
+37103,0.0001633736,Nickel,LB
+37103,0.02793612,Phenanthrene,LB
+37093,0.000464308,Nitrate portion of PM2.5-PRI,TON
+37093,0.9047294,Styrene,LB
+37083,0.03673328,"1,3-Butadiene",LB
+37083,0.3753264,Acrolein,LB
+37083,0.0002332632,Anthracene,LB
+37083,9.83902e-05,Benz[a]Anthracene,LB
+37083,0.00238459,Manganese,LB
+37083,2.741372e-05,Mercury,LB
+37083,0.0017416574,Phenanthrene,LB
+37083,0.02012338,PM10 Primary (Filt + Cond),TON
+37083,0.01074725,PM2.5 Primary (Filt + Cond),TON
+37073,0.004090642,Nickel,LB
+37073,0.001472638,Arsenic,LB
+37073,0.02851016,PM2.5 Primary (Filt + Cond),TON
+37073,0.0009672022,Sulfate Portion of PM2.5-PRI,TON
+37073,0.967555,"1,3-Butadiene",LB
+37073,0.7606368,Hexane,LB
+37073,0.1298552,Fluoranthene,LB
+37075,0.02950427,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,6.882738,Acrolein,LB
+37067,2.335502,Hexane,LB
+37067,0.2963266,Anthracene,LB
+37067,0.019976832,Benzo[b]Fluoranthene,LB
+37067,0.12702982,Chrysene,LB
+37067,1.083033,Phenanthrene,LB
+37067,2689.52,Carbon Dioxide,TON
+37067,0.7066554,PM10 Primary (Filt + Cond),TON
+37067,0.06028555,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.04165642,Fluoranthene,LB
+37063,0.12819132,Acenaphthylene,LB
+37063,0.009577718,Benz[a]Anthracene,LB
+37063,0.002064308,Arsenic,LB
+37063,0.0141738,Ammonia,TON
+37063,1.121829,Nitrogen Oxides,TON
+37063,0.08879951,PM10 Primary (Filt + Cond),TON
+37063,82132.74,Xylenes (Mixed Isomers),LB
+37063,0.3666202,"Dibenzo[a,h]Anthracene",LB
+37063,12600.124,Acetaldehyde,LB
+37043,2.264048,"1,3-Butadiene",LB
+37043,0.00271065,"Benzo[g,h,i,]Perylene",LB
+37043,0.012653584,Benzo[b]Fluoranthene,LB
+37043,0.00704446,Arsenic,LB
+37043,0.03891295,PM10 Primary (Filt + Cond),TON
+37043,0.03040982,PM2.5 Primary (Filt + Cond),TON
+37043,2.286788,Toluene,LB
+37043,0.1395298,Fluoranthene,LB
+37043,0.1776832,Acenaphthylene,LB
+37043,3.076306,Benzene,LB
+37043,0.003634018,Manganese,LB
+37043,7.399328e-06,Mercury,LB
+37043,3.58848,Naphthalene,LB
+37043,0.02298407,Elemental Carbon portion of PM2.5-PRI,TON
+37033,15.261632,Naphthalene,LB
+37033,2.111998,Styrene,LB
+37033,11.088614,Acrolein,LB
+37033,7.717818,Xylenes (Mixed Isomers),LB
+37033,135.24902,Formaldehyde,LB
+37033,0.3510386,Benz[a]Anthracene,LB
+37033,0.02874201,Ammonia,TON
+37033,0.01757091,Sulfur Dioxide,TON
+37031,6.925296,Toluene,LB
+37031,0.04405438,Benzo[a]Pyrene,LB
+37031,0.012493542,Nickel,LB
+37031,0.348723,Acenaphthene,LB
+37031,0.03545314,Methane,TON
+37031,1217.54,Carbon Dioxide,TON
+37163,0.757374,Chrysene,LB
+37163,107.12914,Benzene,LB
+37163,0.11033522,Arsenic,LB
+37163,2.51508,Acenaphthene,LB
+37163,0.03802559,Nitrous Oxide,TON
+37163,0.008030969,Nitrate portion of PM2.5-PRI,TON
+37163,0.3340857,Sulfate Portion of PM2.5-PRI,TON
+37159,25.82454,Toluene,LB
+37159,26.54882,Xylenes (Mixed Isomers),LB
+37159,0.4638608,Chrysene,LB
+37159,9.186496,"2,2,4-Trimethylpentane",LB
+37159,0.7942136,Benz[a]Anthracene,LB
+37159,32.75176,Benzene,LB
+37159,13.96182,Carbon Monoxide,TON
+37159,0.7917089,PM25-Primary from certain diesel engines,TON
+37159,0.004325849,Nitrate portion of PM2.5-PRI,TON
+37155,0.1009856,Methane,TON
+37155,19.791652,Xylenes (Mixed Isomers),LB
+37155,6.6679e-05,Chromium (VI),LB
+37155,2.430968,Fluoranthene,LB
+37155,5.24562e-05,Mercury,LB
+37155,0.0397831,Nickel,LB
+37151,0.02611132,Acrolein,LB
+37151,0.0004116153,Ammonia,TON
+37147,1.901375,"1,3-Butadiene",LB
+37147,4.990266,Acrolein,LB
+37147,0.217787,Anthracene,LB
+37147,0.002056458,Benzo[k]Fluoranthene,LB
+37147,2.7062,Nitrogen Oxides,TON
+37145,0.00014779886,Acrolein,LB
+37145,3.518134e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,2.474876e-06,Benzo[b]Fluoranthene,LB
+37145,1.878549e-06,Organic Carbon portion of PM2.5-PRI,TON
+37145,1.033204e-06,Sulfur Dioxide,TON
+37133,0.002630384,Arsenic,LB
+37133,73.89386,Toluene,LB
+37133,0.02676262,Anthracene,LB
+37133,0.06343344,Fluorene,LB
+37133,742.0706,Carbon Dioxide,TON
+37121,1.08325,Formaldehyde,LB
+37121,0.003045589,Methane,TON
+37121,1.414671,Carbon Monoxide,TON
+37119,0.08039406,Arsenic,LB
+37119,58.33497,Nitrogen Oxides,TON
+37119,0.0473822,Benzo[k]Fluoranthene,LB
+37111,22132.4,Toluene,LB
+37111,283.977,Naphthalene,LB
+37111,9.345017,Ammonia,TON
+37111,9.273792,PM10 Primary (Filt + Cond),TON
+37111,1.116496,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,3.930152,Propionaldehyde,LB
+37099,0.000804339,"Benzo[g,h,i,]Perylene",LB
+37099,0.04075486,Benz[a]Anthracene,LB
+37099,0.01455302,PM25-Primary from certain diesel engines,TON
+37099,0.001350051,Nitrous Oxide,TON
+37095,0.1084297,"1,3-Butadiene",LB
+37095,0.0006659652,Anthracene,LB
+37095,0.0011327698,Fluoranthene,LB
+37095,0.000198385,Chrysene,LB
+37095,0.0002427394,Benzo[a]Pyrene,LB
+37095,5.532724e-06,"Dibenzo[a,h]Anthracene",LB
+37095,0.3638667,Carbon Monoxide,TON
+37095,7.937038e-07,Nitrate portion of PM2.5-PRI,TON
+37095,0.2811218,Ethyl Benzene,LB
+37095,0.008768016,Propionaldehyde,LB
+37095,0.00011782586,Benzo[b]Fluoranthene,LB
+37095,0.1474432,Formaldehyde,LB
+37095,0.00013045182,Manganese,LB
+37095,1.283726e-06,Mercury,LB
+37095,0.1908054,Acetaldehyde,LB
+37091,3895.506,Hexane,LB
+37091,11582.872,Xylenes (Mixed Isomers),LB
+37091,1.334306,Benz[a]Anthracene,LB
+37091,5234.714,Benzene,LB
+37091,29.11886,Phenanthrene,LB
+37091,2.920887,Methane,TON
+37091,1.045581,Sulfur Dioxide,TON
+37083,23.292,Ethyl Benzene,LB
+37083,44.31834,Toluene,LB
+37083,38.49008,Propionaldehyde,LB
+37083,0.00018710612,Chromium (VI),LB
+37083,0.016820184,Benzo[b]Fluoranthene,LB
+37083,0.002322396,"Dibenzo[a,h]Anthracene",LB
+37083,0.04047815,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.08161806,Benzo[k]Fluoranthene,LB
+37079,0.02815166,Nickel,LB
+37079,0.04316672,Arsenic,LB
+37079,0.6277202,Fluorene,LB
+37079,0.200709,Methane,TON
+37079,4008.694,Carbon Dioxide,TON
+37079,0.02566705,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.2867263,Ammonia,TON
+37079,0.2796044,PM10 Primary (Filt + Cond),TON
+37079,0.1215003,PM2.5 Primary (Filt + Cond),TON
+37079,0.003124254,Sulfate Portion of PM2.5-PRI,TON
+37071,16.934092,Toluene,LB
+37071,0.11265274,Manganese,LB
+37071,0.02161814,Sulfate Portion of PM2.5-PRI,TON
+37071,1180.013,Ethyl Benzene,LB
+37071,292.1686,"1,3-Butadiene",LB
+37071,1561.8938,Hexane,LB
+37071,3.342024,Pyrene,LB
+37071,0.5700724,Benz[a]Anthracene,LB
+37071,2.006108,Acenaphthene,LB
+37071,34.02695,Volatile Organic Compounds,TON
+37061,0.0293382,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.115078,Benzo[b]Fluoranthene,LB
+37061,5.43718,Fluoranthene,LB
+37061,159.38278,Naphthalene,LB
+37061,5.549725,PM10 Primary (Filt + Cond),TON
+37061,0.358432,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,1.839281,Organic Carbon portion of PM2.5-PRI,TON
+37061,2.34513,Sulfur Dioxide,TON
+37061,24602.74,Toluene,LB
+37061,2.10951,Benzo[k]Fluoranthene,LB
+37061,1.6164408,Manganese,LB
+37061,2039.49,Acetaldehyde,LB
+37061,11.691602,Fluorene,LB
+37047,5.893628,"1,3-Butadiene",LB
+37047,0.02260248,Nickel,LB
+37047,0.4997447,PM2.5 Primary (Filt + Cond),TON
+37047,1.041768,Volatile Organic Compounds,TON
+37045,0.003551635,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.0005942,Acenaphthylene,LB
+37045,61.00626,Formaldehyde,LB
+37045,0.6401416,Methane,TON
+37045,0.7707066,Carbon Monoxide,TON
+37045,0.001937682,Organic Carbon portion of PM2.5-PRI,TON
+37043,9.16754e-09,Chromium (VI),LB
+37043,6.470476e-05,Acenaphthene,LB
+37043,0.00366727,PM10 Primary (Filt + Cond),TON
+37043,0.00179294,PM2.5 Primary (Filt + Cond),TON
+37043,35.55388,Benzene,LB
+37043,0.050196,Nickel,LB
+37043,163.3216,Acetaldehyde,LB
+37043,3.28589,Phenanthrene,LB
+37043,0.1037157,Methane,TON
+37043,12.40046,Ethyl Benzene,LB
+37043,22.99832,Xylenes (Mixed Isomers),LB
+37043,0.001765943,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.1110116,Chrysene,LB
+37043,0.2842429,PM2.5 Primary (Filt + Cond),TON
+37043,2.209492,Volatile Organic Compounds,TON
+37045,0.1892197,Methane,TON
+37045,0.7865956,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.3672309,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,6706.998,Ethyl Benzene,LB
+37045,217.3148,Styrene,LB
+37045,13.868094,Fluoranthene,LB
+37045,4.784711,Methane,TON
+37039,164.08438,Ethyl Benzene,LB
+37039,1206.1196,Toluene,LB
+37039,0.11907572,Anthracene,LB
+37039,0.2322984,Pyrene,LB
+37039,0.0106154,Arsenic,LB
+37039,0.008289295,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.013629614,"Dibenzo[a,h]Anthracene",LB
+37027,5.741896,Phenanthrene,LB
+37027,0.005985168,Nitrate portion of PM2.5-PRI,TON
+37027,1.771375,PM10 Primary (Filt + Cond),TON
+37175,0.001943502,Sulfate Portion of PM2.5-PRI,TON
+37175,3.884654,Propionaldehyde,LB
+37175,34.63442,Acetaldehyde,LB
+37175,0.3944454,Fluorene,LB
+37175,0.06344865,Methane,TON
+37159,2.377694,Styrene,LB
+37159,1.216584,Pyrene,LB
+37159,0.017486182,Benzo[b]Fluoranthene,LB
+37159,16.315106,Benzene,LB
+37159,0.07365508,Manganese,LB
+37159,0.0231015,Nickel,LB
+37159,7.432963,Carbon Monoxide,TON
+37159,0.05522226,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.18054482,Toluene,LB
+37153,0.0004728162,Pyrene,LB
+37153,2.088738e-08,Chromium (VI),LB
+37153,3.967582e-05,Benz[a]Anthracene,LB
+37153,0.00622645,Nitrous Oxide,TON
+37153,4.769938e-05,Sulfate Portion of PM2.5-PRI,TON
+37137,0.3809249,Volatile Organic Compounds,TON
+37137,1.804866e-05,Chromium (VI),LB
+37137,0.003843726,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,1070.519,Carbon Dioxide,TON
+37131,20.63426,Xylenes (Mixed Isomers),LB
+37131,0.011918516,Fluoranthene,LB
+37131,0.0011803368,Manganese,LB
+37131,3.447129,Carbon Monoxide,TON
+37131,0.3555099,Nitrogen Oxides,TON
+37131,0.00405127,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.0007996118,Mercury,LB
+37127,0.16719082,Arsenic,LB
+37127,48.46888,Carbon Monoxide,TON
+37127,6.443238,PM10-Primary from certain diesel engines,TON
+37127,0.9419924,Ammonia,TON
+37127,163.9205,Nitrogen Oxides,TON
+37127,2546.842,Formaldehyde,LB
+37121,0.004140102,"Benzo[g,h,i,]Perylene",LB
+37121,0.002770156,Benzo[k]Fluoranthene,LB
+37121,9.622866,Naphthalene,LB
+37121,0.001733585,Nitrous Oxide,TON
+37121,0.5158736,Volatile Organic Compounds,TON
+37111,62.11436,Naphthalene,LB
+37111,0.007099734,Nitrate portion of PM2.5-PRI,TON
+37111,0.5793071,Organic Carbon portion of PM2.5-PRI,TON
+37111,7.745144,Styrene,LB
+37111,0.7863474,Chrysene,LB
+37111,0.016677848,"Dibenzo[a,h]Anthracene",LB
+37117,0.6413214,Arsenic,LB
+37117,0.7336604,Organic Carbon portion of PM2.5-PRI,TON
+37117,59.91698,Styrene,LB
+37117,49.6741,Propionaldehyde,LB
+37117,1.2574908,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,5.252964e-06,Fluoranthene,LB
+37107,2.871614e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37107,2.254557e-06,Nitrous Oxide,TON
+37107,3.920582e-07,Ammonia,TON
+37107,0.2023322,Ethyl Benzene,LB
+37107,0.2831264,Hexane,LB
+37107,1.3506768e-08,Chromium (VI),LB
+37107,0.0002820352,"Benzo[g,h,i,]Perylene",LB
+37107,8.188256e-05,Benzo[b]Fluoranthene,LB
+37107,0.0004504188,Fluoranthene,LB
+37107,0.0014098244,Acenaphthylene,LB
+37107,0.09726244,Carbon Monoxide,TON
+37103,0.7258294,Benzo[a]Pyrene,LB
+37103,1159.113,"2,2,4-Trimethylpentane",LB
+37103,1.2404726,Acenaphthene,LB
+37103,2.320559,PM10 Primary (Filt + Cond),TON
+37103,0.889766,PM2.5 Primary (Filt + Cond),TON
+37097,121322.88,Toluene,LB
+37097,11.298694,Benzo[k]Fluoranthene,LB
+37097,11.05453,Manganese,LB
+37053,1.717997,Xylenes (Mixed Isomers),LB
+37053,0.007301108,Manganese,LB
+37053,9.2803,Acetaldehyde,LB
+37053,0.148935,Fluorene,LB
+37053,0.01306588,Methane,TON
+37053,0.0003022037,Nitrate portion of PM2.5-PRI,TON
+37015,1.375904,Volatile Organic Compounds,TON
+37015,0.0365294,Nickel,LB
+37011,0.07528578,Anthracene,LB
+37011,1.4647186,Propionaldehyde,LB
+37011,0.0369672,Benzo[a]Pyrene,LB
+37011,0.05037948,PM10 Primary (Filt + Cond),TON
+37009,0.084763,Styrene,LB
+37009,9.301012,Xylenes (Mixed Isomers),LB
+37009,0.005272872,Fluoranthene,LB
+37009,0.0010269376,Benzo[k]Fluoranthene,LB
+37009,1.0927412,Formaldehyde,LB
+37009,1.309895e-05,Mercury,LB
+37009,0.007310866,Fluorene,LB
+37009,0.001668219,PM2.5 Primary (Filt + Cond),TON
+37009,0.0004797052,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,1.0969724,Propionaldehyde,LB
+37009,0.014281316,Benzo[k]Fluoranthene,LB
+37009,22.13105,Carbon Monoxide,TON
+37009,0.01691183,Ammonia,TON
+37009,0.02068369,PM2.5 Primary (Filt + Cond),TON
+37001,0.16805972,Anthracene,LB
+37001,0.3316886,Pyrene,LB
+37001,0.8850888,Acenaphthylene,LB
+37001,62.8877,Formaldehyde,LB
+37001,8.05295,Nitrogen Oxides,TON
+37007,126.94588,Acrolein,LB
+37007,5.494958,"Benzo[g,h,i,]Perylene",LB
+37007,2.082492,Benzo[a]Pyrene,LB
+37007,3.762839,Methane,TON
+37007,2.950125,Nitrous Oxide,TON
+37007,1.646793,Sulfur Dioxide,TON
+37007,117.4809,Volatile Organic Compounds,TON
+37057,6.700214,Toluene,LB
+37057,8.133168,Benzene,LB
+37057,420.5698,Carbon Dioxide,TON
+37057,0.002879336,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.015832984,"Benzo[g,h,i,]Perylene",LB
+37057,1.5177088,Ethyl Benzene,LB
+37013,0.013903102,Styrene,LB
+37013,0.000463737,Benzo[b]Fluoranthene,LB
+37013,0.0003605158,Chrysene,LB
+37013,0.8920716,Formaldehyde,LB
+37013,0.5328318,"2,2,4-Trimethylpentane",LB
+37013,0.002713072,Phenanthrene,LB
+37013,0.000239894,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.001337348,PM2.5 Primary (Filt + Cond),TON
+37123,1.1966004,Xylenes (Mixed Isomers),LB
+37123,6.056976e-06,Chromium (VI),LB
+37123,0.0004530144,Chrysene,LB
+37123,2.561164e-05,"Dibenzo[a,h]Anthracene",LB
+37123,0.07676948,"1,3-Butadiene",LB
+37123,0.004851008,Methane,TON
+37123,0.0002789121,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.003082238,Anthracene,LB
+37017,0.005269702,Fluoranthene,LB
+37017,0.0014569158,Benzo[a]Pyrene,LB
+37017,0.0007438954,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.7462862,Xylenes (Mixed Isomers),LB
+37073,3.395292e-06,Chromium (VI),LB
+37073,0.000606058,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.000324435,Benzo[k]Fluoranthene,LB
+37073,0.5403592,Formaldehyde,LB
+37073,0.0005986642,Benzo[a]Pyrene,LB
+37073,4.013418,Acetaldehyde,LB
+37073,0.0281121,Nitrogen Oxides,TON
+37071,0.006021164,"Benzo[g,h,i,]Perylene",LB
+37071,0.9133784,"2,2,4-Trimethylpentane",LB
+37071,0.02285872,Styrene,LB
+37071,0.00798903,Methane,TON
+37071,0.00245338,Nitrous Oxide,TON
+37045,0.002078488,Benz[a]Anthracene,LB
+37045,21.74948,Acetaldehyde,LB
+37045,0.010659714,Phenanthrene,LB
+37045,0.02881705,PM10 Primary (Filt + Cond),TON
+37045,0.002901758,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.1478659,Volatile Organic Compounds,TON
+37045,5.04522,Toluene,LB
+37045,0.012389878,"Benzo[g,h,i,]Perylene",LB
+37019,0.17528312,Propionaldehyde,LB
+37019,0.00337307,Acenaphthylene,LB
+37019,2.119278,Benzene,LB
+37019,1.002191,Carbon Monoxide,TON
+37019,6.764578e-06,Nitrate portion of PM2.5-PRI,TON
+37019,0.001191181,Organic Carbon portion of PM2.5-PRI,TON
+37173,3.783538,Carbon Monoxide,TON
+37173,0.00137054,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.005857422,Benzo[a]Pyrene,LB
+37173,0.00013614976,"Dibenzo[a,h]Anthracene",LB
+37173,0.002753172,Benz[a]Anthracene,LB
+37065,5.264994,Styrene,LB
+37065,1668.0222,Toluene,LB
+37065,0.016897406,Arsenic,LB
+37065,0.0002734666,Nitrate portion of PM2.5-PRI,TON
+37057,38.48774,"1,3-Butadiene",LB
+37057,0.08592164,Arsenic,LB
+37057,17969.93,Carbon Dioxide,TON
+37057,2.74195,PM25-Primary from certain diesel engines,TON
+37055,0.0260918,Manganese,LB
+37055,0.009554494,Arsenic,LB
+37055,32.6397,Acetaldehyde,LB
+37055,0.08477389,PM10 Primary (Filt + Cond),TON
+37055,0.0209717,PM2.5 Primary (Filt + Cond),TON
+37055,0.007950742,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.003408664,Sulfate Portion of PM2.5-PRI,TON
+37045,0.03881374,Fluorene,LB
+37045,7.770624,Carbon Monoxide,TON
+37045,0.0003598195,Sulfate Portion of PM2.5-PRI,TON
+37045,0.4448926,Volatile Organic Compounds,TON
+37045,14.045742,Ethyl Benzene,LB
+37045,93.96752,Toluene,LB
+37045,24.06562,Hexane,LB
+37045,0.3909218,Propionaldehyde,LB
+37043,2.391072,Acrolein,LB
+37043,90.49808,Hexane,LB
+37043,7.168018e-05,Chromium (VI),LB
+37043,0.03922962,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.2510586,Fluorene,LB
+37043,0.02131084,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.0268615,Sulfur Dioxide,TON
+37035,0.006878866,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.014444456,Benzo[b]Fluoranthene,LB
+37035,15.81528,Carbon Monoxide,TON
+37031,5.21747,Ethyl Benzene,LB
+37031,5.027692,"1,3-Butadiene",LB
+37031,0.5692932,Anthracene,LB
+37031,3.957932,"2,2,4-Trimethylpentane",LB
+37031,2.273274e-05,Mercury,LB
+37031,1.1320542,Fluorene,LB
+37031,5.567415,Carbon Monoxide,TON
+37025,4.349344,Acenaphthylene,LB
+37025,0.370447,Benzo[a]Pyrene,LB
+37025,0.4698017,Methane,TON
+37025,0.6883577,Ammonia,TON
+37171,3.097554e-05,Mercury,LB
+37171,0.5692085,PM10-Primary from certain diesel engines,TON
+37171,0.5236414,PM25-Primary from certain diesel engines,TON
+37169,970.1526,Ethyl Benzene,LB
+37169,1429.571,Hexane,LB
+37167,0.018577824,Manganese,LB
+37167,0.0015071874,Nickel,LB
+37167,0.002311014,Arsenic,LB
+37167,0.04224554,Acenaphthene,LB
+37167,0.08557422,Fluorene,LB
+37167,597.8776,Carbon Dioxide,TON
+37167,0.01882577,Nitrous Oxide,TON
+37167,0.008383153,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.946863,Styrene,LB
+37167,1.0017312,Acrolein,LB
+37167,0.03598208,Anthracene,LB
+37167,0.012639202,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.010596498,Chrysene,LB
+37167,0.010684878,Benz[a]Anthracene,LB
+37157,78.30554,Toluene,LB
+37157,3.448274e-05,Mercury,LB
+37157,0.0004299444,Nickel,LB
+37157,0.002684555,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,4.493582,Styrene,LB
+37151,0.283521,Fluoranthene,LB
+37151,0.06332554,Chrysene,LB
+37151,0.00237942,"Dibenzo[a,h]Anthracene",LB
+37141,0.0019616966,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.007700928,Benzo[b]Fluoranthene,LB
+37141,0.02581448,Benzo[a]Pyrene,LB
+37141,12.99685,Carbon Monoxide,TON
+37141,5.123601,Nitrogen Oxides,TON
+37141,0.04023406,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.01894001,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,32.10024,"1,3-Butadiene",LB
+37129,11.344978,Pyrene,LB
+37129,0.0530807,"Benzo[g,h,i,]Perylene",LB
+37129,0.0684478,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.03918558,Arsenic,LB
+37129,2.411715,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.7023838,Chrysene,LB
+37125,0.4986847,Ammonia,TON
+37125,26.27996,Ethyl Benzene,LB
+37125,7.713124,Styrene,LB
+37125,76.27548,Toluene,LB
+37125,0.0227447,"Benzo[g,h,i,]Perylene",LB
+37121,2.992022,Hexane,LB
+37121,5.68204e-05,Chromium (VI),LB
+37121,3.685318,Carbon Monoxide,TON
+37121,0.04748973,Sulfur Dioxide,TON
+37111,1.6439536e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,8.385958e-06,Benz[a]Anthracene,LB
+37111,1.4266162e-05,Acenaphthene,LB
+37111,0.0016801074,"1,3-Butadiene",LB
+37111,0.0002556086,Acrolein,LB
+37111,2.453631e-05,PM10 Primary (Filt + Cond),TON
+37017,1.8730454e-05,Chromium (VI),LB
+37017,0.07232162,Benzo[a]Pyrene,LB
+37017,1.1713906,Phenanthrene,LB
+37017,0.3204805,PM10 Primary (Filt + Cond),TON
+37017,0.04141621,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,7.84496,Benzene,LB
+37019,0.0008575778,Nickel,LB
+37019,0.004948454,Nitrous Oxide,TON
+37019,0.006181286,Anthracene,LB
+37019,6.860354e-06,Chromium (VI),LB
+37017,0.00701809,Anthracene,LB
+37017,6.14746e-05,"Dibenzo[a,h]Anthracene",LB
+37017,2.69598,Acetaldehyde,LB
+37017,8.816331e-05,Sulfate Portion of PM2.5-PRI,TON
+37013,0.0203316,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,64.28584,"2,2,4-Trimethylpentane",LB
+37013,0.013486542,Manganese,LB
+37013,0.06752032,Acenaphthene,LB
+37115,0.0013612174,Chrysene,LB
+37115,4.036842,Benzene,LB
+37115,0.0207674,Phenanthrene,LB
+37115,0.19732314,Naphthalene,LB
+37115,0.000483944,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.002692621,Ammonia,TON
+37115,0.002943161,PM2.5 Primary (Filt + Cond),TON
+37115,0.001020791,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,5.5454e-08,Chromium (VI),LB
+37115,8.46566e-05,Chrysene,LB
+37115,0.06897144,Formaldehyde,LB
+37115,1.0628356e-05,Arsenic,LB
+37101,0.0005541816,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.003074109,Ammonia,TON
+37101,0.003683662,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,7.86898,Acetaldehyde,LB
+37101,0.0012291436,Phenanthrene,LB
+37101,603.9686,Toluene,LB
+37101,21.4915,Pyrene,LB
+37101,0.0012300026,Chromium (VI),LB
+37101,0.05047498,"Dibenzo[a,h]Anthracene",LB
+37101,9.13549,Acenaphthene,LB
+37101,19.52262,Fluorene,LB
+37101,514.8922,Naphthalene,LB
+37101,98.07525,Carbon Monoxide,TON
+37101,1.203517,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.07154137,Methane,TON
+37101,0.005080983,Nitrous Oxide,TON
+37101,0.08962514,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.5935525,PM10 Primary (Filt + Cond),TON
+37101,2.290516,Styrene,LB
+37101,0.4943886,Anthracene,LB
+37087,44.42874,"1,3-Butadiene",LB
+37087,290.4508,Toluene,LB
+37087,67.86644,Hexane,LB
+37087,345.646,Xylenes (Mixed Isomers),LB
+37087,0.02887816,Benzo[k]Fluoranthene,LB
+37087,203.0976,Benzene,LB
+37087,0.4405601,Sulfur Dioxide,TON
+37087,0.4934291,Sulfate Portion of PM2.5-PRI,TON
+37087,0.0002751434,"Dibenzo[a,h]Anthracene",LB
+37087,10.310646,Benzene,LB
+37087,0.004848476,Manganese,LB
+37087,31.12328,Toluene,LB
+37087,0.009637868,Acenaphthene,LB
+37087,0.00199616,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.0004129446,Sulfate Portion of PM2.5-PRI,TON
+37081,1.9344164,"1,3-Butadiene",LB
+37081,1.4264512,Hexane,LB
+37081,25.04942,Acetaldehyde,LB
+37081,0.1447512,PM10-Primary from certain diesel engines,TON
+37081,3.834158,Pyrene,LB
+37081,2.656764,"Benzo[g,h,i,]Perylene",LB
+37081,556.7072,Carbon Monoxide,TON
+37081,0.1439606,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.03092642,Sulfate Portion of PM2.5-PRI,TON
+37077,116264.4,Carbon Dioxide,TON
+37077,123.582,Volatile Organic Compounds,TON
+37077,25737.24,Toluene,LB
+37077,9.979902,Pyrene,LB
+37065,2.402272,Pyrene,LB
+37065,0.00013854148,Chromium (VI),LB
+37065,0.012054192,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,1.8415528,Fluoranthene,LB
+37065,8.32974,"2,2,4-Trimethylpentane",LB
+37065,0.11659728,Manganese,LB
+37051,0.3476762,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.2521392,Chrysene,LB
+37051,28.837,Benzene,LB
+37051,0.6503961,PM10-Primary from certain diesel engines,TON
+37051,0.12388878,"1,3-Butadiene",LB
+37051,2.628958,Toluene,LB
+37051,0.0007324414,Anthracene,LB
+37051,0.00018682594,Benzo[b]Fluoranthene,LB
+37051,0.003922654,Acenaphthylene,LB
+37051,0.000200085,Chrysene,LB
+37051,1.0039864e-05,Nickel,LB
+37051,0.00466652,Phenanthrene,LB
+37051,0.001746789,Fluorene,LB
+37051,7.02773e-05,Sulfur Dioxide,TON
+37049,0.7610386,Propionaldehyde,LB
+37049,0.14060908,Pyrene,LB
+37045,0.007539493,Sulfur Dioxide,TON
+37045,2.231362,Ethyl Benzene,LB
+37045,0.2311668,Anthracene,LB
+37045,1.7736288,"2,2,4-Trimethylpentane",LB
+37045,0.002139173,Nitrous Oxide,TON
+37047,0.02645338,"Benzo[g,h,i,]Perylene",LB
+37047,6.21061,Formaldehyde,LB
+37047,0.03809614,Fluorene,LB
+37047,0.008309527,Methane,TON
+37047,0.9243364,Nitrogen Oxides,TON
+37047,0.005673946,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.004503668,Propionaldehyde,LB
+37041,0.5301052,Xylenes (Mixed Isomers),LB
+37041,9.469496e-05,Chrysene,LB
+37041,0.00018720964,Benzo[a]Pyrene,LB
+37041,9.657144e-06,Manganese,LB
+37041,1.8577458e-07,Mercury,LB
+37041,0.011003126,Naphthalene,LB
+37031,6.409815e-05,Nitrate portion of PM2.5-PRI,TON
+37031,9.36954,"1,3-Butadiene",LB
+37031,0.12201228,Pyrene,LB
+37031,0.016066026,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.016352346,Benzo[a]Pyrene,LB
+37031,0.016390206,Benz[a]Anthracene,LB
+37031,0.000236453,Mercury,LB
+37029,0.7050118,Ethyl Benzene,LB
+37029,0.067608,Anthracene,LB
+37029,1.3030998,Xylenes (Mixed Isomers),LB
+37029,2.022292,Benzene,LB
+37029,0.07235884,Acenaphthene,LB
+37029,2.349356,Naphthalene,LB
+37029,0.005806923,Methane,TON
+37029,0.005599088,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.004031938,Manganese,LB
+37019,0.5476906,Xylenes (Mixed Isomers),LB
+37019,0.0006133968,Chrysene,LB
+37007,0.717492,Ethyl Benzene,LB
+37007,0.231624,Pyrene,LB
+37007,6.703542e-06,Chromium (VI),LB
+37007,0.018221118,Benzo[a]Pyrene,LB
+37007,2.00552,Benzene,LB
+37007,0.003358736,Nickel,LB
+37007,0.06759924,Acenaphthene,LB
+37007,0.0006315099,Nitrous Oxide,TON
+37007,0.002351274,Sulfate Portion of PM2.5-PRI,TON
+37009,15.632162,"2,2,4-Trimethylpentane",LB
+37003,222.7402,Benzene,LB
+37003,3.037422,Acrolein,LB
+37003,0.2287848,Fluoranthene,LB
+37003,0.012605858,Manganese,LB
+37003,0.1046012,Ammonia,TON
+37003,6.966078,Volatile Organic Compounds,TON
+37065,1.9251648e-05,Mercury,LB
+37065,0.4541122,Naphthalene,LB
+37065,0.01128871,PM10 Primary (Filt + Cond),TON
+37065,0.2112438,Volatile Organic Compounds,TON
+37065,0.2081314,Styrene,LB
+37065,1.1164294,"1,3-Butadiene",LB
+37061,0.03031746,Pyrene,LB
+37061,0.005771782,Chrysene,LB
+37061,9.397424,"2,2,4-Trimethylpentane",LB
+37061,0.006978516,Manganese,LB
+37061,7.82487e-05,Mercury,LB
+37061,0.09793056,Phenanthrene,LB
+37061,0.03638996,Fluorene,LB
+37061,0.009182204,Methane,TON
+37061,0.001796865,Elemental Carbon portion of PM2.5-PRI,TON
+37061,3.150496e-05,Nitrate portion of PM2.5-PRI,TON
+37057,24.25048,Benzene,LB
+37057,379.6498,Carbon Dioxide,TON
+37057,0.03687055,PM10 Primary (Filt + Cond),TON
+37057,15.52922,Ethyl Benzene,LB
+37057,57.63342,Xylenes (Mixed Isomers),LB
+37057,0.04131306,"Benzo[g,h,i,]Perylene",LB
+37057,0.009705724,Benzo[k]Fluoranthene,LB
+37055,12.459162,Ethyl Benzene,LB
+37055,28.43488,Toluene,LB
+37055,0.0214373,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.011552984,Benzo[k]Fluoranthene,LB
+37055,9.928656,"2,2,4-Trimethylpentane",LB
+37055,0.15191212,Manganese,LB
+37055,0.2253185,Methane,TON
+37055,0.01360932,Nitrous Oxide,TON
+37051,6.596812e-05,Chromium (VI),LB
+37051,3675.832,Carbon Dioxide,TON
+37051,0.0585613,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.003778,Sulfate Portion of PM2.5-PRI,TON
+37047,4.987972,Naphthalene,LB
+37047,0.0005483102,Nitrous Oxide,TON
+37047,0.4858586,Nitrogen Oxides,TON
+37047,0.0322793,PM10 Primary (Filt + Cond),TON
+37047,0.003294616,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.2529045,Volatile Organic Compounds,TON
+37047,0.1763841,Fluoranthene,LB
+37047,7.616754,Styrene,LB
+37047,5.707218,Propionaldehyde,LB
+37047,75.18848,Acetaldehyde,LB
+37047,0.34396,Acenaphthene,LB
+37047,0.3032707,Ammonia,TON
+37033,0.0377614,Styrene,LB
+37033,0.0005137664,Benzo[b]Fluoranthene,LB
+37033,1.4203196,Benzene,LB
+37033,0.08065266,Naphthalene,LB
+37033,0.0002050479,Elemental Carbon portion of PM2.5-PRI,TON
+37031,716.9672,"1,3-Butadiene",LB
+37031,2.222298,Benzo[a]Pyrene,LB
+37031,4775.646,"2,2,4-Trimethylpentane",LB
+37069,0.5694364,Ethyl Benzene,LB
+37069,2.110992,Xylenes (Mixed Isomers),LB
+37069,0.0012358628,Nickel,LB
+37069,0.0018948162,Arsenic,LB
+37069,0.005271896,Phenanthrene,LB
+37069,0.0005349994,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.008340716,Phenanthrene,LB
+37047,0.002940256,Fluorene,LB
+37047,0.002454224,Organic Carbon portion of PM2.5-PRI,TON
+37047,1.7631232,Hexane,LB
+37171,8.422698,"2,2,4-Trimethylpentane",LB
+37105,3.633394e-05,Sulfate Portion of PM2.5-PRI,TON
+37105,0.02035558,Volatile Organic Compounds,TON
+37105,0.0012986624,Acenaphthylene,LB
+37105,0.000304327,Chrysene,LB
+37105,0.8459404,Benzene,LB
+37105,0.014579138,Naphthalene,LB
+37105,0.007346881,Methane,TON
+37197,30.39278,Naphthalene,LB
+37197,0.0541923,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.2536193,PM2.5 Primary (Filt + Cond),TON
+37197,1837.056,Toluene,LB
+37197,0.2323496,Benzo[a]Pyrene,LB
+37191,0.002365632,"1,3-Butadiene",LB
+37191,0.04529214,Hexane,LB
+37191,0.08678098,Xylenes (Mixed Isomers),LB
+37191,0.0001427442,"Benzo[g,h,i,]Perylene",LB
+37191,0.02226562,"2,2,4-Trimethylpentane",LB
+37191,0.0001554939,PM10 Primary (Filt + Cond),TON
+37191,2.057155e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,17.289812,Anthracene,LB
+37191,0.01416088,Chromium (VI),LB
+37191,5.2458,Manganese,LB
+37191,2.886087,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.233129,Sulfate Portion of PM2.5-PRI,TON
+37189,3.568856,"1,3-Butadiene",LB
+37189,0.3401468,Anthracene,LB
+37189,0.003000312,"Benzo[g,h,i,]Perylene",LB
+37189,0.01214861,Benzo[b]Fluoranthene,LB
+37189,0.001669298,Benzo[k]Fluoranthene,LB
+37189,2.66065,"2,2,4-Trimethylpentane",LB
+37189,0.003819174,Arsenic,LB
+37189,0.1315066,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.007035483,Sulfate Portion of PM2.5-PRI,TON
+37189,0.000724115,Acenaphthene,LB
+37189,0.0009145243,PM10 Primary (Filt + Cond),TON
+37189,1.798494e-05,Sulfate Portion of PM2.5-PRI,TON
+37189,0.011551652,Acrolein,LB
+37189,0.003314688,Acenaphthylene,LB
+37181,1.3451682,Propionaldehyde,LB
+37181,0.009881636,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,68.41856,Acetaldehyde,LB
+37181,0.009409674,Nitrous Oxide,TON
+37181,3.34735e-05,Nitrate portion of PM2.5-PRI,TON
+37081,0.12213052,Manganese,LB
+37081,54.36113,Carbon Monoxide,TON
+37081,0.004302816,Sulfate Portion of PM2.5-PRI,TON
+37009,2.11023,Xylenes (Mixed Isomers),LB
+37141,5.267238,Ethyl Benzene,LB
+37141,0.018886908,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,19.116606,Formaldehyde,LB
+37141,0.0007622674,Mercury,LB
+37141,0.04078366,Sulfur Dioxide,TON
+37199,0.003248912,PM10 Primary (Filt + Cond),TON
+37199,2.795236e-05,Sulfate Portion of PM2.5-PRI,TON
+37199,0.04558821,Volatile Organic Compounds,TON
+37199,0.00248631,"Benzo[g,h,i,]Perylene",LB
+37197,0.004019262,Benzo[b]Fluoranthene,LB
+37197,0.003079166,Nitrous Oxide,TON
+37197,0.03969485,Ammonia,TON
+37197,3.543416,Nitrogen Oxides,TON
+37197,0.2107686,PM10 Primary (Filt + Cond),TON
+37187,0.00019543404,"Benzo[g,h,i,]Perylene",LB
+37187,0.0005540142,Phenanthrene,LB
+37187,5.215936e-05,Nitrous Oxide,TON
+37183,0.3675904,Styrene,LB
+37183,1.309646,Nitrogen Oxides,TON
+37181,0.07723768,Acrolein,LB
+37181,0.003583906,Anthracene,LB
+37181,0.00718296,Pyrene,LB
+37181,2.796582e-06,Chromium (VI),LB
+37181,3.138936,"2,2,4-Trimethylpentane",LB
+37181,0.000535992,Arsenic,LB
+37181,0.2114524,Naphthalene,LB
+37181,0.002299046,Nitrous Oxide,TON
+37181,0.07393441,Volatile Organic Compounds,TON
+37179,0.4752758,Propionaldehyde,LB
+37179,0.04116928,Pyrene,LB
+37179,0.00673228,Manganese,LB
+37179,0.001319427,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.008638625,Nitrous Oxide,TON
+37179,0.007834342,Ammonia,TON
+37007,0.0018454704,Benzo[a]Pyrene,LB
+37007,0.0009923008,Manganese,LB
+37007,2.353924,Carbon Monoxide,TON
+37007,46.52869,Carbon Dioxide,TON
+37007,6.102823e-05,Sulfate Portion of PM2.5-PRI,TON
+37007,0.005055154,Anthracene,LB
+37007,0.13712742,Propionaldehyde,LB
+37007,3.155676e-07,Chromium (VI),LB
+37007,0.02895326,Acenaphthylene,LB
+37007,5.856134,Benzene,LB
+37007,2.053281,Carbon Monoxide,TON
+37007,12.55797,Carbon Dioxide,TON
+37007,0.117535,Volatile Organic Compounds,TON
+37013,8572.158,Ethyl Benzene,LB
+37013,1.9792256,Manganese,LB
+37013,4868.626,Acetaldehyde,LB
+37013,748.332,Naphthalene,LB
+37013,0.1073466,Sulfate Portion of PM2.5-PRI,TON
+37003,22.75798,Toluene,LB
+37003,10.383054,Propionaldehyde,LB
+37003,0.010956368,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,1.441132,Fluoranthene,LB
+37003,0.2734964,Chrysene,LB
+37003,21.12068,Benzene,LB
+37003,1.090049,PM10-Primary from certain diesel engines,TON
+37003,1.002902,PM25-Primary from certain diesel engines,TON
+37003,24.90039,Nitrogen Oxides,TON
+37001,0.006222472,Nickel,LB
+37001,0.4453698,Phenanthrene,LB
+37001,0.1680757,PM25-Primary from certain diesel engines,TON
+37001,0.0004657722,Nitrate portion of PM2.5-PRI,TON
+37001,3.886003,Nitrogen Oxides,TON
+37001,0.00970736,Sulfur Dioxide,TON
+37001,0.2065605,Volatile Organic Compounds,TON
+37037,6.064486,Xylenes (Mixed Isomers),LB
+37171,6.817034e-05,"Dibenzo[a,h]Anthracene",LB
+37171,0.002905236,Arsenic,LB
+37171,0.06016538,Naphthalene,LB
+37171,213.3074,Carbon Dioxide,TON
+37171,0.002716178,Nitrous Oxide,TON
+37171,0.001616581,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.0002072856,Anthracene,LB
+37145,0.00018765302,Nickel,LB
+37145,0.01945116,Nitrogen Oxides,TON
+37145,0.0002433815,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.01545811,Volatile Organic Compounds,TON
+37141,0.6599532,Formaldehyde,LB
+37141,3.639086e-05,Mercury,LB
+37141,0.017588904,Naphthalene,LB
+37141,0.0001974026,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.0004290316,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,3.449843e-05,Sulfate Portion of PM2.5-PRI,TON
+37099,0.005813636,Benzo[b]Fluoranthene,LB
+37099,0.0002534702,"Dibenzo[a,h]Anthracene",LB
+37099,61.15302,Acetaldehyde,LB
+37099,6.740872,Carbon Monoxide,TON
+37099,0.05732894,PM10 Primary (Filt + Cond),TON
+37099,0.01638886,PM2.5 Primary (Filt + Cond),TON
+37101,22.42804,"2,2,4-Trimethylpentane",LB
+37101,6.242622,Benzene,LB
+37097,0.05397016,Benzo[a]Pyrene,LB
+37097,22.31874,"2,2,4-Trimethylpentane",LB
+37097,0.02429164,Benz[a]Anthracene,LB
+37097,58.28636,Benzene,LB
+37097,0.11982822,Phenanthrene,LB
+37097,3572.439,Carbon Dioxide,TON
+37097,0.04227174,Pyrene,LB
+37097,0.00019883014,Chromium (VI),LB
+37171,0.01394783,Anthracene,LB
+37171,39.6886,Xylenes (Mixed Isomers),LB
+37171,0.03439248,"Benzo[g,h,i,]Perylene",LB
+37171,0.007795902,Benzo[k]Fluoranthene,LB
+37171,0.07300162,Acenaphthylene,LB
+37171,0.0009937632,Nickel,LB
+37171,0.03234164,Fluorene,LB
+37171,290.1677,Carbon Dioxide,TON
+37171,0.01228983,Ammonia,TON
+37171,0.03023477,PM10 Primary (Filt + Cond),TON
+37169,0.8098362,Propionaldehyde,LB
+37169,91.58266,Xylenes (Mixed Isomers),LB
+37169,0.016654478,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.007929464,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.001259247,Sulfur Dioxide,TON
+37149,0.8166986,Acrolein,LB
+37149,0.03853824,Anthracene,LB
+37149,0.02981284,Benzo[b]Fluoranthene,LB
+37149,0.02810052,Nitrous Oxide,TON
+37149,0.1000929,PM10 Primary (Filt + Cond),TON
+37149,0.02240247,Sulfur Dioxide,TON
+37141,0.0225971,Styrene,LB
+37141,0.019801368,Propionaldehyde,LB
+37141,1.5290612e-05,Nickel,LB
+37141,3.198189e-06,Nitrate portion of PM2.5-PRI,TON
+37141,0.001084216,PM2.5 Primary (Filt + Cond),TON
+37137,0.330013,Arsenic,LB
+37137,32374.9,Carbon Dioxide,TON
+37137,2.312337,Ammonia,TON
+37137,0.002481998,Nitrate portion of PM2.5-PRI,TON
+37137,0.9517342,PM2.5 Primary (Filt + Cond),TON
+37137,1832.1206,Ethyl Benzene,LB
+37137,443.0904,"1,3-Butadiene",LB
+37137,10235.326,Toluene,LB
+37137,6752.128,Xylenes (Mixed Isomers),LB
+37137,0.6975946,Benzo[b]Fluoranthene,LB
+37137,4.485336,Fluoranthene,LB
+37137,14.151834,Acenaphthylene,LB
+37137,0.7369044,Benz[a]Anthracene,LB
+37133,94.6376,Hexane,LB
+37129,411.9558,"1,3-Butadiene",LB
+37129,4.149414,Fluoranthene,LB
+37129,1.4082838,Manganese,LB
+37129,2.856254,Acenaphthene,LB
+37129,1.934088,Nitrous Oxide,TON
+37129,0.003626352,Nitrate portion of PM2.5-PRI,TON
+37129,0.6012145,Organic Carbon portion of PM2.5-PRI,TON
+37129,1.086478,Sulfur Dioxide,TON
+37121,0.4537448,Acrolein,LB
+37121,0.01935032,PM10 Primary (Filt + Cond),TON
+37117,0.8731964,Acrolein,LB
+37117,0.002742222,Chrysene,LB
+37117,0.0004355706,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.1049603,Nitrogen Oxides,TON
+37117,0.001021059,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.006989098,PM10 Primary (Filt + Cond),TON
+37117,0.06215706,Volatile Organic Compounds,TON
+37117,0.00537024,Pyrene,LB
+37117,0.000950387,Benzo[b]Fluoranthene,LB
+37117,1.416192e-05,Mercury,LB
+37117,0.0002707688,Arsenic,LB
+37117,0.0008737278,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,154.83048,Propionaldehyde,LB
+37117,12.449276,Pyrene,LB
+37117,16271.896,Xylenes (Mixed Isomers),LB
+37117,5280.326,"2,2,4-Trimethylpentane",LB
+37117,0.5328831,Elemental Carbon portion of PM2.5-PRI,TON
+37117,3.155809,Nitrous Oxide,TON
+37101,20.8569,Pyrene,LB
+37101,0.089111,Benzo[b]Fluoranthene,LB
+37101,0.01232055,"Dibenzo[a,h]Anthracene",LB
+37101,0.0008619016,Mercury,LB
+37101,0.18021474,Arsenic,LB
+37101,231.5871,Carbon Monoxide,TON
+37101,0.2202795,Sulfur Dioxide,TON
+37091,0.01474014,Arsenic,LB
+37091,17.198432,Naphthalene,LB
+37091,0.6379748,PM25-Primary from certain diesel engines,TON
+37091,0.06289963,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,12.453136,Toluene,LB
+37091,4.096076,Hexane,LB
+37091,1.333045,Pyrene,LB
+37091,0.7963882,Acenaphthylene,LB
+37091,0.1754716,Chrysene,LB
+37091,0.3033358,Benz[a]Anthracene,LB
+37103,1.4041358,Hexane,LB
+37103,0.0006568254,Benz[a]Anthracene,LB
+37103,0.001491419,Acenaphthene,LB
+37103,42.7354,Carbon Dioxide,TON
+37103,0.0006724846,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.004338615,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.0004028467,Sulfate Portion of PM2.5-PRI,TON
+37095,0.11680906,"1,3-Butadiene",LB
+37095,0.09666636,Hexane,LB
+37095,0.013394094,Anthracene,LB
+37095,0.194007,Propionaldehyde,LB
+37095,0.09912926,"2,2,4-Trimethylpentane",LB
+37093,17.97846,Hexane,LB
+37093,0.0001554052,Chromium (VI),LB
+37093,0.002603388,Benzo[k]Fluoranthene,LB
+37093,2.429104,Acenaphthene,LB
+37093,6.399662,Phenanthrene,LB
+37093,0.5568245,PM2.5 Primary (Filt + Cond),TON
+37089,2.034154,Pyrene,LB
+37089,1.9360532,Acenaphthylene,LB
+37089,0.04627576,Nickel,LB
+37089,17.46958,Carbon Monoxide,TON
+37089,0.08571811,Ammonia,TON
+37089,7.658511,Nitrogen Oxides,TON
+37089,0.01758362,Sulfate Portion of PM2.5-PRI,TON
+37089,2.090051,Volatile Organic Compounds,TON
+37083,0.8526932,Ethyl Benzene,LB
+37083,0.3549324,Styrene,LB
+37083,0.08572338,Anthracene,LB
+37083,0.2978884,Phenanthrene,LB
+37083,3.236081,Nitrogen Oxides,TON
+37083,0.1743807,PM10 Primary (Filt + Cond),TON
+37083,0.080985,Anthracene,LB
+37083,0.009013006,Chrysene,LB
+37083,0.2812866,Phenanthrene,LB
+37083,0.17211188,Fluorene,LB
+37083,0.0215326,PM10 Primary (Filt + Cond),TON
+37083,0.1857605,Volatile Organic Compounds,TON
+37077,1.6258448,"1,3-Butadiene",LB
+37077,43.91654,Toluene,LB
+37077,12.209114,Hexane,LB
+37077,0.295551,Propionaldehyde,LB
+37077,0.02383166,"Benzo[g,h,i,]Perylene",LB
+37077,0.017317304,Acenaphthene,LB
+37077,0.0350772,Fluorene,LB
+37077,8.394567,Carbon Monoxide,TON
+37077,318.5868,Carbon Dioxide,TON
+37077,0.006818203,Nitrous Oxide,TON
+37077,0.01271624,PM2.5 Primary (Filt + Cond),TON
+37053,0.253377,Hexane,LB
+37053,0.03307874,Anthracene,LB
+37053,0.002083312,Benzo[b]Fluoranthene,LB
+37053,0.013411158,Chrysene,LB
+37053,0.006982918,Benzo[a]Pyrene,LB
+37053,0.0301134,Acenaphthene,LB
+37053,0.004112168,Ammonia,TON
+37053,0.002337846,Sulfur Dioxide,TON
+37197,0.0009541096,Sulfur Dioxide,TON
+37197,0.1771538,Hexane,LB
+37197,0.0004844608,Benzo[a]Pyrene,LB
+37193,17.83455,Acrolein,LB
+37193,0.2487214,Benzo[b]Fluoranthene,LB
+37193,0.3217052,Benzo[a]Pyrene,LB
+37193,0.007347418,"Dibenzo[a,h]Anthracene",LB
+37193,0.1606479,Manganese,LB
+37193,0.09493812,Arsenic,LB
+37193,1.9240586,Fluorene,LB
+37193,23.48672,Nitrogen Oxides,TON
+37193,0.196442,Sulfur Dioxide,TON
+37191,0.0008582302,Benzo[b]Fluoranthene,LB
+37191,1.3622032,Formaldehyde,LB
+37191,3.768572e-05,"Dibenzo[a,h]Anthracene",LB
+37191,0.0007409284,Benz[a]Anthracene,LB
+37191,8.786414,Acetaldehyde,LB
+37191,0.07362344,Nitrogen Oxides,TON
+37191,0.0009492803,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,26.9662,Acrolein,LB
+37187,1345.7012,Hexane,LB
+37187,1.1134592,Anthracene,LB
+37187,1.7097558,"Benzo[g,h,i,]Perylene",LB
+37187,0.642376,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.01474733,"Dibenzo[a,h]Anthracene",LB
+37187,1359.894,Benzene,LB
+37187,1.597329,PM10 Primary (Filt + Cond),TON
+37179,20.28242,Acrolein,LB
+37179,6.562174e-05,Chromium (VI),LB
+37179,260.928,Formaldehyde,LB
+37179,0.3893406,Benz[a]Anthracene,LB
+37179,6.116792e-05,Mercury,LB
+37179,0.3050666,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.001905475,Nitrate portion of PM2.5-PRI,TON
+37179,0.1028916,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.02756213,Sulfur Dioxide,TON
+37171,0.515137,Benzo[a]Pyrene,LB
+37171,5.232855,PM10-Primary from certain diesel engines,TON
+37171,0.01288681,Nitrate portion of PM2.5-PRI,TON
+37171,0.2050685,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.9597301,Volatile Organic Compounds,TON
+37171,0.11639678,Chrysene,LB
+37149,6.813638,Styrene,LB
+37149,38.89762,"1,3-Butadiene",LB
+37149,0.091495,Benzo[b]Fluoranthene,LB
+37149,90.59306,Formaldehyde,LB
+37149,14.964856,Naphthalene,LB
+37149,0.02764505,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.03515427,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.003800249,Sulfate Portion of PM2.5-PRI,TON
+37137,0.001229582,Sulfate Portion of PM2.5-PRI,TON
+37137,0.6722854,Acenaphthylene,LB
+37137,0.01173328,Nickel,LB
+37137,0.01798942,Arsenic,LB
+37137,0.147737,Acenaphthene,LB
+37137,7.669222,Naphthalene,LB
+37137,0.112554,Ammonia,TON
+37137,0.1294265,PM10 Primary (Filt + Cond),TON
+37135,0.3302168,Styrene,LB
+37135,0.013123422,Anthracene,LB
+37135,0.005287422,Chrysene,LB
+37135,0.0002064974,"Dibenzo[a,h]Anthracene",LB
+37135,6.850998,"2,2,4-Trimethylpentane",LB
+37135,0.01518365,Acenaphthene,LB
+37135,0.005334003,Nitrous Oxide,TON
+37135,0.2381698,Propionaldehyde,LB
+37135,0.008999798,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,87.95702,Volatile Organic Compounds,TON
+37133,9.347506,Phenanthrene,LB
+37133,5.11936,Fluorene,LB
+37133,0.03744917,Nitrous Oxide,TON
+37133,3.239361,PM10 Primary (Filt + Cond),TON
+37133,0.1067572,Sulfur Dioxide,TON
+37133,27.89796,Ethyl Benzene,LB
+37133,7.29597,Pyrene,LB
+37133,74.89106,Benzene,LB
+37129,0.0003510414,Benzo[k]Fluoranthene,LB
+37129,0.715009,Acenaphthene,LB
+37129,1.0640352,Pyrene,LB
+37129,0.002410606,"Benzo[g,h,i,]Perylene",LB
+37129,0.00508881,Nitrous Oxide,TON
+37125,0.69582,Hexane,LB
+37125,0.01502274,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.006219346,Sulfate Portion of PM2.5-PRI,TON
+37125,0.0052757,Benzo[b]Fluoranthene,LB
+37125,0.16991656,Fluorene,LB
+37123,0.3462202,"1,3-Butadiene",LB
+37123,0.7890912,Toluene,LB
+37123,1.0325014,Benzene,LB
+37123,0.3740882,Carbon Monoxide,TON
+37123,0.0003392032,Nitrous Oxide,TON
+37121,1.5664486,Styrene,LB
+37121,0.001369542,Nitrate portion of PM2.5-PRI,TON
+37123,0.006004758,Benzo[b]Fluoranthene,LB
+37123,0.0008222298,Benzo[k]Fluoranthene,LB
+37123,0.0017375864,Arsenic,LB
+37119,214.537,Xylenes (Mixed Isomers),LB
+37119,0.4103036,Acenaphthylene,LB
+37119,0.05372418,Benzo[a]Pyrene,LB
+37119,4.671044,Naphthalene,LB
+37119,40.45387,Carbon Monoxide,TON
+37119,0.002072572,Sulfate Portion of PM2.5-PRI,TON
+37119,57.64784,Ethyl Benzene,LB
+37119,10.03636,"1,3-Butadiene",LB
+37117,801.5062,Ethyl Benzene,LB
+37113,0.1757076,Organic Carbon portion of PM2.5-PRI,TON
+37113,8.041386,Volatile Organic Compounds,TON
+37113,20.22006,Styrene,LB
+37113,7.776754,Acenaphthylene,LB
+37113,7.866594,Fluorene,LB
+37113,0.3790246,Methane,TON
+37105,0.8216782,Hexane,LB
+37105,0.10199402,Anthracene,LB
+37105,0.0017300796,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,32.75636,Formaldehyde,LB
+37105,0.0858094,PM10-Primary from certain diesel engines,TON
+37105,0.03105062,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.01583882,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,1.6503176,"1,3-Butadiene",LB
+37091,3.844804,Acrolein,LB
+37091,0.0007375624,Benzo[k]Fluoranthene,LB
+37091,0.03991506,Chrysene,LB
+37091,0.009746792,Manganese,LB
+37091,0.007128579,Methane,TON
+37091,0.06731777,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.006226023,Ammonia,TON
+37091,0.2872126,Volatile Organic Compounds,TON
+37093,0.0447358,Mercury,LB
+37093,1623.054,Carbon Monoxide,TON
+37093,7.350082,PM10 Primary (Filt + Cond),TON
+37093,1.79121,Sulfur Dioxide,TON
+37093,1.9949964,Benz[a]Anthracene,LB
+37079,28.68086,Toluene,LB
+37079,0.00012354982,Chromium (VI),LB
+37079,0.00010010008,Mercury,LB
+37079,2.64151,Fluorene,LB
+37079,0.4278861,PM10-Primary from certain diesel engines,TON
+37079,0.1013013,Ammonia,TON
+37079,0.05135338,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.4045337,PM2.5 Primary (Filt + Cond),TON
+37073,0.00012005306,Fluoranthene,LB
+37073,3.628296e-05,Chrysene,LB
+37073,0.1752986,Methane,TON
+37073,0.0008848636,Ammonia,TON
+37073,0.002146595,PM2.5 Primary (Filt + Cond),TON
+37073,5.0562e-05,Anthracene,LB
+37073,0.3330922,Arsenic,LB
+37073,2.637171,Ammonia,TON
+37073,1.023528,Benzo[a]Pyrene,LB
+37079,932.9696,Hexane,LB
+37067,0.003258821,Sulfur Dioxide,TON
+37067,0.3197416,Volatile Organic Compounds,TON
+37067,0.011786714,Benzo[b]Fluoranthene,LB
+37067,0.3110704,Acenaphthylene,LB
+37067,53.1054,Formaldehyde,LB
+37067,0.001609805,"Dibenzo[a,h]Anthracene",LB
+37067,0.04763358,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.1113096,Phenanthrene,LB
+37067,11.905454,Ethyl Benzene,LB
+37067,2.06134e-05,Chromium (VI),LB
+37065,4392.148,Carbon Dioxide,TON
+37065,0.005509636,Nitrous Oxide,TON
+37065,1.270594,PM2.5 Primary (Filt + Cond),TON
+37065,3.787052,Styrene,LB
+37065,0.9758004,Anthracene,LB
+37065,1.4570652,Acenaphthylene,LB
+37065,254.4056,Formaldehyde,LB
+37065,24.31624,Benzene,LB
+37059,0.930405,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.08552425,Sulfate Portion of PM2.5-PRI,TON
+37059,5240.722,Hexane,LB
+37059,2.695158,Benzo[a]Pyrene,LB
+37059,5426.464,Benzene,LB
+37059,1.5311406,Manganese,LB
+37059,0.711626,Nickel,LB
+37059,1869.7106,Acetaldehyde,LB
+37059,0.008411783,Nitrate portion of PM2.5-PRI,TON
+37043,0.09181236,Toluene,LB
+37043,2.960852e-07,Chromium (VI),LB
+37043,0.0002769186,Benzo[b]Fluoranthene,LB
+37043,0.0009287794,Benzo[a]Pyrene,LB
+37043,0.04201264,"1,3-Butadiene",LB
+37043,1.624339e-05,Nitrate portion of PM2.5-PRI,TON
+37043,3.785778e-05,"Dibenzo[a,h]Anthracene",LB
+37043,2.538016e-07,Mercury,LB
+37043,2.64052,"1,3-Butadiene",LB
+37043,2.241422,Hexane,LB
+37043,0.11437884,Chrysene,LB
+37043,89.28174,Formaldehyde,LB
+37043,0.05171505,Methane,TON
+37043,2.085884,Carbon Monoxide,TON
+37037,0.02403412,"Benzo[g,h,i,]Perylene",LB
+37037,0.02987302,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,7.4138,Styrene,LB
+37037,16.387756,"2,2,4-Trimethylpentane",LB
+37037,1.7245176,Acenaphthene,LB
+37037,14.07178,Carbon Monoxide,TON
+37037,0.2272245,Ammonia,TON
+37037,26.50442,Nitrogen Oxides,TON
+37037,0.5663987,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.07571079,Sulfur Dioxide,TON
+37035,76.15942,Toluene,LB
+37035,0.07821928,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,1.0302756,Benzo[a]Pyrene,LB
+37035,28.79584,"2,2,4-Trimethylpentane",LB
+37027,0.2410756,PM25-Primary from certain diesel engines,TON
+37027,0.003775452,Nitrous Oxide,TON
+37027,0.01112192,Sulfur Dioxide,TON
+37027,0.6692322,Acenaphthylene,LB
+37027,0.1053523,Chrysene,LB
+37027,51.10058,Benzene,LB
+37027,7.175544,Phenanthrene,LB
+37027,59.42314,Naphthalene,LB
+37027,2.378188,PM25-Primary from certain diesel engines,TON
+37027,2.501301,PM2.5 Primary (Filt + Cond),TON
+37027,0.3399831,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.2412458,Manganese,LB
+37023,0.00010944392,Mercury,LB
+37023,59.9414,Naphthalene,LB
+37023,14.97744,Carbon Monoxide,TON
+37023,0.03517638,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,540.061,Formaldehyde,LB
+37023,8848.745,Carbon Dioxide,TON
+37023,0.008003194,Nitrate portion of PM2.5-PRI,TON
+37023,0.0608397,Sulfate Portion of PM2.5-PRI,TON
+37023,8.019226,Styrene,LB
+37159,26.48619,Carbon Monoxide,TON
+37159,0.01232132,Elemental Carbon portion of PM2.5-PRI,TON
+37159,9.504126,"1,3-Butadiene",LB
+37149,1.2278954,Styrene,LB
+37149,2.780118,"1,3-Butadiene",LB
+37149,9.472632,Naphthalene,LB
+37153,1.0538182,Pyrene,LB
+37153,1381.8498,Xylenes (Mixed Isomers),LB
+37153,0.204571,Benzo[a]Pyrene,LB
+37153,0.16596244,Benz[a]Anthracene,LB
+37153,0.13706518,Manganese,LB
+37153,0.4043402,Methane,TON
+37153,0.3255608,Nitrous Oxide,TON
+37153,0.078418,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,8.636676,Phenanthrene,LB
+37147,36.92424,Propionaldehyde,LB
+37147,73.96398,Xylenes (Mixed Isomers),LB
+37147,0.13522614,Benzo[b]Fluoranthene,LB
+37147,0.013400238,Benzo[a]Pyrene,LB
+37135,35.96532,Ethyl Benzene,LB
+37015,3.505743e-05,Organic Carbon portion of PM2.5-PRI,TON
+37015,4.582336e-05,Sulfur Dioxide,TON
+37015,0.002841088,Styrene,LB
+37015,0.000556574,Acenaphthylene,LB
+37015,6.405684e-05,Benzo[a]Pyrene,LB
+37015,0.0853707,"2,2,4-Trimethylpentane",LB
+37015,0.12834014,Benzene,LB
+37015,2.186462,Carbon Dioxide,TON
+37015,6.38068e-05,Nitrous Oxide,TON
+37199,0.00082491,Arsenic,LB
+37199,0.16074768,Phenanthrene,LB
+37199,0.3108796,Carbon Monoxide,TON
+37199,0.03555755,PM10-Primary from certain diesel engines,TON
+37199,0.04719518,PM10 Primary (Filt + Cond),TON
+37199,0.1757861,Styrene,LB
+37199,0.0007680716,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.0004135962,Benzo[k]Fluoranthene,LB
+37199,0.06825496,Acenaphthylene,LB
+37199,13.405326,Formaldehyde,LB
+37199,0.0004128684,"Dibenzo[a,h]Anthracene",LB
+37191,1377.627,Benzene,LB
+37191,0.360739,Manganese,LB
+37191,0.011482362,Mercury,LB
+37191,0.2195368,Arsenic,LB
+37191,475.6038,Acetaldehyde,LB
+37191,1.3653536,Acenaphthene,LB
+37191,0.1280106,Elemental Carbon portion of PM2.5-PRI,TON
+37191,2990.27,Xylenes (Mixed Isomers),LB
+37191,1.2854162,"Benzo[g,h,i,]Perylene",LB
+37191,0.3685714,Benzo[k]Fluoranthene,LB
+37187,0.0008365284,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.0004432432,Benzo[k]Fluoranthene,LB
+37187,1.3521026,Benzene,LB
+37187,62.2598,Carbon Dioxide,TON
+37187,0.004005542,Ammonia,TON
+37187,0.003604296,PM10 Primary (Filt + Cond),TON
+37187,0.03224234,Volatile Organic Compounds,TON
+37187,5.568506e-05,Mercury,LB
+37187,50.53668,Acetaldehyde,LB
+37187,0.7367476,Fluorene,LB
+37187,4230.027,Carbon Dioxide,TON
+37187,13.98113,Nitrogen Oxides,TON
+37187,0.09733261,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.5219026,PM2.5 Primary (Filt + Cond),TON
+37187,0.06382122,Benzo[a]Pyrene,LB
+37195,0.0399545,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.5085289,Sulfur Dioxide,TON
+37195,0.4970955,Sulfate Portion of PM2.5-PRI,TON
+37195,75.5778,Propionaldehyde,LB
+37195,17.009678,Phenanthrene,LB
+37195,3.42022,Methane,TON
+37195,0.05265673,Nitrous Oxide,TON
+37195,160.4042,Nitrogen Oxides,TON
+37195,0.9558443,Organic Carbon portion of PM2.5-PRI,TON
+37195,7.821033,PM10 Primary (Filt + Cond),TON
+37187,1.3048154e-05,Anthracene,LB
+37187,0.015298256,Benzene,LB
+37187,0.08437989,Carbon Dioxide,TON
+37187,4.972806e-06,Benz[a]Anthracene,LB
+37183,0.16819494,Benzo[a]Pyrene,LB
+37183,20.76066,Acrolein,LB
+37183,27.46488,Toluene,LB
+37183,0.7719808,Anthracene,LB
+37183,25.19648,Benzene,LB
+37183,120.72376,Acetaldehyde,LB
+37183,0.223729,Elemental Carbon portion of PM2.5-PRI,TON
+37181,3.046552,"2,2,4-Trimethylpentane",LB
+37181,0.00580531,Arsenic,LB
+37181,0.1168588,PM25-Primary from certain diesel engines,TON
+37181,0.004235159,Sulfate Portion of PM2.5-PRI,TON
+37179,0.0017049358,Nickel,LB
+37179,0.01172714,Methane,TON
+37179,0.004102784,Nitrous Oxide,TON
+37179,1.202766e-05,Nitrate portion of PM2.5-PRI,TON
+37179,0.005327504,PM2.5 Primary (Filt + Cond),TON
+37179,0.001519227,Benzo[b]Fluoranthene,LB
+37179,0.001519227,Benzo[k]Fluoranthene,LB
+37181,0.217357,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.16686834,Benzo[b]Fluoranthene,LB
+37181,139.49,Carbon Monoxide,TON
+37181,0.05424202,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.4945268,Ammonia,TON
+37181,16.68986,Nitrogen Oxides,TON
+37181,10.36828,Volatile Organic Compounds,TON
+37179,45.61878,Propionaldehyde,LB
+37179,0.6264482,Benzo[k]Fluoranthene,LB
+37179,1396.607,Ethyl Benzene,LB
+37179,1.515643,Nitrous Oxide,TON
+37179,0.8717486,Sulfur Dioxide,TON
+37177,2.137046e-06,Mercury,LB
+37177,0.1772938,Phenanthrene,LB
+37177,0.006068286,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.08435893,Volatile Organic Compounds,TON
+37177,0.01061218,Benzo[a]Pyrene,LB
+37177,0.0004320668,"Dibenzo[a,h]Anthracene",LB
+37043,0.6847654,Pyrene,LB
+37043,0.003810722,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.014965688,Benzo[b]Fluoranthene,LB
+37043,0.019444046,Manganese,LB
+37043,0.0157481,Methane,TON
+37043,0.4767068,"1,3-Butadiene",LB
+37043,0.0009617402,Benzo[k]Fluoranthene,LB
+37043,1.1205732,Formaldehyde,LB
+37043,0.0002048154,Ammonia,TON
+37043,0.001273142,PM2.5 Primary (Filt + Cond),TON
+37043,0.0002638254,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.0001283174,Sulfur Dioxide,TON
+37043,2.458078e-05,Sulfate Portion of PM2.5-PRI,TON
+37037,0.03551404,"Benzo[g,h,i,]Perylene",LB
+37037,0.13148644,Acenaphthylene,LB
+37037,0.01627787,Methane,TON
+37037,7.02265,Styrene,LB
+37037,0.3745254,"Benzo[g,h,i,]Perylene",LB
+37037,0.1407704,Benzo[a]Pyrene,LB
+37037,0.0250911,Manganese,LB
+37037,0.0013687786,Mercury,LB
+37037,0.02616704,Arsenic,LB
+37037,1.7410678,Phenanthrene,LB
+37037,0.6482092,Fluorene,LB
+37037,2235.949,Carbon Dioxide,TON
+37037,0.01884603,Nitrous Oxide,TON
+37037,4.501561,Nitrogen Oxides,TON
+37029,14.648608,"1,3-Butadiene",LB
+37029,0.1325056,Methane,TON
+37029,0.4062419,PM10-Primary from certain diesel engines,TON
+37029,2.595574,Volatile Organic Compounds,TON
+37025,2.854004,PM25-Primary from certain diesel engines,TON
+37025,0.05701111,Nitrous Oxide,TON
+37025,5.144809,PM10 Primary (Filt + Cond),TON
+37025,44.56456,Ethyl Benzene,LB
+37025,15.870834,Styrene,LB
+37025,0.06600984,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,8.863664,Fluoranthene,LB
+37025,1.6659664,Chrysene,LB
+37025,0.8691468,Benzo[a]Pyrene,LB
+37069,0.1548306,Manganese,LB
+37069,0.1701458,Nickel,LB
+37069,0.04599644,Arsenic,LB
+37069,600.5646,Acetaldehyde,LB
+37069,6746.355,Carbon Dioxide,TON
+37069,1.45429,PM10 Primary (Filt + Cond),TON
+37069,0.000283142,Chromium (VI),LB
+37069,0.03887168,Benzo[b]Fluoranthene,LB
+37067,0.000976874,Chromium (VI),LB
+37067,0.06385262,"Benzo[g,h,i,]Perylene",LB
+37067,0.07582698,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.9953654,Benzo[a]Pyrene,LB
+37067,857.2992,Acetaldehyde,LB
+37067,1.822978,Methane,TON
+37067,0.01761256,Nitrate portion of PM2.5-PRI,TON
+37067,0.833152,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.01685018,PM25-Primary from certain diesel engines,TON
+37059,0.3542674,Propionaldehyde,LB
+37059,1.49209e-06,Mercury,LB
+37065,0.007334392,Chromium (VI),LB
+37065,22.88634,Acenaphthylene,LB
+37065,3.04396,Benzo[a]Pyrene,LB
+37065,1.371257,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,17.910178,Ethyl Benzene,LB
+37049,0.0015237202,Pyrene,LB
+37049,0.000947173,"Benzo[g,h,i,]Perylene",LB
+37049,0.8262266,Benzene,LB
+37049,0.0003293174,Nitrous Oxide,TON
+37049,0.01674262,Volatile Organic Compounds,TON
+37045,0.4948496,Acrolein,LB
+37045,0.008773748,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,3.376865e-05,Nitrate portion of PM2.5-PRI,TON
+37045,0.05554684,PM10 Primary (Filt + Cond),TON
+37045,0.007896597,Sulfur Dioxide,TON
+37045,0.0004371228,Sulfate Portion of PM2.5-PRI,TON
+37041,74.88264,Formaldehyde,LB
+37041,0.0014357856,Mercury,LB
+37029,0.274795,Chrysene,LB
+37029,0.4247018,Benzo[a]Pyrene,LB
+37029,0.286423,Benz[a]Anthracene,LB
+37029,0.4895228,Methane,TON
+37029,1.340083,PM10 Primary (Filt + Cond),TON
+37029,0.5190797,PM2.5 Primary (Filt + Cond),TON
+37029,0.1502448,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,49.19958,Hexane,LB
+37023,1.0891984,Chrysene,LB
+37023,0.15117006,Nickel,LB
+37023,0.01223657,Nitrate portion of PM2.5-PRI,TON
+37023,68.10678,Naphthalene,LB
+37023,0.2912171,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,8.075798,Styrene,LB
+37023,49.48278,Toluene,LB
+37023,0.8308126,Chrysene,LB
+37023,0.432201,Benzo[a]Pyrene,LB
+37133,69.08008,Hexane,LB
+37133,7.22689,Anthracene,LB
+37133,142.13318,Propionaldehyde,LB
+37133,0.011370432,"Dibenzo[a,h]Anthracene",LB
+37133,69.82536,"2,2,4-Trimethylpentane",LB
+37133,1.9876336,Benz[a]Anthracene,LB
+37133,1.252414,Methane,TON
+37133,3.627052,PM10 Primary (Filt + Cond),TON
+37133,2.501482,PM2.5 Primary (Filt + Cond),TON
+37133,0.0378082,"Benzo[g,h,i,]Perylene",LB
+37131,271.0086,Formaldehyde,LB
+37131,0.14559418,Benzo[a]Pyrene,LB
+37131,9626.9,Carbon Dioxide,TON
+37131,1.258382,PM10-Primary from certain diesel engines,TON
+37131,0.8115214,Elemental Carbon portion of PM2.5-PRI,TON
+37131,6.802588,Hexane,LB
+37131,21.50368,Xylenes (Mixed Isomers),LB
+37131,0.0001162657,Chromium (VI),LB
+37129,24.14856,Anthracene,LB
+37129,1470.5478,Naphthalene,LB
+37129,678.3252,Nitrogen Oxides,TON
+37127,1.3744424,Acrolein,LB
+37127,3.648726e-06,Chromium (VI),LB
+37127,0.02394232,Chrysene,LB
+37127,7.545654,Acetaldehyde,LB
+37127,0.6793935,Nitrogen Oxides,TON
+37113,0.00600442,Pyrene,LB
+37113,0.1786642,Nitrogen Oxides,TON
+37113,0.0007090835,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,1769.2596,"2,2,4-Trimethylpentane",LB
+37107,8.661054,Pyrene,LB
+37107,7.367042,"Benzo[g,h,i,]Perylene",LB
+37107,0.06354342,"Dibenzo[a,h]Anthracene",LB
+37107,5352.436,"2,2,4-Trimethylpentane",LB
+37107,104.505,Acrolein,LB
+37107,24295.56,Toluene,LB
+37107,1.4160716,Arsenic,LB
+37107,1.675331,Organic Carbon portion of PM2.5-PRI,TON
+37107,11.80539,PM10 Primary (Filt + Cond),TON
+37091,0.0004331216,Mercury,LB
+37091,0.005400406,Nickel,LB
+37091,0.00827982,Arsenic,LB
+37091,0.5556306,Phenanthrene,LB
+37091,0.01060645,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,2.884767,Volatile Organic Compounds,TON
+37091,1.926193,Acrolein,LB
+37091,647.8404,Toluene,LB
+37071,574750.9,Carbon Dioxide,TON
+37071,15.515858,Benzo[a]Pyrene,LB
+37071,94106.48,Xylenes (Mixed Isomers),LB
+37071,0.0292555,Chromium (VI),LB
+37071,62.27062,Fluoranthene,LB
+37069,6.29291,"1,3-Butadiene",LB
+37069,0.8786046,Fluoranthene,LB
+37069,0.08739438,Methane,TON
+37069,0.1391993,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.2697868,PM10 Primary (Filt + Cond),TON
+37069,24.22088,Acenaphthylene,LB
+37069,1538.642,Formaldehyde,LB
+37069,275.9748,Naphthalene,LB
+37069,85506.5,Carbon Dioxide,TON
+37069,3873.366,Ethyl Benzene,LB
+37069,24758.68,Toluene,LB
+37069,1.448995,Organic Carbon portion of PM2.5-PRI,TON
+37069,3.211711,PM2.5 Primary (Filt + Cond),TON
+37055,0.0009251056,Mercury,LB
+37055,57.34954,Carbon Monoxide,TON
+37055,0.01310533,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.0002645982,Nitrate portion of PM2.5-PRI,TON
+37055,5.36766,Styrene,LB
+37055,403.5138,Hexane,LB
+37055,0.06756076,Benzo[b]Fluoranthene,LB
+37055,0.3568436,Fluoranthene,LB
+37047,28.39454,Toluene,LB
+37047,1.7603372,Anthracene,LB
+37047,0.00012661374,Chromium (VI),LB
+37047,0.7149592,Chrysene,LB
+37047,456.2118,Formaldehyde,LB
+37047,0.3715496,Benzo[a]Pyrene,LB
+37047,2.394932,PM10-Primary from certain diesel engines,TON
+37045,1.3693832,Acrolein,LB
+37045,0.0623617,Anthracene,LB
+37045,17.155028,Formaldehyde,LB
+37045,0.0003269302,Nitrous Oxide,TON
+37045,0.7097757,Nitrogen Oxides,TON
+37045,10.199104,Ethyl Benzene,LB
+37045,1.3432666,Fluoranthene,LB
+37045,0.0006885542,Nitrate portion of PM2.5-PRI,TON
+37045,0.01948398,Sulfur Dioxide,TON
+37045,308.5866,Formaldehyde,LB
+37045,0.001443052,"Dibenzo[a,h]Anthracene",LB
+37045,28.65492,Benzene,LB
+37041,0.00019065482,Acrolein,LB
+37041,3.078374e-06,Benzo[k]Fluoranthene,LB
+37041,4.396844e-06,Benzo[a]Pyrene,LB
+37041,1.505225e-06,Ammonia,TON
+37041,1.250347e-08,Nitrate portion of PM2.5-PRI,TON
+37041,2.325929e-06,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.0015378102,Chromium (VI),LB
+37041,2.214866,"Benzo[g,h,i,]Perylene",LB
+37041,0.7329964,Chrysene,LB
+37041,925.1124,Formaldehyde,LB
+37041,71.40752,Styrene,LB
+37041,432.0816,"1,3-Butadiene",LB
+37037,0.010564902,Benzo[b]Fluoranthene,LB
+37037,0.2339872,Acenaphthylene,LB
+37037,0.06728498,Chrysene,LB
+37037,3.751748,Toluene,LB
+37037,3.974864,Xylenes (Mixed Isomers),LB
+37037,1.2873208,"2,2,4-Trimethylpentane",LB
+37037,0.1337233,PM10-Primary from certain diesel engines,TON
+37037,0.1230236,PM25-Primary from certain diesel engines,TON
+37037,0.0006150974,Nitrate portion of PM2.5-PRI,TON
+37037,17.56603,Acrolein,LB
+37037,0.01987864,Benzo[a]Pyrene,LB
+37037,0.0008241532,"Dibenzo[a,h]Anthracene",LB
+37037,0.02991334,Manganese,LB
+37037,0.013825238,Arsenic,LB
+37171,0.002349724,Benzo[k]Fluoranthene,LB
+37171,7.428568,Benzene,LB
+37171,0.005925502,Arsenic,LB
+37171,0.08612653,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.6030846,Ethyl Benzene,LB
+37161,0.1708469,Pyrene,LB
+37161,0.0005183438,Benzo[k]Fluoranthene,LB
+37161,0.09182222,Acenaphthylene,LB
+37161,0.04110196,Benz[a]Anthracene,LB
+37161,6.52343e-06,Mercury,LB
+37161,0.120315,Fluorene,LB
+37145,0.00018016736,Mercury,LB
+37145,0.03767004,Arsenic,LB
+37145,1.316381,PM10-Primary from certain diesel engines,TON
+37145,2.182817,PM10 Primary (Filt + Cond),TON
+37145,0.1147052,Sulfur Dioxide,TON
+37135,35.8339,Ethyl Benzene,LB
+37135,13.612082,Styrene,LB
+37135,23.36263,Carbon Monoxide,TON
+37135,2.960245,PM10-Primary from certain diesel engines,TON
+37135,0.01293382,Nitrate portion of PM2.5-PRI,TON
+37135,6.634566,"2,2,4-Trimethylpentane",LB
+37135,0.00010722556,Mercury,LB
+37135,407.5311,Carbon Dioxide,TON
+37135,0.005561699,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.016910522,Fluoranthene,LB
+37135,0.000521311,Sulfate Portion of PM2.5-PRI,TON
+37135,0.1709248,Volatile Organic Compounds,TON
+37143,129.34194,Hexane,LB
+37143,0.0984226,Fluoranthene,LB
+37143,0.3053322,Acenaphthylene,LB
+37143,0.06700756,Acenaphthene,LB
+37143,0.03280008,Methane,TON
+37143,0.06571042,Ammonia,TON
+37143,0.01606964,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.01000745,Sulfur Dioxide,TON
+37141,57.4301,"2,2,4-Trimethylpentane",LB
+37141,0.1455168,Carbon Monoxide,TON
+37141,0.0002083588,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.00014443658,Benzo[k]Fluoranthene,LB
+37141,0.1438098,Formaldehyde,LB
+37141,0.0002082222,Benzo[a]Pyrene,LB
+37133,3.321504,Anthracene,LB
+37133,389.7986,Acetaldehyde,LB
+37133,2.946656,Acenaphthene,LB
+37133,24.00869,Carbon Monoxide,TON
+37133,4.171908,PM10-Primary from certain diesel engines,TON
+37133,0.04330242,Acrolein,LB
+37133,1.7183796e-07,Chromium (VI),LB
+37133,0.000365987,Benzo[b]Fluoranthene,LB
+37133,8.080242e-06,"Dibenzo[a,h]Anthracene",LB
+37133,0.0019648524,Acenaphthene,LB
+37133,0.0008636646,Nitrous Oxide,TON
+37133,1.12817e-05,Sulfate Portion of PM2.5-PRI,TON
+37129,3.497804e-05,Nickel,LB
+37129,0.09065198,Carbon Monoxide,TON
+37129,0.01875688,Nitrogen Oxides,TON
+37129,0.0002139782,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.001115787,Acenaphthylene,LB
+37129,0.0001079637,Chrysene,LB
+37117,0.07855724,Manganese,LB
+37117,1.7948142,Fluorene,LB
+37117,6.66133,Hexane,LB
+37117,0.011697704,"Benzo[g,h,i,]Perylene",LB
+37117,0.05760932,Benzo[b]Fluoranthene,LB
+37117,1.362624,Acenaphthylene,LB
+37117,6.844456,"2,2,4-Trimethylpentane",LB
+37125,0.04996302,Fluorene,LB
+37125,0.03602775,Methane,TON
+37125,23.67921,Carbon Dioxide,TON
+37125,1.888708e-05,Nitrate portion of PM2.5-PRI,TON
+37125,61.17916,Xylenes (Mixed Isomers),LB
+37125,0.007031474,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,46.25782,Toluene,LB
+37119,0.0004056458,Nickel,LB
+37107,2.630156,Ethyl Benzene,LB
+37107,2.592646,"1,3-Butadiene",LB
+37107,0.471743,Fluoranthene,LB
+37107,0.0665823,Chrysene,LB
+37107,0.03078304,Benzo[a]Pyrene,LB
+37107,7.485286,Benzene,LB
+37107,1.51704e-05,Mercury,LB
+37089,1.8825542,Fluoranthene,LB
+37089,283.2228,Carbon Monoxide,TON
+37089,0.2923755,Organic Carbon portion of PM2.5-PRI,TON
+37083,4.648306,"1,3-Butadiene",LB
+37083,8.821932,Xylenes (Mixed Isomers),LB
+37083,0.0306402,Benzo[b]Fluoranthene,LB
+37083,1.0140122,Fluorene,LB
+37083,0.04299441,Methane,TON
+37083,0.01936756,Ammonia,TON
+37083,7.175156,Nitrogen Oxides,TON
+37083,0.1432177,Organic Carbon portion of PM2.5-PRI,TON
+37079,1.0776316,"2,2,4-Trimethylpentane",LB
+37079,0.1045292,PM25-Primary from certain diesel engines,TON
+37079,0.006326942,Ammonia,TON
+37079,0.01133379,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,3.751648,Acrolein,LB
+37079,0.0013186294,"Benzo[g,h,i,]Perylene",LB
+37087,0.8528282,Formaldehyde,LB
+37087,12.73042,Carbon Dioxide,TON
+37087,0.002545232,Organic Carbon portion of PM2.5-PRI,TON
+37087,5.422296,Xylenes (Mixed Isomers),LB
+37085,0.08860242,Anthracene,LB
+37085,0.0007788254,Benzo[k]Fluoranthene,LB
+37085,1.0894862e-05,Mercury,LB
+37085,0.02855224,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.1968016,PM10 Primary (Filt + Cond),TON
+37075,0.0003370298,Benzo[b]Fluoranthene,LB
+37075,1.1449374,"2,2,4-Trimethylpentane",LB
+37075,0.001058648,Methane,TON
+37075,1.421921e-06,Nitrate portion of PM2.5-PRI,TON
+37071,0.0002130172,Chrysene,LB
+37071,0.00416054,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.01282206,PM2.5 Primary (Filt + Cond),TON
+37067,72.9755,Toluene,LB
+37067,0.04979634,"Benzo[g,h,i,]Perylene",LB
+37067,0.3234878,Manganese,LB
+37067,2.721676,PM2.5 Primary (Filt + Cond),TON
+37053,0.00407602,Anthracene,LB
+37053,11.750546,Xylenes (Mixed Isomers),LB
+37053,0.004808698,"Benzo[g,h,i,]Perylene",LB
+37053,0.0018066796,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,1.5441368,Formaldehyde,LB
+37053,0.001247833,Nitrous Oxide,TON
+37053,3.429683e-05,Sulfate Portion of PM2.5-PRI,TON
+37051,5.23307,Xylenes (Mixed Isomers),LB
+37051,0.0019048268,"Dibenzo[a,h]Anthracene",LB
+37051,26.85994,Acetaldehyde,LB
+37051,0.04253675,Methane,TON
+37051,0.0399895,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,34.12588,Styrene,LB
+37051,0.0006899434,Chromium (VI),LB
+37051,0.02357892,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.9630432,Chrysene,LB
+37051,2470.922,Formaldehyde,LB
+37051,7.852146,Acenaphthene,LB
+37051,2.491918,PM10-Primary from certain diesel engines,TON
+37051,2.292576,PM25-Primary from certain diesel engines,TON
+37051,0.4894292,Organic Carbon portion of PM2.5-PRI,TON
+37051,3.676595,PM10 Primary (Filt + Cond),TON
+37049,0.00974402,Manganese,LB
+37049,0.000816515,Nickel,LB
+37049,4.377164,Acetaldehyde,LB
+37049,0.015453224,Acenaphthene,LB
+37049,0.802442,Naphthalene,LB
+37041,0.0283619,Volatile Organic Compounds,TON
+37041,0.02153692,Acrolein,LB
+37041,5.895716,Toluene,LB
+37041,0.0294705,Propionaldehyde,LB
+37041,1.2605792e-05,"Dibenzo[a,h]Anthracene",LB
+37041,0.001366921,Acenaphthene,LB
+37041,0.02518308,Nitrogen Oxides,TON
+37041,0.0007296898,PM10 Primary (Filt + Cond),TON
+37033,1.385156e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.00015486844,Acenaphthylene,LB
+37033,7.804914e-06,Ammonia,TON
+37159,16.25756,Xylenes (Mixed Isomers),LB
+37111,1.773599,Hexane,LB
+37083,1.8523938,Hexane,LB
+37169,1.7522672,Xylenes (Mixed Isomers),LB
+37169,0.015270256,Benzo[a]Pyrene,LB
+37169,0.0630753,Acenaphthene,LB
+37169,0.007814272,Ammonia,TON
+37169,0.002494463,Sulfate Portion of PM2.5-PRI,TON
+37165,20.78192,Propionaldehyde,LB
+37165,0.011271328,"Benzo[g,h,i,]Perylene",LB
+37165,0.16728444,Benzo[a]Pyrene,LB
+37165,56.90266,Naphthalene,LB
+37165,0.876515,Methane,TON
+37165,17043.03,Carbon Dioxide,TON
+37165,1.544827,PM10-Primary from certain diesel engines,TON
+37165,0.2578481,Ammonia,TON
+37165,0.1441326,Sulfur Dioxide,TON
+37163,1.7078692,Toluene,LB
+37163,0.0009237948,"Benzo[g,h,i,]Perylene",LB
+37163,0.00236973,Acenaphthylene,LB
+37163,0.0003452334,Benzo[a]Pyrene,LB
+37157,3216.862,"1,3-Butadiene",LB
+37157,17431.042,Hexane,LB
+37157,38.04676,Pyrene,LB
+37157,7160.798,Formaldehyde,LB
+37157,7.669764,Benzo[a]Pyrene,LB
+37157,3.422856,Manganese,LB
+37157,2.24923,Arsenic,LB
+37157,46.47264,Fluorene,LB
+37157,4696.089,Carbon Monoxide,TON
+37157,230664.2,Carbon Dioxide,TON
+37157,611.0409,Nitrogen Oxides,TON
+37155,1974.514,Carbon Dioxide,TON
+37155,0.008812604,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.04138727,Sulfur Dioxide,TON
+37155,0.002035655,Sulfate Portion of PM2.5-PRI,TON
+37155,193.69184,Toluene,LB
+37155,0.11359474,Fluoranthene,LB
+37155,0.3455678,Acenaphthylene,LB
+37153,0.018636096,Ethyl Benzene,LB
+37153,4.095002e-05,"Benzo[g,h,i,]Perylene",LB
+37153,1.0344754e-05,Benzo[k]Fluoranthene,LB
+37153,1.5351648e-05,Benzo[a]Pyrene,LB
+37153,3.531518e-07,"Dibenzo[a,h]Anthracene",LB
+37153,0.02987964,Benzene,LB
+37153,2.03974e-06,Manganese,LB
+37153,0.00016135192,Phenanthrene,LB
+37153,0.1811761,Carbon Dioxide,TON
+37153,3.032711e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37153,3.79979e-06,Sulfur Dioxide,TON
+37153,0.2005998,"2,2,4-Trimethylpentane",LB
+37153,0.345855,Benzene,LB
+37153,0.0003254244,Acenaphthene,LB
+37153,0.007523468,Styrene,LB
+37153,0.0002843866,Anthracene,LB
+37153,0.0002658372,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.0001600786,Benzo[b]Fluoranthene,LB
+37153,0.0001600786,Benzo[k]Fluoranthene,LB
+37153,0.11218442,Formaldehyde,LB
+37153,0.0001587659,Sulfur Dioxide,TON
+37153,1980.0458,Hexane,LB
+37153,298.3574,Benzene,LB
+37153,39.03882,Volatile Organic Compounds,TON
+37175,5.280274,Fluoranthene,LB
+37175,6.61024,Acenaphthylene,LB
+37175,0.11617906,Benzo[a]Pyrene,LB
+37175,0.8795356,Benz[a]Anthracene,LB
+37175,0.13156642,Manganese,LB
+37175,504.8204,Acetaldehyde,LB
+37175,6.732692,Fluorene,LB
+37175,0.0866817,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.04019464,Styrene,LB
+37173,3.749328,Xylenes (Mixed Isomers),LB
+37173,9.503288e-08,Chromium (VI),LB
+37173,0.0005135794,Chrysene,LB
+37173,1.774722e-05,Sulfate Portion of PM2.5-PRI,TON
+37155,0.9402526,Pyrene,LB
+37155,0.003352948,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.0018149742,Benzo[k]Fluoranthene,LB
+37155,55.20634,Acetaldehyde,LB
+37155,0.2803209,PM25-Primary from certain diesel engines,TON
+37155,0.06482323,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.4159391,PM10 Primary (Filt + Cond),TON
+37149,3.841192,Toluene,LB
+37149,0.4941402,Pyrene,LB
+37149,3.523892,Xylenes (Mixed Isomers),LB
+37149,0.001684247,"Benzo[g,h,i,]Perylene",LB
+37149,0.3893572,Fluoranthene,LB
+37149,7.369512,Naphthalene,LB
+37149,0.0005351426,Arsenic,LB
+37149,0.05620878,Phenanthrene,LB
+37149,0.006889094,Methane,TON
+37149,0.02036134,PM10 Primary (Filt + Cond),TON
+37149,0.2076948,Propionaldehyde,LB
+37149,0.014772544,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.00808834,Benzo[b]Fluoranthene,LB
+37149,0.006424422,Chrysene,LB
+37157,1.5099902,Naphthalene,LB
+37157,0.0009711014,Sulfate Portion of PM2.5-PRI,TON
+37157,0.19828132,Styrene,LB
+37157,0.9043188,Xylenes (Mixed Isomers),LB
+37157,0.003316136,Benzo[b]Fluoranthene,LB
+37157,0.011122736,Benzo[a]Pyrene,LB
+37155,17493.282,Xylenes (Mixed Isomers),LB
+37153,0.004394278,Benzo[b]Fluoranthene,LB
+37153,0.007108064,Benzo[a]Pyrene,LB
+37153,0.00016415626,"Dibenzo[a,h]Anthracene",LB
+37153,0.009616908,Acenaphthene,LB
+37153,0.002564108,Nitrous Oxide,TON
+37153,0.01394902,PM10 Primary (Filt + Cond),TON
+37147,19.65791,"1,3-Butadiene",LB
+37147,2367.536,Xylenes (Mixed Isomers),LB
+37147,0.230782,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,232.8316,Formaldehyde,LB
+37147,987.4626,"2,2,4-Trimethylpentane",LB
+37147,816.5508,Benzene,LB
+37147,0.0443248,Arsenic,LB
+37147,6.757922,Nitrogen Oxides,TON
+37147,0.06618971,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,19.42816,Volatile Organic Compounds,TON
+37129,0.979251,"2,2,4-Trimethylpentane",LB
+37129,0.10433716,Acenaphthene,LB
+37129,0.2437452,Fluorene,LB
+37129,1.103877,Carbon Monoxide,TON
+37129,914.9569,Carbon Dioxide,TON
+37129,0.09080584,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.1217223,Anthracene,LB
+37129,3.051632,Xylenes (Mixed Isomers),LB
+37129,0.002246276,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.2760578,Fluoranthene,LB
+37141,6.41506,Styrene,LB
+37141,0.09127062,Benzo[k]Fluoranthene,LB
+37141,63.84266,Acetaldehyde,LB
+37141,0.01859447,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.07124192,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.1267198,PM2.5 Primary (Filt + Cond),TON
+37141,10.11045,Volatile Organic Compounds,TON
+37137,0.00977159,Sulfate Portion of PM2.5-PRI,TON
+37137,3.048842,Ethyl Benzene,LB
+37137,0.64116,Fluoranthene,LB
+37137,0.02818512,Manganese,LB
+37133,0.000581683,Chromium (VI),LB
+37133,5.068117,PM25-Primary from certain diesel engines,TON
+37125,0.12006954,Xylenes (Mixed Isomers),LB
+37125,1.0797848e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,1.1109098e-05,Chrysene,LB
+37125,2.480912e-07,"Dibenzo[a,h]Anthracene",LB
+37125,0.04298456,"2,2,4-Trimethylpentane",LB
+37125,1.977533e-07,Sulfate Portion of PM2.5-PRI,TON
+37125,15504.85,Toluene,LB
+37125,3627.428,"2,2,4-Trimethylpentane",LB
+37115,0.10988906,Styrene,LB
+37115,8.193468,Formaldehyde,LB
+37115,0.05181163,PM10 Primary (Filt + Cond),TON
+37115,0.002023186,"Dibenzo[a,h]Anthracene",LB
+37115,164.31598,"2,2,4-Trimethylpentane",LB
+37115,4.016646,Volatile Organic Compounds,TON
+37115,5.865502,Styrene,LB
+37107,1.270852,Acrolein,LB
+37107,0.8249252,Propionaldehyde,LB
+37107,1.3223616,Xylenes (Mixed Isomers),LB
+37107,0.04982554,Acenaphthene,LB
+37103,0.3985098,Ethyl Benzene,LB
+37103,0.01378632,Propionaldehyde,LB
+37103,1.4733046,Xylenes (Mixed Isomers),LB
+37103,0.00018622398,Chrysene,LB
+37103,0.513834,"2,2,4-Trimethylpentane",LB
+37103,0.00019229232,Benz[a]Anthracene,LB
+37103,3.8674e-05,Manganese,LB
+37103,0.2133117,Carbon Monoxide,TON
+37103,5.964235e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.0002716321,PM2.5 Primary (Filt + Cond),TON
+37099,0.2433597,Organic Carbon portion of PM2.5-PRI,TON
+37099,1.981693,PM10 Primary (Filt + Cond),TON
+37099,1.484923,PM2.5 Primary (Filt + Cond),TON
+37099,8.939725,Volatile Organic Compounds,TON
+37099,96.20396,Xylenes (Mixed Isomers),LB
+37099,0.01195687,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,23.2629,Fluoranthene,LB
+37097,10.152168,Benzo[a]Pyrene,LB
+37093,0.007969542,Nickel,LB
+37093,17.900198,Acetaldehyde,LB
+37093,0.005036355,PM25-Primary from certain diesel engines,TON
+37093,0.001382763,Sulfate Portion of PM2.5-PRI,TON
+37093,1.07336,"1,3-Butadiene",LB
+37093,0.08517266,Anthracene,LB
+37093,0.158727,Pyrene,LB
+37093,8.111374e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,24.55628,Ethyl Benzene,LB
+37085,35.42148,Propionaldehyde,LB
+37085,0.0002214492,Chromium (VI),LB
+37085,5.017136,Fluoranthene,LB
+37085,20.1709,"2,2,4-Trimethylpentane",LB
+37085,66.87846,Benzene,LB
+37085,0.2533029,Ammonia,TON
+37085,1.807417,PM2.5 Primary (Filt + Cond),TON
+37085,0.09032467,Sulfur Dioxide,TON
+37079,8.567332,Nitrogen Oxides,TON
+37079,0.08690481,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,5.982628,"1,3-Butadiene",LB
+37079,5.9029e-05,Chromium (VI),LB
+37079,0.1402103,Benzo[a]Pyrene,LB
+37079,1.3302276,Fluorene,LB
+37079,21.1871,Naphthalene,LB
+37079,0.5308237,PM10-Primary from certain diesel engines,TON
+37079,0.4883652,PM25-Primary from certain diesel engines,TON
+37073,0.143251,Acrolein,LB
+37073,0.09615368,Propionaldehyde,LB
+37073,0.0003926632,Benzo[b]Fluoranthene,LB
+37073,1.8204108,Formaldehyde,LB
+37073,5.36801e-05,"Dibenzo[a,h]Anthracene",LB
+37073,0.17089678,Benzene,LB
+37073,0.1991597,Naphthalene,LB
+37087,0.9528108,Nitrogen Oxides,TON
+37087,0.4167411,Volatile Organic Compounds,TON
+37087,6.555842,Acetaldehyde,LB
+37087,0.11464394,Phenanthrene,LB
+37087,85.38134,Toluene,LB
+37087,0.018384006,Anthracene,LB
+37087,51.12002,Xylenes (Mixed Isomers),LB
+37087,5.108068e-06,Chromium (VI),LB
+37087,0.06706846,"Benzo[g,h,i,]Perylene",LB
+37087,0.02519856,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,4760.896,Toluene,LB
+37085,2.147282,Acenaphthylene,LB
+37085,176.68882,Formaldehyde,LB
+37085,0.0229776,Nickel,LB
+37085,0.03415083,Nitrous Oxide,TON
+37071,36.50666,Formaldehyde,LB
+37071,0.0007512592,"Dibenzo[a,h]Anthracene",LB
+37071,0.026974,Benz[a]Anthracene,LB
+37071,126.88666,Benzene,LB
+37071,0.02735819,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,4.74421e-09,Chromium (VI),LB
+37059,5.930326e-07,Nickel,LB
+37059,0.012513548,Acetaldehyde,LB
+37059,5.097431e-05,PM10 Primary (Filt + Cond),TON
+37007,0.007188036,Manganese,LB
+37007,0.006111899,Nitrous Oxide,TON
+37007,0.003213068,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.8451304,Propionaldehyde,LB
+37007,0.006625404,Pyrene,LB
+37001,0.010668122,Manganese,LB
+37001,30.4084,Acetaldehyde,LB
+37001,0.005248302,Fluorene,LB
+37001,0.04318778,PM10 Primary (Filt + Cond),TON
+37001,0.2072132,Volatile Organic Compounds,TON
+37163,3.243062,Ethyl Benzene,LB
+37113,0.000480015,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.000255011,Benzo[b]Fluoranthene,LB
+37113,0.0004739894,Benzo[a]Pyrene,LB
+37113,0.0005799562,Manganese,LB
+37113,0.0002340482,Nickel,LB
+37113,0.000248721,Acenaphthene,LB
+37113,0.0005038062,Fluorene,LB
+37113,0.0003021198,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.0002544119,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.2560222,Propionaldehyde,LB
+37097,7.790078e-05,"Dibenzo[a,h]Anthracene",LB
+37097,1.728339,Carbon Monoxide,TON
+37097,0.003351662,Nitrous Oxide,TON
+37021,51.84668,"2,2,4-Trimethylpentane",LB
+37021,1.500194,Methane,TON
+37021,1.729339,Organic Carbon portion of PM2.5-PRI,TON
+37021,4.35667,PM2.5 Primary (Filt + Cond),TON
+37017,11.992944,Ethyl Benzene,LB
+37017,3.882038,Styrene,LB
+37017,0.013254412,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.05192376,Benzo[b]Fluoranthene,LB
+37017,0.3417506,Chrysene,LB
+37017,0.9157546,Acenaphthene,LB
+37017,37.48988,Naphthalene,LB
+37017,11.32421,Carbon Monoxide,TON
+37017,2.347165,PM10 Primary (Filt + Cond),TON
+37017,1.563703,PM2.5 Primary (Filt + Cond),TON
+37021,0.0007702034,Acenaphthylene,LB
+37021,0.00010037836,Manganese,LB
+37021,1.5796244e-06,Mercury,LB
+37021,0.0003407252,Fluorene,LB
+37021,0.00874785,Naphthalene,LB
+37021,0.0001503699,Nitrous Oxide,TON
+37009,0.0848902,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,1.30546,Volatile Organic Compounds,TON
+37009,8.02794,Ethyl Benzene,LB
+37009,11.743954,Propionaldehyde,LB
+37009,1.5312698,Fluoranthene,LB
+37009,0.496184,PM10-Primary from certain diesel engines,TON
+37009,0.1786655,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.00905804,Nitrous Oxide,TON
+37005,8.308326e-07,Mercury,LB
+37005,0.000448247,Nickel,LB
+37005,0.0112308,PM25-Primary from certain diesel engines,TON
+37005,0.0001064279,Nitrous Oxide,TON
+37005,0.002683707,Organic Carbon portion of PM2.5-PRI,TON
+37003,9930.762,Hexane,LB
+37003,8.640044,"Benzo[g,h,i,]Perylene",LB
+37003,3.086926,Benz[a]Anthracene,LB
+37003,0.477992,Nickel,LB
+37003,4525.134,Acetaldehyde,LB
+37003,2211.16,Carbon Monoxide,TON
+37001,307.737,Toluene,LB
+37001,95.56386,Propionaldehyde,LB
+37001,12.85032,Pyrene,LB
+37001,0.0006117032,Chromium (VI),LB
+37001,0.03484402,Benzo[k]Fluoranthene,LB
+37001,2.82711,Benz[a]Anthracene,LB
+37001,0.0008078732,Mercury,LB
+37001,6.15663,PM25-Primary from certain diesel engines,TON
+37001,3.794258,Elemental Carbon portion of PM2.5-PRI,TON
+37001,11.57445,Volatile Organic Compounds,TON
+37197,6.230996,Hexane,LB
+37197,4.679392e-06,Chromium (VI),LB
+37197,2.256776,Formaldehyde,LB
+37197,0.002365414,Manganese,LB
+37197,0.006915048,Acenaphthene,LB
+37197,0.007144705,Ammonia,TON
+37197,0.002606137,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,5.433768,Xylenes (Mixed Isomers),LB
+37191,0.005369604,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,3.69434,Formaldehyde,LB
+37191,0.003677886,Nickel,LB
+37191,28.01864,Acetaldehyde,LB
+37191,0.002362018,Acenaphthene,LB
+37191,3.416178,Carbon Monoxide,TON
+37191,0.1971191,Volatile Organic Compounds,TON
+37181,0.3186736,Pyrene,LB
+37181,0.0010147638,Benzo[k]Fluoranthene,LB
+37181,0.02481256,Benzo[a]Pyrene,LB
+37181,0.09432232,Acenaphthene,LB
+37181,0.377425,Phenanthrene,LB
+37181,0.4092566,Styrene,LB
+37181,0.01004122,Ammonia,TON
+37197,0.6870378,Ethyl Benzene,LB
+37197,0.18206352,Pyrene,LB
+37197,8.375622e-06,Chromium (VI),LB
+37197,0.02372592,Chrysene,LB
+37197,8.06715e-06,Mercury,LB
+37197,0.004188377,Sulfate Portion of PM2.5-PRI,TON
+37185,1.6402012,Ethyl Benzene,LB
+37185,2.601054,Propionaldehyde,LB
+37185,0.015816374,Chrysene,LB
+37185,0.00016675064,"Dibenzo[a,h]Anthracene",LB
+37185,0.00589226,Manganese,LB
+37179,0.000294534,Anthracene,LB
+37179,2.647432,Propionaldehyde,LB
+37179,2.035658e-05,"Benzo[g,h,i,]Perylene",LB
+37179,0.0003783024,Acenaphthene,LB
+37177,0.0002395506,"Benzo[g,h,i,]Perylene",LB
+37177,0.0257347,Acenaphthylene,LB
+37177,57.85073,Carbon Dioxide,TON
+37177,0.005478046,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.005693416,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.01943321,PM10 Primary (Filt + Cond),TON
+37177,0.06642344,Styrene,LB
+37173,6.013456e-07,"Dibenzo[a,h]Anthracene",LB
+37173,1.58545e-05,Benz[a]Anthracene,LB
+37173,0.2799568,Carbon Dioxide,TON
+37027,4.941201,Sulfur Dioxide,TON
+37027,7.105924,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,1.3574574,Nickel,LB
+37027,14859.702,Ethyl Benzene,LB
+37027,7.168896,Benzo[a]Pyrene,LB
+37055,2.308164,PM10 Primary (Filt + Cond),TON
+37055,0.04374137,Sulfur Dioxide,TON
+37055,346.2466,Formaldehyde,LB
+37055,0.0466656,Nickel,LB
+37039,56.86956,Styrene,LB
+37039,0.0277994,Mercury,LB
+37039,3.495888,Ammonia,TON
+37175,6.852272,Ethyl Benzene,LB
+37175,5.24744,Hexane,LB
+37175,0.62184,Acenaphthene,LB
+37175,0.2028291,Organic Carbon portion of PM2.5-PRI,TON
+37169,17.06026,"2,2,4-Trimethylpentane",LB
+37169,4.175876,Styrene,LB
+37169,0.9883738,Anthracene,LB
+37169,4.3453,Phenanthrene,LB
+37169,0.1329444,Sulfate Portion of PM2.5-PRI,TON
+37161,0.9724688,Hexane,LB
+37161,0.00883199,Benzo[b]Fluoranthene,LB
+37161,16.351192,Acetaldehyde,LB
+37161,0.1144303,Acenaphthene,LB
+37161,0.04222682,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.05591548,"Benzo[g,h,i,]Perylene",LB
+37159,1.2512518,Manganese,LB
+37159,0.0008564278,Mercury,LB
+37159,251.3588,Naphthalene,LB
+37159,4.014377,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.6575838,Sulfate Portion of PM2.5-PRI,TON
+37155,6.880646,Anthracene,LB
+37155,0.0380742,Benzo[k]Fluoranthene,LB
+37155,7.370532,Acenaphthene,LB
+37155,1.596218,Ammonia,TON
+37149,6.870978,Benzene,LB
+37149,0.00341241,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.02007935,PM2.5 Primary (Filt + Cond),TON
+37149,0.02106902,Chrysene,LB
+37163,0.08737382,Anthracene,LB
+37163,0.05141394,Benzo[a]Pyrene,LB
+37163,0.0011824652,"Dibenzo[a,h]Anthracene",LB
+37163,0.007600186,Arsenic,LB
+37163,0.2056382,Fluorene,LB
+37163,0.08738458,Methane,TON
+37163,44.80173,Carbon Monoxide,TON
+37163,0.02833025,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.05248258,Benz[a]Anthracene,LB
+37157,0.013792668,Manganese,LB
+37157,2.567878,Naphthalene,LB
+37157,0.1033345,PM25-Primary from certain diesel engines,TON
+37157,0.01313461,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.697587,"1,3-Butadiene",LB
+37157,1.87814,Toluene,LB
+37157,0.0307597,Chrysene,LB
+37155,53.17736,Acenaphthylene,LB
+37155,6.838949,Methane,TON
+37155,2.946254,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,252.5722,Volatile Organic Compounds,TON
+37137,3.17693e-05,Fluoranthene,LB
+37137,0.1143031,Carbon Dioxide,TON
+37137,2.397401e-06,Sulfur Dioxide,TON
+37121,91.17316,Acetaldehyde,LB
+37121,1.4056836,Phenanthrene,LB
+37121,2198.576,Carbon Dioxide,TON
+37105,32.34444,Toluene,LB
+37105,2.154072,Fluoranthene,LB
+37105,1.6507748,Acenaphthylene,LB
+37105,1.562566,PM10-Primary from certain diesel engines,TON
+37105,1.543112,PM2.5 Primary (Filt + Cond),TON
+37101,0.0005440332,"Benzo[g,h,i,]Perylene",LB
+37101,2.747476e-05,Manganese,LB
+37101,0.0009191576,Fluorene,LB
+37085,20327.06,Benzene,LB
+37085,6962.856,Acetaldehyde,LB
+37085,0.02230786,Nitrate portion of PM2.5-PRI,TON
+37085,23.72784,PM10 Primary (Filt + Cond),TON
+37085,8.690549,PM2.5 Primary (Filt + Cond),TON
+37079,5125.782,Xylenes (Mixed Isomers),LB
+37079,0.6690654,Benz[a]Anthracene,LB
+37079,0.3281144,Nickel,LB
+37079,2.708351,PM10 Primary (Filt + Cond),TON
+37077,0.002438952,Benzo[b]Fluoranthene,LB
+37077,0.01595394,Chrysene,LB
+37067,86.33732,"1,3-Butadiene",LB
+37067,1.4035654,Benzo[a]Pyrene,LB
+37067,0.05899556,"Dibenzo[a,h]Anthracene",LB
+37067,0.002013594,Mercury,LB
+37067,18.296382,Fluorene,LB
+37067,12.4879,PM25-Primary from certain diesel engines,TON
+37057,0.14272528,Ethyl Benzene,LB
+37057,6.235438e-05,"Benzo[g,h,i,]Perylene",LB
+37057,0.009033716,Manganese,LB
+37057,0.0002539969,Sulfate Portion of PM2.5-PRI,TON
+37051,1.3960272,Propionaldehyde,LB
+37051,0.01813952,Benzo[a]Pyrene,LB
+37051,0.06064466,Benz[a]Anthracene,LB
+37051,0.0003143081,Nitrate portion of PM2.5-PRI,TON
+37051,0.3744694,Styrene,LB
+37051,0.6671376,Hexane,LB
+37049,0.124145,PM10-Primary from certain diesel engines,TON
+37049,0.001607579,Nitrous Oxide,TON
+37049,0.06490386,Chrysene,LB
+37049,1.2116878,"2,2,4-Trimethylpentane",LB
+37049,0.10982796,Benz[a]Anthracene,LB
+37047,0.002926728,"Benzo[g,h,i,]Perylene",LB
+37047,0.00374699,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.09333384,Chrysene,LB
+37047,0.18546402,Acenaphthene,LB
+37043,0.8019068,Propionaldehyde,LB
+37043,4.666922e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.00018314634,Benzo[b]Fluoranthene,LB
+37043,0.003685204,Chrysene,LB
+37043,2.557872e-05,"Dibenzo[a,h]Anthracene",LB
+37043,0.04762464,Acenaphthene,LB
+37043,0.1338992,Phenanthrene,LB
+37143,1.1501624,Ethyl Benzene,LB
+37143,4.541566,Toluene,LB
+37143,0.009252328,Acenaphthylene,LB
+37143,0.01670611,Methane,TON
+37107,0.006966952,Sulfur Dioxide,TON
+37107,0.2750268,Propionaldehyde,LB
+37107,0.0014504644,Benzo[b]Fluoranthene,LB
+37107,0.002022104,Fluoranthene,LB
+37107,0.002750446,Benzo[a]Pyrene,LB
+37107,0.00015705972,Mercury,LB
+37107,0.002311134,Fluorene,LB
+37163,7025.386,Benzene,LB
+37163,2.03146,Manganese,LB
+37163,6.682404,Acenaphthene,LB
+37163,0.7739854,Elemental Carbon portion of PM2.5-PRI,TON
+37163,1.948651,Organic Carbon portion of PM2.5-PRI,TON
+37163,156.07348,Styrene,LB
+37163,29013.04,Toluene,LB
+37163,5.749704,Anthracene,LB
+37163,3.357812,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,30.46766,Acenaphthylene,LB
+37151,11.559734,Anthracene,LB
+37151,22.70726,Pyrene,LB
+37151,13343.836,"2,2,4-Trimethylpentane",LB
+37151,4.725674,Benz[a]Anthracene,LB
+37151,2.979362,Arsenic,LB
+37151,19.9918,Ammonia,TON
+37151,23.1772,PM10 Primary (Filt + Cond),TON
+37151,2.699655,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.006053269,Methane,TON
+37147,4.304858,Carbon Monoxide,TON
+37147,1.700448e-05,Nitrate portion of PM2.5-PRI,TON
+37147,6.812982e-06,Chromium (VI),LB
+37143,1.5751258,Styrene,LB
+37143,10.25672,Xylenes (Mixed Isomers),LB
+37143,0.006238272,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,3.72542e-05,Mercury,LB
+37143,0.3654742,Acenaphthene,LB
+37143,0.08220615,Methane,TON
+37143,3.090539,Carbon Monoxide,TON
+37143,0.2776443,PM25-Primary from certain diesel engines,TON
+37143,0.1081469,Elemental Carbon portion of PM2.5-PRI,TON
+37143,4.904177,Nitrogen Oxides,TON
+37143,0.3145362,Toluene,LB
+37143,0.001695745,Ammonia,TON
+37143,0.002161085,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.0009667282,Sulfur Dioxide,TON
+37143,0.002023158,Methane,TON
+37143,0.02341723,Nitrogen Oxides,TON
+37137,1.6957608,Toluene,LB
+37137,0.11000566,Ethyl Benzene,LB
+37137,0.4031642,Xylenes (Mixed Isomers),LB
+37137,0.007120805,Nitrogen Oxides,TON
+37137,0.0003332648,PM10 Primary (Filt + Cond),TON
+37137,9.310641e-05,PM2.5 Primary (Filt + Cond),TON
+37129,296.1479,Carbon Dioxide,TON
+37129,0.006203565,Sulfur Dioxide,TON
+37117,3.680718,Toluene,LB
+37117,0.6835492,Phenanthrene,LB
+37117,5.283979,Nitrogen Oxides,TON
+37117,0.1963164,PM10 Primary (Filt + Cond),TON
+37117,0.3841446,Volatile Organic Compounds,TON
+37121,0.005243368,"Benzo[g,h,i,]Perylene",LB
+37121,93.42763,Carbon Dioxide,TON
+37113,0.2797816,Acrolein,LB
+37113,0.18672742,Propionaldehyde,LB
+37113,0.09046484,"2,2,4-Trimethylpentane",LB
+37113,0.02489144,Fluorene,LB
+37113,0.02041832,Volatile Organic Compounds,TON
+37193,0.13141798,Benzo[b]Fluoranthene,LB
+37193,58.81036,Benzene,LB
+37193,2.150368,Anthracene,LB
+37193,32.47664,Propionaldehyde,LB
+37193,1.487315,PM25-Primary from certain diesel engines,TON
+37193,0.007851922,Nitrate portion of PM2.5-PRI,TON
+37197,0.00017652596,Benzo[k]Fluoranthene,LB
+37197,0.0014032438,Acenaphthylene,LB
+37197,1.2464442e-05,Nickel,LB
+37197,5.103716e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.002585884,Benzo[k]Fluoranthene,LB
+37189,1.8026094e-06,Chromium (VI),LB
+37189,0.00889827,"Benzo[g,h,i,]Perylene",LB
+37187,0.01128142,Methane,TON
+37187,0.001722091,Sulfur Dioxide,TON
+37187,1.0114798,Ethyl Benzene,LB
+37187,0.7650932,Hexane,LB
+37187,0.3023306,Pyrene,LB
+37187,0.229519,Fluoranthene,LB
+37187,0.168709,Acenaphthylene,LB
+37181,1.4621136e-05,"Dibenzo[a,h]Anthracene",LB
+37181,3.281174,Acetaldehyde,LB
+37181,0.000567088,Fluorene,LB
+37105,0.00017655632,Fluorene,LB
+37105,0.004535528,Naphthalene,LB
+37105,6.127585e-05,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.0001267525,PM2.5 Primary (Filt + Cond),TON
+37105,3.888325e-06,Sulfate Portion of PM2.5-PRI,TON
+37105,0.0015018072,Propionaldehyde,LB
+37093,89.35462,Acrolein,LB
+37093,0.0439754,Mercury,LB
+37093,1521.8142,Acetaldehyde,LB
+37093,62373.67,Carbon Dioxide,TON
+37093,1.969157,Nitrous Oxide,TON
+37093,88.8497,Nitrogen Oxides,TON
+37093,0.0530024,Sulfate Portion of PM2.5-PRI,TON
+37083,1.3677272,Hexane,LB
+37083,0.000681326,Benzo[b]Fluoranthene,LB
+37083,0.0010423568,Benzo[a]Pyrene,LB
+37083,0.00010011378,Manganese,LB
+37083,0.0002415235,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.14552482,"Dibenzo[a,h]Anthracene",LB
+37077,2.196198,Manganese,LB
+37077,1.1655118,Nickel,LB
+37077,1.412955,Elemental Carbon portion of PM2.5-PRI,TON
+37077,381.7382,Styrene,LB
+37077,23.38062,Fluoranthene,LB
+37077,6.853396,PM2.5 Primary (Filt + Cond),TON
+37057,13.786264,Anthracene,LB
+37057,15.948906,Acenaphthene,LB
+37057,5.345941,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.351874,Acrolein,LB
+37051,0.309652,Propionaldehyde,LB
+37051,36.29632,Xylenes (Mixed Isomers),LB
+37051,1.6968784e-05,Chromium (VI),LB
+37051,0.02757478,Ammonia,TON
+37177,0.7386222,Xylenes (Mixed Isomers),LB
+37177,0.320745,"2,2,4-Trimethylpentane",LB
+37177,1.325223,Benzene,LB
+37177,2.039324e-06,Mercury,LB
+37177,0.09209664,Fluorene,LB
+37177,0.5549054,Carbon Monoxide,TON
+37177,129.6629,Carbon Dioxide,TON
+37177,0.003325275,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.08356201,Volatile Organic Compounds,TON
+37173,0.02081258,Pyrene,LB
+37173,5.978856e-05,Benzo[k]Fluoranthene,LB
+37173,9.492204e-05,Arsenic,LB
+37173,0.005626669,PM10-Primary from certain diesel engines,TON
+37173,0.009165742,"Benzo[g,h,i,]Perylene",LB
+37173,310.3146,Acetaldehyde,LB
+37173,2.417968,Acenaphthene,LB
+37173,78.49462,Naphthalene,LB
+37173,0.6134538,PM25-Primary from certain diesel engines,TON
+37173,15.12174,Nitrogen Oxides,TON
+37167,0.5316648,Methane,TON
+37167,2.268808,PM10-Primary from certain diesel engines,TON
+37167,0.3782666,Ammonia,TON
+37167,0.4410275,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.2097274,Sulfate Portion of PM2.5-PRI,TON
+37167,47.47788,Toluene,LB
+37167,540.5294,Formaldehyde,LB
+37167,0.8818412,Benz[a]Anthracene,LB
+37199,0.0007846454,"Dibenzo[a,h]Anthracene",LB
+37199,143.49922,"2,2,4-Trimethylpentane",LB
+37199,0.02461374,Benz[a]Anthracene,LB
+37199,0.00535573,Manganese,LB
+37199,4.28863,Naphthalene,LB
+37199,0.004955808,Nitrous Oxide,TON
+37199,3.921776,"1,3-Butadiene",LB
+37199,1.5965568,Acrolein,LB
+37199,3.23948e-05,Chromium (VI),LB
+37199,0.0246844,Benzo[b]Fluoranthene,LB
+37199,30.60742,Formaldehyde,LB
+37197,0.398212,Anthracene,LB
+37197,11.081428,Benzene,LB
+37197,0.01470499,Ammonia,TON
+37197,5.494452,Nitrogen Oxides,TON
+37197,0.1027758,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.03892282,Ethyl Benzene,LB
+37193,0.2653898,Toluene,LB
+37193,0.0004905948,Fluoranthene,LB
+37193,0.2564852,Benzene,LB
+37193,112.8944,Carbon Dioxide,TON
+37185,0.3067774,Acrolein,LB
+37185,0.2571168,Toluene,LB
+37185,0.09711332,Hexane,LB
+37185,1.07095e-06,Chromium (VI),LB
+37185,0.02158712,Acenaphthylene,LB
+37185,0.3655884,Benzene,LB
+37185,0.0008204704,Manganese,LB
+37185,0.0008848302,Ammonia,TON
+37185,0.2194703,Nitrogen Oxides,TON
+37185,18.248142,Acrolein,LB
+37185,7.90467e-05,Chromium (VI),LB
+37185,0.03972054,Nickel,LB
+37185,101.38862,Acetaldehyde,LB
+37185,0.2830294,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.6521764,PM2.5 Primary (Filt + Cond),TON
+37185,0.03211368,Hexane,LB
+37185,1.8069884e-05,Chrysene,LB
+37185,0.013330594,Formaldehyde,LB
+37185,0.0007213531,Volatile Organic Compounds,TON
+37195,1961.8146,"1,3-Butadiene",LB
+37195,12.421228,Anthracene,LB
+37195,0.012314808,Chromium (VI),LB
+37195,16.409276,"Benzo[g,h,i,]Perylene",LB
+37195,66.0272,Acenaphthylene,LB
+37195,2.360378,Arsenic,LB
+37189,2.2742,Ethyl Benzene,LB
+37189,4.886956,Acrolein,LB
+37189,0.246711,Pyrene,LB
+37189,0.205132,Fluoranthene,LB
+37189,0.0019822526,Benzo[a]Pyrene,LB
+37189,5.086385,Carbon Monoxide,TON
+37189,0.3339624,Volatile Organic Compounds,TON
+37187,1.7900834,Xylenes (Mixed Isomers),LB
+37187,0.04037252,Volatile Organic Compounds,TON
+37187,1.385212,Carbon Monoxide,TON
+37187,0.0003626657,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.003716541,PM10 Primary (Filt + Cond),TON
+37187,0.07504562,Styrene,LB
+37187,0.06465786,Propionaldehyde,LB
+37187,6.3341e-07,Chromium (VI),LB
+37187,0.00556439,"Benzo[g,h,i,]Perylene",LB
+37187,0.0011697686,Chrysene,LB
+37187,0.0001214036,Arsenic,LB
+37183,35.85374,Hexane,LB
+37183,83.56866,Xylenes (Mixed Isomers),LB
+37183,0.0212734,Benzo[b]Fluoranthene,LB
+37183,0.0004251406,Mercury,LB
+37183,0.008128088,Arsenic,LB
+37183,2.078546,Naphthalene,LB
+37183,0.0001234231,Nitrate portion of PM2.5-PRI,TON
+37183,2.606421,Nitrogen Oxides,TON
+37183,0.04840483,PM2.5 Primary (Filt + Cond),TON
+37183,0.001470583,Sulfate Portion of PM2.5-PRI,TON
+37181,1.7446506e-05,Chromium (VI),LB
+37181,0.00439761,"Benzo[g,h,i,]Perylene",LB
+37181,0.5344714,Acenaphthylene,LB
+37181,0.002928434,"Dibenzo[a,h]Anthracene",LB
+37181,9.000126,Benzene,LB
+37181,0.019572642,Manganese,LB
+37181,599.611,Carbon Dioxide,TON
+37181,4.217096,Nitrogen Oxides,TON
+37181,4.92066,Toluene,LB
+37181,0.0013769108,Benzo[k]Fluoranthene,LB
+37181,9.40837,Naphthalene,LB
+37181,0.02246645,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,34.78448,Propionaldehyde,LB
+37181,38.53448,Xylenes (Mixed Isomers),LB
+37181,0.00433181,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,3.650546,Acenaphthylene,LB
+37181,0.08744902,Nickel,LB
+37181,70.26798,Naphthalene,LB
+37181,37.96807,Carbon Monoxide,TON
+37181,0.0320589,Sulfur Dioxide,TON
+37185,0.004678343,Sulfur Dioxide,TON
+37185,0.002143434,Sulfate Portion of PM2.5-PRI,TON
+37185,3.130296,Toluene,LB
+37185,0.0008052098,"Dibenzo[a,h]Anthracene",LB
+37185,1.254238,"2,2,4-Trimethylpentane",LB
+37185,0.006709733,Methane,TON
+37185,531.2091,Carbon Dioxide,TON
+37195,0.3909944,Benz[a]Anthracene,LB
+37195,13.78208,Acrolein,LB
+37195,0.03896476,Manganese,LB
+37195,2.909672e-05,Mercury,LB
+37195,0.5563052,Acenaphthene,LB
+37187,0.016201274,Propionaldehyde,LB
+37187,5.855352e-05,Chrysene,LB
+37187,0.0001438843,Benzo[a]Pyrene,LB
+37187,0.072215,"2,2,4-Trimethylpentane",LB
+37187,0.0001938975,PM2.5 Primary (Filt + Cond),TON
+37187,0.0280919,Styrene,LB
+37187,0.000396316,Benzo[b]Fluoranthene,LB
+37187,0.0025972,Chrysene,LB
+37187,0.0002847924,Nickel,LB
+37067,54.429,Pyrene,LB
+37067,55.28748,"Benzo[g,h,i,]Perylene",LB
+37067,20.77242,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,9234.038,Formaldehyde,LB
+37067,12.464446,Benz[a]Anthracene,LB
+37067,64.4447,Fluorene,LB
+37067,12.57433,Organic Carbon portion of PM2.5-PRI,TON
+37067,9.212189,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.7716057,Sulfate Portion of PM2.5-PRI,TON
+37073,6.15724e-05,PM2.5 Primary (Filt + Cond),TON
+37073,0.002104194,Acrolein,LB
+37073,0.002129,Propionaldehyde,LB
+37073,0.00018716502,Pyrene,LB
+37073,5.77747e-05,Benzo[a]Pyrene,LB
+37073,0.0780059,"2,2,4-Trimethylpentane",LB
+37073,0.11632362,Benzene,LB
+37073,1.5371256e-05,Manganese,LB
+37073,7.77001e-05,Methane,TON
+37073,5.88037e-05,Nitrous Oxide,TON
+37021,4.55046,"1,3-Butadiene",LB
+37021,1.016369e-05,Chromium (VI),LB
+37021,0.07299476,"Benzo[g,h,i,]Perylene",LB
+37021,0.05682758,Fluoranthene,LB
+37021,0.02725344,Benzo[a]Pyrene,LB
+37021,0.0019480562,Arsenic,LB
+37021,0.0009091512,Sulfate Portion of PM2.5-PRI,TON
+37041,0.003295994,Manganese,LB
+37041,0.01684867,Methane,TON
+37041,0.01719996,Nitrous Oxide,TON
+37041,0.01974933,PM10 Primary (Filt + Cond),TON
+37041,12.330032,Ethyl Benzene,LB
+37041,0.4286872,Styrene,LB
+37041,0.00016275538,"Dibenzo[a,h]Anthracene",LB
+37059,0.0003113708,Benzo[k]Fluoranthene,LB
+37059,2.08362e-06,Nitrate portion of PM2.5-PRI,TON
+37059,0.000374296,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.002829466,PM10 Primary (Filt + Cond),TON
+37081,23.6997,"1,3-Butadiene",LB
+37081,40.036,Propionaldehyde,LB
+37081,0.19484772,Manganese,LB
+37081,0.17456308,Nickel,LB
+37139,0.00016361204,Arsenic,LB
+37139,2.293902,Acetaldehyde,LB
+37139,38.93666,Carbon Dioxide,TON
+37139,0.0008130462,Ammonia,TON
+37139,0.05168612,Pyrene,LB
+37139,0.0010629626,Benzo[b]Fluoranthene,LB
+37139,0.01203523,Benz[a]Anthracene,LB
+37163,29.98242,Naphthalene,LB
+37163,5.863649,Nitrogen Oxides,TON
+37163,18.488582,Toluene,LB
+37163,14.514996,Propionaldehyde,LB
+37163,1.4821634,Pyrene,LB
+37163,0.002069752,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,7.568514e-07,Nickel,LB
+37099,1.1605958e-06,Arsenic,LB
+37099,3.80939e-05,Nitrous Oxide,TON
+37099,0.0003022856,Acenaphthylene,LB
+37099,2.008126e-05,Chrysene,LB
+37099,5.326136e-05,PM10 Primary (Filt + Cond),TON
+37197,41.60842,Toluene,LB
+37197,0.00018335318,Chromium (VI),LB
+37197,570.5422,Formaldehyde,LB
+37197,0.01771202,Nitrous Oxide,TON
+37189,29.01824,"2,2,4-Trimethylpentane",LB
+37187,3.695566,Styrene,LB
+37187,504.1092,Toluene,LB
+37187,0.00010304402,Chromium (VI),LB
+37187,0.7110932,Acenaphthylene,LB
+37187,0.04097994,Chrysene,LB
+37187,0.0011976694,"Dibenzo[a,h]Anthracene",LB
+37187,0.8473504,Phenanthrene,LB
+37187,0.05875676,PM2.5 Primary (Filt + Cond),TON
+37187,0.01537346,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,1982.0098,Ethyl Benzene,LB
+37187,0.8745862,Benz[a]Anthracene,LB
+37187,176.28622,Naphthalene,LB
+37187,0.02921189,Sulfate Portion of PM2.5-PRI,TON
+37197,7.714872e-06,Anthracene,LB
+37197,9.378618e-10,Chromium (VI),LB
+37197,4.044476e-05,Acenaphthylene,LB
+37197,1.7924686e-05,Fluorene,LB
+37197,0.06286602,Carbon Dioxide,TON
+37197,4.784717e-06,Nitrous Oxide,TON
+37197,1.318823e-06,Sulfur Dioxide,TON
+37193,0.0001458682,Nitrate portion of PM2.5-PRI,TON
+37193,0.15145644,Styrene,LB
+37193,0.0003408184,Benzo[k]Fluoranthene,LB
+37193,1.6430252e-06,Mercury,LB
+37185,0.296968,Ethyl Benzene,LB
+37185,0.04772254,Acenaphthylene,LB
+37185,0.0002326644,"Dibenzo[a,h]Anthracene",LB
+37185,0.003545392,Manganese,LB
+37185,0.004170303,Methane,TON
+37185,9.853466e-05,Nitrate portion of PM2.5-PRI,TON
+37185,0.002247531,Sulfur Dioxide,TON
+37067,0.03625092,Benzo[b]Fluoranthene,LB
+37067,5.656094,Fluorene,LB
+37067,54.93359,Carbon Monoxide,TON
+37067,1.131607,PM25-Primary from certain diesel engines,TON
+37067,5.894324,Volatile Organic Compounds,TON
+37135,26.06596,Propionaldehyde,LB
+37135,2.418948,Pyrene,LB
+37135,0.009499252,Benzo[b]Fluoranthene,LB
+37135,1.9907152,Fluoranthene,LB
+37135,2.59046,Acenaphthylene,LB
+37135,15.403512,"2,2,4-Trimethylpentane",LB
+37135,0.425924,PM10 Primary (Filt + Cond),TON
+37135,0.1506165,PM2.5 Primary (Filt + Cond),TON
+37111,9.492342,Acrolein,LB
+37111,0.0009671178,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.003796432,Benzo[b]Fluoranthene,LB
+37111,1.067245,Phenanthrene,LB
+37111,0.6785548,Fluorene,LB
+37111,0.04797976,Methane,TON
+37111,0.126261,PM25-Primary from certain diesel engines,TON
+37111,0.0002518687,Nitrate portion of PM2.5-PRI,TON
+37111,0.004527408,Sulfate Portion of PM2.5-PRI,TON
+37005,5.437036,Naphthalene,LB
+37005,0.03496639,PM25-Primary from certain diesel engines,TON
+37005,7.553518e-05,Nitrate portion of PM2.5-PRI,TON
+37005,0.00528393,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.2822414,Volatile Organic Compounds,TON
+37005,1.6641798,Ethyl Benzene,LB
+37005,0.6809894,Styrene,LB
+37007,0.000710446,Arsenic,LB
+37007,0.01191947,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.0014171656,Acenaphthene,LB
+37089,0.17282556,"1,3-Butadiene",LB
+37177,0.00010416,"Dibenzo[a,h]Anthracene",LB
+37177,2.44695,Acetaldehyde,LB
+37177,0.0009306063,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.005619576,Nitrous Oxide,TON
+37177,0.006276619,Ammonia,TON
+37177,0.002561101,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.01336517,PM10 Primary (Filt + Cond),TON
+37177,0.00169477,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,5.023298,Ethyl Benzene,LB
+37177,0.14687216,Acrolein,LB
+37177,0.006627556,Anthracene,LB
+37177,18.588402,Xylenes (Mixed Isomers),LB
+37177,0.004538016,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,4506.93,Formaldehyde,LB
+37197,1.373047,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,9625.788,"2,2,4-Trimethylpentane",LB
+37197,4742.496,Acetaldehyde,LB
+37197,1931.8578,"1,3-Butadiene",LB
+37197,9921.092,Hexane,LB
+37189,1.3646116,Hexane,LB
+37189,0.03817188,Propionaldehyde,LB
+37189,1.103732,"2,2,4-Trimethylpentane",LB
+37189,8.148156e-05,Nickel,LB
+37189,0.108687,Naphthalene,LB
+37189,0.0008887066,Nitrous Oxide,TON
+37189,0.0004948472,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,8.375868,"1,3-Butadiene",LB
+37181,15.247228,Toluene,LB
+37181,2.761848,Pyrene,LB
+37181,14.4781,Xylenes (Mixed Isomers),LB
+37181,0.008479686,Benzo[k]Fluoranthene,LB
+37181,0.675879,Benz[a]Anthracene,LB
+37181,4.728184e-05,Mercury,LB
+37181,107.8962,Acetaldehyde,LB
+37181,1.8773694,Fluorene,LB
+37181,0.05656091,Methane,TON
+37181,1.170918,PM25-Primary from certain diesel engines,TON
+37181,0.7593177,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.0527872,Ammonia,TON
+37181,26.02957,Nitrogen Oxides,TON
+37179,0.4163058,PM10 Primary (Filt + Cond),TON
+37179,0.005645556,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.00304889,Benzo[k]Fluoranthene,LB
+37179,0.04475886,Manganese,LB
+37173,9.167674e-05,Anthracene,LB
+37173,0.13102648,Xylenes (Mixed Isomers),LB
+37173,0.0003188382,Acenaphthylene,LB
+37173,0.0009926934,Manganese,LB
+37173,0.3150769,Methane,TON
+37173,0.4593847,Carbon Monoxide,TON
+37173,0.006344039,Nitrous Oxide,TON
+37173,0.00161474,Ammonia,TON
+37173,0.001388438,Organic Carbon portion of PM2.5-PRI,TON
+37193,2.196162,Acrolein,LB
+37193,0.0984958,Anthracene,LB
+37193,0.0463503,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.03376518,Benzo[k]Fluoranthene,LB
+37185,1.4362328,Fluoranthene,LB
+37185,0.6991444,Anthracene,LB
+37185,2.490286,Phenanthrene,LB
+37185,6.519986,Ethyl Benzene,LB
+37191,1.2450706,Acenaphthylene,LB
+37191,0.02460894,Nickel,LB
+37191,0.740663,Acenaphthene,LB
+37191,8.462641,Carbon Monoxide,TON
+37191,1.324313,Volatile Organic Compounds,TON
+37189,0.374719,Benzo[a]Pyrene,LB
+37189,572.923,Ethyl Benzene,LB
+37189,715.8592,Hexane,LB
+37189,0.3733226,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,2.49728,"1,3-Butadiene",LB
+37187,4.336536,Xylenes (Mixed Isomers),LB
+37187,0.05627934,Benzo[a]Pyrene,LB
+37187,0.5468262,Fluorene,LB
+37187,0.4387439,Volatile Organic Compounds,TON
+37183,68.31178,Toluene,LB
+37183,72.82372,Xylenes (Mixed Isomers),LB
+37183,4.279522,Fluoranthene,LB
+37183,0.5803254,Chrysene,LB
+37183,8.15685,Phenanthrene,LB
+37183,1.670219,PM10-Primary from certain diesel engines,TON
+37183,291.3066,Styrene,LB
+37183,21.20772,Pyrene,LB
+37183,25.62972,Fluorene,LB
+37183,16.39204,Ammonia,TON
+37183,8.149918,PM2.5 Primary (Filt + Cond),TON
+37183,0.218106,Sulfate Portion of PM2.5-PRI,TON
+37179,0.4519454,Volatile Organic Compounds,TON
+37173,0.04941362,Styrene,LB
+37173,0.003684882,Pyrene,LB
+37173,0.0010538414,Benzo[k]Fluoranthene,LB
+37173,4.028152e-05,"Dibenzo[a,h]Anthracene",LB
+37173,51.66488,Carbon Dioxide,TON
+37095,0.4694406,Ethyl Benzene,LB
+37095,0.4471122,"1,3-Butadiene",LB
+37095,0.995187,Xylenes (Mixed Isomers),LB
+37095,0.3591366,"2,2,4-Trimethylpentane",LB
+37095,1.3215216,Benzene,LB
+37095,0.002409144,Manganese,LB
+37095,0.1657952,Phenanthrene,LB
+37095,0.5082815,Nitrogen Oxides,TON
+37095,0.03305811,PM2.5 Primary (Filt + Cond),TON
+37089,5.02464,"1,3-Butadiene",LB
+37089,3.900738,Hexane,LB
+37089,0.4815842,Anthracene,LB
+37089,8.249416,Propionaldehyde,LB
+37089,0.00469468,Nitrous Oxide,TON
+37089,0.02764575,Ammonia,TON
+37089,0.08828584,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.5183456,Anthracene,LB
+37079,8.04327,Xylenes (Mixed Isomers),LB
+37079,0.004404478,"Dibenzo[a,h]Anthracene",LB
+37079,0.03131569,Methane,TON
+37079,0.6431868,PM25-Primary from certain diesel engines,TON
+37079,14.99473,Nitrogen Oxides,TON
+37079,0.6607435,PM2.5 Primary (Filt + Cond),TON
+37079,0.8180254,Volatile Organic Compounds,TON
+37073,2.115564,Toluene,LB
+37073,4.31424e-06,Mercury,LB
+37059,0.14893176,Styrene,LB
+37059,0.719987,"1,3-Butadiene",LB
+37059,0.006279526,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.03532874,Phenanthrene,LB
+37059,0.001099934,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.003650842,Nitrous Oxide,TON
+37059,0.005813388,Ammonia,TON
+37059,0.00216426,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.1178994,Volatile Organic Compounds,TON
+37049,2.830552,Styrene,LB
+37049,0.5425292,Anthracene,LB
+37049,15.988648,Xylenes (Mixed Isomers),LB
+37049,5.917396e-05,Chromium (VI),LB
+37049,0.0016401874,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.006436572,Benzo[b]Fluoranthene,LB
+37049,0.8875018,Fluoranthene,LB
+37049,0.00515095,Nitrous Oxide,TON
+37037,185.33134,Benzene,LB
+37037,0.08984106,Arsenic,LB
+37037,39.17058,Nitrogen Oxides,TON
+37037,127.36372,Xylenes (Mixed Isomers),LB
+37033,2439.88,Xylenes (Mixed Isomers),LB
+37025,57.8942,"1,3-Butadiene",LB
+37025,0.0007611238,Chromium (VI),LB
+37025,82464.29,Carbon Dioxide,TON
+37025,7.920971,PM25-Primary from certain diesel engines,TON
+37025,1.233829,Ammonia,TON
+37025,216.2835,Nitrogen Oxides,TON
+37025,8.851494,PM2.5 Primary (Filt + Cond),TON
+37025,3.260316,Acenaphthylene,LB
+37025,0.2574094,Chrysene,LB
+37025,0.1127466,Manganese,LB
+37025,3.441748,Fluorene,LB
+37025,0.7074399,PM10-Primary from certain diesel engines,TON
+37013,0.19012808,Ethyl Benzene,LB
+37013,0.4027278,Xylenes (Mixed Isomers),LB
+37013,0.0002504882,"Benzo[g,h,i,]Perylene",LB
+37013,0.0003098002,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.00016653088,Benzo[k]Fluoranthene,LB
+37013,0.06879858,Phenanthrene,LB
+37013,0.002416606,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.03269284,Volatile Organic Compounds,TON
+37015,0.0010840764,Styrene,LB
+37015,1.423947e-05,Benz[a]Anthracene,LB
+37015,2.807902e-06,Manganese,LB
+37015,5.88972e-07,Nickel,LB
+37015,0.015261242,Acetaldehyde,LB
+37009,131.43382,Benzene,LB
+37005,0.3625484,Styrene,LB
+37005,0.8135422,"1,3-Butadiene",LB
+37005,1.466437,Toluene,LB
+37005,0.0757659,Anthracene,LB
+37005,0.002343872,Benzo[b]Fluoranthene,LB
+37005,23.57472,Formaldehyde,LB
+37005,0.5697896,"2,2,4-Trimethylpentane",LB
+37005,0.005142214,Methane,TON
+37005,0.0006008954,Nitrous Oxide,TON
+37005,0.002680963,Ammonia,TON
+37005,0.01147329,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.0008340853,Sulfate Portion of PM2.5-PRI,TON
+37005,0.1426752,Volatile Organic Compounds,TON
+37067,1.4753866,Ethyl Benzene,LB
+37067,0.261327,Acrolein,LB
+37067,7.581516,Benzene,LB
+37067,0.0003613522,Mercury,LB
+37067,28.9206,Acetaldehyde,LB
+37067,4.115631,Carbon Monoxide,TON
+37067,0.007627239,Nitrous Oxide,TON
+37067,0.3309782,Nitrogen Oxides,TON
+37063,5.36508,Ethyl Benzene,LB
+37063,42.80624,Toluene,LB
+37063,4.470942,Benzene,LB
+37049,0.01411428,Methane,TON
+37049,0.979847,Ethyl Benzene,LB
+37049,0.0014855184,Anthracene,LB
+37049,0.001914552,Benzo[k]Fluoranthene,LB
+37017,0.05369928,Propionaldehyde,LB
+37017,2.289266e-06,Chromium (VI),LB
+37017,0.0002221434,Benz[a]Anthracene,LB
+37017,0.011623708,Naphthalene,LB
+37017,1.714617e-06,Nitrate portion of PM2.5-PRI,TON
+37017,0.001164808,Sulfur Dioxide,TON
+37003,0.7090304,Hexane,LB
+37017,0.02190281,Sulfate Portion of PM2.5-PRI,TON
+37017,2.661752,Pyrene,LB
+37017,0.014909868,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.6442188,Benz[a]Anthracene,LB
+37017,26.93548,Naphthalene,LB
+37017,1.134436,PM25-Primary from certain diesel engines,TON
+37013,0.02220224,"1,3-Butadiene",LB
+37013,0.0003305138,Fluoranthene,LB
+37013,5.252086e-05,Benz[a]Anthracene,LB
+37013,0.0010667922,Phenanthrene,LB
+37013,0.0012110232,Naphthalene,LB
+37011,1.0913062,Styrene,LB
+37011,0.9201124,Propionaldehyde,LB
+37011,0.04479976,"Benzo[g,h,i,]Perylene",LB
+37011,0.016897454,Benzo[a]Pyrene,LB
+37011,0.01287575,Benz[a]Anthracene,LB
+37011,0.04437637,Methane,TON
+37011,0.01965662,Ammonia,TON
+37011,5.060005e-05,Nitrate portion of PM2.5-PRI,TON
+37011,0.008584382,Organic Carbon portion of PM2.5-PRI,TON
+37027,16.69624,Xylenes (Mixed Isomers),LB
+37027,0.04550384,Phenanthrene,LB
+37189,24.50268,Benzene,LB
+37073,2.573292,Styrene,LB
+37073,82.82318,Hexane,LB
+37073,0.1796836,Pyrene,LB
+37073,0.03235038,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.0264236,Benzo[k]Fluoranthene,LB
+37073,0.0272136,Chrysene,LB
+37073,0.03262202,Benzo[a]Pyrene,LB
+37073,0.0007429258,"Dibenzo[a,h]Anthracene",LB
+37073,0.01694224,Manganese,LB
+37073,0.589235,Phenanthrene,LB
+37073,0.0674818,Methane,TON
+37073,1174.883,Carbon Dioxide,TON
+37073,1.828274,Volatile Organic Compounds,TON
+37063,16.440612,Phenanthrene,LB
+37063,8.955684,Fluorene,LB
+37063,0.01472323,Nitrate portion of PM2.5-PRI,TON
+37063,0.5710317,Sulfur Dioxide,TON
+37063,17.598556,Styrene,LB
+37063,70.62254,Propionaldehyde,LB
+37145,1.5493304,Propionaldehyde,LB
+37145,0.0003117953,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.01539127,Nitrous Oxide,TON
+37145,0.001154376,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.06527743,Volatile Organic Compounds,TON
+37189,0.0868146,Toluene,LB
+37189,1.429239e-06,Nitrate portion of PM2.5-PRI,TON
+37189,0.2013397,Nitrogen Oxides,TON
+37189,0.002322076,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.0003643645,Sulfur Dioxide,TON
+37183,0.002955436,"Dibenzo[a,h]Anthracene",LB
+37183,0.6639504,Fluorene,LB
+37183,4238.633,Carbon Dioxide,TON
+37057,0.2872544,Acenaphthene,LB
+37057,0.6358192,Fluorene,LB
+37057,0.2511025,PM2.5 Primary (Filt + Cond),TON
+37057,2.854284,"1,3-Butadiene",LB
+37057,2.608542,Hexane,LB
+37057,0.06592758,Benzo[a]Pyrene,LB
+37057,0.02965116,Manganese,LB
+37155,21.15702,Xylenes (Mixed Isomers),LB
+37191,0.01915762,PM10-Primary from certain diesel engines,TON
+37191,0.001316264,Nitrous Oxide,TON
+37191,0.08179308,PM10 Primary (Filt + Cond),TON
+37191,0.02591706,PM2.5 Primary (Filt + Cond),TON
+37191,0.003622206,Sulfate Portion of PM2.5-PRI,TON
+37191,0.4047716,Fluoranthene,LB
+37191,0.05812058,Benz[a]Anthracene,LB
+37153,7.036578,Acrolein,LB
+37153,0.001462466,Benzo[k]Fluoranthene,LB
+37153,38.07322,Acetaldehyde,LB
+37153,0.940493,Phenanthrene,LB
+37153,0.5881094,Fluorene,LB
+37153,780.5324,Carbon Dioxide,TON
+37153,0.2172754,PM10-Primary from certain diesel engines,TON
+37153,0.2079973,PM2.5 Primary (Filt + Cond),TON
+37075,0.0009037647,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,8.33096e-06,Chromium (VI),LB
+37075,0.0011777378,Benz[a]Anthracene,LB
+37075,4.247942,Benzene,LB
+37075,8.351536e-05,Mercury,LB
+37075,0.0838192,Naphthalene,LB
+37069,4.576704e-05,Chromium (VI),LB
+37069,0.00532938,Chrysene,LB
+37069,4.32413,Ethyl Benzene,LB
+37069,0.04414744,Ammonia,TON
+37069,4.554065e-05,Nitrate portion of PM2.5-PRI,TON
+37019,14.828002,Hexane,LB
+37019,0.0283596,Pyrene,LB
+37019,0.01258186,Chrysene,LB
+37019,0.02549608,Arsenic,LB
+37019,19.3586,Carbon Monoxide,TON
+37019,2387.782,Carbon Dioxide,TON
+37019,0.0001180108,Nitrate portion of PM2.5-PRI,TON
+37019,1.6529628e-07,Chromium (VI),LB
+37019,0.002447138,"Benzo[g,h,i,]Perylene",LB
+37019,3.168048e-05,Arsenic,LB
+37019,0.0008165649,Nitrous Oxide,TON
+37019,0.0009656912,PM2.5 Primary (Filt + Cond),TON
+37015,4.594508,Ethyl Benzene,LB
+37015,0.00212987,Benzo[a]Pyrene,LB
+37015,6.31887,Benzene,LB
+37015,0.0010050894,Manganese,LB
+37015,0.0002532128,Arsenic,LB
+37015,0.001824121,Nitrous Oxide,TON
+37015,0.002076218,Ammonia,TON
+37015,6.972379e-05,Sulfate Portion of PM2.5-PRI,TON
+37015,0.013194772,Phenanthrene,LB
+37015,0.1520959,Nitrogen Oxides,TON
+37015,0.00208019,Anthracene,LB
+37015,1.75864e-06,Chromium (VI),LB
+37015,0.011051618,Acenaphthylene,LB
+37015,0.0007459488,Benz[a]Anthracene,LB
+37011,411.6076,Formaldehyde,LB
+37011,0.4752852,Benz[a]Anthracene,LB
+37011,1476.3664,Benzene,LB
+37011,2.89499,Fluorene,LB
+37011,1.828411,Ammonia,TON
+37011,0.002145464,Nitrate portion of PM2.5-PRI,TON
+37011,0.4096976,Sulfur Dioxide,TON
+37005,0.0029386,Styrene,LB
+37005,0.00010726436,Anthracene,LB
+37005,0.2828906,Xylenes (Mixed Isomers),LB
+37005,3.760412e-05,Benzo[b]Fluoranthene,LB
+37005,0.09610046,"2,2,4-Trimethylpentane",LB
+37005,9.12991e-05,PM10 Primary (Filt + Cond),TON
+37005,1.261388e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.002256613,Volatile Organic Compounds,TON
+37003,1.0073674,Naphthalene,LB
+37003,0.003863463,Methane,TON
+37003,0.01039458,Organic Carbon portion of PM2.5-PRI,TON
+37003,1.046194,"1,3-Butadiene",LB
+37003,0.0009740001,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.2528829,Nitrogen Oxides,TON
+37003,1.378366e-05,Chromium (VI),LB
+37003,0.17668974,Acenaphthylene,LB
+37003,0.00707824,Chrysene,LB
+37003,3.095014e-05,"Dibenzo[a,h]Anthracene",LB
+37003,0.17913426,Fluorene,LB
+37003,2.476379,Carbon Monoxide,TON
+37051,0.01216701,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.01499333,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.0009855459,Sulfate Portion of PM2.5-PRI,TON
+37051,0.4910824,Volatile Organic Compounds,TON
+37051,0.011769766,Pyrene,LB
+37051,13.336188,Xylenes (Mixed Isomers),LB
+37051,0.015853378,Benzo[a]Pyrene,LB
+37017,2.52468,Toluene,LB
+37017,0.0008688958,Anthracene,LB
+37017,0.0019298668,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.0010189446,Benzo[b]Fluoranthene,LB
+37017,0.00011773116,Mercury,LB
+37017,0.000937324,Acenaphthene,LB
+37017,6.922516e-06,Nitrate portion of PM2.5-PRI,TON
+37017,0.009731165,PM10 Primary (Filt + Cond),TON
+37009,0.308935,Hexane,LB
+37009,0.0004850266,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.000515381,Fluoranthene,LB
+37009,0.0002086868,Chrysene,LB
+37009,0.4856278,Formaldehyde,LB
+37009,0.348908,"2,2,4-Trimethylpentane",LB
+37009,0.000493751,Manganese,LB
+37009,0.02145031,Nitrogen Oxides,TON
+37145,12.618488,Toluene,LB
+37145,0.005123298,Anthracene,LB
+37145,1.3773198,Propionaldehyde,LB
+37145,0.01042578,Pyrene,LB
+37145,0.004266766,Benzo[b]Fluoranthene,LB
+37145,0.004266766,Benzo[k]Fluoranthene,LB
+37145,0.0002536736,Mercury,LB
+37145,0.005713976,Acenaphthene,LB
+37145,0.0318638,Phenanthrene,LB
+37145,0.011573986,Fluorene,LB
+37145,0.03844653,Methane,TON
+37017,3.39668,Phenanthrene,LB
+37017,1.9278064,Fluorene,LB
+37017,0.2646666,Organic Carbon portion of PM2.5-PRI,TON
+37017,9.011714,"1,3-Butadiene",LB
+37017,7.800682,Hexane,LB
+37017,15.096684,Propionaldehyde,LB
+37017,0.013292618,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.3442688,Chrysene,LB
+37013,3.008868,Ethyl Benzene,LB
+37013,0.7370574,Pyrene,LB
+37013,0.1454902,Benz[a]Anthracene,LB
+37013,0.2168752,PM10-Primary from certain diesel engines,TON
+37013,0.1995293,PM25-Primary from certain diesel engines,TON
+37021,0.9984636,Benzo[b]Fluoranthene,LB
+37021,4.63123,Fluoranthene,LB
+37021,0.9853456,Benz[a]Anthracene,LB
+37021,1097.9192,Acetaldehyde,LB
+37021,3.147806,Acenaphthene,LB
+37021,1.905583,Nitrous Oxide,TON
+37021,52.44042,Volatile Organic Compounds,TON
+37019,24.00638,"1,3-Butadiene",LB
+37019,0.0002469772,Chromium (VI),LB
+37019,4.066212,Acenaphthylene,LB
+37019,2.419598,Acenaphthene,LB
+37019,0.8606284,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.000173257,Arsenic,LB
+37011,0.015737604,Phenanthrene,LB
+37011,0.005872636,Fluorene,LB
+37011,47.25085,Carbon Dioxide,TON
+37011,0.3875792,"1,3-Butadiene",LB
+37005,46.1658,Benzene,LB
+37003,0.577237,Hexane,LB
+37003,0.0015203906,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,4.611326e-06,Mercury,LB
+37003,0.0006441457,Nitrous Oxide,TON
+37003,0.0003502275,Nitrate portion of PM2.5-PRI,TON
+37003,0.02810344,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.001924344,Sulfate Portion of PM2.5-PRI,TON
+37179,0.0016356726,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.001445762,Chrysene,LB
+37179,1.932444,Formaldehyde,LB
+37179,0.0014492608,Benz[a]Anthracene,LB
+37179,0.007801539,Methane,TON
+37179,10.46896,Carbon Dioxide,TON
+37179,0.003576316,PM10 Primary (Filt + Cond),TON
+37179,0.001780892,PM2.5 Primary (Filt + Cond),TON
+37179,0.09387906,Acrolein,LB
+37179,21.42982,Toluene,LB
+37179,4.762058,Hexane,LB
+37179,0.12845938,Propionaldehyde,LB
+37197,0.005410944,Acenaphthene,LB
+37197,0.008307263,Nitrous Oxide,TON
+37197,0.5368562,Acrolein,LB
+37197,10.71469,Xylenes (Mixed Isomers),LB
+37197,0.005633568,Benzo[b]Fluoranthene,LB
+37197,0.00434438,Chrysene,LB
+37193,0.0901522,Acenaphthylene,LB
+37193,0.007742938,Benzo[a]Pyrene,LB
+37193,0.019792144,Acenaphthene,LB
+37193,0.001718627,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.01098307,Nitrous Oxide,TON
+37193,2.699833e-05,Nitrate portion of PM2.5-PRI,TON
+37183,0.6181582,Benz[a]Anthracene,LB
+37183,125.5535,Carbon Monoxide,TON
+37183,0.2193856,PM25-Primary from certain diesel engines,TON
+37183,0.2269713,Ammonia,TON
+37183,34.80564,"1,3-Butadiene",LB
+37183,102.9061,Acrolein,LB
+37183,0.00382635,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,2.59294,Carbon Monoxide,TON
+37199,0.9492081,Nitrogen Oxides,TON
+37199,1.62886,"1,3-Butadiene",LB
+37199,3.711258,Xylenes (Mixed Isomers),LB
+37199,0.00403586,Benzo[a]Pyrene,LB
+37197,0.16528082,Toluene,LB
+37197,0.009539035,PM10 Primary (Filt + Cond),TON
+37195,0.9464562,Acrolein,LB
+37195,0.00899066,Anthracene,LB
+37195,0.019180866,Fluorene,LB
+37195,1595.295,Carbon Dioxide,TON
+37195,0.08351729,Ammonia,TON
+37195,0.04847535,Sulfur Dioxide,TON
+37195,0.00011953958,"Benzo[g,h,i,]Perylene",LB
+37195,0.0015526806,Fluoranthene,LB
+37195,0.000393982,Arsenic,LB
+37195,14.589302,Acetaldehyde,LB
+37195,1.563366,Methane,TON
+37195,1.711618e-06,Nitrate portion of PM2.5-PRI,TON
+37195,0.03046029,PM2.5 Primary (Filt + Cond),TON
+37195,0.01639341,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,187.20202,Acrolein,LB
+37183,0.0007227108,Chromium (VI),LB
+37183,265.0054,Naphthalene,LB
+37183,23430,Carbon Dioxide,TON
+37183,0.08303539,Nitrous Oxide,TON
+37141,41.08506,Hexane,LB
+37141,0.0004633404,Chromium (VI),LB
+37141,7.385938,Fluoranthene,LB
+37141,0.005879946,"Dibenzo[a,h]Anthracene",LB
+37141,1.189531,Benz[a]Anthracene,LB
+37141,0.2189574,Manganese,LB
+37141,99.23988,Carbon Monoxide,TON
+37129,0.0004127284,Chromium (VI),LB
+37129,9.753466,Acenaphthylene,LB
+37129,0.2492928,Benzo[a]Pyrene,LB
+37129,0.01026281,"Dibenzo[a,h]Anthracene",LB
+37129,16.236564,Phenanthrene,LB
+37129,13493.98,Carbon Dioxide,TON
+37129,2.609942,PM10 Primary (Filt + Cond),TON
+37123,0.07725412,Ethyl Benzene,LB
+37123,0.1106773,Hexane,LB
+37123,5.575136e-05,Chrysene,LB
+37123,0.09319972,"2,2,4-Trimethylpentane",LB
+37123,6.010108e-05,Benz[a]Anthracene,LB
+37123,8.021092e-06,Arsenic,LB
+37123,0.00694613,Naphthalene,LB
+37123,0.06111897,Carbon Monoxide,TON
+37123,5.798108e-05,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.0001073975,PM2.5 Primary (Filt + Cond),TON
+37123,5.65806e-05,Sulfur Dioxide,TON
+37109,84.43994,Xylenes (Mixed Isomers),LB
+37109,0.2930888,Benzo[a]Pyrene,LB
+37109,65.39004,Benzene,LB
+37109,0.2822686,Manganese,LB
+37109,0.0004459166,Mercury,LB
+37109,21.65782,Carbon Monoxide,TON
+37109,0.03150375,Nitrous Oxide,TON
+37107,2.923632e-06,Nickel,LB
+37107,0.02342978,Naphthalene,LB
+37107,8.334018e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.278165,Ethyl Benzene,LB
+37107,0.007101674,Acrolein,LB
+37107,1.6077998,Toluene,LB
+37097,32.3072,Propionaldehyde,LB
+37097,3.413358,Pyrene,LB
+37097,50.61894,Xylenes (Mixed Isomers),LB
+37097,17.037718,"2,2,4-Trimethylpentane",LB
+37097,5.630688,Phenanthrene,LB
+37097,69.58102,Naphthalene,LB
+37097,0.706165,PM25-Primary from certain diesel engines,TON
+37097,1.067614,PM10 Primary (Filt + Cond),TON
+37097,0.7461443,PM2.5 Primary (Filt + Cond),TON
+37097,0.07055098,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,54.0914,Formaldehyde,LB
+37091,0.0096221,Manganese,LB
+37091,0.3753232,Fluorene,LB
+37091,0.0522926,Organic Carbon portion of PM2.5-PRI,TON
+37091,1.7273568,"1,3-Butadiene",LB
+37091,4.245148,Acrolein,LB
+37091,0.02141251,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.0025777,Sulfate Portion of PM2.5-PRI,TON
+37103,2349.766,Ethyl Benzene,LB
+37103,527.2618,"1,3-Butadiene",LB
+37103,4.225926,Ammonia,TON
+37103,0.0440193,Sulfate Portion of PM2.5-PRI,TON
+37095,152.3684,Benzene,LB
+37095,0.01977414,Arsenic,LB
+37095,118.09488,Hexane,LB
+37095,332.072,Xylenes (Mixed Isomers),LB
+37095,1844.065,Carbon Dioxide,TON
+37095,0.1307218,Ammonia,TON
+37093,0.0002354028,Fluoranthene,LB
+37093,3.837582e-05,Benz[a]Anthracene,LB
+37093,0.2376398,Nitrogen Oxides,TON
+37093,0.00406657,"Benzo[g,h,i,]Perylene",LB
+37093,0.006761832,Fluoranthene,LB
+37093,0.2416934,Naphthalene,LB
+37093,1.400939,Carbon Monoxide,TON
+37093,0.0004563176,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.0003544604,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.0009924456,Benzo[k]Fluoranthene,LB
+37087,1.7409168,"2,2,4-Trimethylpentane",LB
+37087,0.09784088,Benz[a]Anthracene,LB
+37087,1.0145014,Styrene,LB
+37087,0.7166668,Phenanthrene,LB
+37087,2.667306,Carbon Monoxide,TON
+37083,7.733412,Propionaldehyde,LB
+37083,1.0674028,Pyrene,LB
+37083,0.02781128,Manganese,LB
+37083,0.4253407,PM10 Primary (Filt + Cond),TON
+37079,199.8046,Carbon Dioxide,TON
+37079,0.03622846,PM2.5 Primary (Filt + Cond),TON
+37079,2.006782e-05,Nitrate portion of PM2.5-PRI,TON
+37079,0.0009373924,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.8283028,Propionaldehyde,LB
+37079,9.45231e-06,Chromium (VI),LB
+37079,1.5568702,Benzene,LB
+37079,8.919938e-06,Mercury,LB
+37087,0.002744391,PM10 Primary (Filt + Cond),TON
+37087,0.0004395428,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,4.786502e-05,Sulfate Portion of PM2.5-PRI,TON
+37087,0.04357492,Acrolein,LB
+37087,0.004765278,Pyrene,LB
+37087,0.0012421764,Benzo[b]Fluoranthene,LB
+37087,0.012635358,Acenaphthylene,LB
+37087,2.17398,"2,2,4-Trimethylpentane",LB
+37087,2.900654e-05,Arsenic,LB
+37087,0.015165764,Phenanthrene,LB
+37083,267.2114,Acrolein,LB
+37083,4.104446,Benzo[b]Fluoranthene,LB
+37083,4.104446,Benzo[k]Fluoranthene,LB
+37083,79.85868,Phenanthrene,LB
+37075,0.0015226054,Propionaldehyde,LB
+37075,2.465718e-05,Benzo[k]Fluoranthene,LB
+37075,0.02477354,Formaldehyde,LB
+37075,0.05831258,"2,2,4-Trimethylpentane",LB
+37075,0.03008231,Carbon Monoxide,TON
+37075,1.010716e-07,Nitrate portion of PM2.5-PRI,TON
+37071,5.359862,Arsenic,LB
+37071,17.525892,Acenaphthene,LB
+37071,4363.018,Carbon Monoxide,TON
+37071,406107.1,Carbon Dioxide,TON
+37071,2.473226,Elemental Carbon portion of PM2.5-PRI,TON
+37071,32.21107,Ammonia,TON
+37071,4.97991,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,11.063802,"1,3-Butadiene",LB
+37069,3.536252,Pyrene,LB
+37069,0.01598918,"Benzo[g,h,i,]Perylene",LB
+37069,0.01604023,Nitrous Oxide,TON
+37069,0.9138362,PM2.5 Primary (Filt + Cond),TON
+37069,1.5482678e-05,Arsenic,LB
+37069,0.03038734,Nitrogen Oxides,TON
+37069,0.0002841029,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.0007852197,PM10 Primary (Filt + Cond),TON
+37069,0.591858,Ethyl Benzene,LB
+37069,0.0016082778,Pyrene,LB
+37069,0.000349328,Benzo[b]Fluoranthene,LB
+37069,4.17804e-05,Chrysene,LB
+37069,1.069459e-05,Manganese,LB
+37069,0.05823775,Carbon Monoxide,TON
+37069,1.187141e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,1.1572968,Benzo[a]Pyrene,LB
+37063,0.04851692,"Dibenzo[a,h]Anthracene",LB
+37063,16.64194,PM10 Primary (Filt + Cond),TON
+37063,1.192767,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,342.5284,Toluene,LB
+37063,6.782164,Anthracene,LB
+37063,13.854794,Fluoranthene,LB
+37063,0.04941202,Benzo[k]Fluoranthene,LB
+37059,0.04245524,Benzo[b]Fluoranthene,LB
+37059,7.60679,Fluoranthene,LB
+37059,33.48766,Nitrogen Oxides,TON
+37059,1677.2202,Formaldehyde,LB
+37059,0.2466582,Styrene,LB
+37059,8.496362,Hexane,LB
+37059,0.00368882,Benzo[b]Fluoranthene,LB
+37059,0.016446704,Fluoranthene,LB
+37059,0.00368882,Benzo[k]Fluoranthene,LB
+37059,5.89542,"2,2,4-Trimethylpentane",LB
+37059,3.695682e-05,Mercury,LB
+37059,0.06071148,Phenanthrene,LB
+37059,0.006239179,Methane,TON
+37059,0.4321923,Nitrogen Oxides,TON
+37059,0.003217936,Organic Carbon portion of PM2.5-PRI,TON
+37055,2.283823,Organic Carbon portion of PM2.5-PRI,TON
+37055,3.760271,Sulfur Dioxide,TON
+37055,1664.2166,"1,3-Butadiene",LB
+37055,8958.744,Hexane,LB
+37055,9.926088,"Benzo[g,h,i,]Perylene",LB
+37055,3866.884,Formaldehyde,LB
+37047,15.451614,"1,3-Butadiene",LB
+37047,2.60862,Pyrene,LB
+37047,0.014848146,Benzo[b]Fluoranthene,LB
+37047,44.81336,Benzene,LB
+37047,0.1724974,Methane,TON
+37047,0.5654334,PM10-Primary from certain diesel engines,TON
+37047,0.520175,PM25-Primary from certain diesel engines,TON
+37047,0.0009815887,Nitrate portion of PM2.5-PRI,TON
+37047,0.03053054,Sulfur Dioxide,TON
+37039,0.1435096,Naphthalene,LB
+37039,0.0003002576,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.000728619,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.00128949,Sulfur Dioxide,TON
+37041,186.81722,"1,3-Butadiene",LB
+37041,0.2472278,Manganese,LB
+37041,6.309848,Phenanthrene,LB
+37041,0.01349009,Sulfate Portion of PM2.5-PRI,TON
+37035,43.05036,Ethyl Benzene,LB
+37035,37.3436,"1,3-Butadiene",LB
+37035,102.32662,Toluene,LB
+37035,62.85438,Propionaldehyde,LB
+37035,11.626504,Pyrene,LB
+37035,0.0003550678,Chromium (VI),LB
+37035,8.817834,Fluoranthene,LB
+37035,6.32578,Acenaphthylene,LB
+37035,1320.2026,Formaldehyde,LB
+37035,8.265682,Fluorene,LB
+37035,1.169895,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.59953,Xylenes (Mixed Isomers),LB
+37027,0.2249496,"2,2,4-Trimethylpentane",LB
+37027,0.0215155,PM10-Primary from certain diesel engines,TON
+37027,0.01677325,PM25-Primary from certain diesel engines,TON
+37027,0.9301699,Nitrogen Oxides,TON
+37027,0.003072707,Sulfate Portion of PM2.5-PRI,TON
+37027,0.6890693,Volatile Organic Compounds,TON
+37027,0.004626216,Benzo[a]Pyrene,LB
+37027,12.480696,Ethyl Benzene,LB
+37027,37.5184,"2,2,4-Trimethylpentane",LB
+37023,10.786876,Toluene,LB
+37023,7.106056,Propionaldehyde,LB
+37023,0.002261252,Benzo[b]Fluoranthene,LB
+37023,15.339656,Naphthalene,LB
+37023,0.005751941,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.0001856296,Nitrate portion of PM2.5-PRI,TON
+37011,0.001053572,Benzo[a]Pyrene,LB
+37011,2.594926,Benzene,LB
+37011,1.111429,Carbon Monoxide,TON
+37011,0.04922059,Volatile Organic Compounds,TON
+37001,0.02398464,Benzo[k]Fluoranthene,LB
+37001,79.10236,Naphthalene,LB
+37001,3.40668,PM10-Primary from certain diesel engines,TON
+37001,0.0191852,Nitrous Oxide,TON
+37001,0.4168376,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,4.171894,Volatile Organic Compounds,TON
+37001,10.293198,Styrene,LB
+37001,7.722814,Pyrene,LB
+37001,0.04446898,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.12076538,Propionaldehyde,LB
+37055,0.000998005,Pyrene,LB
+37055,7.027722e-06,Chromium (VI),LB
+37055,0.000501014,Acenaphthene,LB
+37055,0.02615332,Naphthalene,LB
+37055,0.04666036,Nitrogen Oxides,TON
+37003,0.08292132,"1,3-Butadiene",LB
+37003,1.182717,Xylenes (Mixed Isomers),LB
+37003,0.0019870096,"Benzo[g,h,i,]Perylene",LB
+37003,0.002492444,Acenaphthylene,LB
+37003,1.7142504e-05,"Dibenzo[a,h]Anthracene",LB
+37003,3.262818e-05,Mercury,LB
+37003,6.744412,Acetaldehyde,LB
+37003,0.0005423414,Acenaphthene,LB
+37003,0.001115692,Nitrous Oxide,TON
+37161,0.0010742084,Acenaphthylene,LB
+37161,0.0002154382,Chrysene,LB
+37161,1.2475788e-05,"Dibenzo[a,h]Anthracene",LB
+37161,2.812434,Acetaldehyde,LB
+37161,0.0004693932,Fluorene,LB
+37161,0.0006571164,Nitrous Oxide,TON
+37161,0.01623102,Volatile Organic Compounds,TON
+37157,2.087742,Hexane,LB
+37157,6.712168,"2,2,4-Trimethylpentane",LB
+37157,1.8683042,Benzene,LB
+37141,2.08577,Benzene,LB
+37139,0.008787576,Pyrene,LB
+37139,2.804704e-05,Chromium (VI),LB
+37139,0.00419431,Benzo[b]Fluoranthene,LB
+37139,0.007677788,Benzo[a]Pyrene,LB
+37139,13.070138,Benzene,LB
+37139,0.01216844,PM2.5 Primary (Filt + Cond),TON
+37099,1.090214,Benzene,LB
+37087,0.0003407964,Chrysene,LB
+37087,0.0002750786,Acenaphthene,LB
+37087,0.408966,Carbon Monoxide,TON
+37021,50.16652,Ethyl Benzene,LB
+37021,5.63318,Anthracene,LB
+37021,8.411566,Acenaphthylene,LB
+37021,1508.4924,Formaldehyde,LB
+37021,37.5142,"2,2,4-Trimethylpentane",LB
+37021,0.06413994,Arsenic,LB
+37021,166.03716,Naphthalene,LB
+37021,7.072279,PM10-Primary from certain diesel engines,TON
+37021,6.506403,PM25-Primary from certain diesel engines,TON
+37021,23.80968,"1,3-Butadiene",LB
+37021,61.38438,Acrolein,LB
+37021,4.314606,Pyrene,LB
+37021,0.005008974,Benzo[k]Fluoranthene,LB
+37021,86.25484,Naphthalene,LB
+37021,1.314513,PM10 Primary (Filt + Cond),TON
+37021,0.04431983,Sulfate Portion of PM2.5-PRI,TON
+37021,5528.614,Ethyl Benzene,LB
+37015,3.651904,Hexane,LB
+37015,5.719786,Benzene,LB
+37015,0.004897534,Acenaphthene,LB
+37015,0.003396866,Ammonia,TON
+37015,0.003404073,PM2.5 Primary (Filt + Cond),TON
+37009,12.800688,Styrene,LB
+37009,10.644374,Acrolein,LB
+37009,1641.8508,Toluene,LB
+37009,0.4629016,Anthracene,LB
+37009,0.180219,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.1812732,Benzo[a]Pyrene,LB
+37009,0.000526814,Nitrate portion of PM2.5-PRI,TON
+37001,27.17214,"1,3-Butadiene",LB
+37001,4.597064,Acenaphthylene,LB
+37001,86.88682,Benzene,LB
+37001,2.344255,PM2.5 Primary (Filt + Cond),TON
+37085,2.646896,Hexane,LB
+37085,0.0002592898,Mercury,LB
+37085,0.03209074,PM10 Primary (Filt + Cond),TON
+37085,0.007961897,PM2.5 Primary (Filt + Cond),TON
+37085,0.000230521,Sulfate Portion of PM2.5-PRI,TON
+37071,20.58486,Hexane,LB
+37071,46.33756,Xylenes (Mixed Isomers),LB
+37071,0.03892096,Fluoranthene,LB
+37071,47.32366,Formaldehyde,LB
+37071,0.03011959,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.002206824,Sulfate Portion of PM2.5-PRI,TON
+37071,277.114,Acetaldehyde,LB
+37071,0.2849253,PM10 Primary (Filt + Cond),TON
+37063,33.1776,Xylenes (Mixed Isomers),LB
+37063,0.0393565,Benzo[a]Pyrene,LB
+37063,0.1411742,Methane,TON
+37005,0.03871532,Styrene,LB
+37005,2.705322,Formaldehyde,LB
+37005,0.0008787604,Benz[a]Anthracene,LB
+37005,17.21011,Acetaldehyde,LB
+37005,0.001013931,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.000598562,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.05113807,PM2.5 Primary (Filt + Cond),TON
+37159,0.434194,Styrene,LB
+37159,0.02617456,Fluoranthene,LB
+37177,0.000219688,Acenaphthylene,LB
+37177,0.00012331708,Benzo[a]Pyrene,LB
+37177,0.05045552,"2,2,4-Trimethylpentane",LB
+37177,9.574036e-05,Fluorene,LB
+37177,9.620931,Carbon Dioxide,TON
+37177,0.0004999316,Ammonia,TON
+37161,0.006077288,"Benzo[g,h,i,]Perylene",LB
+37161,0.002283308,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.0009129256,Chrysene,LB
+37161,5.241532e-05,"Dibenzo[a,h]Anthracene",LB
+37161,0.003697678,Manganese,LB
+37161,0.005849382,Phenanthrene,LB
+37161,0.0534726,Naphthalene,LB
+37161,0.01488662,PM10 Primary (Filt + Cond),TON
+37133,1.4635494,Xylenes (Mixed Isomers),LB
+37133,0.9163173,Carbon Monoxide,TON
+37133,0.004039601,Sulfur Dioxide,TON
+37133,7.836539e-05,Sulfate Portion of PM2.5-PRI,TON
+37131,0.017121756,Acenaphthylene,LB
+37131,0.00749509,Benzo[a]Pyrene,LB
+37131,0.009616271,PM2.5 Primary (Filt + Cond),TON
+37117,2.208552,Benzene,LB
+37117,7.963326,Acetaldehyde,LB
+37117,0.000687225,Acenaphthene,LB
+37117,1.031584,Carbon Monoxide,TON
+37117,0.0003769038,Elemental Carbon portion of PM2.5-PRI,TON
+37117,5.299411e-06,Nitrate portion of PM2.5-PRI,TON
+37117,0.05322265,Volatile Organic Compounds,TON
+37159,103.0905,Xylenes (Mixed Isomers),LB
+37159,0.0501001,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,31.11534,"2,2,4-Trimethylpentane",LB
+37159,0.708485,Manganese,LB
+37159,0.0005038376,Mercury,LB
+37159,4.641384,PM10-Primary from certain diesel engines,TON
+37159,4.634949,PM2.5 Primary (Filt + Cond),TON
+37163,0.0006604848,Nickel,LB
+37163,0.0086137,Acenaphthene,LB
+37163,0.4476304,Naphthalene,LB
+37163,0.006348068,Methane,TON
+37163,4.108576,Carbon Monoxide,TON
+37163,185.4445,Carbon Dioxide,TON
+37163,0.00561157,Nitrous Oxide,TON
+37163,0.007050467,PM2.5 Primary (Filt + Cond),TON
+37163,0.002244188,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.16681794,Propionaldehyde,LB
+37163,0.00013816264,"Dibenzo[a,h]Anthracene",LB
+37153,0.849004,Benz[a]Anthracene,LB
+37153,0.2835966,Manganese,LB
+37153,24712.75,Carbon Dioxide,TON
+37151,32.43374,Xylenes (Mixed Isomers),LB
+37151,0.2704718,Acrolein,LB
+37151,11.413924,"2,2,4-Trimethylpentane",LB
+37151,0.00620125,Benz[a]Anthracene,LB
+37151,0.013542064,Acenaphthene,LB
+37151,0.7039834,Naphthalene,LB
+37151,0.00416377,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.0003784168,Sulfate Portion of PM2.5-PRI,TON
+37145,0.00010874536,Benzo[k]Fluoranthene,LB
+37145,0.0006271383,Ammonia,TON
+37145,0.01105887,PM10 Primary (Filt + Cond),TON
+37145,1.0925284e-06,Chromium (VI),LB
+37145,0.0001365585,Nickel,LB
+37145,2.85199,Acetaldehyde,LB
+37145,0.2257194,Nitrogen Oxides,TON
+37145,0.001122299,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.005995591,PM10 Primary (Filt + Cond),TON
+37167,0.07315952,Propionaldehyde,LB
+37167,0.00302602,"Benzo[g,h,i,]Perylene",LB
+37167,2.61267e-05,"Dibenzo[a,h]Anthracene",LB
+37167,2.939638,"2,2,4-Trimethylpentane",LB
+37167,0.006873576,Fluorene,LB
+37167,0.17616552,Naphthalene,LB
+37167,0.0001774795,Ammonia,TON
+37167,3.145859e-06,Nitrate portion of PM2.5-PRI,TON
+37003,0.02353048,Sulfate Portion of PM2.5-PRI,TON
+37003,0.0002177574,Chromium (VI),LB
+37077,0.000386633,Fluoranthene,LB
+37077,5.888796e-05,Benz[a]Anthracene,LB
+37077,2.411182e-05,Mercury,LB
+37077,0.0014611714,Naphthalene,LB
+37077,0.002712372,Ammonia,TON
+37077,0.01653112,PM10 Primary (Filt + Cond),TON
+37067,2.915834,Acrolein,LB
+37067,66.89314,Toluene,LB
+37067,26.44946,Hexane,LB
+37067,0.05177394,Fluoranthene,LB
+37067,0.08793294,Manganese,LB
+37067,0.0002651668,Nitrate portion of PM2.5-PRI,TON
+37079,0.00014915708,Chrysene,LB
+37079,0.00016924406,Benz[a]Anthracene,LB
+37079,0.02113861,Nitrogen Oxides,TON
+37079,0.001629591,PM10 Primary (Filt + Cond),TON
+37121,0.0005321814,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,9.345796,Formaldehyde,LB
+37121,0.02464469,PM10-Primary from certain diesel engines,TON
+37121,0.032707,PM10 Primary (Filt + Cond),TON
+37127,1.9221722,Benz[a]Anthracene,LB
+37127,0.5884178,Manganese,LB
+37127,6.582167,PM10 Primary (Filt + Cond),TON
+37127,10.950426,Styrene,LB
+37127,6.0701,Fluoranthene,LB
+37179,42.78456,"1,3-Butadiene",LB
+37179,7.154274,Acenaphthylene,LB
+37179,1.876306,Chrysene,LB
+37179,1861.9904,Formaldehyde,LB
+37179,0.0409268,"Dibenzo[a,h]Anthracene",LB
+37179,53.16304,"2,2,4-Trimethylpentane",LB
+37179,74730.89,Carbon Dioxide,TON
+37081,2.509078e-08,Nickel,LB
+37081,0.11040142,Acetaldehyde,LB
+37081,1.652299,Carbon Dioxide,TON
+37081,8.74813e-06,Sulfur Dioxide,TON
+37081,0.8005118,Formaldehyde,LB
+37035,573.371,Formaldehyde,LB
+37035,0.00014798926,Mercury,LB
+37035,5.051922,Phenanthrene,LB
+37035,3.173926,Fluorene,LB
+37035,29.17055,Carbon Monoxide,TON
+37035,0.1377208,Ammonia,TON
+37035,0.1084783,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.0431913,Ammonia,TON
+37161,0.006057522,Anthracene,LB
+37161,0.03338086,"Benzo[g,h,i,]Perylene",LB
+37161,0.011128346,Fluoranthene,LB
+37161,0.005158698,Chrysene,LB
+37161,13.888224,Formaldehyde,LB
+37161,0.005814656,Benz[a]Anthracene,LB
+37099,0.7416314,Xylenes (Mixed Isomers),LB
+37099,0.0008747454,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.379258,"2,2,4-Trimethylpentane",LB
+37099,0.0012224674,Manganese,LB
+37099,0.0007357102,Fluorene,LB
+37099,0.003291564,Ammonia,TON
+37099,3.253661e-06,Nitrate portion of PM2.5-PRI,TON
+37099,0.0005216236,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,17.026364,Toluene,LB
+37165,0.233695,Elemental Carbon portion of PM2.5-PRI,TON
+37165,5.97335,"2,2,4-Trimethylpentane",LB
+37165,1.5274392,Fluorene,LB
+37165,0.1317552,Methane,TON
+37159,0.1175724,"1,3-Butadiene",LB
+37159,0.000762099,Anthracene,LB
+37159,2.15449,Xylenes (Mixed Isomers),LB
+37159,5.616842e-08,Chromium (VI),LB
+37159,0.0014779836,"Benzo[g,h,i,]Perylene",LB
+37159,0.00401744,Acenaphthylene,LB
+37159,5.631004e-07,Mercury,LB
+37159,0.5014267,Carbon Monoxide,TON
+37159,0.0246028,Nitrogen Oxides,TON
+37151,0.4878614,Benzo[a]Pyrene,LB
+37151,2.552554,Acenaphthene,LB
+37135,0.004335778,Pyrene,LB
+37135,0.00227727,Fluoranthene,LB
+37135,379.689,Formaldehyde,LB
+37135,0.0005939238,Arsenic,LB
+37171,0.001294547,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.0010911122,Chrysene,LB
+37171,1.4931488,"2,2,4-Trimethylpentane",LB
+37171,1.2870678e-05,Nickel,LB
+37171,0.001833181,Acenaphthene,LB
+37171,0.02888262,Acrolein,LB
+37169,0.009326966,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,1589.5762,Formaldehyde,LB
+37169,0.12282656,Benzo[a]Pyrene,LB
+37169,1.1337734,Benz[a]Anthracene,LB
+37169,6870.79,Carbon Dioxide,TON
+37169,1.162381,PM10-Primary from certain diesel engines,TON
+37169,0.1911837,Organic Carbon portion of PM2.5-PRI,TON
+37169,1.106187,PM2.5 Primary (Filt + Cond),TON
+37159,148.1546,Toluene,LB
+37159,0.015106726,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.04019008,Fluoranthene,LB
+37159,33.1526,"2,2,4-Trimethylpentane",LB
+37159,0.009590402,Benz[a]Anthracene,LB
+37159,4.963356e-05,Mercury,LB
+37159,0.0547333,Fluorene,LB
+37159,0.007423717,Ammonia,TON
+37159,4.489415e-05,Nitrate portion of PM2.5-PRI,TON
+37159,0.008244772,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.00137964,Nitrogen Oxides,TON
+37149,2.277056e-06,Manganese,LB
+37149,4.89457e-08,Mercury,LB
+37149,1.393688e-05,Methane,TON
+37149,4.874403e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.09681474,Styrene,LB
+37149,0.0776099,Acrolein,LB
+37149,0.003778544,Anthracene,LB
+37149,0.006845674,Fluoranthene,LB
+37149,0.0006676892,Arsenic,LB
+37149,1.968527e-05,Nitrate portion of PM2.5-PRI,TON
+37151,4.051163,Nitrogen Oxides,TON
+37151,0.2600238,PM10 Primary (Filt + Cond),TON
+37151,0.11993686,Anthracene,LB
+37151,0.3362024,Pyrene,LB
+37151,3.171228,Xylenes (Mixed Isomers),LB
+37151,1.4144062e-05,Chromium (VI),LB
+37151,38.88308,Formaldehyde,LB
+37151,0.4332064,Phenanthrene,LB
+37151,0.1805332,PM10-Primary from certain diesel engines,TON
+37147,0.17527478,Benzo[b]Fluoranthene,LB
+37147,1529.7702,Formaldehyde,LB
+37147,0.02455658,"Dibenzo[a,h]Anthracene",LB
+37147,3.11773,Acenaphthene,LB
+37147,8.636302,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,3.547056,Arsenic,LB
+37147,8610.166,Acetaldehyde,LB
+37147,2.185593,Elemental Carbon portion of PM2.5-PRI,TON
+37147,681.1351,Nitrogen Oxides,TON
+37147,11.89944,PM2.5 Primary (Filt + Cond),TON
+37145,1.3226634,Ethyl Benzene,LB
+37145,0.002777566,Arsenic,LB
+37145,0.0003606274,Nitrous Oxide,TON
+37145,3.487495e-05,Nitrate portion of PM2.5-PRI,TON
+37145,0.002484091,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.4589286,Styrene,LB
+37143,1.0461686,"1,3-Butadiene",LB
+37143,0.8616116,Hexane,LB
+37143,0.0016236382,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,3.685896,Naphthalene,LB
+37143,0.07993669,PM10-Primary from certain diesel engines,TON
+37143,0.03090455,Elemental Carbon portion of PM2.5-PRI,TON
+37143,1.203715,Nitrogen Oxides,TON
+37133,0.6889384,Acenaphthene,LB
+37133,0.05492228,Nitrous Oxide,TON
+37133,0.457425,PM10 Primary (Filt + Cond),TON
+37133,0.0002866562,Chromium (VI),LB
+37131,0.0370697,Anthracene,LB
+37131,4.162058e-06,Chromium (VI),LB
+37131,11.061402,Formaldehyde,LB
+37131,4.748494,Acetaldehyde,LB
+37131,0.07442996,Fluorene,LB
+37131,1.1956414,Naphthalene,LB
+37131,0.005249895,Methane,TON
+37131,0.07398987,PM10 Primary (Filt + Cond),TON
+37131,0.002220618,Sulfate Portion of PM2.5-PRI,TON
+37095,1.388294e-06,Chromium (VI),LB
+37095,2.66523e-05,"Benzo[g,h,i,]Perylene",LB
+37095,3.510598e-05,Benzo[b]Fluoranthene,LB
+37095,0.009439832,Fluoranthene,LB
+37095,2.624328,Formaldehyde,LB
+37095,0.0001175855,Benzo[a]Pyrene,LB
+37095,0.000733238,Nickel,LB
+37095,0.007447516,Acenaphthene,LB
+37095,0.2745644,Naphthalene,LB
+37095,0.0002262586,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.0001783,Sulfur Dioxide,TON
+37093,1.4464554,Styrene,LB
+37093,0.2779306,Anthracene,LB
+37093,6.90281,Xylenes (Mixed Isomers),LB
+37093,0.03947942,Chrysene,LB
+37093,0.08083044,Benz[a]Anthracene,LB
+37093,0.013118734,Nickel,LB
+37093,0.3321312,Acenaphthene,LB
+37093,0.9098102,Phenanthrene,LB
+37093,0.04003639,Methane,TON
+37073,0.002100885,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.10214038,Hexane,LB
+37073,0.013813478,Anthracene,LB
+37073,0.03939666,Pyrene,LB
+37073,0.00011812058,"Dibenzo[a,h]Anthracene",LB
+37073,0.4379406,Naphthalene,LB
+37073,0.01787317,PM25-Primary from certain diesel engines,TON
+37073,0.0001334101,Nitrous Oxide,TON
+37073,0.001495018,Ammonia,TON
+37001,0.005418708,Chrysene,LB
+37001,5.680527,Carbon Monoxide,TON
+37001,0.001947691,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.03722394,PM10 Primary (Filt + Cond),TON
+37001,0.01314977,PM2.5 Primary (Filt + Cond),TON
+37055,0.8926848,Nitrogen Oxides,TON
+37055,0.02630763,PM2.5 Primary (Filt + Cond),TON
+37055,0.503695,Volatile Organic Compounds,TON
+37055,0.7419068,Acrolein,LB
+37055,15.311526,Xylenes (Mixed Isomers),LB
+37055,0.014428134,Benzo[a]Pyrene,LB
+37055,20.72146,Benzene,LB
+37033,0.0005244616,Phenanthrene,LB
+37033,0.004872776,Naphthalene,LB
+37033,3.748016e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.05331972,Ethyl Benzene,LB
+37033,0.2078844,Toluene,LB
+37033,4.889764e-07,Chromium (VI),LB
+37033,7.87061e-05,Benzo[b]Fluoranthene,LB
+37033,6.216904e-05,Chrysene,LB
+37033,8.582131e-05,Organic Carbon portion of PM2.5-PRI,TON
+37011,2.412908,Hexane,LB
+37011,0.0051812,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.014903352,Acenaphthylene,LB
+37011,3.089726,"2,2,4-Trimethylpentane",LB
+37011,0.00016766972,Mercury,LB
+37011,0.001335693,Elemental Carbon portion of PM2.5-PRI,TON
+37011,1.650222e-05,Nitrate portion of PM2.5-PRI,TON
+37011,0.3468865,Nitrogen Oxides,TON
+37011,0.00185931,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.0001676396,Sulfate Portion of PM2.5-PRI,TON
+37011,0.000275225,Arsenic,LB
+37011,19.01816,Carbon Dioxide,TON
+37011,1.047193e-05,Sulfate Portion of PM2.5-PRI,TON
+37011,0.004608122,Styrene,LB
+37011,0.0002659268,Fluoranthene,LB
+37011,0.0007346404,Acenaphthylene,LB
+37011,0.0001172697,Chrysene,LB
+37173,0.0763574,Propionaldehyde,LB
+37173,0.6752452,Xylenes (Mixed Isomers),LB
+37173,0.0005485868,Fluoranthene,LB
+37173,0.5207188,Formaldehyde,LB
+37173,1.5819926e-05,"Dibenzo[a,h]Anthracene",LB
+37173,0.0003134556,Benz[a]Anthracene,LB
+37173,0.016526776,Naphthalene,LB
+37173,50.61343,Carbon Dioxide,TON
+37173,0.0006149362,Nitrous Oxide,TON
+37173,0.003070721,PM10 Primary (Filt + Cond),TON
+37173,0.000310173,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.5204952,Benzene,LB
+37155,0.001400896,Arsenic,LB
+37155,0.0003951907,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.006423413,Ammonia,TON
+37155,0.0008404792,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.3228836,Ethyl Benzene,LB
+37139,7.983146,Toluene,LB
+37139,3.391808,Xylenes (Mixed Isomers),LB
+37139,2.995604,"2,2,4-Trimethylpentane",LB
+37119,32.26882,Xylenes (Mixed Isomers),LB
+37119,0.11314308,"Benzo[g,h,i,]Perylene",LB
+37119,0.0258778,Fluoranthene,LB
+37119,0.02176316,Benzo[k]Fluoranthene,LB
+37119,46.50886,Benzene,LB
+37119,0.04196764,Nitrous Oxide,TON
+37119,1.299103,Nitrogen Oxides,TON
+37119,0.04313711,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.1102901,Sulfur Dioxide,TON
+37087,5.487788e-05,"Dibenzo[a,h]Anthracene",LB
+37087,0.1157535,"1,3-Butadiene",LB
+37087,1.772488,Xylenes (Mixed Isomers),LB
+37087,0.002317788,Arsenic,LB
+37087,0.001856991,Nitrous Oxide,TON
+37087,8.863476e-06,Nitrate portion of PM2.5-PRI,TON
+37087,0.06066479,Volatile Organic Compounds,TON
+37007,29.29978,Naphthalene,LB
+37007,0.01433333,Nitrous Oxide,TON
+37007,1.237791,PM2.5 Primary (Filt + Cond),TON
+37007,0.115015,Sulfate Portion of PM2.5-PRI,TON
+37007,1.409583,Volatile Organic Compounds,TON
+37007,0.00018410708,Mercury,LB
+37007,117.84312,Acetaldehyde,LB
+37007,0.7116954,Acenaphthene,LB
+37007,7.121516,"1,3-Butadiene",LB
+37007,0.04255944,Benzo[b]Fluoranthene,LB
+37007,1.5791282,Fluoranthene,LB
+37177,1.8453796,Ethyl Benzene,LB
+37177,0.7141138,Styrene,LB
+37177,0.4628104,Pyrene,LB
+37177,2.40625e-05,Chromium (VI),LB
+37177,0.16545388,Acenaphthene,LB
+37177,0.03485495,Methane,TON
+37177,1972.818,Carbon Dioxide,TON
+37177,0.001983708,Nitrous Oxide,TON
+37177,0.01296077,Sulfate Portion of PM2.5-PRI,TON
+37175,0.01274404,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.012867266,Benzo[a]Pyrene,LB
+37175,47.14612,Benzene,LB
+37175,2.337598,Naphthalene,LB
+37175,0.006877161,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.05440377,PM10 Primary (Filt + Cond),TON
+37163,0.0008210787,Nitrate portion of PM2.5-PRI,TON
+37163,0.7272784,Fluoranthene,LB
+37163,0.0989476,Chrysene,LB
+37163,0.04479674,Benzo[a]Pyrene,LB
+37163,11.286514,Benzene,LB
+37163,0.01596401,Nickel,LB
+37163,51.51912,Acetaldehyde,LB
+37161,0.001967916,Manganese,LB
+37161,4.006296,Acetaldehyde,LB
+37161,0.03054644,Acenaphthene,LB
+37161,0.11112236,Phenanthrene,LB
+37161,1.0117746,Naphthalene,LB
+37161,0.1803469,Carbon Monoxide,TON
+37161,0.3963013,Nitrogen Oxides,TON
+37161,0.008966304,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.02219091,PM2.5 Primary (Filt + Cond),TON
+37161,0.003764815,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.05363121,Volatile Organic Compounds,TON
+37159,1.9766758,Acenaphthene,LB
+37159,0.6796368,PM25-Primary from certain diesel engines,TON
+37159,0.003535726,Benzo[k]Fluoranthene,LB
+37155,63.33362,Acrolein,LB
+37155,43.22284,Propionaldehyde,LB
+37155,0.04579658,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,4.529944,Acenaphthylene,LB
+37155,0.02462616,"Dibenzo[a,h]Anthracene",LB
+37155,1.9937174,Benz[a]Anthracene,LB
+37155,0.8562575,Organic Carbon portion of PM2.5-PRI,TON
+37155,4.994284,PM10 Primary (Filt + Cond),TON
+37159,0.6812696,Manganese,LB
+37159,0.003018826,Nitrate portion of PM2.5-PRI,TON
+37159,1.183953,PM2.5 Primary (Filt + Cond),TON
+37159,0.3809418,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,2.471368,"Benzo[g,h,i,]Perylene",LB
+37159,24.33178,Pyrene,LB
+37159,23.00802,"Benzo[g,h,i,]Perylene",LB
+37159,0.198446,"Dibenzo[a,h]Anthracene",LB
+37159,14974.896,Benzene,LB
+37159,3.949998,Arsenic,LB
+37159,7.275372,Methane,TON
+37159,2.04033,Elemental Carbon portion of PM2.5-PRI,TON
+37159,7.128045,Nitrous Oxide,TON
+37159,33.09493,PM10 Primary (Filt + Cond),TON
+37153,33.12918,Ethyl Benzene,LB
+37153,6.024424,"1,3-Butadiene",LB
+37153,0.04534194,Anthracene,LB
+37153,122.4803,Xylenes (Mixed Isomers),LB
+37153,55.21092,Benzene,LB
+37153,23.1971,Carbon Monoxide,TON
+37153,0.02189705,Sulfur Dioxide,TON
+37147,0.00911626,Arsenic,LB
+37147,123.89878,Acetaldehyde,LB
+37147,3.511566,Phenanthrene,LB
+37147,0.6931804,PM25-Primary from certain diesel engines,TON
+37147,0.9989906,PM10 Primary (Filt + Cond),TON
+37147,2.928382,Pyrene,LB
+37147,20.02366,Xylenes (Mixed Isomers),LB
+37147,0.00887455,Benzo[k]Fluoranthene,LB
+37147,1.5462228,Acenaphthylene,LB
+37147,0.7116008,Benz[a]Anthracene,LB
+37147,4.35999e-05,Mercury,LB
+37139,0.004080706,Chromium (VI),LB
+37139,1.772156,Benzo[b]Fluoranthene,LB
+37139,1.772156,Benzo[k]Fluoranthene,LB
+37139,34.55694,Acenaphthylene,LB
+37139,1.5490958,Manganese,LB
+37139,5.540609,Ammonia,TON
+37139,1.202195,Organic Carbon portion of PM2.5-PRI,TON
+37139,2.691517,PM2.5 Primary (Filt + Cond),TON
+37137,157.66782,"1,3-Butadiene",LB
+37137,21.54648,Acrolein,LB
+37137,0.2861496,Benz[a]Anthracene,LB
+37137,365.9098,Acetaldehyde,LB
+37137,0.2272732,Organic Carbon portion of PM2.5-PRI,TON
+37137,2149.144,Toluene,LB
+37133,0.2572817,Elemental Carbon portion of PM2.5-PRI,TON
+37133,16.77265,Nitrogen Oxides,TON
+37133,0.02202719,Sulfate Portion of PM2.5-PRI,TON
+37133,5.709614,Hexane,LB
+37133,12.133212,Propionaldehyde,LB
+37133,0.02523364,Benzo[b]Fluoranthene,LB
+37133,1.2622918,Acenaphthylene,LB
+37133,5.658438,"2,2,4-Trimethylpentane",LB
+37133,0.08826818,Manganese,LB
+37131,46.065,"1,3-Butadiene",LB
+37131,6.336248,Acrolein,LB
+37131,1061.6964,Toluene,LB
+37131,0.2883996,Anthracene,LB
+37131,0.4930934,Fluoranthene,LB
+37131,1.8307576,Phenanthrene,LB
+37131,17.489556,Naphthalene,LB
+37131,0.1555735,PM2.5 Primary (Filt + Cond),TON
+37123,4.152844e-05,Benz[a]Anthracene,LB
+37123,0.0002331526,Arsenic,LB
+37123,0.0001562325,Acenaphthene,LB
+37123,0.0007340576,Phenanthrene,LB
+37123,0.5144978,Carbon Monoxide,TON
+37123,7.815199e-07,Nitrate portion of PM2.5-PRI,TON
+37123,0.004523722,PM2.5 Primary (Filt + Cond),TON
+37117,27.15266,Xylenes (Mixed Isomers),LB
+37117,0.03986236,Benzo[b]Fluoranthene,LB
+37117,2.778624,Phenanthrene,LB
+37117,0.2690127,Methane,TON
+37117,1.098477,PM25-Primary from certain diesel engines,TON
+37111,1.723167e-05,Mercury,LB
+37111,21.64872,Acetaldehyde,LB
+37111,641.9703,Carbon Dioxide,TON
+37111,3.902698,Acrolein,LB
+37111,0.1794319,Anthracene,LB
+37111,0.002450564,"Benzo[g,h,i,]Perylene",LB
+37111,0.1424576,Styrene,LB
+37111,0.005474732,Anthracene,LB
+37111,0.11708096,Propionaldehyde,LB
+37111,0.02814076,Acenaphthylene,LB
+37111,0.003883226,Benz[a]Anthracene,LB
+37111,3.0034,Carbon Monoxide,TON
+37119,35.3001,Anthracene,LB
+37119,1.954101,Benzo[b]Fluoranthene,LB
+37119,57.28612,Acenaphthylene,LB
+37119,1.099393,Arsenic,LB
+37119,34.16514,Acenaphthene,LB
+37119,3.826443,Sulfur Dioxide,TON
+37119,4.54612,Sulfate Portion of PM2.5-PRI,TON
+37119,79.59801,Volatile Organic Compounds,TON
+37119,69024.74,"2,2,4-Trimethylpentane",LB
+37119,28.72124,Benz[a]Anthracene,LB
+37119,50782.26,Ethyl Benzene,LB
+37119,128.2283,"Benzo[g,h,i,]Perylene",LB
+37119,30.35968,Benzo[b]Fluoranthene,LB
+37119,11.94228,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.00767804,Ethyl Benzene,LB
+37019,0.04198656,Toluene,LB
+37019,1.9948198e-05,Fluoranthene,LB
+37019,0.01359504,Benzene,LB
+37017,0.1525562,Benzo[a]Pyrene,LB
+37017,0.003483908,Mercury,LB
+37017,0.0434406,Nickel,LB
+37017,0.0004692717,Nitrate portion of PM2.5-PRI,TON
+37017,0.08603341,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.004602167,Sulfate Portion of PM2.5-PRI,TON
+37017,11.425784,Styrene,LB
+37017,370.0294,Hexane,LB
+37195,0.0002650056,Mercury,LB
+37195,0.16470414,Nickel,LB
+37195,0.1622947,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.007824766,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,6.192018,Acenaphthylene,LB
+37195,87.61018,Acrolein,LB
+37195,70.98434,Xylenes (Mixed Isomers),LB
+37195,1099.2918,Formaldehyde,LB
+37187,8.00248,Ethyl Benzene,LB
+37187,5.205094,Carbon Monoxide,TON
+37187,0.5844015,PM25-Primary from certain diesel engines,TON
+37187,0.006554548,Nitrous Oxide,TON
+37187,0.05897005,Sulfate Portion of PM2.5-PRI,TON
+37167,80.23238,Ethyl Benzene,LB
+37167,82.62614,"1,3-Butadiene",LB
+37167,6.909482,Anthracene,LB
+37167,0.016084424,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,130.3586,Carbon Monoxide,TON
+37161,3.824618,Ethyl Benzene,LB
+37161,0.2751042,Anthracene,LB
+37157,533.3366,Benzene,LB
+37157,0.019237222,Nickel,LB
+37157,0.02949476,Arsenic,LB
+37157,89.74728,Acetaldehyde,LB
+37157,0.3231731,Ammonia,TON
+37157,0.08852819,Organic Carbon portion of PM2.5-PRI,TON
+37135,9.837088,Propionaldehyde,LB
+37135,4.733826e-05,Chromium (VI),LB
+37135,0.00540768,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.15407242,Chrysene,LB
+37135,0.2775896,Benz[a]Anthracene,LB
+37135,1.9176466,Phenanthrene,LB
+37135,0.05902233,Methane,TON
+37137,0.01769166,PM10-Primary from certain diesel engines,TON
+37137,0.03609182,Volatile Organic Compounds,TON
+37137,0.2191532,Ethyl Benzene,LB
+37137,0.0652384,Pyrene,LB
+37137,0.016167698,Benz[a]Anthracene,LB
+37137,0.7079484,Naphthalene,LB
+37131,0.5590898,Propionaldehyde,LB
+37131,0.0005718076,Manganese,LB
+37131,0.0004523702,Naphthalene,LB
+37131,0.0002177826,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.02194845,Volatile Organic Compounds,TON
+37129,0.2676378,Fluoranthene,LB
+37129,0.8448386,Acenaphthylene,LB
+37129,0.04371306,Chrysene,LB
+37129,0.0010770058,"Dibenzo[a,h]Anthracene",LB
+37129,0.04357398,Benz[a]Anthracene,LB
+37123,7.330274,Hexane,LB
+37123,0.0594768,Nickel,LB
+37123,3.140494,Phenanthrene,LB
+37123,0.002676376,Nitrate portion of PM2.5-PRI,TON
+37123,0.2340936,Organic Carbon portion of PM2.5-PRI,TON
+37117,2.794498,Styrene,LB
+37117,4.58576,Hexane,LB
+37117,0.006260674,"Dibenzo[a,h]Anthracene",LB
+37117,0.5567309,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.003581321,Nitrous Oxide,TON
+37117,0.8874066,PM2.5 Primary (Filt + Cond),TON
+37117,0.02459002,Sulfur Dioxide,TON
+37117,1.101138,Volatile Organic Compounds,TON
+37121,69.52084,Benzene,LB
+37121,9.170564,Volatile Organic Compounds,TON
+37105,3.748225,PM2.5 Primary (Filt + Cond),TON
+37105,3402.678,Ethyl Benzene,LB
+37105,12631.308,Xylenes (Mixed Isomers),LB
+37105,1.4969908,Arsenic,LB
+37103,1.245146,Anthracene,LB
+37103,28.5443,Carbon Monoxide,TON
+37103,0.06096296,Organic Carbon portion of PM2.5-PRI,TON
+37103,2.618422,Volatile Organic Compounds,TON
+37095,0.0005665619,Nitrogen Oxides,TON
+37095,0.007747388,Formaldehyde,LB
+37095,1.376931e-08,Mercury,LB
+37095,0.09331608,Carbon Dioxide,TON
+37093,0.002266932,Anthracene,LB
+37093,0.0006798206,Chrysene,LB
+37093,0.0006877022,Benz[a]Anthracene,LB
+37093,0.0001957714,Nickel,LB
+37093,56.69299,Carbon Dioxide,TON
+37093,0.002586345,Ammonia,TON
+37093,0.0006113111,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,75.66384,Hexane,LB
+37089,68.4911,"2,2,4-Trimethylpentane",LB
+37087,0.7809914,Pyrene,LB
+37087,2.364354e-05,Mercury,LB
+37087,8.13334,Naphthalene,LB
+37087,0.001060645,Nitrate portion of PM2.5-PRI,TON
+37087,0.2170952,PM2.5 Primary (Filt + Cond),TON
+37087,0.03983686,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,1.3421322,Anthracene,LB
+37083,0.2733762,Benzo[a]Pyrene,LB
+37083,5998.116,Carbon Dioxide,TON
+37083,0.11787794,Pyrene,LB
+37083,0.04086704,Benzo[k]Fluoranthene,LB
+37083,0.0207295,Manganese,LB
+37083,0.04261063,Nitrous Oxide,TON
+37085,0.0421639,Hexane,LB
+37085,0.07675724,Xylenes (Mixed Isomers),LB
+37085,3.02705e-08,Chromium (VI),LB
+37085,3.990052e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,4.336582e-05,Sulfur Dioxide,TON
+37075,0.198681,Pyrene,LB
+37075,2.67043,Xylenes (Mixed Isomers),LB
+37075,0.9675002,"2,2,4-Trimethylpentane",LB
+37075,0.02621098,Benz[a]Anthracene,LB
+37075,8.84377e-06,Mercury,LB
+37075,0.3312202,Phenanthrene,LB
+37075,0.2104868,Fluorene,LB
+37075,1.210327,"1,3-Butadiene",LB
+37075,0.03513831,PM25-Primary from certain diesel engines,TON
+37075,0.02743573,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.4396974,Propionaldehyde,LB
+37075,0.0438202,Acenaphthylene,LB
+37075,57.42901,Carbon Dioxide,TON
+37075,0.0705645,Nitrogen Oxides,TON
+37069,7.492754,"1,3-Butadiene",LB
+37069,0.00773888,Benzo[k]Fluoranthene,LB
+37069,5.984142e-05,Mercury,LB
+37069,0.012512704,Arsenic,LB
+37069,25.5273,Naphthalene,LB
+37069,4273.662,Carbon Dioxide,TON
+37069,1.427835,PM10 Primary (Filt + Cond),TON
+37069,0.03689435,Sulfur Dioxide,TON
+37067,72.56246,Ethyl Benzene,LB
+37067,317.8008,Toluene,LB
+37067,273.6808,Xylenes (Mixed Isomers),LB
+37067,91.82344,Benzene,LB
+37053,0.03543538,Fluorene,LB
+37053,0.0008296918,Ammonia,TON
+37053,0.1807274,Nitrogen Oxides,TON
+37053,0.12106502,"2,2,4-Trimethylpentane",LB
+37153,0.006126364,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.19067502,Styrene,LB
+37153,0.01243111,Pyrene,LB
+37153,0.03712882,Phenanthrene,LB
+37153,0.013352494,Fluorene,LB
+37153,8.47713,Carbon Monoxide,TON
+37153,0.01170164,Nitrous Oxide,TON
+37153,0.0399827,Ammonia,TON
+37113,0.00999823,Fluoranthene,LB
+37113,0.00930833,Benzo[a]Pyrene,LB
+37113,76.8525,Acetaldehyde,LB
+37113,0.002446161,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.0003525184,Sulfate Portion of PM2.5-PRI,TON
+37113,0.3811337,Volatile Organic Compounds,TON
+37113,0.17679232,Styrene,LB
+37113,4.859276,Hexane,LB
+37113,0.005530578,Anthracene,LB
+37083,14.874474,Xylenes (Mixed Isomers),LB
+37083,0.008054974,Benzo[b]Fluoranthene,LB
+37083,0.012798588,Fluoranthene,LB
+37083,1.043642,Nitrogen Oxides,TON
+37083,0.005948768,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.3891862,Pyrene,LB
+37169,8.884066e-05,Nitrate portion of PM2.5-PRI,TON
+37169,0.00013063456,Benzo[k]Fluoranthene,LB
+37169,0.04520242,Benz[a]Anthracene,LB
+37169,8.025764,Benzene,LB
+37169,0.012945136,Manganese,LB
+37169,0.013588416,Nickel,LB
+37169,0.7093172,Phenanthrene,LB
+37169,0.01130843,PM25-Primary from certain diesel engines,TON
+37157,2.76886,"1,3-Butadiene",LB
+37157,6.928186,Acrolein,LB
+37157,0.008509608,Benzo[b]Fluoranthene,LB
+37157,0.0285256,Benzo[a]Pyrene,LB
+37157,2.291364,"2,2,4-Trimethylpentane",LB
+37157,0.11614764,Benz[a]Anthracene,LB
+37157,0.8811396,Phenanthrene,LB
+37157,3.612918,Carbon Monoxide,TON
+37157,1279.616,Carbon Dioxide,TON
+37145,7177.928,Ethyl Benzene,LB
+37145,1.392607,Manganese,LB
+37145,12.194592,Acenaphthene,LB
+37145,66.0181,Phenanthrene,LB
+37199,2.769086,Propionaldehyde,LB
+37199,2.151629,Carbon Monoxide,TON
+37199,0.005540111,Ammonia,TON
+37199,0.1136854,PM2.5 Primary (Filt + Cond),TON
+37199,0.002363441,Sulfur Dioxide,TON
+37199,4.380584,Benzene,LB
+37199,0.001284216,Arsenic,LB
+37199,0.1604498,Acenaphthene,LB
+37199,0.4797142,Phenanthrene,LB
+37199,5.077278,Naphthalene,LB
+37199,1.852383,Carbon Monoxide,TON
+37199,3.603049,Nitrogen Oxides,TON
+37199,0.2758144,Fluoranthene,LB
+37199,0.06709222,Benz[a]Anthracene,LB
+37193,0.2563566,Propionaldehyde,LB
+37193,0.002044528,Pyrene,LB
+37193,0.0010989808,Benzo[b]Fluoranthene,LB
+37193,3.320004,Benzene,LB
+37193,9.697352e-05,Mercury,LB
+37193,0.00246214,Nitrous Oxide,TON
+37193,76.25212,Acetaldehyde,LB
+37193,7.540807,Carbon Monoxide,TON
+37193,0.0003926463,Nitrate portion of PM2.5-PRI,TON
+37193,9.334818,Propionaldehyde,LB
+37193,0.00257585,"Benzo[g,h,i,]Perylene",LB
+37193,175.31162,Formaldehyde,LB
+37193,0.0006726586,Arsenic,LB
+37193,0.05022988,Fluorene,LB
+37193,149.8011,Carbon Dioxide,TON
+37193,0.005509013,Ammonia,TON
+37185,0.1313092,Naphthalene,LB
+37185,1.5495434,Ethyl Benzene,LB
+37185,0.06146806,Styrene,LB
+37185,0.003758248,Fluoranthene,LB
+37185,0.0008486948,Chrysene,LB
+37189,10.834146,"1,3-Butadiene",LB
+37189,25.924,Acrolein,LB
+37189,0.523574,Chrysene,LB
+37189,0.011198672,"Dibenzo[a,h]Anthracene",LB
+37189,0.04755746,Nickel,LB
+37189,141.75464,Acetaldehyde,LB
+37189,4814.471,Carbon Dioxide,TON
+37189,0.3873478,Organic Carbon portion of PM2.5-PRI,TON
+37181,5603.776,Hexane,LB
+37181,9.324522,Pyrene,LB
+37181,1.9071478,Benzo[k]Fluoranthene,LB
+37181,2.81616,Benzo[a]Pyrene,LB
+37181,7.928963,Ammonia,TON
+37181,8.575348,PM10 Primary (Filt + Cond),TON
+37051,0.0018222924,Benzo[k]Fluoranthene,LB
+37051,0.001246752,Acenaphthene,LB
+37051,0.007230482,Phenanthrene,LB
+37051,1.996769,Carbon Monoxide,TON
+37051,0.02823482,PM10 Primary (Filt + Cond),TON
+37041,4.80339,Toluene,LB
+37041,0.0018201094,Benzo[k]Fluoranthene,LB
+37041,7.699824e-05,"Dibenzo[a,h]Anthracene",LB
+37041,0.001988431,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.0005550118,Chrysene,LB
+37031,0.001370313,Benzo[a]Pyrene,LB
+37031,0.0006293402,Benz[a]Anthracene,LB
+37031,0.03247584,Naphthalene,LB
+37031,3.076326,Ethyl Benzene,LB
+37097,0.01816586,"Benzo[g,h,i,]Perylene",LB
+37097,0.0001566558,"Dibenzo[a,h]Anthracene",LB
+37097,0.000391122,Mercury,LB
+37097,0.004876952,Nickel,LB
+37097,0.004810238,Fluorene,LB
+37097,0.12412412,Naphthalene,LB
+37089,0.03596916,PM2.5 Primary (Filt + Cond),TON
+37089,0.6551015,Volatile Organic Compounds,TON
+37089,1.1924992,"1,3-Butadiene",LB
+37089,0.009091898,Anthracene,LB
+37087,2.13871,Benzene,LB
+37169,0.03325486,Benzo[b]Fluoranthene,LB
+37169,1.3546008,Fluoranthene,LB
+37169,0.00466583,Benzo[k]Fluoranthene,LB
+37169,1.1045546,Acenaphthylene,LB
+37169,11.088688,Propionaldehyde,LB
+37169,0.6573664,Acenaphthene,LB
+37165,2.8201e-05,Chromium (VI),LB
+37165,0.015625756,Benz[a]Anthracene,LB
+37165,0.0002827214,Mercury,LB
+37165,0.003525204,Nickel,LB
+37165,0.00503682,Elemental Carbon portion of PM2.5-PRI,TON
+37165,8.969627e-05,Nitrate portion of PM2.5-PRI,TON
+37165,2.199114,Nitrogen Oxides,TON
+37165,0.0345738,PM2.5 Primary (Filt + Cond),TON
+37163,0.8429812,Acrolein,LB
+37163,0.0005620232,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.05875628,Acenaphthylene,LB
+37163,0.014411744,Chrysene,LB
+37163,104.919,Carbon Dioxide,TON
+37157,5.020768e-05,Chromium (VI),LB
+37157,0.006427018,Benzo[b]Fluoranthene,LB
+37157,1.6803578,Phenanthrene,LB
+37157,1300.717,Carbon Dioxide,TON
+37157,0.1917122,PM25-Primary from certain diesel engines,TON
+37157,0.1424654,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.01618399,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,1.086831,Volatile Organic Compounds,TON
+37157,0.004072933,Nitrate portion of PM2.5-PRI,TON
+37157,58.51356,Hexane,LB
+37157,129.45204,Propionaldehyde,LB
+37157,10.676432,Fluoranthene,LB
+37157,0.2004404,Benzo[a]Pyrene,LB
+37157,0.008227998,"Dibenzo[a,h]Anthracene",LB
+37157,1.7093434,Benz[a]Anthracene,LB
+37157,0.30902,Nickel,LB
+37157,0.08353976,Arsenic,LB
+37157,12.332364,"1,3-Butadiene",LB
+37157,0.0233784,Manganese,LB
+37157,0.004312084,Nickel,LB
+37157,0.02782792,Sulfur Dioxide,TON
+37147,0.9110218,"1,3-Butadiene",LB
+37147,0.10372886,Anthracene,LB
+37147,0.3046724,Pyrene,LB
+37147,0.1703189,Volatile Organic Compounds,TON
+37135,0.07128412,Manganese,LB
+37135,0.007054602,Nitrous Oxide,TON
+37135,13.52454,Propionaldehyde,LB
+37135,2.713002,Pyrene,LB
+37135,5.486972e-05,Chromium (VI),LB
+37135,0.015540848,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.3911828,Chrysene,LB
+37119,60114.22,Ethyl Benzene,LB
+37119,1738.427,Volatile Organic Compounds,TON
+37117,0.09747652,Hexane,LB
+37117,5.61657e-05,Benzo[a]Pyrene,LB
+37117,0.03537282,Acetaldehyde,LB
+37117,0.0006242782,Phenanthrene,LB
+37117,0.005951286,Naphthalene,LB
+37107,1.0274314,"1,3-Butadiene",LB
+37107,1.0450248e-05,Chromium (VI),LB
+37107,3.17446,Benzene,LB
+37107,0.10374254,Acenaphthene,LB
+37107,416.1786,Carbon Dioxide,TON
+37097,0.6190284,Acrolein,LB
+37097,0.04624924,Fluoranthene,LB
+37097,0.01101837,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.5094046,Ethyl Benzene,LB
+37085,1.0175866,Toluene,LB
+37085,0.08565668,Acenaphthylene,LB
+37085,15.310638,Formaldehyde,LB
+37085,0.010448568,Benzo[a]Pyrene,LB
+37085,0.0017531826,Nickel,LB
+37085,0.1839547,Phenanthrene,LB
+37085,0.005235414,Methane,TON
+37085,0.643679,Nitrogen Oxides,TON
+37143,766.6866,Ethyl Benzene,LB
+37143,21.26508,Propionaldehyde,LB
+37143,0.355091,Benzo[k]Fluoranthene,LB
+37143,0.014782352,Mercury,LB
+37143,261.7631,Carbon Monoxide,TON
+37143,0.5097671,Nitrous Oxide,TON
+37137,0.0724366,Formaldehyde,LB
+37137,0.0699688,Acetaldehyde,LB
+37137,5.086762e-05,Nitrous Oxide,TON
+37137,3.78939e-05,Ammonia,TON
+37137,3.003824e-05,Sulfur Dioxide,TON
+37133,0.019151124,"Dibenzo[a,h]Anthracene",LB
+37133,350.2282,Acetaldehyde,LB
+37133,0.2763878,Sulfate Portion of PM2.5-PRI,TON
+37127,10.940918,"1,3-Butadiene",LB
+37127,84.1014,Hexane,LB
+37127,1.7468672,Propionaldehyde,LB
+37127,0.006170464,Nickel,LB
+37127,4.296067,Nitrogen Oxides,TON
+37117,18.207258,Acrolein,LB
+37117,18.381164,Toluene,LB
+37117,0.00881963,"Benzo[g,h,i,]Perylene",LB
+37117,0.010642992,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.005810268,Benzo[k]Fluoranthene,LB
+37117,242.4898,Formaldehyde,LB
+37117,0.7092414,Acenaphthene,LB
+37117,2.668516,Phenanthrene,LB
+37115,1.0546372e-05,Chromium (VI),LB
+37115,51.54772,Formaldehyde,LB
+37115,5.830452,Naphthalene,LB
+37115,0.1221476,PM10-Primary from certain diesel engines,TON
+37115,0.001054691,Nitrous Oxide,TON
+37115,0.00671078,Ammonia,TON
+37115,0.1159639,PM2.5 Primary (Filt + Cond),TON
+37097,7.098934,PM2.5 Primary (Filt + Cond),TON
+37097,0.06287046,"Benzo[g,h,i,]Perylene",LB
+37097,0.04261698,"Dibenzo[a,h]Anthracene",LB
+37097,18.67797,Phenanthrene,LB
+37105,13.310054,Styrene,LB
+37105,0.9523952,Pyrene,LB
+37105,0.235233,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.006007878,Mercury,LB
+37105,16.37154,Nitrogen Oxides,TON
+37105,0.9449364,PM10 Primary (Filt + Cond),TON
+37079,0.802318,Volatile Organic Compounds,TON
+37073,0.6402934,Toluene,LB
+37073,0.07008656,Fluoranthene,LB
+37073,8.884192,Formaldehyde,LB
+37073,0.007293098,Benzo[a]Pyrene,LB
+37073,0.2282852,"2,2,4-Trimethylpentane",LB
+37073,0.3407089,Nitrogen Oxides,TON
+37073,0.004397692,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.1850656,Styrene,LB
+37073,1.131409,Acrolein,LB
+37073,0.0736744,Fluorene,LB
+37073,1.267846,Carbon Monoxide,TON
+37073,0.002312061,Ammonia,TON
+37073,0.002959832,PM2.5 Primary (Filt + Cond),TON
+37077,13.702828,Hexane,LB
+37077,546.254,Formaldehyde,LB
+37077,0.2746406,Benzo[a]Pyrene,LB
+37077,0.9455614,Benz[a]Anthracene,LB
+37077,0.0002947846,Mercury,LB
+37077,3.205192,Fluorene,LB
+37077,0.02089307,Nitrous Oxide,TON
+37077,64.71804,Nitrogen Oxides,TON
+37077,3.271785,PM10 Primary (Filt + Cond),TON
+37053,5.330712,Naphthalene,LB
+37053,0.008422199,Ammonia,TON
+37053,0.0003302284,Nitrate portion of PM2.5-PRI,TON
+37053,0.003243793,Sulfate Portion of PM2.5-PRI,TON
+37053,1.1587206e-05,Chromium (VI),LB
+37053,0.275718,Acenaphthylene,LB
+37061,5838.34,Formaldehyde,LB
+37061,0.1416348,"Dibenzo[a,h]Anthracene",LB
+37061,4708.223,Carbon Monoxide,TON
+37061,7.313748,Nitrous Oxide,TON
+37061,3.427029,Organic Carbon portion of PM2.5-PRI,TON
+37061,13.11153,PM10 Primary (Filt + Cond),TON
+37049,0.000623174,Mercury,LB
+37049,0.09858336,Ammonia,TON
+37049,0.02558595,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,2.587834,Styrene,LB
+37049,13.663272,"1,3-Butadiene",LB
+37047,37.5867,Propionaldehyde,LB
+37047,7.306822,Pyrene,LB
+37047,0.03294968,"Benzo[g,h,i,]Perylene",LB
+37047,9622.618,Carbon Dioxide,TON
+37047,0.07893824,Sulfate Portion of PM2.5-PRI,TON
+37039,4.783198e-05,Benz[a]Anthracene,LB
+37039,1.273186e-06,Nickel,LB
+37039,78.18954,Carbon Dioxide,TON
+37043,601.0304,Ethyl Benzene,LB
+37043,0.404785,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,259.496,Formaldehyde,LB
+37043,4.87695,Phenanthrene,LB
+37043,1.8151858,Fluorene,LB
+37033,0.14217026,Toluene,LB
+37033,0.007412158,Nitrous Oxide,TON
+37033,0.002076846,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.00319271,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.0003166393,Sulfur Dioxide,TON
+37033,0.016587376,Benzo[a]Pyrene,LB
+37033,0.06006546,PM10-Primary from certain diesel engines,TON
+37033,0.05525954,PM25-Primary from certain diesel engines,TON
+37033,0.0223439,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.001607482,Sulfur Dioxide,TON
+37033,0.001741729,Sulfate Portion of PM2.5-PRI,TON
+37033,0.6387322,Ethyl Benzene,LB
+37029,0.3355248,Anthracene,LB
+37029,5.074446,Propionaldehyde,LB
+37029,0.962507,Pyrene,LB
+37029,0.07108284,Benzo[a]Pyrene,LB
+37029,0.6753248,Fluorene,LB
+37027,0.17463384,Pyrene,LB
+37027,2.180188e-05,Chromium (VI),LB
+37027,98.504,"2,2,4-Trimethylpentane",LB
+37027,111.59956,Benzene,LB
+37027,0.0204119,Manganese,LB
+37027,0.01159181,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,2002.332,"1,3-Butadiene",LB
+37129,59879.72,Toluene,LB
+37129,18.281276,Fluoranthene,LB
+37129,643.2508,Naphthalene,LB
+37129,0.3009367,Sulfate Portion of PM2.5-PRI,TON
+37021,0.4574128,Styrene,LB
+37021,0.11107974,Anthracene,LB
+37021,0.0721351,Benz[a]Anthracene,LB
+37021,0.02974497,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.0012542446,Phenanthrene,LB
+37055,0.0006417345,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.02715448,Ethyl Benzene,LB
+37055,0.00016910604,Anthracene,LB
+37055,0.00011322658,Chrysene,LB
+37055,0.00456103,Manganese,LB
+37151,5246.546,"1,3-Butadiene",LB
+37151,384847.5,Carbon Dioxide,TON
+37151,18.72328,Nitrous Oxide,TON
+37151,4.215759,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,2071.668,Toluene,LB
+37139,0.5423076,Anthracene,LB
+37139,0.15974522,Chrysene,LB
+37139,639.7498,Benzene,LB
+37139,135.3653,Carbon Monoxide,TON
+37139,0.006141108,Sulfate Portion of PM2.5-PRI,TON
+37101,0.01002066,Sulfur Dioxide,TON
+37101,142.51854,Toluene,LB
+37101,0.016654512,Benzo[k]Fluoranthene,LB
+37101,9.442972,Acetaldehyde,LB
+37101,0.16558822,Phenanthrene,LB
+37117,324.5118,"2,2,4-Trimethylpentane",LB
+37117,459.1518,Benzene,LB
+37117,11.009654,Styrene,LB
+37117,0.9418836,Fluorene,LB
+37117,24.14034,Naphthalene,LB
+37189,0.0005903196,Benz[a]Anthracene,LB
+37189,4.77471e-06,Nitrate portion of PM2.5-PRI,TON
+37189,0.06169705,Nitrogen Oxides,TON
+37189,0.002019163,PM2.5 Primary (Filt + Cond),TON
+37185,3.57439,Xylenes (Mixed Isomers),LB
+37185,0.08213872,Chrysene,LB
+37185,56.5567,Formaldehyde,LB
+37185,1.3918046,"2,2,4-Trimethylpentane",LB
+37185,0.01103392,Manganese,LB
+37185,0.07233813,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.0007467636,Nitrate portion of PM2.5-PRI,TON
+37185,0.05907339,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.6684888,Phenanthrene,LB
+37169,451.1166,Carbon Dioxide,TON
+37169,0.0003058074,Benzo[k]Fluoranthene,LB
+37169,0.02599222,Chrysene,LB
+37169,0.007379908,Benzo[a]Pyrene,LB
+37127,1807.5924,Xylenes (Mixed Isomers),LB
+37127,0.7154396,Fluoranthene,LB
+37127,0.0053644,"Dibenzo[a,h]Anthracene",LB
+37127,0.3532114,PM10 Primary (Filt + Cond),TON
+37127,0.06521571,Sulfur Dioxide,TON
+37133,0.0001484491,Fluorene,LB
+37133,0.008250859,Ammonia,TON
+37133,6.654114e-06,Nitrate portion of PM2.5-PRI,TON
+37133,0.001463855,Sulfur Dioxide,TON
+37133,1.0041498e-07,Chromium (VI),LB
+37133,679.8066,Ethyl Benzene,LB
+37133,0.001216313,Chromium (VI),LB
+37133,0.415239,Benzo[a]Pyrene,LB
+37133,0.2331352,Arsenic,LB
+37133,6.176348,Phenanthrene,LB
+37133,282.261,Carbon Monoxide,TON
+37133,0.1983575,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.4594135,Sulfur Dioxide,TON
+37127,25.87048,Xylenes (Mixed Isomers),LB
+37127,0.0017034564,Benzo[k]Fluoranthene,LB
+37127,0.12957816,Chrysene,LB
+37127,32.20008,Benzene,LB
+37127,37.64048,Naphthalene,LB
+37127,0.409915,Styrene,LB
+37127,0.03523882,"Benzo[g,h,i,]Perylene",LB
+37127,19.340748,"2,2,4-Trimethylpentane",LB
+37127,194.3391,Carbon Dioxide,TON
+37127,0.004012379,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.08737502,Formaldehyde,LB
+37127,0.0014650694,Phenanthrene,LB
+37127,2.69482e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.14515488,Ethyl Benzene,LB
+37121,0.05845712,Styrene,LB
+37121,0.0001816514,"Benzo[g,h,i,]Perylene",LB
+37121,0.0002239798,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.11381924,"2,2,4-Trimethylpentane",LB
+37121,0.02710598,PM10 Primary (Filt + Cond),TON
+37121,0.0007897531,Sulfate Portion of PM2.5-PRI,TON
+37121,0.02441144,Volatile Organic Compounds,TON
+37117,0.002941756,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.000299428,Arsenic,LB
+37117,1.290093e-06,Nitrate portion of PM2.5-PRI,TON
+37117,0.19145862,Xylenes (Mixed Isomers),LB
+37111,0.003139568,Anthracene,LB
+37111,0.005408014,Fluoranthene,LB
+37111,1.1715466,Formaldehyde,LB
+37111,0.0019815856,Benzo[a]Pyrene,LB
+37111,0.003640928,Acenaphthene,LB
+37125,4.623576,Formaldehyde,LB
+37125,8.019424e-05,"Dibenzo[a,h]Anthracene",LB
+37125,0.0009913354,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.001218958,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,111.4418,Toluene,LB
+37125,0.07060232,Acenaphthylene,LB
+37123,4.440922,Fluoranthene,LB
+37123,13.685268,Acenaphthylene,LB
+37123,0.0349795,"Dibenzo[a,h]Anthracene",LB
+37123,2771.682,"2,2,4-Trimethylpentane",LB
+37123,0.697758,Manganese,LB
+37123,0.03597174,Mercury,LB
+37123,1078.1748,Acetaldehyde,LB
+37107,0.017581702,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.014609938,Benzo[k]Fluoranthene,LB
+37107,20.4557,Acetaldehyde,LB
+37107,0.12472964,Fluorene,LB
+37107,0.005206438,Elemental Carbon portion of PM2.5-PRI,TON
+37107,5.798911e-05,Nitrate portion of PM2.5-PRI,TON
+37107,1.4484696,Styrene,LB
+37107,260.0562,Toluene,LB
+37107,0.07250469,PM10 Primary (Filt + Cond),TON
+37107,0.02352323,PM2.5 Primary (Filt + Cond),TON
+37107,1.262183,Volatile Organic Compounds,TON
+37103,3.019174e-05,Benz[a]Anthracene,LB
+37103,0.0006337612,Naphthalene,LB
+37103,0.003269805,PM2.5 Primary (Filt + Cond),TON
+37097,0.1590216,Ethyl Benzene,LB
+37097,0.00014040258,Benz[a]Anthracene,LB
+37097,0.001320368,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.0002416475,Sulfate Portion of PM2.5-PRI,TON
+37091,6.83243,Acrolein,LB
+37091,0.089044,Benzo[b]Fluoranthene,LB
+37091,0.0277162,Nickel,LB
+37091,0.0424986,Arsenic,LB
+37091,0.0003367466,Nitrate portion of PM2.5-PRI,TON
+37091,5.969711,Volatile Organic Compounds,TON
+37089,355.1594,Acetaldehyde,LB
+37089,72.618,Toluene,LB
+37089,38.5419,Propionaldehyde,LB
+37089,0.04254308,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.7425549,Methane,TON
+37089,3.267817,PM10-Primary from certain diesel engines,TON
+37089,73.57385,Nitrogen Oxides,TON
+37087,40.2909,Propionaldehyde,LB
+37087,0.02256626,"Dibenzo[a,h]Anthracene",LB
+37087,0.4520332,Manganese,LB
+37087,2.390688,Acenaphthene,LB
+37087,4.506494,Volatile Organic Compounds,TON
+37073,6.119786,Acrolein,LB
+37073,4.201052,Propionaldehyde,LB
+37073,0.6267524,Fluoranthene,LB
+37073,7.275124,Benzene,LB
+37073,0.012546506,Nickel,LB
+37073,0.3566276,Styrene,LB
+37073,2.032408,"1,3-Butadiene",LB
+37073,4.72059,Formaldehyde,LB
+37073,13.961912,"2,2,4-Trimethylpentane",LB
+37073,0.003452806,Manganese,LB
+37073,0.03068154,Fluorene,LB
+37073,0.001412886,Elemental Carbon portion of PM2.5-PRI,TON
+37073,1.570623e-05,Nitrate portion of PM2.5-PRI,TON
+37067,0.4677056,Methane,TON
+37067,0.02633167,Elemental Carbon portion of PM2.5-PRI,TON
+37067,2.777816,Pyrene,LB
+37067,0.0002771688,Chromium (VI),LB
+37067,636.8298,Formaldehyde,LB
+37067,0.3455826,Benz[a]Anthracene,LB
+37067,56.38966,Benzene,LB
+37059,39.82222,Xylenes (Mixed Isomers),LB
+37059,44.67422,Benzene,LB
+37059,15.03976,Carbon Monoxide,TON
+37057,6.807534,"1,3-Butadiene",LB
+37057,17.547322,Acrolein,LB
+37057,232.742,Formaldehyde,LB
+37057,0.002708026,"Dibenzo[a,h]Anthracene",LB
+37051,21.58623,Volatile Organic Compounds,TON
+37051,0.12711468,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,5.687462,Benz[a]Anthracene,LB
+37051,0.0016496088,Mercury,LB
+37051,0.4540336,Nickel,LB
+37051,42.3982,Phenanthrene,LB
+37051,2.893881,Organic Carbon portion of PM2.5-PRI,TON
+37049,14.978568,"1,3-Butadiene",LB
+37049,4.77796,Pyrene,LB
+37049,0.02696938,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.07268504,Nickel,LB
+37049,6.012628,Phenanthrene,LB
+37049,55.97614,Naphthalene,LB
+37049,0.02139524,Nitrous Oxide,TON
+37049,0.006283202,Nitrate portion of PM2.5-PRI,TON
+37049,1.96419,PM10 Primary (Filt + Cond),TON
+37049,0.06403959,Sulfur Dioxide,TON
+37039,30.87238,"1,3-Butadiene",LB
+37039,73.67502,Acrolein,LB
+37039,58.53414,Toluene,LB
+37039,0.011729174,"Benzo[g,h,i,]Perylene",LB
+37039,0.06081792,Benzo[a]Pyrene,LB
+37039,3.138228,Acenaphthene,LB
+37039,101.8277,Naphthalene,LB
+37039,0.249967,Methane,TON
+37039,20.14928,"2,2,4-Trimethylpentane",LB
+37039,8.481664,Benzene,LB
+37031,0.03444034,Manganese,LB
+37031,0.1605748,Methane,TON
+37031,0.003577433,Sulfate Portion of PM2.5-PRI,TON
+37025,16.08699,Xylenes (Mixed Isomers),LB
+37025,0.006107032,"Benzo[g,h,i,]Perylene",LB
+37025,0.02494152,Benzo[b]Fluoranthene,LB
+37025,0.003447626,Benzo[k]Fluoranthene,LB
+37025,1.2176612,Acenaphthylene,LB
+37025,0.7243466,Acenaphthene,LB
+37025,0.4491831,PM25-Primary from certain diesel engines,TON
+37025,0.0249403,Sulfur Dioxide,TON
+37025,7.532434,Ethyl Benzene,LB
+37085,0.6952378,Anthracene,LB
+37085,0.001253263,"Dibenzo[a,h]Anthracene",LB
+37085,0.2613691,PM25-Primary from certain diesel engines,TON
+37085,0.06849282,Ammonia,TON
+37085,3435.258,Hexane,LB
+37085,8700.778,Xylenes (Mixed Isomers),LB
+37075,0.0016354258,Anthracene,LB
+37075,1.5715758,"2,2,4-Trimethylpentane",LB
+37075,0.003881498,Fluorene,LB
+37075,0.00250821,Methane,TON
+37063,4.933772,Styrene,LB
+37063,8.693676,Hexane,LB
+37063,1.9039782,Acenaphthylene,LB
+37063,345.9142,Formaldehyde,LB
+37063,37.90538,Naphthalene,LB
+37063,4917.666,Carbon Dioxide,TON
+37063,0.002332205,Nitrate portion of PM2.5-PRI,TON
+37063,0.7983503,PM2.5 Primary (Filt + Cond),TON
+37063,0.03755742,Sulfate Portion of PM2.5-PRI,TON
+37063,1.999389,Volatile Organic Compounds,TON
+37059,1.1022058,Hexane,LB
+37061,0.4150812,Nitrogen Oxides,TON
+37061,0.003444355,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,2.27754,Hexane,LB
+37055,0.01255945,Acenaphthylene,LB
+37055,0.0007027928,Chrysene,LB
+37055,2.308,"2,2,4-Trimethylpentane",LB
+37055,0.1432508,Naphthalene,LB
+37053,0.00016578134,Chrysene,LB
+37053,0.0003253312,Benzo[a]Pyrene,LB
+37053,2.73104e-05,Manganese,LB
+37053,0.000375968,Acenaphthene,LB
+37053,0.019546852,Naphthalene,LB
+37039,0.1713384,Styrene,LB
+37039,0.01196184,Pyrene,LB
+37039,0.002009962,Chrysene,LB
+37039,0.0002035034,Nickel,LB
+37039,0.005441502,Methane,TON
+37039,0.000563279,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.08276795,Nitrogen Oxides,TON
+37033,0.00406124,Pyrene,LB
+37033,4.868382e-07,Chromium (VI),LB
+37033,0.0006216948,Benzo[b]Fluoranthene,LB
+37033,0.01116194,Acenaphthylene,LB
+37033,0.0006397108,Benz[a]Anthracene,LB
+37033,0.8778742,Acetaldehyde,LB
+37023,2.655678,Styrene,LB
+37023,15.031492,Acrolein,LB
+37023,0.002835716,"Benzo[g,h,i,]Perylene",LB
+37023,83.2587,Acetaldehyde,LB
+37023,20.96868,Naphthalene,LB
+37023,0.1408843,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.004321246,Nitrous Oxide,TON
+37023,0.0004519417,Nitrate portion of PM2.5-PRI,TON
+37023,17.204592,Fluorene,LB
+37023,441.2796,Naphthalene,LB
+37023,2060.71,Carbon Monoxide,TON
+37023,170783,Carbon Dioxide,TON
+37023,4.238378,Nitrous Oxide,TON
+37023,14.56545,Ammonia,TON
+37023,6120.654,Ethyl Benzene,LB
+37023,3.315024,Benzo[b]Fluoranthene,LB
+37023,12.691852,Fluoranthene,LB
+37023,2.99184,Chrysene,LB
+37023,8437.426,"2,2,4-Trimethylpentane",LB
+37023,3.167364,Benz[a]Anthracene,LB
+37173,0.9284458,PM2.5 Primary (Filt + Cond),TON
+37173,6.568156,Acenaphthylene,LB
+37167,404.757,Styrene,LB
+37167,5.194814,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,4.190068,Benzo[b]Fluoranthene,LB
+37167,5.234732,Benzo[a]Pyrene,LB
+37167,2.687908,Manganese,LB
+37167,0.01596611,Nitrate portion of PM2.5-PRI,TON
+37167,457.7695,Nitrogen Oxides,TON
+37159,0.02581092,Manganese,LB
+37159,0.003379452,Arsenic,LB
+37159,0.4757566,Phenanthrene,LB
+37159,1260.623,Carbon Dioxide,TON
+37159,0.205714,PM10-Primary from certain diesel engines,TON
+37159,0.001625023,Nitrous Oxide,TON
+37159,0.3066239,PM10 Primary (Filt + Cond),TON
+37159,0.3732108,Pyrene,LB
+37159,1.4939808e-05,Chromium (VI),LB
+37159,0.2024272,PM2.5 Primary (Filt + Cond),TON
+37155,0.00013376252,Anthracene,LB
+37155,0.2060062,Xylenes (Mixed Isomers),LB
+37155,5.3782e-05,Benz[a]Anthracene,LB
+37155,0.0011298224,Naphthalene,LB
+37155,0.6858135,Carbon Monoxide,TON
+37155,0.0005338796,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.002757968,Ammonia,TON
+37155,1.440622e-06,Nitrate portion of PM2.5-PRI,TON
+37155,0.005990205,PM2.5 Primary (Filt + Cond),TON
+37149,17.653906,Styrene,LB
+37149,74.5901,Toluene,LB
+37149,0.3537262,Chrysene,LB
+37149,1170.9418,Formaldehyde,LB
+37149,0.783997,Benz[a]Anthracene,LB
+37149,112.4571,Benzene,LB
+37149,0.13923998,Manganese,LB
+37149,516.2112,Acetaldehyde,LB
+37149,130.61306,Naphthalene,LB
+37149,0.3088257,Methane,TON
+37149,0.902597,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.01658448,Nitrous Oxide,TON
+37149,0.001532781,Nitrate portion of PM2.5-PRI,TON
+37161,11.107592,Xylenes (Mixed Isomers),LB
+37161,0.004677396,Benzo[k]Fluoranthene,LB
+37161,0.03446886,Manganese,LB
+37161,0.00462492,Arsenic,LB
+37161,1.9228834,Phenanthrene,LB
+37161,0.005318594,Nitrous Oxide,TON
+37161,0.9130691,Volatile Organic Compounds,TON
+37137,4.32956,Toluene,LB
+37137,0.01997044,Propionaldehyde,LB
+37137,1.277404e-06,Nitrate portion of PM2.5-PRI,TON
+37137,0.3240482,Formaldehyde,LB
+37131,0.07421796,Pyrene,LB
+37131,0.0213967,Benzo[b]Fluoranthene,LB
+37131,0.0213967,Benzo[k]Fluoranthene,LB
+37131,0.01303162,Manganese,LB
+37131,0.00296584,Nickel,LB
+37131,0.006663664,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.03559587,Ammonia,TON
+37131,0.0117439,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,4.61962,"1,3-Butadiene",LB
+37117,0.5834504,Acenaphthylene,LB
+37117,0.0005282952,Mercury,LB
+37117,28.02038,Acetaldehyde,LB
+37107,26.63082,Hexane,LB
+37107,0.861681,Benz[a]Anthracene,LB
+37107,1.272534,PM10 Primary (Filt + Cond),TON
+37107,4.713484e-05,"Dibenzo[a,h]Anthracene",LB
+37107,1.7709898,Acetaldehyde,LB
+37107,0.003032376,PM2.5 Primary (Filt + Cond),TON
+37105,11055.206,Toluene,LB
+37105,1955.6498,Hexane,LB
+37099,0.07753058,Chrysene,LB
+37099,0.02490178,Benzo[a]Pyrene,LB
+37099,0.157642,Benz[a]Anthracene,LB
+37099,18.235246,Benzene,LB
+37099,1398.981,Carbon Dioxide,TON
+37099,0.2186885,PM25-Primary from certain diesel engines,TON
+37099,0.0004766447,Nitrate portion of PM2.5-PRI,TON
+37099,0.0018921102,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.00608593,Manganese,LB
+37093,0.03946456,PM25-Primary from certain diesel engines,TON
+37087,3.504851,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,13634.83,Ethyl Benzene,LB
+37087,15961.258,Hexane,LB
+37087,7382.96,Formaldehyde,LB
+37087,7.637742,Benz[a]Anthracene,LB
+37085,0.0817855,Anthracene,LB
+37085,0.14042342,Fluoranthene,LB
+37085,0.0459886,Benzo[a]Pyrene,LB
+37085,0.03500902,Manganese,LB
+37085,0.06003597,PM2.5 Primary (Filt + Cond),TON
+37081,29.3036,"2,2,4-Trimethylpentane",LB
+37081,90.10537,Carbon Dioxide,TON
+37081,0.01234088,Nitrous Oxide,TON
+37081,0.009006732,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.00934116,Ethyl Benzene,LB
+37075,0.06194228,Acrolein,LB
+37075,1.5377132e-05,Benz[a]Anthracene,LB
+37075,0.0009443324,Chrysene,LB
+37075,0.0004842172,Benzo[a]Pyrene,LB
+37075,1.9739058e-05,"Dibenzo[a,h]Anthracene",LB
+37075,1.3194906e-07,Mercury,LB
+37075,0.002150007,PM10 Primary (Filt + Cond),TON
+37047,3.250986,Ethyl Benzene,LB
+37047,25.93856,Toluene,LB
+37049,0.0009376006,Fluoranthene,LB
+37049,0.0004885766,Chrysene,LB
+37049,0.000536032,Acenaphthene,LB
+37049,0.6976118,Carbon Monoxide,TON
+37049,0.001598236,Nitrous Oxide,TON
+37049,0.3157682,Ethyl Benzene,LB
+37049,0.0565932,Nitrogen Oxides,TON
+37049,0.001849047,PM2.5 Primary (Filt + Cond),TON
+37035,0.019949634,Benzo[k]Fluoranthene,LB
+37035,37.43272,Formaldehyde,LB
+37035,21.84978,Carbon Monoxide,TON
+37035,0.02119934,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.940965,Hexane,LB
+37115,0.0004681804,Benzo[a]Pyrene,LB
+37115,0.0002215172,Benz[a]Anthracene,LB
+37115,0.0003048497,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.0009646207,Sulfur Dioxide,TON
+37115,0.0002534238,Benzo[k]Fluoranthene,LB
+37169,0.0486324,Pyrene,LB
+37169,0.001001351,Benzo[b]Fluoranthene,LB
+37169,0.0001370445,Benzo[k]Fluoranthene,LB
+37169,0.017565568,Anthracene,LB
+37169,0.02790494,Acenaphthylene,LB
+37169,0.00013688424,"Dibenzo[a,h]Anthracene",LB
+37169,0.00019333536,Arsenic,LB
+37169,2.203834,Acetaldehyde,LB
+37169,0.016599212,Acenaphthene,LB
+37169,0.03516476,Fluorene,LB
+37169,0.2192516,Nitrogen Oxides,TON
+37169,0.0003330209,Sulfate Portion of PM2.5-PRI,TON
+37167,3.337478e-05,Mercury,LB
+37167,0.003504136,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.0008870066,Nitrous Oxide,TON
+37167,0.01150771,Ammonia,TON
+37149,38.45454,Hexane,LB
+37149,34.80954,"2,2,4-Trimethylpentane",LB
+37149,14.652796,Benzene,LB
+37021,0.0918335,Toluene,LB
+37021,0.000903988,Manganese,LB
+37021,5.81096e-06,Mercury,LB
+37021,7.180539e-07,Nitrate portion of PM2.5-PRI,TON
+37011,6.16858e-05,Chromium (VI),LB
+37011,0.1071599,Methane,TON
+37011,0.127792,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.002413205,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.000461217,Pyrene,LB
+37009,0.000239862,Arsenic,LB
+37005,3.891424e-05,Anthracene,LB
+37005,6.000412e-06,"Benzo[g,h,i,]Perylene",LB
+37005,9.34002e-05,Fluoranthene,LB
+37005,2.864584e-05,Chrysene,LB
+37005,1.5620984e-05,Benz[a]Anthracene,LB
+37005,0.00013170174,Fluorene,LB
+37005,0.0003286604,Naphthalene,LB
+37005,0.232384,Carbon Monoxide,TON
+37069,0.1360497,Volatile Organic Compounds,TON
+37155,9.457816,Ethyl Benzene,LB
+37155,0.03339658,Pyrene,LB
+37155,0.02184572,Benzo[k]Fluoranthene,LB
+37155,0.07673824,Acenaphthylene,LB
+37155,36.54054,Formaldehyde,LB
+37155,0.0014718754,Mercury,LB
+37155,195.04798,Acetaldehyde,LB
+37155,0.008950296,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.08146805,Sulfur Dioxide,TON
+37135,0.006615494,Sulfur Dioxide,TON
+37135,0.0001355217,Sulfate Portion of PM2.5-PRI,TON
+37135,0.008315194,"Benzo[g,h,i,]Perylene",LB
+37135,0.0016013126,Benzo[b]Fluoranthene,LB
+37135,0.00483798,Acenaphthylene,LB
+37135,2.049304,Formaldehyde,LB
+37135,7.170906e-05,"Dibenzo[a,h]Anthracene",LB
+37127,3.804418,Ethyl Benzene,LB
+37127,0.2908561,Volatile Organic Compounds,TON
+37121,0.005850814,Styrene,LB
+37121,0.4907434,Toluene,LB
+37121,0.0004122666,PM2.5 Primary (Filt + Cond),TON
+37121,0.00014592466,Benz[a]Anthracene,LB
+37121,0.6289866,Benzene,LB
+37121,0.0003904416,Nitrous Oxide,TON
+37007,1.3580928e-05,Chromium (VI),LB
+37007,0.003439424,"Benzo[g,h,i,]Perylene",LB
+37007,0.016825296,Benzo[b]Fluoranthene,LB
+37007,0.4128808,Acenaphthylene,LB
+37007,0.05643668,Benzo[a]Pyrene,LB
+37007,1.0071656e-05,Mercury,LB
+37007,0.003792933,Sulfate Portion of PM2.5-PRI,TON
+37007,1.8496098,Hexane,LB
+37189,923.2332,Formaldehyde,LB
+37189,0.4977068,Nickel,LB
+37189,6.576968,Fluorene,LB
+37189,7714.01,Xylenes (Mixed Isomers),LB
+37187,1267.502,Xylenes (Mixed Isomers),LB
+37187,661.8702,"2,2,4-Trimethylpentane",LB
+37187,9.866913,Volatile Organic Compounds,TON
+37179,0.00016615306,Chromium (VI),LB
+37179,42.3787,Formaldehyde,LB
+37179,59.49574,Benzene,LB
+37179,0.12008992,Phenanthrene,LB
+37179,40.15924,Propionaldehyde,LB
+37179,4.224312,Pyrene,LB
+37179,0.0118959,"Benzo[g,h,i,]Perylene",LB
+37179,4.077976,Acenaphthylene,LB
+37179,74.11986,Benzene,LB
+37179,0.0462316,Arsenic,LB
+37179,2.42636,Acenaphthene,LB
+37179,86.85176,Naphthalene,LB
+37179,36.80188,Carbon Monoxide,TON
+37179,0.7638839,PM25-Primary from certain diesel engines,TON
+37091,4372.972,Toluene,LB
+37091,1959.2422,Xylenes (Mixed Isomers),LB
+37091,15.25159,Volatile Organic Compounds,TON
+37087,0.03932096,Ethyl Benzene,LB
+37087,0.00014406466,Anthracene,LB
+37087,0.0005527115,Sulfur Dioxide,TON
+37077,3479.854,"2,2,4-Trimethylpentane",LB
+37075,4.209556,Acrolein,LB
+37075,0.0001278938,Chromium (VI),LB
+37075,0.991779,Acenaphthylene,LB
+37075,75.44734,Acetaldehyde,LB
+37075,0.1382505,Methane,TON
+37069,3.81145e-08,Nickel,LB
+37069,4.244294e-06,Acenaphthene,LB
+37069,3.625242e-06,Anthracene,LB
+37069,1.1668002e-06,Benz[a]Anthracene,LB
+37065,0.008118594,Benzo[k]Fluoranthene,LB
+37065,0.9121954,Methane,TON
+37065,14.41257,Carbon Monoxide,TON
+37065,1.118563,Elemental Carbon portion of PM2.5-PRI,TON
+37065,2.817317,Volatile Organic Compounds,TON
+37063,5.951398,Propionaldehyde,LB
+37063,0.02700948,Benzo[b]Fluoranthene,LB
+37063,0.17193018,Chrysene,LB
+37063,0.2913008,Benz[a]Anthracene,LB
+37063,0.05243284,Manganese,LB
+37063,0.010804812,Arsenic,LB
+37063,52.613,Acetaldehyde,LB
+37063,0.08824918,Methane,TON
+37063,0.05395093,Ammonia,TON
+37063,0.00157233,Nitrate portion of PM2.5-PRI,TON
+37063,0.341031,PM2.5 Primary (Filt + Cond),TON
+37063,0.01741675,Sulfur Dioxide,TON
+37055,0.06461678,Benzo[b]Fluoranthene,LB
+37055,0.7096566,Benz[a]Anthracene,LB
+37055,30.26502,Benzene,LB
+37055,0.00014321264,Mercury,LB
+37055,35.6063,Naphthalene,LB
+37055,0.3312766,Organic Carbon portion of PM2.5-PRI,TON
+37055,1.440458,PM2.5 Primary (Filt + Cond),TON
+37055,0.1844916,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.0006468032,Arsenic,LB
+37049,0.03038812,Fluorene,LB
+37049,6.578121,Carbon Monoxide,TON
+37049,80.30496,Toluene,LB
+37049,42.9717,Xylenes (Mixed Isomers),LB
+37049,0.003090011,Sulfur Dioxide,TON
+37049,0.3776694,Volatile Organic Compounds,TON
+37035,0.02558654,Benzene,LB
+37035,1.9605678e-07,Nickel,LB
+37035,0.002251361,Nitrous Oxide,TON
+37035,2.85959e-07,Nitrate portion of PM2.5-PRI,TON
+37035,0.04763449,Nitrogen Oxides,TON
+37035,0.002030805,PM10 Primary (Filt + Cond),TON
+37033,0.038046,Sulfate Portion of PM2.5-PRI,TON
+37033,6.664386,"1,3-Butadiene",LB
+37033,0.4268018,Benz[a]Anthracene,LB
+37033,8.193592e-05,Mercury,LB
+37033,92.13152,Acetaldehyde,LB
+37033,1.4076658,Fluorene,LB
+37033,6.752163,Carbon Monoxide,TON
+37027,0.4114488,Pyrene,LB
+37027,0.016058838,Manganese,LB
+37027,1.1243982e-05,Mercury,LB
+37027,17.414738,Acetaldehyde,LB
+37023,0.8726728,Toluene,LB
+37023,0.01840488,Chrysene,LB
+37023,0.009453718,Benzo[a]Pyrene,LB
+37023,1.2617458,Benzene,LB
+37023,0.001641661,Nickel,LB
+37023,0.0004989662,Arsenic,LB
+37023,0.09526616,Fluorene,LB
+37023,0.03456275,PM10-Primary from certain diesel engines,TON
+37023,0.005560174,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.0015223644,Benzo[k]Fluoranthene,LB
+37077,1.4132086,"2,2,4-Trimethylpentane",LB
+37077,0.00015218222,Mercury,LB
+37077,0.0018975314,Nickel,LB
+37077,0.05992412,Naphthalene,LB
+37077,1.027029e-05,Nitrate portion of PM2.5-PRI,TON
+37077,0.001908163,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.000119273,Sulfate Portion of PM2.5-PRI,TON
+37175,0.9291828,Toluene,LB
+37175,0.0003200448,Benzo[k]Fluoranthene,LB
+37175,0.001671254,Acenaphthylene,LB
+37175,0.5642854,Formaldehyde,LB
+37175,1.147883,Benzene,LB
+37175,0.002038692,Phenanthrene,LB
+37175,0.02519624,Nitrogen Oxides,TON
+37175,0.0004086967,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.004479814,PM10 Primary (Filt + Cond),TON
+37167,0.0004919967,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.003877128,Acenaphthylene,LB
+37167,0.000717064,Chrysene,LB
+37167,0.001863702,Arsenic,LB
+37137,0.009627496,Acrolein,LB
+37137,8.343274e-05,Anthracene,LB
+37137,0.00015261798,Fluoranthene,LB
+37137,0.170074,Formaldehyde,LB
+37137,0.00019168736,Manganese,LB
+37137,0.0001345998,Arsenic,LB
+37137,0.00018446438,Fluorene,LB
+37137,0.1062987,Carbon Monoxide,TON
+37137,0.0008049949,PM10 Primary (Filt + Cond),TON
+37137,6.49059e-06,Sulfate Portion of PM2.5-PRI,TON
+37123,2.704584,Ethyl Benzene,LB
+37123,0.5287226,"1,3-Butadiene",LB
+37123,10.398226,Toluene,LB
+37123,0.004361034,Anthracene,LB
+37123,10.239476,Formaldehyde,LB
+37123,0.002900691,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.3001296,Volatile Organic Compounds,TON
+37121,9.901572e-05,Mercury,LB
+37121,0.001893134,Arsenic,LB
+37121,0.004717714,Fluorene,LB
+37121,174.7393,Carbon Dioxide,TON
+37121,0.003966304,PM2.5 Primary (Filt + Cond),TON
+37121,0.010705022,Acenaphthylene,LB
+37121,0.0014279522,Chrysene,LB
+37121,4.730864,Formaldehyde,LB
+37175,11.313024,Toluene,LB
+37175,2.109632,Pyrene,LB
+37175,0.006265692,Arsenic,LB
+37175,0.8244299,PM25-Primary from certain diesel engines,TON
+37175,0.4995554,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.2313448,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.0168337,Sulfate Portion of PM2.5-PRI,TON
+37175,0.4174492,Anthracene,LB
+37175,0.8096846,Pyrene,LB
+37175,0.003253432,"Dibenzo[a,h]Anthracene",LB
+37175,482.1038,Benzene,LB
+37175,0.0462518,Arsenic,LB
+37175,4658.409,Carbon Dioxide,TON
+37175,0.07858325,Organic Carbon portion of PM2.5-PRI,TON
+37175,8.071346,Volatile Organic Compounds,TON
+37171,0.15362122,Fluoranthene,LB
+37171,0.0011101914,"Dibenzo[a,h]Anthracene",LB
+37171,0.010808058,Manganese,LB
+37171,0.1042318,Methane,TON
+37169,0.007799174,"Dibenzo[a,h]Anthracene",LB
+37169,0.03603778,Nickel,LB
+37169,0.8821884,Acenaphthene,LB
+37169,7.554097,Carbon Monoxide,TON
+37169,11.97573,Nitrogen Oxides,TON
+37169,2.02771,Fluoranthene,LB
+37169,0.19083742,Benzo[a]Pyrene,LB
+37167,1.5890034,"2,2,4-Trimethylpentane",LB
+37167,0.09589748,Benz[a]Anthracene,LB
+37167,0.02352224,Manganese,LB
+37167,0.207825,Acenaphthene,LB
+37167,0.4807226,Pyrene,LB
+37167,0.08086758,Elemental Carbon portion of PM2.5-PRI,TON
+37167,32.8776,Naphthalene,LB
+37167,0.2878808,PM25-Primary from certain diesel engines,TON
+37167,1.3062624,Fluoranthene,LB
+37167,7.739468,"2,2,4-Trimethylpentane",LB
+37149,0.0002691146,Chromium (VI),LB
+37149,0.2015078,Manganese,LB
+37149,132.18234,Naphthalene,LB
+37149,2.283059,PM25-Primary from certain diesel engines,TON
+37149,1.523042,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.4306919,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.2099217,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,8.49545,Xylenes (Mixed Isomers),LB
+37045,0.000238886,"Dibenzo[a,h]Anthracene",LB
+37045,9.825466,Benzene,LB
+37045,0.8837078,Phenanthrene,LB
+37045,0.5504964,Fluorene,LB
+37045,0.01889926,PM25-Primary from certain diesel engines,TON
+37045,0.004299232,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.003005378,Sulfate Portion of PM2.5-PRI,TON
+37041,5.874298,Ethyl Benzene,LB
+37041,0.00352522,"Benzo[g,h,i,]Perylene",LB
+37041,0.6791998,Fluoranthene,LB
+37041,188.05108,Formaldehyde,LB
+37041,0.05173828,Benzo[a]Pyrene,LB
+37041,1.486515,Phenanthrene,LB
+37041,0.74641,Fluorene,LB
+37041,0.4668199,PM25-Primary from certain diesel engines,TON
+37041,0.3092668,Elemental Carbon portion of PM2.5-PRI,TON
+37035,832.3014,Formaldehyde,LB
+37035,1917.409,"2,2,4-Trimethylpentane",LB
+37035,2659.51,Benzene,LB
+37035,0.02097412,Mercury,LB
+37035,915.101,Acetaldehyde,LB
+37035,1.729006,Methane,TON
+37035,38421.04,Carbon Dioxide,TON
+37035,75.77321,Nitrogen Oxides,TON
+37035,45.65888,Volatile Organic Compounds,TON
+37033,3.26939,Styrene,LB
+37033,7.411514,"1,3-Butadiene",LB
+37033,0.010507784,"Benzo[g,h,i,]Perylene",LB
+37033,0.17230832,Benzo[a]Pyrene,LB
+37033,6.053552e-05,Mercury,LB
+37033,0.03595982,Nickel,LB
+37033,0.1027369,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,5.851234,Acrolein,LB
+37029,4.613304,Toluene,LB
+37029,0.7889514,Pyrene,LB
+37029,1.7679138,"2,2,4-Trimethylpentane",LB
+37029,0.9306808,Phenanthrene,LB
+37029,0.01920535,Methane,TON
+37029,0.007267841,Sulfate Portion of PM2.5-PRI,TON
+37019,112.17692,Benzene,LB
+37019,133.68694,Naphthalene,LB
+37019,34.94679,Carbon Monoxide,TON
+37009,0.600805,Xylenes (Mixed Isomers),LB
+37009,0.0003104206,"Benzo[g,h,i,]Perylene",LB
+37009,0.05114164,Fluorene,LB
+37009,0.001340784,Sulfate Portion of PM2.5-PRI,TON
+37009,2.12916,Propionaldehyde,LB
+37009,0.2134552,Pyrene,LB
+37009,0.03828792,Benzo[b]Fluoranthene,LB
+37009,0.5815906,Acenaphthylene,LB
+37009,0.0012192856,"Dibenzo[a,h]Anthracene",LB
+37009,1.794419,Nitrogen Oxides,TON
+37009,0.01288169,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.0004460098,Naphthalene,LB
+37005,4.005954e-06,PM2.5 Primary (Filt + Cond),TON
+37005,0.0004633558,Pyrene,LB
+37005,0.1062762,Acetaldehyde,LB
+37005,2.523098e-07,Nitrate portion of PM2.5-PRI,TON
+37033,2.616592,Hexane,LB
+37033,1.4708358e-05,Chromium (VI),LB
+37033,0.002059606,Chrysene,LB
+37033,8.598534,Benzene,LB
+37033,0.003112892,Manganese,LB
+37033,42.94616,Acetaldehyde,LB
+37033,0.02290249,Methane,TON
+37033,1.473112e-05,Nitrate portion of PM2.5-PRI,TON
+37033,0.005658817,PM2.5 Primary (Filt + Cond),TON
+37009,22.80893,Carbon Dioxide,TON
+37009,0.0006937409,Sulfur Dioxide,TON
+37009,0.006129392,Styrene,LB
+37009,0.424673,Xylenes (Mixed Isomers),LB
+37009,0.0001694404,Nickel,LB
+37009,2.600632,Acetaldehyde,LB
+37143,0.00377192,Chrysene,LB
+37143,15.626474,Benzene,LB
+37143,0.004111434,Manganese,LB
+37143,6.955079,Carbon Monoxide,TON
+37125,17.669168,"1,3-Butadiene",LB
+37125,0.10696352,Benzo[b]Fluoranthene,LB
+37125,0.014708686,Benzo[k]Fluoranthene,LB
+37125,18.771024,"2,2,4-Trimethylpentane",LB
+37125,58.96366,Benzene,LB
+37125,0.5828449,Methane,TON
+37125,944.8176,Naphthalene,LB
+37125,470.4179,Nitrogen Oxides,TON
+37125,3.221188,Organic Carbon portion of PM2.5-PRI,TON
+37125,2.207821,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,367.3348,Propionaldehyde,LB
+37125,0.011775506,Chromium (VI),LB
+37125,15.041528,"Benzo[g,h,i,]Perylene",LB
+37125,82.83762,Acenaphthylene,LB
+37125,5.692948,Benzo[a]Pyrene,LB
+37125,0.12977098,"Dibenzo[a,h]Anthracene",LB
+37121,561.0356,Toluene,LB
+37121,1.094763,Propionaldehyde,LB
+37121,286.1016,Xylenes (Mixed Isomers),LB
+37121,0.019391846,Benzo[b]Fluoranthene,LB
+37121,3.407504,Naphthalene,LB
+37119,1.08604,Sulfate Portion of PM2.5-PRI,TON
+37119,20.63062,Anthracene,LB
+37119,8.990062,Chrysene,LB
+37119,108.83418,Ethyl Benzene,LB
+37119,94.42406,"1,3-Butadiene",LB
+37119,258.6292,Toluene,LB
+37119,158.92702,Propionaldehyde,LB
+37119,0.16298832,Benzo[b]Fluoranthene,LB
+37119,1.4489212,Chrysene,LB
+37119,28.68714,Phenanthrene,LB
+37119,165.9098,Carbon Monoxide,TON
+37099,5.210034,Styrene,LB
+37099,10.410274,Hexane,LB
+37099,20.07,Propionaldehyde,LB
+37099,2.873788,Fluoranthene,LB
+37099,0.2799906,Benzo[a]Pyrene,LB
+37099,4.731198,Phenanthrene,LB
+37099,8.86749,Carbon Monoxide,TON
+37099,16.52803,Nitrogen Oxides,TON
+37099,1.459465,PM10 Primary (Filt + Cond),TON
+37091,0.0008443363,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.002623054,PM10 Primary (Filt + Cond),TON
+37091,0.0003624284,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,3.279898,Ethyl Benzene,LB
+37091,0.08423552,Acrolein,LB
+37091,3.992786e-05,"Dibenzo[a,h]Anthracene",LB
+37071,0.6028202,Acrolein,LB
+37071,36.02998,Hexane,LB
+37071,0.01267218,Benzo[b]Fluoranthene,LB
+37071,10.930076,Formaldehyde,LB
+37071,0.0004478256,"Dibenzo[a,h]Anthracene",LB
+37071,31.42232,"2,2,4-Trimethylpentane",LB
+37071,0.007016092,Manganese,LB
+37063,1.2053002,"1,3-Butadiene",LB
+37063,0.2471438,Propionaldehyde,LB
+37063,0.04629206,"Benzo[g,h,i,]Perylene",LB
+37063,0.0003990572,"Dibenzo[a,h]Anthracene",LB
+37063,0.008697236,Benz[a]Anthracene,LB
+37063,3.878066,Acetaldehyde,LB
+37063,7.007859,Carbon Monoxide,TON
+37065,0.3896648,"1,3-Butadiene",LB
+37065,0.005074126,Fluoranthene,LB
+37065,0.0013659142,Chrysene,LB
+37065,2.748016,"2,2,4-Trimethylpentane",LB
+37065,0.0014696948,Benz[a]Anthracene,LB
+37065,0.0003389106,Nickel,LB
+37065,0.0005196638,Arsenic,LB
+37065,0.2172169,Nitrogen Oxides,TON
+37065,9.245252e-05,Sulfate Portion of PM2.5-PRI,TON
+37061,0.002021664,Benzo[k]Fluoranthene,LB
+37061,60.70766,Formaldehyde,LB
+37061,5.604772,Benzene,LB
+37061,0.7558368,Phenanthrene,LB
+37061,0.6371826,Pyrene,LB
+37061,0.014737852,Benzo[b]Fluoranthene,LB
+37061,2.729303,Nitrogen Oxides,TON
+37049,0.00593734,Benzo[k]Fluoranthene,LB
+37049,1.2105834,Benz[a]Anthracene,LB
+37049,5.731582,Acenaphthene,LB
+37049,0.03202635,Nitrous Oxide,TON
+37047,0.005268325,Volatile Organic Compounds,TON
+37047,0.17947416,Ethyl Benzene,LB
+37047,0.007448154,Styrene,LB
+37047,0.03207706,"1,3-Butadiene",LB
+37047,0.0002803362,Anthracene,LB
+37047,0.000556885,Pyrene,LB
+37047,0.0004891212,Fluoranthene,LB
+37047,0.09398342,Acetaldehyde,LB
+37047,7.45038,Carbon Dioxide,TON
+37047,0.000262386,PM2.5 Primary (Filt + Cond),TON
+37045,16130.616,Ethyl Benzene,LB
+37045,7.330924,Benz[a]Anthracene,LB
+37045,4.694168,Manganese,LB
+37045,145.43748,Phenanthrene,LB
+37045,304434.8,Carbon Dioxide,TON
+37045,25.66092,PM10 Primary (Filt + Cond),TON
+37035,16.353556,Ethyl Benzene,LB
+37035,3.756096,Fluoranthene,LB
+37035,0.2169571,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.3715406,Styrene,LB
+37025,0.1947104,Fluoranthene,LB
+37025,0.08491254,Acenaphthene,LB
+37025,0.003199136,Ammonia,TON
+37025,0.9518163,Nitrogen Oxides,TON
+37027,7.425236,Ethyl Benzene,LB
+37027,17.517356,Acrolein,LB
+37027,1.7099952,Fluoranthene,LB
+37027,0.005603644,Arsenic,LB
+37027,0.2331494,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.244436,Acrolein,LB
+37023,0.0006982934,Pyrene,LB
+37023,1.7095454e-06,Nickel,LB
+37023,10.121166,Styrene,LB
+37023,0.483015,"Benzo[g,h,i,]Perylene",LB
+37023,618.7028,Benzene,LB
+37023,23.74334,Naphthalene,LB
+37171,8.947016,Pyrene,LB
+37171,0.04644642,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,1125.5566,Formaldehyde,LB
+37171,2.068056,Benz[a]Anthracene,LB
+37171,11.807834,Phenanthrene,LB
+37171,27.8487,Carbon Monoxide,TON
+37171,14211.24,Carbon Dioxide,TON
+37171,2.506214,PM10-Primary from certain diesel engines,TON
+37171,0.01110865,Nitrate portion of PM2.5-PRI,TON
+37171,0.4027137,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.010184978,Pyrene,LB
+37165,4.316842e-07,Chromium (VI),LB
+37165,21.66734,Toluene,LB
+37165,7.322086e-05,"Dibenzo[a,h]Anthracene",LB
+37165,0.008067959,Methane,TON
+37165,0.00166614,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.0003680934,Sulfur Dioxide,TON
+37163,0.8296644,"1,3-Butadiene",LB
+37163,0.2548218,Pyrene,LB
+37163,0.1935186,Fluoranthene,LB
+37163,0.18161138,Fluorene,LB
+37163,0.08360268,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.07458312,"Benzo[g,h,i,]Perylene",LB
+37159,0.04219044,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.16566556,Benzo[b]Fluoranthene,LB
+37159,0.0228463,Benzo[k]Fluoranthene,LB
+37159,28.61258,Acenaphthylene,LB
+37159,0.5554912,Benzo[a]Pyrene,LB
+37159,3.950208,Benz[a]Anthracene,LB
+37159,545.5798,Naphthalene,LB
+37159,4.73054,PM10-Primary from certain diesel engines,TON
+37159,4.526813,PM2.5 Primary (Filt + Cond),TON
+37145,0.08701744,Anthracene,LB
+37145,0.0008244238,Benzo[k]Fluoranthene,LB
+37145,0.0381747,Chrysene,LB
+37145,0.6467872,"2,2,4-Trimethylpentane",LB
+37145,0.3076456,Phenanthrene,LB
+37145,0.01255026,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,1.4094742,Ethyl Benzene,LB
+37131,1.488462,"1,3-Butadiene",LB
+37131,0.0011876482,"Benzo[g,h,i,]Perylene",LB
+37131,0.004674744,Benzo[b]Fluoranthene,LB
+37131,6.148726e-06,Mercury,LB
+37131,0.4518398,Phenanthrene,LB
+37131,0.00587397,Methane,TON
+37131,1.698127,Carbon Monoxide,TON
+37131,0.02236941,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.16585718,Styrene,LB
+37131,15.692226,Xylenes (Mixed Isomers),LB
+37131,0.03108974,Acenaphthylene,LB
+37131,2.192044,Formaldehyde,LB
+37131,0.002187606,Benz[a]Anthracene,LB
+37131,0.004662564,PM10 Primary (Filt + Cond),TON
+37121,2.344736,Acenaphthylene,LB
+37121,0.1172768,Chrysene,LB
+37121,1957.778,Carbon Dioxide,TON
+37121,0.0005200427,Nitrate portion of PM2.5-PRI,TON
+37117,0.00194877,Methane,TON
+37117,0.017898738,Anthracene,LB
+37117,0.012201658,Benz[a]Anthracene,LB
+37111,57.063,Ethyl Benzene,LB
+37111,94.19714,Propionaldehyde,LB
+37111,1706.7086,Formaldehyde,LB
+37111,0.006277872,"Dibenzo[a,h]Anthracene",LB
+37111,0.2369059,Organic Carbon portion of PM2.5-PRI,TON
+37111,2.012458,PM10 Primary (Filt + Cond),TON
+37123,0.003143316,Benzo[a]Pyrene,LB
+37123,7.22841e-05,"Dibenzo[a,h]Anthracene",LB
+37123,0.0004914262,Arsenic,LB
+37123,0.003672511,Ammonia,TON
+37177,0.2739958,Fluorene,LB
+37177,0.008330649,Methane,TON
+37177,1.084414,Carbon Monoxide,TON
+37177,0.172865,PM25-Primary from certain diesel engines,TON
+37177,0.1774894,PM2.5 Primary (Filt + Cond),TON
+37177,0.003289745,Sulfate Portion of PM2.5-PRI,TON
+37177,2.946392,Acrolein,LB
+37177,3.260518e-05,Sulfate Portion of PM2.5-PRI,TON
+37177,0.0014576932,Anthracene,LB
+37177,3.796528e-06,Mercury,LB
+37177,0.009208474,Phenanthrene,LB
+37171,0.006297262,Benzo[b]Fluoranthene,LB
+37171,0.00660275,Nickel,LB
+37171,0.002944546,Arsenic,LB
+37171,3.969682,Naphthalene,LB
+37171,0.02332318,Methane,TON
+37171,0.03213485,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.009382269,Sulfur Dioxide,TON
+37165,0.2710123,PM10 Primary (Filt + Cond),TON
+37165,0.2022426,PM2.5 Primary (Filt + Cond),TON
+37165,1.0926046,Styrene,LB
+37165,0.019218582,Manganese,LB
+37165,0.2503338,Acenaphthene,LB
+37163,4.194934,Toluene,LB
+37163,0.6118442,Pyrene,LB
+37163,0.4604368,Fluoranthene,LB
+37163,0.15243528,Benz[a]Anthracene,LB
+37163,0.01759635,Manganese,LB
+37163,2.516772,Nitrogen Oxides,TON
+37153,111.6141,Carbon Dioxide,TON
+37153,0.2728214,Nitrogen Oxides,TON
+37153,0.07978606,Acrolein,LB
+37153,0.002222166,Benzo[b]Fluoranthene,LB
+37153,0.0019353892,Manganese,LB
+37153,0.0003853112,Nickel,LB
+37153,0.02331728,Phenanthrene,LB
+37149,0.14577224,"2,2,4-Trimethylpentane",LB
+37149,1.3319142e-05,Nickel,LB
+37135,0.3111876,Toluene,LB
+37135,0.0002172048,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.0006343224,Acenaphthylene,LB
+37135,0.0002381733,PM2.5 Primary (Filt + Cond),TON
+37127,4627.309,Carbon Monoxide,TON
+37127,0.0269768,Nitrate portion of PM2.5-PRI,TON
+37127,22.41598,"Benzo[g,h,i,]Perylene",LB
+37111,10.794952,Acrolein,LB
+37111,2.617384e-05,Chromium (VI),LB
+37111,0.1925096,Chrysene,LB
+37087,0.10528878,Fluorene,LB
+37087,0.1349934,PM10 Primary (Filt + Cond),TON
+37087,1.1624654,Styrene,LB
+37071,11.246462,Hexane,LB
+37071,23.70736,Propionaldehyde,LB
+37071,30.1522,Xylenes (Mixed Isomers),LB
+37071,1.169874,PM10-Primary from certain diesel engines,TON
+37071,1.076232,PM25-Primary from certain diesel engines,TON
+37071,0.05619311,Ammonia,TON
+37071,1.133298,PM2.5 Primary (Filt + Cond),TON
+37063,1.673632,Acenaphthene,LB
+37063,0.00626927,Nitrous Oxide,TON
+37063,4.948172,Nitrogen Oxides,TON
+37063,0.06099144,Organic Carbon portion of PM2.5-PRI,TON
+37063,19.492188,Ethyl Benzene,LB
+37063,7.191514,Styrene,LB
+37063,15.03251,Hexane,LB
+37063,28.08442,Propionaldehyde,LB
+37063,0.1260859,Manganese,LB
+37051,0.23997,Sulfate Portion of PM2.5-PRI,TON
+37051,19.035018,Pyrene,LB
+37051,14.323078,Fluoranthene,LB
+37051,5.661632,Acenaphthene,LB
+37051,4.443035,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.046302,Nitrous Oxide,TON
+37033,0.0002229241,Nitrate portion of PM2.5-PRI,TON
+37033,0.0009260898,"Benzo[g,h,i,]Perylene",LB
+37033,0.2056458,Fluoranthene,LB
+37033,0.202537,Acenaphthylene,LB
+37033,0.04960088,Benz[a]Anthracene,LB
+37033,1.428673,Carbon Monoxide,TON
+37031,0.00959553,Acrolein,LB
+37031,0.5268498,Hexane,LB
+37031,0.001005352,Pyrene,LB
+37031,0.0004638634,"Benzo[g,h,i,]Perylene",LB
+37031,0.0008807064,Fluoranthene,LB
+37031,0.00014468778,Benzo[k]Fluoranthene,LB
+37031,5.277232e-06,Arsenic,LB
+37031,0.0006090002,Acenaphthene,LB
+37031,4.706055e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,0.01143769,Volatile Organic Compounds,TON
+37177,11.472688,Acrolein,LB
+37177,0.02549588,Nickel,LB
+37177,62.58356,Acetaldehyde,LB
+37177,1.275133,Phenanthrene,LB
+37177,0.004317452,Sulfate Portion of PM2.5-PRI,TON
+37173,287.9313,Carbon Dioxide,TON
+37173,4.127945e-05,Nitrate portion of PM2.5-PRI,TON
+37173,0.00773774,PM2.5 Primary (Filt + Cond),TON
+37173,0.1882134,Volatile Organic Compounds,TON
+37173,0.0003684902,"Benzo[g,h,i,]Perylene",LB
+37015,0.05481892,Benzo[a]Pyrene,LB
+37015,1.0541602e-05,Mercury,LB
+37015,30.70608,Acetaldehyde,LB
+37015,443.297,Carbon Dioxide,TON
+37015,0.4133152,Volatile Organic Compounds,TON
+37149,85.37949,Nitrogen Oxides,TON
+37149,1.090083,Sulfur Dioxide,TON
+37149,11.621776,Acenaphthylene,LB
+37149,0.731482,Arsenic,LB
+37149,13.936504,Phenanthrene,LB
+37149,132.24126,Naphthalene,LB
+37149,0.3499349,Elemental Carbon portion of PM2.5-PRI,TON
+37149,5.035484,Ammonia,TON
+37061,0.15495156,Acrolein,LB
+37061,7.69903,Hexane,LB
+37061,0.004363396,Benzo[k]Fluoranthene,LB
+37061,0.0369962,Acenaphthylene,LB
+37061,0.007349692,Benzo[a]Pyrene,LB
+37061,0.005589216,Methane,TON
+37061,203.9392,Carbon Dioxide,TON
+37061,0.001308915,Elemental Carbon portion of PM2.5-PRI,TON
+37173,34.73846,Toluene,LB
+37173,0.00010878214,Chromium (VI),LB
+37173,0.007421042,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.004090382,"Dibenzo[a,h]Anthracene",LB
+37173,0.0001436693,Mercury,LB
+37173,0.9529085,PM10-Primary from certain diesel engines,TON
+37173,0.8766943,PM25-Primary from certain diesel engines,TON
+37173,1.366565,PM10 Primary (Filt + Cond),TON
+37173,0.003915004,Acenaphthene,LB
+37173,0.2034782,Naphthalene,LB
+37173,10.650184,Xylenes (Mixed Isomers),LB
+37199,0.4572472,Ethyl Benzene,LB
+37199,0.03495761,Volatile Organic Compounds,TON
+37195,0.9244,Ethyl Benzene,LB
+37195,0.04374966,Styrene,LB
+37195,0.002248036,Benzo[b]Fluoranthene,LB
+37195,0.0030141,Nickel,LB
+37195,0.004621794,Arsenic,LB
+37195,2.830383,Carbon Monoxide,TON
+37195,0.003950186,Nitrous Oxide,TON
+37195,0.000205092,Sulfate Portion of PM2.5-PRI,TON
+37057,0.00669696,"Benzo[g,h,i,]Perylene",LB
+37057,2.066018,Fluoranthene,LB
+37057,477.841,Formaldehyde,LB
+37057,0.0704364,Nickel,LB
+37057,2.634958,Fluorene,LB
+37057,0.2136275,Methane,TON
+37057,3351.573,Carbon Dioxide,TON
+37057,0.370053,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.1146862,Ammonia,TON
+37057,10.21137,Nitrogen Oxides,TON
+37057,0.5034771,PM2.5 Primary (Filt + Cond),TON
+37051,4.02418,Fluorene,LB
+37051,4837.121,Carbon Dioxide,TON
+37051,0.01982475,Nitrous Oxide,TON
+37051,22.61158,Nitrogen Oxides,TON
+37051,1.4191408,Benz[a]Anthracene,LB
+37051,29.74972,Propionaldehyde,LB
+37049,15.142264,"1,3-Butadiene",LB
+37049,14.37742,Hexane,LB
+37049,0.0233996,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.307408,Benzo[a]Pyrene,LB
+37049,0.4662947,Methane,TON
+37049,14.02427,Xylenes (Mixed Isomers),LB
+37049,0.006475086,Benzo[k]Fluoranthene,LB
+37049,0.006469764,"Dibenzo[a,h]Anthracene",LB
+37049,0.05414296,Manganese,LB
+37049,0.02331782,Nickel,LB
+37049,1518.97,Carbon Dioxide,TON
+37045,144.05728,Propionaldehyde,LB
+37045,0.0006107472,Chromium (VI),LB
+37045,0.010108332,Benzo[k]Fluoranthene,LB
+37045,0.924469,Chrysene,LB
+37045,86.09562,Ethyl Benzene,LB
+37045,0.368803,Nickel,LB
+37045,0.0983586,Arsenic,LB
+37045,151.3957,Carbon Monoxide,TON
+37045,0.06178892,Sulfate Portion of PM2.5-PRI,TON
+37045,0.3380444,Propionaldehyde,LB
+37045,36.57238,Xylenes (Mixed Isomers),LB
+37045,8.604208e-07,Chromium (VI),LB
+37045,5.079582,Formaldehyde,LB
+37045,0.001704812,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.003307652,Organic Carbon portion of PM2.5-PRI,TON
+37035,11.409994,Ethyl Benzene,LB
+37035,0.009789416,"Benzo[g,h,i,]Perylene",LB
+37035,0.0055469,Benzo[k]Fluoranthene,LB
+37035,0.005530126,"Dibenzo[a,h]Anthracene",LB
+37035,1.1435706,Acenaphthene,LB
+37035,3.604762,Phenanthrene,LB
+37035,0.002471535,Nitrate portion of PM2.5-PRI,TON
+37035,2.005793,Volatile Organic Compounds,TON
+37033,0.4106002,Phenanthrene,LB
+37033,0.02009719,Methane,TON
+37033,0.04198742,PM25-Primary from certain diesel engines,TON
+37033,0.00268546,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.12531366,Anthracene,LB
+37033,0.0002706198,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,23.08202,Toluene,LB
+37027,0.0047154,"Benzo[g,h,i,]Perylene",LB
+37027,324.955,Formaldehyde,LB
+37027,6.031478,Nitrogen Oxides,TON
+37027,0.2992708,PM2.5 Primary (Filt + Cond),TON
+37023,0.04593218,Styrene,LB
+37023,5.977804,Toluene,LB
+37023,0.00131979,Benzo[k]Fluoranthene,LB
+37023,1.3163424,"2,2,4-Trimethylpentane",LB
+37023,0.010505272,Phenanthrene,LB
+37023,0.0003607496,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.012493408,"Dibenzo[a,h]Anthracene",LB
+37157,0.10250672,Nickel,LB
+37157,3.339818,Fluorene,LB
+37157,3.46789,PM10 Primary (Filt + Cond),TON
+37157,14.772022,Hexane,LB
+37157,0.0002495482,Chromium (VI),LB
+37157,42.44058,Acrolein,LB
+37153,45.8926,Toluene,LB
+37153,34.79966,Hexane,LB
+37135,0.07884732,Hexane,LB
+37135,9.793372e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,9.714816e-05,Benzo[a]Pyrene,LB
+37135,2.99564e-06,Sulfate Portion of PM2.5-PRI,TON
+37137,0.01171183,Nitrous Oxide,TON
+37137,0.00196798,Organic Carbon portion of PM2.5-PRI,TON
+37137,4.390068,Acetaldehyde,LB
+37137,1.7757184,"1,3-Butadiene",LB
+37137,0.018463772,Fluoranthene,LB
+37137,0.003092238,Chrysene,LB
+37137,11.349144,"2,2,4-Trimethylpentane",LB
+37137,0.08013068,Fluoranthene,LB
+37137,2.839608,Naphthalene,LB
+37137,0.003523318,Nitrous Oxide,TON
+37137,6.514845e-05,Nitrate portion of PM2.5-PRI,TON
+37137,0.01249211,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.02227319,PM2.5 Primary (Filt + Cond),TON
+37131,2.443968,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,9.554038,Fluoranthene,LB
+37131,3787.404,Ethyl Benzene,LB
+37131,0.4952896,Nickel,LB
+37131,1689.391,Carbon Monoxide,TON
+37131,5.454352,PM10 Primary (Filt + Cond),TON
+37129,17.477402,Toluene,LB
+37129,6.51809,Hexane,LB
+37129,2.007006,Pyrene,LB
+37129,1.433431,Acenaphthylene,LB
+37129,6.476476,"2,2,4-Trimethylpentane",LB
+37129,4.923048e-05,Mercury,LB
+37129,28.45912,Naphthalene,LB
+37129,0.0474442,Ammonia,TON
+37129,0.09613183,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.4009166,Chrysene,LB
+37123,0.008483064,"Dibenzo[a,h]Anthracene",LB
+37123,0.048464,Nickel,LB
+37123,2.019484,Fluorene,LB
+37123,0.003641681,Nitrate portion of PM2.5-PRI,TON
+37123,0.03347561,Sulfur Dioxide,TON
+37123,1.673169,Volatile Organic Compounds,TON
+37117,0.011548426,Chrysene,LB
+37117,0.4189418,Propionaldehyde,LB
+37117,0.08121954,Pyrene,LB
+37117,0.01967654,Benz[a]Anthracene,LB
+37117,3.518436,Acetaldehyde,LB
+37117,0.056466,Fluorene,LB
+37117,0.003007721,Ammonia,TON
+37117,0.008873728,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.04929616,Styrene,LB
+37115,0.00017596208,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,9.451642e-05,"Dibenzo[a,h]Anthracene",LB
+37115,1.5247734,Acetaldehyde,LB
+37115,0.011333598,Acenaphthene,LB
+37115,0.07217877,Carbon Monoxide,TON
+37115,0.1765524,Nitrogen Oxides,TON
+37115,0.001350854,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.2394854,Pyrene,LB
+37115,4.938384,Xylenes (Mixed Isomers),LB
+37115,0.0005515156,"Benzo[g,h,i,]Perylene",LB
+37115,9.316388e-05,"Dibenzo[a,h]Anthracene",LB
+37115,0.010725838,Manganese,LB
+37115,23.7503,Acetaldehyde,LB
+37115,0.15736168,Acenaphthene,LB
+37115,4.358029,Carbon Monoxide,TON
+37115,0.0005157785,Nitrous Oxide,TON
+37115,0.003118672,Sulfur Dioxide,TON
+37113,0.01490622,Nitrous Oxide,TON
+37113,0.002712182,Nitrate portion of PM2.5-PRI,TON
+37113,339.1132,Formaldehyde,LB
+37113,0.1715339,Manganese,LB
+37113,3.186392,Phenanthrene,LB
+37113,7.710342,"1,3-Butadiene",LB
+37113,23.02728,Acrolein,LB
+37113,0.009360768,"Benzo[g,h,i,]Perylene",LB
+37107,0.05529484,Nickel,LB
+37107,1.3543888,Acenaphthene,LB
+37107,5.357944,Phenanthrene,LB
+37107,17.93135,Nitrogen Oxides,TON
+37107,0.0484211,Sulfur Dioxide,TON
+37107,0.05123016,Sulfate Portion of PM2.5-PRI,TON
+37107,2.509559,Volatile Organic Compounds,TON
+37107,0.013057758,Benzo[k]Fluoranthene,LB
+37107,0.3188706,Benzo[a]Pyrene,LB
+37107,1.4141616,Ethyl Benzene,LB
+37107,0.0006022236,Benzo[b]Fluoranthene,LB
+37107,0.2172146,Acenaphthylene,LB
+37107,0.010536992,Manganese,LB
+37107,0.3515156,Phenanthrene,LB
+37107,0.002662914,Sulfur Dioxide,TON
+37107,49203.54,Toluene,LB
+37107,23.59508,Pyrene,LB
+37107,3.649946,Chrysene,LB
+37107,3.69342,Benz[a]Anthracene,LB
+37107,739.9062,Naphthalene,LB
+37107,164198.4,Carbon Dioxide,TON
+37097,154.91222,Ethyl Benzene,LB
+37097,86.78396,"1,3-Butadiene",LB
+37097,22.81732,Pyrene,LB
+37097,379.6078,Benzene,LB
+37097,18.830926,Fluorene,LB
+37097,10.79248,PM25-Primary from certain diesel engines,TON
+37097,20.86727,PM10 Primary (Filt + Cond),TON
+37091,0.3456189,Carbon Monoxide,TON
+37091,0.0004383983,Nitrous Oxide,TON
+37091,0.03975632,PM2.5 Primary (Filt + Cond),TON
+37099,31.00572,Ethyl Benzene,LB
+37099,0.04348562,Anthracene,LB
+37099,0.07435896,Fluoranthene,LB
+37099,0.02071154,Benzo[a]Pyrene,LB
+37099,0.0004747396,"Dibenzo[a,h]Anthracene",LB
+37099,0.005504658,Arsenic,LB
+37099,0.04537674,Ammonia,TON
+37099,0.1012568,PM10 Primary (Filt + Cond),TON
+37099,0.02242575,Sulfur Dioxide,TON
+37095,0.00019775042,Manganese,LB
+37095,0.03781294,Propionaldehyde,LB
+37095,2.599072e-07,Chromium (VI),LB
+37095,0.03520326,Acrolein,LB
+37095,11.94742,Toluene,LB
+37095,0.05941568,Acrolein,LB
+37095,3.336636,Hexane,LB
+37095,1.1359276e-07,Chromium (VI),LB
+37095,0.0009891516,Benzo[a]Pyrene,LB
+37095,0.0008767788,Benz[a]Anthracene,LB
+37095,0.1887956,Naphthalene,LB
+37095,0.0001024804,Sulfur Dioxide,TON
+37091,0.04421094,Propionaldehyde,LB
+37091,0.003777586,Pyrene,LB
+37091,5.725004,Xylenes (Mixed Isomers),LB
+37091,0.0008765904,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.00331092,Fluoranthene,LB
+37091,0.0006342366,Chrysene,LB
+37091,0.00087895,Benzo[a]Pyrene,LB
+37091,2.36377,Hexane,LB
+37091,1.2467542e-05,Mercury,LB
+37091,0.004589526,Fluorene,LB
+37091,0.001616969,Nitrous Oxide,TON
+37091,0.001963385,Ammonia,TON
+37089,2.98089,Styrene,LB
+37089,2.619058,Acrolein,LB
+37089,465.3714,Toluene,LB
+37089,114.77312,Hexane,LB
+37089,295.5844,Xylenes (Mixed Isomers),LB
+37089,0.0477231,Manganese,LB
+37089,0.12886274,Acenaphthene,LB
+37089,0.702197,Phenanthrene,LB
+37089,0.249399,PM10 Primary (Filt + Cond),TON
+37089,0.04411427,Sulfur Dioxide,TON
+37075,0.001033251,Nitrous Oxide,TON
+37075,0.05414674,Nitrogen Oxides,TON
+37075,0.0002699187,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,1.134481,Carbon Monoxide,TON
+37071,1.8014374,Ethyl Benzene,LB
+37071,1.6111404,"1,3-Butadiene",LB
+37071,0.18351928,Anthracene,LB
+37071,0.0399713,Manganese,LB
+37071,0.00390734,Arsenic,LB
+37071,0.3676652,Fluorene,LB
+37071,22.8101,Ethyl Benzene,LB
+37071,688.9318,Formaldehyde,LB
+37071,3.866902,Fluorene,LB
+37071,0.145786,Ammonia,TON
+37071,0.9642178,PM10 Primary (Filt + Cond),TON
+37071,0.03837588,Sulfur Dioxide,TON
+37059,341.5904,Styrene,LB
+37059,30752.32,Xylenes (Mixed Isomers),LB
+37059,0.10929238,"Dibenzo[a,h]Anthracene",LB
+37059,14.31638,Acenaphthene,LB
+37059,1.09649,Elemental Carbon portion of PM2.5-PRI,TON
+37059,401.3047,Nitrogen Oxides,TON
+37059,2.614866,Organic Carbon portion of PM2.5-PRI,TON
+37059,1.444217,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,236.1618,Volatile Organic Compounds,TON
+37051,0.0004556066,"Dibenzo[a,h]Anthracene",LB
+37051,0.6754682,Acenaphthene,LB
+37051,25.6775,Toluene,LB
+37051,0.0550091,Chrysene,LB
+37051,1.185549,Fluorene,LB
+37049,0.8138538,Anthracene,LB
+37049,0.007696314,"Dibenzo[a,h]Anthracene",LB
+37049,49.47946,Naphthalene,LB
+37049,0.648276,Methane,TON
+37049,225.4048,Carbon Monoxide,TON
+37049,0.08707774,Elemental Carbon portion of PM2.5-PRI,TON
+37049,16.57213,Volatile Organic Compounds,TON
+37037,2023.708,"1,3-Butadiene",LB
+37037,3.924452,Chrysene,LB
+37037,0.01622183,Nitrate portion of PM2.5-PRI,TON
+37037,247.3365,Volatile Organic Compounds,TON
+37035,11503.302,Ethyl Benzene,LB
+37035,373.2242,Styrene,LB
+37035,72421.54,Toluene,LB
+37035,9.434986,Benzo[a]Pyrene,LB
+37035,0.2174544,"Dibenzo[a,h]Anthracene",LB
+37035,7.459406,Manganese,LB
+37035,87.24364,Phenanthrene,LB
+37035,2.250231,Elemental Carbon portion of PM2.5-PRI,TON
+37035,35.60789,PM10 Primary (Filt + Cond),TON
+37035,344.7954,Volatile Organic Compounds,TON
+37171,1.6860438,Styrene,LB
+37171,5.729348e-05,Chromium (VI),LB
+37171,0.6566252,Acenaphthylene,LB
+37171,12.028632,Benzene,LB
+37171,0.03006116,Nickel,LB
+37171,895.8596,Carbon Dioxide,TON
+37171,0.0001747812,Nitrate portion of PM2.5-PRI,TON
+37171,1.160842,Nitrogen Oxides,TON
+37171,0.003675322,Sulfate Portion of PM2.5-PRI,TON
+37149,0.001847454,Methane,TON
+37149,0.4245096,Acrolein,LB
+37149,0.00013444638,Benzo[k]Fluoranthene,LB
+37149,0.3491539,Nitrogen Oxides,TON
+37157,81.58966,Toluene,LB
+37157,0.00011638106,Mercury,LB
+37157,0.002225034,Arsenic,LB
+37157,0.01741177,Methane,TON
+37157,18.25494,Carbon Monoxide,TON
+37157,4.838243e-05,Nitrate portion of PM2.5-PRI,TON
+37157,0.008307385,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.008225693,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.0006014134,Sulfate Portion of PM2.5-PRI,TON
+37155,1.435124e-05,Sulfur Dioxide,TON
+37155,3.793466e-06,Sulfate Portion of PM2.5-PRI,TON
+37155,0.566668,Xylenes (Mixed Isomers),LB
+37155,3.408062e-06,"Dibenzo[a,h]Anthracene",LB
+37153,1.705849,Acenaphthylene,LB
+37153,7.003712,"2,2,4-Trimethylpentane",LB
+37153,0.1618974,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.07892096,PM2.5 Primary (Filt + Cond),TON
+37147,0.05599455,Sulfur Dioxide,TON
+37147,16.773964,"1,3-Butadiene",LB
+37147,2.892342,Acrolein,LB
+37147,0.0395791,Benzo[b]Fluoranthene,LB
+37147,46.18486,Formaldehyde,LB
+37147,0.00685932,"1,3-Butadiene",LB
+37147,0.0002822886,Pyrene,LB
+37147,0.0001833005,PM2.5 Primary (Filt + Cond),TON
+37141,1.7643264,Ethyl Benzene,LB
+37141,1.5956748,"1,3-Butadiene",LB
+37141,1.3498732,Hexane,LB
+37141,0.003202992,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,1.3983436,"2,2,4-Trimethylpentane",LB
+37141,1.9782158e-05,Mercury,LB
+37141,0.00165391,Nitrous Oxide,TON
+37141,0.02699275,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.006328746,Sulfur Dioxide,TON
+37141,0.2937905,Volatile Organic Compounds,TON
+37141,0.02615566,PM2.5 Primary (Filt + Cond),TON
+37141,2.991834,"2,2,4-Trimethylpentane",LB
+37141,0.0489995,Benz[a]Anthracene,LB
+37141,6.922172e-05,Mercury,LB
+37133,6.948342,Ethyl Benzene,LB
+37133,0.0005129904,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.8845036,Fluorene,LB
+37133,0.01650945,Sulfur Dioxide,TON
+37121,5.03175e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.07506104,Fluoranthene,LB
+37121,22.42926,Formaldehyde,LB
+37121,0.06049202,Acenaphthene,LB
+37121,0.1036068,Fluorene,LB
+37121,2.31067,Naphthalene,LB
+37121,0.7266034,Ethyl Benzene,LB
+37121,7.59482e-06,Chromium (VI),LB
+37123,0.8879046,Styrene,LB
+37123,0.172543,Acenaphthylene,LB
+37123,0.0001732973,Mercury,LB
+37123,0.00216078,Nickel,LB
+37123,654.3208,Carbon Dioxide,TON
+37123,0.06013454,PM10 Primary (Filt + Cond),TON
+37123,0.01371582,Sulfur Dioxide,TON
+37123,0.0007917277,Sulfate Portion of PM2.5-PRI,TON
+37111,4.680188,"2,2,4-Trimethylpentane",LB
+37111,0.0005568544,Nickel,LB
+37111,0.0096765,Acenaphthene,LB
+37111,4.807726,Ethyl Benzene,LB
+37111,0.2128862,Styrene,LB
+37111,7.101774,Hexane,LB
+37111,0.008206982,PM2.5 Primary (Filt + Cond),TON
+37111,0.003103081,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.0002529312,Sulfate Portion of PM2.5-PRI,TON
+37107,57.76492,Xylenes (Mixed Isomers),LB
+37107,224.886,Acetaldehyde,LB
+37107,55.7726,Naphthalene,LB
+37107,24349.67,Carbon Dioxide,TON
+37107,0.3592951,Ammonia,TON
+37107,0.004947592,Nitrate portion of PM2.5-PRI,TON
+37107,58.21161,Nitrogen Oxides,TON
+37085,7.726732,Ethyl Benzene,LB
+37085,0.02587348,Pyrene,LB
+37085,0.00010460066,Chromium (VI),LB
+37085,0.0743188,"Benzo[g,h,i,]Perylene",LB
+37085,0.011277852,Chrysene,LB
+37085,26.82604,Formaldehyde,LB
+37085,0.0006409812,"Dibenzo[a,h]Anthracene",LB
+37085,0.012760324,Benz[a]Anthracene,LB
+37085,0.0178522,Organic Carbon portion of PM2.5-PRI,TON
+37063,13.436806,Benzene,LB
+37063,0.03917975,Methane,TON
+37033,0.04844195,Volatile Organic Compounds,TON
+37033,0.0005692794,Benzo[b]Fluoranthene,LB
+37033,0.003033828,Acenaphthylene,LB
+37033,0.0005013864,Benz[a]Anthracene,LB
+37017,12.121822,Toluene,LB
+37001,0.6130132,Ethyl Benzene,LB
+37001,0.10966662,Acrolein,LB
+37001,2.499124,Toluene,LB
+37001,0.0018631044,Fluoranthene,LB
+37001,0.004891092,Acenaphthylene,LB
+37001,13.006106,Acetaldehyde,LB
+37001,0.05505242,Naphthalene,LB
+37001,0.0006559382,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.001646619,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.001551966,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.0003256166,Chrysene,LB
+37149,0.0001885051,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.00052837,Organic Carbon portion of PM2.5-PRI,TON
+37157,24.65944,"1,3-Butadiene",LB
+37157,0.017401574,Benzo[k]Fluoranthene,LB
+37157,98.33602,Benzene,LB
+37157,106.7158,Nitrogen Oxides,TON
+37157,0.1853454,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.02632378,Ammonia,TON
+37155,0.1436117,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.7682961,PM2.5 Primary (Filt + Cond),TON
+37155,34.652,Styrene,LB
+37155,1.2562788,Anthracene,LB
+37155,0.6518942,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.0149638,"Dibenzo[a,h]Anthracene",LB
+37155,0.014310136,Mercury,LB
+37147,0.6103428,Benzo[b]Fluoranthene,LB
+37147,10.314976,Acenaphthylene,LB
+37147,0.01834202,"Dibenzo[a,h]Anthracene",LB
+37147,38019.46,Carbon Dioxide,TON
+37147,0.03081547,Sulfate Portion of PM2.5-PRI,TON
+37143,0.0004740081,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.02796532,Anthracene,LB
+37143,0.6128208,Propionaldehyde,LB
+37143,5.897874,Acetaldehyde,LB
+37177,0.2423765,Volatile Organic Compounds,TON
+37197,29.16594,"1,3-Butadiene",LB
+37197,1.1809194,Benz[a]Anthracene,LB
+37197,5.925316,Fluorene,LB
+37197,30.16379,Carbon Monoxide,TON
+37197,38110.41,Carbon Dioxide,TON
+37197,3.347027,PM10-Primary from certain diesel engines,TON
+37197,0.3223242,Sulfur Dioxide,TON
+37197,8.843724,Ethyl Benzene,LB
+37197,9.035168,"1,3-Butadiene",LB
+37197,6.64337,Hexane,LB
+37197,0.9748998,Anthracene,LB
+37197,14.695454,Propionaldehyde,LB
+37197,5.95731e-05,Mercury,LB
+37197,3.271452,Phenanthrene,LB
+37197,1.616145,PM10 Primary (Filt + Cond),TON
+37153,0.18419346,Acenaphthylene,LB
+37153,0.02942582,Benzo[a]Pyrene,LB
+37153,0.249758,Fluorene,LB
+37153,0.03964791,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.01162671,Ammonia,TON
+37147,0.02407169,PM25-Primary from certain diesel engines,TON
+37147,0.0004845998,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.0019005046,Benzo[b]Fluoranthene,LB
+37147,158.91914,Formaldehyde,LB
+37147,0.1356742,PM10 Primary (Filt + Cond),TON
+37145,0.8697862,Anthracene,LB
+37145,2.446336,Pyrene,LB
+37145,23.02838,Xylenes (Mixed Isomers),LB
+37145,1.859397,Fluoranthene,LB
+37145,0.17480634,Benzo[a]Pyrene,LB
+37145,0.5795358,Benz[a]Anthracene,LB
+37145,117.98134,Acetaldehyde,LB
+37145,29.56816,Naphthalene,LB
+37145,1.178662,PM10-Primary from certain diesel engines,TON
+37145,26.54952,Nitrogen Oxides,TON
+37145,0.06045623,Sulfate Portion of PM2.5-PRI,TON
+37145,0.0005426146,Phenanthrene,LB
+37145,0.00020248,Fluorene,LB
+37145,0.002704109,Nitrogen Oxides,TON
+37145,6.959402e-05,PM10 Primary (Filt + Cond),TON
+37145,0.02041326,Fluoranthene,LB
+37145,0.003243582,Chrysene,LB
+37145,0.005645734,Manganese,LB
+37145,3.477884e-05,Mercury,LB
+37145,4.701812,Acetaldehyde,LB
+37145,0.7368608,Naphthalene,LB
+37143,0.006551862,Acrolein,LB
+37143,0.0004295404,Pyrene,LB
+37143,8.503068e-05,Benzo[a]Pyrene,LB
+37143,1.86025e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.0004407888,PM10 Primary (Filt + Cond),TON
+37143,3.707141e-06,Sulfate Portion of PM2.5-PRI,TON
+37115,6.37369,Benzene,LB
+37115,0.01410221,Ammonia,TON
+37115,0.0001274147,Nitrate portion of PM2.5-PRI,TON
+37115,3.55609,Propionaldehyde,LB
+37115,0.02256168,Chrysene,LB
+37113,0.06423402,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,61.3018,Formaldehyde,LB
+37095,6.817352,Propionaldehyde,LB
+37095,0.003702046,"Dibenzo[a,h]Anthracene",LB
+37095,0.0833044,Arsenic,LB
+37095,126.92882,Acetaldehyde,LB
+37095,18.30676,Naphthalene,LB
+37095,0.5479543,Ammonia,TON
+37095,0.0005005194,Nitrate portion of PM2.5-PRI,TON
+37095,7.32651,Volatile Organic Compounds,TON
+37079,6.980362e-05,Pyrene,LB
+37079,4.844434e-05,"Benzo[g,h,i,]Perylene",LB
+37079,1.8201766e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,6.119852e-05,Fluoranthene,LB
+37079,1.29068e-05,Benzo[k]Fluoranthene,LB
+37079,0.0001898614,Acenaphthylene,LB
+37079,0.01764836,Carbon Monoxide,TON
+37079,3.965278e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37081,3.578988,Hexane,LB
+37081,1.2999456,Pyrene,LB
+37081,0.00591558,"Benzo[g,h,i,]Perylene",LB
+37081,0.02219074,Nickel,LB
+37081,4.29968,Carbon Monoxide,TON
+37081,0.001741983,Nitrate portion of PM2.5-PRI,TON
+37077,1.5731956,Hexane,LB
+37077,0.009947816,Nickel,LB
+37077,0.02102831,Methane,TON
+37077,0.1718389,PM10-Primary from certain diesel engines,TON
+37077,0.0008246314,"Benzo[g,h,i,]Perylene",LB
+37077,0.0012974232,Benzo[b]Fluoranthene,LB
+37077,0.2815544,Fluoranthene,LB
+37077,0.01703613,Nickel,LB
+37077,0.01509634,PM10-Primary from certain diesel engines,TON
+37075,0.01889902,PM10 Primary (Filt + Cond),TON
+37075,9.836662e-07,Chromium (VI),LB
+37075,0.08066068,"2,2,4-Trimethylpentane",LB
+37075,0.09402868,"1,3-Butadiene",LB
+37063,41.11296,Ethyl Benzene,LB
+37063,81.54724,Toluene,LB
+37063,66.59124,Propionaldehyde,LB
+37063,0.3178144,Benzo[b]Fluoranthene,LB
+37063,0.04364492,Benzo[k]Fluoranthene,LB
+37063,1234.7264,Formaldehyde,LB
+37063,4.13107,Acenaphthene,LB
+37063,6.032573,PM25-Primary from certain diesel engines,TON
+37063,4.579004e-07,Nickel,LB
+37063,8.090428e-05,Naphthalene,LB
+37063,0.0001976909,Nitrogen Oxides,TON
+37063,0.004627832,Toluene,LB
+37063,0.0016792226,Hexane,LB
+37063,2.91976e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,7.164104e-06,Acenaphthylene,LB
+37053,11.932884,Propionaldehyde,LB
+37053,1.544388,Fluorene,LB
+37065,5.799372e-05,Manganese,LB
+37065,6.48454e-07,Mercury,LB
+37065,1.239795e-05,Arsenic,LB
+37065,0.000163892,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.000106688,Ammonia,TON
+37065,3.032911e-06,Nitrate portion of PM2.5-PRI,TON
+37065,3.021406,Toluene,LB
+37065,0.6293482,Hexane,LB
+37065,0.002861742,"Benzo[g,h,i,]Perylene",LB
+37065,2.467106e-05,"Dibenzo[a,h]Anthracene",LB
+37063,4.538078e-06,Nickel,LB
+37063,3.205456e-05,Acenaphthene,LB
+37063,0.0001367306,PM10 Primary (Filt + Cond),TON
+37063,5.245095e-05,Sulfur Dioxide,TON
+37063,0.0007144284,Styrene,LB
+37063,0.0006089592,Acrolein,LB
+37063,4.124042e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,1.4329274,Toluene,LB
+37043,0.19007786,Pyrene,LB
+37043,0.002710444,Benzo[b]Fluoranthene,LB
+37043,2.325824,Benzene,LB
+37043,0.003237862,Nickel,LB
+37043,208.8615,Carbon Dioxide,TON
+37043,0.01300506,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.001839557,Sulfur Dioxide,TON
+37031,1.5121398,Styrene,LB
+37031,0.532788,Pyrene,LB
+37031,127.19426,Formaldehyde,LB
+37031,0.0341141,Manganese,LB
+37031,0.004713861,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.1141869,PM10 Primary (Filt + Cond),TON
+37031,0.03036017,PM2.5 Primary (Filt + Cond),TON
+37025,3.726292,Ethyl Benzene,LB
+37025,3.147874,"1,3-Butadiene",LB
+37025,0.006257834,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,114.709,Formaldehyde,LB
+37025,1592.549,Carbon Dioxide,TON
+37025,0.2849443,PM10-Primary from certain diesel engines,TON
+37025,0.09081676,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.004377455,Nitrous Oxide,TON
+37025,0.01581155,Sulfate Portion of PM2.5-PRI,TON
+37025,0.00010573288,Mercury,LB
+37025,2.037312,Phenanthrene,LB
+37025,1.2476488,Fluorene,LB
+37025,21.78061,Carbon Monoxide,TON
+37025,7.222818,"1,3-Butadiene",LB
+37025,0.002584596,"Benzo[g,h,i,]Perylene",LB
+37025,0.0008432986,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.003308404,Benzo[b]Fluoranthene,LB
+37025,1.359053,Volatile Organic Compounds,TON
+37021,0.04393228,Nitrate portion of PM2.5-PRI,TON
+37021,2.465452,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,29.14156,Pyrene,LB
+37021,0.128777,"Benzo[g,h,i,]Perylene",LB
+37021,16.942962,Acenaphthylene,LB
+37021,182.1807,"2,2,4-Trimethylpentane",LB
+37021,451.8608,Benzene,LB
+37021,3.45704,Manganese,LB
+37021,23.05404,Fluorene,LB
+37021,122451.9,Carbon Dioxide,TON
+37019,143.40818,Toluene,LB
+37019,208.7216,Benzene,LB
+37019,0.10091962,Arsenic,LB
+37019,19.679062,Phenanthrene,LB
+37019,1.818204,PM25-Primary from certain diesel engines,TON
+37019,0.1253115,Sulfur Dioxide,TON
+37019,2.262832,Propionaldehyde,LB
+37019,279.4984,Xylenes (Mixed Isomers),LB
+37019,0.5479506,Acenaphthylene,LB
+37019,38.82226,Formaldehyde,LB
+37019,96.31386,"2,2,4-Trimethylpentane",LB
+37019,0.03393534,Benz[a]Anthracene,LB
+37019,0.01334051,Arsenic,LB
+37019,0.09334279,Nitrous Oxide,TON
+37019,0.06824282,PM2.5 Primary (Filt + Cond),TON
+37019,2.258913,Volatile Organic Compounds,TON
+37019,0.7335334,Propionaldehyde,LB
+37019,0.013964754,Benz[a]Anthracene,LB
+37019,0.2541674,Phenanthrene,LB
+37019,7.857788,Phenanthrene,LB
+37019,867.9986,Ethyl Benzene,LB
+37019,28.6135,Propionaldehyde,LB
+37019,0.4997612,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,6.592822,Acenaphthylene,LB
+37015,0.9411306,Ethyl Benzene,LB
+37015,5.47234,Toluene,LB
+37015,9.401328e-08,Chromium (VI),LB
+37015,0.0015226096,"Benzo[g,h,i,]Perylene",LB
+37015,0.0004254114,Benzo[b]Fluoranthene,LB
+37015,0.4843048,Formaldehyde,LB
+37015,0.492113,Acetaldehyde,LB
+37015,0.003050984,Fluorene,LB
+37015,0.000577995,Nitrous Oxide,TON
+37009,0.00015650804,Mercury,LB
+37009,0.01288647,Nitrous Oxide,TON
+37009,0.001182096,Nitrate portion of PM2.5-PRI,TON
+37009,5.444809,Volatile Organic Compounds,TON
+37009,0.002188104,Benzo[k]Fluoranthene,LB
+37009,2.593482,Ethyl Benzene,LB
+37009,0.007210114,Fluoranthene,LB
+37009,0.0012427532,Benzo[k]Fluoranthene,LB
+37009,0.0012825358,Benz[a]Anthracene,LB
+37009,0.0012906438,Manganese,LB
+37009,0.0003914794,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.1559844,Nitrogen Oxides,TON
+37009,0.002161957,PM2.5 Primary (Filt + Cond),TON
+37009,0.0007821046,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,11.380104,Acrolein,LB
+37001,10.385576,Toluene,LB
+37001,7.545306,Propionaldehyde,LB
+37001,1.4616872,Phenanthrene,LB
+37001,5.698593,Carbon Monoxide,TON
+37001,0.2989044,PM10-Primary from certain diesel engines,TON
+37001,0.04406561,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,1.9905228,Ethyl Benzene,LB
+37175,0.013391956,"Benzo[g,h,i,]Perylene",LB
+37175,0.006743886,Manganese,LB
+37175,0.019579002,Phenanthrene,LB
+37175,0.1823812,Naphthalene,LB
+37175,0.000215619,Sulfate Portion of PM2.5-PRI,TON
+37163,0.07139666,Phenanthrene,LB
+37163,0.005099743,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.02138205,Nitrous Oxide,TON
+37193,0.010815304,Acrolein,LB
+37193,0.4690296,Hexane,LB
+37193,0.2207322,Formaldehyde,LB
+37193,0.6196568,Benzene,LB
+37193,4.967656e-05,Manganese,LB
+37193,7.532706e-07,Mercury,LB
+37193,0.2181308,Acetaldehyde,LB
+37193,0.0006759406,Acenaphthene,LB
+37193,0.003705136,Phenanthrene,LB
+37193,0.0004661701,Methane,TON
+37193,0.2989314,Carbon Monoxide,TON
+37189,0.005284114,Benzo[b]Fluoranthene,LB
+37189,0.005284114,Benzo[k]Fluoranthene,LB
+37189,0.009793574,Benzo[a]Pyrene,LB
+37189,0.0003554594,Mercury,LB
+37189,0.000409711,Sulfate Portion of PM2.5-PRI,TON
+37191,5.15905,Toluene,LB
+37191,0.000532879,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,6.55772e-07,Mercury,LB
+37191,0.002789242,Fluorene,LB
+37191,0.4284988,Carbon Monoxide,TON
+37187,0.0177927,Methane,TON
+37187,236.6152,Carbon Dioxide,TON
+37187,0.06559682,Styrene,LB
+37187,0.2272502,Acrolein,LB
+37187,0.002065316,Anthracene,LB
+37187,0.546643,Propionaldehyde,LB
+37187,1.3279158e-05,Chromium (VI),LB
+37187,0.003803964,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,8.7316e-05,"Dibenzo[a,h]Anthracene",LB
+37183,0.01386403,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.012746674,Fluoranthene,LB
+37183,0.0003180814,"Dibenzo[a,h]Anthracene",LB
+37183,3.335166,"2,2,4-Trimethylpentane",LB
+37183,0.002961738,Arsenic,LB
+37183,3.240789,Carbon Monoxide,TON
+37183,0.02535765,Ammonia,TON
+37179,16.486268,Pyrene,LB
+37179,0.0768858,"Benzo[g,h,i,]Perylene",LB
+37179,4.152106,Benz[a]Anthracene,LB
+37179,626.4044,Acetaldehyde,LB
+37179,0.5109055,Methane,TON
+37179,40.84725,Carbon Monoxide,TON
+37179,0.9458697,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.2032371,Sulfate Portion of PM2.5-PRI,TON
+37177,1.5437796,Xylenes (Mixed Isomers),LB
+37177,4.473206e-07,Chromium (VI),LB
+37177,0.0002841538,Benzo[b]Fluoranthene,LB
+37177,4.48423e-06,Mercury,LB
+37177,0.3140578,Carbon Monoxide,TON
+37177,1.593865e-05,Sulfate Portion of PM2.5-PRI,TON
+37177,0.01248212,Volatile Organic Compounds,TON
+37019,1.2895996,Propionaldehyde,LB
+37019,2.634998,Naphthalene,LB
+37019,0.004081358,Ammonia,TON
+37011,0.0006908318,"Dibenzo[a,h]Anthracene",LB
+37011,387.837,Carbon Dioxide,TON
+37011,9.984636,Acrolein,LB
+37011,7.897478,Toluene,LB
+37011,3.269756e-05,Chromium (VI),LB
+37023,20.81748,Toluene,LB
+37023,0.010831058,Benzo[k]Fluoranthene,LB
+37023,0.009356856,Benz[a]Anthracene,LB
+37023,24.50662,Benzene,LB
+37023,0.06638866,Ammonia,TON
+37023,0.01325011,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.000646223,Acenaphthylene,LB
+37003,9.075862e-05,Benz[a]Anthracene,LB
+37003,0.000219637,Manganese,LB
+37003,0.0007836686,Phenanthrene,LB
+37003,0.0001128315,Organic Carbon portion of PM2.5-PRI,TON
+37003,9.924225e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,667.6264,Hexane,LB
+37079,0.007343596,Sulfur Dioxide,TON
+37079,0.7333298,Volatile Organic Compounds,TON
+37079,0.015158838,Manganese,LB
+37079,0.05045375,Methane,TON
+37079,7.57196,Carbon Monoxide,TON
+37079,851.1159,Carbon Dioxide,TON
+37081,80.7039,Hexane,LB
+37081,172.5328,Propionaldehyde,LB
+37081,26.78344,Fluoranthene,LB
+37081,8.808596,Benz[a]Anthracene,LB
+37081,0.04732968,Nitrate portion of PM2.5-PRI,TON
+37081,3.893149,Organic Carbon portion of PM2.5-PRI,TON
+37081,18.76606,Volatile Organic Compounds,TON
+37071,0.551719,Hexane,LB
+37071,0.006563632,Manganese,LB
+37071,0.05250048,PM25-Primary from certain diesel engines,TON
+37071,0.009557416,Nitrate portion of PM2.5-PRI,TON
+37071,263.178,Toluene,LB
+37071,0.0009856354,Chromium (VI),LB
+37071,0.1489134,Benzo[b]Fluoranthene,LB
+37071,0.5761772,Manganese,LB
+37071,14.719176,Acenaphthene,LB
+37069,11179.706,"2,2,4-Trimethylpentane",LB
+37069,1.169626,Elemental Carbon portion of PM2.5-PRI,TON
+37063,1.0003,Methane,TON
+37063,0.01587183,Nitrate portion of PM2.5-PRI,TON
+37063,45.05376,Ethyl Benzene,LB
+37063,16.557012,Styrene,LB
+37063,4.241822,Anthracene,LB
+37063,0.06885738,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,37.11762,"2,2,4-Trimethylpentane",LB
+37063,0.189224,Nickel,LB
+37059,1.2915864,Toluene,LB
+37059,0.00340076,Benzo[b]Fluoranthene,LB
+37059,0.12649754,Fluoranthene,LB
+37059,0.02234372,Chrysene,LB
+37059,0.0004687988,"Dibenzo[a,h]Anthracene",LB
+37059,0.003553562,Nickel,LB
+37059,0.2100168,Phenanthrene,LB
+37059,0.007273692,Ammonia,TON
+37059,0.008242004,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,2.274424,Xylenes (Mixed Isomers),LB
+37065,1.3209834e-05,Chromium (VI),LB
+37065,0.11279078,Fluoranthene,LB
+37065,0.7666458,"2,2,4-Trimethylpentane",LB
+37065,0.004451792,Ammonia,TON
+37065,0.0008574358,Sulfate Portion of PM2.5-PRI,TON
+37065,43.32882,Ethyl Benzene,LB
+37065,62.18528,Hexane,LB
+37065,0.10089156,Fluoranthene,LB
+37065,0.03377426,Benzo[a]Pyrene,LB
+37065,0.02291716,Manganese,LB
+37065,0.0001102301,Nitrate portion of PM2.5-PRI,TON
+37061,5.216946,Acrolein,LB
+37061,5.78547,Xylenes (Mixed Isomers),LB
+37061,6.26597,Benzene,LB
+37061,0.5617112,Phenanthrene,LB
+37061,7.358636,Naphthalene,LB
+37061,0.01354379,Ammonia,TON
+37061,0.01655534,PM2.5 Primary (Filt + Cond),TON
+37061,0.004016818,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.3717746,Volatile Organic Compounds,TON
+37045,0.012296832,"1,3-Butadiene",LB
+37045,0.0017978992,Propionaldehyde,LB
+37039,0.0001105861,Sulfur Dioxide,TON
+37039,0.005115444,Propionaldehyde,LB
+37039,0.00016030314,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,9.92837e-05,Benz[a]Anthracene,LB
+37039,1.0456232e-05,Nickel,LB
+37039,0.1177477,Carbon Monoxide,TON
+37039,0.0001296643,Nitrous Oxide,TON
+37039,0.0001437039,Ammonia,TON
+37039,4.748478e-07,Nitrate portion of PM2.5-PRI,TON
+37037,0.0002133366,Ammonia,TON
+37037,0.05675068,Ethyl Benzene,LB
+37037,0.0004160826,"Benzo[g,h,i,]Perylene",LB
+37037,6.995476e-05,Chrysene,LB
+37037,3.58703e-06,"Dibenzo[a,h]Anthracene",LB
+37037,0.14709796,Benzene,LB
+37037,2.394686e-05,Arsenic,LB
+37037,2.593192e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.03976444,Anthracene,LB
+37035,0.0001362307,Mercury,LB
+37035,0.0016986376,Nickel,LB
+37035,0.0942161,Fluorene,LB
+37035,0.02119727,Methane,TON
+37035,0.0111714,Organic Carbon portion of PM2.5-PRI,TON
+37025,96.18186,Acrolein,LB
+37025,1.529075,Chrysene,LB
+37025,1360.2196,Formaldehyde,LB
+37025,0.0005955872,Mercury,LB
+37025,14.324876,Phenanthrene,LB
+37025,0.6875073,Ammonia,TON
+37025,119.5719,Nitrogen Oxides,TON
+37025,140.73792,Xylenes (Mixed Isomers),LB
+37025,0.001307704,Nickel,LB
+37025,0.01738852,Ammonia,TON
+37025,0.008590808,Sulfur Dioxide,TON
+37025,33.95554,Xylenes (Mixed Isomers),LB
+37025,0.02371912,"Benzo[g,h,i,]Perylene",LB
+37025,45.62564,"2,2,4-Trimethylpentane",LB
+37025,0.02622958,Benz[a]Anthracene,LB
+37025,0.003572416,Nickel,LB
+37025,0.005477816,Arsenic,LB
+37025,0.03037045,Sulfur Dioxide,TON
+37007,5.707974e-05,Mercury,LB
+37007,301.5888,Carbon Dioxide,TON
+37007,2.067792e-05,Nitrate portion of PM2.5-PRI,TON
+37007,0.5952402,Nitrogen Oxides,TON
+37001,0.00014354636,Chromium (VI),LB
+37001,0.11238944,Chrysene,LB
+37001,2.206556,Fluorene,LB
+37001,0.0005702013,Nitrate portion of PM2.5-PRI,TON
+37001,0.01991748,Sulfur Dioxide,TON
+37001,0.6110096,Acetaldehyde,LB
+37001,0.00199864,Methane,TON
+37001,4.174272e-06,Nitrate portion of PM2.5-PRI,TON
+37001,0.03447078,Volatile Organic Compounds,TON
+37001,0.04639268,Styrene,LB
+37001,0.003927872,"Benzo[g,h,i,]Perylene",LB
+37001,0.00077896,Chrysene,LB
+37001,3.386482e-05,"Dibenzo[a,h]Anthracene",LB
+37189,13.691708,Ethyl Benzene,LB
+37189,10.233618,"1,3-Butadiene",LB
+37189,0.00019100634,Chromium (VI),LB
+37189,0.016112032,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.3522907,Organic Carbon portion of PM2.5-PRI,TON
+37183,23.16564,Fluoranthene,LB
+37183,0.09155088,Benzo[k]Fluoranthene,LB
+37183,16.7205,Acenaphthylene,LB
+37183,7.279096,Benz[a]Anthracene,LB
+37183,359.7514,Benzene,LB
+37183,138.26494,Ethyl Benzene,LB
+37183,108.7543,Hexane,LB
+37183,2.914523,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.009401557,Nitrous Oxide,TON
+37199,0.5979309,PM10 Primary (Filt + Cond),TON
+37199,0.01482094,Sulfate Portion of PM2.5-PRI,TON
+37199,53.42814,Acrolein,LB
+37199,36.35992,Propionaldehyde,LB
+37199,292.4154,Acetaldehyde,LB
+37195,10.850844,Xylenes (Mixed Isomers),LB
+37115,0.800432,Xylenes (Mixed Isomers),LB
+37115,0.0001234651,Chrysene,LB
+37115,1.6742176e-05,Nickel,LB
+37115,0.0008555284,Fluorene,LB
+37109,0.015777872,Nickel,LB
+37109,0.006248896,Arsenic,LB
+37109,12.791712,Naphthalene,LB
+37109,0.01366016,Sulfur Dioxide,TON
+37109,2.512548,Volatile Organic Compounds,TON
+37109,4320.98,"2,2,4-Trimethylpentane",LB
+37101,271.7188,Carbon Dioxide,TON
+37101,0.00640783,Ammonia,TON
+37101,0.09037379,PM2.5 Primary (Filt + Cond),TON
+37095,504.593,Carbon Dioxide,TON
+37095,0.15459,PM2.5 Primary (Filt + Cond),TON
+37095,1.9676118,Xylenes (Mixed Isomers),LB
+37095,0.2683396,Fluoranthene,LB
+37095,0.7924972,"2,2,4-Trimethylpentane",LB
+37083,3.810202,Xylenes (Mixed Isomers),LB
+37083,1.0583742e-06,Chromium (VI),LB
+37083,0.0009232872,Benzo[k]Fluoranthene,LB
+37083,0.009575016,Acenaphthylene,LB
+37083,3.41287e-05,"Dibenzo[a,h]Anthracene",LB
+37083,0.0008678236,Benz[a]Anthracene,LB
+37083,0.615207,Acetaldehyde,LB
+37083,0.0009801073,Nitrous Oxide,TON
+37053,13.303046,Propionaldehyde,LB
+37053,2.557216,Pyrene,LB
+37053,0.014491592,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.6619635,PM2.5 Primary (Filt + Cond),TON
+37053,0.02718736,Sulfur Dioxide,TON
+37053,3.29494,Fluoranthene,LB
+37053,1.1089256,Benzo[a]Pyrene,LB
+37053,47250.39,Carbon Dioxide,TON
+37053,2.956164,"Benzo[g,h,i,]Perylene",LB
+37053,1503.2326,Ethyl Benzene,LB
+37053,9215.594,Toluene,LB
+37053,0.003441892,Chromium (VI),LB
+37051,58.62366,Styrene,LB
+37051,48.66458,Propionaldehyde,LB
+37051,4.191986,Pyrene,LB
+37051,1.0332548,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.7470576,Benzo[k]Fluoranthene,LB
+37051,858.7802,Acetaldehyde,LB
+37051,1.851583,Methane,TON
+37051,43.76963,Volatile Organic Compounds,TON
+37029,0.004282156,Manganese,LB
+37029,0.03404471,PM25-Primary from certain diesel engines,TON
+37029,0.007859315,Ammonia,TON
+37029,0.7055832,Nitrogen Oxides,TON
+37029,0.0009415304,Benzo[b]Fluoranthene,LB
+37029,0.14683062,Fluoranthene,LB
+37029,0.8508438,"2,2,4-Trimethylpentane",LB
+37029,0.02424936,Benz[a]Anthracene,LB
+37023,0.013131744,Fluoranthene,LB
+37023,0.00016507848,"Dibenzo[a,h]Anthracene",LB
+37023,0.017390836,Fluorene,LB
+37023,0.008793051,PM2.5 Primary (Filt + Cond),TON
+37023,0.1543226,Volatile Organic Compounds,TON
+37023,0.16512804,Acrolein,LB
+37171,0.0010301,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.000388975,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,19.25316,Toluene,LB
+37171,0.005846564,"Benzo[g,h,i,]Perylene",LB
+37171,5234.96,Ethyl Benzene,LB
+37171,154.65722,Acrolein,LB
+37171,34.28098,Acenaphthylene,LB
+37171,14.28665,PM10 Primary (Filt + Cond),TON
+37167,8.293624e-05,Mercury,LB
+37167,1.3253994,Acenaphthene,LB
+37167,11.64292,Carbon Monoxide,TON
+37167,2.0385,PM10-Primary from certain diesel engines,TON
+37167,0.005940662,Nitrate portion of PM2.5-PRI,TON
+37167,36.98798,Nitrogen Oxides,TON
+37167,13.077364,Ethyl Benzene,LB
+37167,0.02045212,"Benzo[g,h,i,]Perylene",LB
+37167,0.02606846,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,2.22856,Acenaphthylene,LB
+37165,1.566661,Fluoranthene,LB
+37165,22.39196,Benzene,LB
+37165,0.02575556,Arsenic,LB
+37165,26.32656,Naphthalene,LB
+37165,0.1127799,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.00138367,Methane,TON
+37165,6.457077e-05,Nitrate portion of PM2.5-PRI,TON
+37165,0.13432368,Hexane,LB
+37165,0.007357266,Chrysene,LB
+37165,0.13032522,"2,2,4-Trimethylpentane",LB
+37165,0.012664196,Benz[a]Anthracene,LB
+37165,0.00018639202,Arsenic,LB
+37165,5.060926e-05,Pyrene,LB
+37165,1.2406214e-05,Benzo[b]Fluoranthene,LB
+37165,0.02071922,"2,2,4-Trimethylpentane",LB
+37165,2.954276e-05,Acenaphthene,LB
+37165,0.01362704,Carbon Monoxide,TON
+37165,5.993196e-07,Sulfate Portion of PM2.5-PRI,TON
+37153,3951.69,Formaldehyde,LB
+37153,3.709664,Benzo[a]Pyrene,LB
+37153,8938.134,"2,2,4-Trimethylpentane",LB
+37153,2.091572,Manganese,LB
+37153,0.8599876,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.01150608,Nitrate portion of PM2.5-PRI,TON
+37153,2.079091,Organic Carbon portion of PM2.5-PRI,TON
+37135,3.168392,Ethyl Benzene,LB
+37135,3.832728e-05,Mercury,LB
+37135,0.4182389,PM10 Primary (Filt + Cond),TON
+37131,0.001775816,Nitrous Oxide,TON
+37131,0.001074537,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.345525,"1,3-Butadiene",LB
+37131,7.060906,Xylenes (Mixed Isomers),LB
+37131,0.0002741896,Nickel,LB
+37131,0.15921192,Naphthalene,LB
+37131,1830.1994,Ethyl Benzene,LB
+37131,0.00387469,Chromium (VI),LB
+37131,1.639475,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,1.632608,Benzo[a]Pyrene,LB
+37131,0.03763256,"Dibenzo[a,h]Anthracene",LB
+37131,955.78,Acetaldehyde,LB
+37131,1.08038,Nitrous Oxide,TON
+37131,5.015861,Ammonia,TON
+37117,0.01477027,PM2.5 Primary (Filt + Cond),TON
+37117,0.6925557,Volatile Organic Compounds,TON
+37117,0.669931,Acrolein,LB
+37117,0.011189408,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,31.11948,"2,2,4-Trimethylpentane",LB
+37117,0.00869358,Manganese,LB
+37125,0.002946638,Styrene,LB
+37125,0.0002427684,Pyrene,LB
+37125,0.2751948,Xylenes (Mixed Isomers),LB
+37125,0.08400698,"2,2,4-Trimethylpentane",LB
+37125,0.0001416188,Acenaphthene,LB
+37125,3.459949e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,4.673526,Propionaldehyde,LB
+37123,0.000554109,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.000303359,Benzo[k]Fluoranthene,LB
+37123,88.66362,Formaldehyde,LB
+37123,0.06102132,Benz[a]Anthracene,LB
+37123,2.28634e-05,Mercury,LB
+37123,0.2881792,Acenaphthene,LB
+37123,0.07077686,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.51145,Styrene,LB
+37109,3.24162,Toluene,LB
+37109,1.9850854,Propionaldehyde,LB
+37109,0.01304556,Manganese,LB
+37109,0.001448867,Nitrous Oxide,TON
+37103,0.11087402,Benz[a]Anthracene,LB
+37103,291.2053,Carbon Dioxide,TON
+37103,1.995407,Nitrogen Oxides,TON
+37093,7.371034e-06,Benzo[k]Fluoranthene,LB
+37093,0.00013586776,Acenaphthylene,LB
+37093,2.09522e-07,"Dibenzo[a,h]Anthracene",LB
+37093,0.01162912,Carbon Monoxide,TON
+37093,2.184465e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37093,3.026689e-06,Sulfur Dioxide,TON
+37091,14.540826,"2,2,4-Trimethylpentane",LB
+37091,0.015595994,Acenaphthene,LB
+37091,0.002708279,Organic Carbon portion of PM2.5-PRI,TON
+37091,5.200934e-06,Chromium (VI),LB
+37089,0.03090348,Fluoranthene,LB
+37089,6.705322,Acetaldehyde,LB
+37089,0.01581001,Methane,TON
+37089,0.006416126,Nitrous Oxide,TON
+37089,0.0066421,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.0003924397,Sulfate Portion of PM2.5-PRI,TON
+37089,0.4704815,Volatile Organic Compounds,TON
+37089,0.0002750812,"Dibenzo[a,h]Anthracene",LB
+37089,21.6773,"2,2,4-Trimethylpentane",LB
+37089,0.00751454,Benz[a]Anthracene,LB
+37089,0.00449403,Manganese,LB
+37087,84.0483,Xylenes (Mixed Isomers),LB
+37073,11.310534,Xylenes (Mixed Isomers),LB
+37073,0.0009995106,Benzo[b]Fluoranthene,LB
+37073,1.19163,Formaldehyde,LB
+37073,4.774038,"2,2,4-Trimethylpentane",LB
+37073,4.043932,Benzene,LB
+37073,7.586684e-06,Mercury,LB
+37073,0.003015336,Methane,TON
+37073,4.08416e-05,Sulfate Portion of PM2.5-PRI,TON
+37081,474.7616,Acrolein,LB
+37081,148.6812,Hexane,LB
+37081,370.3082,Xylenes (Mixed Isomers),LB
+37081,0.0880192,"Benzo[g,h,i,]Perylene",LB
+37081,0.04951246,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.8760226,Nickel,LB
+37081,0.267728,Arsenic,LB
+37081,5.829683,PM10-Primary from certain diesel engines,TON
+37081,1.250191,Ammonia,TON
+37081,1.001943,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.03128538,Acenaphthylene,LB
+37075,0.5630354,Benzene,LB
+37075,0.0003709344,Arsenic,LB
+37075,0.6591432,Naphthalene,LB
+37075,59.22155,Carbon Dioxide,TON
+37073,70.44698,Benzene,LB
+37069,1576.803,Carbon Dioxide,TON
+37059,28.84813,Nitrogen Oxides,TON
+37059,1.542695,Volatile Organic Compounds,TON
+37059,3.904408,Styrene,LB
+37059,0.008207494,"Dibenzo[a,h]Anthracene",LB
+37059,24.72882,Benzene,LB
+37059,0.08453024,Manganese,LB
+37059,1.929024,Fluorene,LB
+37059,7.74174,Carbon Monoxide,TON
+37059,4137.555,Carbon Dioxide,TON
+37115,0.0004106096,Phenanthrene,LB
+37115,5.125914e-07,Nitrate portion of PM2.5-PRI,TON
+37115,0.004664922,Volatile Organic Compounds,TON
+37115,0.0412115,Ethyl Benzene,LB
+37115,0.009472044,"1,3-Butadiene",LB
+37115,5.625256e-07,Chromium (VI),LB
+37115,7.976136e-05,Benzo[b]Fluoranthene,LB
+37115,0.00012414424,Fluoranthene,LB
+37083,1.8067694e-05,Chromium (VI),LB
+37083,0.002258452,Nickel,LB
+37083,250.9307,Carbon Dioxide,TON
+37083,0.1072994,Volatile Organic Compounds,TON
+37079,2.819852,Hexane,LB
+37079,6.887918,Xylenes (Mixed Isomers),LB
+37079,2.210982e-05,Chromium (VI),LB
+37079,0.015707324,"Benzo[g,h,i,]Perylene",LB
+37079,0.005901486,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,3.446574,"2,2,4-Trimethylpentane",LB
+37079,9.161868,Benzene,LB
+37079,0.006954264,Fluorene,LB
+37079,0.17890338,Naphthalene,LB
+37079,0.005659339,Nitrous Oxide,TON
+37079,1.923526e-05,Nitrate portion of PM2.5-PRI,TON
+37079,0.02064278,PM10 Primary (Filt + Cond),TON
+37079,0.007475201,PM2.5 Primary (Filt + Cond),TON
+37175,0.03928684,Styrene,LB
+37175,5.122392e-07,Chromium (VI),LB
+37175,0.02147252,Fluoranthene,LB
+37175,8.509832e-05,Benzo[k]Fluoranthene,LB
+37175,0.002086362,Benzo[a]Pyrene,LB
+37175,8.500746e-05,"Dibenzo[a,h]Anthracene",LB
+37175,0.0002898702,Nickel,LB
+37175,1.2212222,Acetaldehyde,LB
+37175,0.009037012,Acenaphthene,LB
+37175,0.006876651,PM10-Primary from certain diesel engines,TON
+37175,0.008944863,PM10 Primary (Filt + Cond),TON
+37175,0.5704902,Toluene,LB
+37175,0.0004670972,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.0602164,Fluoranthene,LB
+37175,0.7194242,Benzene,LB
+37175,165.7753,Carbon Dioxide,TON
+37175,0.009036432,Organic Carbon portion of PM2.5-PRI,TON
+37169,1.4302878,Acrolein,LB
+37169,72.90732,Hexane,LB
+37169,0.0006603242,"Dibenzo[a,h]Anthracene",LB
+37169,0.1458375,Fluorene,LB
+37169,0.001140262,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.003163983,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.0002132852,Sulfate Portion of PM2.5-PRI,TON
+37169,0.2268506,Volatile Organic Compounds,TON
+37169,0.3342688,Styrene,LB
+37169,10.982408,Hexane,LB
+37169,0.00519964,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.00398386,Benzo[b]Fluoranthene,LB
+37167,410.192,Ethyl Benzene,LB
+37167,5.436066,Propionaldehyde,LB
+37167,0.12662728,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,684.5018,"2,2,4-Trimethylpentane",LB
+37167,0.09414512,Benz[a]Anthracene,LB
+37167,0.6643916,Fluorene,LB
+37167,17.03167,Naphthalene,LB
+37167,0.1529481,Methane,TON
+37167,2083.971,Carbon Dioxide,TON
+37167,0.2627518,Ammonia,TON
+37163,0.39089,Propionaldehyde,LB
+37163,3.731622e-05,Mercury,LB
+37163,6.252202,Acetaldehyde,LB
+37163,8.173847,Carbon Monoxide,TON
+37161,4.00445,Xylenes (Mixed Isomers),LB
+37161,1.518725,"2,2,4-Trimethylpentane",LB
+37161,0.019390982,Manganese,LB
+37161,0.03346187,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.2006871,PM10 Primary (Filt + Cond),TON
+37161,0.1338935,PM2.5 Primary (Filt + Cond),TON
+37157,0.5686998,Acetaldehyde,LB
+37157,0.0006576055,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.00168299,PM10 Primary (Filt + Cond),TON
+37157,0.03121495,Volatile Organic Compounds,TON
+37157,1.101415,Ethyl Benzene,LB
+37157,6.244232,Toluene,LB
+37157,1.5378046e-07,Chromium (VI),LB
+37139,0.0008800294,"Dibenzo[a,h]Anthracene",LB
+37139,0.08391068,Benz[a]Anthracene,LB
+37139,0.3525902,Fluorene,LB
+37139,0.01606997,Methane,TON
+37139,0.1130684,PM25-Primary from certain diesel engines,TON
+37139,3.954284,Nitrogen Oxides,TON
+37125,13.809004,Acrolein,LB
+37125,0.7527096,Fluoranthene,LB
+37125,0.0008005144,"Dibenzo[a,h]Anthracene",LB
+37125,0.1781737,PM10-Primary from certain diesel engines,TON
+37069,0.04009284,"1,3-Butadiene",LB
+37069,0.33042,"2,2,4-Trimethylpentane",LB
+37069,0.0008315551,Nitrous Oxide,TON
+37069,2.123338e-06,Nitrate portion of PM2.5-PRI,TON
+37065,0.001423183,Acenaphthylene,LB
+37065,0.000363222,Benz[a]Anthracene,LB
+37061,0.3619672,Ethyl Benzene,LB
+37061,0.006465058,Methane,TON
+37049,9.441882,"2,2,4-Trimethylpentane",LB
+37171,1.0676558,"1,3-Butadiene",LB
+37171,0.02235758,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,9.743204,"2,2,4-Trimethylpentane",LB
+37171,0.010078776,Benz[a]Anthracene,LB
+37171,0.01947083,Fluorene,LB
+37171,0.01831936,Nitrous Oxide,TON
+37171,7.477359e-05,Nitrate portion of PM2.5-PRI,TON
+37171,0.01367701,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.3780242,Acrolein,LB
+37165,0.9183084,Propionaldehyde,LB
+37165,0.009790606,Manganese,LB
+37165,0.0003543298,Sulfate Portion of PM2.5-PRI,TON
+37171,16.71464,Pyrene,LB
+37171,0.07897,Benzo[b]Fluoranthene,LB
+37171,0.6559098,Methane,TON
+37169,0.0007659064,Benzo[k]Fluoranthene,LB
+37169,0.005338224,Acenaphthylene,LB
+37169,3.107848e-05,"Dibenzo[a,h]Anthracene",LB
+37169,5.185886e-05,Manganese,LB
+37169,0.0011638588,Acenaphthene,LB
+37169,0.006458208,Phenanthrene,LB
+37169,0.001364361,Methane,TON
+37169,0.4451765,Carbon Monoxide,TON
+37169,0.0007182966,Organic Carbon portion of PM2.5-PRI,TON
+37169,4.05034,Toluene,LB
+37169,0.0013543272,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,20.25474,Toluene,LB
+37165,0.002905964,Benzo[b]Fluoranthene,LB
+37165,0.002984525,Nitrous Oxide,TON
+37165,0.004222906,Sulfur Dioxide,TON
+37165,956.5332,Xylenes (Mixed Isomers),LB
+37165,0.000385481,Chromium (VI),LB
+37165,0.0005373512,Nitrate portion of PM2.5-PRI,TON
+37165,0.09733312,Organic Carbon portion of PM2.5-PRI,TON
+37165,7.464594,Volatile Organic Compounds,TON
+37165,5.303906,"1,3-Butadiene",LB
+37165,3.13579,Acrolein,LB
+37165,0.2763662,Pyrene,LB
+37165,219.8984,Benzene,LB
+37165,0.008668058,Nickel,LB
+37165,0.1107476,PM10 Primary (Filt + Cond),TON
+37155,0.00979371,Benzo[b]Fluoranthene,LB
+37155,0.002501412,Arsenic,LB
+37155,475.1656,Carbon Dioxide,TON
+37155,0.02011455,Ammonia,TON
+37155,5.453171e-05,Nitrate portion of PM2.5-PRI,TON
+37155,0.01009977,Organic Carbon portion of PM2.5-PRI,TON
+37059,1.2848954,Hexane,LB
+37005,0.16202642,Hexane,LB
+37005,1.007842e-06,Chromium (VI),LB
+37005,0.0002219386,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.0008625528,Ammonia,TON
+37005,0.0001351447,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.01134272,Volatile Organic Compounds,TON
+37169,0.01002244,Nitrous Oxide,TON
+37169,0.4909984,Acrolein,LB
+37169,0.003620608,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.000287277,Sulfate Portion of PM2.5-PRI,TON
+37129,0.004201602,Pyrene,LB
+37129,0.013118358,"Benzo[g,h,i,]Perylene",LB
+37129,3.065498,"2,2,4-Trimethylpentane",LB
+37129,0.002221504,Benz[a]Anthracene,LB
+37129,0.01426296,Manganese,LB
+37129,0.002116648,Acenaphthene,LB
+37129,0.190867,Volatile Organic Compounds,TON
+37007,0.001192977,Phenanthrene,LB
+37007,0.0004433036,Fluorene,LB
+37007,0.011367322,Naphthalene,LB
+37007,2.111796e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37007,6.146129e-05,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.00369309,Volatile Organic Compounds,TON
+37007,0.005082416,Styrene,LB
+37007,0.18027038,Hexane,LB
+37007,0.0003692736,Pyrene,LB
+37007,0.0003238634,Fluoranthene,LB
+37019,0.01716046,Nitrate portion of PM2.5-PRI,TON
+37019,3.27153,Benzo[k]Fluoranthene,LB
+37005,0.00390802,Anthracene,LB
+37005,3.030858e-05,"Dibenzo[a,h]Anthracene",LB
+37005,0.02750262,Carbon Monoxide,TON
+37005,8.967151,Carbon Dioxide,TON
+37005,3.07455e-05,Nitrous Oxide,TON
+37005,0.04758056,Nitrogen Oxides,TON
+37005,0.0025355,PM2.5 Primary (Filt + Cond),TON
+37005,0.004157431,Methane,TON
+37005,0.0004981721,Sulfur Dioxide,TON
+37081,0.0002200604,"Dibenzo[a,h]Anthracene",LB
+37081,35.32086,Acetaldehyde,LB
+37081,0.03421323,Methane,TON
+37081,719.2847,Carbon Dioxide,TON
+37081,0.002432377,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.01547662,PM2.5 Primary (Filt + Cond),TON
+37081,0.08832566,Styrene,LB
+37081,6.50536,Xylenes (Mixed Isomers),LB
+37039,0.000781488,Fluoranthene,LB
+37039,0.000940254,Fluorene,LB
+37039,0.04006621,Nitrogen Oxides,TON
+37039,0.0004053602,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.00011534162,Benzo[a]Pyrene,LB
+37029,5.310332e-05,Benz[a]Anthracene,LB
+37029,0.000304313,Phenanthrene,LB
+37029,0.0004524713,Ammonia,TON
+37029,0.006556796,"1,3-Butadiene",LB
+37029,0.01286414,Propionaldehyde,LB
+37011,0.12723084,Ethyl Benzene,LB
+37011,0.006488596,Styrene,LB
+37011,0.4904412,Toluene,LB
+37011,0.4098888,Formaldehyde,LB
+37011,0.2242068,"2,2,4-Trimethylpentane",LB
+37011,0.0002243188,Acenaphthene,LB
+37011,0.011697402,Naphthalene,LB
+37123,8.723382,Toluene,LB
+37123,3.706256,Xylenes (Mixed Isomers),LB
+37123,3.273256,"2,2,4-Trimethylpentane",LB
+37113,0.000488307,Benzo[k]Fluoranthene,LB
+37113,0.002434414,Acenaphthylene,LB
+37113,0.001429973,PM2.5 Primary (Filt + Cond),TON
+37101,71.60316,Benzene,LB
+37101,2.953992,"1,3-Butadiene",LB
+37101,0.02407432,Anthracene,LB
+37117,0.1447101,Acrolein,LB
+37117,0.002578884,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.00259464,Benzo[a]Pyrene,LB
+37117,1.5454888e-05,Mercury,LB
+37117,0.2890121,Nitrogen Oxides,TON
+37111,0.01936801,Nitrous Oxide,TON
+37111,0.4715699,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.019764264,"Benzo[g,h,i,]Perylene",LB
+37111,0.09217306,Benzo[b]Fluoranthene,LB
+37111,3.514464,Fluorene,LB
+37111,60.18732,Naphthalene,LB
+37111,20300.95,Carbon Dioxide,TON
+37119,0.2241423,PM10 Primary (Filt + Cond),TON
+37119,0.02868739,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.7414966,Styrene,LB
+37119,2.89756,Propionaldehyde,LB
+37119,0.003091152,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.04070446,Benzo[a]Pyrene,LB
+37119,25.73792,Acetaldehyde,LB
+37119,0.1726085,Acenaphthene,LB
+37119,6.442266,Naphthalene,LB
+37119,860.947,Carbon Dioxide,TON
+37119,0.002080748,Nitrous Oxide,TON
+37113,1.5901054,"1,3-Butadiene",LB
+37113,0.00324585,Chrysene,LB
+37113,6.40014e-05,Nickel,LB
+37113,0.2077925,Volatile Organic Compounds,TON
+37109,0.4274756,Benzo[a]Pyrene,LB
+37109,3.651984,Fluorene,LB
+37109,3.498288,PM10 Primary (Filt + Cond),TON
+37109,0.07781912,Sulfur Dioxide,TON
+37091,1.9558942,Styrene,LB
+37091,0.4799438,Anthracene,LB
+37091,0.0874558,Manganese,LB
+37091,0.7936704,PM10-Primary from certain diesel engines,TON
+37091,0.4820724,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.001544693,Nitrate portion of PM2.5-PRI,TON
+37103,1.9435512,Xylenes (Mixed Isomers),LB
+37103,10.088068,Acetaldehyde,LB
+37103,0.01620358,Methane,TON
+37103,0.0009113234,Sulfate Portion of PM2.5-PRI,TON
+37095,0.006940696,Pyrene,LB
+37095,0.0009607798,Chrysene,LB
+37095,0.001766421,PM10-Primary from certain diesel engines,TON
+37095,0.001625095,PM25-Primary from certain diesel engines,TON
+37095,0.0001388879,Ammonia,TON
+37095,5.183716e-05,Sulfur Dioxide,TON
+37089,811.5678,Formaldehyde,LB
+37089,71.52688,Benzene,LB
+37089,0.318748,Manganese,LB
+37089,0.6321257,Elemental Carbon portion of PM2.5-PRI,TON
+37089,31.60694,Nitrogen Oxides,TON
+37089,22.23228,"1,3-Butadiene",LB
+37089,64.68034,Toluene,LB
+37087,38.67086,Naphthalene,LB
+37087,22.79814,Nitrogen Oxides,TON
+37087,14.883642,Propionaldehyde,LB
+37087,0.2372966,Chrysene,LB
+37087,0.2481062,Benz[a]Anthracene,LB
+37075,5.99136,Hexane,LB
+37061,57.42238,Acrolein,LB
+37061,55.44368,Xylenes (Mixed Isomers),LB
+37061,1.931456,PM25-Primary from certain diesel engines,TON
+37061,0.7921704,Anthracene,LB
+37061,8.480986e-05,Chromium (VI),LB
+37061,1.6194804,Acenaphthylene,LB
+37061,0.09685938,Chrysene,LB
+37061,27.68536,Benzene,LB
+37061,2106.411,Carbon Dioxide,TON
+37061,0.0005230111,Nitrate portion of PM2.5-PRI,TON
+37061,0.01853787,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.0409688,Acenaphthene,LB
+37055,0.16913458,Phenanthrene,LB
+37055,0.07485463,Volatile Organic Compounds,TON
+37055,13.763752,Formaldehyde,LB
+37039,0.728791,Ethyl Benzene,LB
+37039,0.5555128,Hexane,LB
+37039,0.000739671,"Dibenzo[a,h]Anthracene",LB
+37039,2.379334,Naphthalene,LB
+37039,0.08442162,PM10 Primary (Filt + Cond),TON
+37037,0.0585559,Chrysene,LB
+37037,0.003528964,Arsenic,LB
+37037,0.02752066,Methane,TON
+37037,1063.769,Carbon Dioxide,TON
+37037,0.002128583,Nitrous Oxide,TON
+37025,7.189416e-08,Chromium (VI),LB
+37025,0.0009385258,Fluorene,LB
+37025,1.280069,Methane,TON
+37025,0.003027416,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.004675748,Styrene,LB
+37029,0.0008857,Acenaphthylene,LB
+37029,0.0010661216,Phenanthrene,LB
+37131,0.00018163192,Benzo[b]Fluoranthene,LB
+37131,0.00018163192,Benzo[k]Fluoranthene,LB
+37131,0.000273803,Fluorene,LB
+37131,0.0007502959,Sulfur Dioxide,TON
+37169,6.652006,Ethyl Benzene,LB
+37169,6.600928,"1,3-Butadiene",LB
+37169,2.108852,Pyrene,LB
+37169,0.2982154,Chrysene,LB
+37169,0.5694806,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.1014847,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.0214018,Sulfate Portion of PM2.5-PRI,TON
+37155,0.05919421,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,2.978428,Hexane,LB
+37155,0.007102952,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.003832082,Benzo[k]Fluoranthene,LB
+37155,118.62838,Formaldehyde,LB
+37155,0.8134414,Fluorene,LB
+37163,28.68606,Styrene,LB
+37163,921.995,Hexane,LB
+37163,376.517,Formaldehyde,LB
+37163,0.10581426,Nickel,LB
+37163,0.09834787,Elemental Carbon portion of PM2.5-PRI,TON
+37163,34.89955,Nitrogen Oxides,TON
+37163,0.4753859,PM2.5 Primary (Filt + Cond),TON
+37163,0.1350501,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.7428252,Nickel,LB
+37153,27.11656,Phenanthrene,LB
+37153,0.08452561,Sulfate Portion of PM2.5-PRI,TON
+37153,116.34678,Styrene,LB
+37153,96.57108,Propionaldehyde,LB
+37153,6.403324,"Benzo[g,h,i,]Perylene",LB
+37145,21.36411,Nitrogen Oxides,TON
+37145,7.4329,Ethyl Benzene,LB
+37145,7.54657,"1,3-Butadiene",LB
+37145,14.12896,Toluene,LB
+37145,12.28867,Propionaldehyde,LB
+37145,0.07859968,Manganese,LB
+37145,6.659318,Ethyl Benzene,LB
+37129,7.042914,Formaldehyde,LB
+37129,3.004336,Acetaldehyde,LB
+37129,0.0001057998,Sulfate Portion of PM2.5-PRI,TON
+37139,0.012081952,Styrene,LB
+37139,0.452095,Hexane,LB
+37139,0.0008741628,Pyrene,LB
+37139,0.0011702684,"Benzo[g,h,i,]Perylene",LB
+37139,0.0004396854,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,3.396616e-05,Manganese,LB
+37139,0.15762486,Acetaldehyde,LB
+37139,0.001013123,Fluorene,LB
+37139,7.97488e-05,Ammonia,TON
+37139,0.01799765,Sulfur Dioxide,TON
+37127,0.05099483,Methane,TON
+37127,1848.364,Carbon Dioxide,TON
+37127,10.58337,Nitrogen Oxides,TON
+37127,0.01597182,Sulfur Dioxide,TON
+37127,10.86214,Acrolein,LB
+37127,1.0618786,Pyrene,LB
+37127,9.165122,Xylenes (Mixed Isomers),LB
+37127,0.004256744,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,2.846826,Hexane,LB
+37013,2.83885,"2,2,4-Trimethylpentane",LB
+37013,12.39809,Naphthalene,LB
+37013,0.004220644,Nitrous Oxide,TON
+37007,0.7593244,Anthracene,LB
+37007,9.683062e-05,Chromium (VI),LB
+37007,0.00907093,"Benzo[g,h,i,]Perylene",LB
+37007,0.14457118,Benzo[a]Pyrene,LB
+37007,7962.661,Carbon Dioxide,TON
+37005,1.4194714,Acetaldehyde,LB
+37005,0.0006836675,Ammonia,TON
+37005,0.0003731018,Sulfur Dioxide,TON
+37005,3.453036,Ethyl Benzene,LB
+37005,0.097142,Styrene,LB
+37073,6.781892e-05,"Dibenzo[a,h]Anthracene",LB
+37073,5.1262,Benzene,LB
+37073,0.004007458,PM2.5 Primary (Filt + Cond),TON
+37073,0.00131817,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.001742844,Anthracene,LB
+37021,32.90096,Ethyl Benzene,LB
+37021,80.21098,Toluene,LB
+37021,2.266948,Anthracene,LB
+37021,4.33292,Pyrene,LB
+37021,3.574496,Fluoranthene,LB
+37021,0.01206624,Nitrous Oxide,TON
+37013,0.16609462,Styrene,LB
+37013,0.378714,"1,3-Butadiene",LB
+37013,0.0424334,Anthracene,LB
+37013,0.0006947822,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.319373,"2,2,4-Trimethylpentane",LB
+37013,5.305872,Acetaldehyde,LB
+37013,0.006406324,Methane,TON
+37013,0.05908865,PM10-Primary from certain diesel engines,TON
+37013,1.192486,Nitrogen Oxides,TON
+37017,1.461069e-06,Sulfur Dioxide,TON
+37017,1.177298e-07,Sulfate Portion of PM2.5-PRI,TON
+37017,0.0001331067,Volatile Organic Compounds,TON
+37013,3.413232,Ethyl Benzene,LB
+37013,0.0989139,Acrolein,LB
+37013,0.0013769814,Chrysene,LB
+37013,0.004041319,Methane,TON
+37013,0.0004781014,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.00355299,Nitrous Oxide,TON
+37013,0.003510774,Ammonia,TON
+37013,0.0225192,Volatile Organic Compounds,TON
+37013,1.0385352,Hexane,LB
+37013,1.0158146,"2,2,4-Trimethylpentane",LB
+37013,0.3920472,Acetaldehyde,LB
+37013,0.00242457,Fluorene,LB
+37013,0.00050993,Nitrous Oxide,TON
+37013,3.976873e-05,Sulfur Dioxide,TON
+37011,0.08698052,Ethyl Benzene,LB
+37011,5.53718e-07,Chromium (VI),LB
+37011,1.129926,Acetaldehyde,LB
+37011,3.06337e-05,Nitrate portion of PM2.5-PRI,TON
+37011,0.1089199,Nitrogen Oxides,TON
+37011,0.002438396,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.007701267,PM10 Primary (Filt + Cond),TON
+37011,0.0001763154,Sulfate Portion of PM2.5-PRI,TON
+37011,1.7156e-05,Propionaldehyde,LB
+37011,1.731512e-10,Chromium (VI),LB
+37011,4.59786e-07,Benzo[k]Fluoranthene,LB
+37011,3.318784e-08,Arsenic,LB
+37011,4.81021e-07,Methane,TON
+37011,0.01089601,Carbon Dioxide,TON
+37011,7.92168e-07,PM2.5 Primary (Filt + Cond),TON
+37065,1.5766574,Benzene,LB
+37027,0.0004183242,Fluoranthene,LB
+37027,0.7011564,Benzene,LB
+37027,2.184626e-05,Mercury,LB
+37027,0.0004176828,Arsenic,LB
+37027,0.0004920698,Fluorene,LB
+37165,0.09173826,Volatile Organic Compounds,TON
+37153,1.3249312,Hexane,LB
+37153,0.0009984622,Anthracene,LB
+37153,1.7717362,Formaldehyde,LB
+37153,0.1013353,Nitrogen Oxides,TON
+37181,4.842522,Hexane,LB
+37181,0.10691708,Propionaldehyde,LB
+37181,0.003558664,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.002178396,Chrysene,LB
+37181,0.006582284,Acenaphthene,LB
+37181,0.013333194,Fluorene,LB
+37181,0.002242547,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.002105563,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,73023.68,Toluene,LB
+37179,18140.35,Hexane,LB
+37179,13.500358,Anthracene,LB
+37179,4.92658,Chrysene,LB
+37179,0.2380724,Mercury,LB
+37179,26.05874,Ammonia,TON
+37179,4.199045,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.3107029,Sulfate Portion of PM2.5-PRI,TON
+37179,347.5142,Volatile Organic Compounds,TON
+37197,0.130276,Styrene,LB
+37197,0.7209152,Acrolein,LB
+37197,0.4843762,Propionaldehyde,LB
+37197,0.001684501,Benzo[b]Fluoranthene,LB
+37197,0.05027826,Acenaphthylene,LB
+37197,0.005649536,Benzo[a]Pyrene,LB
+37197,0.0002304646,"Dibenzo[a,h]Anthracene",LB
+37197,3.970116,Acetaldehyde,LB
+37197,0.1060653,Phenanthrene,LB
+37197,106.8256,Carbon Dioxide,TON
+37197,3.754826,Acrolein,LB
+37197,0.01136433,Benzo[b]Fluoranthene,LB
+37197,0.001556308,"Dibenzo[a,h]Anthracene",LB
+37197,0.003546776,Arsenic,LB
+37197,0.0241955,Methane,TON
+37197,0.001321004,Nitrous Oxide,TON
+37197,0.005542802,Sulfate Portion of PM2.5-PRI,TON
+37197,0.2723138,Volatile Organic Compounds,TON
+37185,0.5100936,Hexane,LB
+37185,1.4685654,Xylenes (Mixed Isomers),LB
+37185,0.16097894,Fluoranthene,LB
+37185,0.003561724,Nickel,LB
+37185,0.0002853849,Nitrate portion of PM2.5-PRI,TON
+37185,0.9528032,Nitrogen Oxides,TON
+37189,39271.78,Toluene,LB
+37189,8819.436,Hexane,LB
+37189,260.4696,Propionaldehyde,LB
+37189,12772.75,Benzene,LB
+37189,26.26148,Fluorene,LB
+37189,2551.583,Carbon Monoxide,TON
+37189,5.614225,Nitrous Oxide,TON
+37183,102468.62,Toluene,LB
+37199,15.241676,Toluene,LB
+37199,4.338388,Hexane,LB
+37199,7.244598,Propionaldehyde,LB
+37199,0.02306462,Benzo[b]Fluoranthene,LB
+37199,0.262725,Benz[a]Anthracene,LB
+37199,14.556134,Benzene,LB
+37199,0.0777637,Manganese,LB
+37199,0.0300524,Nickel,LB
+37199,0.0228306,Arsenic,LB
+37199,17.255846,Naphthalene,LB
+37199,0.1712108,Methane,TON
+37199,4.166578,"1,3-Butadiene",LB
+37199,0.4326282,Anthracene,LB
+37199,0.005785452,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.261986,Benz[a]Anthracene,LB
+37199,0.04668736,Manganese,LB
+37199,6.04079e-05,Mercury,LB
+37199,0.4201602,Acenaphthene,LB
+37199,0.5945652,PM10-Primary from certain diesel engines,TON
+37199,0.005333158,Nitrous Oxide,TON
+37199,0.7777305,Volatile Organic Compounds,TON
+37193,0.00316466,Benzo[b]Fluoranthene,LB
+37193,0.0128917,Fluoranthene,LB
+37193,3.37598e-05,Mercury,LB
+37193,0.00867384,Acenaphthene,LB
+37193,0.01756988,Fluorene,LB
+37193,0.002501854,Sulfur Dioxide,TON
+37193,5.948208,Ethyl Benzene,LB
+37187,0.11540752,Styrene,LB
+37187,0.7952984,Xylenes (Mixed Isomers),LB
+37187,0.07528548,Phenanthrene,LB
+37187,0.0461141,Fluorene,LB
+37187,0.05006727,Volatile Organic Compounds,TON
+37183,3.20609,Chrysene,LB
+37183,115.48934,"2,2,4-Trimethylpentane",LB
+37183,317.8928,Benzene,LB
+37183,0.5882624,Nickel,LB
+37183,0.5276562,Arsenic,LB
+37183,1.647238,Sulfur Dioxide,TON
+37183,2.12028,Manganese,LB
+37183,73591.29,Carbon Dioxide,TON
+37183,24.23621,PM10 Primary (Filt + Cond),TON
+37183,112.34344,Ethyl Benzene,LB
+37183,0.1086701,Benzo[k]Fluoranthene,LB
+37183,5.029626,Chrysene,LB
+37183,3409.752,Formaldehyde,LB
+37181,0.012303278,Ethyl Benzene,LB
+37181,3.632106e-05,Pyrene,LB
+37181,9.0485e-06,Chrysene,LB
+37181,0.006737216,Formaldehyde,LB
+37181,2.135826e-06,Manganese,LB
+37181,2.083364e-05,Acenaphthene,LB
+37179,16.653,Nitrogen Oxides,TON
+37179,0.241997,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,15.477576,"1,3-Butadiene",LB
+37179,0.02811826,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.11045904,Benzo[b]Fluoranthene,LB
+37179,46.82072,Benzene,LB
+37179,1.5655194,Acenaphthene,LB
+37179,18.24502,Carbon Monoxide,TON
+37179,0.01937698,Nitrous Oxide,TON
+37177,0.07313488,Ethyl Benzene,LB
+37177,0.007477992,Anthracene,LB
+37177,0.00011336928,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,2.215752,Formaldehyde,LB
+37177,0.004962742,Benz[a]Anthracene,LB
+37177,0.9507086,Acetaldehyde,LB
+37177,0.001059674,Methane,TON
+37013,772.3066,Hexane,LB
+37013,304.8412,Formaldehyde,LB
+37013,2.01271,Fluorene,LB
+37001,0.002997785,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,22.90464,Benzene,LB
+37001,0.13723318,Phenanthrene,LB
+37001,8.836488,Carbon Monoxide,TON
+37001,0.6112186,Styrene,LB
+37073,3.351108,Toluene,LB
+37045,2.923024,Benzene,LB
+37031,0.2862374,Styrene,LB
+37031,1.0164606,Acrolein,LB
+37031,0.05325502,"Benzo[g,h,i,]Perylene",LB
+37031,0.008138766,Chrysene,LB
+37031,0.01682005,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,0.7194226,Volatile Organic Compounds,TON
+37037,0.002689826,"Benzo[g,h,i,]Perylene",LB
+37037,0.000525469,Benzo[b]Fluoranthene,LB
+37037,0.0019028472,Acenaphthylene,LB
+37037,0.0008316802,Arsenic,LB
+37037,0.000410053,Acenaphthene,LB
+37037,0.02140958,Naphthalene,LB
+37037,0.0006396088,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.01956996,Fluoranthene,LB
+37127,21.79152,Formaldehyde,LB
+37127,0.03517178,Manganese,LB
+37127,0.014387406,Nickel,LB
+37127,0.007180804,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.05860257,Sulfur Dioxide,TON
+37127,0.727347,Volatile Organic Compounds,TON
+37091,1.7807252,Ethyl Benzene,LB
+37091,1.756912e-05,Chromium (VI),LB
+37091,0.012745668,"Benzo[g,h,i,]Perylene",LB
+37091,0.00635094,Fluorene,LB
+37091,310.6671,Carbon Dioxide,TON
+37091,1.561796e-05,Nitrate portion of PM2.5-PRI,TON
+37179,0.7159671,PM10 Primary (Filt + Cond),TON
+37179,0.113941,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.01263886,Sulfate Portion of PM2.5-PRI,TON
+37179,1237.2524,Ethyl Benzene,LB
+37179,39.59174,"1,3-Butadiene",LB
+37179,0.3016466,Benzo[b]Fluoranthene,LB
+37179,0.3016466,Benzo[k]Fluoranthene,LB
+37179,4.925664,Acenaphthylene,LB
+37179,0.4041368,Benzo[a]Pyrene,LB
+37179,0.05251624,Nickel,LB
+37179,238.4216,Acetaldehyde,LB
+37197,1.6154138,Toluene,LB
+37197,1.380699,Xylenes (Mixed Isomers),LB
+37197,1.014634,Carbon Monoxide,TON
+37197,5.242679e-05,Sulfate Portion of PM2.5-PRI,TON
+37197,0.04711518,Volatile Organic Compounds,TON
+37193,13.274504,Toluene,LB
+37193,3.77573,Acrolein,LB
+37193,3.345734,Toluene,LB
+37193,48.31424,Formaldehyde,LB
+37193,0.04053436,Benzo[a]Pyrene,LB
+37193,0.0016526404,"Dibenzo[a,h]Anthracene",LB
+37193,4.507672,Benzene,LB
+37193,0.3499894,Fluorene,LB
+37193,0.0206494,Methane,TON
+37193,0.0007059875,Nitrate portion of PM2.5-PRI,TON
+37193,0.1864583,PM10 Primary (Filt + Cond),TON
+37191,187.8359,Acrolein,LB
+37191,163.00218,Propionaldehyde,LB
+37191,0.013049326,Chromium (VI),LB
+37191,12.057284,"Benzo[g,h,i,]Perylene",LB
+37191,3.040536,Benzo[b]Fluoranthene,LB
+37191,39.48738,Acenaphthylene,LB
+37191,2480.962,Formaldehyde,LB
+37191,1.631134,Nickel,LB
+37191,2.501126,Arsenic,LB
+37191,191264.6,Carbon Dioxide,TON
+37191,4.748578,Nitrous Oxide,TON
+37191,212.4756,Nitrogen Oxides,TON
+37191,6.314169,PM2.5 Primary (Filt + Cond),TON
+37191,2.208362,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.02687167,Elemental Carbon portion of PM2.5-PRI,TON
+37075,1.2292476,Toluene,LB
+37075,20.10112,Formaldehyde,LB
+37075,0.4825874,"2,2,4-Trimethylpentane",LB
+37071,9.314756,Acenaphthylene,LB
+37071,0.9295568,Benzo[a]Pyrene,LB
+37071,0.0389062,"Dibenzo[a,h]Anthracene",LB
+37071,233.5404,Benzene,LB
+37071,0.0011139964,Mercury,LB
+37071,116.98714,"2,2,4-Trimethylpentane",LB
+37069,0.011951122,"Benzo[g,h,i,]Perylene",LB
+37069,0.00802487,Benzo[k]Fluoranthene,LB
+37069,0.2887905,Methane,TON
+37069,2.074605,PM10 Primary (Filt + Cond),TON
+37069,11.245166,Ethyl Benzene,LB
+37067,41.00184,Styrene,LB
+37067,6823.724,Xylenes (Mixed Isomers),LB
+37067,0.5502708,Chrysene,LB
+37067,0.14457744,Arsenic,LB
+37067,3.782182,Fluorene,LB
+37067,12114.34,Carbon Dioxide,TON
+37067,1.526683,Ammonia,TON
+37059,1746.3464,Toluene,LB
+37059,0.3399824,Pyrene,LB
+37059,0.05938486,Chrysene,LB
+37059,389.4498,"2,2,4-Trimethylpentane",LB
+37059,0.2031922,Acenaphthene,LB
+37059,0.09278041,Methane,TON
+37053,5.4392e-06,Organic Carbon portion of PM2.5-PRI,TON
+37053,2.071745e-05,PM10 Primary (Filt + Cond),TON
+37053,2.889398e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.011971758,Ethyl Benzene,LB
+37053,6.730628e-06,Benzo[b]Fluoranthene,LB
+37053,2.973474e-05,Fluoranthene,LB
+37053,2.254812e-07,"Dibenzo[a,h]Anthracene",LB
+37053,0.02052978,Benzene,LB
+37053,0.15989696,Acrolein,LB
+37053,0.11836868,Propionaldehyde,LB
+37053,0.005922618,"Benzo[g,h,i,]Perylene",LB
+37053,1.9420086,Formaldehyde,LB
+37053,0.00241794,Manganese,LB
+37053,0.0004798033,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.0014259,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.3460623,Volatile Organic Compounds,TON
+37043,0.337291,Propionaldehyde,LB
+37043,0.004359836,Benzo[k]Fluoranthene,LB
+37043,0.07726412,Acenaphthylene,LB
+37043,0.004410806,Chrysene,LB
+37043,5.058492e-05,Mercury,LB
+37037,90.42306,Acrolein,LB
+37037,169.99216,Xylenes (Mixed Isomers),LB
+37037,1431.9846,Formaldehyde,LB
+37037,110.90848,Benzene,LB
+37037,0.3320238,Manganese,LB
+37037,3.379122,PM25-Primary from certain diesel engines,TON
+37037,0.6589957,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.3405864,Sulfate Portion of PM2.5-PRI,TON
+37037,2.132046,Styrene,LB
+37037,4.854046,"1,3-Butadiene",LB
+37037,12.163162,Acrolein,LB
+37037,0.10625986,Benzo[a]Pyrene,LB
+37037,6.427488,Nitrogen Oxides,TON
+37037,0.1494125,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.06340513,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,134341.5,Carbon Dioxide,TON
+37037,1.976384,Organic Carbon portion of PM2.5-PRI,TON
+37037,129.8915,Volatile Organic Compounds,TON
+37037,958.0482,"1,3-Butadiene",LB
+37037,26994.92,Toluene,LB
+37037,113.5498,Propionaldehyde,LB
+37033,27.78836,Hexane,LB
+37033,0.6003808,Propionaldehyde,LB
+37033,0.015599108,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.13494686,Acenaphthylene,LB
+37033,9.368858,Formaldehyde,LB
+37033,9.064102e-05,Mercury,LB
+37033,0.02435848,Methane,TON
+37033,337.3875,Carbon Dioxide,TON
+37033,0.02182928,Nitrous Oxide,TON
+37033,1.193003,Nitrogen Oxides,TON
+37033,0.0004403847,Sulfate Portion of PM2.5-PRI,TON
+37031,0.07398118,Fluorene,LB
+37031,0.1930202,Carbon Monoxide,TON
+37031,0.03711404,Anthracene,LB
+37031,0.683518,Xylenes (Mixed Isomers),LB
+37031,0.0576188,Acenaphthylene,LB
+37031,0.0003082096,"Dibenzo[a,h]Anthracene",LB
+37031,0.00238472,Manganese,LB
+37029,1.9921152,Ethyl Benzene,LB
+37029,0.4026676,"1,3-Butadiene",LB
+37029,2.750058,Hexane,LB
+37029,0.0008530222,Chrysene,LB
+37029,0.9783274,Formaldehyde,LB
+37029,3.119584e-05,Arsenic,LB
+37029,0.9722158,Acetaldehyde,LB
+37029,2.313794e-05,Sulfate Portion of PM2.5-PRI,TON
+37119,32.34346,Acrolein,LB
+37119,11.75276,Hexane,LB
+37119,46.84214,Xylenes (Mixed Isomers),LB
+37119,0.5337972,Chrysene,LB
+37119,1.1057664,Acenaphthene,LB
+37119,9.491355,Carbon Monoxide,TON
+37119,0.3203911,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.005016676,Nitrate portion of PM2.5-PRI,TON
+37109,6.636262,"1,3-Butadiene",LB
+37109,16.556602,Acrolein,LB
+37109,0.006417518,"Dibenzo[a,h]Anthracene",LB
+37109,20.70772,Hexane,LB
+37109,2.542652e-06,Chromium (VI),LB
+37109,0.003576864,Benzo[b]Fluoranthene,LB
+37109,0.003576864,Benzo[k]Fluoranthene,LB
+37109,0.06888848,Acenaphthylene,LB
+37109,16.218584,Benzene,LB
+37109,0.004904947,Nitrous Oxide,TON
+37109,0.4343638,Nitrogen Oxides,TON
+37109,0.3712247,Volatile Organic Compounds,TON
+37105,125.84726,Toluene,LB
+37105,29.92526,Hexane,LB
+37105,0.0002724328,Chromium (VI),LB
+37105,0.02200134,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.012375694,Benzo[k]Fluoranthene,LB
+37105,1.0315394,Benz[a]Anthracene,LB
+37105,8.86658,Phenanthrene,LB
+37105,0.4399312,Ammonia,TON
+37097,0.04052412,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,27.72006,Acenaphthylene,LB
+37097,0.5333778,Benzo[a]Pyrene,LB
+37097,118.77626,"2,2,4-Trimethylpentane",LB
+37097,0.2197428,Arsenic,LB
+37097,31855.18,Carbon Dioxide,TON
+37097,4.422273,PM25-Primary from certain diesel engines,TON
+37097,0.01026472,Nitrate portion of PM2.5-PRI,TON
+37097,28.70846,Volatile Organic Compounds,TON
+37091,1.1021118e-05,"Benzo[g,h,i,]Perylene",LB
+37091,0.017715834,Ethyl Benzene,LB
+37091,0.0001762066,Arsenic,LB
+37091,2.974924,Acetaldehyde,LB
+37091,0.0005499466,Phenanthrene,LB
+37091,0.2562613,Methane,TON
+37091,0.000282247,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.007381417,Nitrous Oxide,TON
+37091,0.0002526201,Sulfur Dioxide,TON
+37105,2.468552,Ethyl Benzene,LB
+37105,0.007257344,Pyrene,LB
+37105,0.002031888,Benz[a]Anthracene,LB
+37105,4.56071,Benzene,LB
+37105,0.0004535492,Nickel,LB
+37105,1.2638352,Acetaldehyde,LB
+37105,0.002630622,Methane,TON
+37105,0.0006743937,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.005701008,Ammonia,TON
+37103,0.000635768,"Benzo[g,h,i,]Perylene",LB
+37103,0.255311,Acenaphthylene,LB
+37103,0.15186002,Acenaphthene,LB
+37101,10.214834,Chrysene,LB
+37099,0.2146194,Acrolein,LB
+37099,0.0002987446,Fluoranthene,LB
+37099,9.437842e-05,Chrysene,LB
+37093,5.785376e-05,Mercury,LB
+37093,0.06308586,Ammonia,TON
+37093,0.02689832,"Benzo[g,h,i,]Perylene",LB
+37093,0.008506204,Benzo[k]Fluoranthene,LB
+37093,0.00015235828,Mercury,LB
+37093,1.8932968,Naphthalene,LB
+37093,599.6103,Carbon Dioxide,TON
+37093,0.01562253,PM2.5 Primary (Filt + Cond),TON
+37089,14.73684,Ammonia,TON
+37089,4.039135,Sulfur Dioxide,TON
+37089,13.152322,Fluoranthene,LB
+37089,40.31398,Acenaphthylene,LB
+37079,7.831276e-05,Chromium (VI),LB
+37079,2.01837,Phenanthrene,LB
+37079,0.1541731,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.04224969,Sulfate Portion of PM2.5-PRI,TON
+37083,2520.498,Hexane,LB
+37083,3333.468,"2,2,4-Trimethylpentane",LB
+37083,49.69435,Volatile Organic Compounds,TON
+37073,110.0377,"2,2,4-Trimethylpentane",LB
+37073,0.0002365208,Mercury,LB
+37073,0.00294917,Nickel,LB
+37073,0.05964264,Acenaphthene,LB
+37073,0.003437478,Elemental Carbon portion of PM2.5-PRI,TON
+37069,37.01796,Xylenes (Mixed Isomers),LB
+37069,29.50524,"2,2,4-Trimethylpentane",LB
+37067,50310.4,Carbon Dioxide,TON
+37067,3.887767,Organic Carbon portion of PM2.5-PRI,TON
+37067,18.04772,Volatile Organic Compounds,TON
+37067,166.00358,Propionaldehyde,LB
+37067,0.8145206,Benzo[b]Fluoranthene,LB
+37067,17.308464,Acenaphthylene,LB
+37067,5.1702,Chrysene,LB
+37063,40.92428,Xylenes (Mixed Isomers),LB
+37063,13.10485,Hexane,LB
+37063,0.3821043,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.151935,Ammonia,TON
+37063,574.4196,Styrene,LB
+37063,110383.96,Toluene,LB
+37063,467.8912,Propionaldehyde,LB
+37063,0.3632742,"Dibenzo[a,h]Anthracene",LB
+37063,8.226698,Arsenic,LB
+37063,7009.354,Carbon Monoxide,TON
+37061,84.78778,Toluene,LB
+37061,58.19694,"2,2,4-Trimethylpentane",LB
+37061,2.987542,Volatile Organic Compounds,TON
+37057,0.6834944,Styrene,LB
+37057,0.0004424618,Nickel,LB
+37057,0.02586289,Methane,TON
+37057,12.48903,Carbon Monoxide,TON
+37057,49.1453,Hexane,LB
+37055,0.008484978,Benzo[k]Fluoranthene,LB
+37055,8.655194,Acenaphthylene,LB
+37055,0.2125142,Nickel,LB
+37055,0.064952,Arsenic,LB
+37055,5.147774,Acenaphthene,LB
+37055,8.942464,Fluorene,LB
+37055,77.90524,Carbon Monoxide,TON
+37055,1.543145,PM10-Primary from certain diesel engines,TON
+37055,0.3070976,Ammonia,TON
+37047,0.4089374,Manganese,LB
+37047,0.15583726,Nickel,LB
+37047,0.11838356,Arsenic,LB
+37047,0.008774326,Nitrate portion of PM2.5-PRI,TON
+37047,28.38298,"1,3-Butadiene",LB
+37047,47.9913,"2,2,4-Trimethylpentane",LB
+37039,0.011883202,"Benzo[g,h,i,]Perylene",LB
+37039,1.9991592,Fluoranthene,LB
+37039,0.3754658,Chrysene,LB
+37039,0.0774254,Manganese,LB
+37039,0.01614042,Arsenic,LB
+37039,11.22995,Nitrogen Oxides,TON
+37041,11.96752,Toluene,LB
+37033,4.325076,Methane,TON
+37033,1.281423,Organic Carbon portion of PM2.5-PRI,TON
+37033,2.549675,PM2.5 Primary (Filt + Cond),TON
+37033,2.00704,Benzo[b]Fluoranthene,LB
+37033,2637.112,Formaldehyde,LB
+37033,8.381124,Acenaphthene,LB
+37029,0.8453878,Pyrene,LB
+37029,0.11198168,Chrysene,LB
+37029,3.42141,"2,2,4-Trimethylpentane",LB
+37029,14.46996,Nitrogen Oxides,TON
+37029,0.05189462,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.002255768,Acrolein,LB
+37121,0.002265922,Propionaldehyde,LB
+37121,2.451724e-08,Chromium (VI),LB
+37121,3.981754e-05,Benzo[k]Fluoranthene,LB
+37121,5.852586e-05,Benzo[a]Pyrene,LB
+37121,1.2547488e-05,Manganese,LB
+37121,0.00011673262,Acenaphthene,LB
+37121,0.0006361986,Phenanthrene,LB
+37121,9.21584e-05,Methane,TON
+37121,1.552593,Carbon Dioxide,TON
+37121,6.107135e-05,PM2.5 Primary (Filt + Cond),TON
+37113,23.45096,Hexane,LB
+37113,8.935806,Benzene,LB
+37105,128.08318,Naphthalene,LB
+37105,1.4306,PM10 Primary (Filt + Cond),TON
+37105,3.262458,Anthracene,LB
+37105,0.03682716,Benzo[b]Fluoranthene,LB
+37105,6.610176,Acenaphthylene,LB
+37105,0.005073216,"Dibenzo[a,h]Anthracene",LB
+37105,46.5911,Xylenes (Mixed Isomers),LB
+37105,1.906346,Volatile Organic Compounds,TON
+37097,7.668358,Volatile Organic Compounds,TON
+37089,281.3902,Formaldehyde,LB
+37089,0.008105738,"Dibenzo[a,h]Anthracene",LB
+37089,8.644054,"1,3-Butadiene",LB
+37089,4.595684e-05,Chromium (VI),LB
+37089,0.008112448,Benzo[k]Fluoranthene,LB
+37089,1.470704,Acenaphthylene,LB
+37085,0.000472714,Chromium (VI),LB
+37085,0.0207207,"Dibenzo[a,h]Anthracene",LB
+37085,1.7162874,Benz[a]Anthracene,LB
+37085,49342.85,Carbon Dioxide,TON
+37085,0.8612749,Organic Carbon portion of PM2.5-PRI,TON
+37085,6.978577,PM10 Primary (Filt + Cond),TON
+37083,4.096328,Ethyl Benzene,LB
+37083,0.005476358,Benzo[k]Fluoranthene,LB
+37083,0.009861616,Benzo[a]Pyrene,LB
+37083,0.0011049516,Arsenic,LB
+37083,0.003472738,Nitrous Oxide,TON
+37083,3.004463e-05,Nitrate portion of PM2.5-PRI,TON
+37079,0.0002917062,Fluoranthene,LB
+37079,0.13264198,"2,2,4-Trimethylpentane",LB
+37079,7.698686e-05,Benz[a]Anthracene,LB
+37079,1.1711362e-05,Arsenic,LB
+37079,0.05858258,Acetaldehyde,LB
+37079,9.689791e-05,Nitrous Oxide,TON
+37079,3.783078e-07,Nitrate portion of PM2.5-PRI,TON
+37079,0.0001339369,PM2.5 Primary (Filt + Cond),TON
+37079,8.215484e-05,Sulfur Dioxide,TON
+37075,7.838818,Hexane,LB
+37075,0.0008387696,"Dibenzo[a,h]Anthracene",LB
+37075,0.2629942,PM10-Primary from certain diesel engines,TON
+37075,0.04079024,Styrene,LB
+37075,10.379824,Toluene,LB
+37075,2.193302e-07,Chromium (VI),LB
+37075,0.007781756,Acenaphthylene,LB
+37075,0.5229002,Formaldehyde,LB
+37075,0.0004397414,Benz[a]Anthracene,LB
+37075,0.00016689606,Manganese,LB
+37075,2.741738e-05,Nickel,LB
+37075,4.204046e-05,Arsenic,LB
+37075,67.0487,Styrene,LB
+37075,394.5564,"1,3-Butadiene",LB
+37075,52.15832,Acrolein,LB
+37075,876.252,Formaldehyde,LB
+37075,0.019619608,"Dibenzo[a,h]Anthracene",LB
+37075,953.4282,Acetaldehyde,LB
+37075,0.002500526,Nitrate portion of PM2.5-PRI,TON
+37075,0.5144269,Sulfur Dioxide,TON
+37071,2.495176,Benz[a]Anthracene,LB
+37071,3.705006,Acenaphthene,LB
+37071,1.010098,Methane,TON
+37071,39.02157,Carbon Monoxide,TON
+37071,140.8651,Nitrogen Oxides,TON
+37071,0.6161837,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,6.98154,Volatile Organic Compounds,TON
+37069,1.8841998,Ethyl Benzene,LB
+37069,0.7563802,Styrene,LB
+37069,0.4146526,Pyrene,LB
+37069,0.02234196,Benzo[a]Pyrene,LB
+37069,0.17466002,Acenaphthene,LB
+37069,2.538016,Carbon Monoxide,TON
+37069,0.03393811,Organic Carbon portion of PM2.5-PRI,TON
+37069,5.935978,Xylenes (Mixed Isomers),LB
+37069,0.000854328,"Benzo[g,h,i,]Perylene",LB
+37069,7.350166,Benzene,LB
+37069,2.351388e-05,Mercury,LB
+37069,0.0006510741,Nitrous Oxide,TON
+37069,0.01511062,PM2.5 Primary (Filt + Cond),TON
+37069,0.4447601,Volatile Organic Compounds,TON
+37069,0.014871186,Fluoranthene,LB
+37069,1.394205,"1,3-Butadiene",LB
+37069,0.00026372,Nickel,LB
+37061,0.008588298,Chrysene,LB
+37061,6.56591,Formaldehyde,LB
+37061,21.61926,Benzene,LB
+37061,0.00579692,Nitrous Oxide,TON
+37061,0.5018683,Volatile Organic Compounds,TON
+37057,5.09151,PM10 Primary (Filt + Cond),TON
+37057,26.44036,"1,3-Butadiene",LB
+37057,2.049312,Benz[a]Anthracene,LB
+37057,0.3726456,Manganese,LB
+37057,5.885756,Fluorene,LB
+37057,2.16568,Elemental Carbon portion of PM2.5-PRI,TON
+37057,13.454204,"1,3-Butadiene",LB
+37057,80.92166,Hexane,LB
+37057,1.5356494,Propionaldehyde,LB
+37057,0.15881884,Pyrene,LB
+37057,188.79446,Xylenes (Mixed Isomers),LB
+37057,0.03219386,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.02504366,Benzo[b]Fluoranthene,LB
+37057,0.002567166,Nickel,LB
+37057,0.00393636,Arsenic,LB
+37057,34.10816,Acetaldehyde,LB
+37057,0.03027571,Ammonia,TON
+37057,2.630537,Nitrogen Oxides,TON
+37057,0.001280087,Sulfate Portion of PM2.5-PRI,TON
+37055,2.069898,Pyrene,LB
+37055,1.1582354,Acenaphthene,LB
+37055,0.008169931,Nitrous Oxide,TON
+37055,7.366585,Nitrogen Oxides,TON
+37055,0.0205715,Sulfur Dioxide,TON
+37053,2.01662e-06,Chromium (VI),LB
+37053,3.860834e-06,Nitrate portion of PM2.5-PRI,TON
+37039,0.007352306,Benzo[a]Pyrene,LB
+37039,0.06096908,Benz[a]Anthracene,LB
+37039,0.2869016,Acenaphthene,LB
+37039,0.7735678,Phenanthrene,LB
+37039,0.03834501,Methane,TON
+37039,4.744566,Carbon Monoxide,TON
+37039,0.0001566958,Nitrate portion of PM2.5-PRI,TON
+37041,0.09874334,Styrene,LB
+37041,0.005540356,Benzo[a]Pyrene,LB
+37041,0.05113758,Fluorene,LB
+37041,0.02063769,PM10-Primary from certain diesel engines,TON
+37041,0.02823322,PM10 Primary (Filt + Cond),TON
+37041,0.003489598,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.0008236141,Sulfur Dioxide,TON
+37041,0.0422895,Volatile Organic Compounds,TON
+37035,0.0003719655,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.0006815786,Anthracene,LB
+37035,1.6325e-05,"Dibenzo[a,h]Anthracene",LB
+37031,0.4893566,Toluene,LB
+37031,0.0005312966,Arsenic,LB
+37031,0.004012255,Ammonia,TON
+37025,2.576136e-05,"Dibenzo[a,h]Anthracene",LB
+37025,1.5510238e-06,Mercury,LB
+37025,2.54667e-05,Sulfate Portion of PM2.5-PRI,TON
+37025,0.07792858,Styrene,LB
+37025,0.05049294,Acrolein,LB
+37025,11.539654,Toluene,LB
+37025,0.004665314,Fluoranthene,LB
+37135,0.9507796,Methane,TON
+37135,5.101799,PM2.5 Primary (Filt + Cond),TON
+37135,0.3615632,Sulfate Portion of PM2.5-PRI,TON
+37129,2.347998,"1,3-Butadiene",LB
+37129,7.114792,Toluene,LB
+37129,0.2707448,Anthracene,LB
+37129,0.1907347,PM25-Primary from certain diesel engines,TON
+37129,0.001126716,Nitrate portion of PM2.5-PRI,TON
+37129,0.09273779,Organic Carbon portion of PM2.5-PRI,TON
+37135,51.0528,Acenaphthylene,LB
+37135,22.64268,Fluorene,LB
+37135,3342.768,Carbon Monoxide,TON
+37135,325.6004,Nitrogen Oxides,TON
+37133,0.5838626,Acenaphthylene,LB
+37133,0.03333796,Chrysene,LB
+37133,2888.73,Carbon Dioxide,TON
+37133,0.1212289,Ammonia,TON
+37133,0.06805929,PM2.5 Primary (Filt + Cond),TON
+37123,1474.3196,Toluene,LB
+37123,0.3913272,Anthracene,LB
+37123,0.9285362,Fluorene,LB
+37123,0.03844027,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.04533315,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,7939.176,Carbon Dioxide,TON
+37113,0.0677896,Sulfur Dioxide,TON
+37113,8.494318,Ethyl Benzene,LB
+37113,7.44489,"1,3-Butadiene",LB
+37113,0.006119034,Benzo[k]Fluoranthene,LB
+37113,23.31084,Benzene,LB
+37113,0.04557604,Nickel,LB
+37113,64.61026,Acrolein,LB
+37113,2.614734,Anthracene,LB
+37113,0.9706684,Benzo[k]Fluoranthene,LB
+37113,1118.5004,Acetaldehyde,LB
+37113,16.579742,Phenanthrene,LB
+37113,598.9281,Carbon Monoxide,TON
+37113,0.35712,Elemental Carbon portion of PM2.5-PRI,TON
+37111,13.18394,Styrene,LB
+37111,1740.3464,Toluene,LB
+37111,0.2229392,Benzo[a]Pyrene,LB
+37111,0.16284456,Benz[a]Anthracene,LB
+37111,0.3661768,Methane,TON
+37111,0.1249377,Organic Carbon portion of PM2.5-PRI,TON
+37111,9.081884,Volatile Organic Compounds,TON
+37103,0.16979358,Phenanthrene,LB
+37103,0.09621986,Fluorene,LB
+37103,0.03808493,PM25-Primary from certain diesel engines,TON
+37103,0.0003589531,Nitrous Oxide,TON
+37103,0.05354131,PM10 Primary (Filt + Cond),TON
+37103,1.248289,Benzene,LB
+37091,0.05241684,Hexane,LB
+37091,0.10906058,Propionaldehyde,LB
+37091,0.1446046,Xylenes (Mixed Isomers),LB
+37091,0.002844398,Chrysene,LB
+37091,0.05262748,"2,2,4-Trimethylpentane",LB
+37091,4.66373e-05,Nitrous Oxide,TON
+37091,2.574741e-05,Nitrate portion of PM2.5-PRI,TON
+37091,0.004967794,PM2.5 Primary (Filt + Cond),TON
+37091,0.01192021,Volatile Organic Compounds,TON
+37105,0.213144,Anthracene,LB
+37105,0.3648156,Fluoranthene,LB
+37105,0.07559602,Benzo[k]Fluoranthene,LB
+37105,0.07273694,Chrysene,LB
+37105,340.29,Benzene,LB
+37105,12.91345,Naphthalene,LB
+37105,3.026409,Nitrogen Oxides,TON
+37099,0.7898456,Ammonia,TON
+37099,1.019607,PM10 Primary (Filt + Cond),TON
+37099,0.2485073,Sulfur Dioxide,TON
+37099,0.6405644,Anthracene,LB
+37099,230.3786,Formaldehyde,LB
+37099,255.436,Acetaldehyde,LB
+37099,1.5162098,Fluorene,LB
+37095,1355.0092,Toluene,LB
+37093,5.479954e-05,Benzo[b]Fluoranthene,LB
+37093,0.1216388,Benzene,LB
+37093,2.47102e-07,Nitrate portion of PM2.5-PRI,TON
+37093,4.583516e-05,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.0001290436,PM10 Primary (Filt + Cond),TON
+37093,2.105928e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,2.352202e-06,Sulfate Portion of PM2.5-PRI,TON
+37091,0.00427601,Benzo[k]Fluoranthene,LB
+37091,0.7620068,Acenaphthylene,LB
+37091,3.16635,"2,2,4-Trimethylpentane",LB
+37091,0.0215698,Nickel,LB
+37091,0.0319411,Methane,TON
+37091,3.940533,Carbon Monoxide,TON
+37091,13.95776,Nitrogen Oxides,TON
+37091,0.06437993,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.01766343,Sulfur Dioxide,TON
+37085,4.259893,PM10 Primary (Filt + Cond),TON
+37085,0.2366417,Sulfur Dioxide,TON
+37085,22.72848,Ethyl Benzene,LB
+37085,1.9559502,Anthracene,LB
+37085,19.189944,"2,2,4-Trimethylpentane",LB
+37083,0.015331924,Anthracene,LB
+37083,0.3539544,Propionaldehyde,LB
+37083,0.009973356,Chrysene,LB
+37083,0.01159222,Methane,TON
+37083,6.387189e-05,Nitrate portion of PM2.5-PRI,TON
+37083,0.00571009,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.0006826875,Sulfate Portion of PM2.5-PRI,TON
+37083,0.3512403,Volatile Organic Compounds,TON
+37077,0.0008679092,"Benzo[g,h,i,]Perylene",LB
+37077,0.1026256,PM25-Primary from certain diesel engines,TON
+37077,0.07043099,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.01068301,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.1188323,Volatile Organic Compounds,TON
+37065,0.3182881,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.1702041,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,26.68336,Acrolein,LB
+37065,1.1487716,Anthracene,LB
+37065,9.605474e-05,Chromium (VI),LB
+37065,0.010201164,Benzo[k]Fluoranthene,LB
+37065,0.4764068,Chrysene,LB
+37065,1.0373202,Acenaphthene,LB
+37049,2.487348,Benzo[b]Fluoranthene,LB
+37049,7152.086,"2,2,4-Trimethylpentane",LB
+37049,3.184518,Manganese,LB
+37049,14.308578,Fluorene,LB
+37049,0.9260708,Elemental Carbon portion of PM2.5-PRI,TON
+37049,3.889152,Nitrous Oxide,TON
+37049,1.580218,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,7.48837,"1,3-Butadiene",LB
+37047,0.09031364,Fluoranthene,LB
+37047,0.0235189,Benzo[k]Fluoranthene,LB
+37047,0.0362582,Benzo[a]Pyrene,LB
+37047,0.0008356634,"Dibenzo[a,h]Anthracene",LB
+37047,0.007347398,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.04206068,PM2.5 Primary (Filt + Cond),TON
+37041,8.033174e-06,Chromium (VI),LB
+37041,0.003726916,Chrysene,LB
+37041,21.29466,Formaldehyde,LB
+37041,2.44536e-05,"Dibenzo[a,h]Anthracene",LB
+37031,0.3736856,Hexane,LB
+37031,0.04913922,Anthracene,LB
+37031,0.14781658,Pyrene,LB
+37031,4.210768e-06,Chromium (VI),LB
+37031,0.0004851568,"Dibenzo[a,h]Anthracene",LB
+37031,0.3956382,"2,2,4-Trimethylpentane",LB
+37031,0.03738306,Benz[a]Anthracene,LB
+37031,1.3272722,Benzene,LB
+37031,0.012114814,Manganese,LB
+37031,0.0019682416,Nickel,LB
+37031,0.4726436,Carbon Monoxide,TON
+37031,0.000210645,Nitrate portion of PM2.5-PRI,TON
+37031,0.1156644,PM10 Primary (Filt + Cond),TON
+37109,0.006898854,"Benzo[g,h,i,]Perylene",LB
+37109,0.00259201,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,3.214232,Toluene,LB
+37109,1.508303,"2,2,4-Trimethylpentane",LB
+37109,0.06089528,Naphthalene,LB
+37109,9.946502e-06,Nitrate portion of PM2.5-PRI,TON
+37109,0.001783984,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.004260503,PM2.5 Primary (Filt + Cond),TON
+37175,14.529202,"2,2,4-Trimethylpentane",LB
+37169,8.277396,Benzene,LB
+37169,38.51688,Acetaldehyde,LB
+37169,0.01032348,Ammonia,TON
+37169,0.0325799,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.4996148,Volatile Organic Compounds,TON
+37169,0.8022892,Pyrene,LB
+37167,0.0318064,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,98.68312,"2,2,4-Trimethylpentane",LB
+37167,0.0001033033,Nitrate portion of PM2.5-PRI,TON
+37159,63.05232,Acrolein,LB
+37159,20.13982,Hexane,LB
+37159,0.03876694,"Benzo[g,h,i,]Perylene",LB
+37159,6.423594,Fluoranthene,LB
+37159,2.090758,Benz[a]Anthracene,LB
+37159,0.00019571876,Mercury,LB
+37159,0.04092326,Arsenic,LB
+37159,23.81986,Carbon Monoxide,TON
+37159,5.400941,PM10 Primary (Filt + Cond),TON
+37159,3.872012,PM2.5 Primary (Filt + Cond),TON
+37155,2.19211,Ethyl Benzene,LB
+37155,1.9924574,"1,3-Butadiene",LB
+37155,0.000378142,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.0002073172,Benzo[k]Fluoranthene,LB
+37155,6.082116,Benzene,LB
+37155,0.007469318,Arsenic,LB
+37155,28.33348,Acetaldehyde,LB
+37155,0.005021104,Sulfur Dioxide,TON
+37133,0.7546474,"1,3-Butadiene",LB
+37133,0.01833347,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.001882875,Sulfur Dioxide,TON
+37133,0.8048592,Naphthalene,LB
+37133,0.005469124,Nitrous Oxide,TON
+37133,0.002816293,Organic Carbon portion of PM2.5-PRI,TON
+37133,21.87986,Hexane,LB
+37133,0.013209862,Anthracene,LB
+37125,0.0003653496,Benzo[k]Fluoranthene,LB
+37125,1.1275332,Acenaphthylene,LB
+37125,0.0003607122,"Dibenzo[a,h]Anthracene",LB
+37125,6.322792,Hexane,LB
+37125,8.469566e-05,Chromium (VI),LB
+37125,0.0006557918,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.002573158,Benzo[b]Fluoranthene,LB
+37125,1.154356,Fluorene,LB
+37125,1506.327,Carbon Dioxide,TON
+37125,0.01409574,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,3.809734,Toluene,LB
+37121,1.184016e-05,Chromium (VI),LB
+37121,0.0162827,Chrysene,LB
+37121,54.00372,Formaldehyde,LB
+37121,0.0009427265,Nitrous Oxide,TON
+37121,8.820804e-05,Nitrate portion of PM2.5-PRI,TON
+37121,0.002542825,Sulfur Dioxide,TON
+37021,0.06727117,Organic Carbon portion of PM2.5-PRI,TON
+37021,5.190618,Toluene,LB
+37021,27.43062,Acetaldehyde,LB
+37019,11.128556,Phenanthrene,LB
+37019,2.306094,Elemental Carbon portion of PM2.5-PRI,TON
+37019,5.62359,PM10 Primary (Filt + Cond),TON
+37019,3.240402,Anthracene,LB
+37019,0.04400138,"Benzo[g,h,i,]Perylene",LB
+37019,2.376194,Benz[a]Anthracene,LB
+37015,0.0001356198,Chromium (VI),LB
+37015,0.009652284,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,23.02764,Benzene,LB
+37015,2.683764,Phenanthrene,LB
+37015,27.26858,Naphthalene,LB
+37015,0.2596324,Methane,TON
+37015,0.13856232,Ethyl Benzene,LB
+37015,0.000232916,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.00306833,Benzo[a]Pyrene,LB
+37015,0.010138444,Benz[a]Anthracene,LB
+37015,0.3929656,Benzene,LB
+37015,8.60147e-05,Nitrous Oxide,TON
+37015,0.0003155097,Sulfur Dioxide,TON
+37011,0.016643722,Ethyl Benzene,LB
+37011,1.0309194e-05,"Benzo[g,h,i,]Perylene",LB
+37011,0.0002408006,Acenaphthylene,LB
+37001,90.09096,Formaldehyde,LB
+37001,0.3828563,PM10 Primary (Filt + Cond),TON
+37075,0.2727776,Xylenes (Mixed Isomers),LB
+37075,0.0002532664,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.0001348465,Benzo[k]Fluoranthene,LB
+37075,0.0006194626,Acenaphthylene,LB
+37075,1.0070758e-05,Mercury,LB
+37075,0.000192537,Arsenic,LB
+37075,0.00013418406,Acenaphthene,LB
+37075,0.1471977,Carbon Monoxide,TON
+37157,0.17130474,Acrolein,LB
+37157,7.587514e-05,"Dibenzo[a,h]Anthracene",LB
+37157,0.003126308,Fluorene,LB
+37157,0.0009051816,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.01496274,Ammonia,TON
+37125,4.02647e-06,Chromium (VI),LB
+37125,0.002112494,Acenaphthylene,LB
+37125,0.003988946,Methane,TON
+37125,0.0002654749,Elemental Carbon portion of PM2.5-PRI,TON
+37119,16.499962,Xylenes (Mixed Isomers),LB
+37119,0.08904952,Methane,TON
+37119,13.59346,Carbon Monoxide,TON
+37119,0.006877246,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.09542314,Anthracene,LB
+37013,0.282371,Pyrene,LB
+37013,11.682964,Acetaldehyde,LB
+37013,0.0008725463,Nitrous Oxide,TON
+37013,0.008267191,Ammonia,TON
+37007,6.35511,Ethyl Benzene,LB
+37019,2.294206,Acrolein,LB
+37019,2.3589,Toluene,LB
+37019,1.0286942e-05,Chromium (VI),LB
+37019,0.0009364066,"Dibenzo[a,h]Anthracene",LB
+37019,12.89186,Acetaldehyde,LB
+37019,0.007843828,Sulfate Portion of PM2.5-PRI,TON
+37015,5.66567e-05,Chrysene,LB
+37015,0.0002999356,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.2318779,Nitrogen Oxides,TON
+37015,3.456537e-05,Sulfate Portion of PM2.5-PRI,TON
+37013,0.0001720366,Pyrene,LB
+37013,3.631726e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,2.780502e-05,Benzo[k]Fluoranthene,LB
+37013,0.03431778,Acetaldehyde,LB
+37013,8.831225e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37009,1.3868588,Xylenes (Mixed Isomers),LB
+37009,0.004426952,Manganese,LB
+37009,52.80064,Acrolein,LB
+37009,0.02520404,"Dibenzo[a,h]Anthracene",LB
+37009,0.7620454,Benz[a]Anthracene,LB
+37009,0.4406948,Manganese,LB
+37009,0.3943846,Arsenic,LB
+37009,13.305406,Phenanthrene,LB
+37009,51.5112,Nitrogen Oxides,TON
+37005,1029.0188,Hexane,LB
+37005,1.1639384,"Benzo[g,h,i,]Perylene",LB
+37005,0.233553,Organic Carbon portion of PM2.5-PRI,TON
+37003,7.248824,Pyrene,LB
+37003,4.349792,Acenaphthene,LB
+37003,740.0287,Carbon Monoxide,TON
+37003,1.932104,Nitrous Oxide,TON
+37199,8.833328e-06,Mercury,LB
+37199,0.379547,Carbon Monoxide,TON
+37199,6.612082e-07,Nitrate portion of PM2.5-PRI,TON
+37199,3.122558e-05,Sulfate Portion of PM2.5-PRI,TON
+37187,2.01437,"1,3-Butadiene",LB
+37187,0.9134948,Propionaldehyde,LB
+37187,20.90512,Formaldehyde,LB
+37187,0.000560234,"Dibenzo[a,h]Anthracene",LB
+37187,2.857496,Naphthalene,LB
+37187,6.968133e-05,Nitrate portion of PM2.5-PRI,TON
+37183,0.0010371776,Ethyl Benzene,LB
+37183,7.304918e-10,Chromium (VI),LB
+37183,1.2195584e-06,Chrysene,LB
+37183,0.13586722,Acetaldehyde,LB
+37183,3.138966e-06,Acenaphthene,LB
+37183,1.515652e-06,Sulfate Portion of PM2.5-PRI,TON
+37177,0.6711294,Hexane,LB
+37177,0.009488274,Chrysene,LB
+37177,2.521082,Benzene,LB
+37177,0.009660918,Methane,TON
+37041,0.01410417,PM25-Primary from certain diesel engines,TON
+37041,0.04292778,Styrene,LB
+37041,0.09850066,"1,3-Butadiene",LB
+37041,0.0006056242,Benzo[b]Fluoranthene,LB
+37037,0.3786118,Toluene,LB
+37037,0.00013281,"Benzo[g,h,i,]Perylene",LB
+37037,0.03387997,PM2.5 Primary (Filt + Cond),TON
+37033,2.013114,Xylenes (Mixed Isomers),LB
+37033,0.010234112,Benz[a]Anthracene,LB
+37033,0.04926,Anthracene,LB
+37033,0.06195008,Acenaphthene,LB
+37033,0.10578286,Fluorene,LB
+37033,1.740799,Carbon Monoxide,TON
+37027,3.105154e-05,Mercury,LB
+37027,0.0003533346,Acenaphthene,LB
+37027,0.9938726,Methane,TON
+37027,0.02837774,PM10 Primary (Filt + Cond),TON
+37027,0.03747044,"1,3-Butadiene",LB
+37027,0.0010496472,Pyrene,LB
+37155,1.3377018,Ethyl Benzene,LB
+37155,0.003514688,PM2.5 Primary (Filt + Cond),TON
+37155,0.03664978,Volatile Organic Compounds,TON
+37151,2.743702,PM2.5 Primary (Filt + Cond),TON
+37151,0.319075,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.00016581128,Chromium (VI),LB
+37151,0.09120004,Nickel,LB
+37151,66.9732,Naphthalene,LB
+37143,0.0008566146,Benzo[k]Fluoranthene,LB
+37143,0.0002468895,Elemental Carbon portion of PM2.5-PRI,TON
+37143,19.846986,Toluene,LB
+37143,0.0668862,Propionaldehyde,LB
+37139,5.519622,Pyrene,LB
+37139,942.5666,Formaldehyde,LB
+37139,1.3932034,Benzo[a]Pyrene,LB
+37139,737.3888,Carbon Monoxide,TON
+37139,1.152017,Sulfur Dioxide,TON
+37123,10.095778,Xylenes (Mixed Isomers),LB
+37123,19.049956,Naphthalene,LB
+37123,0.003273669,Nitrous Oxide,TON
+37123,1.025538,Volatile Organic Compounds,TON
+37119,70.9247,Propionaldehyde,LB
+37119,0.01994922,Benzo[k]Fluoranthene,LB
+37119,7.17849,Acenaphthylene,LB
+37119,0.478613,Benzo[a]Pyrene,LB
+37119,14.069718,Phenanthrene,LB
+37115,0.005694972,Anthracene,LB
+37115,0.02983388,Acenaphthylene,LB
+37115,0.002691322,Chrysene,LB
+37115,2.056528,Formaldehyde,LB
+37115,0.005094122,Benzo[a]Pyrene,LB
+37115,6.844802,Benzene,LB
+37115,0.01322034,Fluorene,LB
+37115,0.008518082,PM10 Primary (Filt + Cond),TON
+37115,0.1557804,Volatile Organic Compounds,TON
+37101,62.96196,Formaldehyde,LB
+37101,0.001639341,"Dibenzo[a,h]Anthracene",LB
+37101,0.1818913,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.0006986675,Nitrate portion of PM2.5-PRI,TON
+37101,0.01725411,Sulfur Dioxide,TON
+37101,0.3333366,Volatile Organic Compounds,TON
+37101,5.180874,Xylenes (Mixed Isomers),LB
+37101,0.0016515566,Benzo[k]Fluoranthene,LB
+37101,0.3016254,Acenaphthylene,LB
+37073,0.06760448,Acrolein,LB
+37073,0.001445258,Benzo[a]Pyrene,LB
+37073,7.771587,Carbon Dioxide,TON
+37073,2.932625e-05,Sulfate Portion of PM2.5-PRI,TON
+37081,6.88369,"1,3-Butadiene",LB
+37081,0.003091024,Arsenic,LB
+37081,3.016516,Naphthalene,LB
+37081,0.03992908,Methane,TON
+37081,26.962,Carbon Monoxide,TON
+37081,0.001350491,Sulfate Portion of PM2.5-PRI,TON
+37081,155.02552,Xylenes (Mixed Isomers),LB
+37081,0.02482486,Benzo[k]Fluoranthene,LB
+37081,9.583982,"1,3-Butadiene",LB
+37081,2.922762,Acrolein,LB
+37081,2.066474,Propionaldehyde,LB
+37081,0.217479,Pyrene,LB
+37081,0.15257414,"Benzo[g,h,i,]Perylene",LB
+37081,0.005645848,Nickel,LB
+37081,57.01852,Carbon Monoxide,TON
+37081,0.01142863,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.05344283,Sulfur Dioxide,TON
+37081,1470.0528,Acrolein,LB
+37081,66.60268,Anthracene,LB
+37081,24.15654,Benzo[b]Fluoranthene,LB
+37081,34.14754,Benzo[a]Pyrene,LB
+37081,4032.34,Naphthalene,LB
+37067,0.1646342,Anthracene,LB
+37067,332.2566,Xylenes (Mixed Isomers),LB
+37067,0.06049236,Methane,TON
+37067,0.0003388007,Nitrate portion of PM2.5-PRI,TON
+37067,0.6360008,PM10 Primary (Filt + Cond),TON
+37067,0.004632395,Sulfate Portion of PM2.5-PRI,TON
+37067,2.649408,Volatile Organic Compounds,TON
+37067,132001.18,Xylenes (Mixed Isomers),LB
+37067,18.647338,Benzo[k]Fluoranthene,LB
+37067,18.491916,Benz[a]Anthracene,LB
+37067,10.211978,Arsenic,LB
+37067,6.030662,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.08413118,Nitrate portion of PM2.5-PRI,TON
+37065,0.0003574418,Benzo[k]Fluoranthene,LB
+37065,0.016509986,Chrysene,LB
+37065,0.3138306,"2,2,4-Trimethylpentane",LB
+37065,1.091729,Benzene,LB
+37065,0.0009325866,Arsenic,LB
+37065,0.01301035,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.2157342,"1,3-Butadiene",LB
+37043,0.0003341552,"Benzo[g,h,i,]Perylene",LB
+37043,3.037882,Acetaldehyde,LB
+37043,9.748433e-05,Nitrate portion of PM2.5-PRI,TON
+37043,0.00339735,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,1.5515214,Styrene,LB
+37037,0.10750304,"Benzo[g,h,i,]Perylene",LB
+37037,0.3053692,Acenaphthylene,LB
+37037,0.1299294,PM10 Primary (Filt + Cond),TON
+37035,257.296,Toluene,LB
+37035,104.2204,Hexane,LB
+37035,12.065848,Anthracene,LB
+37035,0.0009543268,Chromium (VI),LB
+37035,0.4372634,Benzo[a]Pyrene,LB
+37035,14.566262,Acenaphthene,LB
+37035,24.90358,Fluorene,LB
+37035,3.819261,PM10-Primary from certain diesel engines,TON
+37035,0.0004587848,Acrolein,LB
+37035,2.619464e-08,Mercury,LB
+37035,2.824608e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37035,3.73885e-06,Sulfur Dioxide,TON
+37031,5761.513,Carbon Dioxide,TON
+37031,0.9894976,PM25-Primary from certain diesel engines,TON
+37031,0.2038084,Manganese,LB
+37031,12.76472,"1,3-Butadiene",LB
+37031,0.000104407,Chromium (VI),LB
+37031,0.09477338,Benzo[b]Fluoranthene,LB
+37031,2.160212,Acenaphthylene,LB
+37025,78.75132,Carbon Monoxide,TON
+37025,0.04624727,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.07173062,Sulfur Dioxide,TON
+37025,3.056611,Volatile Organic Compounds,TON
+37027,0.6103832,Acrolein,LB
+37027,0.4431952,Propionaldehyde,LB
+37027,0.018591354,"Benzo[g,h,i,]Perylene",LB
+37027,0.0070605,Benzo[a]Pyrene,LB
+37027,0.012306234,Manganese,LB
+37173,2019.908,Xylenes (Mixed Isomers),LB
+37159,2.49874,Hexane,LB
+37159,0.005683772,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.1416301,Chrysene,LB
+37159,3.175882e-05,Mercury,LB
+37159,0.01265703,Nickel,LB
+37159,41.67218,Acetaldehyde,LB
+37151,947.1466,Ethyl Benzene,LB
+37151,32.15238,Propionaldehyde,LB
+37151,2.669164,Pyrene,LB
+37151,0.0010389724,Chromium (VI),LB
+37151,0.326252,Manganese,LB
+37151,0.12987054,Nickel,LB
+37151,0.6828534,PM2.5 Primary (Filt + Cond),TON
+37141,0.0195181,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,1.3311518,Acrolein,LB
+37141,0.0482662,Benzo[a]Pyrene,LB
+37141,0.02760098,Manganese,LB
+37141,0.05066523,Nitrous Oxide,TON
+37141,0.07216698,Ammonia,TON
+37137,0.6382584,Ethyl Benzene,LB
+37137,0.002092644,Benzo[b]Fluoranthene,LB
+37137,0.0002877412,Benzo[k]Fluoranthene,LB
+37137,0.00275929,Nickel,LB
+37137,0.200174,Phenanthrene,LB
+37137,0.12348084,Fluorene,LB
+37137,1.468143,Nitrogen Oxides,TON
+37137,0.01027858,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.04243229,PM2.5 Primary (Filt + Cond),TON
+37117,7.909158,Benzene,LB
+37117,0.9645289,Volatile Organic Compounds,TON
+37123,0.0002095122,Styrene,LB
+37123,0.00107173,"1,3-Butadiene",LB
+37123,4.020818e-05,Acenaphthylene,LB
+37123,0.1036118,Carbon Dioxide,TON
+37123,3.635213e-06,Nitrous Oxide,TON
+37109,0.06872484,Acrolein,LB
+37109,10.122548,Xylenes (Mixed Isomers),LB
+37109,3.383732e-05,"Dibenzo[a,h]Anthracene",LB
+37109,0.07991238,Volatile Organic Compounds,TON
+37105,34.93882,Benzene,LB
+37105,6205,Carbon Dioxide,TON
+37105,17.33528,Nitrogen Oxides,TON
+37105,1.476178,PM10 Primary (Filt + Cond),TON
+37105,18.29536,Propionaldehyde,LB
+37105,0.009984068,"Dibenzo[a,h]Anthracene",LB
+37103,2.435928,Styrene,LB
+37103,0.5797118,Anthracene,LB
+37103,0.003695374,"Dibenzo[a,h]Anthracene",LB
+37103,0.5916726,Acenaphthene,LB
+37103,0.8704269,PM10-Primary from certain diesel engines,TON
+37103,0.1545713,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.8464855,PM2.5 Primary (Filt + Cond),TON
+37103,0.08052915,Sulfate Portion of PM2.5-PRI,TON
+37103,3.98321,Hexane,LB
+37103,0.7865956,Acenaphthylene,LB
+37103,0.16898088,Chrysene,LB
+37103,0.015987804,Arsenic,LB
+37103,0.4602205,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.6852537,PM2.5 Primary (Filt + Cond),TON
+37103,0.05781672,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.8580984,Volatile Organic Compounds,TON
+37103,1.700449,Pyrene,LB
+37103,0.005209232,"Dibenzo[a,h]Anthracene",LB
+37103,5.42921e-05,Mercury,LB
+37103,0.182918,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.00509155,Nitrous Oxide,TON
+37101,13.63659,Carbon Monoxide,TON
+37101,2742.423,Carbon Dioxide,TON
+37101,0.8957354,PM10-Primary from certain diesel engines,TON
+37101,0.3304088,Elemental Carbon portion of PM2.5-PRI,TON
+37101,1.5901748,Fluorene,LB
+37101,0.0520756,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.08960369,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.16081774,"1,3-Butadiene",LB
+37097,7.103112,Toluene,LB
+37097,0.013516882,Acenaphthylene,LB
+37097,0.002175328,Benz[a]Anthracene,LB
+37097,0.002936938,Acenaphthene,LB
+37093,2.340888,"1,3-Butadiene",LB
+37093,5.126518,Toluene,LB
+37093,0.003287902,"Benzo[g,h,i,]Perylene",LB
+37093,73.99804,Formaldehyde,LB
+37093,0.05379056,Benzo[a]Pyrene,LB
+37089,0.00549498,Benzene,LB
+37089,0.000277354,Naphthalene,LB
+37087,9.816178e-05,Styrene,LB
+37087,2.744038e-06,Benz[a]Anthracene,LB
+37087,2.305798e-05,Phenanthrene,LB
+37087,8.376094e-06,Fluorene,LB
+37087,1.565052e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,4.542242e-05,Arsenic,LB
+37059,1.3344922,Acrolein,LB
+37059,272.2426,Toluene,LB
+37059,167.51892,Xylenes (Mixed Isomers),LB
+37059,0.03050888,Benzo[b]Fluoranthene,LB
+37059,0.02677048,Chrysene,LB
+37059,0.0002682926,Mercury,LB
+37059,0.3773366,Phenanthrene,LB
+37059,0.05770194,Methane,TON
+37059,0.009896686,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.05147829,Nitrous Oxide,TON
+37059,0.0001473133,Nitrate portion of PM2.5-PRI,TON
+37059,0.02236747,Sulfur Dioxide,TON
+37061,0.01928984,"1,3-Butadiene",LB
+37061,0.002303256,Acrolein,LB
+37061,0.003055018,Propionaldehyde,LB
+37061,4.067556e-05,Chrysene,LB
+37061,1.3287328e-06,"Dibenzo[a,h]Anthracene",LB
+37061,1.4644842e-06,Arsenic,LB
+37061,0.0007702822,Phenanthrene,LB
+37061,0.003107446,Nitrogen Oxides,TON
+37061,6.684655e-06,Sulfur Dioxide,TON
+37061,1.342652e-06,Sulfate Portion of PM2.5-PRI,TON
+37055,0.000602877,Manganese,LB
+37055,0.2753616,Acetaldehyde,LB
+37055,0.401506,Carbon Monoxide,TON
+37055,0.0003688179,Nitrous Oxide,TON
+37055,0.0002200655,Organic Carbon portion of PM2.5-PRI,TON
+37055,2.45851,Toluene,LB
+37055,0.6359526,Hexane,LB
+37055,0.0014102168,Fluoranthene,LB
+37055,0.004422662,Acenaphthylene,LB
+37051,5925.724,Ethyl Benzene,LB
+37051,22115.56,Xylenes (Mixed Isomers),LB
+37047,51.4394,Toluene,LB
+37047,17.879086,"2,2,4-Trimethylpentane",LB
+37047,0.2474366,Manganese,LB
+37047,0.0663183,Arsenic,LB
+37047,287.5486,Acetaldehyde,LB
+37047,24277.71,Carbon Dioxide,TON
+37047,0.353049,Ammonia,TON
+37047,3.681723,Volatile Organic Compounds,TON
+37047,17.02343,Styrene,LB
+37047,28.16744,Hexane,LB
+37047,3.196724,Anthracene,LB
+37047,67.43334,Xylenes (Mixed Isomers),LB
+37047,0.015644152,"Benzo[g,h,i,]Perylene",LB
+37047,5.139474,Fluoranthene,LB
+37177,0.6306878,Pyrene,LB
+37177,0.0006101612,Chromium (VI),LB
+37177,0.2237296,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,111.73262,Formaldehyde,LB
+37177,0.07262712,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,1.1104446e-05,Chromium (VI),LB
+37175,0.1026245,Chrysene,LB
+37175,8.136218,Naphthalene,LB
+37175,0.1815043,PM10-Primary from certain diesel engines,TON
+37175,0.0009549833,Nitrate portion of PM2.5-PRI,TON
+37161,2.362952,Acenaphthylene,LB
+37161,0.012963074,"Dibenzo[a,h]Anthracene",LB
+37155,34.38828,Hexane,LB
+37155,64.30288,Propionaldehyde,LB
+37155,1370.789,Formaldehyde,LB
+37155,0.02905158,"Dibenzo[a,h]Anthracene",LB
+37155,0.0007444738,Mercury,LB
+37155,570.3534,Acetaldehyde,LB
+37155,6.068135,PM2.5 Primary (Filt + Cond),TON
+37155,0.5425938,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.4850321,Sulfur Dioxide,TON
+37155,12.264182,Pyrene,LB
+37155,0.0602346,Benzo[b]Fluoranthene,LB
+37155,10.002618,Fluoranthene,LB
+37155,1.6307732,Benz[a]Anthracene,LB
+37155,206.6876,Benzene,LB
+37155,0.0984445,Arsenic,LB
+37155,239.717,Naphthalene,LB
+37155,0.4412861,Methane,TON
+37155,0.03201168,Nitrous Oxide,TON
+37155,0.05754842,Sulfate Portion of PM2.5-PRI,TON
+37161,25.42718,Toluene,LB
+37161,9.829394,Hexane,LB
+37161,9.91204e-05,Chromium (VI),LB
+37161,5.05992,Phenanthrene,LB
+37161,6468.196,Carbon Dioxide,TON
+37161,0.217828,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.05613797,Sulfur Dioxide,TON
+37143,6.582338,Acrolein,LB
+37143,0.665087,Fluoranthene,LB
+37143,0.01376244,Nickel,LB
+37143,0.4929355,PM10 Primary (Filt + Cond),TON
+37143,287.9878,Xylenes (Mixed Isomers),LB
+37143,0.034253,Benzo[b]Fluoranthene,LB
+37143,0.02374144,Manganese,LB
+37143,46.81344,Acetaldehyde,LB
+37143,0.134873,Acenaphthene,LB
+37143,0.001256767,Sulfate Portion of PM2.5-PRI,TON
+37131,5.540388,"1,3-Butadiene",LB
+37131,0.12663902,Benzo[a]Pyrene,LB
+37131,0.4185008,Benz[a]Anthracene,LB
+37131,0.0512239,Manganese,LB
+37131,1.217105,Fluorene,LB
+37131,2645.109,Carbon Dioxide,TON
+37131,0.0372713,Ammonia,TON
+37131,0.9729802,Volatile Organic Compounds,TON
+37129,2.441618,Pyrene,LB
+37129,0.00305481,"Dibenzo[a,h]Anthracene",LB
+37129,0.0190601,Nitrous Oxide,TON
+37129,0.00142587,Nitrate portion of PM2.5-PRI,TON
+37129,0.1179957,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.7122808,"1,3-Butadiene",LB
+37129,0.0009347858,Benz[a]Anthracene,LB
+37129,0.0005488082,Manganese,LB
+37129,1.7084514,Acetaldehyde,LB
+37129,0.08165862,Nitrogen Oxides,TON
+37129,0.0004079531,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.07697358,Volatile Organic Compounds,TON
+37121,8.386514,Xylenes (Mixed Isomers),LB
+37121,0.6260958,Fluoranthene,LB
+37121,0.496845,Acenaphthylene,LB
+37121,4.237498e-05,Mercury,LB
+37121,0.06794198,Methane,TON
+37121,0.4171235,PM10-Primary from certain diesel engines,TON
+37121,0.3837549,PM25-Primary from certain diesel engines,TON
+37121,0.0478077,Ammonia,TON
+37121,10.89522,Nitrogen Oxides,TON
+37121,0.4001189,PM2.5 Primary (Filt + Cond),TON
+37111,0.0004100866,"Benzo[g,h,i,]Perylene",LB
+37111,0.05400748,Acenaphthylene,LB
+37111,0.02210288,Benz[a]Anthracene,LB
+37111,2.209128e-06,Mercury,LB
+37111,0.00340435,Methane,TON
+37111,0.1900132,Carbon Monoxide,TON
+37111,0.02504306,PM25-Primary from certain diesel engines,TON
+37111,305.294,Acrolein,LB
+37111,4.680646,Benzo[b]Fluoranthene,LB
+37111,4.680646,Benzo[k]Fluoranthene,LB
+37111,11304.146,"2,2,4-Trimethylpentane",LB
+37111,9.294766,Methane,TON
+37111,3.85579,Sulfur Dioxide,TON
+37111,271.4879,Volatile Organic Compounds,TON
+37111,0.07609932,Benz[a]Anthracene,LB
+37111,0.2479986,Acenaphthene,LB
+37111,0.0003105788,Nitrate portion of PM2.5-PRI,TON
+37111,2011.242,Toluene,LB
+37111,0.212697,Anthracene,LB
+37111,1036.5168,Xylenes (Mixed Isomers),LB
+37111,0.10827338,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.07679452,Benzo[b]Fluoranthene,LB
+37109,12.3296,Pyrene,LB
+37109,3.81329,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,2.56038,Benzo[b]Fluoranthene,LB
+37109,10.814044,Fluoranthene,LB
+37109,3.80464,Benzo[a]Pyrene,LB
+37109,2.656656,Manganese,LB
+37109,14.782958,Fluorene,LB
+37109,3.516197,Methane,TON
+37109,1585.444,Carbon Monoxide,TON
+37109,11.56036,Ammonia,TON
+37109,0.1250914,Sulfate Portion of PM2.5-PRI,TON
+37103,3.993864e-06,Benz[a]Anthracene,LB
+37103,0.002863612,Acetaldehyde,LB
+37103,8.981252e-06,Acenaphthene,LB
+37103,0.1077677,Carbon Dioxide,TON
+37101,42636.7,Carbon Dioxide,TON
+37101,1.332444,Nitrous Oxide,TON
+37101,1.16854,PM2.5 Primary (Filt + Cond),TON
+37101,42.4243,Propionaldehyde,LB
+37101,0.9407242,Benzo[a]Pyrene,LB
+37101,0.02432092,Mercury,LB
+37101,763.702,Acetaldehyde,LB
+37101,113.86654,Naphthalene,LB
+37091,0.003882644,Styrene,LB
+37091,0.3612074,Xylenes (Mixed Isomers),LB
+37091,0.0009071504,Phenanthrene,LB
+37091,0.0001214624,Methane,TON
+37091,9.16638e-05,Nitrous Oxide,TON
+37091,2.440555e-07,Nitrate portion of PM2.5-PRI,TON
+37091,0.006956099,Nitrogen Oxides,TON
+37091,4.481813e-05,Organic Carbon portion of PM2.5-PRI,TON
+37089,51.41402,Hexane,LB
+37089,10.842042,Pyrene,LB
+37089,0.03247928,Benzo[k]Fluoranthene,LB
+37089,2.543656,Benz[a]Anthracene,LB
+37089,0.11702936,Arsenic,LB
+37089,2.89188,Methane,TON
+37089,0.06786642,Nitrous Oxide,TON
+37089,8.39954,Volatile Organic Compounds,TON
+37089,0.003321142,"Benzo[g,h,i,]Perylene",LB
+37089,6.62571,Benzene,LB
+37089,7.78349,Naphthalene,LB
+37089,1.516596,Carbon Monoxide,TON
+37089,0.0009781978,Nitrate portion of PM2.5-PRI,TON
+37089,0.08014842,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.3925844,Volatile Organic Compounds,TON
+37117,0.004242402,Benzo[b]Fluoranthene,LB
+37117,0.005884402,Arsenic,LB
+37117,548.2715,Carbon Dioxide,TON
+37117,0.001895328,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.03029146,Ammonia,TON
+37117,0.5952078,Nitrogen Oxides,TON
+37175,8.940422e-05,Chromium (VI),LB
+37175,0.008471824,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.1541462,Manganese,LB
+37175,2.13556,Phenanthrene,LB
+37175,0.1369523,Ammonia,TON
+37175,5.043938,"1,3-Butadiene",LB
+37175,0.001734028,"Benzo[g,h,i,]Perylene",LB
+37175,0.0005743148,Benzo[k]Fluoranthene,LB
+37175,0.0005718688,"Dibenzo[a,h]Anthracene",LB
+37175,0.0914706,Benz[a]Anthracene,LB
+37175,0.669523,Volatile Organic Compounds,TON
+37165,3.123258,Phenanthrene,LB
+37165,21.02288,Carbon Monoxide,TON
+37165,0.3528193,PM10-Primary from certain diesel engines,TON
+37165,0.006517467,Nitrous Oxide,TON
+37165,0.448379,PM10 Primary (Filt + Cond),TON
+37165,0.0210592,Sulfur Dioxide,TON
+37161,13.58018,Acrolein,LB
+37161,2376.748,Toluene,LB
+37161,0.2432906,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.18794808,Benzo[b]Fluoranthene,LB
+37161,0.18794808,Benzo[k]Fluoranthene,LB
+37161,218.4312,Formaldehyde,LB
+37161,0.2445492,Benzo[a]Pyrene,LB
+37161,0.06047932,Nickel,LB
+37161,243.7742,Acetaldehyde,LB
+37161,0.06345198,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.6101471,Ammonia,TON
+37161,0.8079151,PM10 Primary (Filt + Cond),TON
+37157,0.3034306,Toluene,LB
+37157,55.82132,Formaldehyde,LB
+37157,5.622136e-05,Benz[a]Anthracene,LB
+37157,2.156234e-06,Nickel,LB
+37157,0.0002291066,Acenaphthene,LB
+37157,0.001149951,Phenanthrene,LB
+37157,0.0005584582,Elemental Carbon portion of PM2.5-PRI,TON
+37157,2.38026e-06,Nitrate portion of PM2.5-PRI,TON
+37157,0.002102417,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.006483932,PM2.5 Primary (Filt + Cond),TON
+37151,7.040752,Xylenes (Mixed Isomers),LB
+37151,0.002517302,Benzo[k]Fluoranthene,LB
+37151,85.61634,Formaldehyde,LB
+37151,2.27156,"2,2,4-Trimethylpentane",LB
+37151,1189.655,Carbon Dioxide,TON
+37151,0.002989092,Nitrous Oxide,TON
+37149,0.04064844,Chrysene,LB
+37149,0.2607322,Fluorene,LB
+37149,0.001865458,Sulfate Portion of PM2.5-PRI,TON
+37149,0.006847438,Nickel,LB
+37149,0.010499546,Arsenic,LB
+37141,211.4048,Xylenes (Mixed Isomers),LB
+37141,0.018063032,Benzo[k]Fluoranthene,LB
+37141,130.7155,Benzene,LB
+37141,2.355464,Elemental Carbon portion of PM2.5-PRI,TON
+37141,5.941442,PM10 Primary (Filt + Cond),TON
+37141,3.903322,PM2.5 Primary (Filt + Cond),TON
+37003,9.598492,Ethyl Benzene,LB
+37003,0.9974938,Anthracene,LB
+37003,0.010949292,Arsenic,LB
+37003,1.9953608,Fluorene,LB
+37003,0.02186658,Sulfate Portion of PM2.5-PRI,TON
+37075,0.0002431946,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.0002320094,Fluoranthene,LB
+37075,0.00013051924,Benzo[k]Fluoranthene,LB
+37075,1.301222e-05,Mercury,LB
+37075,0.007252402,Naphthalene,LB
+37075,0.001133612,Methane,TON
+37021,10.565642,Ethyl Benzene,LB
+37021,0.02105736,Benz[a]Anthracene,LB
+37021,0.018991196,Nickel,LB
+37021,0.002227165,Sulfate Portion of PM2.5-PRI,TON
+37021,1.227744,Volatile Organic Compounds,TON
+37147,0.06830394,Styrene,LB
+37147,0.002226354,Anthracene,LB
+37147,0.5692044,Propionaldehyde,LB
+37147,0.002986256,Benzo[b]Fluoranthene,LB
+37147,0.005660296,Benzo[a]Pyrene,LB
+37127,3.231306e-05,Chromium (VI),LB
+37127,0.00232516,Benz[a]Anthracene,LB
+37127,0.0017686746,Acenaphthene,LB
+37127,422.073,Carbon Dioxide,TON
+37127,0.1744734,Nitrogen Oxides,TON
+37127,0.0002739045,Sulfate Portion of PM2.5-PRI,TON
+37011,0.15068512,Hexane,LB
+37011,0.00365649,Propionaldehyde,LB
+37011,0.0002802846,Fluoranthene,LB
+37011,0.00010133364,Benzo[a]Pyrene,LB
+37011,2.138342e-05,Manganese,LB
+37011,0.0003825394,Fluorene,LB
+37011,0.003206752,Volatile Organic Compounds,TON
+37005,0.05073462,Benzo[a]Pyrene,LB
+37053,0.04548658,Acrolein,LB
+37053,0.0003886036,Anthracene,LB
+37053,0.002406656,"Benzo[g,h,i,]Perylene",LB
+37053,0.001053062,Arsenic,LB
+37053,0.0006326394,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.0005730713,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.9072626,Benzene,LB
+37039,10.11954,Toluene,LB
+37039,0.004242956,Anthracene,LB
+37039,0.02154046,Acenaphthylene,LB
+37039,0.003369938,Nickel,LB
+37039,0.00183947,Elemental Carbon portion of PM2.5-PRI,TON
+37039,2.41921e-05,Nitrate portion of PM2.5-PRI,TON
+37039,0.009470219,PM2.5 Primary (Filt + Cond),TON
+37039,0.01435912,Sulfur Dioxide,TON
+37013,0.361554,Volatile Organic Compounds,TON
+37013,5.380642,Toluene,LB
+37013,1.725143,Hexane,LB
+37013,0.0146195,Nickel,LB
+37013,28.66934,Acetaldehyde,LB
+37013,7.17937,Naphthalene,LB
+37013,5.523208,Carbon Monoxide,TON
+37011,0.6576546,Volatile Organic Compounds,TON
+37005,0.03222378,Propionaldehyde,LB
+37005,1.7230052,Benzene,LB
+37005,0.0016328978,Acenaphthene,LB
+37005,1.67607e-06,Nitrate portion of PM2.5-PRI,TON
+37005,0.000655535,PM2.5 Primary (Filt + Cond),TON
+37005,0.03483252,Volatile Organic Compounds,TON
+37177,0.03620437,Nitrogen Oxides,TON
+37177,1.558984,Benzene,LB
+37177,9.052798e-07,Mercury,LB
+37177,0.00342595,Fluorene,LB
+37177,1.0773546,Ethyl Benzene,LB
+37177,0.0014467332,Anthracene,LB
+37173,816.6058,Xylenes (Mixed Isomers),LB
+37173,0.1129682,Benz[a]Anthracene,LB
+37173,0.06668728,Manganese,LB
+37173,0.3666069,Ammonia,TON
+37173,0.08456367,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.1060769,Sulfur Dioxide,TON
+37171,0.5792624,Styrene,LB
+37171,0.4614424,Acrolein,LB
+37171,0.01634196,PM2.5 Primary (Filt + Cond),TON
+37169,1.205467,Sulfur Dioxide,TON
+37169,0.4903388,Nickel,LB
+37169,57442.34,Carbon Dioxide,TON
+37149,0.002168306,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.003278942,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.0004377759,Sulfur Dioxide,TON
+37149,0.04829639,Volatile Organic Compounds,TON
+37149,1.2633314,Propionaldehyde,LB
+37149,0.1468834,Benzene,LB
+37149,0.0008925952,Manganese,LB
+37149,0.6470281,Carbon Monoxide,TON
+37153,0.0011399972,Benzo[b]Fluoranthene,LB
+37153,5.291396,Formaldehyde,LB
+37153,0.3480496,Xylenes (Mixed Isomers),LB
+37153,0.0002355616,"Benzo[g,h,i,]Perylene",LB
+37153,0.0002902392,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,6.374308,"1,3-Butadiene",LB
+37147,194.01754,Formaldehyde,LB
+37147,0.003134604,"Dibenzo[a,h]Anthracene",LB
+37147,0.6471596,Acenaphthene,LB
+37147,0.001391782,Nitrate portion of PM2.5-PRI,TON
+37147,0.3900652,Propionaldehyde,LB
+37147,56.8215,Xylenes (Mixed Isomers),LB
+37147,0.00017165192,"Dibenzo[a,h]Anthracene",LB
+37147,8.383831,Carbon Monoxide,TON
+37145,1692.6988,"2,2,4-Trimethylpentane",LB
+37139,18.33804,Toluene,LB
+37139,0.006411448,Benzo[k]Fluoranthene,LB
+37139,1.5181816,Fluorene,LB
+37139,0.5250347,PM25-Primary from certain diesel engines,TON
+37139,0.2027529,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.5600243,PM2.5 Primary (Filt + Cond),TON
+37143,8.91418e-07,Chromium (VI),LB
+37143,1.4884972,Benzene,LB
+37143,0.007461578,Phenanthrene,LB
+37143,0.001063638,Methane,TON
+37143,0.6967632,Carbon Monoxide,TON
+37143,0.0002700895,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,10.041264,Toluene,LB
+37141,7.871874,Propionaldehyde,LB
+37141,9.973354,Xylenes (Mixed Isomers),LB
+37141,3.192114e-05,Chromium (VI),LB
+37141,0.00801711,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.018832918,Nickel,LB
+37141,0.4862234,Acenaphthene,LB
+37141,0.3848662,PM2.5 Primary (Filt + Cond),TON
+37141,0.06297548,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,1.4248054,Ethyl Benzene,LB
+37137,2.95727,Xylenes (Mixed Isomers),LB
+37137,9.903076e-06,Chromium (VI),LB
+37137,250.2331,Carbon Dioxide,TON
+37133,0.4521384,Styrene,LB
+37133,1.0416396,"1,3-Butadiene",LB
+37133,0.3507276,Pyrene,LB
+37133,0.0016182776,"Benzo[g,h,i,]Perylene",LB
+37133,1.2429326e-05,Mercury,LB
+37133,3.853124,Naphthalene,LB
+37133,0.1687563,PM2.5 Primary (Filt + Cond),TON
+37133,0.008543612,Sulfur Dioxide,TON
+37127,7.952222,Fluoranthene,LB
+37127,0.6284972,Chrysene,LB
+37127,58.7957,Ethyl Benzene,LB
+37127,58.3255,"1,3-Butadiene",LB
+37127,95.41944,Propionaldehyde,LB
+37127,43.64702,"2,2,4-Trimethylpentane",LB
+37127,0.2644264,Manganese,LB
+37127,5.923086,Acenaphthene,LB
+37127,1.170567,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.2763994,Organic Carbon portion of PM2.5-PRI,TON
+37121,11.882258,Toluene,LB
+37121,1.449429e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37121,1.69593e-06,Sulfur Dioxide,TON
+37121,4.453662e-06,Benzo[b]Fluoranthene,LB
+37117,1.4165286,Toluene,LB
+37117,0.0012461596,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.00311372,Nickel,LB
+37117,0.004000606,Acrolein,LB
+37117,0.0002822887,Methane,TON
+37117,2.156732e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,1.203619e-05,Sulfur Dioxide,TON
+37117,0.004461725,Volatile Organic Compounds,TON
+37107,1.0654238,Fluorene,LB
+37107,16.45107,Naphthalene,LB
+37107,0.3609396,PM25-Primary from certain diesel engines,TON
+37107,0.2165328,Chrysene,LB
+37107,0.005312669,Nitrous Oxide,TON
+37097,9.49966,Naphthalene,LB
+37097,0.1564356,Ammonia,TON
+37097,0.1453082,PM2.5 Primary (Filt + Cond),TON
+37097,0.11497694,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.27387,Fluoranthene,LB
+37097,0.3120678,Pyrene,LB
+37105,0.2123812,"1,3-Butadiene",LB
+37105,0.002659876,Pyrene,LB
+37105,0.0004930886,Benzo[k]Fluoranthene,LB
+37105,0.0007019181,PM2.5 Primary (Filt + Cond),TON
+37105,3.049016,Benzo[k]Fluoranthene,LB
+37105,7795.208,"2,2,4-Trimethylpentane",LB
+37105,0.08396532,Mercury,LB
+37105,5.520716,Nitrous Oxide,TON
+37103,1.3790602,Phenanthrene,LB
+37103,1751.784,Carbon Dioxide,TON
+37103,0.01529367,Sulfur Dioxide,TON
+37103,1.6412202,Styrene,LB
+37103,3.682394,"1,3-Butadiene",LB
+37099,3.542356,Pyrene,LB
+37099,8.219902e-05,Chromium (VI),LB
+37099,2.671556,Fluoranthene,LB
+37099,7.747228,"2,2,4-Trimethylpentane",LB
+37099,0.12013744,Manganese,LB
+37099,139.60744,Acetaldehyde,LB
+37099,0.07203264,Ammonia,TON
+37099,0.006149104,Anthracene,LB
+37099,0.011990962,Pyrene,LB
+37099,0.002040404,Chrysene,LB
+37099,70.40862,Carbon Dioxide,TON
+37099,0.001608681,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.02913472,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,5.71988,Fluoranthene,LB
+37083,0.000579904,Mercury,LB
+37083,0.03858587,Nitrous Oxide,TON
+37017,0.0012850724,Manganese,LB
+37017,0.07140696,Phenanthrene,LB
+37017,0.04154342,Fluorene,LB
+37017,0.1180956,Carbon Monoxide,TON
+37017,0.2559999,Nitrogen Oxides,TON
+37017,0.01896575,PM10 Primary (Filt + Cond),TON
+37017,0.3899344,Xylenes (Mixed Isomers),LB
+37017,0.00429235,Benzo[a]Pyrene,LB
+37021,29.22192,Methane,TON
+37021,831.227,Volatile Organic Compounds,TON
+37021,994.6168,Propionaldehyde,LB
+37017,7.66897,"Benzo[g,h,i,]Perylene",LB
+37017,106047.5,Carbon Dioxide,TON
+37017,0.6724498,Elemental Carbon portion of PM2.5-PRI,TON
+37017,6.937701,PM10 Primary (Filt + Cond),TON
+37017,168.7039,Volatile Organic Compounds,TON
+37009,59.58728,Formaldehyde,LB
+37009,1.432352,"2,2,4-Trimethylpentane",LB
+37009,0.011341282,Manganese,LB
+37009,0.07852545,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.4429778,"1,3-Butadiene",LB
+37015,0.019543014,"Benzo[g,h,i,]Perylene",LB
+37015,0.01897854,Acenaphthylene,LB
+37015,8.918638,Formaldehyde,LB
+37015,0.003439696,Benz[a]Anthracene,LB
+37015,0.008334726,Fluorene,LB
+37015,0.2144474,Naphthalene,LB
+37015,0.004565437,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.003024174,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.2600886,Volatile Organic Compounds,TON
+37021,0.007090916,Phenanthrene,LB
+37021,0.06361732,Naphthalene,LB
+37021,1.761154,Carbon Monoxide,TON
+37021,0.002517448,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.713163,Ethyl Benzene,LB
+37021,0.03519012,Styrene,LB
+37021,0.16065748,"1,3-Butadiene",LB
+37021,0.0011785264,Anthracene,LB
+37021,0.002555328,Pyrene,LB
+37021,0.009824924,"Benzo[g,h,i,]Perylene",LB
+37021,0.003691292,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.002264904,Fluoranthene,LB
+37021,2.192298,Formaldehyde,LB
+37021,0.00015000344,Mercury,LB
+37009,9.15549,Toluene,LB
+37009,1.90792e-05,Chromium (VI),LB
+37009,0.016751108,"Benzo[g,h,i,]Perylene",LB
+37009,0.003451944,Benzo[b]Fluoranthene,LB
+37009,0.006222428,Benzo[a]Pyrene,LB
+37009,11.402306,Benzene,LB
+37009,0.007043884,Nitrous Oxide,TON
+37009,0.01884728,Ammonia,TON
+37009,0.0001935517,Sulfate Portion of PM2.5-PRI,TON
+37171,0.0010117148,Arsenic,LB
+37171,0.004828721,Methane,TON
+37171,0.0003318638,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.03362593,Volatile Organic Compounds,TON
+37151,35.54962,Toluene,LB
+37151,0.018986094,Arsenic,LB
+37151,1859.849,Carbon Dioxide,TON
+37151,0.04344505,PM2.5 Primary (Filt + Cond),TON
+37151,1.029678,Volatile Organic Compounds,TON
+37103,0.000315308,Acenaphthylene,LB
+37103,0.13523656,Formaldehyde,LB
+37103,6.464116e-05,Anthracene,LB
+37103,0.00013839944,Pyrene,LB
+37103,0.003543232,Naphthalene,LB
+37103,8.464848e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.00244774,Pyrene,LB
+37089,0.002093182,Organic Carbon portion of PM2.5-PRI,TON
+37021,4.174416,Fluoranthene,LB
+37021,0.018265632,Arsenic,LB
+37021,252.3592,Acetaldehyde,LB
+37021,14.903762,Hexane,LB
+37021,1.901941,PM10 Primary (Filt + Cond),TON
+37021,0.2475636,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,27.9779,Hexane,LB
+37017,173.83106,Ethyl Benzene,LB
+37017,291.3224,Hexane,LB
+37017,0.07625286,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.05458664,Benz[a]Anthracene,LB
+37017,39.72476,Acetaldehyde,LB
+37017,0.04200682,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.0248309,Benzo[b]Fluoranthene,LB
+37011,0.003491466,"Dibenzo[a,h]Anthracene",LB
+37011,0.0837182,Manganese,LB
+37011,0.4481094,Acenaphthene,LB
+37011,5.718136,Carbon Monoxide,TON
+37011,0.8927562,Volatile Organic Compounds,TON
+37011,4.676215,PM10 Primary (Filt + Cond),TON
+37011,9.971546,Fluoranthene,LB
+37011,1.799202,Benzo[k]Fluoranthene,LB
+37011,31.22426,Acenaphthylene,LB
+37003,5.885656,Toluene,LB
+37003,0.11623016,Chrysene,LB
+37003,0.2092057,PM10-Primary from certain diesel engines,TON
+37003,0.003133414,Nitrous Oxide,TON
+37003,0.1980901,PM2.5 Primary (Filt + Cond),TON
+37003,0.003570223,Sulfate Portion of PM2.5-PRI,TON
+37003,0.5154915,Volatile Organic Compounds,TON
+37001,762.8624,Ethyl Benzene,LB
+37001,0.05960668,Manganese,LB
+37001,34.77254,Naphthalene,LB
+37001,0.03956609,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.008068846,Fluoranthene,LB
+37199,0.0015942944,Benzo[k]Fluoranthene,LB
+37199,0.002175638,Benzo[a]Pyrene,LB
+37199,1.824139,Carbon Monoxide,TON
+37199,0.002148548,PM2.5 Primary (Filt + Cond),TON
+37185,0.006783052,"Benzo[g,h,i,]Perylene",LB
+37185,0.004491548,"Dibenzo[a,h]Anthracene",LB
+37185,0.025859,Nickel,LB
+37185,1.0836564,Fluorene,LB
+37185,4.222193,Carbon Monoxide,TON
+37185,0.03467236,Ammonia,TON
+37185,0.8954749,PM10 Primary (Filt + Cond),TON
+37185,0.02134354,Sulfur Dioxide,TON
+37185,4.970056,"1,3-Butadiene",LB
+37185,8.253916,Toluene,LB
+37185,0.7924654,Formaldehyde,LB
+37185,6.580966e-05,"Dibenzo[a,h]Anthracene",LB
+37185,0.001020709,Manganese,LB
+37185,0.0002475996,Nickel,LB
+37185,0.04213254,Volatile Organic Compounds,TON
+37189,0.8415706,Fluorene,LB
+37189,0.2690811,PM2.5 Primary (Filt + Cond),TON
+37189,0.02364724,Benzo[b]Fluoranthene,LB
+37189,3.397688,"2,2,4-Trimethylpentane",LB
+37189,86.59378,Toluene,LB
+37189,0.0386894,Benzo[b]Fluoranthene,LB
+37189,32.49596,"2,2,4-Trimethylpentane",LB
+37189,573.9804,Acetaldehyde,LB
+37189,7.548868,Fluorene,LB
+37189,7736.485,Carbon Dioxide,TON
+37193,16.43589,"1,3-Butadiene",LB
+37193,41.56568,Acrolein,LB
+37193,27.30908,Propionaldehyde,LB
+37193,40.582,Xylenes (Mixed Isomers),LB
+37193,1.1132884,Benz[a]Anthracene,LB
+37193,6.147916,Phenanthrene,LB
+37193,0.2871538,Methane,TON
+37193,0.1295295,Sulfur Dioxide,TON
+37185,0.02270312,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.06647554,Sulfur Dioxide,TON
+37185,0.0957634,Benzo[a]Pyrene,LB
+37185,185.4117,Hexane,LB
+37185,0.2540894,"Benzo[g,h,i,]Perylene",LB
+37185,1.3701956,Phenanthrene,LB
+37183,53.59466,"1,3-Butadiene",LB
+37183,0.8290622,Pyrene,LB
+37183,24.12594,Nitrogen Oxides,TON
+37183,0.1933339,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.01367102,Sulfate Portion of PM2.5-PRI,TON
+37183,0.0003801352,Chromium (VI),LB
+37183,0.3165788,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,2.212518,Acenaphthylene,LB
+37183,2.65203,Phenanthrene,LB
+37183,0.06482079,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.6128212,Manganese,LB
+37179,115.64306,Hexane,LB
+37179,0.02073232,Benzo[k]Fluoranthene,LB
+37179,9.86065e-06,Chromium (VI),LB
+37173,1.0301614e-05,Chromium (VI),LB
+37173,0.0015975386,Arsenic,LB
+37173,328.8905,Carbon Dioxide,TON
+37173,4.294766,Acrolein,LB
+37173,1.366759,Hexane,LB
+37173,0.05334852,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.02182128,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,3.780686,Acrolein,LB
+37125,0.03934402,Benzo[b]Fluoranthene,LB
+37125,0.03934402,Benzo[k]Fluoranthene,LB
+37125,0.362339,Fluorene,LB
+37125,0.0186082,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.014488008,Benzo[b]Fluoranthene,LB
+37113,56.3636,Benzene,LB
+37113,0.05406078,Acenaphthene,LB
+37109,0.008467472,"Benzo[g,h,i,]Perylene",LB
+37109,0.00215689,Benzo[b]Fluoranthene,LB
+37109,0.00215689,Benzo[k]Fluoranthene,LB
+37109,0.003175624,Benzo[a]Pyrene,LB
+37109,4.539752e-05,Mercury,LB
+37109,0.3270468,Naphthalene,LB
+37109,3.202785,Carbon Monoxide,TON
+37109,1.052597e-05,Nitrate portion of PM2.5-PRI,TON
+37109,4.231574,Ethyl Benzene,LB
+37109,6.502708,Hexane,LB
+37105,0.0006682576,"Dibenzo[a,h]Anthracene",LB
+37105,4.21247e-05,Mercury,LB
+37105,0.2082576,PM10 Primary (Filt + Cond),TON
+37101,0.017601796,Benzo[a]Pyrene,LB
+37101,0.009087974,Benz[a]Anthracene,LB
+37101,17.144368,Benzene,LB
+37101,0.002027196,Nickel,LB
+37101,0.003027754,Elemental Carbon portion of PM2.5-PRI,TON
+37101,1.160538,Nitrogen Oxides,TON
+37101,0.0006522001,Sulfate Portion of PM2.5-PRI,TON
+37097,2.750468e-05,Chromium (VI),LB
+37097,0.000835606,"Dibenzo[a,h]Anthracene",LB
+37097,25.759,Acetaldehyde,LB
+37097,0.007445402,Elemental Carbon portion of PM2.5-PRI,TON
+37089,22.69114,Ethyl Benzene,LB
+37089,45.5403,Toluene,LB
+37089,2.58213,Anthracene,LB
+37089,5.762794,Fluoranthene,LB
+37089,0.02440874,Benzo[k]Fluoranthene,LB
+37089,0.0001352491,Mercury,LB
+37089,1.787206,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.08463972,Sulfate Portion of PM2.5-PRI,TON
+37089,3.976718,Volatile Organic Compounds,TON
+37087,0.000762664,"Dibenzo[a,h]Anthracene",LB
+37087,0.06181976,Benz[a]Anthracene,LB
+37087,0.0014071156,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,3.139476,Naphthalene,LB
+37087,898.3395,Carbon Dioxide,TON
+37087,0.02797891,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.007686502,Sulfur Dioxide,TON
+37079,0.2228262,Styrene,LB
+37079,0.507469,"1,3-Butadiene",LB
+37079,0.8410302,Propionaldehyde,LB
+37079,5.479734e-06,Mercury,LB
+37079,0.05136498,Acenaphthene,LB
+37079,189.8628,Carbon Dioxide,TON
+37079,0.01908868,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.09236259,Volatile Organic Compounds,TON
+37073,6.921805e-06,Nitrous Oxide,TON
+37073,2.142115e-08,Nitrate portion of PM2.5-PRI,TON
+37073,6.17391e-05,Acenaphthylene,LB
+37073,0.010261956,"2,2,4-Trimethylpentane",LB
+37073,3.662852e-07,Arsenic,LB
+37073,0.0007031228,Naphthalene,LB
+37085,1.512873,Ammonia,TON
+37085,0.4981544,Sulfur Dioxide,TON
+37085,0.4183724,Benzo[k]Fluoranthene,LB
+37085,0.4247572,Benz[a]Anthracene,LB
+37081,8.718802,Ethyl Benzene,LB
+37081,21.25362,Toluene,LB
+37081,0.8343954,Anthracene,LB
+37081,2.439044,Pyrene,LB
+37081,1.8412558,Fluoranthene,LB
+37081,268.2398,Formaldehyde,LB
+37081,0.03985344,Nickel,LB
+37081,3.042454,Phenanthrene,LB
+37081,0.009534589,Nitrous Oxide,TON
+37081,1.074386,PM10 Primary (Filt + Cond),TON
+37071,0.8234682,Fluoranthene,LB
+37071,0.04250408,Manganese,LB
+37071,11.966356,Naphthalene,LB
+37071,1528.978,Carbon Dioxide,TON
+37071,4.751577,Nitrogen Oxides,TON
+37065,0.497354,Xylenes (Mixed Isomers),LB
+37065,0.0003487368,"Benzo[g,h,i,]Perylene",LB
+37065,0.0004300176,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.059961,Fluoranthene,LB
+37065,0.0017014292,Manganese,LB
+37065,3.376694,Acetaldehyde,LB
+37065,0.09515996,Phenanthrene,LB
+37065,0.001407341,Ammonia,TON
+37065,0.00789875,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.0005668899,Sulfur Dioxide,TON
+37063,978.3908,Ethyl Benzene,LB
+37063,22.17756,Styrene,LB
+37063,0.3247712,Benzo[b]Fluoranthene,LB
+37063,0.4658646,Benzo[a]Pyrene,LB
+37063,0.01069206,"Dibenzo[a,h]Anthracene",LB
+37063,0.09477088,Manganese,LB
+37063,0.004152776,Mercury,LB
+37063,0.001350984,Nitrate portion of PM2.5-PRI,TON
+37063,0.1375915,Sulfur Dioxide,TON
+37057,20.77464,Styrene,LB
+37057,0.000708235,Chromium (VI),LB
+37057,0.04799746,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,8.718064,Acenaphthylene,LB
+37057,1.167639,Organic Carbon portion of PM2.5-PRI,TON
+37055,1.528616,Volatile Organic Compounds,TON
+37051,2.551312,Fluorene,LB
+37051,0.5559896,PM10-Primary from certain diesel engines,TON
+37051,0.3326038,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.1755433,Ammonia,TON
+37051,0.116874,Organic Carbon portion of PM2.5-PRI,TON
+37051,43.48504,Xylenes (Mixed Isomers),LB
+37051,0.005490246,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,2.380502,Acenaphthylene,LB
+37045,0.10585438,"1,3-Butadiene",LB
+37045,0.5472064,Hexane,LB
+37045,0.0014005552,Pyrene,LB
+37045,0.0004729008,Benzo[b]Fluoranthene,LB
+37045,0.0004384008,Organic Carbon portion of PM2.5-PRI,TON
+37045,22.50973,Volatile Organic Compounds,TON
+37045,4381.266,Toluene,LB
+37045,2.200312,Pyrene,LB
+37045,0.3647334,Chrysene,LB
+37045,306.6453,Carbon Monoxide,TON
+37045,1.304719,Ammonia,TON
+37035,3.569396,Ethyl Benzene,LB
+37035,1.0762882,Pyrene,LB
+37035,0.006329158,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.003412498,Benzo[k]Fluoranthene,LB
+37035,0.15802124,Chrysene,LB
+37035,108.99856,Formaldehyde,LB
+37035,0.003404866,"Dibenzo[a,h]Anthracene",LB
+37035,0.03919614,Manganese,LB
+37035,0.2778984,PM25-Primary from certain diesel engines,TON
+37035,0.0118445,Sulfur Dioxide,TON
+37035,0.8310002,Anthracene,LB
+37035,0.00517349,Benzo[b]Fluoranthene,LB
+37035,31.41698,Benzene,LB
+37035,0.02991742,Arsenic,LB
+37033,6.109808,Styrene,LB
+37033,5.255232,Propionaldehyde,LB
+37033,0.5185828,Fluorene,LB
+37033,0.1469035,Ammonia,TON
+37033,0.001815926,Sulfate Portion of PM2.5-PRI,TON
+37033,3.000694,PM10 Primary (Filt + Cond),TON
+37033,61.17066,Acrolein,LB
+37033,7732.998,Xylenes (Mixed Isomers),LB
+37033,3.65771,"Benzo[g,h,i,]Perylene",LB
+37033,1078.2776,Acetaldehyde,LB
+37033,34892.45,Carbon Dioxide,TON
+37029,0.0002471778,Benzo[k]Fluoranthene,LB
+37029,3.3305,Acetaldehyde,LB
+37029,0.05289722,Fluorene,LB
+37029,0.01965677,PM25-Primary from certain diesel engines,TON
+37029,0.02978217,PM10 Primary (Filt + Cond),TON
+37027,0.00018904442,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.4994696,Benzene,LB
+37027,0.17740386,Acetaldehyde,LB
+37027,0.0005508856,Acenaphthene,LB
+37027,0.002989284,Phenanthrene,LB
+37175,0.6929142,"1,3-Butadiene",LB
+37175,0.004341236,Anthracene,LB
+37175,11.73634,Xylenes (Mixed Isomers),LB
+37175,1.9686258e-06,Mercury,LB
+37175,2.454808e-05,Nickel,LB
+37175,0.2641916,Naphthalene,LB
+37175,0.0003757183,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.1769866,Nickel,LB
+37171,1.7674116,Acenaphthene,LB
+37171,9.61248,Phenanthrene,LB
+37171,0.9503693,Nitrous Oxide,TON
+37171,0.7532394,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.5384736,Benzo[k]Fluoranthene,LB
+37171,1225.6032,"2,2,4-Trimethylpentane",LB
+37165,0.0727796,Anthracene,LB
+37165,0.0006881438,"Dibenzo[a,h]Anthracene",LB
+37165,0.007714874,Manganese,LB
+37165,9.01379,Acetaldehyde,LB
+37165,0.0006398424,Nitrous Oxide,TON
+37165,0.06780424,Fluorene,LB
+37165,0.0001266825,Nitrate portion of PM2.5-PRI,TON
+37165,1.050995,Nitrogen Oxides,TON
+37165,0.002501725,Sulfur Dioxide,TON
+37165,0.05568519,Volatile Organic Compounds,TON
+37161,0.0002274714,Mercury,LB
+37161,0.004349334,Arsenic,LB
+37161,31.5689,Carbon Monoxide,TON
+37161,0.01771392,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.006830208,Propionaldehyde,LB
+37153,0.0005293274,Pyrene,LB
+37153,0.2516218,"2,2,4-Trimethylpentane",LB
+37153,3.69742e-06,Arsenic,LB
+37153,0.016451204,Naphthalene,LB
+37153,2.67972e-05,Ammonia,TON
+37145,0.8592128,Xylenes (Mixed Isomers),LB
+37145,0.00261606,Benzo[b]Fluoranthene,LB
+37145,0.08659724,Fluoranthene,LB
+37145,11.427492,Formaldehyde,LB
+37145,0.0018198536,Nickel,LB
+37145,0.0003907029,Nitrous Oxide,TON
+37145,0.000155607,Nitrate portion of PM2.5-PRI,TON
+37139,0.9869957,Volatile Organic Compounds,TON
+37129,2.217,PM10-Primary from certain diesel engines,TON
+37129,0.6636796,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.288683,Ammonia,TON
+37129,37.77752,Nitrogen Oxides,TON
+37129,4.234623,PM10 Primary (Filt + Cond),TON
+37129,0.5307562,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,5.055299,Volatile Organic Compounds,TON
+37129,26.28234,"1,3-Butadiene",LB
+37129,1002.4124,Formaldehyde,LB
+37129,2.117806,Benz[a]Anthracene,LB
+37141,13.74289,"1,3-Butadiene",LB
+37141,1.5398574,Anthracene,LB
+37141,0.018450386,Arsenic,LB
+37141,5.211482,Phenanthrene,LB
+37141,11.64561,Carbon Monoxide,TON
+37141,42.0908,Nitrogen Oxides,TON
+37141,2.56694,PM10 Primary (Filt + Cond),TON
+37141,0.06052376,Sulfur Dioxide,TON
+37141,0.6285872,Chrysene,LB
+37141,0.3270858,Benzo[a]Pyrene,LB
+37139,696.9656,Ethyl Benzene,LB
+37139,20.24859,Volatile Organic Compounds,TON
+37133,2.537404,Styrene,LB
+37133,15.813654,Acrolein,LB
+37133,0.49446,Anthracene,LB
+37133,0.002766592,"Benzo[g,h,i,]Perylene",LB
+37133,0.006743468,Benzo[b]Fluoranthene,LB
+37133,0.8179332,Fluoranthene,LB
+37133,0.5918036,Acenaphthene,LB
+37133,0.1644103,Methane,TON
+37133,0.1395059,Elemental Carbon portion of PM2.5-PRI,TON
+37129,6.053144e-05,Chromium (VI),LB
+37129,0.4973366,Chrysene,LB
+37129,340.2982,Formaldehyde,LB
+37129,0.010615296,"Dibenzo[a,h]Anthracene",LB
+37129,8.705288,"2,2,4-Trimethylpentane",LB
+37129,5.444164e-05,Mercury,LB
+37129,4.135888,Phenanthrene,LB
+37129,2.361348,Fluorene,LB
+37125,0.601516,Benzene,LB
+37125,45.45462,Carbon Dioxide,TON
+37125,0.01394607,PM10-Primary from certain diesel engines,TON
+37125,0.0003989899,Sulfate Portion of PM2.5-PRI,TON
+37125,0.4735752,Xylenes (Mixed Isomers),LB
+37125,0.007960384,Chrysene,LB
+37125,0.00016535614,"Dibenzo[a,h]Anthracene",LB
+37121,1.3947602,Xylenes (Mixed Isomers),LB
+37121,0.03679974,Benz[a]Anthracene,LB
+37121,2.396526,Benzene,LB
+37121,0.004865164,Manganese,LB
+37121,0.05357644,PM2.5 Primary (Filt + Cond),TON
+37121,0.0009382836,Sulfate Portion of PM2.5-PRI,TON
+37123,2.162686,Ethyl Benzene,LB
+37123,12.874614,Toluene,LB
+37123,3.177272,Hexane,LB
+37123,0.002363232,Methane,TON
+37119,4.775739,Organic Carbon portion of PM2.5-PRI,TON
+37119,236.6628,Propionaldehyde,LB
+37119,5695.544,Formaldehyde,LB
+37119,30.64562,Fluorene,LB
+37119,15.536414,Styrene,LB
+37119,58.0759,"1,3-Butadiene",LB
+37119,241.4654,Formaldehyde,LB
+37119,0.07611836,Nickel,LB
+37119,194.47948,Acetaldehyde,LB
+37119,1.4297964,Fluorene,LB
+37119,0.4460403,Methane,TON
+37119,341.1393,Carbon Monoxide,TON
+37119,1.024016,Ammonia,TON
+37119,37.58272,Nitrogen Oxides,TON
+37119,0.3499377,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,11.17515,Volatile Organic Compounds,TON
+37107,1.0437822,Anthracene,LB
+37107,2.029596,Pyrene,LB
+37107,0.3219122,Benzo[k]Fluoranthene,LB
+37107,414.6816,Acetaldehyde,LB
+37097,0.7643213,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,55.74036,Ethyl Benzene,LB
+37097,19.916296,Styrene,LB
+37097,0.000478606,Chromium (VI),LB
+37097,0.04361844,"Dibenzo[a,h]Anthracene",LB
+37097,0.11599322,Arsenic,LB
+37097,709.6132,Acetaldehyde,LB
+37097,0.06854684,Nitrous Oxide,TON
+37101,2179.44,"1,3-Butadiene",LB
+37101,302.7906,Acrolein,LB
+37101,61998.22,Toluene,LB
+37101,5.237482,Benz[a]Anthracene,LB
+37101,0.242257,Mercury,LB
+37101,76.6055,Phenanthrene,LB
+37101,26.41658,PM10 Primary (Filt + Cond),TON
+37099,0.240334,Styrene,LB
+37099,8.138702,"2,2,4-Trimethylpentane",LB
+37099,0.0005711834,Manganese,LB
+37099,5.33524e-06,Mercury,LB
+37099,6.652586e-05,Nickel,LB
+37099,3.182884,Acetaldehyde,LB
+37093,0.00013462072,Nickel,LB
+37093,0.04803563,Volatile Organic Compounds,TON
+37093,0.002750538,"Benzo[g,h,i,]Perylene",LB
+37093,0.0008429854,Chrysene,LB
+37089,71.15192,Hexane,LB
+37089,0.013023954,Benzo[k]Fluoranthene,LB
+37089,0.3152666,Benzo[a]Pyrene,LB
+37089,17177.99,Carbon Dioxide,TON
+37089,2.443974,PM10-Primary from certain diesel engines,TON
+37089,1.535646,Elemental Carbon portion of PM2.5-PRI,TON
+37067,15992.818,"2,2,4-Trimethylpentane",LB
+37067,1826.3804,Benzene,LB
+37067,238.4158,Volatile Organic Compounds,TON
+37065,0.1848178,PM10-Primary from certain diesel engines,TON
+37065,0.1080091,Elemental Carbon portion of PM2.5-PRI,TON
+37065,2.281234,Ethyl Benzene,LB
+37065,0.2199868,Anthracene,LB
+37065,0.1109458,Benz[a]Anthracene,LB
+37063,0.000760995,Benzo[b]Fluoranthene,LB
+37063,0.003130854,Fluoranthene,LB
+37063,0.000735525,Benz[a]Anthracene,LB
+37063,0.00019529306,Manganese,LB
+37063,0.011503404,Phenanthrene,LB
+37063,0.6295763,Carbon Monoxide,TON
+37061,1.7598532,Pyrene,LB
+37061,75.41418,Acetaldehyde,LB
+37061,0.5774706,Acenaphthene,LB
+37061,1.2417144,Fluorene,LB
+37061,0.2097392,Elemental Carbon portion of PM2.5-PRI,TON
+37057,4.548692,Styrene,LB
+37057,27.97742,"1,3-Butadiene",LB
+37057,203.3456,Hexane,LB
+37057,0.16503704,Anthracene,LB
+37057,0.2824906,Fluoranthene,LB
+37057,0.05855472,Benzo[k]Fluoranthene,LB
+37057,0.19254732,Acenaphthene,LB
+37057,0.02173123,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.0008263162,Nitrate portion of PM2.5-PRI,TON
+37057,10.903062,Propionaldehyde,LB
+37057,1.1000278,Pyrene,LB
+37057,3134.726,Xylenes (Mixed Isomers),LB
+37057,0.2042804,Benzo[b]Fluoranthene,LB
+37053,126.7978,Toluene,LB
+37053,79.31412,Xylenes (Mixed Isomers),LB
+37053,0.013277222,Manganese,LB
+37047,8.768664,"Benzo[g,h,i,]Perylene",LB
+37047,2.170368,Benzo[b]Fluoranthene,LB
+37047,26.86888,Acenaphthylene,LB
+37047,1.7270206,Arsenic,LB
+37047,3.96595,PM2.5 Primary (Filt + Cond),TON
+37047,122.9123,Volatile Organic Compounds,TON
+37043,1.703842e-05,Nickel,LB
+37043,2.612498e-05,Arsenic,LB
+37043,0.1316896,Acetaldehyde,LB
+37043,8.073007e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.0001493431,Sulfur Dioxide,TON
+37043,0.2012586,Ethyl Benzene,LB
+37043,0.0003747808,"Benzo[g,h,i,]Perylene",LB
+37043,0.0001066226,Benzo[k]Fluoranthene,LB
+37043,0.001774709,Acenaphthylene,LB
+37037,0.002249452,"Benzo[g,h,i,]Perylene",LB
+37037,20.39072,Benzene,LB
+37037,1.0769758,Fluorene,LB
+37037,0.0002571971,Nitrate portion of PM2.5-PRI,TON
+37037,0.127692,PM10 Primary (Filt + Cond),TON
+37031,0.02497308,Benzo[a]Pyrene,LB
+37031,0.014695232,Manganese,LB
+37031,0.0004387999,Nitrate portion of PM2.5-PRI,TON
+37031,0.1720922,Volatile Organic Compounds,TON
+37029,0.01369102,Volatile Organic Compounds,TON
+37029,0.07710032,Ethyl Benzene,LB
+37029,1.8609594,Ethyl Benzene,LB
+37029,0.00406994,Pyrene,LB
+37029,6.993556,Xylenes (Mixed Isomers),LB
+37029,0.013305462,Phenanthrene,LB
+37029,0.0001800956,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.000472931,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.001022731,PM2.5 Primary (Filt + Cond),TON
+37149,0.010620466,"Dibenzo[a,h]Anthracene",LB
+37149,9.774128,"2,2,4-Trimethylpentane",LB
+37149,0.06930252,Nickel,LB
+37149,8.672243,Carbon Monoxide,TON
+37149,20.76599,Nitrogen Oxides,TON
+37149,1.087563,PM2.5 Primary (Filt + Cond),TON
+37149,0.00013792126,Chromium (VI),LB
+37149,0.0775073,Benzo[b]Fluoranthene,LB
+37157,21.63098,Ethyl Benzene,LB
+37157,7.924976,Styrene,LB
+37157,52.79408,Toluene,LB
+37157,0.02564996,"Benzo[g,h,i,]Perylene",LB
+37157,0.8073096,Chrysene,LB
+37157,0.04509958,Arsenic,LB
+37157,4.074006,Fluorene,LB
+37157,69.1434,Naphthalene,LB
+37157,3.464421,Volatile Organic Compounds,TON
+37151,4.015948,Styrene,LB
+37151,23.46024,Xylenes (Mixed Isomers),LB
+37151,7.972172,"2,2,4-Trimethylpentane",LB
+37151,3.443862,Phenanthrene,LB
+37151,0.7141085,PM10-Primary from certain diesel engines,TON
+37151,0.2805793,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.16736908,Benzo[a]Pyrene,LB
+37145,0.14646382,Benz[a]Anthracene,LB
+37145,455.9708,Hexane,LB
+37145,0.0002898118,Chromium (VI),LB
+37145,0.09250986,Manganese,LB
+37145,0.03622688,Nickel,LB
+37145,1.2176248,Fluorene,LB
+37145,13.21998,Nitrogen Oxides,TON
+37145,0.1987888,PM2.5 Primary (Filt + Cond),TON
+37145,10.0864,Volatile Organic Compounds,TON
+37143,0.1002712,Anthracene,LB
+37143,0.197688,Pyrene,LB
+37143,9.65362e-06,Chromium (VI),LB
+37143,0.00013128774,"Dibenzo[a,h]Anthracene",LB
+37143,16.36196,Acetaldehyde,LB
+37143,0.2092324,Fluorene,LB
+37143,4.125336,Naphthalene,LB
+37143,1.903861,Carbon Monoxide,TON
+37139,0.6586278,Acrolein,LB
+37139,0.6559214,Toluene,LB
+37139,0.219225,Hexane,LB
+37139,0.04337418,Acenaphthylene,LB
+37139,0.0014027298,Nickel,LB
+37139,0.000333564,Nitrous Oxide,TON
+37139,0.8349568,Nitrogen Oxides,TON
+37139,0.06044066,PM10 Primary (Filt + Cond),TON
+37139,0.04728298,Volatile Organic Compounds,TON
+37141,14.494414,Acrolein,LB
+37141,3.400574,Acenaphthylene,LB
+37141,0.7783954,Ammonia,TON
+37141,0.1537715,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.0007682645,Nitrate portion of PM2.5-PRI,TON
+37135,7.367563,Nitrogen Oxides,TON
+37135,0.2652174,Benzo[a]Pyrene,LB
+37135,12.733304,Styrene,LB
+37135,0.9742634,Pyrene,LB
+37135,0.265279,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,844.5472,Ethyl Benzene,LB
+37129,0.00598425,"Dibenzo[a,h]Anthracene",LB
+37129,6.809633,Nitrogen Oxides,TON
+37129,0.1471807,Organic Carbon portion of PM2.5-PRI,TON
+37127,7.080742,"1,3-Butadiene",LB
+37127,0.7860518,Anthracene,LB
+37127,2.739192,Phenanthrene,LB
+37127,8.521419,Carbon Monoxide,TON
+37127,1605.353,Carbon Dioxide,TON
+37127,0.5415883,PM25-Primary from certain diesel engines,TON
+37127,0.7660173,PM10 Primary (Filt + Cond),TON
+37127,0.5644658,PM2.5 Primary (Filt + Cond),TON
+37127,3.06841e-05,Anthracene,LB
+37127,0.0004627894,Propionaldehyde,LB
+37127,0.00012469358,"Benzo[g,h,i,]Perylene",LB
+37127,6.562954e-06,Arsenic,LB
+37127,6.924704e-05,Fluorene,LB
+37127,2.205506,Carbon Dioxide,TON
+37127,1.438783e-07,Nitrate portion of PM2.5-PRI,TON
+37127,5.218612e-05,PM2.5 Primary (Filt + Cond),TON
+37127,1.597795e-06,Sulfate Portion of PM2.5-PRI,TON
+37115,2.569512,Pyrene,LB
+37115,7.944166e-05,Chromium (VI),LB
+37115,0.008099318,"Dibenzo[a,h]Anthracene",LB
+37115,3.17728,Phenanthrene,LB
+37115,28.51736,Naphthalene,LB
+37115,1.072105,PM25-Primary from certain diesel engines,TON
+37115,0.003467077,Nitrate portion of PM2.5-PRI,TON
+37109,6.638218,Styrene,LB
+37109,45.17996,Toluene,LB
+37109,48.62562,Xylenes (Mixed Isomers),LB
+37109,0.00017394524,Mercury,LB
+37109,0.03637004,Arsenic,LB
+37109,1.5477134,Acenaphthene,LB
+37109,1.175108,PM25-Primary from certain diesel engines,TON
+37109,0.1799689,Ammonia,TON
+37109,0.006232066,Nitrate portion of PM2.5-PRI,TON
+37109,2.917938,Volatile Organic Compounds,TON
+37107,10.176558,"1,3-Butadiene",LB
+37107,465.591,Hexane,LB
+37107,0.282851,"Benzo[g,h,i,]Perylene",LB
+37107,0.01485263,Nitrous Oxide,TON
+37107,0.05905342,Organic Carbon portion of PM2.5-PRI,TON
+37107,3432.284,"2,2,4-Trimethylpentane",LB
+37107,391.1002,Benzene,LB
+37097,0.8310518,"2,2,4-Trimethylpentane",LB
+37097,1.0262288e-05,Arsenic,LB
+37097,0.01875999,Volatile Organic Compounds,TON
+37097,0.6511964,Ethyl Benzene,LB
+37097,0.0256364,Styrene,LB
+37097,0.1409963,"1,3-Butadiene",LB
+37097,0.0009043124,Anthracene,LB
+37097,0.0017668418,Pyrene,LB
+37097,0.0003279914,Benzo[b]Fluoranthene,LB
+37097,0.001549015,Fluoranthene,LB
+37097,0.0003135654,Chrysene,LB
+37091,7.159042,Hexane,LB
+37091,7.58656e-07,Chromium (VI),LB
+37091,4.819928,Benzene,LB
+37079,0.5578804,Acrolein,LB
+37079,0.565672,Propionaldehyde,LB
+37079,0.009258364,Benzo[b]Fluoranthene,LB
+37079,0.013307856,Benzo[a]Pyrene,LB
+37079,0.05804246,Fluorene,LB
+37079,12.72517,Carbon Monoxide,TON
+37079,1.189318,Nitrogen Oxides,TON
+37079,0.5780557,Volatile Organic Compounds,TON
+37077,554.6556,Formaldehyde,LB
+37077,0.367444,Benzo[a]Pyrene,LB
+37077,0.3386436,Methane,TON
+37077,0.006412067,Nitrate portion of PM2.5-PRI,TON
+37059,2.031699,Volatile Organic Compounds,TON
+37059,49.65458,Xylenes (Mixed Isomers),LB
+37059,39.57726,"2,2,4-Trimethylpentane",LB
+37025,0.11506568,"1,3-Butadiene",LB
+37025,0.0014010832,Nickel,LB
+37025,0.002925031,Nitrous Oxide,TON
+37025,1.003629e-05,Nitrate portion of PM2.5-PRI,TON
+37025,0.0186553,PM10 Primary (Filt + Cond),TON
+37025,0.06462983,Volatile Organic Compounds,TON
+37169,0.8821422,Hexane,LB
+37137,0.2378514,"1,3-Butadiene",LB
+37137,6.876986e-05,"Dibenzo[a,h]Anthracene",LB
+37137,2.054564,"2,2,4-Trimethylpentane",LB
+37137,5.36103,Benzene,LB
+37137,0.00011814566,Mercury,LB
+37137,0.01497584,Methane,TON
+37137,0.0007807707,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.004147813,PM2.5 Primary (Filt + Cond),TON
+37137,0.1293695,Volatile Organic Compounds,TON
+37089,0.0009822702,Fluoranthene,LB
+37089,0.6094328,"2,2,4-Trimethylpentane",LB
+37089,0.002343774,Manganese,LB
+37089,0.6872203,Carbon Monoxide,TON
+37167,0.0008025226,Chrysene,LB
+37167,0.0015562662,Benzo[a]Pyrene,LB
+37167,0.0002163897,Nitrous Oxide,TON
+37167,0.0003705718,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,41.02638,Naphthalene,LB
+37021,0.7069081,PM25-Primary from certain diesel engines,TON
+37021,0.7727663,PM2.5 Primary (Filt + Cond),TON
+37021,89.12554,Acetaldehyde,LB
+37021,1.5618514,Phenanthrene,LB
+37021,125.4663,Carbon Monoxide,TON
+37021,0.1039679,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.2472844,Anthracene,LB
+37021,0.18044486,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.4278798,Fluoranthene,LB
+37021,0.11515466,Benzo[k]Fluoranthene,LB
+37021,92.51404,Formaldehyde,LB
+37005,1.4281696,Hexane,LB
+37005,0.5909618,Pyrene,LB
+37005,1.436172e-05,Chromium (VI),LB
+37005,0.01268617,Benzo[b]Fluoranthene,LB
+37005,0.0017374874,Benzo[k]Fluoranthene,LB
+37005,0.0017348948,"Dibenzo[a,h]Anthracene",LB
+37005,1.088258e-05,Mercury,LB
+37005,0.01746179,Methane,TON
+37061,6.08859,Ethyl Benzene,LB
+37061,21.49288,Xylenes (Mixed Isomers),LB
+37061,10.725268,"2,2,4-Trimethylpentane",LB
+37061,15.25864,Carbon Monoxide,TON
+37061,0.01226729,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.007380295,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.0394774,Sulfur Dioxide,TON
+37035,0.002253184,Acenaphthene,LB
+37035,0.004564038,Fluorene,LB
+37035,428.3881,Carbon Dioxide,TON
+37035,0.005767136,Nitrous Oxide,TON
+37035,0.1796709,Volatile Organic Compounds,TON
+37035,5.060716,Xylenes (Mixed Isomers),LB
+37035,0.002923638,Benzo[b]Fluoranthene,LB
+37035,0.002923638,Benzo[k]Fluoranthene,LB
+37035,0.002209116,Chrysene,LB
+37035,0.00012920212,"Dibenzo[a,h]Anthracene",LB
+37023,0.217512,Ethyl Benzene,LB
+37023,0.890279,Toluene,LB
+37023,0.00035728,Anthracene,LB
+37023,0.7814796,Xylenes (Mixed Isomers),LB
+37023,4.110676e-06,Chromium (VI),LB
+37023,0.0006792832,Fluoranthene,LB
+37023,3.788967e-06,Nitrate portion of PM2.5-PRI,TON
+37023,0.0006700923,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.001581077,PM2.5 Primary (Filt + Cond),TON
+37023,0.002165558,Sulfur Dioxide,TON
+37023,0.02586729,Volatile Organic Compounds,TON
+37143,0.0013934664,"Benzo[g,h,i,]Perylene",LB
+37143,0.0002798846,Benzo[b]Fluoranthene,LB
+37143,3.381464,Acetaldehyde,LB
+37143,0.0002886528,Acenaphthene,LB
+37143,0.002487777,Methane,TON
+37017,0.0005620444,"Benzo[g,h,i,]Perylene",LB
+37017,0.017741026,Chrysene,LB
+37017,0.009226716,Benzo[a]Pyrene,LB
+37017,0.0003786318,"Dibenzo[a,h]Anthracene",LB
+37017,0.1537505,Phenanthrene,LB
+37007,0.2754272,Anthracene,LB
+37007,0.4529544,Fluoranthene,LB
+37007,43.50528,Acetaldehyde,LB
+37007,0.1461823,PM10 Primary (Filt + Cond),TON
+37007,0.1105186,PM2.5 Primary (Filt + Cond),TON
+37007,0.008689053,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.769047,Acrolein,LB
+37017,0.0656946,Pyrene,LB
+37017,99.00102,Xylenes (Mixed Isomers),LB
+37017,0.010314722,Benzo[b]Fluoranthene,LB
+37017,0.1803282,Acenaphthylene,LB
+37017,0.010390414,Chrysene,LB
+37017,0.003290244,Arsenic,LB
+37017,628.4739,Carbon Dioxide,TON
+37015,1.106314,Organic Carbon portion of PM2.5-PRI,TON
+37015,6026.14,Benzene,LB
+37015,321.1536,Naphthalene,LB
+37015,71207.24,Carbon Dioxide,TON
+37015,4385.934,Hexane,LB
+37015,10.24548,Pyrene,LB
+37015,1.568424,Benzo[k]Fluoranthene,LB
+37181,0.006829072,Benzo[a]Pyrene,LB
+37181,0.0012778836,Manganese,LB
+37181,0.3355123,Nitrogen Oxides,TON
+37181,0.0002119943,Sulfate Portion of PM2.5-PRI,TON
+37181,0.004124176,Benzo[k]Fluoranthene,LB
+37195,0.08834066,"1,3-Butadiene",LB
+37195,0.0005688206,Anthracene,LB
+37195,0.0002093022,Chrysene,LB
+37195,0.0002186268,Benz[a]Anthracene,LB
+37195,0.6003538,Benzene,LB
+37195,3.246812e-07,Mercury,LB
+37195,6.207318e-06,Arsenic,LB
+37195,0.0343459,Naphthalene,LB
+37195,1.396807,Carbon Dioxide,TON
+37195,0.0002586801,Nitrous Oxide,TON
+37195,0.01442331,Nitrogen Oxides,TON
+37191,0.3786852,Hexane,LB
+37191,2.854814e-06,Chromium (VI),LB
+37191,0.08397932,Acenaphthylene,LB
+37191,0.0202824,Chrysene,LB
+37191,0.3747508,"2,2,4-Trimethylpentane",LB
+37191,0.6093636,Nitrogen Oxides,TON
+37191,0.08779749,Volatile Organic Compounds,TON
+37187,0.5068162,Propionaldehyde,LB
+37187,0.06820782,Xylenes (Mixed Isomers),LB
+37187,4.986202e-07,Nickel,LB
+37187,0.0007581342,Organic Carbon portion of PM2.5-PRI,TON
+37191,25.78674,Hexane,LB
+37191,21.181,"2,2,4-Trimethylpentane",LB
+37191,0.0007311148,Arsenic,LB
+37191,0.0002719381,Sulfate Portion of PM2.5-PRI,TON
+37191,0.444833,Volatile Organic Compounds,TON
+37181,0.773367,Ethyl Benzene,LB
+37181,1.7538636,Acrolein,LB
+37181,0.6341286,"2,2,4-Trimethylpentane",LB
+37181,0.012386844,Benz[a]Anthracene,LB
+37181,0.003751302,PM25-Primary from certain diesel engines,TON
+37181,0.0002459287,Nitrous Oxide,TON
+37197,91.72608,Propionaldehyde,LB
+37197,7.094704,Fluoranthene,LB
+37197,7.487541,Ammonia,TON
+37195,0.11033652,Benzo[b]Fluoranthene,LB
+37195,456.318,Benzene,LB
+37195,0.0014632726,Mercury,LB
+37195,0.02797586,Arsenic,LB
+37195,0.3117688,Ammonia,TON
+37183,1.3240932e-05,Chromium (VI),LB
+37183,0.002553536,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.0013790226,Benzo[k]Fluoranthene,LB
+37183,1.4700124,"2,2,4-Trimethylpentane",LB
+37183,0.11002724,Benz[a]Anthracene,LB
+37183,0.04269379,Methane,TON
+37183,0.001837544,Nitrous Oxide,TON
+37183,0.1180745,PM2.5 Primary (Filt + Cond),TON
+37185,2.528426,Fluorene,LB
+37185,0.0005986227,Nitrate portion of PM2.5-PRI,TON
+37185,0.04643706,Organic Carbon portion of PM2.5-PRI,TON
+37185,14.731432,"1,3-Butadiene",LB
+37185,23.99924,Propionaldehyde,LB
+37185,0.008602576,Benzo[b]Fluoranthene,LB
+37185,0.1332582,Chrysene,LB
+37185,0.02023264,Arsenic,LB
+37041,44.18436,Acetaldehyde,LB
+37041,2.767661,Carbon Monoxide,TON
+37031,862.4042,Hexane,LB
+37031,320.6174,Formaldehyde,LB
+37031,0.2712308,Benz[a]Anthracene,LB
+37031,0.163766,Arsenic,LB
+37031,238.164,Carbon Monoxide,TON
+37031,16831.85,Carbon Dioxide,TON
+37031,0.1921347,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,1.4939694e-05,Fluorene,LB
+37029,0.0003831144,Naphthalene,LB
+37029,7.324128e-06,PM10 Primary (Filt + Cond),TON
+37029,2.43315e-06,Chrysene,LB
+37029,3.953812e-06,Benzo[a]Pyrene,LB
+37087,15.959544,Ethyl Benzene,LB
+37087,0.7301778,Chrysene,LB
+37087,0.015513082,"Dibenzo[a,h]Anthracene",LB
+37087,1.2452312,Benz[a]Anthracene,LB
+37087,3.54824,Fluorene,LB
+37087,0.00656182,Nitrate portion of PM2.5-PRI,TON
+37087,0.00144685,Nitrous Oxide,TON
+37087,0.0001993315,Nitrate portion of PM2.5-PRI,TON
+37087,6.670256e-05,Mercury,LB
+37087,0.641355,Pyrene,LB
+37087,7.009902e-05,Chromium (VI),LB
+37087,0.0015711824,"Benzo[g,h,i,]Perylene",LB
+37087,0.002666834,Benzo[b]Fluoranthene,LB
+37083,0.0004252784,"Benzo[g,h,i,]Perylene",LB
+37083,0.0002755404,"Dibenzo[a,h]Anthracene",LB
+37083,0.2556032,"2,2,4-Trimethylpentane",LB
+37083,0.01366994,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.619677,Nitrogen Oxides,TON
+37083,0.009448788,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.1214513,Ethyl Benzene,LB
+37079,0.03635596,Pyrene,LB
+37079,0.02580038,Fluorene,LB
+37079,0.001362708,Methane,TON
+37079,0.003614799,Organic Carbon portion of PM2.5-PRI,TON
+37071,7.626808,"1,3-Butadiene",LB
+37071,1560.2,Carbon Dioxide,TON
+37071,0.313508,Styrene,LB
+37071,0.2520642,Propionaldehyde,LB
+37071,0.002158426,Arsenic,LB
+37071,0.013653394,Acenaphthene,LB
+37053,1.3786754e-05,"Benzo[g,h,i,]Perylene",LB
+37063,20025.38,Xylenes (Mixed Isomers),LB
+37041,3.020174,Ethyl Benzene,LB
+37041,7.43011,Toluene,LB
+37041,0.9567562,Phenanthrene,LB
+37041,0.5361456,Fluorene,LB
+37041,0.06937691,Methane,TON
+37041,0.3815503,PM10-Primary from certain diesel engines,TON
+37041,0.351022,PM25-Primary from certain diesel engines,TON
+37041,0.003829872,Nitrous Oxide,TON
+37041,21.36522,Toluene,LB
+37041,0.002838474,Anthracene,LB
+37041,1.1364944,Acetaldehyde,LB
+37041,1.566311,Carbon Monoxide,TON
+37041,0.09776804,Volatile Organic Compounds,TON
+37037,0.8763114,Acrolein,LB
+37037,0.10722726,Pyrene,LB
+37037,0.08164368,Fluoranthene,LB
+37037,0.007362888,Benzo[a]Pyrene,LB
+37037,0.272783,"2,2,4-Trimethylpentane",LB
+37037,0.07761276,Fluorene,LB
+37037,0.02549938,PM25-Primary from certain diesel engines,TON
+37037,0.0001273097,Nitrate portion of PM2.5-PRI,TON
+37037,0.064484,Volatile Organic Compounds,TON
+37029,0.002937296,Benzo[k]Fluoranthene,LB
+37029,0.00378321,Benzo[a]Pyrene,LB
+37029,9.526858,"2,2,4-Trimethylpentane",LB
+37029,0.06129118,Phenanthrene,LB
+37029,0.00847123,Ammonia,TON
+37029,0.4726146,Nitrogen Oxides,TON
+37029,0.005208022,PM2.5 Primary (Filt + Cond),TON
+37023,0.014396528,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.009972314,Benzo[k]Fluoranthene,LB
+37023,0.0003303636,"Dibenzo[a,h]Anthracene",LB
+37023,0.0619786,Fluorene,LB
+37199,5.096511e-05,Sulfate Portion of PM2.5-PRI,TON
+37199,0.093551,Acrolein,LB
+37199,14.434188,Xylenes (Mixed Isomers),LB
+37199,0.00491039,"Benzo[g,h,i,]Perylene",LB
+37199,0.00138232,Benzo[b]Fluoranthene,LB
+37199,0.001363912,Chrysene,LB
+37185,0.004836498,Fluoranthene,LB
+37185,0.013209268,Acenaphthylene,LB
+37185,0.005376054,Benzo[a]Pyrene,LB
+37185,34.31394,Acetaldehyde,LB
+37185,0.002860872,Acenaphthene,LB
+37185,324.4533,Carbon Dioxide,TON
+37185,0.001873054,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,7.514664,Propionaldehyde,LB
+37191,9.228828,Xylenes (Mixed Isomers),LB
+37191,61.15962,Acetaldehyde,LB
+37191,1.4595606,Phenanthrene,LB
+37191,5.395518,Carbon Monoxide,TON
+37191,0.2833418,PM25-Primary from certain diesel engines,TON
+37191,0.4762843,PM10 Primary (Filt + Cond),TON
+37191,0.3049341,PM2.5 Primary (Filt + Cond),TON
+37191,0.04373958,Pyrene,LB
+37191,48.71088,Xylenes (Mixed Isomers),LB
+37191,0.007461294,Benzo[b]Fluoranthene,LB
+37191,0.05315886,Fluorene,LB
+37191,0.01393281,Ammonia,TON
+37189,0.016123684,Arsenic,LB
+37189,11.222832,Naphthalene,LB
+37189,6.766264,Volatile Organic Compounds,TON
+37189,0.3609188,Pyrene,LB
+37189,824.3086,Xylenes (Mixed Isomers),LB
+37189,0.06343722,Benzo[k]Fluoranthene,LB
+37189,81.03994,Formaldehyde,LB
+37189,342.1902,"2,2,4-Trimethylpentane",LB
+37181,18.75598,Pyrene,LB
+37181,9.780796,"Benzo[g,h,i,]Perylene",LB
+37181,16.433756,Fluoranthene,LB
+37181,3.698038,Benzo[a]Pyrene,LB
+37181,2.024469,Organic Carbon portion of PM2.5-PRI,TON
+37023,3.24592e-05,"Dibenzo[a,h]Anthracene",LB
+37023,0.01482675,Phenanthrene,LB
+37023,0.141242,Naphthalene,LB
+37023,0.0003357388,Elemental Carbon portion of PM2.5-PRI,TON
+37023,3.964125e-06,Nitrate portion of PM2.5-PRI,TON
+37095,0.006164574,Anthracene,LB
+37095,0.0019320352,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.0017397448,Chrysene,LB
+37095,0.3763028,Naphthalene,LB
+37093,0.2407996,Styrene,LB
+37093,1.4232404,Acrolein,LB
+37093,5.280974e-06,Chromium (VI),LB
+37093,0.0284182,Chrysene,LB
+37093,1.999776,Naphthalene,LB
+37093,0.006091919,Ammonia,TON
+37093,0.0002625208,Nitrate portion of PM2.5-PRI,TON
+37093,0.7160543,Nitrogen Oxides,TON
+37093,0.0493983,PM2.5 Primary (Filt + Cond),TON
+37093,0.002245395,Sulfate Portion of PM2.5-PRI,TON
+37087,0.4556128,"Benzo[g,h,i,]Perylene",LB
+37087,0.171134,Benzo[a]Pyrene,LB
+37087,0.003927322,"Dibenzo[a,h]Anthracene",LB
+37087,0.11784044,Benz[a]Anthracene,LB
+37087,0.2541745,PM10 Primary (Filt + Cond),TON
+37085,0.02094326,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.015346834,Benzo[k]Fluoranthene,LB
+37085,17.029466,Formaldehyde,LB
+37085,0.02814752,Manganese,LB
+37085,2.745544,Naphthalene,LB
+37085,0.1381178,PM10 Primary (Filt + Cond),TON
+37085,0.793698,Volatile Organic Compounds,TON
+37077,0.4948148,Anthracene,LB
+37077,0.0007240464,"Dibenzo[a,h]Anthracene",LB
+37077,4.851166,"2,2,4-Trimethylpentane",LB
+37077,0.02858678,Nickel,LB
+37077,0.2133764,PM10-Primary from certain diesel engines,TON
+37077,0.003956252,Nitrous Oxide,TON
+37077,0.2619897,PM10 Primary (Filt + Cond),TON
+37077,0.003214282,Benz[a]Anthracene,LB
+37077,7.989244,Benzene,LB
+37077,0.001976104,Nitrous Oxide,TON
+37077,0.002615622,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.1605138,Volatile Organic Compounds,TON
+37077,0.003347392,Benzo[k]Fluoranthene,LB
+37069,0.5421004,"Benzo[g,h,i,]Perylene",LB
+37069,0.1686367,Chrysene,LB
+37069,0.139434,Manganese,LB
+37069,0.666785,Acenaphthene,LB
+37069,0.411482,Methane,TON
+37069,0.05735597,Elemental Carbon portion of PM2.5-PRI,TON
+37069,15.87624,Nitrogen Oxides,TON
+37069,0.7019331,PM10 Primary (Filt + Cond),TON
+37069,0.07746292,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,3397.228,Carbon Dioxide,TON
+37045,0.03118362,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.03061602,Nitrous Oxide,TON
+37045,18.06557,Volatile Organic Compounds,TON
+37045,584.8114,Ethyl Benzene,LB
+37037,1.110724,Elemental Carbon portion of PM2.5-PRI,TON
+37037,39.68118,Nitrogen Oxides,TON
+37037,2.240994,Volatile Organic Compounds,TON
+37037,1.3942496,Anthracene,LB
+37031,0.015251722,"Benzo[g,h,i,]Perylene",LB
+37031,406.6992,Formaldehyde,LB
+37031,11.13586,"2,2,4-Trimethylpentane",LB
+37031,0.011373254,Chromium (VI),LB
+37031,3.951784,Benzo[b]Fluoranthene,LB
+37031,4.889082,Benzo[a]Pyrene,LB
+37031,0.11132806,"Dibenzo[a,h]Anthracene",LB
+37031,234873.8,Carbon Dioxide,TON
+37031,0.01733767,Nitrate portion of PM2.5-PRI,TON
+37031,2.735754,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,385.2912,Styrene,LB
+37027,0.9672438,Propionaldehyde,LB
+37027,0.04983492,Benz[a]Anthracene,LB
+37027,1.7964874,Benzene,LB
+37027,0.0008221403,Nitrous Oxide,TON
+37027,1.692761,Nitrogen Oxides,TON
+37027,0.09035996,PM2.5 Primary (Filt + Cond),TON
+37169,325.4086,Benzene,LB
+37169,17.075816,Naphthalene,LB
+37169,0.02935199,Elemental Carbon portion of PM2.5-PRI,TON
+37169,48.60286,"1,3-Butadiene",LB
+37153,1707.521,Toluene,LB
+37153,0.05620464,Benzo[k]Fluoranthene,LB
+37153,0.07642098,Benzo[a]Pyrene,LB
+37151,0.02692142,Nickel,LB
+37151,135.2778,Acetaldehyde,LB
+37151,11.243984,Acrolein,LB
+37151,0.501449,Anthracene,LB
+37143,8.883368e-05,Fluoranthene,LB
+37143,0.0001280268,Arsenic,LB
+37143,0.00012376222,Fluorene,LB
+37143,0.2211931,Carbon Monoxide,TON
+37141,0.19232516,Styrene,LB
+37141,0.3221564,Hexane,LB
+37141,0.0006453442,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.07395368,Acenaphthylene,LB
+37141,0.02898496,Benz[a]Anthracene,LB
+37141,0.0329667,PM10-Primary from certain diesel engines,TON
+37141,0.004873248,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.0009793695,Sulfur Dioxide,TON
+37139,0.12208916,Acrolein,LB
+37139,5.123352e-05,Chrysene,LB
+37139,0.00010766122,Acenaphthene,LB
+37139,0.0005860184,Naphthalene,LB
+37139,0.0003166679,Sulfur Dioxide,TON
+37139,4.461672e-05,Sulfate Portion of PM2.5-PRI,TON
+37135,0.14402328,Acenaphthylene,LB
+37135,25.30506,Formaldehyde,LB
+37135,0.18322366,Fluorene,LB
+37135,0.0243425,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.001769219,Sulfate Portion of PM2.5-PRI,TON
+37135,2.026242,Acrolein,LB
+37135,0.2583964,Pyrene,LB
+37127,0.01236818,Arsenic,LB
+37127,0.4884546,Fluorene,LB
+37127,0.004527133,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.0004277996,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,0.363327,Fluoranthene,LB
+37127,0.05510072,Benz[a]Anthracene,LB
+37119,19.6043,PM25-Primary from certain diesel engines,TON
+37119,3.895092,Ammonia,TON
+37119,525.308,Nitrogen Oxides,TON
+37119,22.86911,PM2.5 Primary (Filt + Cond),TON
+37119,2.298804,Sulfur Dioxide,TON
+37119,41.40812,Pyrene,LB
+37115,144.07092,Benzene,LB
+37115,0.007437772,Manganese,LB
+37115,0.004978476,Nickel,LB
+37115,26.92205,Carbon Monoxide,TON
+37115,0.000126863,Nitrate portion of PM2.5-PRI,TON
+37115,0.17740098,Pyrene,LB
+37115,2.35289,Styrene,LB
+37097,0.002107002,"Benzo[g,h,i,]Perylene",LB
+37097,0.002638152,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.0014441934,Benzo[k]Fluoranthene,LB
+37097,52.69418,Formaldehyde,LB
+37097,3.884954,Acrolein,LB
+37097,0.11305214,Benz[a]Anthracene,LB
+37103,0.00453135,Benzo[b]Fluoranthene,LB
+37103,0.0082082,Manganese,LB
+37103,5.941064e-06,Mercury,LB
+37103,0.0012421988,Arsenic,LB
+37103,17.200374,Acetaldehyde,LB
+37103,0.004768051,Methane,TON
+37103,0.1210087,PM10 Primary (Filt + Cond),TON
+37095,1.6780796,Ethyl Benzene,LB
+37095,0.6613826,Styrene,LB
+37095,3.877552,Acrolein,LB
+37095,0.1660143,Anthracene,LB
+37095,0.2571108,Acenaphthylene,LB
+37095,0.11280032,Benz[a]Anthracene,LB
+37095,0.1686934,PM10 Primary (Filt + Cond),TON
+37095,0.02141054,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,4.48626e-06,Nitrate portion of PM2.5-PRI,TON
+37079,0.004487594,PM10 Primary (Filt + Cond),TON
+37079,5.394308,Xylenes (Mixed Isomers),LB
+37079,1.48808e-06,Chromium (VI),LB
+37079,0.000803228,Chrysene,LB
+37079,1.45579,Ethyl Benzene,LB
+37073,5.1671,Propionaldehyde,LB
+37073,0.00444111,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.652999,Fluoranthene,LB
+37073,5778.413,Carbon Dioxide,TON
+37073,0.09709728,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.4968555,PM2.5 Primary (Filt + Cond),TON
+37073,1.3312634,Phenanthrene,LB
+37073,12.087926,Naphthalene,LB
+37073,0.06281747,Methane,TON
+37073,0.2857653,PM10-Primary from certain diesel engines,TON
+37073,0.01086455,Sulfate Portion of PM2.5-PRI,TON
+37073,8.625166,Acrolein,LB
+37073,8.626078,Xylenes (Mixed Isomers),LB
+37073,3.042582e-05,Chromium (VI),LB
+37073,0.15467032,Chrysene,LB
+37085,5.7008,Ethyl Benzene,LB
+37085,0.3819376,Anthracene,LB
+37085,15.445318,Xylenes (Mixed Isomers),LB
+37085,0.6009996,Fluoranthene,LB
+37085,15.388626,Benzene,LB
+37085,0.02625912,Ammonia,TON
+37085,4.155452e-05,Mercury,LB
+37085,0.4153872,Volatile Organic Compounds,TON
+37085,0.00556414,Benz[a]Anthracene,LB
+37085,0.005706064,Benzo[k]Fluoranthene,LB
+37083,139.42342,Propionaldehyde,LB
+37083,0.09555414,Mercury,LB
+37083,0.9351302,Elemental Carbon portion of PM2.5-PRI,TON
+37083,4.923554,PM2.5 Primary (Filt + Cond),TON
+37079,1.1915376,Ethyl Benzene,LB
+37079,0.00070949,Benzo[k]Fluoranthene,LB
+37079,0.0007045458,Benz[a]Anthracene,LB
+37079,9.523748e-06,Mercury,LB
+37079,0.120417,Naphthalene,LB
+37079,0.001209026,Methane,TON
+37079,50.68584,Carbon Dioxide,TON
+37079,0.001259408,Nitrous Oxide,TON
+37079,0.03479504,Volatile Organic Compounds,TON
+37077,0.0207082,Manganese,LB
+37077,0.4254408,Fluoranthene,LB
+37077,1975.041,Carbon Dioxide,TON
+37077,0.01651841,Nitrous Oxide,TON
+37053,3.531352,Propionaldehyde,LB
+37053,0.002401627,Nitrous Oxide,TON
+37061,4.347196,Fluoranthene,LB
+37061,697.693,Formaldehyde,LB
+37061,0.2313178,Manganese,LB
+37061,0.2620223,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,3.7651,Volatile Organic Compounds,TON
+37061,32.41076,Hexane,LB
+37061,0.0003661236,Chromium (VI),LB
+37061,0.006893146,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.02705526,Benzo[b]Fluoranthene,LB
+37061,0.06202512,Arsenic,LB
+37061,8650.626,Carbon Dioxide,TON
+37061,0.9413963,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.06484613,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,11.56558,Benzo[b]Fluoranthene,LB
+37051,12338.618,Formaldehyde,LB
+37051,29515.68,"2,2,4-Trimethylpentane",LB
+37051,11.589998,Benz[a]Anthracene,LB
+37039,0.730844,Acenaphthene,LB
+37039,2.944086,Phenanthrene,LB
+37039,0.1247696,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,1.2275268,Acenaphthylene,LB
+37039,0.138147,Benzo[a]Pyrene,LB
+37039,0.005803632,"Dibenzo[a,h]Anthracene",LB
+37039,8.398366,"2,2,4-Trimethylpentane",LB
+37039,9.602956,Ethyl Benzene,LB
+37029,0.04889384,Styrene,LB
+37029,0.407458,Propionaldehyde,LB
+37029,0.008280858,"Benzo[g,h,i,]Perylene",LB
+37029,3.445394,Formaldehyde,LB
+37029,0.003424066,Fluorene,LB
+37029,0.08811094,Naphthalene,LB
+37029,2.200538,Carbon Monoxide,TON
+37017,0.009314006,Benzo[a]Pyrene,LB
+37017,0.00724682,Arsenic,LB
+37017,70.01204,Acetaldehyde,LB
+37017,0.03227158,Phenanthrene,LB
+37017,0.00222886,Elemental Carbon portion of PM2.5-PRI,TON
+37017,3.133231e-05,Nitrate portion of PM2.5-PRI,TON
+37017,0.7443279,Nitrogen Oxides,TON
+37017,1.384114,Propionaldehyde,LB
+37017,0.3692605,Volatile Organic Compounds,TON
+37177,0.0006320048,"Benzo[g,h,i,]Perylene",LB
+37177,1.0163192,Acetaldehyde,LB
+37177,5.731891e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.001248762,Ammonia,TON
+37177,0.0005824747,Sulfur Dioxide,TON
+37139,0.006719228,Methane,TON
+37139,0.06367817,Volatile Organic Compounds,TON
+37139,2.174276,Toluene,LB
+37139,0.0013483644,Fluoranthene,LB
+37139,0.0007602136,Benzo[k]Fluoranthene,LB
+37129,0.001699268,Anthracene,LB
+37129,1.7877578e-05,Chromium (VI),LB
+37129,0.008384594,Acenaphthylene,LB
+37129,0.0018086016,Acenaphthene,LB
+37129,0.003089433,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.04184675,PM10 Primary (Filt + Cond),TON
+37103,0.009555442,Styrene,LB
+37103,1.995988e-05,"Dibenzo[a,h]Anthracene",LB
+37103,5.406586e-05,Mercury,LB
+37103,0.0003303436,Acenaphthene,LB
+37103,0.0019055806,Phenanthrene,LB
+37103,72.60876,Carbon Dioxide,TON
+37103,0.004624897,Ammonia,TON
+37103,0.001354882,PM2.5 Primary (Filt + Cond),TON
+37103,0.0004928711,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,4.034248e-05,Sulfate Portion of PM2.5-PRI,TON
+37103,0.02595288,Volatile Organic Compounds,TON
+37087,0.0745762,Ammonia,TON
+37087,1.228554,Nitrogen Oxides,TON
+37087,0.258296,Styrene,LB
+37087,2.152426,Propionaldehyde,LB
+37087,0.009516574,Chrysene,LB
+37087,0.0242662,Benzo[a]Pyrene,LB
+37087,0.01086751,Benz[a]Anthracene,LB
+37087,0.0007482614,Mercury,LB
+37087,11.74768,Carbon Monoxide,TON
+37175,17.72776,Nitrogen Oxides,TON
+37175,0.11184524,Benzo[a]Pyrene,LB
+37175,0.08781314,Manganese,LB
+37175,0.5206712,Acenaphthene,LB
+37171,0.015802958,"Dibenzo[a,h]Anthracene",LB
+37171,1.2826024,Benz[a]Anthracene,LB
+37171,0.18919934,Manganese,LB
+37171,17.07813,Carbon Monoxide,TON
+37171,0.00677025,Nitrate portion of PM2.5-PRI,TON
+37171,2.382476,PM2.5 Primary (Filt + Cond),TON
+37171,0.01124637,Nitrous Oxide,TON
+37171,11.6982,Nitrogen Oxides,TON
+37171,37.31998,Xylenes (Mixed Isomers),LB
+37171,0.00014998232,Chromium (VI),LB
+37171,0.01666164,Benzo[b]Fluoranthene,LB
+37171,0.18631732,Chrysene,LB
+37159,0.03816934,"1,3-Butadiene",LB
+37159,1.385831,Carbon Monoxide,TON
+37159,0.00321965,Organic Carbon portion of PM2.5-PRI,TON
+37155,1.9402242,Acrolein,LB
+37155,0.08643316,Anthracene,LB
+37155,0.0048126,Benzo[b]Fluoranthene,LB
+37155,0.5935554,"2,2,4-Trimethylpentane",LB
+37155,0.0011175458,Arsenic,LB
+37155,260.235,Carbon Dioxide,TON
+37155,0.7258836,Styrene,LB
+37155,0.17740746,Anthracene,LB
+37155,0.489775,Pyrene,LB
+37155,0.357759,Fluorene,LB
+37155,0.0005909259,Nitrate portion of PM2.5-PRI,TON
+37009,0.210166,"2,2,4-Trimethylpentane",LB
+37009,0.014916762,Naphthalene,LB
+37009,3.930288e-07,Nitrate portion of PM2.5-PRI,TON
+37009,0.00672632,Styrene,LB
+37009,0.03687006,"1,3-Butadiene",LB
+37009,0.9780378,Toluene,LB
+37001,203.9712,Toluene,LB
+37001,9.378074,Anthracene,LB
+37001,313.4586,Benzene,LB
+37001,0.4004116,Manganese,LB
+37001,0.1155494,Arsenic,LB
+37001,1436.9846,Acetaldehyde,LB
+37001,363.8028,Naphthalene,LB
+37001,17405.99,Carbon Dioxide,TON
+37001,1.960978,Elemental Carbon portion of PM2.5-PRI,TON
+37071,4.686984e-05,Chromium (VI),LB
+37071,0.004267652,Benzo[k]Fluoranthene,LB
+37071,0.000469886,Mercury,LB
+37071,0.16661538,Naphthalene,LB
+37071,8.887802,Toluene,LB
+37005,0.010456298,"1,3-Butadiene",LB
+37005,0.00011597974,Benzo[a]Pyrene,LB
+37005,5.603392e-05,Benz[a]Anthracene,LB
+37005,0.0003347145,Ammonia,TON
+37005,4.478681e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.0003360472,Fluoranthene,LB
+37117,0.4547048,Toluene,LB
+37117,0.000429986,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,7.562866e-05,Chrysene,LB
+37095,0.0001232591,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.007401624,Volatile Organic Compounds,TON
+37095,0.02280996,Propionaldehyde,LB
+37095,0.000182003,Pyrene,LB
+37095,1.098296e-06,Chromium (VI),LB
+37013,0.0002362358,Chromium (VI),LB
+37013,6.44247,Acenaphthylene,LB
+37021,0.5392898,Styrene,LB
+37021,19.262118,Hexane,LB
+37021,0.03606274,Fluoranthene,LB
+37021,0.0007738353,Sulfate Portion of PM2.5-PRI,TON
+37011,0.007005516,Arsenic,LB
+37011,893.3873,Carbon Dioxide,TON
+37011,0.03134561,Ammonia,TON
+37011,0.000257385,Nitrate portion of PM2.5-PRI,TON
+37001,3.471116,"1,3-Butadiene",LB
+37001,0.4978488,Acrolein,LB
+37001,132.50278,Toluene,LB
+37001,0.012645522,Benzo[k]Fluoranthene,LB
+37001,28.53336,Benzene,LB
+37001,0.0270156,Acenaphthene,LB
+37001,0.05472062,Fluorene,LB
+37001,1.4041752,Naphthalene,LB
+37001,250.5399,Carbon Dioxide,TON
+37001,0.003460761,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.008439156,Nitrous Oxide,TON
+37001,0.01137516,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.02175033,PM2.5 Primary (Filt + Cond),TON
+37051,3.078522,"1,3-Butadiene",LB
+37051,0.12314386,Manganese,LB
+37051,0.03617114,Nickel,LB
+37051,0.02610714,Acenaphthene,LB
+37051,0.5123295,PM10 Primary (Filt + Cond),TON
+37047,0.005562944,"Benzo[g,h,i,]Perylene",LB
+37047,0.0010822834,Benzo[k]Fluoranthene,LB
+37047,0.002061858,Benzo[a]Pyrene,LB
+37047,2.365264,Benzene,LB
+37047,0.0011921618,Nickel,LB
+37047,0.004631398,Phenanthrene,LB
+37047,0.001877077,Nitrous Oxide,TON
+37047,0.05518192,Volatile Organic Compounds,TON
+37023,2.53257,Xylenes (Mixed Isomers),LB
+37023,0.002889634,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.002850738,Benzo[a]Pyrene,LB
+37023,6.63295e-05,"Dibenzo[a,h]Anthracene",LB
+37023,0.005284948,Manganese,LB
+37023,0.009578386,Methane,TON
+37023,1.741837,Carbon Monoxide,TON
+37023,0.02144425,PM10 Primary (Filt + Cond),TON
+37159,0.005781624,Benzo[a]Pyrene,LB
+37159,0.002598246,Benz[a]Anthracene,LB
+37159,0.0003219302,Mercury,LB
+37159,0.06349206,Styrene,LB
+37159,460.229,Carbon Dioxide,TON
+37111,0.8296,"1,3-Butadiene",LB
+37111,0.771187,Acrolein,LB
+37111,0.003538499,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.01234457,Nitrous Oxide,TON
+37111,5.318456e-05,Nitrate portion of PM2.5-PRI,TON
+37111,0.06146343,PM10 Primary (Filt + Cond),TON
+37111,0.006892882,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.0006021736,Sulfate Portion of PM2.5-PRI,TON
+37017,0.00012304844,Anthracene,LB
+37017,0.4262928,Methane,TON
+37017,0.009468804,Nitrous Oxide,TON
+37017,0.001785932,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.01067766,PM10 Primary (Filt + Cond),TON
+37017,0.00519271,PM2.5 Primary (Filt + Cond),TON
+37017,0.002886374,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.0004218674,Sulfur Dioxide,TON
+37007,0.3156498,Chrysene,LB
+37007,18.56567,Benzene,LB
+37007,0.982259,PM10-Primary from certain diesel engines,TON
+37007,19.85331,Nitrogen Oxides,TON
+37007,0.2322187,Organic Carbon portion of PM2.5-PRI,TON
+37007,1.159597,Volatile Organic Compounds,TON
+37005,0.8642946,Styrene,LB
+37005,0.002216376,"Benzo[g,h,i,]Perylene",LB
+37005,0.03384454,Benzo[a]Pyrene,LB
+37005,0.11852808,Benz[a]Anthracene,LB
+37005,0.01154052,Nickel,LB
+37005,0.0056034,Arsenic,LB
+37005,0.200982,Acenaphthene,LB
+37001,33.1,Fluorene,LB
+37001,12.19434,PM2.5 Primary (Filt + Cond),TON
+37001,11725.03,Ethyl Benzene,LB
+37001,338.1844,Acrolein,LB
+37001,17842.712,Hexane,LB
+37001,316.0858,Propionaldehyde,LB
+37001,24.386,Fluoranthene,LB
+37001,16.340928,Acenaphthene,LB
+37061,2.956758,Ethyl Benzene,LB
+37043,0.0003661499,PM2.5 Primary (Filt + Cond),TON
+37043,9.958482e-06,Sulfate Portion of PM2.5-PRI,TON
+37043,0.379156,Toluene,LB
+37043,0.0002500048,Fluoranthene,LB
+37043,0.00013887976,Benzo[k]Fluoranthene,LB
+37043,0.000297249,Manganese,LB
+37017,1.757422e-05,Chromium (VI),LB
+37017,0.503968,Fluoranthene,LB
+37015,0.7049068,Acrolein,LB
+37015,0.03130816,Anthracene,LB
+37015,0.2941392,Carbon Monoxide,TON
+37011,0.00119787,Sulfur Dioxide,TON
+37011,0.00142454,Sulfate Portion of PM2.5-PRI,TON
+37011,0.4781538,Ethyl Benzene,LB
+37011,0.10805432,Fluoranthene,LB
+37011,0.000443008,"Dibenzo[a,h]Anthracene",LB
+37011,0.3774974,"2,2,4-Trimethylpentane",LB
+37011,0.002108898,Nickel,LB
+37011,0.04396608,Acenaphthene,LB
+37011,0.0004261927,Nitrous Oxide,TON
+37199,0.000234208,Anthracene,LB
+37199,2.047082e-06,Chromium (VI),LB
+37199,9.507256e-06,"Dibenzo[a,h]Anthracene",LB
+37199,0.002027915,Methane,TON
+37199,0.01849776,Nitrogen Oxides,TON
+37193,2.208174e-05,Mercury,LB
+37193,0.06596429,Methane,TON
+37193,1018.305,Carbon Dioxide,TON
+37193,0.1977459,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.2014814,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.008949039,Sulfur Dioxide,TON
+37193,7539.596,Benzene,LB
+37193,2.13694,Manganese,LB
+37193,0.8840958,Nickel,LB
+37193,1445.677,Carbon Monoxide,TON
+37193,4.489914,PM2.5 Primary (Filt + Cond),TON
+37193,1.304961,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,157.5542,Volatile Organic Compounds,TON
+37193,2.534616,Benzo[k]Fluoranthene,LB
+37193,2.35041,Chrysene,LB
+37191,3.006726,Benzene,LB
+37191,35.70756,Hexane,LB
+37191,2.65373,Anthracene,LB
+37191,6.941832,Pyrene,LB
+37191,0.434083,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,2.731988e-08,Chromium (VI),LB
+37181,9.83023e-05,Chrysene,LB
+37181,0.4924351,Methane,TON
+37199,0.3114548,Acrolein,LB
+37199,0.00272105,Anthracene,LB
+37199,0.004442186,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.00243169,Benzo[k]Fluoranthene,LB
+37199,0.001749118,Nickel,LB
+37199,0.016879204,Phenanthrene,LB
+37199,246.0406,Carbon Dioxide,TON
+37199,0.007484796,Sulfur Dioxide,TON
+37197,0.06066105,Methane,TON
+37197,7.764748,Carbon Monoxide,TON
+37197,0.0007128086,Nitrous Oxide,TON
+37197,0.03858185,PM10 Primary (Filt + Cond),TON
+37197,0.288373,Fluoranthene,LB
+37197,0.04315938,Benz[a]Anthracene,LB
+37197,3.667406e-05,Mercury,LB
+37197,0.2251934,Acenaphthene,LB
+37195,23.07946,"1,3-Butadiene",LB
+37195,20.61696,Hexane,LB
+37195,0.5657402,Methane,TON
+37195,3.059877,PM10 Primary (Filt + Cond),TON
+37195,4.330962,Volatile Organic Compounds,TON
+37069,0.3755688,"1,3-Butadiene",LB
+37069,0.1225885,Pyrene,LB
+37069,0.002762502,Benzo[b]Fluoranthene,LB
+37069,0.0378578,Acenaphthene,LB
+37069,0.03639532,Elemental Carbon portion of PM2.5-PRI,TON
+37067,4.389059,PM25-Primary from certain diesel engines,TON
+37067,0.009910998,Nitrate portion of PM2.5-PRI,TON
+37067,161.70198,Ethyl Benzene,LB
+37067,162.2097,"1,3-Butadiene",LB
+37067,313.666,Toluene,LB
+37067,0.021159,Benzo[k]Fluoranthene,LB
+37067,43.86806,Phenanthrene,LB
+37049,0.5914806,Ammonia,TON
+37049,24.09206,"1,3-Butadiene",LB
+37049,3.973756,Acenaphthylene,LB
+37049,1255.7924,Formaldehyde,LB
+37049,0.0004977188,Mercury,LB
+37049,10.238862,Phenanthrene,LB
+37049,117.79144,Naphthalene,LB
+37037,1.5015382,Acenaphthene,LB
+37037,17.13832,Carbon Monoxide,TON
+37037,0.2041499,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.1614287,Sulfate Portion of PM2.5-PRI,TON
+37037,2.522584,Acenaphthylene,LB
+37035,0.004250169,Sulfate Portion of PM2.5-PRI,TON
+37035,5.493955,Volatile Organic Compounds,TON
+37035,0.011079458,Nickel,LB
+37035,0.2374573,Methane,TON
+37035,0.3935776,PM10 Primary (Filt + Cond),TON
+37035,0.0886229,Chrysene,LB
+37035,5.473064,Propionaldehyde,LB
+37035,685.0848,Xylenes (Mixed Isomers),LB
+37035,6151.042,"1,3-Butadiene",LB
+37035,809.6294,Acrolein,LB
+37035,1293.017,Nitrogen Oxides,TON
+37035,9.115406,Organic Carbon portion of PM2.5-PRI,TON
+37035,19.27498,PM2.5 Primary (Filt + Cond),TON
+37035,16.16071,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,3.77988,Elemental Carbon portion of PM2.5-PRI,TON
+37033,23.04696,Acrolein,LB
+37033,35.97464,Toluene,LB
+37033,1.7126894,Pyrene,LB
+37033,0.004404902,Benzo[k]Fluoranthene,LB
+37033,10.809972,"2,2,4-Trimethylpentane",LB
+37023,1.4165974e-06,Benzo[a]Pyrene,LB
+37023,0.0008743036,"2,2,4-Trimethylpentane",LB
+37023,0.00015449362,"1,3-Butadiene",LB
+37023,2.965104e-05,Propionaldehyde,LB
+37023,8.316952e-07,Benzo[b]Fluoranthene,LB
+37023,6.957764e-07,Chrysene,LB
+37023,0.3950774,Benzo[a]Pyrene,LB
+37023,0.2909112,Benz[a]Anthracene,LB
+37023,14027.24,Carbon Dioxide,TON
+37023,0.01270978,Sulfate Portion of PM2.5-PRI,TON
+37023,1.0489548,"Benzo[g,h,i,]Perylene",LB
+37159,0.007680006,Chrysene,LB
+37159,0.05356854,Fluorene,LB
+37145,3.383314e-05,"Dibenzo[a,h]Anthracene",LB
+37145,0.006570466,Fluoranthene,LB
+37145,0.003677804,Methane,TON
+37143,0.0005438592,Benzo[b]Fluoranthene,LB
+37143,0.006154296,Benz[a]Anthracene,LB
+37143,0.2541294,Benzene,LB
+37143,0.002306474,Elemental Carbon portion of PM2.5-PRI,TON
+37143,3.189117e-05,Nitrate portion of PM2.5-PRI,TON
+37143,0.09808978,Nitrogen Oxides,TON
+37139,4.778894e-08,Arsenic,LB
+37139,3.202453e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37139,2.480924e-06,PM10 Primary (Filt + Cond),TON
+37139,3.668352e-07,Sulfur Dioxide,TON
+37139,3.535111e-08,Sulfate Portion of PM2.5-PRI,TON
+37127,0.882212,Hexane,LB
+37127,1.6852212,Propionaldehyde,LB
+37127,0.0018343332,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,3.14702,Benzene,LB
+37127,0.1580239,PM25-Primary from certain diesel engines,TON
+37127,0.1024771,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.0004255753,Nitrate portion of PM2.5-PRI,TON
+37127,0.03669766,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.008921832,Sulfur Dioxide,TON
+37125,11.561954,Hexane,LB
+37125,1.1610124,Benz[a]Anthracene,LB
+37125,0.06308904,Nickel,LB
+37125,15.21484,Carbon Monoxide,TON
+37125,7662.457,Carbon Dioxide,TON
+37125,14.63744,"1,3-Butadiene",LB
+37125,0.2591048,Acrolein,LB
+37125,0.009862106,"Benzo[g,h,i,]Perylene",LB
+37125,8.510646e-05,"Dibenzo[a,h]Anthracene",LB
+37125,4.853244e-05,Mercury,LB
+37125,0.0006051338,Nickel,LB
+37125,0.02460084,Fluorene,LB
+37125,6.029229,Carbon Monoxide,TON
+37125,0.007739979,Ammonia,TON
+37125,0.0001244747,Sulfate Portion of PM2.5-PRI,TON
+37123,8.030616,Ethyl Benzene,LB
+37113,11.468602,Formaldehyde,LB
+37113,1.0535024,Benzene,LB
+37113,0.00580912,Manganese,LB
+37113,0.377642,Ethyl Benzene,LB
+37113,0.3753329,Carbon Monoxide,TON
+37113,0.002153933,Sulfate Portion of PM2.5-PRI,TON
+37113,6.40555,Acrolein,LB
+37113,0.1860909,PM10-Primary from certain diesel engines,TON
+37113,0.4783813,Volatile Organic Compounds,TON
+37109,73.59898,Ethyl Benzene,LB
+37109,2.566896,Styrene,LB
+37109,3.943852e-05,Chromium (VI),LB
+37109,0.0299062,Benzo[k]Fluoranthene,LB
+37109,98.47904,"2,2,4-Trimethylpentane",LB
+37109,0.501151,Acetaldehyde,LB
+37109,0.001604,Methane,TON
+37109,0.04498785,Nitrogen Oxides,TON
+37109,0.000611789,Benzo[b]Fluoranthene,LB
+37109,1.2292692,"2,2,4-Trimethylpentane",LB
+37109,1.3312898e-05,Nickel,LB
+37109,0.0011145192,Arsenic,LB
+37109,0.009335875,Methane,TON
+37109,0.04961861,PM10 Primary (Filt + Cond),TON
+37109,0.004757346,Benzo[b]Fluoranthene,LB
+37109,0.08365692,Acenaphthylene,LB
+37097,6.572364e-05,Chromium (VI),LB
+37097,0.003702976,"Dibenzo[a,h]Anthracene",LB
+37097,0.008711706,Nitrous Oxide,TON
+37097,18.70609,Nitrogen Oxides,TON
+37099,0.0002287358,Benzo[k]Fluoranthene,LB
+37099,0.0015747332,Manganese,LB
+37099,0.09778852,Phenanthrene,LB
+37099,0.0576861,Fluorene,LB
+37099,0.8900868,Naphthalene,LB
+37099,0.01926932,PM10-Primary from certain diesel engines,TON
+37099,0.01831929,PM2.5 Primary (Filt + Cond),TON
+37099,0.2018756,Hexane,LB
+37097,7033.418,Hexane,LB
+37097,138.6724,Volatile Organic Compounds,TON
+37093,0.2429572,"Benzo[g,h,i,]Perylene",LB
+37093,0.07809272,Benzo[k]Fluoranthene,LB
+37093,0.02630183,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.1908915,Nitrous Oxide,TON
+37093,0.3406497,PM10 Primary (Filt + Cond),TON
+37083,0.04063308,"1,3-Butadiene",LB
+37083,1.2374304,Toluene,LB
+37083,0.3132494,Hexane,LB
+37083,0.0002922432,Benzo[b]Fluoranthene,LB
+37083,0.0002922432,Benzo[k]Fluoranthene,LB
+37083,0.00198043,Acenaphthylene,LB
+37083,3.515632e-05,Arsenic,LB
+37083,0.12327162,Acetaldehyde,LB
+37083,0.00239753,Phenanthrene,LB
+37083,0.0001330076,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,54.10944,Ethyl Benzene,LB
+37081,6.888194,Fluoranthene,LB
+37081,1650.8556,Formaldehyde,LB
+37081,1.2510166,Benz[a]Anthracene,LB
+37081,0.04590627,Nitrous Oxide,TON
+37081,1.832221,PM2.5 Primary (Filt + Cond),TON
+37081,8.970276,Volatile Organic Compounds,TON
+37077,0.01941916,Acetaldehyde,LB
+37077,5.903286e-05,Acenaphthene,LB
+37077,0.00011957784,Fluorene,LB
+37077,0.003068734,Naphthalene,LB
+37077,0.5033369,Carbon Dioxide,TON
+37077,1.352224e-07,Nitrate portion of PM2.5-PRI,TON
+37077,0.007768114,"1,3-Butadiene",LB
+37077,0.2020962,Toluene,LB
+37077,0.00012633202,"Benzo[g,h,i,]Perylene",LB
+37077,2.469612e-05,Chrysene,LB
+37077,4.28294e-06,Manganese,LB
+37075,2.493398e-05,Chromium (VI),LB
+37075,0.4021896,Fluorene,LB
+37075,0.2664375,PM10-Primary from certain diesel engines,TON
+37075,6.92161,Nitrogen Oxides,TON
+37075,0.2555575,PM2.5 Primary (Filt + Cond),TON
+37065,0.4130892,Ethyl Benzene,LB
+37065,1.511402,Xylenes (Mixed Isomers),LB
+37065,0.0004397566,Manganese,LB
+37065,0.0003087662,Nitrous Oxide,TON
+37057,0.11555942,Fluoranthene,LB
+37057,1.11996,Toluene,LB
+37057,0.3956254,Hexane,LB
+37057,0.80548,Propionaldehyde,LB
+37057,3.12551e-06,Chromium (VI),LB
+37057,0.3553687,Carbon Monoxide,TON
+37057,0.002757654,Ammonia,TON
+37057,0.7066343,Nitrogen Oxides,TON
+37057,0.0155762,Organic Carbon portion of PM2.5-PRI,TON
+37055,10.481954,"1,3-Butadiene",LB
+37055,38.4337,Toluene,LB
+37055,0.010271458,Benzo[k]Fluoranthene,LB
+37055,0.464494,Chrysene,LB
+37055,0.2426898,Benzo[a]Pyrene,LB
+37055,1.743127,PM25-Primary from certain diesel engines,TON
+37055,0.004377306,Nitrate portion of PM2.5-PRI,TON
+37055,0.2629785,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,2.084372,Volatile Organic Compounds,TON
+37049,4008.752,"2,2,4-Trimethylpentane",LB
+37041,9.116618e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,4.899806e-05,Benzo[k]Fluoranthene,LB
+37041,6.791156e-05,Arsenic,LB
+37041,0.1272148,Xylenes (Mixed Isomers),LB
+37041,0.013323058,Fluorene,LB
+37041,2.141839e-05,Nitrate portion of PM2.5-PRI,TON
+37029,2060.1,Hexane,LB
+37029,6014.708,Xylenes (Mixed Isomers),LB
+37029,2.342736,"Benzo[g,h,i,]Perylene",LB
+37029,0.8801954,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.2133852,Elemental Carbon portion of PM2.5-PRI,TON
+37107,2.385632,Hexane,LB
+37101,0.00211427,Fluoranthene,LB
+37101,1.790144,Carbon Monoxide,TON
+37101,0.002112958,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.004763884,PM2.5 Primary (Filt + Cond),TON
+37101,0.001678229,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.007246688,Sulfur Dioxide,TON
+37101,0.0001352331,Sulfate Portion of PM2.5-PRI,TON
+37093,0.14887542,"1,3-Butadiene",LB
+37093,0.10761838,Acrolein,LB
+37093,2.164522,Xylenes (Mixed Isomers),LB
+37093,0.0008352298,Benzo[b]Fluoranthene,LB
+37093,11.515762,Acetaldehyde,LB
+37093,0.00539506,Phenanthrene,LB
+37093,1.144266,Carbon Monoxide,TON
+37093,0.07705144,Volatile Organic Compounds,TON
+37177,0.009711182,"1,3-Butadiene",LB
+37177,3.44239e-08,Chromium (VI),LB
+37177,0.0260608,Formaldehyde,LB
+37177,2.604838e-05,Benz[a]Anthracene,LB
+37177,6.598198e-06,Arsenic,LB
+37177,0.0001759816,PM10 Primary (Filt + Cond),TON
+37177,5.266985e-05,PM2.5 Primary (Filt + Cond),TON
+37175,2.105636,"1,3-Butadiene",LB
+37175,1.5015686,Hexane,LB
+37175,3.407144,Propionaldehyde,LB
+37175,0.09997052,Benz[a]Anthracene,LB
+37175,466.2244,Carbon Dioxide,TON
+37175,0.004106342,Sulfur Dioxide,TON
+37167,37.72936,Xylenes (Mixed Isomers),LB
+37167,0.14204344,Manganese,LB
+37167,0.0521026,Nickel,LB
+37167,0.9332342,PM25-Primary from certain diesel engines,TON
+37165,1.0301866,Arsenic,LB
+37165,0.006060693,Nitrate portion of PM2.5-PRI,TON
+37165,69.00457,Volatile Organic Compounds,TON
+37165,2298.436,Ethyl Benzene,LB
+37165,69.97548,Acrolein,LB
+37165,8518.29,Xylenes (Mixed Isomers),LB
+37165,1.2039858,Benzo[b]Fluoranthene,LB
+37165,4.926674,Fluoranthene,LB
+37165,1.1056108,Chrysene,LB
+37165,1.8121726,Benzo[a]Pyrene,LB
+37165,1.1626588,Benz[a]Anthracene,LB
+37163,2833.224,"1,3-Butadiene",LB
+37163,380.4632,Acrolein,LB
+37163,15242.274,Hexane,LB
+37163,6.472896,Benzo[a]Pyrene,LB
+37163,2.171544,Arsenic,LB
+37163,3.579326,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.8781574,Styrene,LB
+37145,3.453174,Toluene,LB
+37145,3.190122,Propionaldehyde,LB
+37145,0.002259336,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,56.3833,Formaldehyde,LB
+37145,0.02976928,Benzo[a]Pyrene,LB
+37145,1.354496,"2,2,4-Trimethylpentane",LB
+37145,0.09967542,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.001518132,Nitrous Oxide,TON
+37145,0.02111539,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.4950784,Benz[a]Anthracene,LB
+37139,0.81751,Acenaphthene,LB
+37139,1.786696,Fluorene,LB
+37139,0.1171188,Sulfate Portion of PM2.5-PRI,TON
+37139,0.00012965336,Chromium (VI),LB
+37139,10.450002,Propionaldehyde,LB
+37139,19.383194,Xylenes (Mixed Isomers),LB
+37139,225.6664,Formaldehyde,LB
+37139,0.8680882,PM25-Primary from certain diesel engines,TON
+37131,0.0466201,Benzo[b]Fluoranthene,LB
+37131,0.15906412,Manganese,LB
+37131,1.58096,PM10-Primary from certain diesel engines,TON
+37131,0.2773759,Ammonia,TON
+37131,0.1494518,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,34.63994,Styrene,LB
+37127,0.001665485,Chromium (VI),LB
+37127,0.2081856,Nickel,LB
+37127,45.72957,Nitrogen Oxides,TON
+37123,67.99996,Naphthalene,LB
+37123,0.0001823246,Chromium (VI),LB
+37123,0.011243122,"Benzo[g,h,i,]Perylene",LB
+37123,744.8548,Formaldehyde,LB
+37111,0.2727838,Acrolein,LB
+37111,0.0004118126,Fluoranthene,LB
+37111,107.6536,Carbon Dioxide,TON
+37007,0.1208889,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.02439436,Sulfur Dioxide,TON
+37007,19.47653,Xylenes (Mixed Isomers),LB
+37007,3.095268,Phenanthrene,LB
+37015,252.2904,Hexane,LB
+37015,0.0002745424,Chromium (VI),LB
+37015,17.693526,Naphthalene,LB
+37015,0.2207471,Methane,TON
+37015,0.0003705196,Nitrate portion of PM2.5-PRI,TON
+37015,0.2936558,Elemental Carbon portion of PM2.5-PRI,TON
+37015,1.005098,Nitrous Oxide,TON
+37015,0.4276939,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,6145.414,Xylenes (Mixed Isomers),LB
+37077,0.02493776,Acrolein,LB
+37077,0.5666148,Toluene,LB
+37077,0.000231421,Anthracene,LB
+37077,0.000439462,Fluoranthene,LB
+37077,0.2611948,"2,2,4-Trimethylpentane",LB
+37077,2.58989e-05,Mercury,LB
+37077,0.0004951354,Arsenic,LB
+37077,2.856068,Acetaldehyde,LB
+37077,0.0014006644,Phenanthrene,LB
+37077,0.012658174,Naphthalene,LB
+37025,0.002419666,Anthracene,LB
+37025,5.877048,Xylenes (Mixed Isomers),LB
+37025,3.631202e-05,Chromium (VI),LB
+37025,0.013878414,Manganese,LB
+37025,0.02305449,Methane,TON
+37025,524.9355,Carbon Dioxide,TON
+37025,0.2172695,Nitrogen Oxides,TON
+37025,0.01244123,PM2.5 Primary (Filt + Cond),TON
+37025,0.01594998,Sulfur Dioxide,TON
+37025,0.00014652562,"Dibenzo[a,h]Anthracene",LB
+37133,0.004461034,Pyrene,LB
+37133,3.098206,"2,2,4-Trimethylpentane",LB
+37133,0.00432819,Nickel,LB
+37133,0.003988051,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.04472424,PM10 Primary (Filt + Cond),TON
+37111,0.0004085056,Pyrene,LB
+37111,0.0002720772,Benzo[b]Fluoranthene,LB
+37111,0.2096964,"2,2,4-Trimethylpentane",LB
+37111,2.285022,Acetaldehyde,LB
+37021,376.7012,Toluene,LB
+37021,16.521044,Anthracene,LB
+37021,33.80526,Pyrene,LB
+37021,0.09233038,"Benzo[g,h,i,]Perylene",LB
+37021,0.8471612,Manganese,LB
+37021,0.1175651,Nitrous Oxide,TON
+37013,7.111888,Hexane,LB
+37013,0.008820272,Benzo[b]Fluoranthene,LB
+37013,283.0052,Formaldehyde,LB
+37013,0.0012156798,"Dibenzo[a,h]Anthracene",LB
+37013,7.104036,"2,2,4-Trimethylpentane",LB
+37013,0.05367252,Ammonia,TON
+37013,5.353841,Nitrogen Oxides,TON
+37013,0.04623892,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.01421109,Sulfur Dioxide,TON
+37013,7.633828,Pyrene,LB
+37013,1.8574102,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,1.3490986,Benzo[b]Fluoranthene,LB
+37013,24.84052,Phenanthrene,LB
+37013,2.122811,Methane,TON
+37013,960.952,Carbon Monoxide,TON
+37013,2.351533,PM2.5 Primary (Filt + Cond),TON
+37011,2.33481,Benzene,LB
+37011,0.2048582,Phenanthrene,LB
+37011,2.749718,Naphthalene,LB
+37011,0.001904069,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.01159178,PM10 Primary (Filt + Cond),TON
+37011,0.7184092,"1,3-Butadiene",LB
+37011,0.0009806522,Benzo[a]Pyrene,LB
+37005,19.715028,Hexane,LB
+37005,0.03929088,Fluorene,LB
+37021,0.006072944,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.003138452,Benzo[b]Fluoranthene,LB
+37021,0.002359496,Chrysene,LB
+37021,0.00460369,Fluorene,LB
+37021,0.1187298,Naphthalene,LB
+37021,0.006027342,Nitrous Oxide,TON
+37021,0.1781483,Volatile Organic Compounds,TON
+37013,74.04786,Toluene,LB
+37013,0.009738868,Anthracene,LB
+37013,37.54382,Xylenes (Mixed Isomers),LB
+37013,0.0035089,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.05201938,Acenaphthylene,LB
+37013,12.664348,Benzene,LB
+37013,0.009133884,PM10 Primary (Filt + Cond),TON
+37009,2.18213,Styrene,LB
+37009,11.402108,Toluene,LB
+37009,4.032614,Hexane,LB
+37009,0.5027084,Acenaphthene,LB
+37009,0.01878081,Organic Carbon portion of PM2.5-PRI,TON
+37005,1.127177,PM2.5 Primary (Filt + Cond),TON
+37005,0.001320034,Chromium (VI),LB
+37005,5.50879,Fluoranthene,LB
+37005,2551.186,"2,2,4-Trimethylpentane",LB
+37005,0.013234288,Mercury,LB
+37001,0.3107776,Xylenes (Mixed Isomers),LB
+37001,4.551948e-08,Chromium (VI),LB
+37001,8.10709,Acetaldehyde,LB
+37001,140.4988,Carbon Dioxide,TON
+37001,0.0005958898,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.003839181,Ammonia,TON
+37001,0.02014784,PM10 Primary (Filt + Cond),TON
+37015,46.82166,Naphthalene,LB
+37015,14.02386,Ethyl Benzene,LB
+37015,14.26552,"1,3-Butadiene",LB
+37015,0.03236174,Benzo[a]Pyrene,LB
+37199,0.15408018,Xylenes (Mixed Isomers),LB
+37199,0.0001365545,Benzo[a]Pyrene,LB
+37199,0.00012513246,Manganese,LB
+37199,9.79738e-05,Arsenic,LB
+37199,0.07701032,Carbon Monoxide,TON
+37199,0.007141022,Nitrogen Oxides,TON
+37199,0.3312768,Styrene,LB
+37199,3.844322e-05,"Dibenzo[a,h]Anthracene",LB
+37199,1.0074186e-05,Mercury,LB
+37199,0.0056379,Nickel,LB
+37199,0.02302469,Methane,TON
+37199,158.3905,Carbon Dioxide,TON
+37199,0.003727979,PM10-Primary from certain diesel engines,TON
+37199,0.001816675,Organic Carbon portion of PM2.5-PRI,TON
+37197,3.29072,"1,3-Butadiene",LB
+37197,2.210096,"2,2,4-Trimethylpentane",LB
+37197,0.13132462,Benz[a]Anthracene,LB
+37197,10.526408,Naphthalene,LB
+37197,0.23343,PM10-Primary from certain diesel engines,TON
+37197,0.2753356,PM10 Primary (Filt + Cond),TON
+37193,2.633785,PM10 Primary (Filt + Cond),TON
+37193,0.1636105,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.009613962,"Dibenzo[a,h]Anthracene",LB
+37193,0.2766012,Manganese,LB
+37193,0.0003785712,Mercury,LB
+37193,1.473564,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.3708073,Ammonia,TON
+37193,0.004750627,Nitrate portion of PM2.5-PRI,TON
+37193,0.0008075366,"Benzo[g,h,i,]Perylene",LB
+37193,3.644142e-05,Mercury,LB
+37193,0.6830552,Phenanthrene,LB
+37193,9.163494,Naphthalene,LB
+37193,0.009323868,PM25-Primary from certain diesel engines,TON
+37193,0.002466602,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.4609453,Volatile Organic Compounds,TON
+37195,7.699518,Toluene,LB
+37195,0.2614505,PM10-Primary from certain diesel engines,TON
+37195,0.3828304,Organic Carbon portion of PM2.5-PRI,TON
+37195,4854.168,Toluene,LB
+37195,1.7541072,"Benzo[g,h,i,]Perylene",LB
+37195,456.505,Formaldehyde,LB
+37195,0.4593094,Benz[a]Anthracene,LB
+37195,1494.0216,Benzene,LB
+37195,408.0015,Carbon Monoxide,TON
+37191,6.298184,Pyrene,LB
+37191,0.9168928,Chrysene,LB
+37191,54.1492,Benzene,LB
+37191,0.07062876,Sulfate Portion of PM2.5-PRI,TON
+37191,0.3728731,Ammonia,TON
+37191,0.3164407,PM10 Primary (Filt + Cond),TON
+37191,16.836752,"1,3-Butadiene",LB
+37191,0.13854946,Benz[a]Anthracene,LB
+37191,0.02324546,Nickel,LB
+37185,49.21316,Propionaldehyde,LB
+37185,0.9370226,Benzo[b]Fluoranthene,LB
+37185,754.5502,Formaldehyde,LB
+37185,0.618862,Arsenic,LB
+37185,1.575527,PM2.5 Primary (Filt + Cond),TON
+37181,0.16733928,Phenanthrene,LB
+37181,371.5083,Carbon Dioxide,TON
+37181,0.19072092,Styrene,LB
+37181,0.002926966,Benzo[b]Fluoranthene,LB
+37181,0.10278912,Fluoranthene,LB
+37181,0.0004048356,Benzo[k]Fluoranthene,LB
+37181,0.03238532,Benz[a]Anthracene,LB
+37181,0.002820304,Sulfate Portion of PM2.5-PRI,TON
+37179,53.78658,Formaldehyde,LB
+37179,0.04029974,Benzo[a]Pyrene,LB
+37179,4.741088,Benzene,LB
+37179,4.671283,Nitrogen Oxides,TON
+37191,0.3293998,Benzo[a]Pyrene,LB
+37191,0.013666736,"Dibenzo[a,h]Anthracene",LB
+37191,6.460916,Phenanthrene,LB
+37191,2.535551,PM10-Primary from certain diesel engines,TON
+37191,2.487835,PM2.5 Primary (Filt + Cond),TON
+37183,45946,Ethyl Benzene,LB
+37183,1584.718,Acrolein,LB
+37183,57.9371,Anthracene,LB
+37183,1209.0812,Propionaldehyde,LB
+37183,170506.82,Xylenes (Mixed Isomers),LB
+37183,36.73004,Benzo[a]Pyrene,LB
+37183,62076.94,"2,2,4-Trimethylpentane",LB
+37183,67.18054,Acenaphthene,LB
+37183,136.08258,Fluorene,LB
+37183,0.1340163,Nitrate portion of PM2.5-PRI,TON
+37183,23.3603,Organic Carbon portion of PM2.5-PRI,TON
+37181,1676.7868,Hexane,LB
+37031,13.190626,"1,3-Butadiene",LB
+37031,21.60336,Propionaldehyde,LB
+37031,26.16696,Xylenes (Mixed Isomers),LB
+37031,9.964178,"2,2,4-Trimethylpentane",LB
+37031,0.2185172,Manganese,LB
+37031,6473.11,Carbon Dioxide,TON
+37031,1.024312,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.01075925,Nitrous Oxide,TON
+37031,0.4550193,PM10 Primary (Filt + Cond),TON
+37031,0.01377479,Sulfate Portion of PM2.5-PRI,TON
+37031,22.15608,Acrolein,LB
+37031,0.12415158,Chrysene,LB
+37031,27.06816,Styrene,LB
+37031,10.614976,Pyrene,LB
+37031,0.0003943996,Chromium (VI),LB
+37031,0.00976464,Benzo[k]Fluoranthene,LB
+37031,1834.7696,Formaldehyde,LB
+37031,804.0362,Acetaldehyde,LB
+37031,0.1871629,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,2.481056,"2,2,4-Trimethylpentane",LB
+37029,0.03457184,Manganese,LB
+37029,0.5463978,Fluorene,LB
+37029,3375.697,Carbon Dioxide,TON
+37029,0.03669375,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.02874278,Sulfur Dioxide,TON
+37029,4.317388,Propionaldehyde,LB
+37029,0.557032,Fluoranthene,LB
+37029,0.8616032,"1,3-Butadiene",LB
+37029,0.0011497042,"Benzo[g,h,i,]Perylene",LB
+37029,0.01238043,Methane,TON
+37029,0.0009266973,Nitrous Oxide,TON
+37029,0.087299,Acenaphthene,LB
+37119,0.8387154,Benzo[a]Pyrene,LB
+37119,0.3283474,Arsenic,LB
+37101,27.32353,Carbon Monoxide,TON
+37101,17479.68,Carbon Dioxide,TON
+37101,62.12982,Toluene,LB
+37101,50.37508,Propionaldehyde,LB
+37101,9.8879,Pyrene,LB
+37101,0.217855,Benzo[b]Fluoranthene,LB
+37101,5.25024,Acenaphthylene,LB
+37091,0.18193598,Hexane,LB
+37091,0.0003107718,"Benzo[g,h,i,]Perylene",LB
+37091,0.002637302,Ammonia,TON
+37091,0.007504224,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.2481733,Carbon Monoxide,TON
+37091,0.03429424,PM10-Primary from certain diesel engines,TON
+37103,0.02037416,Nickel,LB
+37103,0.03123928,Arsenic,LB
+37103,0.07747633,PM2.5 Primary (Filt + Cond),TON
+37103,0.02188443,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,2.927,Volatile Organic Compounds,TON
+37103,3.277372,Acrolein,LB
+37103,0.8018198,Acenaphthylene,LB
+37103,0.0015150082,"Dibenzo[a,h]Anthracene",LB
+37103,121.88472,"2,2,4-Trimethylpentane",LB
+37103,173.86794,Benzene,LB
+37099,0.07648266,PM10-Primary from certain diesel engines,TON
+37093,0.1755313,Ammonia,TON
+37093,0.1092553,Sulfate Portion of PM2.5-PRI,TON
+37093,27.19404,Xylenes (Mixed Isomers),LB
+37093,0.0001153918,Chromium (VI),LB
+37093,0.006413336,"Dibenzo[a,h]Anthracene",LB
+37091,1.478568,"2,2,4-Trimethylpentane",LB
+37091,0.001550037,Ammonia,TON
+37091,0.1171115,Nitrogen Oxides,TON
+37091,0.00161685,PM2.5 Primary (Filt + Cond),TON
+37091,0.0010743232,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.09395588,Acrolein,LB
+37071,0.00941038,Pyrene,LB
+37071,0.005913666,Benzo[b]Fluoranthene,LB
+37071,0.003156346,Arsenic,LB
+37071,0.002330004,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.07884428,PM10 Primary (Filt + Cond),TON
+37071,0.00828337,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.02207471,Sulfur Dioxide,TON
+37069,0.9901616,"1,3-Butadiene",LB
+37069,3.042732e-06,Chromium (VI),LB
+37069,0.00316522,Ammonia,TON
+37069,1.120764e-05,Nitrate portion of PM2.5-PRI,TON
+37069,0.0001442623,Sulfate Portion of PM2.5-PRI,TON
+37067,9135.786,Xylenes (Mixed Isomers),LB
+37067,2939.328,"2,2,4-Trimethylpentane",LB
+37067,23.21642,Phenanthrene,LB
+37067,1.887694,Sulfur Dioxide,TON
+37061,10.966858,"1,3-Butadiene",LB
+37061,5.89174,Acrolein,LB
+37061,0.1418423,Benzo[a]Pyrene,LB
+37061,405.3224,Benzene,LB
+37061,1.7066418,Phenanthrene,LB
+37061,0.02013097,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.1908118,PM10 Primary (Filt + Cond),TON
+37039,5.739186e-06,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.0009123656,Naphthalene,LB
+37039,0.0003251198,Acrolein,LB
+37039,1.518704e-05,Anthracene,LB
+37043,0.05508126,Ethyl Benzene,LB
+37043,0.06624938,"2,2,4-Trimethylpentane",LB
+37043,0.00019143258,Fluorene,LB
+37043,9.90152e-05,PM10 Primary (Filt + Cond),TON
+37043,5.271085e-05,PM2.5 Primary (Filt + Cond),TON
+37041,0.001523881,Sulfur Dioxide,TON
+37041,0.1526354,Volatile Organic Compounds,TON
+37041,0.00277342,Nickel,LB
+37041,11.941984,Acetaldehyde,LB
+37041,0.07185067,PM10 Primary (Filt + Cond),TON
+37041,0.05535794,PM2.5 Primary (Filt + Cond),TON
+37027,108.63148,"1,3-Butadiene",LB
+37027,14.408976,Acrolein,LB
+37027,0.2324632,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.186639,Benzo[k]Fluoranthene,LB
+37027,0.1906669,Chrysene,LB
+37023,11.164148,Acetaldehyde,LB
+37023,0.01541128,Methane,TON
+37023,0.07694423,Elemental Carbon portion of PM2.5-PRI,TON
+37023,2.720998,Nitrogen Oxides,TON
+37023,0.02771791,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.01846626,Benzo[a]Pyrene,LB
+37023,0.2492528,Pyrene,LB
+37197,902.6038,Xylenes (Mixed Isomers),LB
+37197,387.1192,"2,2,4-Trimethylpentane",LB
+37197,296.0796,Benzene,LB
+37197,0.0009069,Mercury,LB
+37197,0.1378739,PM10 Primary (Filt + Cond),TON
+37197,0.09848306,PM2.5 Primary (Filt + Cond),TON
+37195,4.409394e-06,Manganese,LB
+37195,6.479156e-05,Acenaphthene,LB
+37195,4.393832e-05,Methane,TON
+37195,0.0013177692,Propionaldehyde,LB
+37195,0.0980413,"Dibenzo[a,h]Anthracene",LB
+37195,0.1208259,Mercury,LB
+37195,15.2628,PM10 Primary (Filt + Cond),TON
+37195,1.735018,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.006476576,Anthracene,LB
+37191,195.3801,Carbon Dioxide,TON
+37191,0.0009655774,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.4240392,Nitrogen Oxides,TON
+37191,0.002164039,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.004094758,Sulfur Dioxide,TON
+37191,0.8936836,"1,3-Butadiene",LB
+37187,0.0418672,Pyrene,LB
+37187,0.3259236,Xylenes (Mixed Isomers),LB
+37187,1.6797194e-06,Chromium (VI),LB
+37187,0.00018226916,"Benzo[g,h,i,]Perylene",LB
+37187,0.0302266,Fluorene,LB
+37187,0.02171235,PM2.5 Primary (Filt + Cond),TON
+37187,0.001062355,Sulfur Dioxide,TON
+37183,2.028506,Styrene,LB
+37183,0.12360464,Fluoranthene,LB
+37183,831.024,Acetaldehyde,LB
+37183,3.660676,Naphthalene,LB
+37183,94.2995,Carbon Monoxide,TON
+37183,21.84771,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,339366.4,Toluene,LB
+37183,83353.46,Hexane,LB
+37183,30.88578,Benzo[b]Fluoranthene,LB
+37183,0.9877992,"Dibenzo[a,h]Anthracene",LB
+37183,73.25144,Methane,TON
+37179,13.019514,Phenanthrene,LB
+37179,7.014492,Fluorene,LB
+37179,126.34912,Naphthalene,LB
+37179,4.370587,PM25-Primary from certain diesel engines,TON
+37179,0.05933557,Nitrous Oxide,TON
+37179,0.01270084,Nitrate portion of PM2.5-PRI,TON
+37167,0.009457714,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.004938366,Arsenic,LB
+37167,962.7701,Carbon Dioxide,TON
+37167,0.1750587,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.07489801,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.008384031,Sulfur Dioxide,TON
+37165,0.0005059176,Acenaphthene,LB
+37165,0.000143448,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,9.359069e-05,Sulfur Dioxide,TON
+37165,0.2939726,Ethyl Benzene,LB
+37165,0.3512262,Hexane,LB
+37165,0.0005927494,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.0007993446,Fluoranthene,LB
+37165,4.45916e-05,Manganese,LB
+37163,1.910946,Phenanthrene,LB
+37163,96.47808,Carbon Monoxide,TON
+37163,0.03743266,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,12.516592,"1,3-Butadiene",LB
+37163,551.2444,Hexane,LB
+37163,0.003441492,"Dibenzo[a,h]Anthracene",LB
+37163,457.689,Benzene,LB
+37161,1401.7644,Xylenes (Mixed Isomers),LB
+37161,613.751,"2,2,4-Trimethylpentane",LB
+37161,0.03295921,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,4.274516,Ethyl Benzene,LB
+37153,0.5826444,Fluoranthene,LB
+37153,0.0176115,Manganese,LB
+37153,0.006292894,Arsenic,LB
+37153,0.09517715,Elemental Carbon portion of PM2.5-PRI,TON
+37139,4.929008,Carbon Monoxide,TON
+37139,0.06770986,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.002134158,Nitrous Oxide,TON
+37139,0.0002466485,Nitrate portion of PM2.5-PRI,TON
+37139,7.875808,Acrolein,LB
+37139,0.012396394,Benzo[a]Pyrene,LB
+37129,27.66574,"1,3-Butadiene",LB
+37129,0.05741094,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.2252096,Benzo[b]Fluoranthene,LB
+37129,4.644344,Acenaphthylene,LB
+37129,1.4185512,Chrysene,LB
+37129,0.03121196,"Dibenzo[a,h]Anthracene",LB
+37129,2.765208,Acenaphthene,LB
+37129,12.296394,Phenanthrene,LB
+37129,28.27749,Carbon Monoxide,TON
+37131,0.2615163,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.013980752,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.05490412,Benzo[b]Fluoranthene,LB
+37131,0.007535578,Benzo[k]Fluoranthene,LB
+37131,0.3549862,Chrysene,LB
+37131,24.29236,Benzene,LB
+37131,0.017362312,Arsenic,LB
+37131,1.7772376,Fluorene,LB
+37127,2.695472,Ethyl Benzene,LB
+37127,1.0213714,Styrene,LB
+37127,0.002626636,Benzo[k]Fluoranthene,LB
+37127,82.58848,Formaldehyde,LB
+37123,5.22669,"1,3-Butadiene",LB
+37123,0.04024294,Benzo[b]Fluoranthene,LB
+37123,48.23044,Formaldehyde,LB
+37123,0.0013104346,"Dibenzo[a,h]Anthracene",LB
+37123,0.000537704,Mercury,LB
+37123,0.12816318,Acenaphthene,LB
+37123,6.655902,Naphthalene,LB
+37123,1.816839,Nitrogen Oxides,TON
+37123,0.07616261,PM10 Primary (Filt + Cond),TON
+37123,0.001687909,Sulfate Portion of PM2.5-PRI,TON
+37093,0.00012037242,Nickel,LB
+37093,0.004191001,Methane,TON
+37093,41.63765,Carbon Dioxide,TON
+37093,0.1345698,Volatile Organic Compounds,TON
+37093,0.1200928,Styrene,LB
+37093,0.00435104,Anthracene,LB
+37093,0.02328904,Acenaphthylene,LB
+37093,0.001068329,Manganese,LB
+37085,1.935858,Ethyl Benzene,LB
+37085,0.1919079,Anthracene,LB
+37085,4.872746,Xylenes (Mixed Isomers),LB
+37085,0.08308732,Chrysene,LB
+37085,0.002077384,Nitrous Oxide,TON
+37085,0.007091963,Sulfur Dioxide,TON
+37073,0.1256278,Carbon Monoxide,TON
+37073,3.733467,Carbon Dioxide,TON
+37073,9.95855e-05,Ammonia,TON
+37073,7.827641e-05,Sulfur Dioxide,TON
+37073,0.0247587,"1,3-Butadiene",LB
+37073,5.359446e-05,Chrysene,LB
+37073,1.6179592e-06,"Dibenzo[a,h]Anthracene",LB
+37073,5.467058e-05,Benz[a]Anthracene,LB
+37085,0.005199502,Propionaldehyde,LB
+37085,9.621996e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.0002411768,Acenaphthene,LB
+37085,0.0004885278,Fluorene,LB
+37085,0.01252336,Naphthalene,LB
+37085,2.271912e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.0409676,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.2066408,"Benzo[g,h,i,]Perylene",LB
+37195,0.005608072,Benzo[k]Fluoranthene,LB
+37195,2.769766,Formaldehyde,LB
+37195,6.054252,"2,2,4-Trimethylpentane",LB
+37195,0.005036848,Benz[a]Anthracene,LB
+37195,0.04623416,Phenanthrene,LB
+37195,287.3272,Carbon Dioxide,TON
+37195,0.5909364,Nitrogen Oxides,TON
+37195,0.00570388,Organic Carbon portion of PM2.5-PRI,TON
+37195,8.988014e-06,Chromium (VI),LB
+37195,7.166968,Acetaldehyde,LB
+37195,0.04594048,Fluorene,LB
+37195,0.01072893,Sulfur Dioxide,TON
+37195,0.0004997005,Sulfate Portion of PM2.5-PRI,TON
+37191,0.0230441,"Benzo[g,h,i,]Perylene",LB
+37191,0.04851202,Benzo[b]Fluoranthene,LB
+37191,0.2540778,Organic Carbon portion of PM2.5-PRI,TON
+37191,1.889614,PM10 Primary (Filt + Cond),TON
+37181,8.977104,Hexane,LB
+37181,0.012822108,"Benzo[g,h,i,]Perylene",LB
+37181,0.015406722,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,1.759088,Acenaphthylene,LB
+37181,357.6788,Formaldehyde,LB
+37181,1.0467026,Acenaphthene,LB
+37181,2.222156,Fluorene,LB
+37181,0.2229515,Methane,TON
+37181,0.01253349,Nitrous Oxide,TON
+37173,0.02054322,Anthracene,LB
+37173,0.0148387,Benzo[a]Pyrene,LB
+37173,7.697734,Acetaldehyde,LB
+37173,0.04806018,Fluorene,LB
+37113,1.0695476,Arsenic,LB
+37113,12.707786,Acenaphthene,LB
+37113,2375.882,Carbon Monoxide,TON
+37113,323.2731,Nitrogen Oxides,TON
+37113,9.625174,PM10 Primary (Filt + Cond),TON
+37113,1.158986,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,57.83192,Acenaphthylene,LB
+37113,3959.382,Formaldehyde,LB
+37113,1.6790092,Manganese,LB
+37101,53.66092,Ethyl Benzene,LB
+37101,118.81452,Acrolein,LB
+37101,41.72802,Hexane,LB
+37101,0.03412706,Benzo[k]Fluoranthene,LB
+37101,1.5950542,Chrysene,LB
+37101,9.197146,Fluorene,LB
+37101,10.01389,PM10 Primary (Filt + Cond),TON
+37105,2.926544e-05,Chromium (VI),LB
+37105,0.02071846,Benzo[b]Fluoranthene,LB
+37105,0.02071846,Benzo[k]Fluoranthene,LB
+37105,0.2312108,Acenaphthylene,LB
+37105,0.05064766,Acenaphthene,LB
+37105,0.03944413,Nitrous Oxide,TON
+37105,2.424313,Nitrogen Oxides,TON
+37103,5.192039e-05,Nitrous Oxide,TON
+37103,7.75691e-05,Ammonia,TON
+37103,2.619949e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.001919008,Volatile Organic Compounds,TON
+37097,1525.6582,"2,2,4-Trimethylpentane",LB
+37097,754.4918,Acetaldehyde,LB
+37097,0.6050295,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.8302904,Anthracene,LB
+37093,11.629578,Propionaldehyde,LB
+37093,0.007874612,Benzo[k]Fluoranthene,LB
+37093,0.007863414,"Dibenzo[a,h]Anthracene",LB
+37093,5.149786,"2,2,4-Trimethylpentane",LB
+37093,7.049168,Ethyl Benzene,LB
+37093,0.02202556,Sulfate Portion of PM2.5-PRI,TON
+37093,0.05866842,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,478.3006,"2,2,4-Trimethylpentane",LB
+37093,241.959,Benzene,LB
+37093,0.01283019,Manganese,LB
+37093,0.00060396,Mercury,LB
+37093,0.01438107,Nitrous Oxide,TON
+37093,0.01547091,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.02022819,Sulfur Dioxide,TON
+37087,0.15533022,Styrene,LB
+37087,0.350444,"1,3-Butadiene",LB
+37087,2.566038e-06,Chromium (VI),LB
+37087,0.00704306,Benzo[a]Pyrene,LB
+37087,0.003465985,Methane,TON
+37087,0.0001216034,Nitrate portion of PM2.5-PRI,TON
+37085,7.099006,Phenanthrene,LB
+37085,61.25058,Naphthalene,LB
+37085,0.1426228,Ammonia,TON
+37085,0.02733666,"Benzo[g,h,i,]Perylene",LB
+37085,0.8676788,Chrysene,LB
+37085,0.00012612206,Mercury,LB
+37085,0.02637226,Arsenic,LB
+37081,30.01844,Ethyl Benzene,LB
+37081,5.207162,Fluoranthene,LB
+37081,0.3314342,Benzo[a]Pyrene,LB
+37081,1.899692,PM10-Primary from certain diesel engines,TON
+37081,66.50601,Nitrogen Oxides,TON
+37081,3.199136,PM10 Primary (Filt + Cond),TON
+37081,5.207169,Volatile Organic Compounds,TON
+37077,0.003612759,Sulfur Dioxide,TON
+37077,10.10669,Ethyl Benzene,LB
+37077,0.0231619,Fluoranthene,LB
+37077,14.260632,"2,2,4-Trimethylpentane",LB
+37077,0.008411968,Benz[a]Anthracene,LB
+37067,52.01008,Acrolein,LB
+37067,44.20852,Xylenes (Mixed Isomers),LB
+37067,0.07873276,Nickel,LB
+37067,0.2495189,Methane,TON
+37067,8665.386,Carbon Dioxide,TON
+37067,0.3826104,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.06779421,Sulfate Portion of PM2.5-PRI,TON
+37067,3.812949,Volatile Organic Compounds,TON
+37065,0.8232516,Fluoranthene,LB
+37065,0.003322502,Benzo[k]Fluoranthene,LB
+37065,0.02680332,Manganese,LB
+37065,0.2873578,PM10-Primary from certain diesel engines,TON
+37065,0.6178406,Methane,TON
+37065,1.610403,Pyrene,LB
+37065,0.0007721116,Chromium (VI),LB
+37065,0.2728152,Benzo[k]Fluoranthene,LB
+37061,0.3504342,Hexane,LB
+37061,0.8966152,Xylenes (Mixed Isomers),LB
+37061,1.394602e-07,Chromium (VI),LB
+37061,0.0002030968,Benzo[k]Fluoranthene,LB
+37061,0.00018885804,Benz[a]Anthracene,LB
+37061,0.002322698,Phenanthrene,LB
+37061,0.0219781,Naphthalene,LB
+37057,28.97076,Acenaphthylene,LB
+37057,27484.13,Carbon Dioxide,TON
+37057,297.4254,Xylenes (Mixed Isomers),LB
+37055,3653.832,Toluene,LB
+37055,22.43488,Propionaldehyde,LB
+37055,0.292685,Chrysene,LB
+37055,0.2967214,Benz[a]Anthracene,LB
+37055,58.70522,Naphthalene,LB
+37055,0.0932198,Elemental Carbon portion of PM2.5-PRI,TON
+37055,1.836337,PM10 Primary (Filt + Cond),TON
+37055,0.5326185,PM2.5 Primary (Filt + Cond),TON
+37039,0.0007959365,Ammonia,TON
+37039,0.1721529,Nitrogen Oxides,TON
+37039,0.000281578,Sulfate Portion of PM2.5-PRI,TON
+37039,0.3050664,Acrolein,LB
+37039,0.2615298,Toluene,LB
+37039,0.2051244,Propionaldehyde,LB
+37039,0.259703,Xylenes (Mixed Isomers),LB
+37039,0.3638002,Benzene,LB
+37041,0.3594294,Acenaphthylene,LB
+37041,1.5240138e-05,Mercury,LB
+37041,3.447888,Carbon Monoxide,TON
+37041,0.06341775,PM2.5 Primary (Filt + Cond),TON
+37029,12.659708,Toluene,LB
+37029,9.59955,Hexane,LB
+37029,3.65782,Benzene,LB
+37029,0.4460768,Volatile Organic Compounds,TON
+37171,114.19888,Toluene,LB
+37167,6.21408,Hexane,LB
+37167,0.1147083,Propionaldehyde,LB
+37167,0.002090608,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,1.8504296,Formaldehyde,LB
+37167,0.2759523,Nitrogen Oxides,TON
+37167,0.001224473,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.0003350938,Benzo[a]Pyrene,LB
+37165,0.00372895,Benz[a]Anthracene,LB
+37165,5.10292e-06,Mercury,LB
+37165,0.002107596,Nickel,LB
+37165,0.007895279,Methane,TON
+37165,83.61132,Carbon Dioxide,TON
+37165,0.0003241034,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.0003799357,Sulfate Portion of PM2.5-PRI,TON
+37165,0.0854961,Styrene,LB
+37165,0.5731994,Acrolein,LB
+37163,0.0208252,"1,3-Butadiene",LB
+37163,1.3845008,Propionaldehyde,LB
+37163,2.02276e-05,"Benzo[g,h,i,]Perylene",LB
+37163,49.86746,Formaldehyde,LB
+37163,0.6777179,Carbon Monoxide,TON
+37163,0.0005153995,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.0004525078,Sulfur Dioxide,TON
+37163,0.05473576,Volatile Organic Compounds,TON
+37151,0.07244558,Arsenic,LB
+37151,11.557806,Phenanthrene,LB
+37151,12.643732,Styrene,LB
+37151,29.30034,"1,3-Butadiene",LB
+37151,0.03955406,"Benzo[g,h,i,]Perylene",LB
+37151,1074.387,Formaldehyde,LB
+37137,0.002460124,Benz[a]Anthracene,LB
+37137,3.06132,Carbon Monoxide,TON
+37137,8.626585e-06,Nitrate portion of PM2.5-PRI,TON
+37137,0.004789532,PM10 Primary (Filt + Cond),TON
+37137,0.1844296,Volatile Organic Compounds,TON
+37133,0.2091572,Anthracene,LB
+37133,0.00285936,"Benzo[g,h,i,]Perylene",LB
+37133,0.4225832,Fluorene,LB
+37133,0.1549718,PM25-Primary from certain diesel engines,TON
+37133,0.0084687,Sulfur Dioxide,TON
+37133,29.32436,Benzene,LB
+37133,0.7557539,PM25-Primary from certain diesel engines,TON
+37133,4.30958,Styrene,LB
+37131,1147.5658,Hexane,LB
+37115,0.01436288,"1,3-Butadiene",LB
+37115,0.0004232896,Pyrene,LB
+37115,1.9268392e-08,Chromium (VI),LB
+37115,0.001580529,Ammonia,TON
+37115,0.00624316,Benzo[b]Fluoranthene,LB
+37115,0.0761798,Acenaphthene,LB
+37115,0.3105554,Phenanthrene,LB
+37115,0.17496194,Fluorene,LB
+37115,0.5069456,Carbon Monoxide,TON
+37115,0.679978,Propionaldehyde,LB
+37115,0.012804766,Benzo[b]Fluoranthene,LB
+37115,0.011686014,Chrysene,LB
+37115,11.536564,Acetaldehyde,LB
+37115,22.9006,Ethyl Benzene,LB
+37115,137.12324,Toluene,LB
+37115,0.01700006,Ammonia,TON
+37115,0.01037152,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.15292456,Hexane,LB
+37103,0.0012558286,Benzo[b]Fluoranthene,LB
+37103,6.088142,Formaldehyde,LB
+37103,0.004210036,Benzo[a]Pyrene,LB
+37103,7.345684e-05,Nitrate portion of PM2.5-PRI,TON
+37103,0.6740025,Nitrogen Oxides,TON
+37103,0.02970325,PM2.5 Primary (Filt + Cond),TON
+37099,210.1478,Ethyl Benzene,LB
+37099,7.791656,"1,3-Butadiene",LB
+37099,348.377,Hexane,LB
+37099,0.355315,Pyrene,LB
+37099,0.06157174,Chrysene,LB
+37099,80.3871,Formaldehyde,LB
+37099,0.08862364,Benzo[a]Pyrene,LB
+37099,0.06353078,Benz[a]Anthracene,LB
+37099,0.0008710082,Mercury,LB
+37099,0.2124908,Acenaphthene,LB
+37095,0.03418102,Toluene,LB
+37095,3.289828e-06,"Benzo[g,h,i,]Perylene",LB
+37095,5.13617e-05,Arsenic,LB
+37095,0.0003770674,Ammonia,TON
+37077,0.4425078,Anthracene,LB
+37077,6.524826,Propionaldehyde,LB
+37077,0.003813566,Benzo[k]Fluoranthene,LB
+37077,0.0306127,Manganese,LB
+37077,0.015988924,Nickel,LB
+37077,0.0152028,Ammonia,TON
+37077,0.006926622,Sulfate Portion of PM2.5-PRI,TON
+37075,33.21312,Acetaldehyde,LB
+37075,0.8665142,Phenanthrene,LB
+37075,0.006560572,Sulfate Portion of PM2.5-PRI,TON
+37075,6.331836,Xylenes (Mixed Isomers),LB
+37075,1.84475e-05,Chromium (VI),LB
+37075,0.0019248756,Benzo[k]Fluoranthene,LB
+37075,0.15800314,Benz[a]Anthracene,LB
+37075,0.00926972,Nickel,LB
+37075,100.34172,"1,3-Butadiene",LB
+37075,0.000660514,Chromium (VI),LB
+37075,234.348,Acetaldehyde,LB
+37075,0.07521025,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.2635911,Nitrous Oxide,TON
+37075,0.832729,Ammonia,TON
+37075,12.46631,Volatile Organic Compounds,TON
+37065,15.65837,Acrolein,LB
+37065,0.02777528,Benzo[a]Pyrene,LB
+37065,18.699462,Benzene,LB
+37065,10.27849,Carbon Monoxide,TON
+37065,0.00474627,Nitrous Oxide,TON
+37065,4.354987,Nitrogen Oxides,TON
+37065,0.010393254,Benzene,LB
+37065,1.670354e-08,Mercury,LB
+37065,0.006117336,Ethyl Benzene,LB
+37061,45.51592,Ethyl Benzene,LB
+37061,0.0592323,Anthracene,LB
+37061,168.66534,Xylenes (Mixed Isomers),LB
+37061,0.11856932,"Benzo[g,h,i,]Perylene",LB
+37061,0.10259472,Fluoranthene,LB
+37061,0.02513834,Chrysene,LB
+37061,0.016703024,Manganese,LB
+37061,0.3739418,Phenanthrene,LB
+37061,0.13841282,Fluorene,LB
+37061,3.5506,Naphthalene,LB
+37061,31.41926,Carbon Monoxide,TON
+37061,0.04775497,Ammonia,TON
+37061,0.025326,Sulfur Dioxide,TON
+37053,8.230018,Acrolein,LB
+37053,0.6983476,Pyrene,LB
+37053,0.000350763,Chromium (VI),LB
+37053,0.14274924,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.11304764,Benz[a]Anthracene,LB
+37053,0.0672294,Arsenic,LB
+37053,143.96052,Acetaldehyde,LB
+37053,0.216608,Nitrous Oxide,TON
+37053,0.0004604742,Nitrate portion of PM2.5-PRI,TON
+37051,1.8391424,Styrene,LB
+37051,0.3576924,Benz[a]Anthracene,LB
+37051,13.842758,Benzene,LB
+37051,2522.823,Carbon Dioxide,TON
+37051,0.00605717,Nitrous Oxide,TON
+37049,0.0001356111,Phenanthrene,LB
+37049,3.472355e-05,Ammonia,TON
+37049,0.0003724109,Volatile Organic Compounds,TON
+37049,0.011726356,Ethyl Benzene,LB
+37049,2.164898e-05,Anthracene,LB
+37049,0.11525552,Chrysene,LB
+37049,20.6513,Naphthalene,LB
+37049,0.3442151,Ammonia,TON
+37173,32.33822,Phenanthrene,LB
+37173,142.04044,Styrene,LB
+37173,18235.802,Toluene,LB
+37173,122.01758,Propionaldehyde,LB
+37173,0.04966616,"Dibenzo[a,h]Anthracene",LB
+37169,0.2236076,Acrolein,LB
+37169,37.0438,Xylenes (Mixed Isomers),LB
+37169,15.874064,"2,2,4-Trimethylpentane",LB
+37169,0.012036304,Acenaphthene,LB
+37161,96.4841,Toluene,LB
+37161,2.978496,Acenaphthylene,LB
+37161,1.309212,Methane,TON
+37161,0.006076214,Nitrate portion of PM2.5-PRI,TON
+37161,0.2923196,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,4.386332,Anthracene,LB
+37155,0.0004820244,Chromium (VI),LB
+37155,1348.0168,Formaldehyde,LB
+37155,0.11024224,Arsenic,LB
+37155,143.11584,Naphthalene,LB
+37155,66.74646,Nitrogen Oxides,TON
+37155,3.683488,PM2.5 Primary (Filt + Cond),TON
+37163,26.57892,Hexane,LB
+37163,0.008079997,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,109.7471,Toluene,LB
+37161,10.139648,Pyrene,LB
+37161,103.79012,Xylenes (Mixed Isomers),LB
+37161,198.29006,Naphthalene,LB
+37161,0.3841943,Methane,TON
+37161,1.54711,PM10-Primary from certain diesel engines,TON
+37161,0.2592214,Organic Carbon portion of PM2.5-PRI,TON
+37155,1.1267718,Pyrene,LB
+37155,0.2998772,Benzo[a]Pyrene,LB
+37155,0.03465092,Nickel,LB
+37155,0.6719296,Acenaphthene,LB
+37155,1.3610844,Fluorene,LB
+37155,0.5892129,Ammonia,TON
+37153,1.6022292,Styrene,LB
+37153,0.00352081,"Dibenzo[a,h]Anthracene",LB
+37153,2.63055,"2,2,4-Trimethylpentane",LB
+37153,1.5285234e-05,Mercury,LB
+37153,0.012701596,Nickel,LB
+37153,0.1222778,Elemental Carbon portion of PM2.5-PRI,TON
+37151,47.71388,Naphthalene,LB
+37151,0.0009745932,Nitrate portion of PM2.5-PRI,TON
+37151,0.4519787,PM2.5 Primary (Filt + Cond),TON
+37151,2.495378,Volatile Organic Compounds,TON
+37151,22.79988,Propionaldehyde,LB
+37151,439.4684,Formaldehyde,LB
+37151,189.36248,Acetaldehyde,LB
+37151,3.854222,Phenanthrene,LB
+37135,0.0681343,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,134.85282,"2,2,4-Trimethylpentane",LB
+37135,0.0010828604,Mercury,LB
+37135,1593.009,Acetaldehyde,LB
+37135,249.4786,Nitrogen Oxides,TON
+37135,0.7806856,Sulfate Portion of PM2.5-PRI,TON
+37117,4.1838,Propionaldehyde,LB
+37117,0.4371004,Acenaphthylene,LB
+37117,0.0605174,Benzo[a]Pyrene,LB
+37117,0.002463346,"Dibenzo[a,h]Anthracene",LB
+37117,0.015960552,Manganese,LB
+37117,0.9720192,Phenanthrene,LB
+37117,8.534226,Naphthalene,LB
+37117,476.5462,Carbon Dioxide,TON
+37117,3.263813,Nitrogen Oxides,TON
+37117,0.004047935,Sulfate Portion of PM2.5-PRI,TON
+37019,191.38106,Formaldehyde,LB
+37019,16.850812,Benzene,LB
+37019,19.829076,Naphthalene,LB
+37019,17.08027,Carbon Monoxide,TON
+37003,0.02514072,Phenanthrene,LB
+37003,0.2409784,Naphthalene,LB
+37003,0.002051788,Ammonia,TON
+37003,0.0011213618,Chrysene,LB
+37003,2.892634e-05,"Dibenzo[a,h]Anthracene",LB
+37003,0.001123186,Benz[a]Anthracene,LB
+37001,2.737444,Acenaphthene,LB
+37001,11.101236,Phenanthrene,LB
+37001,101.8918,Nitrogen Oxides,TON
+37015,0.0004043941,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.07378953,Nitrogen Oxides,TON
+37015,0.001070745,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.002347624,PM2.5 Primary (Filt + Cond),TON
+37015,0.0007988052,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.02030364,Styrene,LB
+37015,0.0006566008,Anthracene,LB
+37015,0.003251182,Acenaphthylene,LB
+37015,0.0015630392,Benzo[a]Pyrene,LB
+37015,0.00400946,Phenanthrene,LB
+37003,0.002878562,Benz[a]Anthracene,LB
+37003,62.84202,Acetaldehyde,LB
+37003,0.5940294,"1,3-Butadiene",LB
+37003,3.9198,Hexane,LB
+37003,9.594018,Xylenes (Mixed Isomers),LB
+37003,0.02195144,Acenaphthylene,LB
+37005,0.5438502,"2,2,4-Trimethylpentane",LB
+37143,0.002516482,Styrene,LB
+37143,0.2042392,Toluene,LB
+37143,0.000402063,Acenaphthylene,LB
+37143,0.1647324,Formaldehyde,LB
+37143,8.03531e-05,Benz[a]Anthracene,LB
+37143,0.2523792,Benzene,LB
+37143,8.699626e-05,Acenaphthene,LB
+37143,0.0001099861,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.0002436566,PM2.5 Primary (Filt + Cond),TON
+37143,0.0003888551,Sulfur Dioxide,TON
+37125,0.036713,Sulfur Dioxide,TON
+37125,0.6293627,Volatile Organic Compounds,TON
+37125,6.539736e-05,Chromium (VI),LB
+37125,0.04183338,Acenaphthylene,LB
+37125,0.0006556122,Mercury,LB
+37109,0.4251607,Carbon Monoxide,TON
+37109,0.0002098203,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.0383025,Nitrogen Oxides,TON
+37109,0.0007878272,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.00169845,Acenaphthylene,LB
+37099,0.6219882,"2,2,4-Trimethylpentane",LB
+37099,0.006077369,Ammonia,TON
+37099,0.008268387,PM10 Primary (Filt + Cond),TON
+37099,0.07558532,"1,3-Butadiene",LB
+37099,0.5733952,Hexane,LB
+37013,0.02728074,Arsenic,LB
+37013,1.9858748,Fluorene,LB
+37013,0.1479171,Ammonia,TON
+37013,33.13473,Nitrogen Oxides,TON
+37013,0.08545788,Sulfur Dioxide,TON
+37013,2.706138,Pyrene,LB
+37013,2.063682,Fluoranthene,LB
+37007,0.19024406,Hexane,LB
+37007,0.3620458,Propionaldehyde,LB
+37007,0.002209746,Nickel,LB
+37007,0.005243488,PM10 Primary (Filt + Cond),TON
+37009,6.619802,Xylenes (Mixed Isomers),LB
+37009,1.238206e-05,Chromium (VI),LB
+37009,0.003650292,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.2658662,Acenaphthene,LB
+37009,0.003016003,Nitrous Oxide,TON
+37009,0.003413116,Sulfate Portion of PM2.5-PRI,TON
+37003,3.122064,Toluene,LB
+37003,0.14591432,Anthracene,LB
+37003,0.3489668,Pyrene,LB
+37003,0.00291429,Sulfate Portion of PM2.5-PRI,TON
+37001,0.548917,Ethyl Benzene,LB
+37001,0.8847706,Propionaldehyde,LB
+37001,0.09213874,Acenaphthylene,LB
+37001,0.013445242,Benzo[a]Pyrene,LB
+37001,0.0436753,Benz[a]Anthracene,LB
+37001,0.05480552,Acenaphthene,LB
+37001,0.005744029,Methane,TON
+37057,0.0013420514,Mercury,LB
+37057,1.035973,Naphthalene,LB
+37057,2419.027,Carbon Dioxide,TON
+37057,0.05324287,PM2.5 Primary (Filt + Cond),TON
+37057,0.01649496,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.07352615,Sulfur Dioxide,TON
+37057,0.03877654,Pyrene,LB
+37041,0.000283408,Chrysene,LB
+37041,1.346145,Benzene,LB
+37041,4.944794,Acetaldehyde,LB
+37007,0.376619,Ethyl Benzene,LB
+37007,0.017933512,Styrene,LB
+37007,1.6801792,Toluene,LB
+37007,8.346278e-06,Chromium (VI),LB
+37007,0.0007254814,Benzo[k]Fluoranthene,LB
+37007,0.06323137,Nitrogen Oxides,TON
+37003,6.957582,Naphthalene,LB
+37003,2.870438,Carbon Monoxide,TON
+37003,0.3458122,Acenaphthylene,LB
+37003,1.2072558e-05,Mercury,LB
+37003,27.5955,Acetaldehyde,LB
+37003,0.205714,Acenaphthene,LB
+37007,66.0214,Styrene,LB
+37007,0.00390193,Chromium (VI),LB
+37007,1.3959992,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,1.3939682,Benzo[a]Pyrene,LB
+37007,0.328828,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.0491812,Sulfate Portion of PM2.5-PRI,TON
+37007,0.940772,Styrene,LB
+37007,0.03419214,Anthracene,LB
+37007,98.32646,Xylenes (Mixed Isomers),LB
+37007,1.6908412e-05,Chromium (VI),LB
+37007,0.010262668,Benzo[k]Fluoranthene,LB
+37007,0.013095584,Benzo[a]Pyrene,LB
+37007,0.003240702,Arsenic,LB
+37007,0.03273884,Methane,TON
+37007,636.5962,Carbon Dioxide,TON
+37019,6.115322,"1,3-Butadiene",LB
+37019,1.4393466,Pyrene,LB
+37019,11.643716,Xylenes (Mixed Isomers),LB
+37019,0.005356808,"Benzo[g,h,i,]Perylene",LB
+37019,0.02213578,Benzo[b]Fluoranthene,LB
+37019,17.502058,Benzene,LB
+37019,0.0703218,Manganese,LB
+37019,0.008057232,Arsenic,LB
+37019,80.50682,Acetaldehyde,LB
+37019,20.35032,Naphthalene,LB
+37019,0.3866389,PM25-Primary from certain diesel engines,TON
+37013,2.484134,Acetaldehyde,LB
+37013,0.9082706,"1,3-Butadiene",LB
+37013,0.012344234,Pyrene,LB
+37013,0.01081504,Fluoranthene,LB
+37005,3.060514,Ethyl Benzene,LB
+37005,3.90974,Hexane,LB
+37005,0.0016806058,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,3.957078,"2,2,4-Trimethylpentane",LB
+37005,0.0005704233,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.0016963558,Benzo[a]Pyrene,LB
+37199,0.0005070796,Manganese,LB
+37199,0.000476617,Ammonia,TON
+37199,2.978846e-05,Nitrate portion of PM2.5-PRI,TON
+37199,0.0001727385,Sulfur Dioxide,TON
+37199,0.08303572,Ethyl Benzene,LB
+37199,0.1770714,Toluene,LB
+37199,0.06314628,Hexane,LB
+37199,0.00012876112,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.17230458,"1,3-Butadiene",LB
+37191,0.003605181,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.02193722,Anthracene,LB
+37189,8.222348,Acetaldehyde,LB
+37189,0.13903768,Phenanthrene,LB
+37189,1.325999,Naphthalene,LB
+37189,0.001558825,Ammonia,TON
+37137,4.314474,Hexane,LB
+37137,0.1292636,Naphthalene,LB
+37137,0.002197961,Methane,TON
+37137,0.0008777555,Nitrous Oxide,TON
+37137,0.0002787068,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,2357.34,Carbon Monoxide,TON
+37127,18.31498,Ammonia,TON
+37127,3.553709,Organic Carbon portion of PM2.5-PRI,TON
+37127,192.12946,Styrene,LB
+37127,1284.0758,"1,3-Butadiene",LB
+37127,9132.14,Hexane,LB
+37127,14.255422,Pyrene,LB
+37127,0.017473664,Chromium (VI),LB
+37127,5.762416,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,3.16995,Chrysene,LB
+37127,8076.24,"2,2,4-Trimethylpentane",LB
+37111,0.711429,"1,3-Butadiene",LB
+37111,0.0766435,Anthracene,LB
+37111,0.004418582,Benzo[b]Fluoranthene,LB
+37111,22.86904,Formaldehyde,LB
+37111,2.118792,Benzene,LB
+37111,2.473804,Naphthalene,LB
+37111,651.0883,Carbon Dioxide,TON
+37111,0.016646868,"Benzo[g,h,i,]Perylene",LB
+37111,0.02076962,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.011156652,"Dibenzo[a,h]Anthracene",LB
+37111,149.66452,Acetaldehyde,LB
+37111,5445.412,Carbon Dioxide,TON
+37119,0.05447478,Benzo[b]Fluoranthene,LB
+37119,0.05234252,Chrysene,LB
+37119,0.0017508226,"Dibenzo[a,h]Anthracene",LB
+37119,211.006,Benzene,LB
+37119,0.1355174,Manganese,LB
+37119,5.849213,Nitrogen Oxides,TON
+37113,6.48479,Carbon Monoxide,TON
+37113,23.17855,Nitrogen Oxides,TON
+37113,0.05667762,Benzo[b]Fluoranthene,LB
+37113,0.00775958,Benzo[k]Fluoranthene,LB
+37113,0.3633714,Chrysene,LB
+37113,223.868,Formaldehyde,LB
+37113,21.5629,Benzene,LB
+37113,2.936914,Phenanthrene,LB
+37113,25.03294,Naphthalene,LB
+37109,92.371,Ethyl Benzene,LB
+37109,0.9526698,Chrysene,LB
+37109,9.619812,Acenaphthene,LB
+37109,2.439708,PM10-Primary from certain diesel engines,TON
+37109,0.4846972,Ammonia,TON
+37107,3.328432,Pyrene,LB
+37107,0.3620103,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.1941275,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.01472012,Methane,TON
+37103,0.3613217,Volatile Organic Compounds,TON
+37103,2.961282,"1,3-Butadiene",LB
+37103,0.0883651,"Benzo[g,h,i,]Perylene",LB
+37103,0.02309976,Chrysene,LB
+37103,30.25496,Formaldehyde,LB
+37103,0.005922788,Manganese,LB
+37103,0.06825403,Ammonia,TON
+37103,0.0009986195,Sulfate Portion of PM2.5-PRI,TON
+37099,2119.538,"2,2,4-Trimethylpentane",LB
+37095,4.900338,Hexane,LB
+37095,1.064803,Pyrene,LB
+37095,0.0010297392,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,1.133544,Acenaphthylene,LB
+37095,194.8392,Formaldehyde,LB
+37095,4.745482,"2,2,4-Trimethylpentane",LB
+37095,85.9947,Acetaldehyde,LB
+37095,3.967645,Nitrogen Oxides,TON
+37095,0.005116076,Sulfate Portion of PM2.5-PRI,TON
+37083,680.4862,Formaldehyde,LB
+37083,1.2461134,Benz[a]Anthracene,LB
+37083,4.161415,PM10 Primary (Filt + Cond),TON
+37083,19.87035,"1,3-Butadiene",LB
+37083,51.26628,Acrolein,LB
+37083,22.43822,Ethyl Benzene,LB
+37083,0.9269568,Chrysene,LB
+37083,4.62518,Fluorene,LB
+37083,2.004479,PM10-Primary from certain diesel engines,TON
+37087,275.5936,Xylenes (Mixed Isomers),LB
+37087,5.671968e-05,Chromium (VI),LB
+37087,0.06566304,Benz[a]Anthracene,LB
+37087,0.1357179,PM2.5 Primary (Filt + Cond),TON
+37083,584.9166,Hexane,LB
+37083,1695.3844,Xylenes (Mixed Isomers),LB
+37083,0.7984252,Acenaphthene,LB
+37071,4.587026,Acenaphthene,LB
+37071,20594.77,Carbon Dioxide,TON
+37071,0.02065479,Nitrate portion of PM2.5-PRI,TON
+37071,0.1793339,Sulfur Dioxide,TON
+37071,84.68924,Toluene,LB
+37071,81.26702,Xylenes (Mixed Isomers),LB
+37071,7.712812,Acenaphthylene,LB
+37071,0.04877718,"Dibenzo[a,h]Anthracene",LB
+37071,17169.722,Xylenes (Mixed Isomers),LB
+37071,133.6575,Volatile Organic Compounds,TON
+37069,3.683266,"2,2,4-Trimethylpentane",LB
+37069,2.046314,Carbon Monoxide,TON
+37069,0.0004244231,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.00298534,Nitrous Oxide,TON
+37069,0.002062421,Sulfur Dioxide,TON
+37055,2.137818,Acrolein,LB
+37055,0.2897766,Pyrene,LB
+37055,8.154302e-06,Chromium (VI),LB
+37055,2.561876,Benzene,LB
+37055,0.01650389,Methane,TON
+37055,0.1173529,PM10 Primary (Filt + Cond),TON
+37055,0.01534373,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,9.201825,Volatile Organic Compounds,TON
+37051,0.08721522,Styrene,LB
+37051,7.14499e-06,Chromium (VI),LB
+37051,0.015427006,"Benzo[g,h,i,]Perylene",LB
+37051,1.608931,Formaldehyde,LB
+37051,0.00573181,Benzo[a]Pyrene,LB
+37051,0.004805506,Manganese,LB
+37051,0.2150256,Naphthalene,LB
+37051,1.759323,Carbon Monoxide,TON
+37039,2.525852,"1,3-Butadiene",LB
+37039,0.2778418,Anthracene,LB
+37039,1.471588e-05,Chromium (VI),LB
+37039,33.77874,Acetaldehyde,LB
+37039,8.527626,Naphthalene,LB
+37039,0.001011525,Nitrate portion of PM2.5-PRI,TON
+37039,0.07930916,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.2516412,PM10 Primary (Filt + Cond),TON
+37041,0.008609146,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.03698147,PM2.5 Primary (Filt + Cond),TON
+37041,0.001114833,Sulfate Portion of PM2.5-PRI,TON
+37041,0.5811994,"1,3-Butadiene",LB
+37041,0.444412,Hexane,LB
+37041,0.0004482416,"Benzo[g,h,i,]Perylene",LB
+37041,0.0004408762,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.005806656,Benzo[a]Pyrene,LB
+37041,0.000237586,"Dibenzo[a,h]Anthracene",LB
+37041,0.005981473,Methane,TON
+37037,0.002950562,Benzo[k]Fluoranthene,LB
+37037,0.02634902,Acenaphthylene,LB
+37037,0.00272346,Benz[a]Anthracene,LB
+37037,0.0007039802,Nickel,LB
+37037,3.139645,Carbon Monoxide,TON
+37037,0.0009276833,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.008818808,Ammonia,TON
+37037,0.1075067,Volatile Organic Compounds,TON
+37037,35.50994,Naphthalene,LB
+37037,0.0008140912,Nitrate portion of PM2.5-PRI,TON
+37037,401.8108,Ethyl Benzene,LB
+37037,2256.278,Toluene,LB
+37037,0.0006079872,Chromium (VI),LB
+37031,0.015291004,Fluoranthene,LB
+37031,0.002662224,Chrysene,LB
+37031,0.002686982,Benz[a]Anthracene,LB
+37031,3.851722e-05,Mercury,LB
+37031,0.0004802758,Nickel,LB
+37031,0.00460223,Methane,TON
+37029,0.0006382896,Nickel,LB
+37029,0.04230566,Phenanthrene,LB
+37029,0.001918779,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.0008461933,Sulfur Dioxide,TON
+37029,0.2750392,Acrolein,LB
+37029,0.270686,Toluene,LB
+37029,0.011859264,Anthracene,LB
+37029,0.00814759,Benz[a]Anthracene,LB
+37029,34.17518,Formaldehyde,LB
+37029,0.0008705284,"Dibenzo[a,h]Anthracene",LB
+37029,5.799808,Naphthalene,LB
+37029,0.05707061,Nitrous Oxide,TON
+37025,1.8931314,Acenaphthene,LB
+37025,36441.19,Carbon Dioxide,TON
+37025,0.002608227,Nitrate portion of PM2.5-PRI,TON
+37025,0.3905701,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,32.54264,Volatile Organic Compounds,TON
+37025,0.5458222,Benzo[b]Fluoranthene,LB
+37025,2.767918,Fluoranthene,LB
+37025,0.017041302,"Dibenzo[a,h]Anthracene",LB
+37023,0.003784356,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,62.30064,Formaldehyde,LB
+37023,0.002035584,"Dibenzo[a,h]Anthracene",LB
+37023,0.2646745,PM10 Primary (Filt + Cond),TON
+37169,0.7878932,"2,2,4-Trimethylpentane",LB
+37169,5.275722e-05,Mercury,LB
+37169,0.004856527,Methane,TON
+37169,76.23236,Carbon Dioxide,TON
+37107,0.0006628102,Benzo[k]Fluoranthene,LB
+37107,0.0012586552,Benzo[a]Pyrene,LB
+37107,0.5872246,"2,2,4-Trimethylpentane",LB
+37107,6.160224,Acetaldehyde,LB
+37107,0.001038092,Fluorene,LB
+37107,0.001507659,Nitrous Oxide,TON
+37175,1.2200328e-05,Chrysene,LB
+37175,1.5715312e-05,Benzo[a]Pyrene,LB
+37175,0.1686322,Carbon Dioxide,TON
+37175,0.0011060844,Styrene,LB
+37175,7.67896e-05,Pyrene,LB
+37175,2.380248e-09,Chromium (VI),LB
+37175,0.001017405,Nitrogen Oxides,TON
+37175,3.784184e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.3685506,Anthracene,LB
+37171,0.00017125072,Chromium (VI),LB
+37171,0.004292952,"Dibenzo[a,h]Anthracene",LB
+37171,0.8705216,Fluorene,LB
+37171,0.2000281,Methane,TON
+37171,0.02702732,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.3591301,Ammonia,TON
+37171,5.686745,Nitrogen Oxides,TON
+37171,0.005628548,Sulfate Portion of PM2.5-PRI,TON
+37161,11.823688,"1,3-Butadiene",LB
+37161,31.70966,Acrolein,LB
+37161,0.00968535,"Dibenzo[a,h]Anthracene",LB
+37161,0.0428935,Arsenic,LB
+37161,179.57654,Acetaldehyde,LB
+37161,15646.17,Carbon Dioxide,TON
+37161,1.829765,PM10-Primary from certain diesel engines,TON
+37161,0.1330865,Sulfur Dioxide,TON
+37159,0.03529232,Manganese,LB
+37161,131.99696,Styrene,LB
+37161,7.915346,"Benzo[g,h,i,]Perylene",LB
+37161,8.924393,Ammonia,TON
+37155,71367.66,Xylenes (Mixed Isomers),LB
+37155,176.16618,Phenanthrene,LB
+37155,441629.3,Carbon Dioxide,TON
+37155,35.666,Ammonia,TON
+37155,0.04064202,Nitrate portion of PM2.5-PRI,TON
+37155,7.561974,Organic Carbon portion of PM2.5-PRI,TON
+37155,32.26714,PM10 Primary (Filt + Cond),TON
+37153,3.622372,Formaldehyde,LB
+37153,0.00011877116,"Dibenzo[a,h]Anthracene",LB
+37153,12.597112,Benzene,LB
+37153,0.0005869548,Nickel,LB
+37153,3.069154,Acetaldehyde,LB
+37153,0.013776352,"Benzo[g,h,i,]Perylene",LB
+37153,0.001029961,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.006786365,Ammonia,TON
+37153,1.958675e-05,Nitrate portion of PM2.5-PRI,TON
+37153,0.003460878,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.005392527,Sulfur Dioxide,TON
+37151,0.0482943,Pyrene,LB
+37151,8.722872e-06,Chromium (VI),LB
+37151,15.872628,"2,2,4-Trimethylpentane",LB
+37151,33.28608,Benzene,LB
+37151,0.15699066,Phenanthrene,LB
+37151,0.01273329,Ammonia,TON
+37007,1.9334694,Acenaphthene,LB
+37007,11.80554,Nitrogen Oxides,TON
+37007,14.030054,Hexane,LB
+37007,0.007931262,"Benzo[g,h,i,]Perylene",LB
+37007,13.574166,"2,2,4-Trimethylpentane",LB
+37007,0.4189518,Benz[a]Anthracene,LB
+37019,4.716352,Styrene,LB
+37019,8.15408,Hexane,LB
+37019,3.538128,Pyrene,LB
+37019,0.01612007,"Benzo[g,h,i,]Perylene",LB
+37019,0.01149499,Arsenic,LB
+37019,35.76108,Naphthalene,LB
+37011,0.05631762,Styrene,LB
+37011,0.001983953,Anthracene,LB
+37011,0.04993,Propionaldehyde,LB
+37011,2.199722e-05,"Dibenzo[a,h]Anthracene",LB
+37011,0.00231593,Acenaphthene,LB
+37011,0.004691312,Fluorene,LB
+37011,0.0001830703,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,1.2384518,Fluorene,LB
+37009,0.04673592,Methane,TON
+37009,0.7458202,PM25-Primary from certain diesel engines,TON
+37009,0.1817846,Organic Carbon portion of PM2.5-PRI,TON
+37003,10.409654,Hexane,LB
+37003,0.2415042,Propionaldehyde,LB
+37003,0.018637602,Pyrene,LB
+37003,0.016334936,Fluoranthene,LB
+37003,0.003088378,Benzo[k]Fluoranthene,LB
+37003,3.464036e-06,Mercury,LB
+37003,3.699802,Carbon Monoxide,TON
+37003,0.001881983,Organic Carbon portion of PM2.5-PRI,TON
+37003,5.784226e-05,Sulfate Portion of PM2.5-PRI,TON
+37085,0.0044368,Phenanthrene,LB
+37085,0.9961986,Carbon Monoxide,TON
+37085,0.006281075,Ammonia,TON
+37085,0.18719236,Propionaldehyde,LB
+37085,0.004680922,"Benzo[g,h,i,]Perylene",LB
+37085,4.037568e-05,"Dibenzo[a,h]Anthracene",LB
+37085,0.8792656,"2,2,4-Trimethylpentane",LB
+37085,0.0007955774,Benz[a]Anthracene,LB
+37067,9.749738,Ethyl Benzene,LB
+37061,0.8855182,Ethyl Benzene,LB
+37061,0.009119452,"Benzo[g,h,i,]Perylene",LB
+37061,0.00342631,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.001789711,Benzo[k]Fluoranthene,LB
+37061,1.812436,"2,2,4-Trimethylpentane",LB
+37061,0.0767969,Naphthalene,LB
+37013,1.7947602,Ethyl Benzene,LB
+37199,0.2089482,Ethyl Benzene,LB
+37199,0.4863348,Acrolein,LB
+37199,0.15947322,Hexane,LB
+37199,0.000262684,"Benzo[g,h,i,]Perylene",LB
+37199,0.0450912,Fluoranthene,LB
+37199,0.0001750997,"Dibenzo[a,h]Anthracene",LB
+37199,0.002789032,Manganese,LB
+37199,144.9932,Carbon Dioxide,TON
+37199,0.002213898,Ammonia,TON
+37199,0.0011429,Sulfate Portion of PM2.5-PRI,TON
+37199,2.28013e-05,Phenanthrene,LB
+37199,4.947235e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37199,7.079352e-06,Pyrene,LB
+37199,6.210552e-06,Fluoranthene,LB
+37193,0.03291014,Acrolein,LB
+37193,0.2803064,Hexane,LB
+37193,0.0002909956,Anthracene,LB
+37193,0.6525332,Formaldehyde,LB
+37193,0.8366468,Benzene,LB
+37193,39.32351,Carbon Dioxide,TON
+37193,0.001195227,Sulfur Dioxide,TON
+37193,3140.056,"1,3-Butadiene",LB
+37193,102.66364,Acenaphthylene,LB
+37193,0.02125461,Nitrate portion of PM2.5-PRI,TON
+37193,0.1936623,Sulfate Portion of PM2.5-PRI,TON
+37185,0.02159532,"1,3-Butadiene",LB
+37185,0.451619,Xylenes (Mixed Isomers),LB
+37185,0.0003556518,Fluoranthene,LB
+37185,0.0002268096,Acenaphthene,LB
+37185,0.011799122,Naphthalene,LB
+37185,0.0001260001,Methane,TON
+37185,7.160325e-07,Nitrate portion of PM2.5-PRI,TON
+37185,0.003541261,Volatile Organic Compounds,TON
+37187,9.203024e-06,Mercury,LB
+37187,2.386184,Toluene,LB
+37187,0.1859466,Pyrene,LB
+37187,0.0004680772,"Benzo[g,h,i,]Perylene",LB
+37187,0.8798262,"2,2,4-Trimethylpentane",LB
+37187,8.01963e-07,Chromium (VI),LB
+37187,0.009295874,Acenaphthylene,LB
+37187,0.01110172,Phenanthrene,LB
+37187,0.001100664,Methane,TON
+37187,0.087097,Nitrogen Oxides,TON
+37187,3.867758,Xylenes (Mixed Isomers),LB
+37179,1.5021674,Ethyl Benzene,LB
+37179,0.07024676,Styrene,LB
+37179,0.004768998,Pyrene,LB
+37179,0.002803034,Benzo[k]Fluoranthene,LB
+37179,0.00242533,Benz[a]Anthracene,LB
+37179,8.034872,Benzene,LB
+37179,0.002428496,Acenaphthene,LB
+37179,0.1267082,Naphthalene,LB
+37179,0.001590335,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.02537557,Ammonia,TON
+37177,3.698428e-06,Fluoranthene,LB
+37177,1.1265514e-05,Acenaphthylene,LB
+37177,8.932754e-07,Chrysene,LB
+37177,1.7901068e-07,Manganese,LB
+37177,5.893932e-05,Styrene,LB
+37177,2.137326e-06,Anthracene,LB
+37177,5.556524e-07,Ammonia,TON
+37187,9.441354,Toluene,LB
+37187,3.987422e-05,Chromium (VI),LB
+37187,0.932282,Fluoranthene,LB
+37187,0.003668448,Benzo[k]Fluoranthene,LB
+37187,3.348024,"2,2,4-Trimethylpentane",LB
+37187,11.881706,Benzene,LB
+37187,3.996928e-05,Mercury,LB
+37187,0.866754,Fluorene,LB
+37183,3.28765,Propionaldehyde,LB
+37183,0.000728191,"Dibenzo[a,h]Anthracene",LB
+37183,0.0212719,Nickel,LB
+37183,0.0001341059,Nitrate portion of PM2.5-PRI,TON
+37177,3.954872e-05,"Benzo[g,h,i,]Perylene",LB
+37177,0.0001970392,Ammonia,TON
+37177,0.04508094,Nitrogen Oxides,TON
+37177,0.0008927156,Organic Carbon portion of PM2.5-PRI,TON
+37177,7.780179e-05,Sulfur Dioxide,TON
+37193,2853.608,Hexane,LB
+37193,56.26175,Volatile Organic Compounds,TON
+37023,6.288112,Propionaldehyde,LB
+37023,0.8893572,Pyrene,LB
+37023,0.013323278,Benzo[b]Fluoranthene,LB
+37023,116.4665,Formaldehyde,LB
+37023,11.056944,Benzene,LB
+37023,2.226904e-05,Mercury,LB
+37023,0.00465621,Arsenic,LB
+37023,50.91796,Acetaldehyde,LB
+37023,0.3988206,PM10 Primary (Filt + Cond),TON
+37173,2.302736,Styrene,LB
+37173,1.1192894,Fluorene,LB
+37173,5.574708,Carbon Monoxide,TON
+37173,0.7766778,PM2.5 Primary (Filt + Cond),TON
+37167,18.67162,Propionaldehyde,LB
+37167,0.013820662,"Benzo[g,h,i,]Perylene",LB
+37167,10.938072,"2,2,4-Trimethylpentane",LB
+37167,35.61128,Benzene,LB
+37167,1.635105,PM10-Primary from certain diesel engines,TON
+37167,0.003903953,Nitrate portion of PM2.5-PRI,TON
+37167,40.55681,Nitrogen Oxides,TON
+37139,0.03978076,Acenaphthylene,LB
+37139,14.61598,Carbon Dioxide,TON
+37131,7.140088,Hexane,LB
+37131,0.003368818,Benzo[k]Fluoranthene,LB
+37131,4.848002,"2,2,4-Trimethylpentane",LB
+37131,215.973,Carbon Dioxide,TON
+37131,0.02133293,PM10 Primary (Filt + Cond),TON
+37125,0.005222278,Arsenic,LB
+37125,0.1529193,Elemental Carbon portion of PM2.5-PRI,TON
+37125,6.080448,Nitrogen Oxides,TON
+37125,0.07271385,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.01075327,Sulfur Dioxide,TON
+37125,0.2339328,Chrysene,LB
+37113,0.05887452,Benzo[b]Fluoranthene,LB
+37113,123.36364,Acetaldehyde,LB
+37113,3.357634,Phenanthrene,LB
+37113,30.9858,Naphthalene,LB
+37113,0.009758265,Nitrous Oxide,TON
+37113,0.02679639,Sulfate Portion of PM2.5-PRI,TON
+37109,0.0323654,Chrysene,LB
+37109,22.94662,Formaldehyde,LB
+37109,0.017116124,Benzo[a]Pyrene,LB
+37109,0.14898896,Fluorene,LB
+37109,2.4,Naphthalene,LB
+37109,0.1165147,PM10-Primary from certain diesel engines,TON
+37109,0.06813582,Elemental Carbon portion of PM2.5-PRI,TON
+37109,2.104596,Nitrogen Oxides,TON
+37105,0.003143826,Benzo[b]Fluoranthene,LB
+37105,0.000438067,Benzo[k]Fluoranthene,LB
+37105,0.010534876,Benzo[a]Pyrene,LB
+37105,0.0004349652,"Dibenzo[a,h]Anthracene",LB
+37105,0.002736574,Nickel,LB
+37105,0.04607646,Acenaphthene,LB
+37105,519.5203,Carbon Dioxide,TON
+37105,0.1156275,PM10 Primary (Filt + Cond),TON
+37097,2.959008,Acrolein,LB
+37097,2.304292,Toluene,LB
+37097,0.0019769888,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.001061658,Benzo[k]Fluoranthene,LB
+37097,0.2132558,Acenaphthylene,LB
+37097,0.2682738,Fluorene,LB
+37097,0.08511604,PM25-Primary from certain diesel engines,TON
+37095,0.02353772,Styrene,LB
+37095,0.08896946,Propionaldehyde,LB
+37095,0.016838124,Pyrene,LB
+37095,5.864522e-07,Chromium (VI),LB
+37095,0.005428256,Acenaphthene,LB
+37089,0.2555148,Methane,TON
+37089,5.54376,Nitrogen Oxides,TON
+37079,0.6822378,Phenanthrene,LB
+37079,0.0007353386,Nitrate portion of PM2.5-PRI,TON
+37079,0.1856498,PM10 Primary (Filt + Cond),TON
+37079,1.8409062,Ethyl Benzene,LB
+37079,1.8177934,"1,3-Butadiene",LB
+37079,3.664362,Toluene,LB
+37079,0.003118816,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.07948844,Chrysene,LB
+37075,0.5393802,Nitrogen Oxides,TON
+37075,0.008614296,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.01525482,PM2.5 Primary (Filt + Cond),TON
+37075,52.94616,Benzene,LB
+37075,0.001889826,Nickel,LB
+37075,0.032356,Ammonia,TON
+37075,1.511892e-05,Chromium (VI),LB
+37075,0.1770842,Acenaphthylene,LB
+37075,0.01110582,Chrysene,LB
+37075,0.01143503,Benz[a]Anthracene,LB
+37059,16.756894,Ethyl Benzene,LB
+37059,38.94812,Acrolein,LB
+37059,37.16408,Toluene,LB
+37059,4.796208,Pyrene,LB
+37059,46.61768,Benzene,LB
+37059,0.00014970678,Mercury,LB
+37059,216.9238,Acetaldehyde,LB
+37059,0.1480075,Ammonia,TON
+37059,0.05539532,Sulfur Dioxide,TON
+37065,3.243444e-06,Nickel,LB
+37065,0.00088833,Fluorene,LB
+37065,0.007965796,Volatile Organic Compounds,TON
+37065,0.006909822,Acrolein,LB
+37065,1.014919,Xylenes (Mixed Isomers),LB
+37065,0.0001949361,Benzo[a]Pyrene,LB
+37059,0.11693106,Manganese,LB
+37059,0.049592,Nickel,LB
+37059,464.861,Hexane,LB
+37057,31105.92,"2,2,4-Trimethylpentane",LB
+37057,87.37306,Fluorene,LB
+37057,2239.786,Naphthalene,LB
+37057,36.3266,Ammonia,TON
+37055,2.957358,Hexane,LB
+37055,0.9427968,Fluoranthene,LB
+37055,0.3043118,Benz[a]Anthracene,LB
+37055,3.525745,Carbon Monoxide,TON
+37055,0.001640156,Nitrate portion of PM2.5-PRI,TON
+37055,4.298428,Nitrogen Oxides,TON
+37055,0.006691274,Sulfur Dioxide,TON
+37055,0.003128078,"Benzo[g,h,i,]Perylene",LB
+37055,2.69777e-05,"Dibenzo[a,h]Anthracene",LB
+37055,0.002022428,Manganese,LB
+37055,0.003930737,Ammonia,TON
+37055,0.001805938,Sulfur Dioxide,TON
+37043,1.1044608,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.9076904,Benzo[b]Fluoranthene,LB
+37043,1276.7466,Acetaldehyde,LB
+37043,7.631552,Fluorene,LB
+37043,0.2800628,Elemental Carbon portion of PM2.5-PRI,TON
+37043,100.4715,Nitrogen Oxides,TON
+37033,0.1336522,Propionaldehyde,LB
+37033,0.002371312,Chrysene,LB
+37033,0.0001691776,Nickel,LB
+37033,0.006485498,Acenaphthene,LB
+37033,0.0354851,Phenanthrene,LB
+37025,93.95984,Acrolein,LB
+37025,79.03374,Toluene,LB
+37025,13.361304,Pyrene,LB
+37025,10.043564,Fluoranthene,LB
+37025,0.0427163,Benzo[k]Fluoranthene,LB
+37025,3.927872,Acenaphthene,LB
+37025,6.159535,PM10-Primary from certain diesel engines,TON
+37027,1.5436858,Arsenic,LB
+37027,2.316014,Chrysene,LB
+37027,2161.988,Formaldehyde,LB
+37023,3.079287,PM10-Primary from certain diesel engines,TON
+37023,0.02964002,Nitrous Oxide,TON
+37023,70.72449,Nitrogen Oxides,TON
+37179,301.034,Toluene,LB
+37179,0.10709134,Anthracene,LB
+37179,0.006749538,Arsenic,LB
+37179,0.03606281,Sulfur Dioxide,TON
+37149,0.05028072,Anthracene,LB
+37149,1.0924352,Xylenes (Mixed Isomers),LB
+37149,0.0005591336,"Benzo[g,h,i,]Perylene",LB
+37149,0.017272832,Chrysene,LB
+37149,0.00342505,Nickel,LB
+37149,0.0013274788,Arsenic,LB
+37149,0.08367386,PM10-Primary from certain diesel engines,TON
+37149,0.0004328419,Nitrous Oxide,TON
+37149,0.1017225,PM10 Primary (Filt + Cond),TON
+37161,0.02240184,Acrolein,LB
+37161,0.03065468,Propionaldehyde,LB
+37161,0.4609252,Formaldehyde,LB
+37161,7.300208e-05,Manganese,LB
+37161,8.60648e-07,Mercury,LB
+37161,0.4554958,Acetaldehyde,LB
+37161,0.00287999,Fluorene,LB
+37161,0.001543843,Methane,TON
+37161,5.808239,Carbon Dioxide,TON
+37161,0.0001492241,Ammonia,TON
+37147,1.1890242e-06,Mercury,LB
+37147,0.11918984,Naphthalene,LB
+37147,0.6872557,Carbon Monoxide,TON
+37147,4.791419,Carbon Dioxide,TON
+37147,0.04183734,Volatile Organic Compounds,TON
+37147,0.03616746,Acrolein,LB
+37147,0.010454424,Acenaphthylene,LB
+37147,0.7440958,Formaldehyde,LB
+37147,1.9951554e-05,"Dibenzo[a,h]Anthracene",LB
+37147,14.329278,Ethyl Benzene,LB
+37147,22.2819,Hexane,LB
+37147,0.008026952,Benzo[k]Fluoranthene,LB
+37147,8.214948,Acetaldehyde,LB
+37147,0.01364471,Methane,TON
+37147,1.109475,Nitrogen Oxides,TON
+37143,0.15240358,Ethyl Benzene,LB
+37143,0.0002057034,Anthracene,LB
+37143,9.99153e-05,Chrysene,LB
+37143,0.205038,"2,2,4-Trimethylpentane",LB
+37143,0.0004766458,Fluorene,LB
+37143,0.0001020304,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.2540188,Pyrene,LB
+37131,0.005870466,Benzo[b]Fluoranthene,LB
+37131,0.6203394,"2,2,4-Trimethylpentane",LB
+37131,8.233804e-06,Mercury,LB
+37131,0.00410189,Nickel,LB
+37131,301.056,Carbon Dioxide,TON
+37131,0.07468789,PM10-Primary from certain diesel engines,TON
+37131,1.112784,Nitrogen Oxides,TON
+37131,0.09801593,PM10 Primary (Filt + Cond),TON
+37131,0.3282844,Styrene,LB
+37131,1.87222,Acrolein,LB
+37111,277.5432,Toluene,LB
+37111,1.388542,Volatile Organic Compounds,TON
+37119,1.136515,Acrolein,LB
+37119,0.08398036,Fluoranthene,LB
+37119,0.02302638,Chrysene,LB
+37119,0.02482686,Benz[a]Anthracene,LB
+37119,64.14994,Benzene,LB
+37119,14.619724,Acetaldehyde,LB
+37119,2304.349,Carbon Dioxide,TON
+37119,0.03258687,Nitrous Oxide,TON
+37119,0.02825095,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.000517404,Pyrene,LB
+37109,0.6929646,Acenaphthene,LB
+37109,0.05672654,Chrysene,LB
+37109,0.010577152,Benzo[a]Pyrene,LB
+37109,0.18183564,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.6771544,Fluoranthene,LB
+37109,0.02252432,Nickel,LB
+37107,1.128655e-05,Nitrate portion of PM2.5-PRI,TON
+37107,0.001793952,Sulfur Dioxide,TON
+37107,0.019706022,Pyrene,LB
+37107,0.003556056,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,3.508134,Benz[a]Anthracene,LB
+37097,0.6926954,Manganese,LB
+37097,141.84686,Naphthalene,LB
+37097,1.558081,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.2029837,Sulfur Dioxide,TON
+37099,0.000231172,Chromium (VI),LB
+37099,0.4715882,Chrysene,LB
+37099,0.810408,Benz[a]Anthracene,LB
+37099,0.0003053106,Mercury,LB
+37099,0.5527631,Methane,TON
+37089,11.193386,Benzene,LB
+37137,0.2489034,Acenaphthene,LB
+37137,0.1636207,Benz[a]Anthracene,LB
+37123,18.104152,"2,2,4-Trimethylpentane",LB
+37123,0.1571468,Ammonia,TON
+37123,0.0019390298,Benzo[k]Fluoranthene,LB
+37123,0.05904418,Anthracene,LB
+37123,0.013828438,Benz[a]Anthracene,LB
+37123,10.834366,Acetaldehyde,LB
+37123,0.2054476,Phenanthrene,LB
+37123,3.001971e-05,Nitrate portion of PM2.5-PRI,TON
+37115,3.023126,Styrene,LB
+37115,6.92327,"1,3-Butadiene",LB
+37115,0.01145907,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.006174752,Benzo[k]Fluoranthene,LB
+37115,1.1754382,Acenaphthylene,LB
+37115,0.06147354,Manganese,LB
+37115,0.00267691,Nitrate portion of PM2.5-PRI,TON
+37113,6.221084e-05,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.02392852,"1,3-Butadiene",LB
+37113,0.0003179926,Fluoranthene,LB
+37113,0.00011499688,Benzo[a]Pyrene,LB
+37113,3.041216e-05,Manganese,LB
+37113,5.144992e-07,Mercury,LB
+37113,0.06590918,Acetaldehyde,LB
+37113,0.01112904,Naphthalene,LB
+37107,4.14175,Styrene,LB
+37107,9.396184,"1,3-Butadiene",LB
+37107,20.60066,Toluene,LB
+37107,0.0016622252,"Dibenzo[a,h]Anthracene",LB
+37107,7.509962,"2,2,4-Trimethylpentane",LB
+37107,128.26972,Acetaldehyde,LB
+37107,0.3411046,PM10-Primary from certain diesel engines,TON
+37107,0.03082184,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.008118044,Sulfur Dioxide,TON
+37105,2.20262,Ethyl Benzene,LB
+37105,0.0016857258,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,66.49878,Formaldehyde,LB
+37105,1.6764926,"2,2,4-Trimethylpentane",LB
+37105,0.2141878,Acenaphthene,LB
+37105,0.4058504,Fluorene,LB
+37097,15.788894,Ethyl Benzene,LB
+37097,35.1741,Toluene,LB
+37097,0.624616,Chrysene,LB
+37097,480.4108,Formaldehyde,LB
+37097,3425.921,Carbon Dioxide,TON
+37097,1.148193,PM10-Primary from certain diesel engines,TON
+37097,1.620383,PM10 Primary (Filt + Cond),TON
+37097,0.03033479,Sulfate Portion of PM2.5-PRI,TON
+37101,4318.012,Ethyl Benzene,LB
+37099,1.6967718,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,4.467522,Fluoranthene,LB
+37099,1.6911466,Benzo[a]Pyrene,LB
+37099,1.3948206,Manganese,LB
+37099,1093.875,Acetaldehyde,LB
+37099,66159.89,Carbon Dioxide,TON
+37099,1.266822,Nitrous Oxide,TON
+37099,0.716699,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.005766716,Benzo[k]Fluoranthene,LB
+37093,90.91528,Acetaldehyde,LB
+37093,0.0091335,Nitrous Oxide,TON
+37093,0.1023451,Ammonia,TON
+37093,5.984572,"1,3-Butadiene",LB
+37091,4.34072,Ethyl Benzene,LB
+37091,14.415488,Hexane,LB
+37085,0.0007368964,Anthracene,LB
+37085,0.0003205846,Benz[a]Anthracene,LB
+37085,0.8130274,Benzene,LB
+37085,0.0011883896,Acenaphthene,LB
+37085,0.00551125,Phenanthrene,LB
+37085,0.006244266,Naphthalene,LB
+37085,0.003721962,Ammonia,TON
+37079,9.019974e-07,Nickel,LB
+37079,0.007505668,PM10 Primary (Filt + Cond),TON
+37081,143.15772,Propionaldehyde,LB
+37081,3.202688,Chrysene,LB
+37081,1.6337912,Benzo[a]Pyrene,LB
+37081,0.5672432,Nickel,LB
+37081,33.08806,Phenanthrene,LB
+37081,13.10236,PM10-Primary from certain diesel engines,TON
+37081,3.507896,"1,3-Butadiene",LB
+37081,0.02021538,Benzo[k]Fluoranthene,LB
+37081,11.159244,Formaldehyde,LB
+37081,0.0008058482,"Dibenzo[a,h]Anthracene",LB
+37081,0.003828996,Nickel,LB
+37081,0.06831294,Fluorene,LB
+37081,0.0001125697,Nitrate portion of PM2.5-PRI,TON
+37079,1.497285,Benzo[b]Fluoranthene,LB
+37079,5.175254,Ammonia,TON
+37079,0.005554542,Nitrate portion of PM2.5-PRI,TON
+37079,0.5266414,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.05327687,Sulfate Portion of PM2.5-PRI,TON
+37077,0.00011406194,Manganese,LB
+37077,0.9171753,Carbon Monoxide,TON
+37077,0.0538506,Styrene,LB
+37077,0.03488906,Acrolein,LB
+37077,0.002007488,Anthracene,LB
+37077,0.04774414,Propionaldehyde,LB
+37077,0.003635746,Fluoranthene,LB
+37069,15.520006,Ethyl Benzene,LB
+37069,11.671324,"1,3-Butadiene",LB
+37069,33.68452,Acrolein,LB
+37069,20.31906,Propionaldehyde,LB
+37069,3.49778,Pyrene,LB
+37069,485.2184,Formaldehyde,LB
+37069,0.010434144,"Dibenzo[a,h]Anthracene",LB
+37069,40.79802,Benzene,LB
+37069,0.0002908294,Mercury,LB
+37069,0.004463337,Nitrate portion of PM2.5-PRI,TON
+37069,53.13807,Nitrogen Oxides,TON
+37069,2.065016,PM2.5 Primary (Filt + Cond),TON
+37069,0.0013622706,"Benzo[g,h,i,]Perylene",LB
+37069,0.006838148,Benzo[b]Fluoranthene,LB
+37069,0.043364,Chrysene,LB
+37069,0.02293222,Benzo[a]Pyrene,LB
+37069,0.0733335,Benz[a]Anthracene,LB
+37069,0.003809244,Sulfate Portion of PM2.5-PRI,TON
+37061,0.6291466,Chrysene,LB
+37061,0.0745046,Nickel,LB
+37061,12.7272,Carbon Monoxide,TON
+37061,0.008158976,Nitrous Oxide,TON
+37061,0.03829799,Sulfate Portion of PM2.5-PRI,TON
+37055,1.5430282e-05,"Benzo[g,h,i,]Perylene",LB
+37055,4.054282e-06,Benzo[k]Fluoranthene,LB
+37055,3.996828e-06,Benz[a]Anthracene,LB
+37055,2.573458e-05,Fluorene,LB
+37055,3.265369e-06,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.8829994,Xylenes (Mixed Isomers),LB
+37055,0.00017661734,Benzo[b]Fluoranthene,LB
+37055,3.904228e-05,Manganese,LB
+37055,2.79345,Carbon Dioxide,TON
+37049,5.052148e-08,"Dibenzo[a,h]Anthracene",LB
+37049,1.104586e-06,Methane,TON
+37049,0.001329219,Carbon Monoxide,TON
+37049,7.811619e-07,Nitrous Oxide,TON
+37045,136.8724,Nitrogen Oxides,TON
+37045,54.44146,Ethyl Benzene,LB
+37045,0.03937602,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,5.415976,Acenaphthylene,LB
+37045,1.8071824,Benz[a]Anthracene,LB
+37039,1.593265,Fluoranthene,LB
+37039,1.122457,Acenaphthylene,LB
+37039,191.23396,Formaldehyde,LB
+37039,18.462104,Benzene,LB
+37039,0.0319774,Nickel,LB
+37039,0.667552,Acenaphthene,LB
+37039,0.04510255,Methane,TON
+37039,0.9216833,PM2.5 Primary (Filt + Cond),TON
+37039,0.02590365,Sulfur Dioxide,TON
+37039,1.152933,Volatile Organic Compounds,TON
+37045,13.089416,Propionaldehyde,LB
+37045,16.614804,Xylenes (Mixed Isomers),LB
+37045,0.01399271,Sulfate Portion of PM2.5-PRI,TON
+37033,0.001669022,Nickel,LB
+37033,0.02819848,Acenaphthene,LB
+37033,0.10412628,Phenanthrene,LB
+37033,0.04069876,PM25-Primary from certain diesel engines,TON
+37033,0.5725868,Xylenes (Mixed Isomers),LB
+37033,0.00037339,"Benzo[g,h,i,]Perylene",LB
+37033,0.0004586072,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.011729924,Chrysene,LB
+37033,0.004096149,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,25.2461,Ethyl Benzene,LB
+37033,42.33412,Propionaldehyde,LB
+37033,0.00016606458,Chromium (VI),LB
+37033,18.143744,"2,2,4-Trimethylpentane",LB
+37033,0.0001225834,Mercury,LB
+37033,2.65483,Acenaphthene,LB
+37031,2.353066e-05,Fluoranthene,LB
+37031,4.567084e-06,Chrysene,LB
+37031,0.005129192,Acetaldehyde,LB
+37195,0.003662636,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.0482224,Benzo[a]Pyrene,LB
+37195,2.758858e-05,Mercury,LB
+37195,0.0008373744,Nitrate portion of PM2.5-PRI,TON
+37195,0.2712058,PM10 Primary (Filt + Cond),TON
+37195,0.3530926,Volatile Organic Compounds,TON
+37195,27.31324,Xylenes (Mixed Isomers),LB
+37195,0.00011939858,Chromium (VI),LB
+37195,0.02399682,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.1720405,Manganese,LB
+37195,0.07097776,Sulfur Dioxide,TON
+37195,2.44729,Volatile Organic Compounds,TON
+37189,0.0002142366,Benzo[k]Fluoranthene,LB
+37189,0.0547526,Fluorene,LB
+37189,0.001158072,Ammonia,TON
+37189,0.003055139,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,782.3277,Carbon Monoxide,TON
+37183,21470.06,Carbon Dioxide,TON
+37183,0.2159828,Nitrous Oxide,TON
+37183,0.4130535,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.04510891,Sulfate Portion of PM2.5-PRI,TON
+37183,3.880512,"Benzo[g,h,i,]Perylene",LB
+37183,1.45797,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,4865.592,Benzene,LB
+37183,0.3681918,Manganese,LB
+37021,71.82794,Ethyl Benzene,LB
+37021,210.6924,Xylenes (Mixed Isomers),LB
+37021,0.423677,Benzo[b]Fluoranthene,LB
+37021,0.0008255392,Mercury,LB
+37021,0.266379,Nickel,LB
+37021,905.7584,Acetaldehyde,LB
+37021,12.875118,Fluorene,LB
+37021,69932.74,Carbon Dioxide,TON
+37017,2.472286,Acenaphthene,LB
+37017,0.6830738,PM10-Primary from certain diesel engines,TON
+37017,24.31214,"1,3-Butadiene",LB
+37017,3.217238,Fluoranthene,LB
+37017,0.0527942,Benzo[a]Pyrene,LB
+37015,0.2662164,Styrene,LB
+37015,0.6061824,"1,3-Butadiene",LB
+37015,1.00433,Propionaldehyde,LB
+37015,0.5045154,"2,2,4-Trimethylpentane",LB
+37015,0.005879348,Manganese,LB
+37015,215.2289,Carbon Dioxide,TON
+37015,0.00664413,Ammonia,TON
+37015,0.006755212,Benzo[b]Fluoranthene,LB
+37015,0.008098794,Nickel,LB
+37015,25.16578,Acetaldehyde,LB
+37015,0.2041348,Acenaphthene,LB
+37015,2.204138,Carbon Monoxide,TON
+37015,0.1296139,PM25-Primary from certain diesel engines,TON
+37015,0.001017075,Nitrous Oxide,TON
+37015,0.3478981,Volatile Organic Compounds,TON
+37013,0.002286962,Sulfate Portion of PM2.5-PRI,TON
+37013,6.684689,Volatile Organic Compounds,TON
+37013,0.0555774,Benzo[k]Fluoranthene,LB
+37013,0.009372384,Nickel,LB
+37003,0.015491468,Styrene,LB
+37003,3.97282e-05,Manganese,LB
+37003,9.80836e-06,Arsenic,LB
+37003,6.337018e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.01689115,Nitrogen Oxides,TON
+37067,0.007424214,Benzo[k]Fluoranthene,LB
+37067,0.005560396,Chrysene,LB
+37067,0.0008215252,Mercury,LB
+37067,0.2675002,Naphthalene,LB
+37067,0.04927801,Methane,TON
+37067,0.03481579,Sulfur Dioxide,TON
+37067,0.0007330601,Sulfate Portion of PM2.5-PRI,TON
+37027,0.007984232,Ammonia,TON
+37027,0.06412364,Nitrogen Oxides,TON
+37027,0.004300685,Sulfur Dioxide,TON
+37027,0.2057048,Propionaldehyde,LB
+37027,0.00095658,Benzo[k]Fluoranthene,LB
+37177,0.01912596,Volatile Organic Compounds,TON
+37133,0.001804642,Mercury,LB
+37133,205.9592,Acetaldehyde,LB
+37133,0.1545753,Methane,TON
+37133,0.04938507,Nitrous Oxide,TON
+37133,2.05664,Nitrogen Oxides,TON
+37133,0.06623521,PM2.5 Primary (Filt + Cond),TON
+37133,1.7816414,Acrolein,LB
+37133,0.03409796,Pyrene,LB
+37133,0.00018001216,Chromium (VI),LB
+37069,5.988688e-05,Anthracene,LB
+37069,0.008572146,"1,3-Butadiene",LB
+37069,0.12819452,Toluene,LB
+37069,7.998126e-05,Acenaphthene,LB
+37069,0.0004395768,Phenanthrene,LB
+37069,0.0005000876,Naphthalene,LB
+37069,0.2392249,Methane,TON
+37069,0.001896989,PM2.5 Primary (Filt + Cond),TON
+37069,0.02515454,Volatile Organic Compounds,TON
+37053,1.5590874,Hexane,LB
+37053,0.2280844,Pyrene,LB
+37053,6.066748,Xylenes (Mixed Isomers),LB
+37053,3.752934e-05,Mercury,LB
+37053,0.007847034,Arsenic,LB
+37053,0.004247569,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,149.96442,Propionaldehyde,LB
+37053,0.005402134,Chromium (VI),LB
+37053,2497.618,Acetaldehyde,LB
+37053,7.42411,Acenaphthene,LB
+37053,385.4176,Naphthalene,LB
+37051,0.0656792,Nickel,LB
+37051,1598.3472,Ethyl Benzene,LB
+37051,28.69458,Styrene,LB
+37051,5957.9,Xylenes (Mixed Isomers),LB
+37047,0.6785294,Hexane,LB
+37047,0.14307782,Acenaphthylene,LB
+37047,0.0356425,Chrysene,LB
+37047,0.1838245,Fluorene,LB
+37041,0.00334524,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,5.652384,Benzene,LB
+37041,0.4328894,Fluorene,LB
+37041,0.3506738,Volatile Organic Compounds,TON
+37031,19.28238,Toluene,LB
+37031,0.004790142,Ammonia,TON
+37031,0.0009473481,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.002264545,Sulfur Dioxide,TON
+37017,2.885906,"2,2,4-Trimethylpentane",LB
+37017,0.01466688,Manganese,LB
+37017,0.02793762,Ammonia,TON
+37017,3.736922,"1,3-Butadiene",LB
+37017,0.0004458104,Benzo[k]Fluoranthene,LB
+37019,4.884404,Toluene,LB
+37019,0.00371282,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,63.63136,Formaldehyde,LB
+37019,1.6811262,"2,2,4-Trimethylpentane",LB
+37019,0.005230276,Arsenic,LB
+37019,0.4202412,Fluorene,LB
+37019,0.04145976,Methane,TON
+37019,1.437704,Carbon Monoxide,TON
+37019,0.05867791,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.02656064,Ammonia,TON
+37019,0.007381224,Sulfur Dioxide,TON
+37015,0.009008594,Manganese,LB
+37015,1.822427,Nitrogen Oxides,TON
+37015,0.02983877,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.01835834,Sulfur Dioxide,TON
+37015,0.5822358,Acenaphthylene,LB
+37167,0.000321619,Arsenic,LB
+37167,0.0010442582,Naphthalene,LB
+37021,16.050232,Benzene,LB
+37021,14.474456,Toluene,LB
+37021,0.007813958,"Benzo[g,h,i,]Perylene",LB
+37021,1.2710576,Fluoranthene,LB
+37021,0.1406645,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.5682034,Styrene,LB
+37017,46.60982,Formaldehyde,LB
+37017,1.2398046,"2,2,4-Trimethylpentane",LB
+37017,4.14879,Benzene,LB
+37017,0.1320594,Acenaphthene,LB
+37017,0.03334575,Methane,TON
+37017,0.00229082,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,40.399,Ethyl Benzene,LB
+37021,1.9178974,Acrolein,LB
+37021,0.03626034,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.02458728,Chrysene,LB
+37021,38.37048,"2,2,4-Trimethylpentane",LB
+37021,0.08284312,Acenaphthene,LB
+37021,0.000137986,Nitrate portion of PM2.5-PRI,TON
+37011,5.67652,Benzene,LB
+37011,0.001991156,Nitrous Oxide,TON
+37011,0.1982082,Anthracene,LB
+37011,4.558188,Xylenes (Mixed Isomers),LB
+37011,9.307116e-06,Chromium (VI),LB
+37011,0.010757222,Benzo[b]Fluoranthene,LB
+37011,2.048155,Nitrogen Oxides,TON
+37011,0.02080343,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,20.19146,Toluene,LB
+37081,16.603076,Xylenes (Mixed Isomers),LB
+37081,0.05596448,"Benzo[g,h,i,]Perylene",LB
+37081,0.010814884,Benzo[b]Fluoranthene,LB
+37081,0.008091526,Chrysene,LB
+37081,11.825678,Formaldehyde,LB
+37081,9.471396,"2,2,4-Trimethylpentane",LB
+37081,0.070942,Methane,TON
+37081,0.005584236,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.00110699,Sulfate Portion of PM2.5-PRI,TON
+37071,22.99746,Xylenes (Mixed Isomers),LB
+37071,5.653388,Benzene,LB
+37071,0.5186663,Volatile Organic Compounds,TON
+37051,8.840466,Hexane,LB
+37051,0.7258113,Volatile Organic Compounds,TON
+37043,0.003274134,Pyrene,LB
+37043,0.00813569,Acenaphthylene,LB
+37043,1.760419,Carbon Monoxide,TON
+37041,0.3371564,Benzene,LB
+37031,4.86474e-05,"Dibenzo[a,h]Anthracene",LB
+37031,1.2602246,"2,2,4-Trimethylpentane",LB
+37031,2.98222,Benzene,LB
+37031,10.502898,Acetaldehyde,LB
+37031,9.869714e-06,Nitrate portion of PM2.5-PRI,TON
+37031,0.07334142,Nitrogen Oxides,TON
+37037,0.002050214,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.0009232598,Benz[a]Anthracene,LB
+37037,2.858164,Benzene,LB
+37037,0.001155444,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,9.100183e-05,Sulfate Portion of PM2.5-PRI,TON
+37135,11.80475,Carbon Monoxide,TON
+37135,0.2192676,Styrene,LB
+37135,0.01061879,Benzo[k]Fluoranthene,LB
+37135,0.0202894,Benzo[a]Pyrene,LB
+37129,4.669274,Hexane,LB
+37103,0.065553,Styrene,LB
+37103,1.8776786,Hexane,LB
+37103,0.01215414,"Benzo[g,h,i,]Perylene",LB
+37103,0.0018586984,Chrysene,LB
+37103,2.285656,"2,2,4-Trimethylpentane",LB
+37103,26.64526,Acetaldehyde,LB
+37103,0.004590386,Fluorene,LB
+37175,1.2486772,Benzo[a]Pyrene,LB
+37175,0.8981912,Benz[a]Anthracene,LB
+37175,0.02634134,Mercury,LB
+37175,16.403648,Phenanthrene,LB
+37175,1.32842,Nitrous Oxide,TON
+37175,2.584592,Anthracene,LB
+37175,0.00262743,Chromium (VI),LB
+37167,25001.46,Toluene,LB
+37167,7.956864,Fluoranthene,LB
+37167,1.837633,Benzo[k]Fluoranthene,LB
+37167,1.71364,Chrysene,LB
+37167,0.06215462,"Dibenzo[a,h]Anthracene",LB
+37167,1954.052,Acetaldehyde,LB
+37167,96367.88,Carbon Dioxide,TON
+37167,2.750056,Nitrous Oxide,TON
+37167,9.419098,PM10 Primary (Filt + Cond),TON
+37155,0.2257838,Fluoranthene,LB
+37155,0.00315895,"Dibenzo[a,h]Anthracene",LB
+37155,0.016382964,Arsenic,LB
+37155,0.2959546,Fluorene,LB
+37155,0.06983224,Sulfur Dioxide,TON
+37155,0.004466101,Sulfate Portion of PM2.5-PRI,TON
+37155,2.690207,Volatile Organic Compounds,TON
+37155,16.557996,"1,3-Butadiene",LB
+37149,0.008212776,Arsenic,LB
+37149,0.03699526,Methane,TON
+37149,1.016454,PM10 Primary (Filt + Cond),TON
+37149,0.004518456,Benzo[k]Fluoranthene,LB
+37149,0.004510278,"Dibenzo[a,h]Anthracene",LB
+37153,2.164582,Anthracene,LB
+37153,41.89544,Propionaldehyde,LB
+37153,0.00017721552,Chromium (VI),LB
+37153,0.00014358086,Mercury,LB
+37153,45.65884,Carbon Monoxide,TON
+37153,0.02125975,Sulfate Portion of PM2.5-PRI,TON
+37143,0.1185739,Styrene,LB
+37143,0.272142,"1,3-Butadiene",LB
+37143,0.0461669,Acenaphthylene,LB
+37143,0.013273014,Chrysene,LB
+37143,0.006985418,Benzo[a]Pyrene,LB
+37143,0.0002853954,"Dibenzo[a,h]Anthracene",LB
+37143,0.0274708,Acenaphthene,LB
+37143,110.112,Carbon Dioxide,TON
+37143,0.008498367,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.0009409145,Sulfur Dioxide,TON
+37137,2.117468,"2,2,4-Trimethylpentane",LB
+37137,0.0143637,Nickel,LB
+37137,32.70734,Acetaldehyde,LB
+37137,0.4648578,Fluorene,LB
+37137,8.06994,Nitrogen Oxides,TON
+37131,0.01167578,PM10 Primary (Filt + Cond),TON
+37131,0.522352,"1,3-Butadiene",LB
+37131,0.04274894,Anthracene,LB
+37131,0.14829578,Phenanthrene,LB
+37131,0.003581584,PM25-Primary from certain diesel engines,TON
+37119,0.002067184,"Dibenzo[a,h]Anthracene",LB
+37119,99.1095,Benzene,LB
+37119,0.13732792,Arsenic,LB
+37119,0.05002095,Elemental Carbon portion of PM2.5-PRI,TON
+37119,1.9377658e-07,Chromium (VI),LB
+37119,0.00016499474,Manganese,LB
+37119,0.01203493,Nitrogen Oxides,TON
+37119,7.721483e-06,Sulfate Portion of PM2.5-PRI,TON
+37107,0.00128244,Ammonia,TON
+37107,0.01760173,PM2.5 Primary (Filt + Cond),TON
+37107,0.0004968532,Sulfate Portion of PM2.5-PRI,TON
+37107,0.5942536,Acrolein,LB
+37107,0.02687372,Anthracene,LB
+37107,0.0002229224,Benzo[k]Fluoranthene,LB
+37107,7.492946,Formaldehyde,LB
+37103,0.00013095792,"Benzo[g,h,i,]Perylene",LB
+37103,0.004120378,Chrysene,LB
+37103,0.00013478234,Arsenic,LB
+37103,0.05818645,Carbon Monoxide,TON
+37103,0.008038185,PM10-Primary from certain diesel engines,TON
+37103,0.0006446536,Ammonia,TON
+37103,3.659385e-05,Nitrate portion of PM2.5-PRI,TON
+37103,0.009863966,PM10 Primary (Filt + Cond),TON
+37099,2.107012,Hexane,LB
+37099,1.518651e-05,Mercury,LB
+37099,3.030598,Carbon Monoxide,TON
+37099,0.4974598,Volatile Organic Compounds,TON
+37097,39.6484,"1,3-Butadiene",LB
+37097,0.0004276728,Chromium (VI),LB
+37097,1.5817424,Fluoranthene,LB
+37097,237.9106,Acetaldehyde,LB
+37097,0.7462362,PM10 Primary (Filt + Cond),TON
+37097,0.01410882,Sulfate Portion of PM2.5-PRI,TON
+37095,4.940218,Xylenes (Mixed Isomers),LB
+37095,2.479576e-05,Chromium (VI),LB
+37095,50.74404,Formaldehyde,LB
+37095,0.1230895,Acenaphthene,LB
+37095,2495.384,Carbon Dioxide,TON
+37095,2.49775,Fluoranthene,LB
+37095,1213.1038,"2,2,4-Trimethylpentane",LB
+37095,0.4244064,Benz[a]Anthracene,LB
+37095,0.1744054,Arsenic,LB
+37095,5584.504,Toluene,LB
+37095,1262.4194,Hexane,LB
+37095,2.851326,Pyrene,LB
+37095,1.728336,Acenaphthene,LB
+37095,0.7409666,Nitrous Oxide,TON
+37095,28.80532,Volatile Organic Compounds,TON
+37085,4.817372,Ethyl Benzene,LB
+37085,0.00011849858,"Dibenzo[a,h]Anthracene",LB
+37085,0.007734058,Acenaphthene,LB
+37085,3.903749,Carbon Monoxide,TON
+37083,269.2062,Ethyl Benzene,LB
+37083,460.1952,Hexane,LB
+37083,0.2190866,Anthracene,LB
+37083,0.001038829,Mercury,LB
+37081,137.49422,Acrolein,LB
+37081,2.2039,Benzo[b]Fluoranthene,LB
+37081,0.08198542,Mercury,LB
+37081,2360.94,Acetaldehyde,LB
+37081,6.844276,Acenaphthene,LB
+37077,46.16362,Hexane,LB
+37077,6.668868,Pyrene,LB
+37077,138.209,Benzene,LB
+37077,167.1564,Naphthalene,LB
+37077,3.602003,PM2.5 Primary (Filt + Cond),TON
+37077,0.3536028,Sulfur Dioxide,TON
+37077,48.51636,Ethyl Benzene,LB
+37077,90.1421,Toluene,LB
+37077,0.004633988,Benzo[k]Fluoranthene,LB
+37077,0.004611232,"Dibenzo[a,h]Anthracene",LB
+37077,0.16640912,Manganese,LB
+37077,162.44034,Naphthalene,LB
+37077,30.5933,Nitrogen Oxides,TON
+37077,1.587723,PM10 Primary (Filt + Cond),TON
+37071,0.0005494487,Organic Carbon portion of PM2.5-PRI,TON
+37071,2.39841,Benzene,LB
+37071,0.05683775,Elemental Carbon portion of PM2.5-PRI,TON
+37071,4349.286,Xylenes (Mixed Isomers),LB
+37069,0.016452896,Chrysene,LB
+37069,20.79664,Formaldehyde,LB
+37069,0.0002109616,Mercury,LB
+37069,0.002630252,Nickel,LB
+37069,0.06637438,Acenaphthene,LB
+37067,183.80474,Toluene,LB
+37067,1.4287118,Benzo[a]Pyrene,LB
+37067,61.70818,"2,2,4-Trimethylpentane",LB
+37067,4.684534,Benz[a]Anthracene,LB
+37065,35.35134,Xylenes (Mixed Isomers),LB
+37065,1.446448,Volatile Organic Compounds,TON
+37061,0.01760496,Methane,TON
+37061,0.3357878,PM10-Primary from certain diesel engines,TON
+37061,0.3089333,PM25-Primary from certain diesel engines,TON
+37061,0.2102021,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.07020585,Organic Carbon portion of PM2.5-PRI,TON
+37061,0.442935,Anthracene,LB
+37061,1.0503018,Pyrene,LB
+37061,0.014668564,Benzo[b]Fluoranthene,LB
+37061,0.00200845,Benzo[k]Fluoranthene,LB
+37061,0.10983052,Chrysene,LB
+37061,131.57818,Formaldehyde,LB
+37061,0.2004676,Benz[a]Anthracene,LB
+37061,2.0039e-05,Mercury,LB
+37061,0.019075856,Nickel,LB
+37043,0.013616382,Ethyl Benzene,LB
+37043,0.000407022,Acrolein,LB
+37043,0.07969388,Toluene,LB
+37043,1.6772182e-08,Mercury,LB
+37043,2.091182e-07,Nickel,LB
+37043,4.631906e-06,Organic Carbon portion of PM2.5-PRI,TON
+37043,2.04862e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,10.72141,Benzene,LB
+37065,0.2948556,Propionaldehyde,LB
+37065,0.003300578,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.7494502,Ethyl Benzene,LB
+37065,0.0011673892,Anthracene,LB
+37065,0.003255556,Benzo[a]Pyrene,LB
+37065,0.00146135,Benz[a]Anthracene,LB
+37065,0.002172856,Nickel,LB
+37065,14.29638,Acetaldehyde,LB
+37065,0.0008665257,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.007892781,Sulfur Dioxide,TON
+37111,0.04667174,Naphthalene,LB
+37111,10.15112,Acetaldehyde,LB
+37111,0.2155222,Propionaldehyde,LB
+37111,0.002120064,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.002091998,Benzo[a]Pyrene,LB
+37111,4.86621e-05,"Dibenzo[a,h]Anthracene",LB
+37111,7.713207e-06,Nitrate portion of PM2.5-PRI,TON
+37111,0.001153487,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,9.288861e-05,Sulfate Portion of PM2.5-PRI,TON
+37169,0.07155558,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.3794168,Fluorene,LB
+37169,9.726088,Naphthalene,LB
+37169,2.2569,Nitrogen Oxides,TON
+37169,0.0393884,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.109875,PM10 Primary (Filt + Cond),TON
+37163,0.02802256,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,4.143676,Fluorene,LB
+37163,0.006466856,Nitrate portion of PM2.5-PRI,TON
+37149,0.4326044,Phenanthrene,LB
+37149,0.002267778,Arsenic,LB
+37149,0.2267036,Acenaphthene,LB
+37149,524.4057,Carbon Dioxide,TON
+37149,0.003328011,Sulfate Portion of PM2.5-PRI,TON
+37149,0.238349,Anthracene,LB
+37149,2.269322,Ethyl Benzene,LB
+37145,2.979556,Nitrogen Oxides,TON
+37145,0.08868831,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.03780315,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.5218046,Volatile Organic Compounds,TON
+37145,0.003879048,"Benzo[g,h,i,]Perylene",LB
+37145,0.002555968,"Dibenzo[a,h]Anthracene",LB
+37145,0.04418927,Methane,TON
+37145,1.2649788,Styrene,LB
+37145,6.557306,Toluene,LB
+37199,0.8735365,PM2.5 Primary (Filt + Cond),TON
+37199,0.4380349,Sulfur Dioxide,TON
+37199,33.48847,Volatile Organic Compounds,TON
+37199,37.81732,Acrolein,LB
+37199,0.5260584,Chrysene,LB
+37199,1460.2808,"2,2,4-Trimethylpentane",LB
+37199,0.1912608,Nickel,LB
+37187,0.06279271,PM10-Primary from certain diesel engines,TON
+37187,0.03892315,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.5954294,"2,2,4-Trimethylpentane",LB
+37185,5198.444,Toluene,LB
+37181,0.00705481,Chrysene,LB
+37181,0.016974662,Acenaphthene,LB
+37181,0.01393353,PM10-Primary from certain diesel engines,TON
+37181,6.291155e-05,Nitrate portion of PM2.5-PRI,TON
+37181,0.005072829,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.11433128,Pyrene,LB
+37181,0.03067168,Benzo[b]Fluoranthene,LB
+37181,0.04980372,Benzo[a]Pyrene,LB
+37181,0.0011506782,"Dibenzo[a,h]Anthracene",LB
+37181,0.02864494,Benz[a]Anthracene,LB
+37181,0.13402476,Fluorene,LB
+37181,0.02794822,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.1304617,PM10 Primary (Filt + Cond),TON
+37169,0.01123035,"1,3-Butadiene",LB
+37169,0.000259151,Acenaphthylene,LB
+37169,0.000200404,Arsenic,LB
+37169,0.0001125276,Acenaphthene,LB
+37169,0.2956442,"1,3-Butadiene",LB
+37169,0.03201828,Anthracene,LB
+37169,0.8045746,Xylenes (Mixed Isomers),LB
+37169,10.158996,Formaldehyde,LB
+37169,0.02115316,Benz[a]Anthracene,LB
+37169,0.0007589478,Arsenic,LB
+37169,0.004980785,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,12764.66,Benzene,LB
+37169,4489.766,Acetaldehyde,LB
+37169,71.38106,Phenanthrene,LB
+37169,1.06123,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.0118182,Nitrate portion of PM2.5-PRI,TON
+37169,3.222474,Benzo[k]Fluoranthene,LB
+37169,0.0910437,"Dibenzo[a,h]Anthracene",LB
+37169,1.17161,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,226.7879,Volatile Organic Compounds,TON
+37165,0.1272308,Acrolein,LB
+37165,0.0015065336,Manganese,LB
+37165,1.2562618e-05,Mercury,LB
+37165,0.00011666012,Acenaphthene,LB
+37165,64.70178,Carbon Dioxide,TON
+37165,0.003868586,PM2.5 Primary (Filt + Cond),TON
+37165,0.004944042,Chromium (VI),LB
+37165,96080.15,Carbon Dioxide,TON
+37165,2.845549,Nitrous Oxide,TON
+37165,2.014731,Sulfur Dioxide,TON
+37165,110.4537,Volatile Organic Compounds,TON
+37165,30.20468,Acenaphthylene,LB
+37165,6.633986,Acenaphthene,LB
+37155,7.808594e-05,Mercury,LB
+37155,15.20863,Carbon Monoxide,TON
+37155,0.3172335,PM10-Primary from certain diesel engines,TON
+37155,0.003602604,"Benzo[g,h,i,]Perylene",LB
+37155,0.09166158,Chrysene,LB
+37161,364.7986,Propionaldehyde,LB
+37161,15.145832,"Benzo[g,h,i,]Perylene",LB
+37161,80.54034,Acenaphthylene,LB
+37161,4.569834,Chrysene,LB
+37161,5561.072,Formaldehyde,LB
+37161,9.141918,Methane,TON
+37161,3.158696,Organic Carbon portion of PM2.5-PRI,TON
+37161,16.15888,PM10 Primary (Filt + Cond),TON
+37161,1.934237,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,5.016777e-06,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.004132628,"1,3-Butadiene",LB
+37143,0.02444656,Hexane,LB
+37143,2.18424e-09,Chromium (VI),LB
+37143,4.11633e-05,Fluoranthene,LB
+37143,7.483596e-06,Chrysene,LB
+37143,9.676484e-06,Benzo[a]Pyrene,LB
+37141,0.018561834,"Dibenzo[a,h]Anthracene",LB
+37141,0.2042614,Manganese,LB
+37141,0.2908777,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.013221682,Benzo[b]Fluoranthene,LB
+37139,37.51504,"2,2,4-Trimethylpentane",LB
+37139,0.2471212,Phenanthrene,LB
+37139,2.361248,Naphthalene,LB
+37139,1.683277,Nitrogen Oxides,TON
+37139,0.07344172,PM10 Primary (Filt + Cond),TON
+37137,0.0001475364,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.14249508,Propionaldehyde,LB
+37137,0.2273984,Xylenes (Mixed Isomers),LB
+37137,0.262943,Benzene,LB
+37137,0.0005040652,Nickel,LB
+37137,0.008610538,Acenaphthene,LB
+37137,0.3081022,Naphthalene,LB
+37137,78.30698,Carbon Dioxide,TON
+37133,14.8717,Methane,TON
+37133,5538.663,Carbon Monoxide,TON
+37133,36.35777,PM10 Primary (Filt + Cond),TON
+37133,11.34161,PM2.5 Primary (Filt + Cond),TON
+37133,3360.392,"1,3-Butadiene",LB
+37133,81803.16,Toluene,LB
+37133,0.02283682,Chromium (VI),LB
+37129,0.9868618,Acrolein,LB
+37129,34.59212,Hexane,LB
+37129,0.03424614,"Benzo[g,h,i,]Perylene",LB
+37129,15.236884,Formaldehyde,LB
+37129,0.01699004,Nitrous Oxide,TON
+37129,0.02252483,Ammonia,TON
+37127,25.30466,Hexane,LB
+37127,47.65224,Propionaldehyde,LB
+37127,0.0003338994,Mercury,LB
+37127,0.6997776,Methane,TON
+37127,3.752898,PM10 Primary (Filt + Cond),TON
+37125,156.80976,Acrolein,LB
+37125,0.0517812,Benzo[b]Fluoranthene,LB
+37125,0.007192394,Benzo[k]Fluoranthene,LB
+37125,0.6608108,Methane,TON
+37125,104.6315,Carbon Monoxide,TON
+37007,2.205214,Propionaldehyde,LB
+37007,0.03833694,Benzo[k]Fluoranthene,LB
+37007,0.0011966998,"Dibenzo[a,h]Anthracene",LB
+37007,0.006595246,Nickel,LB
+37077,0.0005419198,Mercury,LB
+37077,10.0308,Carbon Monoxide,TON
+37077,0.751155,Acrolein,LB
+37077,16.68178,Toluene,LB
+37077,15.157952,Xylenes (Mixed Isomers),LB
+37077,0.006725098,Chrysene,LB
+37077,0.0003864866,"Dibenzo[a,h]Anthracene",LB
+37053,2.524726,Ethyl Benzene,LB
+37053,1.0602122,Propionaldehyde,LB
+37053,8.984968,Xylenes (Mixed Isomers),LB
+37053,0.004466606,Benzo[b]Fluoranthene,LB
+37053,0.009931842,Manganese,LB
+37053,0.02489608,Phenanthrene,LB
+37053,0.03767968,Methane,TON
+37053,0.000349751,Sulfate Portion of PM2.5-PRI,TON
+37029,0.0008473256,Acenaphthylene,LB
+37029,0.0002737592,Nickel,LB
+37029,0.00018335176,Acenaphthene,LB
+37029,9.777178e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.0005491077,PM2.5 Primary (Filt + Cond),TON
+37029,1.557897e-05,Sulfate Portion of PM2.5-PRI,TON
+37029,0.01412799,Volatile Organic Compounds,TON
+37141,0.14918728,"1,3-Butadiene",LB
+37141,1.48702e-05,Chromium (VI),LB
+37141,0.0009915886,Chrysene,LB
+37141,3.559226,Benzene,LB
+37141,0.003652108,Manganese,LB
+37141,0.0001490721,Mercury,LB
+37141,0.001858765,Nickel,LB
+37141,0.00285003,Arsenic,LB
+37141,12.20567,Acetaldehyde,LB
+37141,0.01026498,Methane,TON
+37141,0.002523644,Nitrous Oxide,TON
+37141,0.01428363,PM10 Primary (Filt + Cond),TON
+37093,0.4002365,Volatile Organic Compounds,TON
+37093,0.7513086,"1,3-Butadiene",LB
+37093,12.21726,Xylenes (Mixed Isomers),LB
+37093,3.447904e-05,Chromium (VI),LB
+37093,0.00960347,Fluoranthene,LB
+37093,11.640504,Formaldehyde,LB
+37093,0.004258006,Benz[a]Anthracene,LB
+37091,0.5362732,Benzene,LB
+37091,0.0004395588,Nitrous Oxide,TON
+37091,0.001347886,Ammonia,TON
+37091,1.256493e-06,Nitrate portion of PM2.5-PRI,TON
+37091,0.001616484,PM10 Primary (Filt + Cond),TON
+37091,0.0005089397,PM2.5 Primary (Filt + Cond),TON
+37085,177.86504,Acrolein,LB
+37085,2.881766,Benzo[b]Fluoranthene,LB
+37085,2348.748,Formaldehyde,LB
+37085,8195.024,"2,2,4-Trimethylpentane",LB
+37085,2.796386,Benz[a]Anthracene,LB
+37085,2.394024,Arsenic,LB
+37085,0.01443859,Nitrate portion of PM2.5-PRI,TON
+37077,0.003911422,Arsenic,LB
+37077,0.3229754,Fluorene,LB
+37077,0.1318782,PM25-Primary from certain diesel engines,TON
+37077,0.005864838,Sulfur Dioxide,TON
+37077,3.642408,Xylenes (Mixed Isomers),LB
+37077,1.8707326e-05,Mercury,LB
+37077,21.4638,Formaldehyde,LB
+37077,0.1359623,PM10 Primary (Filt + Cond),TON
+37059,23.20744,"1,3-Butadiene",LB
+37059,152.41198,Toluene,LB
+37059,0.0232756,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.007464999,Nitrate portion of PM2.5-PRI,TON
+37059,85.90764,Nitrogen Oxides,TON
+37059,0.2571342,Sulfur Dioxide,TON
+37059,2.249714,Acenaphthene,LB
+37059,4.842504,Fluorene,LB
+37059,7.839294,Toluene,LB
+37059,7.845548,Xylenes (Mixed Isomers),LB
+37059,1.9967282e-05,Chromium (VI),LB
+37059,0.005661862,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,10.69343,Benzene,LB
+37059,1.480885e-05,Mercury,LB
+37059,49.43628,Acetaldehyde,LB
+37059,0.0472449,Methane,TON
+37057,1.2312112,Hexane,LB
+37057,3.358528e-08,Chromium (VI),LB
+37057,1.0082374,Benzene,LB
+37057,0.0002328389,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.18535648,"2,2,4-Trimethylpentane",LB
+37055,0.0016352612,Manganese,LB
+37055,0.002126028,Methane,TON
+37055,0.000441932,Sulfur Dioxide,TON
+37051,228.7418,Hexane,LB
+37051,0.4220342,"Benzo[g,h,i,]Perylene",LB
+37051,0.4173084,Fluoranthene,LB
+37051,0.17033168,Manganese,LB
+37051,0.02238688,Nickel,LB
+37051,80.79744,Acetaldehyde,LB
+37043,0.0003703606,Manganese,LB
+37043,3.85957,Hexane,LB
+37043,1.10354,Carbon Monoxide,TON
+37043,0.001067702,PM2.5 Primary (Filt + Cond),TON
+37043,0.0003131939,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,3.054746,Styrene,LB
+37039,18.211476,Acrolein,LB
+37039,1.5336376,Fluoranthene,LB
+37039,0.0223444,Arsenic,LB
+37039,7923.107,Carbon Dioxide,TON
+37039,0.1205766,Ammonia,TON
+37039,0.09516308,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.05596964,Chrysene,LB
+37039,0.008792618,Ammonia,TON
+37039,1.0223852,Styrene,LB
+37039,1.6186714,Hexane,LB
+37039,0.0018902326,"Benzo[g,h,i,]Perylene",LB
+37039,0.3973799,Volatile Organic Compounds,TON
+37025,1.5353708e-05,Benzo[b]Fluoranthene,LB
+37025,7.198884e-05,Pyrene,LB
+37025,5.3087e-07,"Dibenzo[a,h]Anthracene",LB
+37025,2.580718e-06,Nickel,LB
+37025,0.00220894,Naphthalene,LB
+37025,5.489858e-05,Methane,TON
+37025,0.001657587,Nitrogen Oxides,TON
+37025,0.0007104733,Volatile Organic Compounds,TON
+37171,0.0002005424,Anthracene,LB
+37171,8.010558e-05,Benz[a]Anthracene,LB
+37171,0.5866529,Nitrogen Oxides,TON
+37167,20.53344,Styrene,LB
+37167,0.00656677,"Dibenzo[a,h]Anthracene",LB
+37167,45.07448,Naphthalene,LB
+37167,0.2303047,Sulfur Dioxide,TON
+37167,14.93669,Volatile Organic Compounds,TON
+37161,1.0053624e-05,Propionaldehyde,LB
+37161,1.1668506e-06,"Benzo[g,h,i,]Perylene",LB
+37161,0.00016452656,Formaldehyde,LB
+37161,4.930978e-07,Acenaphthene,LB
+37161,0.0002530378,Carbon Monoxide,TON
+37141,4839.602,"2,2,4-Trimethylpentane",LB
+37141,28.10038,Phenanthrene,LB
+37141,9.441788,PM10 Primary (Filt + Cond),TON
+37141,3.406022,PM2.5 Primary (Filt + Cond),TON
+37141,3561.494,Ethyl Benzene,LB
+37141,119.45734,Styrene,LB
+37141,109.23002,Acrolein,LB
+37141,5535.222,Hexane,LB
+37141,97.7255,Propionaldehyde,LB
+37129,28.76886,Ethyl Benzene,LB
+37127,29.9253,Propionaldehyde,LB
+37127,0.00014065228,Mercury,LB
+37127,10136.39,Carbon Dioxide,TON
+37127,2.768167,PM10-Primary from certain diesel engines,TON
+37127,53.55638,Nitrogen Oxides,TON
+37127,0.2964112,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,1.0416422,"2,2,4-Trimethylpentane",LB
+37121,0.02022354,Methane,TON
+37121,0.004195769,Ammonia,TON
+37111,2.184768e-05,Nickel,LB
+37111,0.0008444118,Fluorene,LB
+37111,0.0002650773,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.006344261,Volatile Organic Compounds,TON
+37111,0.0006578012,Fluoranthene,LB
+37111,0.0002732666,Benzo[k]Fluoranthene,LB
+37113,0.0014837616,Benz[a]Anthracene,LB
+37113,4.08745,Hexane,LB
+37113,0.0014565374,Benzo[b]Fluoranthene,LB
+37113,0.283646,Naphthalene,LB
+37113,3.24159,Carbon Monoxide,TON
+37113,92.03303,Carbon Dioxide,TON
+37113,0.0004391171,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.002469844,Ammonia,TON
+37113,0.08118482,Volatile Organic Compounds,TON
+37101,6.423734,Propionaldehyde,LB
+37101,5.84712e-05,Mercury,LB
+37101,2209.016,Carbon Dioxide,TON
+37101,0.3698243,PM10-Primary from certain diesel engines,TON
+37101,0.3402438,PM25-Primary from certain diesel engines,TON
+37101,18.72302,Styrene,LB
+37101,13.47397,Pyrene,LB
+37101,0.0401925,"Dibenzo[a,h]Anthracene",LB
+37101,0.0006337408,Mercury,LB
+37101,0.01724233,Nitrate portion of PM2.5-PRI,TON
+37101,1.422515,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.08840121,Organic Carbon portion of PM2.5-PRI,TON
+37101,43.94666,Xylenes (Mixed Isomers),LB
+37101,220.4946,Benzene,LB
+37101,0.0014561878,Mercury,LB
+37101,120.02636,Ethyl Benzene,LB
+37101,442.7374,Xylenes (Mixed Isomers),LB
+37099,2.534676,Acrolein,LB
+37099,0.332011,Pyrene,LB
+37099,0.02571334,Benzo[a]Pyrene,LB
+37099,0.011446652,Manganese,LB
+37099,0.005034838,Nickel,LB
+37099,0.0004459704,Nitrate portion of PM2.5-PRI,TON
+37099,0.1288972,PM10 Primary (Filt + Cond),TON
+37015,0.0004569956,Manganese,LB
+37015,0.0003818307,Nitrous Oxide,TON
+37015,0.0003282956,Pyrene,LB
+37163,0.00479538,Ammonia,TON
+37163,0.00264787,Acenaphthylene,LB
+37163,1.0188452,Ethyl Benzene,LB
+37163,0.4063818,Propionaldehyde,LB
+37163,0.007799876,Acenaphthylene,LB
+37163,2.79444,Formaldehyde,LB
+37163,19.364994,Acetaldehyde,LB
+37163,2.71287,Carbon Monoxide,TON
+37163,0.00367847,Nitrous Oxide,TON
+37151,3.948638,Ethyl Benzene,LB
+37151,3.676994,Hexane,LB
+37151,13.385558,Xylenes (Mixed Isomers),LB
+37149,1.0551782e-06,Chromium (VI),LB
+37149,0.09356132,"2,2,4-Trimethylpentane",LB
+37105,0.005810118,Anthracene,LB
+37105,0.006440714,Nickel,LB
+37105,0.012537058,Fluorene,LB
+37105,0.04914968,Ammonia,TON
+37105,0.4228095,Volatile Organic Compounds,TON
+37017,0.1513369,Volatile Organic Compounds,TON
+37017,27.06224,Formaldehyde,LB
+37017,0.6156616,Carbon Monoxide,TON
+37017,0.07270286,PM25-Primary from certain diesel engines,TON
+37017,0.0273042,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.03179999,Organic Carbon portion of PM2.5-PRI,TON
+37007,2.466714,Toluene,LB
+37007,1.0412618,Hexane,LB
+37007,0.0007025812,"Dibenzo[a,h]Anthracene",LB
+37007,4.698258,Naphthalene,LB
+37007,0.1307967,PM10 Primary (Filt + Cond),TON
+37017,0.0004419684,Pyrene,LB
+37017,8.580564e-05,Chrysene,LB
+37017,0.00013887758,Benzo[a]Pyrene,LB
+37017,3.195326e-06,"Dibenzo[a,h]Anthracene",LB
+37017,0.0014255668,Phenanthrene,LB
+37017,0.0001718494,Methane,TON
+37017,5.044975,Carbon Dioxide,TON
+37017,4.213877e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.2848634,PM10 Primary (Filt + Cond),TON
+37003,0.03255508,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.727379,Pyrene,LB
+37003,0.00013419874,Chromium (VI),LB
+37003,0.09480306,Benzo[b]Fluoranthene,LB
+37003,0.10121192,Benz[a]Anthracene,LB
+37059,0.00587395,Anthracene,LB
+37059,0.012176944,Pyrene,LB
+37059,0.010157218,Manganese,LB
+37059,0.00686013,Arsenic,LB
+37047,0.299038,Styrene,LB
+37047,1.0530568,"1,3-Butadiene",LB
+37047,0.02014938,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.010694064,Benzo[k]Fluoranthene,LB
+37047,0.05857804,Phenanthrene,LB
+37047,0.008842985,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.3303472,Benzene,LB
+37125,0.001804307,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.004479982,PM2.5 Primary (Filt + Cond),TON
+37125,0.0010555014,Chrysene,LB
+37125,0.00452376,Manganese,LB
+37125,0.0011743898,Anthracene,LB
+37199,4525.206,"2,2,4-Trimethylpentane",LB
+37199,20965.82,Toluene,LB
+37199,1.727816,Chrysene,LB
+37199,13.868132,Fluorene,LB
+37199,52327.44,Carbon Dioxide,TON
+37197,107.30974,Xylenes (Mixed Isomers),LB
+37197,7.735824,Fluoranthene,LB
+37197,0.004839916,Benzo[k]Fluoranthene,LB
+37197,0.02522204,Nitrous Oxide,TON
+37197,0.1870888,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.08336337,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,10.40232,Volatile Organic Compounds,TON
+37197,15.88232,Ethyl Benzene,LB
+37195,0.3723952,Pyrene,LB
+37195,0.4008588,Acenaphthylene,LB
+37195,0.018325572,Manganese,LB
+37195,4.086556e-05,Mercury,LB
+37195,36.52516,Acetaldehyde,LB
+37195,7.197652,Toluene,LB
+37195,4.039242,Propionaldehyde,LB
+37193,0.02241692,Arsenic,LB
+37193,1.6656832,Phenanthrene,LB
+37193,0.6208218,Fluorene,LB
+37193,0.01996643,Nitrous Oxide,TON
+37193,0.0396606,Sulfur Dioxide,TON
+37193,0.003711429,Sulfate Portion of PM2.5-PRI,TON
+37187,57.84614,Toluene,LB
+37187,34.70148,Xylenes (Mixed Isomers),LB
+37187,0.0203438,Fluoranthene,LB
+37187,0.268557,Acrolein,LB
+37187,5.148028e-05,Mercury,LB
+37187,0.007746042,Ammonia,TON
+37181,8.106754e-05,Benzo[b]Fluoranthene,LB
+37181,0.008084083,Nitrogen Oxides,TON
+37181,6.920773e-05,Sulfur Dioxide,TON
+37181,4.989636e-07,Mercury,LB
+37189,3.448656,Pyrene,LB
+37189,0.015258,"Benzo[g,h,i,]Perylene",LB
+37189,0.07374926,Benzo[b]Fluoranthene,LB
+37189,0.010124624,Benzo[k]Fluoranthene,LB
+37189,1.909173,Acenaphthylene,LB
+37189,0.478908,Chrysene,LB
+37185,94.0972,Ethyl Benzene,LB
+37185,0.08787794,Anthracene,LB
+37185,0.0329687,Benzo[b]Fluoranthene,LB
+37185,38.8739,Formaldehyde,LB
+37185,0.0004415642,Mercury,LB
+37185,0.01139442,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.001403581,Sulfate Portion of PM2.5-PRI,TON
+37179,85524.22,Xylenes (Mixed Isomers),LB
+37179,28595.4,"2,2,4-Trimethylpentane",LB
+37179,37940.58,Benzene,LB
+37179,7894.804,Carbon Monoxide,TON
+37179,5.817537,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,768.333,Propionaldehyde,LB
+37193,0.02727004,Manganese,LB
+37193,2.690714,Hexane,LB
+37193,2.181716e-05,Chromium (VI),LB
+37193,0.08995424,Chrysene,LB
+37193,0.04110736,Benzo[a]Pyrene,LB
+37193,0.001678617,"Dibenzo[a,h]Anthracene",LB
+37193,2.610822,"2,2,4-Trimethylpentane",LB
+37193,0.05964285,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.0782624,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,14.282474,"1,3-Butadiene",LB
+37183,436.9512,Toluene,LB
+37183,0.0005847424,Mercury,LB
+37183,0.011179522,Arsenic,LB
+37183,0.985068,Phenanthrene,LB
+37183,0.1280792,PM2.5 Primary (Filt + Cond),TON
+37183,0.05687229,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.003955701,Sulfate Portion of PM2.5-PRI,TON
+37085,0.05283453,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.322944,PM10 Primary (Filt + Cond),TON
+37085,0.01091026,Sulfur Dioxide,TON
+37085,0.5666459,Volatile Organic Compounds,TON
+37085,2.409308,"2,2,4-Trimethylpentane",LB
+37085,3.179416,"1,3-Butadiene",LB
+37085,1262.636,Carbon Dioxide,TON
+37085,2.438922,Hexane,LB
+37085,0.002645644,"Benzo[g,h,i,]Perylene",LB
+37085,7.479972,Acenaphthene,LB
+37085,0.7422083,Methane,TON
+37085,2234.234,Formaldehyde,LB
+37085,1.875704,PM2.5 Primary (Filt + Cond),TON
+37067,6.294048e-05,Chromium (VI),LB
+37067,0.11863484,Benzo[a]Pyrene,LB
+37067,0.8965593,Volatile Organic Compounds,TON
+37067,2.053762,Styrene,LB
+37067,12.642344,Acrolein,LB
+37067,0.015308562,Arsenic,LB
+37067,0.4185552,PM25-Primary from certain diesel engines,TON
+37063,0.009739326,PM2.5 Primary (Filt + Cond),TON
+37053,0.003818603,Nitrous Oxide,TON
+37053,0.04307404,Ammonia,TON
+37053,0.04352324,Benzo[b]Fluoranthene,LB
+37053,1.7448294,Formaldehyde,LB
+37053,4.139608e-05,"Dibenzo[a,h]Anthracene",LB
+37053,28.36538,Toluene,LB
+37045,10.440094,Styrene,LB
+37045,0.0002684298,Mercury,LB
+37045,0.05612684,Arsenic,LB
+37045,9.501974,Phenanthrene,LB
+37045,0.7870535,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.2719405,Ammonia,TON
+37045,0.000245422,Chromium (VI),LB
+37045,0.04271178,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.023046,Benzo[k]Fluoranthene,LB
+37045,1.080178,Chrysene,LB
+37045,0.5624386,Benzo[a]Pyrene,LB
+37047,1.9855808,"Benzo[g,h,i,]Perylene",LB
+37047,0.4378682,Manganese,LB
+37045,0.04018828,Benzo[k]Fluoranthene,LB
+37045,440.6042,Toluene,LB
+37045,0.19181708,Pyrene,LB
+37045,0.0013792688,"Dibenzo[a,h]Anthracene",LB
+37045,95.82584,"2,2,4-Trimethylpentane",LB
+37045,119.60648,Benzene,LB
+37045,0.03242602,Manganese,LB
+37045,0.0004740882,Mercury,LB
+37045,36.34124,Acetaldehyde,LB
+37045,0.2298174,Fluorene,LB
+37045,0.0001891787,Nitrate portion of PM2.5-PRI,TON
+37045,0.02308667,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.1337,Naphthalene,LB
+37033,0.001817044,Methane,TON
+37033,0.002084501,PM2.5 Primary (Filt + Cond),TON
+37025,0.0004388124,Formaldehyde,LB
+37025,2.618978e-07,Nickel,LB
+37025,1.3877612e-06,Acenaphthene,LB
+37025,7.690126e-06,Phenanthrene,LB
+37029,7.115757e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.0004241462,Nitrous Oxide,TON
+37029,0.0002115741,Organic Carbon portion of PM2.5-PRI,TON
+37029,1.502378e-05,Sulfate Portion of PM2.5-PRI,TON
+37029,0.312567,Acetaldehyde,LB
+37175,0.0005127524,Manganese,LB
+37175,1.2740796e-05,Mercury,LB
+37175,0.001519929,Methane,TON
+37175,22.93003,Carbon Dioxide,TON
+37175,0.01645351,Nitrogen Oxides,TON
+37175,0.002164224,PM10 Primary (Filt + Cond),TON
+37175,0.02474182,"1,3-Butadiene",LB
+37175,0.420035,Toluene,LB
+37155,0.3562676,"1,3-Butadiene",LB
+37155,3.45291,Hexane,LB
+37155,4.759268e-05,Chromium (VI),LB
+37155,0.004397654,Benzo[b]Fluoranthene,LB
+37155,0.004397654,Benzo[k]Fluoranthene,LB
+37155,0.012781682,Acenaphthylene,LB
+37155,0.008482486,Benzo[a]Pyrene,LB
+37155,0.011422226,Manganese,LB
+37155,30.68534,Acetaldehyde,LB
+37155,664.6459,Carbon Dioxide,TON
+37155,0.00681812,Nitrous Oxide,TON
+37155,0.004600934,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,1.5836272,Benzene,LB
+37177,150.33664,Toluene,LB
+37177,0.401245,Propionaldehyde,LB
+37177,0.0283218,"Benzo[g,h,i,]Perylene",LB
+37177,0.007527232,Benzo[k]Fluoranthene,LB
+37177,0.1101692,Acenaphthylene,LB
+37177,0.3416396,Nitrogen Oxides,TON
+37177,0.005851623,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.01444481,PM10 Primary (Filt + Cond),TON
+37169,0.2949052,Toluene,LB
+37169,5.279596e-09,Chromium (VI),LB
+37169,0.0648989,"2,2,4-Trimethylpentane",LB
+37165,1.8741692,"1,3-Butadiene",LB
+37165,4.44062,Acrolein,LB
+37165,3.440016,Toluene,LB
+37165,3.275638,Xylenes (Mixed Isomers),LB
+37165,1.3148978e-05,Chromium (VI),LB
+37165,0.0016819422,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.04800832,Chrysene,LB
+37165,0.007840896,Nickel,LB
+37165,0.19062652,Acenaphthene,LB
+37165,1.907118,Carbon Monoxide,TON
+37165,0.0783087,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.0163025,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.003945855,Sulfate Portion of PM2.5-PRI,TON
+37163,15.040546,Acrolein,LB
+37163,4.771878,Hexane,LB
+37163,0.01040962,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.02196254,Nickel,LB
+37163,82.68,Acetaldehyde,LB
+37163,0.06902284,Methane,TON
+37161,3.728136,Hexane,LB
+37161,0.39147,Anthracene,LB
+37161,0.0007065374,Benzo[k]Fluoranthene,LB
+37161,0.05504882,Chrysene,LB
+37161,13.761818,Benzene,LB
+37161,0.019328972,Nickel,LB
+37161,16.066336,Naphthalene,LB
+37161,7.366024,Carbon Monoxide,TON
+37161,0.8379971,Volatile Organic Compounds,TON
+37161,1.55816,Nitrogen Oxides,TON
+37161,4.921082,"1,3-Butadiene",LB
+37161,1.0386016,Acrolein,LB
+37161,0.03733766,Anthracene,LB
+37161,0.7524668,Propionaldehyde,LB
+37161,0.016258862,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,23.31608,"2,2,4-Trimethylpentane",LB
+37161,0.002626106,Arsenic,LB
+37159,0.828658,"Benzo[g,h,i,]Perylene",LB
+37159,0.2303752,Benz[a]Anthracene,LB
+37159,0.04835335,Nitrous Oxide,TON
+37159,0.009621916,Sulfate Portion of PM2.5-PRI,TON
+37151,0.06657522,Nitrous Oxide,TON
+37151,0.5920346,Sulfate Portion of PM2.5-PRI,TON
+37151,90.51862,Ethyl Benzene,LB
+37151,308.6302,Toluene,LB
+37151,0.05140202,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.0007014436,Benzo[b]Fluoranthene,LB
+37151,0.00250704,Fluoranthene,LB
+37151,0.0007014436,Benzo[k]Fluoranthene,LB
+37151,0.007612136,Acenaphthylene,LB
+37151,0.0006223972,Chrysene,LB
+37151,2.557494e-05,"Dibenzo[a,h]Anthracene",LB
+37151,1.1080558e-06,Mercury,LB
+37151,0.08662458,Naphthalene,LB
+37151,0.0001973665,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.0483643,Nitrogen Oxides,TON
+37139,0.012760216,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.05011632,Benzo[b]Fluoranthene,LB
+37139,0.007430914,Arsenic,LB
+37139,0.002906815,Nitrate portion of PM2.5-PRI,TON
+37191,24.96458,Formaldehyde,LB
+37191,1801.108,Carbon Dioxide,TON
+37191,29.70782,Toluene,LB
+37191,26.01552,Xylenes (Mixed Isomers),LB
+37191,0.02135626,Fluoranthene,LB
+37191,0.05472271,Sulfur Dioxide,TON
+37159,726.6524,Propionaldehyde,LB
+37159,58.77032,Pyrene,LB
+37159,9.883576,Benz[a]Anthracene,LB
+37159,7.8013,Manganese,LB
+37159,0.2171022,Mercury,LB
+37159,4.150936,Arsenic,LB
+37159,1833.6522,Naphthalene,LB
+37159,17.16646,Nitrous Oxide,TON
+37153,2.06214,Acrolein,LB
+37153,27.74926,Formaldehyde,LB
+37153,0.0012355516,Benzo[a]Pyrene,LB
+37153,0.07918166,Acenaphthene,LB
+37153,0.002446216,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.001939864,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.00084179,Sulfate Portion of PM2.5-PRI,TON
+37147,44.6129,Propionaldehyde,LB
+37147,0.04931642,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.02661238,Benzo[k]Fluoranthene,LB
+37147,1.2394586,Chrysene,LB
+37147,25.24914,"2,2,4-Trimethylpentane",LB
+37147,0.3861988,Manganese,LB
+37147,0.10569018,Nickel,LB
+37147,2.663066,Acenaphthene,LB
+37147,10.72734,Phenanthrene,LB
+37147,0.7490386,Elemental Carbon portion of PM2.5-PRI,TON
+37147,3.658245,PM10 Primary (Filt + Cond),TON
+37145,0.0223673,Benzo[b]Fluoranthene,LB
+37145,996.509,Formaldehyde,LB
+37145,0.10015604,Manganese,LB
+37145,5.937512,Volatile Organic Compounds,TON
+37145,150.04832,Xylenes (Mixed Isomers),LB
+37145,0.011339096,Manganese,LB
+37145,0.05484718,Methane,TON
+37145,0.008901306,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.006715294,"Benzo[g,h,i,]Perylene",LB
+37145,0.00217259,Benzo[b]Fluoranthene,LB
+37145,3.009545,Carbon Monoxide,TON
+37145,0.2332694,Styrene,LB
+37145,3.26754e-07,Chromium (VI),LB
+37141,3.072314e-06,Nickel,LB
+37135,0.2198478,PM10-Primary from certain diesel engines,TON
+37135,0.01964549,Ammonia,TON
+37135,4.402836,Nitrogen Oxides,TON
+37135,0.01147825,Sulfur Dioxide,TON
+37135,1.410631,Ethyl Benzene,LB
+37135,0.5408304,Styrene,LB
+37135,1.0831458,Hexane,LB
+37135,1.6643684e-05,Chromium (VI),LB
+37135,1.1368534,"2,2,4-Trimethylpentane",LB
+37135,1.2199028e-05,Nickel,LB
+37135,0.4697868,Acetaldehyde,LB
+37135,0.07559378,Naphthalene,LB
+37135,0.00012733,Ammonia,TON
+37135,0.0004023273,Organic Carbon portion of PM2.5-PRI,TON
+37135,2.081746e-05,Sulfate Portion of PM2.5-PRI,TON
+37091,2.291868e-05,Fluorene,LB
+37091,0.005214575,Carbon Monoxide,TON
+37083,238.2716,Formaldehyde,LB
+37083,0.17271156,Benz[a]Anthracene,LB
+37083,0.775918,Acenaphthene,LB
+37083,0.03606383,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.008894673,Sulfate Portion of PM2.5-PRI,TON
+37081,47710.96,Hexane,LB
+37081,838.1904,Propionaldehyde,LB
+37081,0.08213118,Chromium (VI),LB
+37081,66.77048,Fluoranthene,LB
+37081,1170948,Carbon Dioxide,TON
+37081,6.888514,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.04375084,PM2.5 Primary (Filt + Cond),TON
+37079,0.01503731,Sulfur Dioxide,TON
+37079,100.83154,Ethyl Benzene,LB
+37079,1.7379296,Propionaldehyde,LB
+37079,0.03083356,Chrysene,LB
+37079,0.04786094,Methane,TON
+37079,1.485275,Nitrogen Oxides,TON
+37077,4.667848,Styrene,LB
+37077,3.43238,Pyrene,LB
+37077,0.01549749,"Benzo[g,h,i,]Perylene",LB
+37077,0.2565178,Benzo[a]Pyrene,LB
+37077,7.693668,"2,2,4-Trimethylpentane",LB
+37077,137.72224,Acetaldehyde,LB
+37073,1.0459714,Anthracene,LB
+37073,0.542329,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,1.79219,Fluoranthene,LB
+37073,0.3823382,Benzo[k]Fluoranthene,LB
+37073,0.3647156,Chrysene,LB
+37073,0.1360714,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.2015382,Ethyl Benzene,LB
+37069,0.03355382,Acenaphthylene,LB
+37069,6.067528,Formaldehyde,LB
+37069,2.63853,Acetaldehyde,LB
+37069,0.0004153511,Sulfur Dioxide,TON
+37059,0.000683339,Pyrene,LB
+37059,0.2131188,Xylenes (Mixed Isomers),LB
+37059,0.0005110084,Acenaphthylene,LB
+37059,0.18747492,Benzene,LB
+37059,5.896182,Acetaldehyde,LB
+37059,94.32367,Carbon Dioxide,TON
+37059,0.4259502,Nitrogen Oxides,TON
+37059,0.006665547,PM2.5 Primary (Filt + Cond),TON
+37061,17516.624,Toluene,LB
+37049,3.188072e-05,Chromium (VI),LB
+37049,5.031577,Carbon Monoxide,TON
+37049,0.003875064,Nitrous Oxide,TON
+37047,1.1177e-06,Sulfur Dioxide,TON
+37047,1.4700188e-05,Acenaphthylene,LB
+37047,1.702805e-06,Chrysene,LB
+37047,1.8740308e-06,Benz[a]Anthracene,LB
+37047,0.00317843,Benzene,LB
+37047,0.008554852,Toluene,LB
+37043,0.0214551,Propionaldehyde,LB
+37043,5.867288e-06,Mercury,LB
+37043,7.3159e-05,Nickel,LB
+37043,0.3660324,Acetaldehyde,LB
+37043,0.0570714,Naphthalene,LB
+37043,0.0001157188,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.0001744637,Manganese,LB
+37047,0.006002622,Fluorene,LB
+37047,0.1538826,Naphthalene,LB
+37047,1.850021,Ethyl Benzene,LB
+37047,1.9210272e-07,Chromium (VI),LB
+37047,0.0008894896,Benzo[k]Fluoranthene,LB
+37047,24.45778,Fluoranthene,LB
+37047,16439.984,Benzene,LB
+37047,0.01699226,Nitrate portion of PM2.5-PRI,TON
+37047,0.173835,Sulfate Portion of PM2.5-PRI,TON
+37041,36.39922,Carbon Dioxide,TON
+37041,0.0001872854,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.08487571,Nitrogen Oxides,TON
+37041,0.0007632947,Sulfur Dioxide,TON
+37041,1.974004,Hexane,LB
+37041,5.635706,Xylenes (Mixed Isomers),LB
+37041,0.01281933,Acenaphthylene,LB
+37041,0.0008468884,Benzo[a]Pyrene,LB
+37033,3.068908e-05,Manganese,LB
+37033,5.913078e-07,Mercury,LB
+37033,0.000795872,Fluorene,LB
+37033,3.812004,Carbon Dioxide,TON
+37033,8.725606e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.2668152,Acrolein,LB
+37141,0.012618348,Anthracene,LB
+37141,0.02192498,Fluoranthene,LB
+37141,0.006419754,Benzo[k]Fluoranthene,LB
+37141,0.006030906,Benz[a]Anthracene,LB
+37141,0.0007714954,Arsenic,LB
+37141,0.0795531,Phenanthrene,LB
+37141,0.004179552,Nitrous Oxide,TON
+37141,5.70511,Hexane,LB
+37141,0.00976155,Fluoranthene,LB
+37141,2.108456,Formaldehyde,LB
+37141,0.00329856,Manganese,LB
+37141,199.2302,Carbon Dioxide,TON
+37141,0.003827596,Nitrous Oxide,TON
+37137,9.036234,Xylenes (Mixed Isomers),LB
+37125,10.90965,Nitrogen Oxides,TON
+37125,13.267298,Acrolein,LB
+37125,12.3573,Xylenes (Mixed Isomers),LB
+37125,0.12349914,Chrysene,LB
+37125,0.05550032,Benzo[a]Pyrene,LB
+37125,0.002274052,"Dibenzo[a,h]Anthracene",LB
+37125,8.404037,Carbon Monoxide,TON
+37107,0.5952828,Chrysene,LB
+37107,7.251972e-05,Mercury,LB
+37107,0.008687195,Nitrous Oxide,TON
+37107,0.005416389,Nitrate portion of PM2.5-PRI,TON
+37107,0.02846844,Acenaphthene,LB
+37107,0.002107159,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.007402109,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.4215777,Volatile Organic Compounds,TON
+37087,0.04204538,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,3.959102,Acenaphthylene,LB
+37087,340.5534,Acetaldehyde,LB
+37087,0.009672111,Nitrate portion of PM2.5-PRI,TON
+37087,0.09235011,Sulfur Dioxide,TON
+37073,2.573784,"2,2,4-Trimethylpentane",LB
+37073,0.04750122,Ammonia,TON
+37073,0.3963396,PM2.5 Primary (Filt + Cond),TON
+37073,0.2989436,Anthracene,LB
+37073,4.72514,Propionaldehyde,LB
+37073,0.626548,Fluoranthene,LB
+37081,215.8272,Ethyl Benzene,LB
+37081,0.6627822,"Benzo[g,h,i,]Perylene",LB
+37053,0.5649272,Benz[a]Anthracene,LB
+37053,0.04246978,Arsenic,LB
+37053,0.1276997,Sulfur Dioxide,TON
+37053,23.10186,Acrolein,LB
+37053,0.8604578,Anthracene,LB
+37067,6.18047,Styrene,LB
+37067,0.10344832,Chrysene,LB
+37067,0.1105693,Benz[a]Anthracene,LB
+37067,84.80866,Acetaldehyde,LB
+37067,0.1811148,Methane,TON
+37067,0.2040568,Nitrous Oxide,TON
+37067,13.75172,Nitrogen Oxides,TON
+37067,0.08015534,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.006829909,Sulfate Portion of PM2.5-PRI,TON
+37067,4.678421,Volatile Organic Compounds,TON
+37061,0.6962872,"2,2,4-Trimethylpentane",LB
+37061,2.531544,Benzene,LB
+37061,0.005462582,Nickel,LB
+37061,0.318317,Phenanthrene,LB
+37061,0.9160991,Carbon Monoxide,TON
+37061,0.1540456,Volatile Organic Compounds,TON
+37061,1.4051338,Propionaldehyde,LB
+37043,0.6443512,Pyrene,LB
+37043,9.262428,Xylenes (Mixed Isomers),LB
+37043,0.14628144,Benz[a]Anthracene,LB
+37043,0.04338714,Manganese,LB
+37043,0.9255392,Phenanthrene,LB
+37043,0.3936647,PM10-Primary from certain diesel engines,TON
+37039,0.00922656,Nickel,LB
+37039,0.003447222,Arsenic,LB
+37039,0.3055672,Nitrogen Oxides,TON
+37039,0.00176333,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,1.756536,Propionaldehyde,LB
+37039,1.747148e-05,Chromium (VI),LB
+37039,0.1315712,Fluoranthene,LB
+37047,0.012224892,Pyrene,LB
+37047,0.00014080732,"Dibenzo[a,h]Anthracene",LB
+37047,190.6228,Carbon Dioxide,TON
+37047,1.929789e-05,Nitrate portion of PM2.5-PRI,TON
+37039,1.8983386,Ethyl Benzene,LB
+37039,0.415099,"1,3-Butadiene",LB
+37039,2.794932e-05,"Dibenzo[a,h]Anthracene",LB
+37039,0.016586618,Phenanthrene,LB
+37039,0.00618259,Fluorene,LB
+37039,0.0002347259,Ammonia,TON
+37039,1166.7908,Toluene,LB
+37039,0.3259718,"Benzo[g,h,i,]Perylene",LB
+37039,1.6914618,Acenaphthylene,LB
+37039,0.002377278,Mercury,LB
+37039,0.1863433,Nitrous Oxide,TON
+37039,10.05406,Nitrogen Oxides,TON
+37037,0.014329614,Anthracene,LB
+37037,0.02011844,"Benzo[g,h,i,]Perylene",LB
+37037,0.00017357014,"Dibenzo[a,h]Anthracene",LB
+37037,0.005228892,Benz[a]Anthracene,LB
+37037,0.00011068864,Nickel,LB
+37037,0.03381696,Fluorene,LB
+37037,0.006592352,Nitrous Oxide,TON
+37037,0.007514814,PM2.5 Primary (Filt + Cond),TON
+37037,0.0007585514,Sulfur Dioxide,TON
+37035,0.16255944,Fluoranthene,LB
+37035,0.015146916,Benzo[a]Pyrene,LB
+37035,0.04933441,PM25-Primary from certain diesel engines,TON
+37035,0.9010899,Nitrogen Oxides,TON
+37035,0.02116596,Organic Carbon portion of PM2.5-PRI,TON
+37031,33.17336,Xylenes (Mixed Isomers),LB
+37031,0.002325558,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.05255762,Acenaphthylene,LB
+37031,0.003307071,Ammonia,TON
+37031,8.356023e-06,Nitrate portion of PM2.5-PRI,TON
+37031,0.314772,Nitrogen Oxides,TON
+37025,4.723596,Benzene,LB
+37025,0.01337834,Sulfur Dioxide,TON
+37025,0.01585538,Sulfate Portion of PM2.5-PRI,TON
+37025,1.4765952,"1,3-Butadiene",LB
+37025,0.1680886,Anthracene,LB
+37025,4.521996,Xylenes (Mixed Isomers),LB
+37025,53.4058,Formaldehyde,LB
+37025,4240.844,Ethyl Benzene,LB
+37199,3.01798e-05,Chromium (VI),LB
+37199,0.6598202,Acenaphthylene,LB
+37199,0.1722332,Chrysene,LB
+37199,0.01838838,Nickel,LB
+37199,1.4505702,Phenanthrene,LB
+37199,0.1257149,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.009987682,Sulfate Portion of PM2.5-PRI,TON
+37193,1.0519122,Ethyl Benzene,LB
+37193,0.00048924,Benzo[b]Fluoranthene,LB
+37193,0.00048924,Benzo[k]Fluoranthene,LB
+37193,0.5256896,Formaldehyde,LB
+37193,1.3875036,"2,2,4-Trimethylpentane",LB
+37193,8.30896e-05,Manganese,LB
+37195,0.0015278906,Benzo[k]Fluoranthene,LB
+37195,348.1964,Formaldehyde,LB
+37195,0.0366493,Benzo[a]Pyrene,LB
+37195,0.05115416,Manganese,LB
+37195,4.600742,Styrene,LB
+37195,0.0007276613,Nitrate portion of PM2.5-PRI,TON
+37195,0.06653206,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.0342706,Chrysene,LB
+37195,0.0280863,Manganese,LB
+37195,0.44244,Phenanthrene,LB
+37189,0.008002382,Hexane,LB
+37189,2.737998e-07,Arsenic,LB
+37189,0.0005833316,Naphthalene,LB
+37019,0.2458004,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.1803338,Benzo[b]Fluoranthene,LB
+37019,0.1803338,Benzo[k]Fluoranthene,LB
+37019,236.4326,Formaldehyde,LB
+37019,32.33778,Naphthalene,LB
+37019,0.3053783,Methane,TON
+37019,0.04022835,Nitrous Oxide,TON
+37019,0.5119603,Ammonia,TON
+37019,0.1364103,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.007769038,Arsenic,LB
+37015,2800.082,Carbon Dioxide,TON
+37015,10.470744,Xylenes (Mixed Isomers),LB
+37015,4.90341e-05,Chromium (VI),LB
+37003,16.03486,Acrolein,LB
+37003,0.006963898,"Dibenzo[a,h]Anthracene",LB
+37003,0.0285174,Nickel,LB
+37003,18.85733,Nitrogen Oxides,TON
+37003,1.198556,PM10 Primary (Filt + Cond),TON
+37023,0.04413594,"Benzo[g,h,i,]Perylene",LB
+37023,0.02514578,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.0136043,Benzo[k]Fluoranthene,LB
+37023,2852.706,Formaldehyde,LB
+37023,26.43506,Phenanthrene,LB
+37003,9.863538,Benzene,LB
+37003,0.0010480368,Manganese,LB
+37003,0.009070706,Acenaphthene,LB
+37003,0.018373776,Fluorene,LB
+37003,0.4708546,Naphthalene,LB
+37003,0.2448752,Nitrogen Oxides,TON
+37003,0.006589282,PM10 Primary (Filt + Cond),TON
+37003,1.26197,"1,3-Butadiene",LB
+37003,0.1861,Propionaldehyde,LB
+37001,87.2364,"2,2,4-Trimethylpentane",LB
+37039,1.248896e-06,Chromium (VI),LB
+37039,0.000252248,Fluoranthene,LB
+37039,0.000157039,Benzo[k]Fluoranthene,LB
+37039,0.00012085896,Chrysene,LB
+37039,0.019071742,"1,3-Butadiene",LB
+37039,1.012352e-06,Nitrate portion of PM2.5-PRI,TON
+37039,0.01628589,Nitrogen Oxides,TON
+37039,0.001287883,PM10 Primary (Filt + Cond),TON
+37039,0.0001337085,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.2762424,Formaldehyde,LB
+37039,6.812586e-06,"Dibenzo[a,h]Anthracene",LB
+37039,0.15462518,"2,2,4-Trimethylpentane",LB
+37035,0.001399233,Nickel,LB
+37035,0.002145496,Arsenic,LB
+37035,0.1066866,Acrolein,LB
+37035,1.1193752e-05,Chromium (VI),LB
+37035,0.009624637,Ammonia,TON
+37035,0.1223015,Nitrogen Oxides,TON
+37037,0.010033912,Arsenic,LB
+37037,76.29796,Acetaldehyde,LB
+37037,0.010925894,Fluoranthene,LB
+37037,0.007270848,Benzo[k]Fluoranthene,LB
+37165,0.5920808,Toluene,LB
+37165,0.0599334,Propionaldehyde,LB
+37165,0.0004450298,Fluoranthene,LB
+37165,0.0003458426,Nickel,LB
+37165,0.0002486392,Acenaphthene,LB
+37165,0.012985122,Naphthalene,LB
+37165,0.0001536988,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.03351584,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.0573445,PM2.5 Primary (Filt + Cond),TON
+37147,15.590924,Hexane,LB
+37147,0.017631562,Benzo[k]Fluoranthene,LB
+37147,0.05558562,Manganese,LB
+37147,0.0012707686,Mercury,LB
+37147,0.000132617,Nitrate portion of PM2.5-PRI,TON
+37147,1.801206,Nitrogen Oxides,TON
+37137,0.388365,Ethyl Benzene,LB
+37137,0.323636,Benzene,LB
+37119,38.45284,Ethyl Benzene,LB
+37119,0.09750784,Benzo[k]Fluoranthene,LB
+37119,0.3592838,Manganese,LB
+37119,742.8664,Acetaldehyde,LB
+37119,0.04736908,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.656276,Ammonia,TON
+37119,0.3464792,PM2.5 Primary (Filt + Cond),TON
+37091,1.011958,Formaldehyde,LB
+37091,0.0011362552,Benzo[a]Pyrene,LB
+37091,0.7653332,"2,2,4-Trimethylpentane",LB
+37091,0.0005369562,Benz[a]Anthracene,LB
+37091,0.018223828,Styrene,LB
+37091,0.000614573,Benzo[b]Fluoranthene,LB
+37173,2.047342,Styrene,LB
+37173,7.475668,Propionaldehyde,LB
+37173,0.00800016,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,1.010836,Fluorene,LB
+37173,15.2279,Nitrogen Oxides,TON
+37173,0.8185284,PM10 Primary (Filt + Cond),TON
+37173,0.808029,Volatile Organic Compounds,TON
+37193,17.345586,"1,3-Butadiene",LB
+37193,1.7080392,Anthracene,LB
+37193,0.9785698,Benz[a]Anthracene,LB
+37193,70.53288,Benzene,LB
+37193,0.3360854,Manganese,LB
+37193,0.09837724,Nickel,LB
+37193,7.346432,Phenanthrene,LB
+37193,2.545548,PM10-Primary from certain diesel engines,TON
+37193,0.02844972,Nitrous Oxide,TON
+37193,3.963381,PM10 Primary (Filt + Cond),TON
+37193,0.2822155,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.0001542508,Chromium (VI),LB
+37185,0.0425942,Arsenic,LB
+37195,1.1887956e-05,Nickel,LB
+37195,0.000402641,Acenaphthylene,LB
+37195,16844.11,Toluene,LB
+37189,0.006330936,Benzo[b]Fluoranthene,LB
+37189,29.5682,Formaldehyde,LB
+37189,0.3429258,Phenanthrene,LB
+37189,0.01924699,Methane,TON
+37189,0.0003716853,Nitrate portion of PM2.5-PRI,TON
+37189,1.105841,Nitrogen Oxides,TON
+37189,0.07183066,PM2.5 Primary (Filt + Cond),TON
+37187,0.7713989,Carbon Monoxide,TON
+37187,0.04214853,Volatile Organic Compounds,TON
+37187,0.309095,"1,3-Butadiene",LB
+37187,1.9248116,Hexane,LB
+37187,0.0008761924,Benzo[a]Pyrene,LB
+37187,8.997752e-05,Manganese,LB
+37187,1.0863384e-06,Mercury,LB
+37187,0.7420782,Acetaldehyde,LB
+37179,112.29792,Toluene,LB
+37179,122.00214,Xylenes (Mixed Isomers),LB
+37179,0.0350733,Benzo[k]Fluoranthene,LB
+37179,1.6391888,Chrysene,LB
+37179,140.76094,Naphthalene,LB
+37179,0.05926352,Nitrous Oxide,TON
+37179,4.929779,PM10 Primary (Filt + Cond),TON
+37023,343.5722,Xylenes (Mixed Isomers),LB
+37023,0.006975928,Nickel,LB
+37023,0.14434038,Acenaphthene,LB
+37023,2259.337,Carbon Dioxide,TON
+37023,0.08641146,Ammonia,TON
+37199,3.66196,"1,3-Butadiene",LB
+37199,0.02378212,"Benzo[g,h,i,]Perylene",LB
+37199,26.78832,Benzene,LB
+37199,0.001300116,Arsenic,LB
+37197,0.011805332,Benzo[k]Fluoranthene,LB
+37197,2.77086,Acenaphthylene,LB
+37197,18.379948,Ethyl Benzene,LB
+37197,0.01843478,"Benzo[g,h,i,]Perylene",LB
+37197,0.05639356,Arsenic,LB
+37197,17.56101,Carbon Monoxide,TON
+37197,0.4347531,Organic Carbon portion of PM2.5-PRI,TON
+37197,2.530465,PM2.5 Primary (Filt + Cond),TON
+37195,0.14338742,Acenaphthylene,LB
+37195,0.8456178,"1,3-Butadiene",LB
+37195,2.197382,Acrolein,LB
+37195,0.005653662,Nickel,LB
+37195,12.330678,Acetaldehyde,LB
+37195,1030.556,Carbon Dioxide,TON
+37195,0.1447845,PM10-Primary from certain diesel engines,TON
+37195,0.001090348,Nitrous Oxide,TON
+37195,0.007765461,Sulfate Portion of PM2.5-PRI,TON
+37193,0.011862934,Fluoranthene,LB
+37193,7.291482,"2,2,4-Trimethylpentane",LB
+37193,0.007359998,Arsenic,LB
+37193,0.014473226,Fluorene,LB
+37193,0.003076692,Elemental Carbon portion of PM2.5-PRI,TON
+37185,2.979952,"1,3-Butadiene",LB
+37185,0.02209364,Anthracene,LB
+37185,0.0606832,"Benzo[g,h,i,]Perylene",LB
+37185,0.03876078,Fluoranthene,LB
+37185,20.12134,"2,2,4-Trimethylpentane",LB
+37185,7.924458,Acetaldehyde,LB
+37185,0.004177828,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.0223511,Ammonia,TON
+37185,1.41083,Nitrogen Oxides,TON
+37185,0.0007238874,Sulfate Portion of PM2.5-PRI,TON
+37197,21.14312,Xylenes (Mixed Isomers),LB
+37197,0.00371647,Chrysene,LB
+37197,0.011077688,Acenaphthene,LB
+37197,0.005777859,Ammonia,TON
+37197,0.4730978,Nitrogen Oxides,TON
+37197,0.003595034,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.004732126,Sulfur Dioxide,TON
+37183,24.50444,Formaldehyde,LB
+37183,0.04775432,Benzo[a]Pyrene,LB
+37183,0.001667982,Sulfate Portion of PM2.5-PRI,TON
+37183,1.6258626,Acrolein,LB
+37017,0.6825606,"1,3-Butadiene",LB
+37017,4.796322,Hexane,LB
+37017,0.001824218,Benzo[b]Fluoranthene,LB
+37017,0.001824218,Benzo[k]Fluoranthene,LB
+37017,0.001778278,Chrysene,LB
+37017,2.701178e-05,Mercury,LB
+37017,0.3261668,Naphthalene,LB
+37017,3.776653,Carbon Monoxide,TON
+37017,0.003823448,PM2.5 Primary (Filt + Cond),TON
+37015,0.04969072,Pyrene,LB
+37015,0.136096,Acenaphthylene,LB
+37015,9.493144,Formaldehyde,LB
+37015,1.551787,Naphthalene,LB
+37015,0.006090676,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.01048106,Sulfur Dioxide,TON
+37003,0.012968856,Benzo[b]Fluoranthene,LB
+37003,0.013760992,Benz[a]Anthracene,LB
+37003,0.05897056,Acenaphthene,LB
+37003,3.060862,Naphthalene,LB
+37003,0.05434684,Methane,TON
+37003,6.282358e-05,"Dibenzo[a,h]Anthracene",LB
+37003,0.002410214,Manganese,LB
+37003,0.0002134502,Nickel,LB
+37003,0.3275643,Nitrogen Oxides,TON
+37003,0.01284137,PM10 Primary (Filt + Cond),TON
+37057,0.17653218,Propionaldehyde,LB
+37057,1.5151296,Xylenes (Mixed Isomers),LB
+37057,0.00589182,Ammonia,TON
+37057,0.08174083,Nitrogen Oxides,TON
+37057,0.00108426,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.007631062,PM10 Primary (Filt + Cond),TON
+37057,0.04954769,Volatile Organic Compounds,TON
+37007,1.1724464e-05,Mercury,LB
+37007,1.2071942,Acetaldehyde,LB
+37007,0.0001654435,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.001451808,PM10 Primary (Filt + Cond),TON
+37007,0.007264641,Volatile Organic Compounds,TON
+37007,0.010683124,Acrolein,LB
+37007,0.0001289189,Benzo[k]Fluoranthene,LB
+37007,9.784654e-05,Chrysene,LB
+37165,2.636292,Toluene,LB
+37165,0.00091611,Anthracene,LB
+37165,1.371276e-05,Chromium (VI),LB
+37165,0.002392826,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.001244095,Benzo[b]Fluoranthene,LB
+37165,0.001964799,Fluorene,LB
+37159,1.0210064e-05,Chromium (VI),LB
+37159,0.0013055168,Benzo[b]Fluoranthene,LB
+37159,0.0012762486,Nickel,LB
+37159,0.05199878,Naphthalene,LB
+37159,0.000643343,Elemental Carbon portion of PM2.5-PRI,TON
+37159,9.492321e-06,Nitrate portion of PM2.5-PRI,TON
+37159,0.01522409,PM10 Primary (Filt + Cond),TON
+37139,0.621651,Toluene,LB
+37139,0.484248,Formaldehyde,LB
+37139,0.75629,Benzene,LB
+37139,1.9236796e-05,Mercury,LB
+37139,3.17658,Acetaldehyde,LB
+37139,0.0014715734,Phenanthrene,LB
+37139,0.3106233,Carbon Monoxide,TON
+37139,0.0001357502,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.004649944,Pyrene,LB
+37175,0.0006662296,Benzo[k]Fluoranthene,LB
+37175,1.8357924e-05,"Dibenzo[a,h]Anthracene",LB
+37173,0.07481702,Ethyl Benzene,LB
+37173,0.00010428614,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.0006072604,Acenaphthylene,LB
+37173,1.8847014e-05,Manganese,LB
+37173,2.771806e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.10957256,Pyrene,LB
+37171,0.02969555,PM10-Primary from certain diesel engines,TON
+37159,6.869128,Acetaldehyde,LB
+37159,0.0517813,Acenaphthene,LB
+37159,0.09142278,Volatile Organic Compounds,TON
+37159,0.5104418,"1,3-Butadiene",LB
+37159,0.3975344,Hexane,LB
+37161,5.766348,Hexane,LB
+37161,5.027976,"2,2,4-Trimethylpentane",LB
+37161,6.279034,Benzene,LB
+37161,0.01264002,PM10 Primary (Filt + Cond),TON
+37161,0.002684044,Sulfur Dioxide,TON
+37161,0.000130751,Sulfate Portion of PM2.5-PRI,TON
+37161,0.1146753,Volatile Organic Compounds,TON
+37151,14.84618,Carbon Dioxide,TON
+37151,0.00235726,Nitrous Oxide,TON
+37151,0.0006622956,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,16.491178,Xylenes (Mixed Isomers),LB
+37151,0.01002888,Fluoranthene,LB
+37151,0.002057858,Chrysene,LB
+37151,0.003088122,Benzo[a]Pyrene,LB
+37151,6.006634,"2,2,4-Trimethylpentane",LB
+37151,0.013806818,Fluorene,LB
+37143,6.041908,Propionaldehyde,LB
+37143,0.002802266,Benzo[k]Fluoranthene,LB
+37143,4.002228,"2,2,4-Trimethylpentane",LB
+37143,9.298582e-05,Mercury,LB
+37143,0.6007972,PM10-Primary from certain diesel engines,TON
+37143,0.1062527,Ammonia,TON
+37143,0.5912995,PM2.5 Primary (Filt + Cond),TON
+37143,0.05536472,Sulfate Portion of PM2.5-PRI,TON
+37143,0.0001776136,Nitrate portion of PM2.5-PRI,TON
+37143,0.01395113,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.002671679,Sulfur Dioxide,TON
+37143,0.1559577,Volatile Organic Compounds,TON
+37143,0.6621074,Hexane,LB
+37143,1.6557354,Xylenes (Mixed Isomers),LB
+37143,0.0007239016,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.002843122,Benzo[b]Fluoranthene,LB
+37143,0.1504433,Acenaphthylene,LB
+37143,4.95991e-06,Mercury,LB
+37143,0.003756294,Nickel,LB
+37143,7.839634,Hexane,LB
+37143,16.9896,Propionaldehyde,LB
+37143,0.006245104,Benzo[b]Fluoranthene,LB
+37143,0.0008645992,"Dibenzo[a,h]Anthracene",LB
+37143,7.672866,"2,2,4-Trimethylpentane",LB
+37143,0.03568802,Manganese,LB
+37143,0.01422944,Arsenic,LB
+37143,1.788206,Fluorene,LB
+37143,17.06135,Carbon Monoxide,TON
+37143,0.0004451174,Nitrate portion of PM2.5-PRI,TON
+37141,0.06836446,Arsenic,LB
+37141,3.935454,Fluorene,LB
+37141,0.4700922,Methane,TON
+37141,16.509866,Hexane,LB
+37141,4.045244,Fluoranthene,LB
+37139,10.738956,Styrene,LB
+37139,58.071,Acrolein,LB
+37139,2.035396,Anthracene,LB
+37135,0.02231626,Benzo[k]Fluoranthene,LB
+37135,0.2940218,Manganese,LB
+37135,283.6246,Acetaldehyde,LB
+37135,2.174466,Acenaphthene,LB
+37135,8.389296,Phenanthrene,LB
+37143,66.3671,Propionaldehyde,LB
+37143,0.002062208,Chromium (VI),LB
+37143,0.9658134,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,14.99012,Acenaphthylene,LB
+37143,0.4589356,Manganese,LB
+37143,1.465185,Nitrous Oxide,TON
+37143,0.002920957,Nitrate portion of PM2.5-PRI,TON
+37143,0.8007016,Sulfur Dioxide,TON
+37117,18.047794,Ethyl Benzene,LB
+37117,34.2249,Toluene,LB
+37117,13.567746,Hexane,LB
+37117,1.5296336,Anthracene,LB
+37117,0.013285976,Benzo[b]Fluoranthene,LB
+37117,0.0018430846,Benzo[k]Fluoranthene,LB
+37117,0.02925955,Sulfur Dioxide,TON
+37117,1.471246e-05,Anthracene,LB
+37117,2.360934e-07,"Dibenzo[a,h]Anthracene",LB
+37117,5.072508e-07,Arsenic,LB
+37117,1.7012194e-05,Acenaphthene,LB
+37117,0.0008838672,Naphthalene,LB
+37117,7.87848e-06,Nitrous Oxide,TON
+37117,3.076999e-07,Sulfate Portion of PM2.5-PRI,TON
+37119,7.430698e-05,Chromium (VI),LB
+37119,0.264877,Chrysene,LB
+37119,0.005834694,"Dibenzo[a,h]Anthracene",LB
+37119,0.9183695,PM25-Primary from certain diesel engines,TON
+37119,1.909996,PM10 Primary (Filt + Cond),TON
+37113,3.073252,Ethyl Benzene,LB
+37113,0.002603838,Benzo[k]Fluoranthene,LB
+37113,0.06393066,Benzo[a]Pyrene,LB
+37113,8.675618,Benzene,LB
+37113,0.002361764,Arsenic,LB
+37113,0.001151645,Nitrate portion of PM2.5-PRI,TON
+37113,3.453108,Nitrogen Oxides,TON
+37105,1.8835026e-05,Mercury,LB
+37105,0.0009688308,Phenanthrene,LB
+37105,0.00109999,Naphthalene,LB
+37105,0.5040338,Methane,TON
+37105,0.002760465,Ammonia,TON
+37105,0.09388056,Pyrene,LB
+37105,0.0004900672,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.0002631974,Benzo[k]Fluoranthene,LB
+37105,0.06758724,Fluorene,LB
+37105,0.02394789,PM10-Primary from certain diesel engines,TON
+37105,0.1405492,Styrene,LB
+37105,0.00520347,Benzo[b]Fluoranthene,LB
+37105,0.07578778,Acenaphthylene,LB
+37105,5.385854,Formaldehyde,LB
+37105,322.8306,Carbon Dioxide,TON
+37105,2.71838e-05,Nitrate portion of PM2.5-PRI,TON
+37105,0.006767047,Sulfur Dioxide,TON
+37093,0.11725468,"1,3-Butadiene",LB
+37093,0.0007578634,Benzo[b]Fluoranthene,LB
+37093,0.00010361298,Benzo[k]Fluoranthene,LB
+37093,3.513814,Formaldehyde,LB
+37093,0.002688515,Elemental Carbon portion of PM2.5-PRI,TON
+37093,4.427831e-05,Nitrate portion of PM2.5-PRI,TON
+37089,0.2568698,Ethyl Benzene,LB
+37089,0.3223852,Hexane,LB
+37089,0.0003540526,Anthracene,LB
+37089,0.0006060712,Fluoranthene,LB
+37089,2.65593e-05,Manganese,LB
+37089,1.674271e-05,Sulfur Dioxide,TON
+37089,0.007374428,Volatile Organic Compounds,TON
+37089,0.8194786,Styrene,LB
+37089,0.010662152,Benz[a]Anthracene,LB
+37089,1.9497836,Naphthalene,LB
+37089,0.01465098,Sulfur Dioxide,TON
+37073,8.55176e-05,Chromium (VI),LB
+37073,0.0011375596,Benzo[k]Fluoranthene,LB
+37073,2.116066,Acenaphthylene,LB
+37073,0.02748756,Benzo[a]Pyrene,LB
+37073,0.2558276,Benz[a]Anthracene,LB
+37073,0.04079828,Manganese,LB
+37085,0.006614324,"Dibenzo[a,h]Anthracene",LB
+37085,2.709162,Phenanthrene,LB
+37085,1.281347,Volatile Organic Compounds,TON
+37079,0.07380902,Acetaldehyde,LB
+37079,0.004842382,Nitrogen Oxides,TON
+37079,0.005487208,Styrene,LB
+37079,0.8365052,Toluene,LB
+37079,0.18834012,Hexane,LB
+37079,0.0010277406,Acenaphthylene,LB
+37079,6.27384e-05,Chrysene,LB
+37067,0.12213118,Toluene,LB
+37067,1.7353474e-05,Benz[a]Anthracene,LB
+37067,7.152216e-06,Mercury,LB
+37067,0.2439895,Carbon Monoxide,TON
+37067,0.0001617562,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.0002046791,Sulfur Dioxide,TON
+37063,0.06904827,Ammonia,TON
+37063,0.0308491,Sulfur Dioxide,TON
+37063,0.10450104,Benzo[b]Fluoranthene,LB
+37063,0.01429313,Benzo[k]Fluoranthene,LB
+37063,447.2078,Formaldehyde,LB
+37063,0.3505102,Benzo[a]Pyrene,LB
+37063,1.1401406,Benz[a]Anthracene,LB
+37063,5.54659,Phenanthrene,LB
+37063,12.37578,Carbon Monoxide,TON
+37063,94.3488,Propionaldehyde,LB
+37063,191.61472,Naphthalene,LB
+37063,0.5050052,Methane,TON
+37063,101.2429,Carbon Monoxide,TON
+37063,1.120937,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.2733911,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.01452484,Benzo[b]Fluoranthene,LB
+37063,8.791302,Formaldehyde,LB
+37063,17.23664,Ethyl Benzene,LB
+37063,0.007235091,Nitrous Oxide,TON
+37063,0.01314333,Ammonia,TON
+37063,0.01393174,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.02695525,PM2.5 Primary (Filt + Cond),TON
+37063,0.5301808,Volatile Organic Compounds,TON
+37067,1.0414778,Styrene,LB
+37067,0.8510262,Propionaldehyde,LB
+37067,0.018331858,Benzo[k]Fluoranthene,LB
+37067,0.016379756,Chrysene,LB
+37067,0.017408132,Benz[a]Anthracene,LB
+37067,0.01640018,Organic Carbon portion of PM2.5-PRI,TON
+37065,17.14603,Nitrogen Oxides,TON
+37065,1.032404,PM10 Primary (Filt + Cond),TON
+37065,50.17774,Toluene,LB
+37065,3.919834,Fluoranthene,LB
+37065,4.8064,Acenaphthylene,LB
+37065,0.0998248,Benzo[a]Pyrene,LB
+37065,48.66923,Carbon Monoxide,TON
+37063,9122.518,Toluene,LB
+37063,12.631388,Acenaphthylene,LB
+37063,743.1745,Carbon Monoxide,TON
+37063,0.004107099,Nitrate portion of PM2.5-PRI,TON
+37063,47.25701,Volatile Organic Compounds,TON
+37059,4874.496,Xylenes (Mixed Isomers),LB
+37047,3.524004e-06,Chromium (VI),LB
+37047,0.3397798,"2,2,4-Trimethylpentane",LB
+37047,3.020944e-06,Mercury,LB
+37047,5.96177,Acetaldehyde,LB
+37047,1.5055124,Naphthalene,LB
+37199,5.209378,"1,3-Butadiene",LB
+37199,0.5619446,Anthracene,LB
+37199,0.004542762,Benzo[k]Fluoranthene,LB
+37199,0.8838334,Acenaphthylene,LB
+37199,0.04385418,Manganese,LB
+37199,0.0219176,Nickel,LB
+37199,1.9934534,Phenanthrene,LB
+37199,18.917708,Naphthalene,LB
+37199,0.1462209,Elemental Carbon portion of PM2.5-PRI,TON
+37195,1.8796634,"1,3-Butadiene",LB
+37195,0.007983512,Benzo[k]Fluoranthene,LB
+37195,0.0005255726,Nickel,LB
+37183,445.111,Toluene,LB
+37183,3.36953,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.1616351,Nitrous Oxide,TON
+37183,0.5736413,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.2988464,Sulfate Portion of PM2.5-PRI,TON
+37181,0.17569624,Styrene,LB
+37181,0.008937312,"Benzo[g,h,i,]Perylene",LB
+37181,0.03933756,Phenanthrene,LB
+37181,0.0005656768,Ammonia,TON
+37179,0.00011249716,Mercury,LB
+37179,2.363002,Phenanthrene,LB
+37179,22.87492,Carbon Monoxide,TON
+37179,0.2087106,PM10 Primary (Filt + Cond),TON
+37019,25.68322,Ethyl Benzene,LB
+37019,21.04722,"1,3-Butadiene",LB
+37019,57.36056,Acrolein,LB
+37019,65.01976,Toluene,LB
+37019,2.236746,Anthracene,LB
+37019,35.88862,Propionaldehyde,LB
+37019,70.63778,Xylenes (Mixed Isomers),LB
+37019,0.02683432,"Benzo[g,h,i,]Perylene",LB
+37019,0.2640196,Sulfur Dioxide,TON
+37013,17.94667,Propionaldehyde,LB
+37013,0.010141108,Benzo[k]Fluoranthene,LB
+37013,0.8151828,Benz[a]Anthracene,LB
+37013,0.018484468,Arsenic,LB
+37013,4.194712,Phenanthrene,LB
+37013,1.981354,Volatile Organic Compounds,TON
+37019,20889.66,Hexane,LB
+37019,526.1348,Propionaldehyde,LB
+37019,6.858982,Benz[a]Anthracene,LB
+37019,4.050622,Arsenic,LB
+37019,3598.088,"1,3-Butadiene",LB
+37015,737.142,Ethyl Benzene,LB
+37015,6140.302,Toluene,LB
+37011,0.02212316,Anthracene,LB
+37011,0.000339199,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.004463726,Benzo[a]Pyrene,LB
+37011,0.1731528,"2,2,4-Trimethylpentane",LB
+37011,0.1685088,Hexane,LB
+37011,0.6142954,Benzene,LB
+37011,0.0011110176,Nickel,LB
+37011,0.07795682,Phenanthrene,LB
+37011,0.00231607,Ammonia,TON
+37011,0.02915784,PM2.5 Primary (Filt + Cond),TON
+37011,4.3081,Ethyl Benzene,LB
+37011,0.7829898,"1,3-Butadiene",LB
+37011,0.2901782,Naphthalene,LB
+37011,0.1797723,Nitrogen Oxides,TON
+37019,0.00011343518,"Dibenzo[a,h]Anthracene",LB
+37019,0.0019847062,Acenaphthene,LB
+37019,0.01788426,Methane,TON
+37019,3.122552,Carbon Monoxide,TON
+37019,0.2185866,Acrolein,LB
+37019,0.002567556,Benzo[k]Fluoranthene,LB
+37019,0.0019405514,Chrysene,LB
+37151,1.2597136,Ethyl Benzene,LB
+37151,5.635416,Toluene,LB
+37151,0.004086698,Pyrene,LB
+37151,2.313268e-05,Chromium (VI),LB
+37151,0.00207074,Acenaphthene,LB
+37151,0.011829044,Phenanthrene,LB
+37151,335.872,Carbon Dioxide,TON
+37151,0.003118095,Organic Carbon portion of PM2.5-PRI,TON
+37135,1.8188406e-05,Chromium (VI),LB
+37135,0.002130488,Fluoranthene,LB
+37135,0.003310586,Benzo[a]Pyrene,LB
+37135,0.007824775,Sulfur Dioxide,TON
+37159,0.005285834,Elemental Carbon portion of PM2.5-PRI,TON
+37159,0.02109856,Sulfur Dioxide,TON
+37159,0.9662022,Propionaldehyde,LB
+37159,0.02444232,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.017854232,Benzo[k]Fluoranthene,LB
+37159,0.02449326,Benzo[a]Pyrene,LB
+37159,0.02923114,Manganese,LB
+37159,19.013092,Acetaldehyde,LB
+37141,5.105666,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.000141616,Sulfur Dioxide,TON
+37137,0.04998582,Acrolein,LB
+37137,9.769768e-05,Acenaphthylene,LB
+37123,0.01360984,PM10 Primary (Filt + Cond),TON
+37123,0.001584888,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.03020404,Fluoranthene,LB
+37123,0.00923294,Benz[a]Anthracene,LB
+37123,1.795886,Acetaldehyde,LB
+37123,0.02870394,Fluorene,LB
+37123,0.001552295,Methane,TON
+37123,0.08570976,Carbon Monoxide,TON
+37123,0.01131363,PM10-Primary from certain diesel engines,TON
+37123,0.003832212,Organic Carbon portion of PM2.5-PRI,TON
+37121,16.090576,Formaldehyde,LB
+37121,0.003728737,PM10 Primary (Filt + Cond),TON
+37121,6.41989e-06,"Benzo[g,h,i,]Perylene",LB
+37199,0.00017117218,Acenaphthene,LB
+37199,0.0009334224,Phenanthrene,LB
+37199,0.0001320537,Methane,TON
+37199,0.002927781,Volatile Organic Compounds,TON
+37191,276.5626,Formaldehyde,LB
+37191,0.0370269,Nickel,LB
+37191,0.841031,Acenaphthene,LB
+37191,0.01771941,Sulfur Dioxide,TON
+37191,13.838228,Propionaldehyde,LB
+37181,1.3938782,Anthracene,LB
+37181,108.51382,Xylenes (Mixed Isomers),LB
+37181,0.05989992,Benzo[b]Fluoranthene,LB
+37181,0.008605514,Benzo[k]Fluoranthene,LB
+37181,872.353,Formaldehyde,LB
+37181,65.96344,Benzene,LB
+37181,0.22865,Manganese,LB
+37181,0.00468182,Nitrate portion of PM2.5-PRI,TON
+37181,2.899419,PM10 Primary (Filt + Cond),TON
+37161,2.91225e-08,Chromium (VI),LB
+37161,0.000424094,Elemental Carbon portion of PM2.5-PRI,TON
+37161,1.674687e-06,Nitrate portion of PM2.5-PRI,TON
+37161,0.001609653,Organic Carbon portion of PM2.5-PRI,TON
+37161,6.075117e-05,Sulfate Portion of PM2.5-PRI,TON
+37161,0.05115219,Volatile Organic Compounds,TON
+37157,18.432286,Propionaldehyde,LB
+37157,0.8214308,"Benzo[g,h,i,]Perylene",LB
+37157,1.3381626,Fluoranthene,LB
+37157,0.2285722,Sulfur Dioxide,TON
+37151,0.01043113,Ammonia,TON
+37151,0.007042543,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.8534084,Volatile Organic Compounds,TON
+37151,4.567848,"1,3-Butadiene",LB
+37151,0.15557998,Acenaphthylene,LB
+37151,0.03405084,Acenaphthene,LB
+37151,0.02711843,Methane,TON
+37151,0.01128381,Nitrous Oxide,TON
+37149,3.415498,Benzo[a]Pyrene,LB
+37149,420.7812,Naphthalene,LB
+37149,0.09747453,Sulfate Portion of PM2.5-PRI,TON
+37149,129.5723,Volatile Organic Compounds,TON
+37145,227.8336,Ethyl Benzene,LB
+37145,3.848904,Styrene,LB
+37145,0.7906072,Acenaphthylene,LB
+37145,0.012277164,Arsenic,LB
+37145,2.153032,Nitrogen Oxides,TON
+37135,0.039222,Fluoranthene,LB
+37135,0.02754588,Benzo[a]Pyrene,LB
+37135,0.0154462,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.05287152,PM10 Primary (Filt + Cond),TON
+37135,0.02887752,PM2.5 Primary (Filt + Cond),TON
+37133,7104.51,Ethyl Benzene,LB
+37133,16.632588,Pyrene,LB
+37133,14.588496,Fluoranthene,LB
+37133,44.89152,Acenaphthylene,LB
+37133,6.261774,Manganese,LB
+37133,3673.364,Acetaldehyde,LB
+37133,266989.6,Carbon Dioxide,TON
+37133,5.598298,Sulfur Dioxide,TON
+37133,219.4333,Volatile Organic Compounds,TON
+37125,1.578024,Anthracene,LB
+37125,0.08569122,Benzo[b]Fluoranthene,LB
+37125,15.159626,"1,3-Butadiene",LB
+37117,1.7549018,Ethyl Benzene,LB
+37117,0.05180694,Acrolein,LB
+37117,3.738995e-06,Nitrate portion of PM2.5-PRI,TON
+37117,0.004966181,PM10 Primary (Filt + Cond),TON
+37123,0.1849156,PM2.5 Primary (Filt + Cond),TON
+37123,2.286686,"1,3-Butadiene",LB
+37123,5.555656,Acrolein,LB
+37123,0.6972214,Pyrene,LB
+37123,0.003052122,"Benzo[g,h,i,]Perylene",LB
+37123,0.012772642,Manganese,LB
+37123,0.4963438,Fluorene,LB
+37123,0.009266782,Ammonia,TON
+37123,0.14222688,Styrene,LB
+37123,0.001799111,Benzo[b]Fluoranthene,LB
+37123,1.8787966,Formaldehyde,LB
+37123,5.376892,Benzene,LB
+37123,0.03181494,Phenanthrene,LB
+37123,6242.06,Hexane,LB
+37123,177.84472,Propionaldehyde,LB
+37123,2.234304,Chrysene,LB
+37123,2734.692,Formaldehyde,LB
+37123,6017.03,"2,2,4-Trimethylpentane",LB
+37123,3.589606,Nitrous Oxide,TON
+37115,0.7352786,Benz[a]Anthracene,LB
+37115,2296.986,Benzene,LB
+37115,52.01641,Nitrogen Oxides,TON
+37115,42.4705,Propionaldehyde,LB
+37099,0.2723892,Acrolein,LB
+37099,7.373178,Hexane,LB
+37095,0.0018205664,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.04731312,Chrysene,LB
+37095,1.8999284e-05,Mercury,LB
+37095,4.68385,Nitrogen Oxides,TON
+37095,0.009520417,Sulfate Portion of PM2.5-PRI,TON
+37095,0.0004681661,Sulfate Portion of PM2.5-PRI,TON
+37095,0.9622796,Acrolein,LB
+37095,0.7047266,Toluene,LB
+37095,0.09333752,Pyrene,LB
+37095,1.6626022e-06,Mercury,LB
+37095,0.07905148,Fluorene,LB
+37095,0.0002905079,Nitrous Oxide,TON
+37091,11.38194,Ethyl Benzene,LB
+37091,11.53228,"1,3-Butadiene",LB
+37091,0.03669942,Manganese,LB
+37091,0.01404214,Arsenic,LB
+37091,0.09045259,Methane,TON
+37091,0.2744194,PM2.5 Primary (Filt + Cond),TON
+37091,0.7710232,Acrolein,LB
+37091,0.8235988,Toluene,LB
+37091,0.0001026324,"Benzo[g,h,i,]Perylene",LB
+37091,0.00012476956,Benzo[b]Fluoranthene,LB
+37091,1.7424532e-05,"Dibenzo[a,h]Anthracene",LB
+37091,4.352864,Acetaldehyde,LB
+37091,0.8748334,Carbon Monoxide,TON
+37091,0.001502821,PM25-Primary from certain diesel engines,TON
+37091,0.0004952065,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,12.624718,Formaldehyde,LB
+37089,1.3864344,Naphthalene,LB
+37089,0.004602997,Methane,TON
+37089,0.002051152,Ammonia,TON
+37089,0.5144143,Nitrogen Oxides,TON
+37089,90.3024,Acetaldehyde,LB
+37089,0.01671507,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.469024,Anthracene,LB
+37089,0.8888004,Pyrene,LB
+37087,6.535844,"1,3-Butadiene",LB
+37087,16.119174,Acrolein,LB
+37087,14.228588,Toluene,LB
+37087,5.17678,Hexane,LB
+37087,14.28735,Xylenes (Mixed Isomers),LB
+37087,0.01082043,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.276923,Chrysene,LB
+37087,206.0284,Formaldehyde,LB
+37087,0.6625014,Acenaphthene,LB
+37087,0.518239,PM2.5 Primary (Filt + Cond),TON
+37073,0.0004083046,Manganese,LB
+37073,7.244748e-06,Mercury,LB
+37073,0.001012279,Methane,TON
+37073,0.0001266451,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.001170327,Ammonia,TON
+37073,0.0006581934,PM2.5 Primary (Filt + Cond),TON
+37073,0.002115632,Pyrene,LB
+37073,3.193538,Xylenes (Mixed Isomers),LB
+37073,7.22668e-07,Chromium (VI),LB
+37073,0.005780734,Acenaphthylene,LB
+37073,0.000489858,Benzo[a]Pyrene,LB
+37065,0.07426311,PM10-Primary from certain diesel engines,TON
+37065,0.03800404,Chrysene,LB
+37065,0.06435736,Benz[a]Anthracene,LB
+37065,0.00842985,Manganese,LB
+37065,0.004199606,Nickel,LB
+37065,0.17523738,Fluorene,LB
+37063,4.546718,Acrolein,LB
+37063,0.5751908,Pyrene,LB
+37063,0.2922258,Acenaphthylene,LB
+37063,61.36018,Formaldehyde,LB
+37063,2.422008e-05,Mercury,LB
+37063,0.04221911,Methane,TON
+37063,0.06794517,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.5047052,PM10 Primary (Filt + Cond),TON
+37059,0.2186164,Anthracene,LB
+37059,0.001323093,Benzo[b]Fluoranthene,LB
+37059,0.3443402,Fluoranthene,LB
+37059,0.05048378,Benz[a]Anthracene,LB
+37059,1.1653668,Styrene,LB
+37059,0.02307568,Nickel,LB
+37059,0.01671352,PM10-Primary from certain diesel engines,TON
+37059,0.01454466,Ammonia,TON
+37059,0.0001082822,Nitrate portion of PM2.5-PRI,TON
+37059,0.05590238,PM10 Primary (Filt + Cond),TON
+37059,0.5070268,Volatile Organic Compounds,TON
+37053,12.946768,Acrolein,LB
+37053,0.4476362,Anthracene,LB
+37053,11.0997,Xylenes (Mixed Isomers),LB
+37053,0.9023706,Acenaphthylene,LB
+37053,15.442442,Benzene,LB
+37053,0.02499204,Nickel,LB
+37053,71.31324,Acetaldehyde,LB
+37053,1142.812,Carbon Dioxide,TON
+37041,0.04892296,Acrolein,LB
+37041,2.785934e-05,Anthracene,LB
+37041,9.56022e-05,Acenaphthylene,LB
+37041,11.048748,Formaldehyde,LB
+37041,0.8797352,Acetaldehyde,LB
+37041,0.0007440738,Ammonia,TON
+37041,1.641642e-05,Sulfate Portion of PM2.5-PRI,TON
+37041,0.7318117,Nitrogen Oxides,TON
+37041,0.005484588,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,1.563783,Volatile Organic Compounds,TON
+37041,1.6928878,"1,3-Butadiene",LB
+37041,188.74152,Xylenes (Mixed Isomers),LB
+37041,0.003589514,Manganese,LB
+37041,0.004247274,Arsenic,LB
+37041,10.751134,Acetaldehyde,LB
+37041,14.06636,Carbon Monoxide,TON
+37041,365.8497,Carbon Dioxide,TON
+37041,6.430993e-05,Nitrate portion of PM2.5-PRI,TON
+37035,0.382167,Fluoranthene,LB
+37035,0.07255044,Chrysene,LB
+37035,0.0015612292,"Dibenzo[a,h]Anthracene",LB
+37035,0.12333644,Benz[a]Anthracene,LB
+37035,0.2319794,PM25-Primary from certain diesel engines,TON
+37033,0.13570928,Ethyl Benzene,LB
+37033,0.1016841,Hexane,LB
+37033,0.2324968,Xylenes (Mixed Isomers),LB
+37033,0.001036055,Benzo[b]Fluoranthene,LB
+37033,0.02411992,Acenaphthylene,LB
+37033,0.00347517,Benzo[a]Pyrene,LB
+37033,0.00014141606,"Dibenzo[a,h]Anthracene",LB
+37033,0.0005585732,Nickel,LB
+37033,0.01210981,PM2.5 Primary (Filt + Cond),TON
+37033,0.000256131,Sulfur Dioxide,TON
+37033,0.02463688,Volatile Organic Compounds,TON
+37033,1.991545,Carbon Monoxide,TON
+37033,0.1584284,PM10-Primary from certain diesel engines,TON
+37033,0.06461313,Elemental Carbon portion of PM2.5-PRI,TON
+37033,2.484252,Nitrogen Oxides,TON
+37033,0.1492419,PM2.5 Primary (Filt + Cond),TON
+37033,0.13891076,Benz[a]Anthracene,LB
+37033,0.4187084,Fluorene,LB
+37029,2.353726,Xylenes (Mixed Isomers),LB
+37029,0.0014515836,Fluoranthene,LB
+37029,0.02012504,Acrolein,LB
+37029,3.827518,Toluene,LB
+37029,0.9663716,Hexane,LB
+37029,25.12397,Carbon Dioxide,TON
+37029,0.06037812,Nitrogen Oxides,TON
+37029,1.685597e-05,Sulfate Portion of PM2.5-PRI,TON
+37125,33.06486,Acenaphthylene,LB
+37125,8458.3,Hexane,LB
+37121,0.0012197406,Chrysene,LB
+37121,1.3825006,Formaldehyde,LB
+37121,0.001826587,Nitrous Oxide,TON
+37121,0.0003311157,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.07685806,Volatile Organic Compounds,TON
+37101,129.86998,Acetaldehyde,LB
+37101,0.07634468,Chrysene,LB
+37101,0.16777598,Benz[a]Anthracene,LB
+37103,0.10968708,"2,2,4-Trimethylpentane",LB
+37103,0.000218651,Acenaphthene,LB
+37103,2.191887e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37103,7.029113e-05,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.0005543708,PM10 Primary (Filt + Cond),TON
+37101,3.585824e-05,Chromium (VI),LB
+37101,0.1189094,"Benzo[g,h,i,]Perylene",LB
+37101,0.13762704,Fluoranthene,LB
+37101,0.0003594772,Mercury,LB
+37101,0.03842928,Methane,TON
+37101,3.633934,Nitrogen Oxides,TON
+37099,0.4852496,Benzene,LB
+37099,3.936282e-05,Manganese,LB
+37099,1.0605262e-05,Arsenic,LB
+37099,0.0006986791,PM10 Primary (Filt + Cond),TON
+37099,7.628209e-05,Sulfur Dioxide,TON
+37099,0.06735066,"1,3-Butadiene",LB
+37099,0.0004636462,Anthracene,LB
+37099,0.0013859902,"Benzo[g,h,i,]Perylene",LB
+37095,1.8639102e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.05319616,Benzene,LB
+37095,1.123675e-06,Nickel,LB
+37095,0.0002761126,Phenanthrene,LB
+37095,0.00010300732,Fluorene,LB
+37095,0.5812934,Carbon Dioxide,TON
+37095,1.5446e-05,Ammonia,TON
+37091,1.181843,Methane,TON
+37073,9.993902,Xylenes (Mixed Isomers),LB
+37075,2.939242,Propionaldehyde,LB
+37075,53.48794,Formaldehyde,LB
+37075,1.3092642,"2,2,4-Trimethylpentane",LB
+37075,0.002210822,Arsenic,LB
+37075,5.953282,Naphthalene,LB
+37075,0.0007175139,Nitrate portion of PM2.5-PRI,TON
+37075,0.02542777,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.004632682,Sulfate Portion of PM2.5-PRI,TON
+37075,0.801053,Styrene,LB
+37075,1.344837,Hexane,LB
+37071,441.6306,Xylenes (Mixed Isomers),LB
+37071,0.07103336,Chrysene,LB
+37071,0.002788198,"Dibenzo[a,h]Anthracene",LB
+37071,143.49182,"2,2,4-Trimethylpentane",LB
+37071,61.23912,Acetaldehyde,LB
+37071,0.1395172,Methane,TON
+37071,0.2058536,Ammonia,TON
+37059,0.002286628,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,8.057226,Benzene,LB
+37059,0.017020866,Manganese,LB
+37059,3.419975,Carbon Monoxide,TON
+37059,0.003284244,Sulfate Portion of PM2.5-PRI,TON
+37055,0.07217258,Pyrene,LB
+37055,0.009971552,Benzo[b]Fluoranthene,LB
+37055,0.06321526,Fluoranthene,LB
+37055,0.010497336,Chrysene,LB
+37055,0.0002019032,Mercury,LB
+37055,1330.046,Ethyl Benzene,LB
+37051,0.09525152,Xylenes (Mixed Isomers),LB
+37051,0.0001724984,Phenanthrene,LB
+37051,0.1400811,Nitrogen Oxides,TON
+37039,0.7674024,Styrene,LB
+37039,0.6374654,Acrolein,LB
+37039,10.222616,Formaldehyde,LB
+37039,34.083,Benzene,LB
+37039,0.1771016,Phenanthrene,LB
+37039,0.02861971,Methane,TON
+37039,461.9261,Carbon Dioxide,TON
+37039,0.006414096,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.009686804,Sulfur Dioxide,TON
+37037,9.328838e-06,Chromium (VI),LB
+37037,0.1129457,PM10-Primary from certain diesel engines,TON
+37037,0.0002655984,Nitrate portion of PM2.5-PRI,TON
+37029,0.04799374,Anthracene,LB
+37029,0.05995824,Acenaphthene,LB
+37029,0.0002970041,Nitrous Oxide,TON
+37029,0.0009842283,Sulfate Portion of PM2.5-PRI,TON
+37029,0.1192229,Volatile Organic Compounds,TON
+37053,119.95716,Benzene,LB
+37053,7.293644,Fluorene,LB
+37053,0.3725712,Methane,TON
+37053,67.5785,Carbon Monoxide,TON
+37053,0.0395904,Sulfate Portion of PM2.5-PRI,TON
+37053,3.517646,Anthracene,LB
+37053,6.956742,Pyrene,LB
+37053,7.179874,Acenaphthylene,LB
+37045,0.017524926,"Dibenzo[a,h]Anthracene",LB
+37045,0.14094198,Nickel,LB
+37045,0.08001858,Arsenic,LB
+37045,0.03133668,Nitrous Oxide,TON
+37045,0.2470676,Sulfur Dioxide,TON
+37045,0.2069047,Sulfate Portion of PM2.5-PRI,TON
+37043,0.04476658,Styrene,LB
+37043,0.03190456,Pyrene,LB
+37043,0.017355706,Acenaphthylene,LB
+37043,9.496252e-05,"Dibenzo[a,h]Anthracene",LB
+37043,1.4285986,Acetaldehyde,LB
+37043,78.93517,Carbon Dioxide,TON
+37043,0.009344857,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.0006195851,Sulfate Portion of PM2.5-PRI,TON
+37039,0.616748,Nickel,LB
+37039,3314.48,Acetaldehyde,LB
+37039,4.165115,Nitrous Oxide,TON
+37039,0.08018821,Sulfate Portion of PM2.5-PRI,TON
+37039,5704.24,Ethyl Benzene,LB
+37039,181.3582,Acrolein,LB
+37039,8.38492,Anthracene,LB
+37039,201.8516,Propionaldehyde,LB
+37039,20975.92,Xylenes (Mixed Isomers),LB
+37039,2.4133,Benzo[b]Fluoranthene,LB
+37039,44.79728,Acenaphthylene,LB
+37027,4.559722,Pyrene,LB
+37027,0.02087224,"Benzo[g,h,i,]Perylene",LB
+37027,0.1032378,Benzo[b]Fluoranthene,LB
+37027,0.014606778,Benzo[k]Fluoranthene,LB
+37027,50.271,Benzene,LB
+37027,59.67408,Naphthalene,LB
+37027,0.006272997,Nitrate portion of PM2.5-PRI,TON
+37027,4.747976,PM10 Primary (Filt + Cond),TON
+37027,2.662983,PM2.5 Primary (Filt + Cond),TON
+37027,0.2074277,Sulfur Dioxide,TON
+37011,20.90062,Ethyl Benzene,LB
+37011,39.35342,Xylenes (Mixed Isomers),LB
+37011,0.00791179,"Benzo[g,h,i,]Perylene",LB
+37011,2.74271,Fluoranthene,LB
+37011,0.4159542,Benz[a]Anthracene,LB
+37011,0.0001206669,Mercury,LB
+37005,32.62566,Xylenes (Mixed Isomers),LB
+37005,226.7926,Acetaldehyde,LB
+37005,57.33416,Naphthalene,LB
+37005,0.2560955,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.04501872,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.01046654,Sulfate Portion of PM2.5-PRI,TON
+37005,3.057455,Volatile Organic Compounds,TON
+37005,0.00014576774,Benzo[b]Fluoranthene,LB
+37005,2.037834e-05,"Dibenzo[a,h]Anthracene",LB
+37005,0.03865118,Anthracene,LB
+37005,0.1370218,Phenanthrene,LB
+37005,0.0004997592,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.0009834003,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.0005838777,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.0008593206,Naphthalene,LB
+37003,0.4567471,Carbon Monoxide,TON
+37003,3.970675e-05,Sulfate Portion of PM2.5-PRI,TON
+37003,0.17691282,Acrolein,LB
+37003,21.05268,Toluene,LB
+37001,34.21162,Naphthalene,LB
+37001,1.041971,PM10 Primary (Filt + Cond),TON
+37001,2.34295,Fluoranthene,LB
+37001,9.865088,"1,3-Butadiene",LB
+37177,0.19386446,Anthracene,LB
+37177,0.003093708,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,5.29907,Benzene,LB
+37177,1.760525e-05,Mercury,LB
+37177,0.1440167,PM25-Primary from certain diesel engines,TON
+37177,0.06094745,Elemental Carbon portion of PM2.5-PRI,TON
+37193,1.4516494,Toluene,LB
+37193,0.0509478,Benz[a]Anthracene,LB
+37193,0.009609146,Manganese,LB
+37193,9.065396,Acetaldehyde,LB
+37193,0.0674142,Acenaphthene,LB
+37193,0.008967108,Methane,TON
+37193,0.06315211,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.02262457,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.335944,Ethyl Benzene,LB
+37185,1.2232352,Xylenes (Mixed Isomers),LB
+37185,0.0012353706,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.0005614812,Benz[a]Anthracene,LB
+37185,0.001144292,Fluorene,LB
+37185,0.0007934215,Organic Carbon portion of PM2.5-PRI,TON
+37185,0.002725797,Sulfur Dioxide,TON
+37185,3.311424,Benzene,LB
+37185,1.4082898e-05,Mercury,LB
+37185,226.2445,Carbon Dioxide,TON
+37185,0.004953082,Ammonia,TON
+37185,2.985136,Toluene,LB
+37185,0.00017493426,"Dibenzo[a,h]Anthracene",LB
+37185,0.03801792,Phenanthrene,LB
+37185,0.00170363,Nitrous Oxide,TON
+37185,0.007613164,PM2.5 Primary (Filt + Cond),TON
+37191,51.98648,Toluene,LB
+37187,0.7860996,Acrolein,LB
+37187,0.7472506,Xylenes (Mixed Isomers),LB
+37187,0.9400434,Benzene,LB
+37187,0.0007168916,Arsenic,LB
+37187,0.02820256,PM25-Primary from certain diesel engines,TON
+37187,0.003484764,Ammonia,TON
+37183,171.21818,Toluene,LB
+37183,72.74544,Xylenes (Mixed Isomers),LB
+37179,0.0002474424,Acenaphthylene,LB
+37179,2.665532e-07,Mercury,LB
+37179,5.427672e-05,Acenaphthene,LB
+37179,0.006251632,"1,3-Butadiene",LB
+37179,0.0010482162,Acrolein,LB
+37179,4.345239e-05,Ammonia,TON
+37019,0.01664722,Anthracene,LB
+37019,0.006468462,Benzo[a]Pyrene,LB
+37019,0.00014756608,"Dibenzo[a,h]Anthracene",LB
+37019,0.005167724,Benz[a]Anthracene,LB
+37019,21.0614,Benzene,LB
+37019,6.199234,Acetaldehyde,LB
+37019,1.0131552,Naphthalene,LB
+37019,0.01408037,Methane,TON
+37019,8.196347,Carbon Monoxide,TON
+37015,1.627498,Acrolein,LB
+37015,0.0968068,Pyrene,LB
+37015,0.268549,Styrene,LB
+37015,0.1048474,Acenaphthylene,LB
+37015,0.005544092,Manganese,LB
+37015,0.00262255,Arsenic,LB
+37015,196.8236,Carbon Dioxide,TON
+37015,0.2150843,Nitrogen Oxides,TON
+37015,0.002119941,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.07449447,Carbon Monoxide,TON
+37009,0.003140481,Organic Carbon portion of PM2.5-PRI,TON
+37009,7.09718e-07,Chromium (VI),LB
+37009,0.000139255,"Benzo[g,h,i,]Perylene",LB
+37009,0.0006654942,Benzo[b]Fluoranthene,LB
+37009,6.083912e-07,Mercury,LB
+37009,0.04021496,Phenanthrene,LB
+37001,6.420022,Styrene,LB
+37001,31.79604,Toluene,LB
+37001,3210.697,Carbon Dioxide,TON
+37001,0.04625566,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.01748757,Sulfate Portion of PM2.5-PRI,TON
+37001,2.623595,Volatile Organic Compounds,TON
+37063,14.589558,Acetaldehyde,LB
+37063,0.01392361,Methane,TON
+37063,0.002636992,Pyrene,LB
+37063,0.002337078,Fluoranthene,LB
+37063,0.003754834,Benzo[a]Pyrene,LB
+37025,0.0105822,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.0001606834,Nitrate portion of PM2.5-PRI,TON
+37025,1.272625,Volatile Organic Compounds,TON
+37025,0.06423558,Manganese,LB
+37025,0.01956378,Nickel,LB
+37025,0.018333758,Acenaphthene,LB
+37025,0.03713552,Fluorene,LB
+37025,2.199166,"1,3-Butadiene",LB
+37025,1.8751846,Acrolein,LB
+37025,17.8786,Hexane,LB
+37025,0.03618832,Pyrene,LB
+37025,37.18408,Formaldehyde,LB
+37017,11.207744,Ethyl Benzene,LB
+37017,9.7862e-05,Chromium (VI),LB
+37017,4.05672,Phenanthrene,LB
+37017,3831.469,Carbon Dioxide,TON
+37011,471.0248,Ethyl Benzene,LB
+37009,0.0011162768,Benzo[a]Pyrene,LB
+37009,3.198558,Benzene,LB
+37009,2.302048,Carbon Monoxide,TON
+37009,0.0002803123,Nitrous Oxide,TON
+37009,0.002211634,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.01325159,PM10 Primary (Filt + Cond),TON
+37009,0.005386332,PM2.5 Primary (Filt + Cond),TON
+37005,0.0006445592,Benzo[k]Fluoranthene,LB
+37005,0.00404972,Manganese,LB
+37005,0.002492882,Nickel,LB
+37005,0.02136795,Methane,TON
+37005,0.8909087,Nitrogen Oxides,TON
+37059,0.0012060974,Pyrene,LB
+37059,89.975,Carbon Dioxide,TON
+37059,0.0008373367,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.0007001963,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,9.597658e-06,Chromium (VI),LB
+37013,0.0009782542,Benzo[b]Fluoranthene,LB
+37013,0.001785379,Fluoranthene,LB
+37013,0.004963006,Acenaphthylene,LB
+37013,4.16847e-05,"Dibenzo[a,h]Anthracene",LB
+37013,3.47472,Benzene,LB
+37013,0.001199734,Nickel,LB
+37013,12.859544,Acetaldehyde,LB
+37013,0.01179667,PM10 Primary (Filt + Cond),TON
+37013,0.08507971,Volatile Organic Compounds,TON
+37169,0.03342274,Propionaldehyde,LB
+37169,0.0002675332,Benzo[a]Pyrene,LB
+37169,0.007229724,Naphthalene,LB
+37169,0.0008278096,Ammonia,TON
+37115,0.00511781,Benzo[a]Pyrene,LB
+37115,2.962774,"2,2,4-Trimethylpentane",LB
+37115,0.001972287,Nickel,LB
+37115,0.017116156,Phenanthrene,LB
+37115,3.148774,Carbon Monoxide,TON
+37115,283.3811,Carbon Dioxide,TON
+37115,0.01566933,Ammonia,TON
+37115,0.003085076,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.008618099,Sulfur Dioxide,TON
+37115,0.0001799629,Sulfate Portion of PM2.5-PRI,TON
+37109,2.56173,Hexane,LB
+37109,9.325738,Xylenes (Mixed Isomers),LB
+37109,2.29252,Benzene,LB
+37177,5.57264e-05,Fluoranthene,LB
+37177,1.7256828e-05,Chrysene,LB
+37177,0.03714674,Acrolein,LB
+37195,8.249752,Phenanthrene,LB
+37195,35021.24,Carbon Dioxide,TON
+37195,0.5017575,Ammonia,TON
+37195,90.9305,Nitrogen Oxides,TON
+37195,3.416519,PM2.5 Primary (Filt + Cond),TON
+37195,0.03005078,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.016605132,Benzo[k]Fluoranthene,LB
+37189,0.0003565452,Benzo[b]Fluoranthene,LB
+37189,0.0016137278,Acenaphthylene,LB
+37189,0.000275534,Chrysene,LB
+37189,0.0006623948,Benzo[a]Pyrene,LB
+37189,0.3983682,"2,2,4-Trimethylpentane",LB
+37189,0.0004373312,Nickel,LB
+37189,0.0003494498,Acenaphthene,LB
+37189,0.002972724,Ammonia,TON
+37189,0.00455514,PM10 Primary (Filt + Cond),TON
+37189,0.001139207,PM2.5 Primary (Filt + Cond),TON
+37185,0.12931274,Acrolein,LB
+37185,0.001419127,Ammonia,TON
+37185,3.470728e-05,Sulfate Portion of PM2.5-PRI,TON
+37185,0.0002768286,Acenaphthylene,LB
+37191,0.0015833746,Benzo[k]Fluoranthene,LB
+37191,0.2516368,Acenaphthylene,LB
+37191,0.03862308,Benzo[a]Pyrene,LB
+37191,22.02,Acetaldehyde,LB
+37191,0.0006750426,Nitrate portion of PM2.5-PRI,TON
+37181,0.00957412,Benzo[k]Fluoranthene,LB
+37181,0.7673616,Benz[a]Anthracene,LB
+37181,0.04873354,Nickel,LB
+37039,7.554992,Toluene,LB
+37157,0.203073,Ethyl Benzene,LB
+37157,0.0003257686,Anthracene,LB
+37157,1.7244938e-05,"Dibenzo[a,h]Anthracene",LB
+37157,0.000942387,Manganese,LB
+37157,0.0003719682,Nickel,LB
+37157,0.0007090012,Fluorene,LB
+37157,2.709013e-06,Nitrate portion of PM2.5-PRI,TON
+37157,0.001569352,Sulfur Dioxide,TON
+37153,1.7084836,Ethyl Benzene,LB
+37145,2.414172,Toluene,LB
+37145,0.0017297724,Pyrene,LB
+37145,0.007195372,Methane,TON
+37177,0.02624674,Benzo[b]Fluoranthene,LB
+37177,0.03557864,Benzo[a]Pyrene,LB
+37177,62.61392,"2,2,4-Trimethylpentane",LB
+37177,0.5000346,Phenanthrene,LB
+37177,4.779396,Naphthalene,LB
+37177,0.008008861,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.0001094719,Nitrate portion of PM2.5-PRI,TON
+37177,0.09623105,PM10 Primary (Filt + Cond),TON
+37177,1.513731,Volatile Organic Compounds,TON
+37175,9.232962,Hexane,LB
+37175,0.0015990968,Benzo[b]Fluoranthene,LB
+37175,2.13358,Formaldehyde,LB
+37175,0.013753704,Fluorene,LB
+37175,40.02679,Carbon Dioxide,TON
+37175,0.0008401112,Sulfur Dioxide,TON
+37163,23.42302,Ethyl Benzene,LB
+37163,0.0002092468,Chromium (VI),LB
+37163,18.386604,"2,2,4-Trimethylpentane",LB
+37163,1.6344656,Benz[a]Anthracene,LB
+37163,0.04385906,Arsenic,LB
+37163,76.25018,Naphthalene,LB
+37163,3.935392,Volatile Organic Compounds,TON
+37163,15.315144,Ethyl Benzene,LB
+37163,11.500258,Hexane,LB
+37163,457.2188,Formaldehyde,LB
+37163,9.394466e-05,Mercury,LB
+37163,0.07553842,Nickel,LB
+37163,2.848667,PM10 Primary (Filt + Cond),TON
+37163,86.6387,Toluene,LB
+37163,82.8588,Xylenes (Mixed Isomers),LB
+37163,0.17019606,Manganese,LB
+37163,152.9145,Naphthalene,LB
+37163,1.593104,PM10 Primary (Filt + Cond),TON
+37173,3.240748,Toluene,LB
+37173,1.3663356,Hexane,LB
+37173,1.1934256e-05,Chromium (VI),LB
+37173,0.0015682162,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.0008432476,Benzo[k]Fluoranthene,LB
+37173,0.08356128,Benz[a]Anthracene,LB
+37185,0.6465658,Manganese,LB
+37185,0.4080876,Nickel,LB
+37185,1.298595,Sulfur Dioxide,TON
+37181,0.05596218,Benz[a]Anthracene,LB
+37181,1243.527,Toluene,LB
+37181,0.01133091,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.01450506,Anthracene,LB
+37001,0.02695038,Fluoranthene,LB
+37001,0.02040642,Arsenic,LB
+37001,0.8120646,Naphthalene,LB
+37127,0.02118994,Styrene,LB
+37127,0.1765853,Propionaldehyde,LB
+37127,0.003418858,Acenaphthylene,LB
+37127,0.00010024898,Mercury,LB
+37127,0.0007325484,Acenaphthene,LB
+37101,0.00818593,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.004242756,Benzo[b]Fluoranthene,LB
+37101,0.005705978,Fluoranthene,LB
+37101,0.003644828,Benz[a]Anthracene,LB
+37101,0.003184994,Acenaphthene,LB
+37101,630.7226,Carbon Dioxide,TON
+37101,0.004245062,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.01916786,Sulfur Dioxide,TON
+37101,0.0003506444,Sulfate Portion of PM2.5-PRI,TON
+37177,0.04856138,Hexane,LB
+37177,1.0035566e-06,"Dibenzo[a,h]Anthracene",LB
+37177,0.0633075,Benzene,LB
+37177,7.488837e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.10297544,Phenanthrene,LB
+37161,0.03140578,Methane,TON
+37161,0.016226342,Anthracene,LB
+37161,0.0316671,Pyrene,LB
+37161,0.005678746,Benzo[k]Fluoranthene,LB
+37151,0.5079912,Ethyl Benzene,LB
+37151,0.0004770356,Benzo[k]Fluoranthene,LB
+37151,0.000639171,Arsenic,LB
+37151,0.10989552,Fluorene,LB
+37151,0.08858388,Volatile Organic Compounds,TON
+37139,0.0004107352,Nitrous Oxide,TON
+37139,0.004882873,Ammonia,TON
+37139,0.02321327,PM10 Primary (Filt + Cond),TON
+37139,0.002179858,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.3360032,Styrene,LB
+37139,3.750802e-05,Benzo[k]Fluoranthene,LB
+37139,0.13343926,Acenaphthylene,LB
+37139,0.9352348,"2,2,4-Trimethylpentane",LB
+37139,0.013451922,Benz[a]Anthracene,LB
+37139,0.13814046,Fluorene,LB
+37141,0.00352003,"Benzo[g,h,i,]Perylene",LB
+37141,0.7602166,Fluoranthene,LB
+37141,0.433649,Acenaphthene,LB
+37131,114.0022,Ethyl Benzene,LB
+37131,0.14180676,"Benzo[g,h,i,]Perylene",LB
+37131,0.03740554,Benzo[b]Fluoranthene,LB
+37131,0.5387566,Acenaphthylene,LB
+37131,0.0369308,Benz[a]Anthracene,LB
+37125,0.006155259,Sulfate Portion of PM2.5-PRI,TON
+37125,0.04118766,Methane,TON
+37125,1.484015,Carbon Monoxide,TON
+37125,622.6927,Carbon Dioxide,TON
+37125,0.0405892,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.6248264,Styrene,LB
+37125,1.450072,"1,3-Butadiene",LB
+37125,1.3461642,Hexane,LB
+37125,1.5024126e-05,Chromium (VI),LB
+37125,0.0014247012,"Dibenzo[a,h]Anthracene",LB
+37125,4.706408,Benzene,LB
+37125,1.6973978e-05,Mercury,LB
+37121,1.1218132,Ethyl Benzene,LB
+37121,0.224055,"1,3-Butadiene",LB
+37121,1.6286832,Hexane,LB
+37121,4.152586,Xylenes (Mixed Isomers),LB
+37121,0.0004697692,Chrysene,LB
+37121,24.88469,Carbon Dioxide,TON
+37121,2.117994e-06,Nitrate portion of PM2.5-PRI,TON
+37121,0.0003649197,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.0002622397,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,10.985158,Styrene,LB
+37111,0.02571294,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,2.758472,Acenaphthene,LB
+37111,3.452337,PM10-Primary from certain diesel engines,TON
+37111,2.088925,Elemental Carbon portion of PM2.5-PRI,TON
+37111,109.5836,Nitrogen Oxides,TON
+37111,3.381417,PM2.5 Primary (Filt + Cond),TON
+37157,4.24075,Xylenes (Mixed Isomers),LB
+37157,0.001570862,"Dibenzo[a,h]Anthracene",LB
+37157,0.128202,PM25-Primary from certain diesel engines,TON
+37157,0.02528941,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,8.525418,Acrolein,LB
+37157,0.2744978,Anthracene,LB
+37157,5.594268,Propionaldehyde,LB
+37157,0.0002198086,"Dibenzo[a,h]Anthracene",LB
+37157,0.9179158,Phenanthrene,LB
+37157,4.662026,Hexane,LB
+37157,0.004577266,Anthracene,LB
+37157,0.002316432,PM2.5 Primary (Filt + Cond),TON
+37157,0.0005197376,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.1009822,Volatile Organic Compounds,TON
+37153,12.394012,"1,3-Butadiene",LB
+37153,0.13089196,Manganese,LB
+37153,1.141508,PM10-Primary from certain diesel engines,TON
+37153,1.050187,PM25-Primary from certain diesel engines,TON
+37153,0.01238063,Nitrous Oxide,TON
+37153,0.003558642,Benzo[b]Fluoranthene,LB
+37153,0.4239888,"2,2,4-Trimethylpentane",LB
+37153,0.03921074,Benz[a]Anthracene,LB
+37153,7.138874,Acetaldehyde,LB
+37153,1.1967766,Xylenes (Mixed Isomers),LB
+37153,0.0009066102,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.008908874,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.1982875,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.001022617,Nitrate portion of PM2.5-PRI,TON
+37151,0.01703191,Sulfate Portion of PM2.5-PRI,TON
+37151,0.004065322,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.9290218,Fluoranthene,LB
+37151,4.488792,Hexane,LB
+37149,0.5687398,Formaldehyde,LB
+37149,0.002058595,Methane,TON
+37149,0.0001421054,Ammonia,TON
+37147,0.000405202,Chromium (VI),LB
+37147,0.016194466,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.06357574,Benzo[b]Fluoranthene,LB
+37147,8.275804,Fluoranthene,LB
+37147,6.029428,Acenaphthene,LB
+37147,11512,Carbon Dioxide,TON
+37147,1.0194,Elemental Carbon portion of PM2.5-PRI,TON
+37147,1.584982,PM2.5 Primary (Filt + Cond),TON
+37147,7.100544,Manganese,LB
+37147,2.17941,Nickel,LB
+37147,2791.497,Carbon Monoxide,TON
+37147,1.515233,Elemental Carbon portion of PM2.5-PRI,TON
+37147,31.51244,PM10 Primary (Filt + Cond),TON
+37147,207.8668,Propionaldehyde,LB
+37147,3.93507,Benzo[b]Fluoranthene,LB
+37147,3.93507,Benzo[k]Fluoranthene,LB
+37147,5.889458,Benzo[a]Pyrene,LB
+37139,0.10654428,Acrolein,LB
+37139,2.933218,Hexane,LB
+37139,0.001080676,Benzo[b]Fluoranthene,LB
+37139,0.0013572856,Benzo[a]Pyrene,LB
+37139,0.00111564,Benz[a]Anthracene,LB
+37139,0.001799882,Manganese,LB
+37135,219.0712,"1,3-Butadiene",LB
+37135,2.312136,Fluoranthene,LB
+37135,0.4781068,Chrysene,LB
+37135,29457.2,Carbon Dioxide,TON
+37135,0.9007683,PM2.5 Primary (Filt + Cond),TON
+37131,0.15431508,Ethyl Benzene,LB
+37131,0.3675826,Acrolein,LB
+37131,1.2145648e-06,Chromium (VI),LB
+37131,0.00012913024,"Dibenzo[a,h]Anthracene",LB
+37131,0.03260112,Fluorene,LB
+37131,0.0004262294,Sulfur Dioxide,TON
+37131,0.00018588658,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,9.312008e-05,Chrysene,LB
+37131,7.093744e-07,Mercury,LB
+37131,3.103477e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.019095872,"Benzo[g,h,i,]Perylene",LB
+37123,0.003658852,Chrysene,LB
+37123,2.689206,Formaldehyde,LB
+37123,0.007119402,Benzo[a]Pyrene,LB
+37123,0.008434194,Acenaphthene,LB
+37123,2.076481e-05,Nitrate portion of PM2.5-PRI,TON
+37115,12.7288,Carbon Dioxide,TON
+37115,0.003173855,Nitrous Oxide,TON
+37115,0.0006620116,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,6.501366e-05,Sulfate Portion of PM2.5-PRI,TON
+37115,7772.088,Benzene,LB
+37115,0.929671,Manganese,LB
+37115,2717.192,Acetaldehyde,LB
+37115,16.236102,Fluorene,LB
+37115,191.09826,Styrene,LB
+37115,24844.4,Toluene,LB
+37115,36.49142,Acenaphthylene,LB
+37115,2.693256,Benzo[a]Pyrene,LB
+37115,5370.536,"2,2,4-Trimethylpentane",LB
+37113,0.002769134,Elemental Carbon portion of PM2.5-PRI,TON
+37113,4.262906,Propionaldehyde,LB
+37113,0.0008343594,Benzo[b]Fluoranthene,LB
+37109,7.70477,Ethyl Benzene,LB
+37109,5.850144,Hexane,LB
+37109,6.391102e-05,Chromium (VI),LB
+37109,0.0242112,Benzo[a]Pyrene,LB
+37109,1614.475,Carbon Dioxide,TON
+37109,0.2543199,PM10-Primary from certain diesel engines,TON
+37109,0.1778175,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.038055,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.3190138,PM10 Primary (Filt + Cond),TON
+37109,75295.18,Toluene,LB
+37099,0.0854217,Mercury,LB
+37099,11.136774,Acenaphthene,LB
+37099,50.71452,Acenaphthylene,LB
+37099,4.093174,Benzo[a]Pyrene,LB
+37099,11.54885,Ammonia,TON
+37099,13.18544,PM10 Primary (Filt + Cond),TON
+37089,0.353097,Styrene,LB
+37089,0.2679622,Pyrene,LB
+37089,9.160978e-06,Chromium (VI),LB
+37089,0.0015492656,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.02037694,Benzo[a]Pyrene,LB
+37089,2.576296,Benzene,LB
+37089,0.004282246,Nickel,LB
+37089,0.002073774,Arsenic,LB
+37089,0.1222908,PM25-Primary from certain diesel engines,TON
+37089,0.001190482,Nitrous Oxide,TON
+37081,95.72688,"1,3-Butadiene",LB
+37081,162.52662,Propionaldehyde,LB
+37081,0.001030887,Chromium (VI),LB
+37081,0.447448,Nickel,LB
+37077,0.005135614,Mercury,LB
+37077,0.4306167,Methane,TON
+37077,10.94506,Volatile Organic Compounds,TON
+37077,0.00620958,"Dibenzo[a,h]Anthracene",LB
+37069,2.085132e-05,Chromium (VI),LB
+37069,0.02233992,Benzo[b]Fluoranthene,LB
+37069,0.5561514,Acenaphthylene,LB
+37069,0.2468224,Benz[a]Anthracene,LB
+37069,9.905008,Benzene,LB
+37069,0.01216152,Nickel,LB
+37069,0.0114335,Ammonia,TON
+37065,0.000637337,Acenaphthylene,LB
+37065,5.70264e-05,Benz[a]Anthracene,LB
+37065,0.2443214,Benzene,LB
+37065,2.519508e-06,Nitrate portion of PM2.5-PRI,TON
+37065,8.299613e-05,Sulfate Portion of PM2.5-PRI,TON
+37067,0.04547584,Propionaldehyde,LB
+37051,0.03182654,Anthracene,LB
+37051,0.06268572,Pyrene,LB
+37051,0.0005151882,"Dibenzo[a,h]Anthracene",LB
+37051,0.01737711,Ammonia,TON
+37051,7.099351e-05,Nitrate portion of PM2.5-PRI,TON
+37117,6.340358,Toluene,LB
+37117,2.343968,"2,2,4-Trimethylpentane",LB
+37117,0.0699665,Benz[a]Anthracene,LB
+37117,0.529353,Fluorene,LB
+37117,0.09582336,PM25-Primary from certain diesel engines,TON
+37117,0.5418438,Volatile Organic Compounds,TON
+37111,0.0005199766,Nickel,LB
+37111,0.01631096,Acenaphthene,LB
+37111,0.09053508,Phenanthrene,LB
+37111,0.005059268,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.00372196,Sulfur Dioxide,TON
+37121,108.87326,Propionaldehyde,LB
+37121,7.70728,Fluoranthene,LB
+37121,0.0201414,Mercury,LB
+37121,0.3850782,Arsenic,LB
+37121,5.327,Acenaphthene,LB
+37121,2.885947,Methane,TON
+37121,38108.73,Carbon Dioxide,TON
+37121,0.42403,Elemental Carbon portion of PM2.5-PRI,TON
+37121,3.087084,Ammonia,TON
+37121,0.8002704,Sulfur Dioxide,TON
+37121,85.63448,Volatile Organic Compounds,TON
+37115,0.829523,Styrene,LB
+37115,0.02128698,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.0369481,Benzo[a]Pyrene,LB
+37115,3.292404,Hexane,LB
+37115,1.0583184,Fluoranthene,LB
+37115,0.004123532,Benzo[k]Fluoranthene,LB
+37115,0.7609706,Acenaphthylene,LB
+37115,0.10096686,Benzo[a]Pyrene,LB
+37115,0.02927297,Ammonia,TON
+37113,0.018241918,"1,3-Butadiene",LB
+37113,0.000272329,Fluoranthene,LB
+37113,0.0004120528,Acenaphthylene,LB
+37113,0.000262179,Arsenic,LB
+37113,0.0004151062,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.01045639,Nitrous Oxide,TON
+37113,1.253812e-06,Nitrate portion of PM2.5-PRI,TON
+37113,0.001588799,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.0003757722,Sulfur Dioxide,TON
+37099,2.494608,Ethyl Benzene,LB
+37099,3.141806e-06,Chromium (VI),LB
+37099,1.3066244,Formaldehyde,LB
+37099,0.0006021936,Arsenic,LB
+37095,10.145426,Formaldehyde,LB
+37095,0.0018870254,Manganese,LB
+37095,0.05375168,Fluorene,LB
+37095,0.001599495,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.3727607,Nitrogen Oxides,TON
+37095,0.01563166,PM10 Primary (Filt + Cond),TON
+37095,0.01093723,PM2.5 Primary (Filt + Cond),TON
+37095,0.003839235,Sulfur Dioxide,TON
+37079,0.0017435584,Chrysene,LB
+37079,1.1527746e-05,Mercury,LB
+37079,1.6864994,Acetaldehyde,LB
+37081,83.73454,Xylenes (Mixed Isomers),LB
+37081,0.0002075604,Chromium (VI),LB
+37081,8.497418,Fluoranthene,LB
+37081,0.03349014,Benzo[k]Fluoranthene,LB
+37081,106.37246,Benzene,LB
+37081,13.68303,Phenanthrene,LB
+37081,7.862988,Fluorene,LB
+37081,8498.689,Carbon Dioxide,TON
+37081,0.07353553,Sulfur Dioxide,TON
+37081,6.458728,Volatile Organic Compounds,TON
+37057,0.0003015698,Sulfate Portion of PM2.5-PRI,TON
+37057,0.00017658314,Nickel,LB
+37055,0.003355328,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.0007910211,Nitrate portion of PM2.5-PRI,TON
+37055,0.009099272,Sulfur Dioxide,TON
+37049,3.401432e-05,Mercury,LB
+37049,2.827384e-06,Nickel,LB
+37049,0.004918682,Ammonia,TON
+37049,0.0646687,PM10 Primary (Filt + Cond),TON
+37049,0.04338563,PM2.5 Primary (Filt + Cond),TON
+37049,0.6652434,Xylenes (Mixed Isomers),LB
+37049,0.0007778694,Chrysene,LB
+37049,0.02584058,"Benzo[g,h,i,]Perylene",LB
+37049,0.4317978,Benzo[a]Pyrene,LB
+37049,0.0001125078,Mercury,LB
+37049,3.814526,Fluorene,LB
+37049,1.402944,Elemental Carbon portion of PM2.5-PRI,TON
+37049,2.387836,PM2.5 Primary (Filt + Cond),TON
+37035,3.676276,Anthracene,LB
+37035,0.02933746,Benzo[k]Fluoranthene,LB
+37035,0.12324598,Arsenic,LB
+37035,525.0852,Acetaldehyde,LB
+37013,1.5711452,Acenaphthylene,LB
+37013,166.93996,Acetaldehyde,LB
+37013,2.046952,Fluorene,LB
+37013,0.9252111,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.1443468,Sulfate Portion of PM2.5-PRI,TON
+37013,1.5278092,Acenaphthylene,LB
+37021,0.5026242,Benzo[a]Pyrene,LB
+37021,0.366802,Benz[a]Anthracene,LB
+37021,27.55936,Styrene,LB
+37021,0.3663428,Benzo[k]Fluoranthene,LB
+37021,65.126,Naphthalene,LB
+37021,0.1452443,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,15.35062,Formaldehyde,LB
+37005,0.016960536,Benzo[a]Pyrene,LB
+37005,0.012295762,Benz[a]Anthracene,LB
+37005,0.00016059922,Mercury,LB
+37005,0.003070448,Arsenic,LB
+37005,10.97309,Carbon Monoxide,TON
+37005,0.009272537,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.9252256,Styrene,LB
+37005,2.104426,"1,3-Butadiene",LB
+37049,0.02284742,Benzo[a]Pyrene,LB
+37049,6.45738,Ethyl Benzene,LB
+37049,0.02155094,Pyrene,LB
+37049,0.012203402,Benzo[b]Fluoranthene,LB
+37049,0.05122356,Acenaphthylene,LB
+37049,0.01119526,Nickel,LB
+37113,0.5632178,Acenaphthene,LB
+37113,0.09862369,Organic Carbon portion of PM2.5-PRI,TON
+37099,4.627724,Styrene,LB
+37099,0.4199078,Chrysene,LB
+37099,4.157956,Phenanthrene,LB
+37099,0.2032291,Ammonia,TON
+37099,0.1141412,Sulfur Dioxide,TON
+37095,9.825716e-06,Mercury,LB
+37095,0.005707222,Nickel,LB
+37095,264.6606,Carbon Dioxide,TON
+37095,1.06338e-05,Chromium (VI),LB
+37083,0.010571942,Ethyl Benzene,LB
+37083,0.002178148,"1,3-Butadiene",LB
+37083,0.0003867976,Propionaldehyde,LB
+37083,3.809598e-08,Mercury,LB
+37083,0.2512398,Carbon Dioxide,TON
+37083,7.256825e-07,Sulfate Portion of PM2.5-PRI,TON
+37073,3.978304e-06,Mercury,LB
+37073,0.0008318654,Arsenic,LB
+37073,246.7347,Carbon Dioxide,TON
+37073,0.06092911,PM25-Primary from certain diesel engines,TON
+37073,0.002173084,Sulfur Dioxide,TON
+37073,0.68345,Hexane,LB
+37073,0.219572,Pyrene,LB
+37065,25708.54,Xylenes (Mixed Isomers),LB
+37065,0.09524,"Dibenzo[a,h]Anthracene",LB
+37065,8537.848,"2,2,4-Trimethylpentane",LB
+37065,10.48403,Ammonia,TON
+37065,2.881972,Sulfur Dioxide,TON
+37065,198.2102,Volatile Organic Compounds,TON
+37061,0.03565736,Anthracene,LB
+37061,0.013454144,Chrysene,LB
+37061,0.03384963,PM10 Primary (Filt + Cond),TON
+37051,0.0009982346,Mercury,LB
+37051,0.3071732,Nickel,LB
+37051,10.968064,Fluorene,LB
+37051,0.6753308,Sulfur Dioxide,TON
+37051,9.65694,Volatile Organic Compounds,TON
+37051,0.06757916,"Benzo[g,h,i,]Perylene",LB
+37051,0.04624464,Benzo[k]Fluoranthene,LB
+37051,55.34526,"2,2,4-Trimethylpentane",LB
+37049,16.177672,"Benzo[g,h,i,]Perylene",LB
+37049,4.818294,Benz[a]Anthracene,LB
+37049,10.5637,Methane,TON
+37049,251685.4,Carbon Dioxide,TON
+37035,0.003346552,Mercury,LB
+37035,14.701194,Propionaldehyde,LB
+37035,3804.798,Xylenes (Mixed Isomers),LB
+37035,0.0943152,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.257204,Benz[a]Anthracene,LB
+37027,0.0005905466,Arsenic,LB
+37027,0.002100134,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.001727526,Benzo[k]Fluoranthene,LB
+37027,0.13776096,Propionaldehyde,LB
+37027,0.03323568,Nitrogen Oxides,TON
+37027,0.0005062722,Benz[a]Anthracene,LB
+37027,1.0783598,Benzene,LB
+37027,0.3820708,Acetaldehyde,LB
+37027,0.006539776,Phenanthrene,LB
+37047,18627.086,Toluene,LB
+37047,64.96661,Volatile Organic Compounds,TON
+37045,0.4287796,Styrene,LB
+37045,0.8363336,Hexane,LB
+37045,2.59094,Xylenes (Mixed Isomers),LB
+37045,0.007171328,Benzo[b]Fluoranthene,LB
+37045,0.002523424,Arsenic,LB
+37045,0.0196074,Methane,TON
+37045,929.6715,Carbon Dioxide,TON
+37045,0.01312586,Ammonia,TON
+37045,0.03622705,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.007954688,Sulfur Dioxide,TON
+37043,59.96278,Benzene,LB
+37041,902.5754,Xylenes (Mixed Isomers),LB
+37039,2.622268,Hexane,LB
+37039,0.0010004678,Benzo[b]Fluoranthene,LB
+37039,0.003489076,Acenaphthene,LB
+37039,2.118753,Carbon Monoxide,TON
+37039,0.1469981,Nitrogen Oxides,TON
+37039,0.00202645,PM2.5 Primary (Filt + Cond),TON
+37039,0.0008010212,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.04357111,Sulfur Dioxide,TON
+37027,17.646578,"1,3-Butadiene",LB
+37027,0.6714246,Pyrene,LB
+37027,0.10373328,Benzo[b]Fluoranthene,LB
+37027,1.844497,Acenaphthylene,LB
+37027,0.10505468,Chrysene,LB
+37027,92.58532,Acetaldehyde,LB
+37027,2.197478,Phenanthrene,LB
+37007,1.0179888e-05,"Benzo[g,h,i,]Perylene",LB
+37007,0.0002626952,Acenaphthylene,LB
+37007,0.00098955,Manganese,LB
+37007,3.115722,Acetaldehyde,LB
+37007,0.000632123,Naphthalene,LB
+37007,0.265445,Methane,TON
+37007,0.001012768,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.0002452544,Sulfur Dioxide,TON
+37007,0.00948637,PM25-Primary from certain diesel engines,TON
+37007,0.0007851282,Ammonia,TON
+37007,0.01303234,PM10 Primary (Filt + Cond),TON
+37007,0.2696578,Toluene,LB
+37007,0.10020686,Hexane,LB
+37007,0.014280222,Anthracene,LB
+37007,8.762984e-07,Chromium (VI),LB
+37007,0.0219699,Acenaphthylene,LB
+37007,0.004945106,Pyrene,LB
+37007,0.0011427778,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.9465406,Acetaldehyde,LB
+37007,0.0002790125,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.1660097,Nitrogen Oxides,TON
+37007,0.05876572,Volatile Organic Compounds,TON
+37019,1.0226906,Acenaphthene,LB
+37019,2689.645,Carbon Dioxide,TON
+37019,0.2434069,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.02309829,Sulfur Dioxide,TON
+37019,0.8574764,Anthracene,LB
+37019,16.747166,Propionaldehyde,LB
+37019,0.011844894,Benzo[b]Fluoranthene,LB
+37011,0.03254764,Benzo[b]Fluoranthene,LB
+37011,0.00445603,"Dibenzo[a,h]Anthracene",LB
+37011,0.3845998,PM2.5 Primary (Filt + Cond),TON
+37009,1.4688134,Pyrene,LB
+37009,0.0001039468,Chromium (VI),LB
+37009,0.02901082,Benzo[b]Fluoranthene,LB
+37009,22.19628,Naphthalene,LB
+37009,0.1568635,Ammonia,TON
+37009,11.60052,"2,2,4-Trimethylpentane",LB
+37009,0.008328669,Methane,TON
+37009,9.190581e-06,Nitrate portion of PM2.5-PRI,TON
+37009,0.1751106,Acrolein,LB
+37005,3.35226,Propionaldehyde,LB
+37005,81.5671,Formaldehyde,LB
+37005,2.654623,Carbon Monoxide,TON
+37005,3663.065,Carbon Dioxide,TON
+37005,0.3161259,PM10-Primary from certain diesel engines,TON
+37005,0.0587092,Benzo[a]Pyrene,LB
+37005,0.01039484,Nickel,LB
+37005,1.0391786,Phenanthrene,LB
+37005,0.3883384,Fluorene,LB
+37005,0.1200457,Methane,TON
+37005,0.03187891,Sulfur Dioxide,TON
+37005,588.851,Toluene,LB
+37005,0.3170376,Pyrene,LB
+37005,400.1418,Xylenes (Mixed Isomers),LB
+37003,4.573612e-07,Pyrene,LB
+37003,3.31646e-07,"Benzo[g,h,i,]Perylene",LB
+37003,1.246033e-07,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,4.01033e-07,Fluoranthene,LB
+37003,0.00016159602,"2,2,4-Trimethylpentane",LB
+37003,8.483836e-05,Acetaldehyde,LB
+37003,4.087884e-10,Nitrate portion of PM2.5-PRI,TON
+37003,4.835828e-09,Sulfate Portion of PM2.5-PRI,TON
+37001,5002.316,"1,3-Butadiene",LB
+37001,121866.08,Toluene,LB
+37001,13.498056,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,165.1984,Acenaphthylene,LB
+37001,9.976452,Chrysene,LB
+37001,7.141596,Manganese,LB
+37001,36.27476,Acenaphthene,LB
+37001,4.723795,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,8.413699,Sulfur Dioxide,TON
+37001,0.4172322,Sulfate Portion of PM2.5-PRI,TON
+37185,0.0001074658,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.0005550567,Sulfur Dioxide,TON
+37185,0.00323224,Styrene,LB
+37185,0.011430988,Acrolein,LB
+37185,0.000105215,Anthracene,LB
+37185,0.0002231012,Pyrene,LB
+37185,0.0002681626,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.3245702,Benzene,LB
+37185,0.0002263456,Fluorene,LB
+37055,1.3928608,Xylenes (Mixed Isomers),LB
+37055,0.0014754592,Benzo[a]Pyrene,LB
+37055,0.0008594522,Nickel,LB
+37055,0.001227698,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.003772543,Sulfur Dioxide,TON
+37043,0.0001698521,PM2.5 Primary (Filt + Cond),TON
+37043,5.078662e-07,Chromium (VI),LB
+37043,0.18633494,Benzene,LB
+37043,5.091344e-06,Mercury,LB
+37167,0.8345898,Toluene,LB
+37167,0.08334408,Propionaldehyde,LB
+37167,0.00206405,"Benzo[g,h,i,]Perylene",LB
+37167,0.0004063522,Benzo[k]Fluoranthene,LB
+37167,0.6553052,Formaldehyde,LB
+37167,4.21935,Acetaldehyde,LB
+37167,0.01804254,Naphthalene,LB
+37167,57.239,Carbon Dioxide,TON
+37167,0.02427017,Volatile Organic Compounds,TON
+37167,0.05576391,Methane,TON
+37167,0.00703557,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.220713,Styrene,LB
+37167,6.860812,Hexane,LB
+37167,0.01277693,Fluoranthene,LB
+37175,0.0003447976,Fluorene,LB
+37175,0.483135,Carbon Monoxide,TON
+37175,0.002258136,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,4.91185e-05,Sulfate Portion of PM2.5-PRI,TON
+37175,0.001740675,Manganese,LB
+37173,36.55596,Formaldehyde,LB
+37173,0.02984888,Benz[a]Anthracene,LB
+37173,129.97698,Benzene,LB
+37173,22.42248,Acetaldehyde,LB
+37173,0.0570823,PM10 Primary (Filt + Cond),TON
+37165,0.0019908698,Anthracene,LB
+37173,0.0001245983,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.000460019,Nitrous Oxide,TON
+37173,0.0006692332,PM2.5 Primary (Filt + Cond),TON
+37173,0.000214432,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.0002242796,Benz[a]Anthracene,LB
+37153,0.2281762,Hexane,LB
+37153,0.0004585614,Pyrene,LB
+37153,0.0005244022,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.25755,"2,2,4-Trimethylpentane",LB
+37153,2.223218e-05,Mercury,LB
+37153,39.12013,Carbon Dioxide,TON
+37153,1.954299e-06,Nitrate portion of PM2.5-PRI,TON
+37153,0.001188372,Sulfur Dioxide,TON
+37123,0.04825818,Propionaldehyde,LB
+37123,0.0003949222,Pyrene,LB
+37123,0.0004510876,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.0004057112,Manganese,LB
+37123,0.0005897947,PM2.5 Primary (Filt + Cond),TON
+37123,0.0009464667,Sulfur Dioxide,TON
+37109,0.005026398,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.05283468,"Benzo[g,h,i,]Perylene",LB
+37109,0.017658918,Fluoranthene,LB
+37093,9.269686,Toluene,LB
+37175,0.002397884,Anthracene,LB
+37175,0.05456086,Propionaldehyde,LB
+37175,248.1768,Styrene,LB
+37175,1808.233,Carbon Monoxide,TON
+37175,0.7541524,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.05117648,Chrysene,LB
+37167,0.08668394,Benz[a]Anthracene,LB
+37167,0.10462528,Acenaphthene,LB
+37167,0.2372138,Fluorene,LB
+37167,0.001232064,Nitrous Oxide,TON
+37167,0.01214532,Ammonia,TON
+37167,1.34695,Nitrogen Oxides,TON
+37167,0.3490408,Pyrene,LB
+37167,0.4514654,Styrene,LB
+37167,0.4966694,"1,3-Butadiene",LB
+37167,1.3616874,Xylenes (Mixed Isomers),LB
+37167,0.0005206402,"Dibenzo[a,h]Anthracene",LB
+37167,0.05012902,Acenaphthene,LB
+37167,0.0006526253,Nitrous Oxide,TON
+37167,0.006094038,Ammonia,TON
+37159,14.644408,Styrene,LB
+37159,0.4388628,Manganese,LB
+37159,0.1423662,Nickel,LB
+37159,1.122033,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.139066,Sulfur Dioxide,TON
+37149,12.921628,Ethyl Benzene,LB
+37149,31.01916,Xylenes (Mixed Isomers),LB
+37149,0.00018172582,Chromium (VI),LB
+37149,0.04118958,Arsenic,LB
+37149,50.71914,Nitrogen Oxides,TON
+37151,63.1829,Styrene,LB
+37151,11.889584,Anthracene,LB
+37151,23.50864,Pyrene,LB
+37151,19.178708,Fluoranthene,LB
+37151,0.538334,Nickel,LB
+37151,0.1455312,Arsenic,LB
+37151,0.9885571,Methane,TON
+37151,0.0010641528,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.06913548,Chrysene,LB
+37151,6.81029,"2,2,4-Trimethylpentane",LB
+37151,8.701546,Ethyl Benzene,LB
+37151,3.515394,Styrene,LB
+37151,0.1433896,Methane,TON
+37151,0.002015827,Nitrous Oxide,TON
+37139,0.2435006,Anthracene,LB
+37139,0.009017687,Ammonia,TON
+37139,0.003977748,Sulfur Dioxide,TON
+37199,0.007945572,Styrene,LB
+37199,0.6798002,Xylenes (Mixed Isomers),LB
+37199,0.01861324,Naphthalene,LB
+37199,0.0002060493,Nitrous Oxide,TON
+37195,0.07415842,Acrolein,LB
+37195,0.005427564,"Benzo[g,h,i,]Perylene",LB
+37195,0.0010499674,Benzo[k]Fluoranthene,LB
+37195,8.341604e-05,Mercury,LB
+37195,0.001970952,Nitrous Oxide,TON
+37195,0.002964257,PM2.5 Primary (Filt + Cond),TON
+37195,0.001071165,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,8.551518e-05,Sulfate Portion of PM2.5-PRI,TON
+37197,2.036432,Styrene,LB
+37197,333.7478,Toluene,LB
+37197,79.61376,Hexane,LB
+37197,0.07623452,Anthracene,LB
+37197,0.04745632,Benzo[b]Fluoranthene,LB
+37197,0.04745632,Benzo[k]Fluoranthene,LB
+37197,0.4783404,Phenanthrene,LB
+37197,40.24209,Carbon Monoxide,TON
+37197,0.08520357,PM2.5 Primary (Filt + Cond),TON
+37197,10.19609,Ethyl Benzene,LB
+37197,37.70264,Xylenes (Mixed Isomers),LB
+37197,0.005529472,Benzo[k]Fluoranthene,LB
+37197,0.00539513,Benz[a]Anthracene,LB
+37197,0.01626963,Acenaphthene,LB
+37197,32.60115,Carbon Dioxide,TON
+37189,1.0901132,Xylenes (Mixed Isomers),LB
+37189,5.727218,Acetaldehyde,LB
+37189,0.03968294,Acenaphthene,LB
+37189,0.15791012,Phenanthrene,LB
+37189,0.08834002,Fluorene,LB
+37189,1.4365174,Naphthalene,LB
+37189,0.4352123,Carbon Monoxide,TON
+37189,1.237823,Nitrogen Oxides,TON
+37187,1.2956478,Pyrene,LB
+37187,5.827978,"2,2,4-Trimethylpentane",LB
+37187,0.824826,Acenaphthene,LB
+37187,0.1597723,Elemental Carbon portion of PM2.5-PRI,TON
+37179,3.07675,Benzene,LB
+37179,0.4049508,Phenanthrene,LB
+37179,0.02281179,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.4834606,Styrene,LB
+37179,0.120101,Anthracene,LB
+37179,1.7702092,Propionaldehyde,LB
+37179,0.3411804,Pyrene,LB
+37179,1.9521908,Xylenes (Mixed Isomers),LB
+37179,0.0018718872,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,2.464406,Acetaldehyde,LB
+37177,0.0005077492,Sulfur Dioxide,TON
+37177,0.438156,Acrolein,LB
+37177,0.454181,Toluene,LB
+37177,6.492592e-05,"Benzo[g,h,i,]Perylene",LB
+37177,0.0001075004,Benzo[b]Fluoranthene,LB
+37177,0.0003600926,Benzo[a]Pyrene,LB
+37177,0.5260896,Benzene,LB
+37173,2.498614,Styrene,LB
+37173,4.901666,"2,2,4-Trimethylpentane",LB
+37173,0.01176416,Arsenic,LB
+37173,0.15347686,Anthracene,LB
+37173,1.6492606e-05,Chromium (VI),LB
+37173,0.0002143666,Benzo[k]Fluoranthene,LB
+37173,0.3131018,Acenaphthylene,LB
+37173,0.04061522,Benz[a]Anthracene,LB
+37173,3.297847,Carbon Monoxide,TON
+37173,403.5966,Carbon Dioxide,TON
+37041,17.161944,Acrolein,LB
+37041,0.00360502,Benzo[b]Fluoranthene,LB
+37041,0.009100785,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.0004061874,Mercury,LB
+37033,190.2089,Hexane,LB
+37033,1.400525,Nitrogen Oxides,TON
+37033,0.02322272,Organic Carbon portion of PM2.5-PRI,TON
+37031,1.4524926,Anthracene,LB
+37031,22.82564,Propionaldehyde,LB
+37031,0.09470756,Benzo[b]Fluoranthene,LB
+37031,549.4858,Formaldehyde,LB
+37031,0.0798734,Nickel,LB
+37031,54.60094,Naphthalene,LB
+37031,0.02916147,Nitrous Oxide,TON
+37031,4.394959,PM10 Primary (Filt + Cond),TON
+37031,2.609716,Volatile Organic Compounds,TON
+37025,9.551838,Benzo[b]Fluoranthene,LB
+37025,0.2916252,"Dibenzo[a,h]Anthracene",LB
+37025,947.911,Nitrogen Oxides,TON
+37025,598.0523,Volatile Organic Compounds,TON
+37025,0.02652574,Chromium (VI),LB
+37025,0.2659108,Mercury,LB
+37025,5952.89,Acetaldehyde,LB
+37025,4067.079,Carbon Monoxide,TON
+37025,13.22944,PM2.5 Primary (Filt + Cond),TON
+37173,0.5370576,Ethyl Benzene,LB
+37173,0.4991002,"1,3-Butadiene",LB
+37173,1.1695472,Toluene,LB
+37173,0.4093182,Hexane,LB
+37173,0.8276206,Propionaldehyde,LB
+37173,0.003907144,Benzo[b]Fluoranthene,LB
+37173,0.04424031,PM25-Primary from certain diesel engines,TON
+37097,0.008979075,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.347194,Propionaldehyde,LB
+37097,0.0003453468,"Dibenzo[a,h]Anthracene",LB
+37097,0.01252618,Manganese,LB
+37097,1.0002178,Naphthalene,LB
+37081,0.05473746,Nitrate portion of PM2.5-PRI,TON
+37081,0.002168706,Chromium (VI),LB
+37081,73.53602,Phenanthrene,LB
+37081,226575.1,Carbon Dioxide,TON
+37081,12.40574,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.001280476,Arsenic,LB
+37081,0.001050749,Nitrous Oxide,TON
+37081,1.883115e-05,Nitrate portion of PM2.5-PRI,TON
+37081,0.007845117,PM2.5 Primary (Filt + Cond),TON
+37077,0.5660698,"1,3-Butadiene",LB
+37077,0.005438798,Acenaphthene,LB
+37077,0.007773691,Ammonia,TON
+37077,0.4084956,Nitrogen Oxides,TON
+37077,0.09581661,Volatile Organic Compounds,TON
+37075,1.9277956,Toluene,LB
+37075,0.004322998,Benzo[b]Fluoranthene,LB
+37075,0.0500573,Benz[a]Anthracene,LB
+37075,0.002295764,Nickel,LB
+37075,2.815582,Naphthalene,LB
+37075,0.8161074,Nitrogen Oxides,TON
+37071,19.207438,Styrene,LB
+37071,3.44122,Benz[a]Anthracene,LB
+37071,31.60771,Carbon Monoxide,TON
+37071,0.05115373,Nitrous Oxide,TON
+37071,3.719561,PM2.5 Primary (Filt + Cond),TON
+37071,0.5664446,Formaldehyde,LB
+37071,9.749994e-06,Mercury,LB
+37071,0.4680698,Acetaldehyde,LB
+37071,0.6544066,Carbon Monoxide,TON
+37071,5.353706e-06,Nitrate portion of PM2.5-PRI,TON
+37071,0.004626633,PM10 Primary (Filt + Cond),TON
+37071,0.001429316,Sulfur Dioxide,TON
+37071,0.02746532,Acrolein,LB
+37063,0.02969044,Benzo[a]Pyrene,LB
+37063,0.4987698,Phenanthrene,LB
+37063,0.2955398,Fluorene,LB
+37063,0.2387418,Volatile Organic Compounds,TON
+37057,81.89474,Acrolein,LB
+37057,0.03187052,"Benzo[g,h,i,]Perylene",LB
+37057,98.84258,Benzene,LB
+37057,4.350742,PM10-Primary from certain diesel engines,TON
+37057,4.002654,PM25-Primary from certain diesel engines,TON
+37057,0.6310336,Ammonia,TON
+37057,10.899286,"1,3-Butadiene",LB
+37057,26.28394,Toluene,LB
+37057,0.0008861422,Benzo[k]Fluoranthene,LB
+37057,1.8833432,Fluorene,LB
+37057,1828.493,Carbon Dioxide,TON
+37057,2.977794,Nitrogen Oxides,TON
+37057,1.995074,Volatile Organic Compounds,TON
+37055,1066.2818,Acetaldehyde,LB
+37055,1.653208,Methane,TON
+37055,61.28581,Volatile Organic Compounds,TON
+37055,62.25836,Acrolein,LB
+37055,1.003969,Benzo[b]Fluoranthene,LB
+37055,1.003969,Benzo[k]Fluoranthene,LB
+37053,0.0014526462,"Dibenzo[a,h]Anthracene",LB
+37053,1045.972,Carbon Dioxide,TON
+37047,4.236754,Ethyl Benzene,LB
+37047,10.415564,Acrolein,LB
+37047,1.0266966,Pyrene,LB
+37047,0.7700248,Acenaphthylene,LB
+37047,2.978382,"2,2,4-Trimethylpentane",LB
+37047,1.3755442,Phenanthrene,LB
+37047,0.07091006,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.3515534,Ethyl Benzene,LB
+37039,0.8224006,Acrolein,LB
+37039,0.5434628,Propionaldehyde,LB
+37039,0.0004640718,"Benzo[g,h,i,]Perylene",LB
+37039,0.0112152,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.2805086,Propionaldehyde,LB
+37037,0.02388084,"Benzo[g,h,i,]Perylene",LB
+37037,0.005727488,Benzo[b]Fluoranthene,LB
+37037,0.02129992,Fluoranthene,LB
+37037,0.008930396,Benzo[a]Pyrene,LB
+37037,0.001550446,Elemental Carbon portion of PM2.5-PRI,TON
+37029,2.972798e-05,Anthracene,LB
+37029,2.466586e-05,Chrysene,LB
+37029,0.0005391506,Manganese,LB
+37027,20.6665,Propionaldehyde,LB
+37027,0.017441306,"Benzo[g,h,i,]Perylene",LB
+37027,453.9196,Formaldehyde,LB
+37027,0.2829382,Manganese,LB
+37027,0.3575717,Methane,TON
+37027,1.023611,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.02001717,Nitrous Oxide,TON
+37173,0.0014312798,Acenaphthylene,LB
+37173,0.00013513734,Manganese,LB
+37173,0.0003139126,Acenaphthene,LB
+37173,0.0001587229,Methane,TON
+37173,0.01522439,Nitrogen Oxides,TON
+37171,77646.1,Toluene,LB
+37171,39.8263,Pyrene,LB
+37171,7.02943,Benzo[b]Fluoranthene,LB
+37171,6.82266,Chrysene,LB
+37171,7539.664,Formaldehyde,LB
+37171,3.872714,Manganese,LB
+37171,23.84252,Acenaphthene,LB
+37171,48.29614,Fluorene,LB
+37171,5720.963,Carbon Monoxide,TON
+37171,10.89565,Nitrous Oxide,TON
+37165,0.009693502,Arsenic,LB
+37165,99.50248,Acetaldehyde,LB
+37165,0.003324934,Nitrate portion of PM2.5-PRI,TON
+37165,0.01468362,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.007901484,Benzo[k]Fluoranthene,LB
+37165,0.19340852,Benzo[a]Pyrene,LB
+37165,5.481066,"2,2,4-Trimethylpentane",LB
+37165,0.03543136,Nickel,LB
+37157,2.637018,Organic Carbon portion of PM2.5-PRI,TON
+37157,1.636723,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.1442157,Sulfate Portion of PM2.5-PRI,TON
+37157,0.010272702,Chromium (VI),LB
+37157,2.881086,Chrysene,LB
+37157,2576.132,Formaldehyde,LB
+37157,0.10645754,"Dibenzo[a,h]Anthracene",LB
+37157,1.968947,Arsenic,LB
+37157,8.858618,Acenaphthene,LB
+37147,0.03724972,"Benzo[g,h,i,]Perylene",LB
+37147,0.6257348,Benzo[a]Pyrene,LB
+37147,2.01125,Benz[a]Anthracene,LB
+37147,19.57866,Carbon Monoxide,TON
+37145,7.959564,Hexane,LB
+37145,1.0259602,Anthracene,LB
+37145,1.5810164,Acenaphthylene,LB
+37145,0.18833,Methane,TON
+37145,0.7386326,PM10-Primary from certain diesel engines,TON
+37145,1.028875,PM10 Primary (Filt + Cond),TON
+37145,0.7171552,PM2.5 Primary (Filt + Cond),TON
+37145,1.922271,Methane,TON
+37145,1.915633,Nitrous Oxide,TON
+37145,2.078855,PM2.5 Primary (Filt + Cond),TON
+37145,92.72624,Acrolein,LB
+37145,4495.308,Hexane,LB
+37145,3.718852,Anthracene,LB
+37145,1.7186968,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,1.2288186,Chrysene,LB
+37145,1.722588,Benzo[a]Pyrene,LB
+37145,4026.15,"2,2,4-Trimethylpentane",LB
+37129,63.83668,Ethyl Benzene,LB
+37129,17.234528,Styrene,LB
+37129,14.038256,Pyrene,LB
+37129,0.08431628,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.04652352,Benzo[k]Fluoranthene,LB
+37129,3.509434,Benz[a]Anthracene,LB
+37129,162.24578,Benzene,LB
+37129,19.56311,Phenanthrene,LB
+37129,60036.95,Carbon Dioxide,TON
+37129,0.02121601,Nitrate portion of PM2.5-PRI,TON
+37129,0.6544697,Sulfate Portion of PM2.5-PRI,TON
+37129,0.02498124,Chrysene,LB
+37129,0.012890448,Benzo[a]Pyrene,LB
+37129,0.0005254548,"Dibenzo[a,h]Anthracene",LB
+37129,0.003220777,Ammonia,TON
+37129,0.0404985,PM2.5 Primary (Filt + Cond),TON
+37141,0.015041388,Benzo[a]Pyrene,LB
+37141,719.3782,Carbon Dioxide,TON
+37141,0.07215747,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.0011436866,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.16069016,Fluoranthene,LB
+37141,0.1176145,Acenaphthylene,LB
+37137,0.13598376,Toluene,LB
+37137,0.007442356,Anthracene,LB
+37137,0.01180949,Acenaphthylene,LB
+37137,0.02516544,Phenanthrene,LB
+37137,0.0006440365,Sulfate Portion of PM2.5-PRI,TON
+37137,0.8746428,Propionaldehyde,LB
+37137,2.05467,Xylenes (Mixed Isomers),LB
+37137,2.2988e-05,Benzo[k]Fluoranthene,LB
+37137,0.000528692,Benzo[a]Pyrene,LB
+37137,0.00373177,Nickel,LB
+37137,0.002444126,PM25-Primary from certain diesel engines,TON
+37131,5.120112,Acrolein,LB
+37131,0.6482012,Pyrene,LB
+37131,0.00284746,"Benzo[g,h,i,]Perylene",LB
+37131,0.007706126,Nickel,LB
+37131,0.1661239,PM25-Primary from certain diesel engines,TON
+37131,0.3762856,Volatile Organic Compounds,TON
+37131,2.826002,Fluorene,LB
+37131,3266.068,Carbon Dioxide,TON
+37131,16.363216,"1,3-Butadiene",LB
+37131,0.0016499728,Benzo[k]Fluoranthene,LB
+37131,0.01431845,Sulfate Portion of PM2.5-PRI,TON
+37125,79.61354,Toluene,LB
+37125,60.37062,Hexane,LB
+37125,68.56192,Xylenes (Mixed Isomers),LB
+37113,0.002043622,Sulfur Dioxide,TON
+37113,0.3109554,Styrene,LB
+37113,9.98948,Acetaldehyde,LB
+37113,0.16234106,Fluorene,LB
+37109,2096.398,Xylenes (Mixed Isomers),LB
+37109,0.2521896,Benzo[k]Fluoranthene,LB
+37097,18.823466,Propionaldehyde,LB
+37097,0.006393812,Benzo[b]Fluoranthene,LB
+37097,0.03815832,Arsenic,LB
+37097,1.9356442,Fluorene,LB
+37097,0.1017355,PM2.5 Primary (Filt + Cond),TON
+37091,0.4447547,PM25-Primary from certain diesel engines,TON
+37091,0.05336988,Ammonia,TON
+37091,7.61322,Nitrogen Oxides,TON
+37091,9.643106,Propionaldehyde,LB
+37091,0.008113052,"Benzo[g,h,i,]Perylene",LB
+37091,0.9827798,Acenaphthylene,LB
+37091,194.25782,Formaldehyde,LB
+37091,0.00541698,"Dibenzo[a,h]Anthracene",LB
+37091,2.249706,Phenanthrene,LB
+37105,0.001779682,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,5.324962,Ethyl Benzene,LB
+37105,35.63564,Toluene,LB
+37105,0.003169322,Benzo[b]Fluoranthene,LB
+37105,0.010993472,Fluoranthene,LB
+37105,2.336532e-05,Mercury,LB
+37105,2.310414,Acetaldehyde,LB
+37105,0.007288482,Acenaphthene,LB
+37105,0.00085749,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.003111626,Styrene,LB
+37101,0.0001261408,Anthracene,LB
+37101,0.2663726,Xylenes (Mixed Isomers),LB
+37101,0.07837928,"2,2,4-Trimethylpentane",LB
+37101,0.03882704,Acetaldehyde,LB
+37101,0.0001265766,Organic Carbon portion of PM2.5-PRI,TON
+37099,9.122424,Acrolein,LB
+37099,8.358978,Toluene,LB
+37099,2.96132,Hexane,LB
+37099,0.003192182,Benzo[k]Fluoranthene,LB
+37099,3.008114,"2,2,4-Trimethylpentane",LB
+37099,0.003629628,Arsenic,LB
+37099,0.2811958,PM10-Primary from certain diesel engines,TON
+37099,0.1042252,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.03313975,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.0843528,Sulfur Dioxide,TON
+37129,0.014786596,Anthracene,LB
+37129,0.03113748,Pyrene,LB
+37129,0.0014157208,Mercury,LB
+37131,0.08569652,"1,3-Butadiene",LB
+37131,0.06869996,Acrolein,LB
+37131,0.0042577,"Benzo[g,h,i,]Perylene",LB
+37131,0.0008314944,Benzo[b]Fluoranthene,LB
+37131,0.7735266,"2,2,4-Trimethylpentane",LB
+37131,0.002314452,PM2.5 Primary (Filt + Cond),TON
+37131,0.003667606,Sulfur Dioxide,TON
+37177,31.93342,Styrene,LB
+37177,175.48914,"1,3-Butadiene",LB
+37177,0.19112378,Manganese,LB
+37177,0.11362594,Nickel,LB
+37177,436.5082,Acetaldehyde,LB
+37177,0.3560833,Sulfur Dioxide,TON
+37177,21.71353,Volatile Organic Compounds,TON
+37175,0.0010510164,"Dibenzo[a,h]Anthracene",LB
+37175,6.853002,Naphthalene,LB
+37175,30.00034,Carbon Monoxide,TON
+37175,0.02537412,Organic Carbon portion of PM2.5-PRI,TON
+37169,3.237822,Xylenes (Mixed Isomers),LB
+37169,0.0011924854,"Benzo[g,h,i,]Perylene",LB
+37169,0.0006427572,Benzo[k]Fluoranthene,LB
+37169,0.2580246,Acenaphthylene,LB
+37169,0.015642222,Benzo[a]Pyrene,LB
+37169,0.012625408,Manganese,LB
+37169,2.060823,Carbon Monoxide,TON
+37169,0.09939468,PM10-Primary from certain diesel engines,TON
+37169,0.05773902,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.09178338,Styrene,LB
+37169,0.0015548084,Benzo[k]Fluoranthene,LB
+37153,5.039842,Styrene,LB
+37153,11.570146,"1,3-Butadiene",LB
+37153,10.004712,Hexane,LB
+37153,4.4098,Phenanthrene,LB
+37153,11.93155,Carbon Monoxide,TON
+37135,2.891072,Styrene,LB
+37135,2.446702,Acrolein,LB
+37135,2.326906,Propionaldehyde,LB
+37135,268.5854,Xylenes (Mixed Isomers),LB
+37135,0.576749,Acenaphthylene,LB
+37135,0.019161878,Arsenic,LB
+37135,0.07868665,Nitrous Oxide,TON
+37137,0.06080385,Ammonia,TON
+37137,1.877984,Volatile Organic Compounds,TON
+37137,7.22006e-05,Chromium (VI),LB
+37137,1.077636,Acenaphthene,LB
+37137,2.809138,Phenanthrene,LB
+37137,1800.83,Carbon Dioxide,TON
+37129,14.160584,Ethyl Benzene,LB
+37129,0.4441096,Styrene,LB
+37129,0.3714638,Acrolein,LB
+37129,0.5245391,Nitrogen Oxides,TON
+37129,0.003162068,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.02601775,PM10 Primary (Filt + Cond),TON
+37129,0.007607989,PM2.5 Primary (Filt + Cond),TON
+37129,0.003044232,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.00527181,Manganese,LB
+37129,0.000451947,Nickel,LB
+37065,12.6994,Toluene,LB
+37065,7.292499,Carbon Monoxide,TON
+37065,0.007794547,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.0009579916,Sulfur Dioxide,TON
+37137,0.0002179176,Benzo[b]Fluoranthene,LB
+37137,0.0001913858,Benz[a]Anthracene,LB
+37137,0.7918868,Benzene,LB
+37137,2.30624e-05,Mercury,LB
+37133,15.787356,"2,2,4-Trimethylpentane",LB
+37133,0.4031471,Volatile Organic Compounds,TON
+37175,0.6243112,Nitrogen Oxides,TON
+37175,0.01853163,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.001651548,Sulfate Portion of PM2.5-PRI,TON
+37175,0.0009943318,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.08400778,Acenaphthylene,LB
+37175,0.004615012,Styrene,LB
+37175,0.000227793,"Benzo[g,h,i,]Perylene",LB
+37175,0.0002910292,Fluoranthene,LB
+37175,0.0010782936,Phenanthrene,LB
+37175,0.0001072019,Nitrous Oxide,TON
+37175,6.57883e-05,Ammonia,TON
+37175,2.552127e-07,Nitrate portion of PM2.5-PRI,TON
+37175,0.0001960429,PM10 Primary (Filt + Cond),TON
+37165,0.10291374,Propionaldehyde,LB
+37165,1.6145994,Acetaldehyde,LB
+37165,0.2706096,Naphthalene,LB
+37165,0.001391764,Nitrous Oxide,TON
+37165,0.0001211643,Sulfate Portion of PM2.5-PRI,TON
+37159,0.009791716,Nitrous Oxide,TON
+37159,36.13204,Xylenes (Mixed Isomers),LB
+37159,0.0260255,"Benzo[g,h,i,]Perylene",LB
+37159,0.0231187,Fluoranthene,LB
+37159,0.0002244232,"Dibenzo[a,h]Anthracene",LB
+37155,0.6826538,Styrene,LB
+37155,0.586764,Propionaldehyde,LB
+37155,9.374858,Formaldehyde,LB
+37155,8.414302e-05,Mercury,LB
+37155,0.05797088,Fluorene,LB
+37155,0.00704496,Nitrous Oxide,TON
+37155,0.007536172,Sulfur Dioxide,TON
+37155,0.000988821,Sulfate Portion of PM2.5-PRI,TON
+37147,11.59255,Hexane,LB
+37147,1.2160722,Anthracene,LB
+37147,0.1097442,Ammonia,TON
+37143,4.656932e-05,Chromium (VI),LB
+37143,0.00364265,"Benzo[g,h,i,]Perylene",LB
+37143,0.5122622,Acenaphthylene,LB
+37143,0.19483772,Benz[a]Anthracene,LB
+37143,0.01112352,Arsenic,LB
+37143,0.3048638,Acenaphthene,LB
+37143,3.454833,Carbon Monoxide,TON
+37143,0.2761475,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.001007313,Nitrate portion of PM2.5-PRI,TON
+37143,0.6041785,PM10 Primary (Filt + Cond),TON
+37143,0.03393157,Sulfur Dioxide,TON
+37141,0.2561494,"1,3-Butadiene",LB
+37141,0.004188654,Pyrene,LB
+37141,0.003673078,Fluoranthene,LB
+37141,2.745942e-05,"Dibenzo[a,h]Anthracene",LB
+37141,0.0001261674,Nickel,LB
+37141,0.12929234,Naphthalene,LB
+37141,1.264551,Carbon Monoxide,TON
+37141,0.0007528283,Organic Carbon portion of PM2.5-PRI,TON
+37127,6.2617,Ethyl Benzene,LB
+37127,35.67092,Toluene,LB
+37127,0.19480006,Propionaldehyde,LB
+37127,0.018607566,Pyrene,LB
+37127,23.099,Xylenes (Mixed Isomers),LB
+37127,0.01635106,Fluoranthene,LB
+37127,11.633896,Benzene,LB
+37127,0.552838,Naphthalene,LB
+37127,3.100806e-05,Nitrate portion of PM2.5-PRI,TON
+37127,0.01179901,PM2.5 Primary (Filt + Cond),TON
+37111,0.1668185,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.3336087,PM10 Primary (Filt + Cond),TON
+37111,0.02644929,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.003030566,"Benzo[g,h,i,]Perylene",LB
+37111,0.08943242,Chrysene,LB
+37111,105.03302,Formaldehyde,LB
+37111,1.5255812e-05,Mercury,LB
+37111,0.014523124,Nickel,LB
+37111,0.7167414,Fluorene,LB
+37111,1.7162054,Hexane,LB
+37111,0.017003536,Manganese,LB
+37111,0.00272712,Elemental Carbon portion of PM2.5-PRI,TON
+37111,8.534149e-05,Nitrate portion of PM2.5-PRI,TON
+37111,0.004606656,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,4.11183,Hexane,LB
+37177,0.4721088,Ethyl Benzene,LB
+37177,0.000811589,Nickel,LB
+37177,0.0003660846,Elemental Carbon portion of PM2.5-PRI,TON
+37135,7.982464,"2,2,4-Trimethylpentane",LB
+37135,0.2038427,Volatile Organic Compounds,TON
+37079,1.0045106,Toluene,LB
+37079,3.260676e-05,Sulfate Portion of PM2.5-PRI,TON
+37171,40.36806,Hexane,LB
+37171,0.01416988,Chrysene,LB
+37171,0.002068304,Arsenic,LB
+37171,0.004014199,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.06916445,PM10 Primary (Filt + Cond),TON
+37167,6355.028,Xylenes (Mixed Isomers),LB
+37165,1.468131,Nitrogen Oxides,TON
+37165,0.09757406,PM10 Primary (Filt + Cond),TON
+37165,0.00100627,"Benzo[g,h,i,]Perylene",LB
+37165,0.3045214,Fluoranthene,LB
+37165,0.02582164,Chrysene,LB
+37165,0.00342807,Arsenic,LB
+37161,1.7031084,"1,3-Butadiene",LB
+37161,0.02197856,Pyrene,LB
+37161,0.00473069,Benzo[b]Fluoranthene,LB
+37161,0.00713134,Benzo[a]Pyrene,LB
+37161,0.004014509,Ammonia,TON
+37161,0.4729302,Nitrogen Oxides,TON
+37161,0.002294349,Sulfur Dioxide,TON
+37161,0.3308237,Volatile Organic Compounds,TON
+37149,4.668196,Toluene,LB
+37149,0.0013448698,Benzo[a]Pyrene,LB
+37149,0.0017732574,Acenaphthene,LB
+37149,48.54051,Carbon Dioxide,TON
+37149,0.003847418,PM10 Primary (Filt + Cond),TON
+37149,0.00157879,PM2.5 Primary (Filt + Cond),TON
+37149,0.02646229,Volatile Organic Compounds,TON
+37147,3142.61,Ethyl Benzene,LB
+37147,91.304,Volatile Organic Compounds,TON
+37019,6.52004e-05,Manganese,LB
+37019,6.765323,Carbon Dioxide,TON
+37019,0.006482871,Nitrogen Oxides,TON
+37017,32.16662,Volatile Organic Compounds,TON
+37015,7.093402e-05,Mercury,LB
+37015,0.0355588,Nickel,LB
+37015,7.424488,"1,3-Butadiene",LB
+37015,18.755256,Acrolein,LB
+37015,12.333076,Propionaldehyde,LB
+37015,6.301994,"2,2,4-Trimethylpentane",LB
+37007,231.8428,Ethyl Benzene,LB
+37007,54.53408,"1,3-Butadiene",LB
+37007,0.10043076,Benzo[k]Fluoranthene,LB
+37007,0.03659436,Nickel,LB
+37007,0.3703482,Ammonia,TON
+37007,0.4350394,PM10 Primary (Filt + Cond),TON
+37007,0.1590179,PM2.5 Primary (Filt + Cond),TON
+37003,0.008541448,Nitrous Oxide,TON
+37003,22.37868,Nitrogen Oxides,TON
+37003,12.43301,Propionaldehyde,LB
+37003,2.414822,Pyrene,LB
+37001,1.1917246,Acrolein,LB
+37001,1.9445796e-05,Chromium (VI),LB
+37001,0.017542982,Benzo[b]Fluoranthene,LB
+37001,0.005178244,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.02285859,Sulfur Dioxide,TON
+37001,17.560052,Formaldehyde,LB
+37001,0.0254176,Benzo[a]Pyrene,LB
+37001,26.69788,"2,2,4-Trimethylpentane",LB
+37001,0.6972522,Benzo[b]Fluoranthene,LB
+37001,2461.678,Benzene,LB
+37001,129.13552,Naphthalene,LB
+37001,0.3693299,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,42.11738,Volatile Organic Compounds,TON
+37041,0.004370512,Styrene,LB
+37041,0.00014265466,Benzo[k]Fluoranthene,LB
+37041,0.00012489624,Benz[a]Anthracene,LB
+37041,1.0186596e-05,Mercury,LB
+37041,1.8459232,Acetaldehyde,LB
+37041,0.0008518844,Phenanthrene,LB
+37041,0.007874446,Naphthalene,LB
+37035,17.937398,Xylenes (Mixed Isomers),LB
+37149,1.8372492,Ethyl Benzene,LB
+37149,0.007298752,Benzo[a]Pyrene,LB
+37149,0.01869621,Phenanthrene,LB
+37149,0.170786,Naphthalene,LB
+37149,0.004606805,Nitrous Oxide,TON
+37173,0.2638264,Ethyl Benzene,LB
+37173,0.2467374,"1,3-Butadiene",LB
+37173,0.0005837522,Arsenic,LB
+37173,0.02497772,Acenaphthene,LB
+37173,0.05376846,Fluorene,LB
+37173,0.0002431575,Nitrous Oxide,TON
+37193,2.667481,Volatile Organic Compounds,TON
+37193,25.51118,Xylenes (Mixed Isomers),LB
+37193,0.0232684,"Benzo[g,h,i,]Perylene",LB
+37193,10.577594,"2,2,4-Trimethylpentane",LB
+37193,1.2576792,Benz[a]Anthracene,LB
+37193,5.876328,Phenanthrene,LB
+37193,3.437356,Fluorene,LB
+37193,0.03580571,Sulfate Portion of PM2.5-PRI,TON
+37191,0.000315838,Nitrate portion of PM2.5-PRI,TON
+37191,2.428839,Nitrogen Oxides,TON
+37191,0.004037764,Nickel,LB
+37191,1.9042922,Acrolein,LB
+37191,0.6425978,Hexane,LB
+37189,27.67724,Toluene,LB
+37189,15.79597,Propionaldehyde,LB
+37189,0.05562084,Benzo[b]Fluoranthene,LB
+37189,0.3648534,Chrysene,LB
+37187,0.0007008556,Benzo[b]Fluoranthene,LB
+37187,0.000507738,Manganese,LB
+37183,0.212128,Benzo[b]Fluoranthene,LB
+37183,7.48303,Fluoranthene,LB
+37183,33.73376,"2,2,4-Trimethylpentane",LB
+37183,0.4462222,Manganese,LB
+37183,0.05490942,Arsenic,LB
+37183,0.5134913,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,6.201292,Volatile Organic Compounds,TON
+37183,41.86474,Xylenes (Mixed Isomers),LB
+37183,0.005197192,Benz[a]Anthracene,LB
+37183,6.180128,Acetaldehyde,LB
+37183,0.9723258,Naphthalene,LB
+37183,10.53996,Carbon Monoxide,TON
+37181,0.003374964,Manganese,LB
+37181,0.001380954,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.005237642,Sulfur Dioxide,TON
+37181,0.03363858,Styrene,LB
+37181,0.2803224,Propionaldehyde,LB
+37181,0.00225453,Pyrene,LB
+37181,2.544828,Xylenes (Mixed Isomers),LB
+37181,0.00633218,"Benzo[g,h,i,]Perylene",LB
+37059,0.3248924,Hexane,LB
+37059,0.007815464,Propionaldehyde,LB
+37059,0.0006288816,Fluoranthene,LB
+37059,0.135838,Formaldehyde,LB
+37059,8.581868e-06,"Dibenzo[a,h]Anthracene",LB
+37059,0.0008264204,Fluorene,LB
+37059,0.1856838,Carbon Monoxide,TON
+37059,0.0004414506,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.02417088,Styrene,LB
+37059,1.0137992e-05,"Dibenzo[a,h]Anthracene",LB
+37059,0.8087508,"2,2,4-Trimethylpentane",LB
+37059,5.27386e-06,Nickel,LB
+37059,0.05162362,Naphthalene,LB
+37059,5.844874e-05,Ammonia,TON
+37057,1.8118092,Ethyl Benzene,LB
+37057,0.02960638,Manganese,LB
+37057,23.17458,Acetaldehyde,LB
+37057,5.801356,Naphthalene,LB
+37057,1548.097,Carbon Dioxide,TON
+37057,0.022197,Ammonia,TON
+37057,0.4791688,Benz[a]Anthracene,LB
+37057,376.6151,Carbon Monoxide,TON
+37051,152.79834,Toluene,LB
+37051,16.041458,Pyrene,LB
+37051,0.07300718,"Benzo[g,h,i,]Perylene",LB
+37051,3.919256,Benz[a]Anthracene,LB
+37051,11.231024,Fluorene,LB
+37051,7.649575,PM10 Primary (Filt + Cond),TON
+37051,21.35266,Styrene,LB
+37049,622.3381,Carbon Dioxide,TON
+37049,0.09822703,PM2.5 Primary (Filt + Cond),TON
+37047,11.797266,Ethyl Benzene,LB
+37047,0.0884893,Phenanthrene,LB
+37047,0.03267012,Fluorene,LB
+37047,0.01150925,Methane,TON
+37047,0.00193355,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.7260621,Nitrogen Oxides,TON
+37047,0.003507668,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.003452216,Sulfur Dioxide,TON
+37047,0.0003817685,Sulfate Portion of PM2.5-PRI,TON
+37047,0.3735255,Volatile Organic Compounds,TON
+37045,0.16964242,Acrolein,LB
+37045,20.33992,Xylenes (Mixed Isomers),LB
+37045,0.006477866,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.00014866744,"Dibenzo[a,h]Anthracene",LB
+37045,0.0008341528,Nickel,LB
+37045,0.1632897,Volatile Organic Compounds,TON
+37025,0.4560256,Benzo[a]Pyrene,LB
+37025,0.1546714,Arsenic,LB
+37025,13.111248,Acenaphthene,LB
+37025,2.271928,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.3467422,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.1209908,Sulfate Portion of PM2.5-PRI,TON
+37157,9.290432e-07,Nickel,LB
+37157,8.284718e-05,Methane,TON
+37157,1.05776e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.00010379432,"Dibenzo[a,h]Anthracene",LB
+37157,0.0006569728,Nickel,LB
+37157,0.014371066,Fluorene,LB
+37157,0.005335804,Methane,TON
+37157,0.01709131,PM10 Primary (Filt + Cond),TON
+37157,0.0058188,PM2.5 Primary (Filt + Cond),TON
+37157,4.563954,Ethyl Benzene,LB
+37157,0.8484686,"1,3-Butadiene",LB
+37157,0.13469034,Propionaldehyde,LB
+37157,0.03238776,Acenaphthylene,LB
+37139,0.001087139,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.02718616,Chrysene,LB
+37139,0.0012858286,Arsenic,LB
+37139,0.0006448854,Nitrous Oxide,TON
+37139,0.07411409,PM10 Primary (Filt + Cond),TON
+37135,12802.918,Ethyl Benzene,LB
+37135,6.795252,Benzo[k]Fluoranthene,LB
+37135,3.55901,Arsenic,LB
+37135,24.98885,Ammonia,TON
+37135,5.565963,Organic Carbon portion of PM2.5-PRI,TON
+37133,2.45727,Acetaldehyde,LB
+37133,0.18160442,Styrene,LB
+37133,7.469932,Hexane,LB
+37133,0.002571984,Benzo[k]Fluoranthene,LB
+37133,2.611538,Formaldehyde,LB
+37133,0.002532316,Benz[a]Anthracene,LB
+37133,24319.9,Toluene,LB
+37127,88.66316,Hexane,LB
+37127,80.25988,"2,2,4-Trimethylpentane",LB
+37125,0.17687324,Acrolein,LB
+37125,0.001461818,Benzo[k]Fluoranthene,LB
+37125,0.013812166,Fluorene,LB
+37125,0.009849258,PM10 Primary (Filt + Cond),TON
+37125,621.3884,Ethyl Benzene,LB
+37125,153.07704,"1,3-Butadiene",LB
+37125,20.82312,Acrolein,LB
+37125,0.8909938,Anthracene,LB
+37125,1.5169808,Fluoranthene,LB
+37125,0.2754326,Benz[a]Anthracene,LB
+37125,0.15010034,Arsenic,LB
+37125,228.1624,Carbon Monoxide,TON
+37125,0.09370492,Elemental Carbon portion of PM2.5-PRI,TON
+37125,18.13618,Volatile Organic Compounds,TON
+37125,0.02945186,Arsenic,LB
+37125,0.1907593,Methane,TON
+37125,0.05192319,Sulfur Dioxide,TON
+37125,0.00467249,Sulfate Portion of PM2.5-PRI,TON
+37125,15.025014,"1,3-Butadiene",LB
+37125,1841.1288,Xylenes (Mixed Isomers),LB
+37125,0.5696354,Fluoranthene,LB
+37125,822.2306,"2,2,4-Trimethylpentane",LB
+37121,961.8382,Ethyl Benzene,LB
+37121,1.668956,"Benzo[g,h,i,]Perylene",LB
+37121,0.4488606,Benzo[b]Fluoranthene,LB
+37121,0.6521898,Methane,TON
+37121,16364.03,Carbon Dioxide,TON
+37121,0.1711251,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.3436569,Sulfur Dioxide,TON
+37121,0.6276752,Benzo[a]Pyrene,LB
+37119,136035.46,Toluene,LB
+37115,0.019796636,Benzo[b]Fluoranthene,LB
+37115,5.13791,Acenaphthylene,LB
+37115,0.00273114,"Dibenzo[a,h]Anthracene",LB
+37115,0.00016217474,Mercury,LB
+37115,0.6988895,PM2.5 Primary (Filt + Cond),TON
+37113,1.0790548,"1,3-Butadiene",LB
+37113,10.648444,Hexane,LB
+37113,0.16434732,Propionaldehyde,LB
+37113,0.003049446,Benzo[a]Pyrene,LB
+37113,6.979194e-05,"Dibenzo[a,h]Anthracene",LB
+37113,0.001647876,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.007771091,PM10 Primary (Filt + Cond),TON
+37113,9.132758e-05,Sulfate Portion of PM2.5-PRI,TON
+37109,49.74272,Naphthalene,LB
+37109,0.133861,Sulfate Portion of PM2.5-PRI,TON
+37109,5.493704,Styrene,LB
+37109,12.799654,"1,3-Butadiene",LB
+37109,3.49517,Pyrene,LB
+37109,0.15110914,Pyrene,LB
+37109,0.8970186,Xylenes (Mixed Isomers),LB
+37109,13.512906,Formaldehyde,LB
+37109,0.011777546,Benzo[a]Pyrene,LB
+37109,0.0377611,Benz[a]Anthracene,LB
+37089,0.01262498,"1,3-Butadiene",LB
+37089,0.0002127082,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.000215059,Acenaphthene,LB
+37089,0.001187718,Phenanthrene,LB
+37089,10.68835,Carbon Dioxide,TON
+37089,6.700324e-07,Nitrate portion of PM2.5-PRI,TON
+37089,0.0006174866,PM10 Primary (Filt + Cond),TON
+37087,82.091,Hexane,LB
+37087,182.48254,Propionaldehyde,LB
+37087,15.371338,Fluoranthene,LB
+37087,3263.422,Formaldehyde,LB
+37087,0.3414528,Benzo[a]Pyrene,LB
+37087,3.342457,PM10-Primary from certain diesel engines,TON
+37087,0.2392557,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.04792688,Benzo[a]Pyrene,LB
+37083,1.4980866,"2,2,4-Trimethylpentane",LB
+37083,0.010342838,Nickel,LB
+37083,6.34563,Naphthalene,LB
+37083,0.001518506,Nitrous Oxide,TON
+37083,0.0008236547,Nitrate portion of PM2.5-PRI,TON
+37083,0.02920924,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,1.938721,Ethyl Benzene,LB
+37083,1.8205064,"1,3-Butadiene",LB
+37083,0.6186978,Pyrene,LB
+37083,4.233544,Xylenes (Mixed Isomers),LB
+37083,2.064352e-05,Chromium (VI),LB
+37083,0.003639048,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.4657224,Fluoranthene,LB
+37081,15.59829,Volatile Organic Compounds,TON
+37049,1.5245608,Styrene,LB
+37049,9.59777,Acrolein,LB
+37049,0.2862764,Anthracene,LB
+37049,0.0002294284,Benzo[k]Fluoranthene,LB
+37049,0.5982552,Acenaphthylene,LB
+37049,3.585462,"2,2,4-Trimethylpentane",LB
+37049,11.560308,Benzene,LB
+37049,5.4797e-05,Mercury,LB
+37049,13.619538,Naphthalene,LB
+37049,0.07736881,PM10 Primary (Filt + Cond),TON
+37049,0.6761786,Volatile Organic Compounds,TON
+37043,0.02282949,Methane,TON
+37043,220.522,Xylenes (Mixed Isomers),LB
+37043,1.985262e-05,Chromium (VI),LB
+37043,1.838558,Volatile Organic Compounds,TON
+37035,53.3807,"1,3-Butadiene",LB
+37035,8.752456,Acenaphthylene,LB
+37035,0.2073912,Arsenic,LB
+37035,59.2246,Carbon Monoxide,TON
+37035,0.08018188,Nitrous Oxide,TON
+37025,0.5722018,Chrysene,LB
+37025,6.833646e-05,Mercury,LB
+37025,1.298247,Acenaphthene,LB
+37025,14.4793,Nitrogen Oxides,TON
+37167,0.0170636,Acenaphthene,LB
+37167,0.002347361,Organic Carbon portion of PM2.5-PRI,TON
+37167,14.103576,Ethyl Benzene,LB
+37167,0.4059164,Styrene,LB
+37167,101.5373,Toluene,LB
+37167,2.788268e-06,Chromium (VI),LB
+37163,5.20513,Naphthalene,LB
+37163,0.001900362,Elemental Carbon portion of PM2.5-PRI,TON
+37163,1.6209142,Ethyl Benzene,LB
+37163,0.6085104,Styrene,LB
+37163,1.4027512,"1,3-Butadiene",LB
+37163,1.2475996,Hexane,LB
+37163,4.104644,Xylenes (Mixed Isomers),LB
+37157,0.6273072,Chrysene,LB
+37157,0.005668609,Nitrate portion of PM2.5-PRI,TON
+37157,41.68389,Nitrogen Oxides,TON
+37157,0.4681372,Organic Carbon portion of PM2.5-PRI,TON
+37157,6.052612,Styrene,LB
+37157,0.06952666,Sulfur Dioxide,TON
+37139,0.145745,Styrene,LB
+37139,0.8278184,"1,3-Butadiene",LB
+37139,0.01039312,Pyrene,LB
+37139,0.001887091,Benzo[b]Fluoranthene,LB
+37139,0.001887091,Benzo[k]Fluoranthene,LB
+37139,6.816304,Benzene,LB
+37139,0.000224201,Arsenic,LB
+37139,2.05733,Acetaldehyde,LB
+37139,0.012580504,Fluorene,LB
+37135,0.6099187,Methane,TON
+37135,1.173543,Elemental Carbon portion of PM2.5-PRI,TON
+37135,2.259275,PM10 Primary (Filt + Cond),TON
+37135,26.57438,Styrene,LB
+37135,10.238268,Acenaphthylene,LB
+37135,0.6449048,Chrysene,LB
+37133,0.03897994,"2,2,4-Trimethylpentane",LB
+37133,0.0003373082,Phenanthrene,LB
+37133,0.00012398964,Fluorene,LB
+37133,1.962433e-07,Nitrate portion of PM2.5-PRI,TON
+37133,0.001070073,Volatile Organic Compounds,TON
+37131,40.80992,Acetaldehyde,LB
+37131,0.02324175,Ammonia,TON
+37131,0.0001804803,Nitrate portion of PM2.5-PRI,TON
+37131,2.05282,Nitrogen Oxides,TON
+37131,0.003476189,Sulfate Portion of PM2.5-PRI,TON
+37131,2.359898,"2,2,4-Trimethylpentane",LB
+37131,0.4109586,Fluoranthene,LB
+37131,0.515478,Acenaphthylene,LB
+37127,10.268404,Propionaldehyde,LB
+37127,347.0888,Formaldehyde,LB
+37127,0.9066216,Benzene,LB
+37127,2.192754,Methane,TON
+37127,2.755647e-06,Nitrate portion of PM2.5-PRI,TON
+37125,0.0011269112,Arsenic,LB
+37125,0.08918864,Nitrous Oxide,TON
+37115,25.58652,Toluene,LB
+37115,0.9015647,Volatile Organic Compounds,TON
+37105,10.554548,Benzene,LB
+37105,0.012217602,Nickel,LB
+37105,0.0039178,Arsenic,LB
+37105,0.2823673,PM10-Primary from certain diesel engines,TON
+37105,0.3748002,PM10 Primary (Filt + Cond),TON
+37105,2.890876,Hexane,LB
+37105,0.5933594,Acenaphthylene,LB
+37073,0.0250071,Ethyl Benzene,LB
+37073,0.04685378,"2,2,4-Trimethylpentane",LB
+37073,4.309658e-05,Acenaphthene,LB
+37073,0.00024474,Phenanthrene,LB
+37073,0.002948078,Volatile Organic Compounds,TON
+37073,7.371162e-05,Fluoranthene,LB
+37121,0.0001829103,Manganese,LB
+37095,0.012134964,Acrolein,LB
+37095,0.11305528,Hexane,LB
+37095,0.0002603918,Manganese,LB
+37095,0.0005431535,Sulfur Dioxide,TON
+37095,4.268582e-05,"Dibenzo[a,h]Anthracene",LB
+37095,0.0010122794,Benzo[b]Fluoranthene,LB
+37095,0.0015967744,Manganese,LB
+37095,0.0004511487,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.002408239,PM2.5 Primary (Filt + Cond),TON
+37083,0.08190096,Propionaldehyde,LB
+37083,0.0006081778,Fluoranthene,LB
+37083,0.990004,Benzene,LB
+37083,0.0006589244,Arsenic,LB
+37083,0.000747154,Nitrous Oxide,TON
+37021,6.843134e-07,Mercury,LB
+37021,0.4128948,Carbon Monoxide,TON
+37021,0.02061972,Acrolein,LB
+37021,0.005967408,Acenaphthylene,LB
+37021,0.0001568385,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,3368.16,"1,3-Butadiene",LB
+37021,36.62672,"Benzo[g,h,i,]Perylene",LB
+37021,97.43676,Acenaphthylene,LB
+37021,6130.42,Formaldehyde,LB
+37021,19681.062,"2,2,4-Trimethylpentane",LB
+37021,6.421134,Arsenic,LB
+37021,116.77626,Phenanthrene,LB
+37021,43.2328,Fluorene,LB
+37021,19.44232,PM2.5 Primary (Filt + Cond),TON
+37017,26.8911,Toluene,LB
+37017,3.97584e-07,Chromium (VI),LB
+37017,0.0018749876,Benzo[k]Fluoranthene,LB
+37017,5.529268e-05,"Dibenzo[a,h]Anthracene",LB
+37017,0.01454649,Fluorene,LB
+37017,0.008478034,Methane,TON
+37017,15.5201,Carbon Dioxide,TON
+37017,0.0005439846,Ammonia,TON
+37017,0.0003290732,Sulfur Dioxide,TON
+37015,2.903218,Styrene,LB
+37015,9.50692e-05,Chromium (VI),LB
+37015,1.4670252,Fluoranthene,LB
+37015,0.005382232,Benzo[k]Fluoranthene,LB
+37015,1.1306046,Acenaphthylene,LB
+37015,229.6912,Formaldehyde,LB
+37015,0.00010306168,Mercury,LB
+37011,13.574244,Styrene,LB
+37011,83.68008,"1,3-Butadiene",LB
+37011,1189.6208,Xylenes (Mixed Isomers),LB
+37011,564.2222,Benzene,LB
+37011,0.1264821,Sulfur Dioxide,TON
+37009,0.001709611,Nitrate portion of PM2.5-PRI,TON
+37009,14.331342,Acrolein,LB
+37009,15.919586,Xylenes (Mixed Isomers),LB
+37009,0.01590464,Arsenic,LB
+37009,20.2168,Naphthalene,LB
+37009,0.6897395,PM25-Primary from certain diesel engines,TON
+37009,6.018252,Ethyl Benzene,LB
+37009,3.098616e-07,Chromium (VI),LB
+37009,0.003784756,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,3.106452e-06,Mercury,LB
+37009,0.019516972,Fluorene,LB
+37009,3.189069,Carbon Monoxide,TON
+37009,0.004180009,Nitrous Oxide,TON
+37003,1277.372,Hexane,LB
+37189,0.09238658,Acrolein,LB
+37189,16.82843,Toluene,LB
+37189,0.08461254,Propionaldehyde,LB
+37189,2.494304e-06,Chromium (VI),LB
+37189,0.0017756326,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.00654673,Fluoranthene,LB
+37177,7.110428,Acrolein,LB
+37177,0.2055552,Anthracene,LB
+37177,0.002127668,"Benzo[g,h,i,]Perylene",LB
+37177,0.466199,Volatile Organic Compounds,TON
+37167,0.11544368,Styrene,LB
+37167,0.04451928,Acenaphthylene,LB
+37167,0.0264795,Acenaphthene,LB
+37167,0.0194033,PM10-Primary from certain diesel engines,TON
+37195,1.2936946,Acrolein,LB
+37195,0.0563676,Anthracene,LB
+37195,0.010166862,Benzo[a]Pyrene,LB
+37195,0.000414549,"Dibenzo[a,h]Anthracene",LB
+37195,0.11293292,Fluorene,LB
+37193,1.0443356e-05,Benzo[k]Fluoranthene,LB
+37193,0.1220103,Carbon Dioxide,TON
+37193,8.651609e-06,Organic Carbon portion of PM2.5-PRI,TON
+37193,3.737514e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,4.441178e-07,Sulfate Portion of PM2.5-PRI,TON
+37053,0.3909916,Formaldehyde,LB
+37053,0.0002018882,Benz[a]Anthracene,LB
+37053,0.0003866074,Arsenic,LB
+37053,0.2725612,Carbon Monoxide,TON
+37053,0.001712278,Ammonia,TON
+37053,0.11881596,Ethyl Benzene,LB
+37053,0.02560766,"1,3-Butadiene",LB
+37053,0.02126188,Acrolein,LB
+37053,0.000400823,Pyrene,LB
+37053,0.426079,Xylenes (Mixed Isomers),LB
+37045,0.05097968,Acrolein,LB
+37045,0.0006553362,Benzo[k]Fluoranthene,LB
+37045,0.002286214,Acenaphthylene,LB
+37045,0.000494129,Chrysene,LB
+37045,0.002834542,Phenanthrene,LB
+37045,30.66336,Benzene,LB
+37045,0.02313226,Fluorene,LB
+37045,0.01200886,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.0222562,Pyrene,LB
+37045,0.012682048,Benzo[b]Fluoranthene,LB
+37045,0.009717752,Chrysene,LB
+37151,0.8091465,Carbon Monoxide,TON
+37151,0.004908057,Ammonia,TON
+37151,0.0009433092,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.0007854882,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.002954162,Sulfur Dioxide,TON
+37151,0.019384168,Styrene,LB
+37151,0.6369424,Hexane,LB
+37151,1.3056842,Formaldehyde,LB
+37151,5.578178e-05,Mercury,LB
+37151,8.31632,Acetaldehyde,LB
+37151,0.0006701346,Acenaphthene,LB
+37147,0.7172364,Ethyl Benzene,LB
+37147,0.12700656,Acrolein,LB
+37147,0.2924572,Propionaldehyde,LB
+37147,0.002309536,Arsenic,LB
+37147,0.0012133018,Acenaphthene,LB
+37147,0.1242576,Nitrogen Oxides,TON
+37143,0.3698114,Benzene,LB
+37107,0.04032798,"Benzo[g,h,i,]Perylene",LB
+37093,1.408694e-06,Nitrate portion of PM2.5-PRI,TON
+37093,0.000244302,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.002310889,PM10 Primary (Filt + Cond),TON
+37093,0.00015618522,Chrysene,LB
+37093,0.00017537718,Benz[a]Anthracene,LB
+37013,37.16216,Toluene,LB
+37013,32.00306,Xylenes (Mixed Isomers),LB
+37017,84.95618,Styrene,LB
+37017,19.80724,Phenanthrene,LB
+37017,65827.12,Carbon Dioxide,TON
+37009,5761.962,Ethyl Benzene,LB
+37009,1451.3464,"1,3-Butadiene",LB
+37009,0.0401136,Mercury,LB
+37009,20.51998,Fluorene,LB
+37009,6.148208,Ammonia,TON
+37197,86.44798,Toluene,LB
+37197,0.02773092,Fluoranthene,LB
+37197,0.912283,Naphthalene,LB
+37197,0.003614411,Sulfur Dioxide,TON
+37197,0.000619719,Sulfate Portion of PM2.5-PRI,TON
+37189,0.2997304,Acenaphthylene,LB
+37189,0.017958056,Manganese,LB
+37189,0.05731487,Methane,TON
+37189,858.8512,Carbon Dioxide,TON
+37189,0.05565775,Nitrous Oxide,TON
+37189,7.125224e-05,Nitrate portion of PM2.5-PRI,TON
+37189,0.09102902,PM10 Primary (Filt + Cond),TON
+37189,0.02917457,PM2.5 Primary (Filt + Cond),TON
+37183,250.7168,Ethyl Benzene,LB
+37183,174.81004,"1,3-Butadiene",LB
+37183,197.9819,Hexane,LB
+37183,3110.214,Acetaldehyde,LB
+37183,30.14633,PM2.5 Primary (Filt + Cond),TON
+37185,0.07182144,Naphthalene,LB
+37185,0.0006901089,Nitrous Oxide,TON
+37185,0.00111819,PM2.5 Primary (Filt + Cond),TON
+37185,0.0004024789,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.0007850692,Sulfur Dioxide,TON
+37185,0.0011959898,Anthracene,LB
+37185,0.0225905,Propionaldehyde,LB
+37185,0.00225467,"Benzo[g,h,i,]Perylene",LB
+37185,0.0005447666,Benzo[k]Fluoranthene,LB
+37191,429.3124,Toluene,LB
+37191,5.820936,Naphthalene,LB
+37191,0.08998475,Methane,TON
+37191,0.0910879,Nitrous Oxide,TON
+37191,0.02952588,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.02311143,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,511.0062,Benzene,LB
+37179,0.0012961388,"Dibenzo[a,h]Anthracene",LB
+37179,232.168,Benzene,LB
+37179,0.4308194,Fluorene,LB
+37179,0.1550136,Methane,TON
+37179,0.04064183,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.3881864,Acetaldehyde,LB
+37067,0.00327342,Fluorene,LB
+37067,183.8679,Carbon Dioxide,TON
+37067,0.7852338,Ethyl Benzene,LB
+37067,2.875982,Xylenes (Mixed Isomers),LB
+37067,5.505588e-05,"Dibenzo[a,h]Anthracene",LB
+37061,0.11184274,Nickel,LB
+37061,0.001274014,Nitrate portion of PM2.5-PRI,TON
+37061,36.02025,Nitrogen Oxides,TON
+37061,19.14295,Volatile Organic Compounds,TON
+37053,2847.482,Xylenes (Mixed Isomers),LB
+37049,3.768308,Ethyl Benzene,LB
+37049,0.010633346,"Benzo[g,h,i,]Perylene",LB
+37049,0.00251869,Benzo[b]Fluoranthene,LB
+37049,4.820252,"2,2,4-Trimethylpentane",LB
+37049,0.002380198,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.01592762,PM10 Primary (Filt + Cond),TON
+37049,0.003680935,Sulfur Dioxide,TON
+37047,8.198738e-05,Sulfate Portion of PM2.5-PRI,TON
+37047,0.2996894,Acrolein,LB
+37047,0.0001868689,Anthracene,LB
+37047,0.003214756,Ammonia,TON
+37047,0.5428892,Nitrogen Oxides,TON
+37041,1.5297396,Hexane,LB
+37041,0.002467932,Pyrene,LB
+37041,7.553922e-07,Chromium (VI),LB
+37041,0.001099729,Nitrous Oxide,TON
+37035,0.011971438,Benzo[a]Pyrene,LB
+37035,0.00010212358,Mercury,LB
+37035,0.03914504,PM10 Primary (Filt + Cond),TON
+37035,0.004916771,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,66.27086,Toluene,LB
+37035,0.327721,Propionaldehyde,LB
+37035,0.007492444,Benzo[k]Fluoranthene,LB
+37035,0.00659361,Chrysene,LB
+37031,0.05168542,Hexane,LB
+37031,0.02596054,"2,2,4-Trimethylpentane",LB
+37031,2.82242e-05,Manganese,LB
+37031,6.098562e-06,Arsenic,LB
+37031,0.0002989832,Phenanthrene,LB
+37027,0.0005031876,Chromium (VI),LB
+37027,0.368382,Benzo[a]Pyrene,LB
+37027,1223.5606,Acetaldehyde,LB
+37027,137.3302,Carbon Monoxide,TON
+37027,2.339169,PM2.5 Primary (Filt + Cond),TON
+37027,0.06756291,Sulfate Portion of PM2.5-PRI,TON
+37023,0.051644,Manganese,LB
+37023,0.002991832,Nitrate portion of PM2.5-PRI,TON
+37023,0.004210842,Manganese,LB
+37023,0.0009207822,Arsenic,LB
+37023,211.2407,Carbon Dioxide,TON
+37023,5.296089e-05,Nitrate portion of PM2.5-PRI,TON
+37023,0.0349106,PM10 Primary (Filt + Cond),TON
+37023,2.759988,"1,3-Butadiene",LB
+37023,103.23256,Toluene,LB
+37023,0.019225916,Anthracene,LB
+37023,0.448979,Propionaldehyde,LB
+37023,7.328636,Benzo[b]Fluoranthene,LB
+37023,738.1678,Nitrogen Oxides,TON
+37023,11.71768,PM2.5 Primary (Filt + Cond),TON
+37119,30808.9,Toluene,LB
+37119,4.476892,Anthracene,LB
+37119,23.83252,Acenaphthylene,LB
+37119,1988.9258,Formaldehyde,LB
+37119,6984.3,Benzene,LB
+37119,0.2334828,Nickel,LB
+37119,0.3579988,Arsenic,LB
+37119,1057.0158,Acetaldehyde,LB
+37119,2.696825,Methane,TON
+37119,1.139334,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.1744115,PM10 Primary (Filt + Cond),TON
+37113,10.940152,Acrolein,LB
+37113,7.30442,Propionaldehyde,LB
+37113,0.0010773782,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.0005863684,Benzo[k]Fluoranthene,LB
+37113,15.233066,Naphthalene,LB
+37107,33.59586,"2,2,4-Trimethylpentane",LB
+37105,7.461466,Xylenes (Mixed Isomers),LB
+37105,0.0003541246,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.00019568648,Benzo[k]Fluoranthene,LB
+37091,2.611192e-05,Chromium (VI),LB
+37091,0.03287594,Chrysene,LB
+37091,2.412828e-05,Mercury,LB
+37091,0.8702332,Phenanthrene,LB
+37091,0.1039898,PM10-Primary from certain diesel engines,TON
+37091,0.006462937,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.003362372,Sulfate Portion of PM2.5-PRI,TON
+37089,6.855626,Benz[a]Anthracene,LB
+37089,2.289352,Elemental Carbon portion of PM2.5-PRI,TON
+37089,21.96034,Ammonia,TON
+37089,573.2862,Styrene,LB
+37089,18045.264,Hexane,LB
+37087,17.00552,Toluene,LB
+37087,0.09343072,Chrysene,LB
+37087,0.03587492,Manganese,LB
+37087,0.7614548,Acenaphthene,LB
+37087,1.3324288,Fluorene,LB
+37087,0.06319909,Ammonia,TON
+37079,1.4104234,Fluorene,LB
+37079,0.6118214,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.9840905,PM2.5 Primary (Filt + Cond),TON
+37079,12.169426,Propionaldehyde,LB
+37079,1.6964384,Pyrene,LB
+37079,0.00697006,"Benzo[g,h,i,]Perylene",LB
+37079,0.00795326,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.03117278,Benzo[b]Fluoranthene,LB
+37079,0.2104522,Chrysene,LB
+37079,333.9122,Formaldehyde,LB
+37079,9.904796,"2,2,4-Trimethylpentane",LB
+37079,128.51614,Acetaldehyde,LB
+37079,2.766552,Phenanthrene,LB
+37087,0.09056598,Mercury,LB
+37087,5.623862,Acenaphthene,LB
+37087,30.88368,Phenanthrene,LB
+37087,3.018299,Methane,TON
+37087,8.552154,Fluoranthene,LB
+37075,13.783032,Hexane,LB
+37075,0.0629994,Acenaphthylene,LB
+37075,0.00444031,Benzo[a]Pyrene,LB
+37075,3.353346e-05,Mercury,LB
+37075,0.0006411372,Arsenic,LB
+37075,0.013840424,Acenaphthene,LB
+37075,0.07505086,Phenanthrene,LB
+37075,122.7864,Carbon Dioxide,TON
+37075,1.325776e-05,Nitrate portion of PM2.5-PRI,TON
+37075,0.002241177,Organic Carbon portion of PM2.5-PRI,TON
+37063,6.074434,Styrene,LB
+37063,0.2344696,Anthracene,LB
+37063,90.3354,Formaldehyde,LB
+37063,0.13412628,Benz[a]Anthracene,LB
+37059,7.771432,Hexane,LB
+37059,0.00892816,Benzo[b]Fluoranthene,LB
+37059,1.3387954,Fluoranthene,LB
+37059,0.001238826,Benzo[k]Fluoranthene,LB
+37059,0.10643366,Chrysene,LB
+37059,28.90102,Benzene,LB
+37059,17.3796,Carbon Monoxide,TON
+37059,0.29982,PM10-Primary from certain diesel engines,TON
+37059,0.2606982,Acrolein,LB
+37059,0.014232826,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.008262252,Benzo[b]Fluoranthene,LB
+37059,4.578416,Formaldehyde,LB
+37059,0.0005747562,Arsenic,LB
+37059,0.01097395,Methane,TON
+37057,0.04466066,Ammonia,TON
+37057,1.111647,PM10 Primary (Filt + Cond),TON
+37057,5.867504e-05,Chromium (VI),LB
+37057,0.01511487,"Benzo[g,h,i,]Perylene",LB
+37057,41.72136,Benzene,LB
+37057,24.67327,Carbon Monoxide,TON
+37055,0.9279932,"1,3-Butadiene",LB
+37055,19.302868,Xylenes (Mixed Isomers),LB
+37055,7.987436,Benzene,LB
+37055,0.0001928242,Nickel,LB
+37055,0.001062643,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,36.91288,Pyrene,LB
+37043,0.0354825,Chrysene,LB
+37043,3.482128e-06,Mercury,LB
+37043,2.978028,Naphthalene,LB
+37043,1.064655,Carbon Monoxide,TON
+37043,0.0003304481,Nitrate portion of PM2.5-PRI,TON
+37045,12.899532,Acrolein,LB
+37045,0.3983627,PM2.5 Primary (Filt + Cond),TON
+37045,0.05409216,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.01739011,Sulfur Dioxide,TON
+37025,0.0340092,Fluoranthene,LB
+37025,0.006896938,Chrysene,LB
+37025,26.1885,Benzene,LB
+37025,5.600322e-05,Mercury,LB
+37025,0.004375919,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.0003707572,Sulfate Portion of PM2.5-PRI,TON
+37025,0.5531832,Volatile Organic Compounds,TON
+37029,0.02316678,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.0800489,Fluoranthene,LB
+37029,0.016581722,Benzo[k]Fluoranthene,LB
+37029,110.36456,"2,2,4-Trimethylpentane",LB
+37029,12.306546,Acetaldehyde,LB
+37029,0.02257671,PM2.5 Primary (Filt + Cond),TON
+37029,0.007933483,Sulfur Dioxide,TON
+37027,2.62467e-06,Chromium (VI),LB
+37027,0.004272478,Benz[a]Anthracene,LB
+37027,0.09825464,Phenanthrene,LB
+37027,0.9421722,Naphthalene,LB
+37027,6.738463,Carbon Monoxide,TON
+37027,0.4690025,Volatile Organic Compounds,TON
+37147,0.8637748,Acrolein,LB
+37147,0.0003315874,Chrysene,LB
+37147,0.00018067564,Benz[a]Anthracene,LB
+37147,1.254592e-06,Nickel,LB
+37147,0.0006951398,Acenaphthene,LB
+37147,0.0015170012,Fluorene,LB
+37145,0.6596624,Fluorene,LB
+37145,0.1002494,PM2.5 Primary (Filt + Cond),TON
+37145,3.955444,Ethyl Benzene,LB
+37145,6.228106,Propionaldehyde,LB
+37145,0.003331278,Benzo[b]Fluoranthene,LB
+37145,3.019998,"2,2,4-Trimethylpentane",LB
+37139,0.013835662,Acenaphthylene,LB
+37139,1.7282106e-05,Mercury,LB
+37139,5.249553e-06,Nitrate portion of PM2.5-PRI,TON
+37135,0.016437876,Arsenic,LB
+37135,109.87894,Acetaldehyde,LB
+37135,1.3853604,Fluorene,LB
+37135,0.006414093,Nitrous Oxide,TON
+37135,0.02414774,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,1.3518848,Pyrene,LB
+37135,257.7078,Formaldehyde,LB
+37135,0.1947674,Benz[a]Anthracene,LB
+37127,0.657568,Styrene,LB
+37127,0.009647666,Benzo[k]Fluoranthene,LB
+37127,14.824602,"2,2,4-Trimethylpentane",LB
+37127,0.001572998,Nickel,LB
+37127,8.865564,Acetaldehyde,LB
+37127,16.54274,Carbon Monoxide,TON
+37127,622.4811,Carbon Dioxide,TON
+37127,0.008958233,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.4433375,Volatile Organic Compounds,TON
+37123,2.315258,Benzene,LB
+37121,0.04129346,Hexane,LB
+37121,6.80636e-05,"Benzo[g,h,i,]Perylene",LB
+37121,0.011790602,Fluoranthene,LB
+37121,1.6438644,Formaldehyde,LB
+37121,0.001098871,Benzo[a]Pyrene,LB
+37121,0.03369497,Carbon Monoxide,TON
+37121,12.96445,Carbon Dioxide,TON
+37121,3.62189e-05,Nitrous Oxide,TON
+37121,0.06864366,Nitrogen Oxides,TON
+37121,0.0001122062,Sulfur Dioxide,TON
+37121,0.0001113841,Sulfate Portion of PM2.5-PRI,TON
+37115,0.3997742,Chrysene,LB
+37115,16.54006,"2,2,4-Trimethylpentane",LB
+37115,13154.8,Carbon Dioxide,TON
+37115,36.26345,Nitrogen Oxides,TON
+37113,3.729818e-05,Fluorene,LB
+37113,0.1016443,Carbon Dioxide,TON
+37113,8.729434e-06,PM2.5 Primary (Filt + Cond),TON
+37113,0.002567354,"1,3-Butadiene",LB
+37113,0.000100256,Phenanthrene,LB
+37107,0.00014432404,Fluoranthene,LB
+37107,0.00016455332,Arsenic,LB
+37107,0.001435716,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.0002378062,Sulfur Dioxide,TON
+37107,3.231324e-05,Sulfate Portion of PM2.5-PRI,TON
+37105,0.4613312,Chrysene,LB
+37105,0.240767,Benzo[a]Pyrene,LB
+37105,0.014095822,Arsenic,LB
+37105,0.8282625,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.007584746,Nitrous Oxide,TON
+37105,0.0764326,Ammonia,TON
+37105,0.3437146,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.167698,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,10.854634,Acrolein,LB
+37097,11.731128,Toluene,LB
+37097,0.1077587,Methane,TON
+37097,3.113114,Carbon Monoxide,TON
+37097,0.005546482,Nitrous Oxide,TON
+37097,0.05390687,Ammonia,TON
+37097,0.3779177,PM2.5 Primary (Filt + Cond),TON
+37103,19.744406,Toluene,LB
+37103,17.003256,Xylenes (Mixed Isomers),LB
+37103,13.552474,"2,2,4-Trimethylpentane",LB
+37103,0.12210728,Styrene,LB
+37103,0.6456642,"1,3-Butadiene",LB
+37103,0.004422348,Anthracene,LB
+37103,13.810626,Xylenes (Mixed Isomers),LB
+37103,0.003184108,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.02331982,Acenaphthylene,LB
+37103,1.6310412,Acetaldehyde,LB
+37103,52.79362,Carbon Dioxide,TON
+37103,0.2350172,Nitrogen Oxides,TON
+37093,4.860878,Acrolein,LB
+37093,3.868826,Toluene,LB
+37093,0.3479248,Acenaphthylene,LB
+37093,0.05462328,Chrysene,LB
+37093,0.2069284,Acenaphthene,LB
+37093,0.01662189,Methane,TON
+37093,0.07565628,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.001629041,Nitrous Oxide,TON
+37093,0.004260352,Sulfate Portion of PM2.5-PRI,TON
+37093,2.016162,Ethyl Benzene,LB
+37083,0.3300316,Xylenes (Mixed Isomers),LB
+37083,0.000370399,Acenaphthene,LB
+37083,0.0009714335,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.003753114,Organic Carbon portion of PM2.5-PRI,TON
+37073,30.2699,Formaldehyde,LB
+37073,0.002549478,Benzo[a]Pyrene,LB
+37073,2.071566,Xylenes (Mixed Isomers),LB
+37073,0.009817684,Chrysene,LB
+37075,0.18344792,Anthracene,LB
+37075,3.493648e-05,Chromium (VI),LB
+37067,2.993982e-05,Chromium (VI),LB
+37067,0.005091168,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.44092,Acenaphthylene,LB
+37067,0.02294033,Sulfur Dioxide,TON
+37063,0.6128052,Styrene,LB
+37063,0.6068678,Acrolein,LB
+37063,64.3413,Toluene,LB
+37063,20.02692,Hexane,LB
+37063,0.008869379,Methane,TON
+37063,0.008960378,Nitrous Oxide,TON
+37063,0.3868825,Volatile Organic Compounds,TON
+37063,5146.216,"1,3-Butadiene",LB
+37063,124731.66,Toluene,LB
+37063,0.03107832,Chromium (VI),LB
+37063,15.97034,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,26974.26,"2,2,4-Trimethylpentane",LB
+37043,0.3838292,Acenaphthylene,LB
+37043,3.369134e-05,Mercury,LB
+37043,0.0145079,Nickel,LB
+37043,8.30241,Naphthalene,LB
+37043,0.02129739,Sulfur Dioxide,TON
+37043,0.010463468,Chrysene,LB
+37043,0.8335856,"2,2,4-Trimethylpentane",LB
+37043,0.00429788,Nickel,LB
+37033,0.02351366,Nickel,LB
+37033,4.54352,Ethyl Benzene,LB
+37033,4.023295,Carbon Monoxide,TON
+37033,0.001818278,Nitrate portion of PM2.5-PRI,TON
+37033,0.06370178,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,3.478674,Ethyl Benzene,LB
+37031,3.43464,"1,3-Butadiene",LB
+37031,0.6418586,Fluoranthene,LB
+37031,0.001803132,"Dibenzo[a,h]Anthracene",LB
+37031,2.591782,"2,2,4-Trimethylpentane",LB
+37031,1.986909e-05,Mercury,LB
+37031,0.0008054342,Nitrate portion of PM2.5-PRI,TON
+37163,25.65518,"1,3-Butadiene",LB
+37159,1.1827206,Anthracene,LB
+37159,2.533806,Fluoranthene,LB
+37159,0.009749188,"Dibenzo[a,h]Anthracene",LB
+37159,2251.144,Carbon Dioxide,TON
+37155,3.833606,Phenanthrene,LB
+37155,0.9197941,PM10-Primary from certain diesel engines,TON
+37155,0.3883621,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.1359629,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,7.739768,Hexane,LB
+37155,16.652824,Propionaldehyde,LB
+37155,29.25466,Benzene,LB
+37155,0.06848284,Manganese,LB
+37155,0.010967848,Arsenic,LB
+37155,134.6839,Acetaldehyde,LB
+37151,1.7546986e-05,Anthracene,LB
+37151,0.00013037246,Phenanthrene,LB
+37151,0.00014792856,Naphthalene,LB
+37151,0.0004452699,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,8.104729e-05,Sulfur Dioxide,TON
+37151,9.543894e-06,Sulfate Portion of PM2.5-PRI,TON
+37147,2.18983,Ethyl Benzene,LB
+37147,1.6847194,Hexane,LB
+37147,0.002985952,"Benzo[g,h,i,]Perylene",LB
+37147,0.09498284,Chrysene,LB
+37147,1.780836,"2,2,4-Trimethylpentane",LB
+37147,1.49192,Carbon Monoxide,TON
+37147,0.03416631,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,8.076724e-08,"Dibenzo[a,h]Anthracene",LB
+37145,1.5911294e-05,Fluorene,LB
+37145,0.04925631,Carbon Dioxide,TON
+37145,0.000187514,Styrene,LB
+37145,0.006375366,Hexane,LB
+37145,0.00016136332,Propionaldehyde,LB
+37145,1.1551362e-05,Fluoranthene,LB
+37133,0.00863879,Benzo[b]Fluoranthene,LB
+37133,38.18704,Benzene,LB
+37133,0.17003532,Phenanthrene,LB
+37133,0.002536499,Elemental Carbon portion of PM2.5-PRI,TON
+37133,4.993002e-05,Nitrate portion of PM2.5-PRI,TON
+37133,0.008107702,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.488742,"1,3-Butadiene",LB
+37121,0.0662358,Acrolein,LB
+37121,4.916898,Hexane,LB
+37121,0.002986686,Anthracene,LB
+37121,0.0717426,Propionaldehyde,LB
+37121,0.0009528936,Benzo[b]Fluoranthene,LB
+37121,0.005094046,Fluoranthene,LB
+37121,0.0159186,Acenaphthylene,LB
+37121,2.883432e-05,"Dibenzo[a,h]Anthracene",LB
+37121,4.2897,"2,2,4-Trimethylpentane",LB
+37121,3.7261,Benzene,LB
+37121,0.000419035,Manganese,LB
+37121,0.000105564,Arsenic,LB
+37121,0.01897734,Phenanthrene,LB
+37121,0.001168729,Nitrous Oxide,TON
+37121,3.732088e-06,Nitrate portion of PM2.5-PRI,TON
+37121,3.409895e-05,Sulfate Portion of PM2.5-PRI,TON
+37121,0.08860773,Volatile Organic Compounds,TON
+37119,1.1588008,Benzo[a]Pyrene,LB
+37119,56.51794,Ethyl Benzene,LB
+37119,15.586162,Pyrene,LB
+37111,4.724918,Anthracene,LB
+37111,1624.9102,Formaldehyde,LB
+37111,0.07466298,"Dibenzo[a,h]Anthracene",LB
+37111,1.3724618,Arsenic,LB
+37111,2.976229,Methane,TON
+37111,0.01013521,Nitrate portion of PM2.5-PRI,TON
+37099,3.015528,Ethyl Benzene,LB
+37099,8.331774,Toluene,LB
+37099,0.018169986,Chrysene,LB
+37099,0.09619003,Methane,TON
+37099,947.675,Carbon Dioxide,TON
+37099,0.7812376,Nitrogen Oxides,TON
+37095,0.7946706,"2,2,4-Trimethylpentane",LB
+37095,0.2664572,Acetaldehyde,LB
+37095,0.001583027,Fluorene,LB
+37095,0.00282613,Phenanthrene,LB
+37095,3.313593e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37095,8.40516e-05,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.0006918738,PM10 Primary (Filt + Cond),TON
+37091,8.873356,Pyrene,LB
+37091,3759.936,"2,2,4-Trimethylpentane",LB
+37091,0.3303546,Nickel,LB
+37091,0.506524,Arsenic,LB
+37091,4.06065,Ammonia,TON
+37091,150.1527,Nitrogen Oxides,TON
+37083,2.402818,Acenaphthene,LB
+37083,77.715,Naphthalene,LB
+37083,0.6198998,PM25-Primary from certain diesel engines,TON
+37079,7.335248,Styrene,LB
+37079,0.4506656,Fluoranthene,LB
+37079,1.4108868,Acenaphthylene,LB
+37079,96.25206,Formaldehyde,LB
+37079,0.10592718,Benzo[a]Pyrene,LB
+37079,0.3098976,Acenaphthene,LB
+37071,0.007419012,"Benzo[g,h,i,]Perylene",LB
+37071,1.578617,Fluoranthene,LB
+37071,0.2202618,Chrysene,LB
+37071,261.306,Formaldehyde,LB
+37071,6.42089,"2,2,4-Trimethylpentane",LB
+37071,0.3977636,Benz[a]Anthracene,LB
+37071,0.010968106,Arsenic,LB
+37071,114.71356,Acetaldehyde,LB
+37071,0.3253143,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.001844118,Nitrate portion of PM2.5-PRI,TON
+37071,2051.574,Benzene,LB
+37061,30.232,"1,3-Butadiene",LB
+37061,2.804118,Anthracene,LB
+37061,1739.5774,Formaldehyde,LB
+37061,6.241956,Fluorene,LB
+37061,45774.35,Carbon Dioxide,TON
+37061,0.7020265,Organic Carbon portion of PM2.5-PRI,TON
+37061,6.901329,Volatile Organic Compounds,TON
+37061,118.27156,Acrolein,LB
+37061,3.182664,Benzo[a]Pyrene,LB
+37061,6062.236,Benzene,LB
+37047,0.65761,Anthracene,LB
+37047,9.612594,Propionaldehyde,LB
+37047,3.66746e-05,Chromium (VI),LB
+37047,1.4263416,Fluoranthene,LB
+37047,16.769664,Benzene,LB
+37047,19.484786,Naphthalene,LB
+37047,0.5285245,PM10-Primary from certain diesel engines,TON
+37047,0.4862228,PM25-Primary from certain diesel engines,TON
+37045,0.295663,Xylenes (Mixed Isomers),LB
+37045,3.975576e-08,Chromium (VI),LB
+37045,0.000435404,Arsenic,LB
+37045,0.01223484,Nitrous Oxide,TON
+37045,2.467878e-06,Nitrate portion of PM2.5-PRI,TON
+37043,0.06764052,Acrolein,LB
+37043,1.6572106e-05,Benz[a]Anthracene,LB
+37043,0.0001423528,Sulfur Dioxide,TON
+37043,0.0145014,Arsenic,LB
+37043,2001.457,Carbon Dioxide,TON
+37043,0.008829998,Sulfate Portion of PM2.5-PRI,TON
+37045,8.3672,Phenanthrene,LB
+37045,3.339794,PM10-Primary from certain diesel engines,TON
+37045,0.0001693769,Chromium (VI),LB
+37045,1414.453,"1,3-Butadiene",LB
+37045,8.034804,Anthracene,LB
+37045,483.1486,Naphthalene,LB
+37045,0.01748838,Nitrate portion of PM2.5-PRI,TON
+37039,0.041155,Benzo[k]Fluoranthene,LB
+37039,0.633415,Acenaphthylene,LB
+37039,0.001301747,"Dibenzo[a,h]Anthracene",LB
+37039,0.0001620527,Nitrate portion of PM2.5-PRI,TON
+37027,14.419012,"1,3-Butadiene",LB
+37027,0.17635948,Manganese,LB
+37027,0.05229966,Nickel,LB
+37027,215.8132,Acetaldehyde,LB
+37027,54.02262,Naphthalene,LB
+37027,0.3673644,Methane,TON
+37027,1.129733,PM2.5 Primary (Filt + Cond),TON
+37027,0.2293594,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,7.112002,Xylenes (Mixed Isomers),LB
+37175,0.00019080372,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.2867452,Fluoranthene,LB
+37175,0.017094738,Chrysene,LB
+37175,0.231001,Acenaphthene,LB
+37175,0.6453018,Phenanthrene,LB
+37175,8.664974,Naphthalene,LB
+37175,0.002589223,Elemental Carbon portion of PM2.5-PRI,TON
+37159,4.455612,Hexane,LB
+37159,0.510061,Anthracene,LB
+37159,0.921745,Acenaphthylene,LB
+37159,0.001111398,Nitrate portion of PM2.5-PRI,TON
+37159,12.6219,Nitrogen Oxides,TON
+37159,0.6319793,PM10 Primary (Filt + Cond),TON
+37153,1.196532e-05,Mercury,LB
+37153,0.000902451,Naphthalene,LB
+37137,0.3873919,PM10 Primary (Filt + Cond),TON
+37137,0.03170841,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,2.159138,"1,3-Butadiene",LB
+37137,5.146562,Acrolein,LB
+37137,3.517782,Propionaldehyde,LB
+37137,0.6899432,Pyrene,LB
+37137,0.05062772,Benzo[a]Pyrene,LB
+37137,1.922577,Carbon Monoxide,TON
+37131,0.9788232,"1,3-Butadiene",LB
+37131,0.004326188,Benzo[b]Fluoranthene,LB
+37131,0.004326188,Benzo[k]Fluoranthene,LB
+37131,2.466,Acetaldehyde,LB
+37131,0.04247988,Phenanthrene,LB
+37131,0.005546808,Methane,TON
+37131,77.93601,Carbon Dioxide,TON
+37127,1.0027242,Manganese,LB
+37127,954.6566,Acetaldehyde,LB
+37127,4.36583,Acenaphthene,LB
+37127,233.9168,Naphthalene,LB
+37127,0.06534155,Nitrous Oxide,TON
+37127,79.02264,Ethyl Benzene,LB
+37127,0.0323052,Benzo[k]Fluoranthene,LB
+37121,2.926116,"1,3-Butadiene",LB
+37121,0.929332,Pyrene,LB
+37121,5.26564,Xylenes (Mixed Isomers),LB
+37121,0.2975046,Acenaphthene,LB
+37121,0.6453608,Fluorene,LB
+37121,0.001172413,Nitrate portion of PM2.5-PRI,TON
+37121,0.09549569,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.511175,PM10 Primary (Filt + Cond),TON
+37121,0.04171557,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,28.83647,Nitrogen Oxides,TON
+37111,0.06644183,Sulfur Dioxide,TON
+37111,3.218599,Volatile Organic Compounds,TON
+37111,19.033888,Ethyl Benzene,LB
+37111,17.65294,"1,3-Butadiene",LB
+37111,14.510748,Hexane,LB
+37111,0.16965794,Manganese,LB
+37111,0.03889196,Arsenic,LB
+37117,920.0888,Acetaldehyde,LB
+37117,13.975994,Phenanthrene,LB
+37117,623.957,Carbon Monoxide,TON
+37117,1.096459,Nitrous Oxide,TON
+37117,4.230573,Ammonia,TON
+37117,0.9685149,Sulfur Dioxide,TON
+37117,53.08036,Acrolein,LB
+37117,10996.794,Toluene,LB
+37117,4.320406,Pyrene,LB
+37117,0.003346082,Chromium (VI),LB
+37117,3.788908,Fluoranthene,LB
+37117,1.2558178,Benzo[a]Pyrene,LB
+37107,3.08544e-06,Anthracene,LB
+37107,9.392318e-07,Chrysene,LB
+37107,9.526096e-07,Benz[a]Anthracene,LB
+37107,2.910346e-08,Sulfate Portion of PM2.5-PRI,TON
+37107,0.04129836,"1,3-Butadiene",LB
+37107,0.006676116,Propionaldehyde,LB
+37107,0.0005140098,Pyrene,LB
+37107,0.10032192,Formaldehyde,LB
+37107,0.2741392,"2,2,4-Trimethylpentane",LB
+37107,8.354698e-05,Benz[a]Anthracene,LB
+37107,0.5512939,Carbon Dioxide,TON
+37107,2.341623e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.016723478,"Dibenzo[a,h]Anthracene",LB
+37103,64.44604,Naphthalene,LB
+37103,41.47122,Nitrogen Oxides,TON
+37097,166.54882,Acenaphthylene,LB
+37097,26234.46,"2,2,4-Trimethylpentane",LB
+37097,11.199914,Benz[a]Anthracene,LB
+37097,13.08431,Sulfur Dioxide,TON
+37053,0.55136,Hexane,LB
+37053,0.005191902,Benzo[b]Fluoranthene,LB
+37053,0.0328965,Chrysene,LB
+37053,0.08466842,PM10 Primary (Filt + Cond),TON
+37053,0.05810947,PM2.5 Primary (Filt + Cond),TON
+37015,7.900692,Ethyl Benzene,LB
+37015,15.99858,Xylenes (Mixed Isomers),LB
+37015,1.0438444,Fluoranthene,LB
+37015,0.08192236,Chrysene,LB
+37015,0.02257652,Benzo[a]Pyrene,LB
+37015,0.004537657,Nitrous Oxide,TON
+37015,0.3280111,PM10 Primary (Filt + Cond),TON
+37011,4.114156,"1,3-Butadiene",LB
+37011,151.90496,Hexane,LB
+37011,0.12882718,Fluoranthene,LB
+37011,32.60988,Formaldehyde,LB
+37011,0.0008472062,"Dibenzo[a,h]Anthracene",LB
+37011,0.0003469572,Mercury,LB
+37011,0.006633062,Arsenic,LB
+37009,2.511666,Ethyl Benzene,LB
+37009,0.001390448,Benzo[a]Pyrene,LB
+37009,43.03446,Carbon Dioxide,TON
+37009,0.0004198866,Elemental Carbon portion of PM2.5-PRI,TON
+37009,37.90496,Ethyl Benzene,LB
+37009,53.279,Hexane,LB
+37009,50.74194,"2,2,4-Trimethylpentane",LB
+37009,0.006741642,Manganese,LB
+37009,0.00207847,Arsenic,LB
+37009,400.4237,Carbon Dioxide,TON
+37001,61.10436,Acetaldehyde,LB
+37001,0.3737667,PM10 Primary (Filt + Cond),TON
+37007,945.511,"1,3-Butadiene",LB
+37007,2.064568,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,1.7480826,Chrysene,LB
+37007,7.014194,Acenaphthene,LB
+37057,0.0003044152,Mercury,LB
+37057,0.00508835,Fluorene,LB
+37057,0.0222383,Methane,TON
+37057,0.02650145,Ammonia,TON
+37057,2.087493e-05,Nitrate portion of PM2.5-PRI,TON
+37057,3.004808,Hexane,LB
+37057,0.003102962,Benzo[k]Fluoranthene,LB
+37057,0.005869978,Benzo[a]Pyrene,LB
+37057,0.00267547,Benz[a]Anthracene,LB
+37013,0.05085218,Acrolein,LB
+37013,0.002307498,"Benzo[g,h,i,]Perylene",LB
+37013,0.004122093,Methane,TON
+37013,0.5668657,Carbon Monoxide,TON
+37013,0.0005007783,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.03349974,Volatile Organic Compounds,TON
+37123,0.0010588636,Pyrene,LB
+37123,0.001115768,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.0009351274,Fluoranthene,LB
+37123,0.327182,Ethyl Benzene,LB
+37123,0.015803126,Styrene,LB
+37123,0.0007571328,Nickel,LB
+37123,0.840237,Carbon Monoxide,TON
+37123,0.004611706,PM10 Primary (Filt + Cond),TON
+37123,0.00151451,PM2.5 Primary (Filt + Cond),TON
+37123,0.002486677,Sulfur Dioxide,TON
+37123,4.273853e-05,Sulfate Portion of PM2.5-PRI,TON
+37017,0.4444122,"1,3-Butadiene",LB
+37017,14.746724,Toluene,LB
+37017,2.421564e-06,Chromium (VI),LB
+37017,1.1505372,Formaldehyde,LB
+37017,3.338376e-05,"Dibenzo[a,h]Anthracene",LB
+37017,3.214218,"2,2,4-Trimethylpentane",LB
+37017,0.003599588,Acenaphthene,LB
+37017,0.0003481946,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.003823157,Ammonia,TON
+37017,0.006618288,PM10 Primary (Filt + Cond),TON
+37073,0.000650772,Arsenic,LB
+37073,0.4314095,Carbon Monoxide,TON
+37073,0.0001670028,Elemental Carbon portion of PM2.5-PRI,TON
+37073,2.224404e-06,Nitrate portion of PM2.5-PRI,TON
+37071,0.10252548,"1,3-Butadiene",LB
+37071,0.002262242,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,1.4404096,Formaldehyde,LB
+37071,0.002231078,Benzo[a]Pyrene,LB
+37071,0.003758648,Manganese,LB
+37071,0.0005942738,Elemental Carbon portion of PM2.5-PRI,TON
+37045,5.972408,Benzene,LB
+37045,0.00754022,PM2.5 Primary (Filt + Cond),TON
+37045,2.2976,Hexane,LB
+37045,4.164252,Xylenes (Mixed Isomers),LB
+37019,0.0757005,Acrolein,LB
+37019,0.0012861462,Fluoranthene,LB
+37019,4.755468,Ethyl Benzene,LB
+37019,0.3635632,Volatile Organic Compounds,TON
+37173,0.00635199,Fluorene,LB
+37173,0.02553681,Methane,TON
+37173,0.002182708,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,1.7626884,Ethyl Benzene,LB
+37173,6.647974,Toluene,LB
+37173,0.005296172,Fluoranthene,LB
+37173,6.706404,Formaldehyde,LB
+37065,889.445,Xylenes (Mixed Isomers),LB
+37065,8.81596e-05,Chromium (VI),LB
+37065,0.06882994,Benzo[b]Fluoranthene,LB
+37065,1.0839274,Acenaphthylene,LB
+37065,90.36636,Formaldehyde,LB
+37065,0.02161006,Manganese,LB
+37065,0.0008837856,Mercury,LB
+37065,0.2379562,Acenaphthene,LB
+37065,1451.786,Carbon Dioxide,TON
+37065,0.013549,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.1783296,Ammonia,TON
+37065,0.05203082,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.1561369,PM10 Primary (Filt + Cond),TON
+37057,4.026788,Anthracene,LB
+37057,0.05666398,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,37.66399,Carbon Monoxide,TON
+37057,1.156539,Elemental Carbon portion of PM2.5-PRI,TON
+37055,780.247,Carbon Dioxide,TON
+37055,2.593672,Ethyl Benzene,LB
+37055,0.8484046,Styrene,LB
+37055,0.0006891108,"Benzo[g,h,i,]Perylene",LB
+37045,0.006927974,Benz[a]Anthracene,LB
+37045,4.220348e-05,Mercury,LB
+37045,0.0008069018,Arsenic,LB
+37045,6.121974,Acetaldehyde,LB
+37045,3.339994e-05,Nitrate portion of PM2.5-PRI,TON
+37045,0.7298641,Nitrogen Oxides,TON
+37045,0.02854918,Fluoranthene,LB
+37045,0.007212996,Benzo[k]Fluoranthene,LB
+37043,2.92998,Styrene,LB
+37043,0.1798012,Fluoranthene,LB
+37043,0.017574008,Manganese,LB
+37043,0.01150641,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,2.034231,Volatile Organic Compounds,TON
+37035,0.9233252,Styrene,LB
+37035,0.05776214,Fluoranthene,LB
+37035,48.22098,"2,2,4-Trimethylpentane",LB
+37035,0.013896668,Benz[a]Anthracene,LB
+37035,6.632656e-05,Mercury,LB
+37035,0.07860054,Fluorene,LB
+37035,295.1725,Carbon Dioxide,TON
+37031,1.6594938,Pyrene,LB
+37031,0.00511549,Benzo[k]Fluoranthene,LB
+37031,0.004752968,Arsenic,LB
+37031,0.005857955,Nitrous Oxide,TON
+37031,5.651615,Nitrogen Oxides,TON
+37025,20.97292,Styrene,LB
+37025,18.254892,Acrolein,LB
+37025,1880.413,Hexane,LB
+37025,15.447544,Propionaldehyde,LB
+37025,1.592103,Pyrene,LB
+37025,0.2729624,Benzo[b]Fluoranthene,LB
+37025,0.9549114,Acenaphthene,LB
+37025,49.58278,Naphthalene,LB
+37171,21.88928,Acrolein,LB
+37171,0.005891092,Benzo[k]Fluoranthene,LB
+37171,0.5048698,Benz[a]Anthracene,LB
+37171,0.02799686,Ammonia,TON
+37171,0.2069024,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.5398503,PM2.5 Primary (Filt + Cond),TON
+37169,3620.696,Xylenes (Mixed Isomers),LB
+37169,215.1494,Benzene,LB
+37167,2.193104,Naphthalene,LB
+37167,21.22952,Carbon Monoxide,TON
+37167,0.002925411,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.0006554493,Sulfate Portion of PM2.5-PRI,TON
+37167,21.81704,Ethyl Benzene,LB
+37167,79.9133,Xylenes (Mixed Isomers),LB
+37167,0.03364032,"Benzo[g,h,i,]Perylene",LB
+37157,0.3103418,Propionaldehyde,LB
+37157,0.02599684,Pyrene,LB
+37157,0.07010656,Acenaphthylene,LB
+37157,0.005299956,Benz[a]Anthracene,LB
+37157,0.005077358,Nitrous Oxide,TON
+37157,2.478099e-05,Nitrate portion of PM2.5-PRI,TON
+37151,3.75431,Acrolein,LB
+37151,794.1828,Toluene,LB
+37151,0.275843,"Benzo[g,h,i,]Perylene",LB
+37151,0.03882088,Manganese,LB
+37151,63.94642,Acetaldehyde,LB
+37141,1.0349768,Fluoranthene,LB
+37141,25.25376,Naphthalene,LB
+37141,0.2775422,PM10-Primary from certain diesel engines,TON
+37141,0.2553365,PM25-Primary from certain diesel engines,TON
+37129,14.185806,Styrene,LB
+37129,3.773074,Anthracene,LB
+37129,0.00018741204,Mercury,LB
+37129,432.002,Acetaldehyde,LB
+37129,0.3836937,Methane,TON
+37125,3.089182,Acenaphthylene,LB
+37125,828.1582,Formaldehyde,LB
+37125,0.4458814,Manganese,LB
+37125,0.000430083,Mercury,LB
+37125,7.723466,Phenanthrene,LB
+37125,0.2849026,Sulfur Dioxide,TON
+37125,18.509216,"1,3-Butadiene",LB
+37125,5.254152,Pyrene,LB
+37121,2.864434,"1,3-Butadiene",LB
+37121,10.522296,Toluene,LB
+37121,0.7981144,Pyrene,LB
+37121,0.10466808,Chrysene,LB
+37121,0.002229118,"Dibenzo[a,h]Anthracene",LB
+37121,10.032778,Benzene,LB
+37121,7.504154e-05,Mercury,LB
+37121,0.6157898,Fluorene,LB
+37121,0.04470898,Sulfate Portion of PM2.5-PRI,TON
+37111,0.00470704,Formaldehyde,LB
+37111,1.627644e-05,Benzo[a]Pyrene,LB
+37111,2.622232e-09,Chromium (VI),LB
+37111,0.0007537671,Nitrogen Oxides,TON
+37017,6.130656,Toluene,LB
+37017,5.060188,Propionaldehyde,LB
+37017,0.002904638,Arsenic,LB
+37017,0.2669491,PM10-Primary from certain diesel engines,TON
+37017,0.1038762,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.2525147,PM2.5 Primary (Filt + Cond),TON
+37019,5.748394,"2,2,4-Trimethylpentane",LB
+37019,0.0001682774,Sulfate Portion of PM2.5-PRI,TON
+37019,26.8458,Toluene,LB
+37019,6.955844,Hexane,LB
+37019,0.002578112,Benzo[b]Fluoranthene,LB
+37017,8.849696,Benzene,LB
+37017,0.0002168364,Nickel,LB
+37017,68.4758,Carbon Dioxide,TON
+37013,0.07257708,PM10 Primary (Filt + Cond),TON
+37013,1.410112,Volatile Organic Compounds,TON
+37013,70.99546,Hexane,LB
+37013,0.02049628,Benzo[a]Pyrene,LB
+37013,0.01712841,Benz[a]Anthracene,LB
+37013,0.3659636,Phenanthrene,LB
+37013,0.13677054,Fluorene,LB
+37013,0.00596105,Elemental Carbon portion of PM2.5-PRI,TON
+37013,2.073947,Nitrogen Oxides,TON
+37115,0.00236774,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.00568579,Fluoranthene,LB
+37115,0.017335236,Acenaphthylene,LB
+37115,1.1643782,Acetaldehyde,LB
+37115,8.66932,Xylenes (Mixed Isomers),LB
+37115,0.6835066,Toluene,LB
+37115,0.2200678,Benzene,LB
+37115,5.559034e-07,Mercury,LB
+37115,2.977263e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37115,9.401166e-05,Ammonia,TON
+37115,8.475247e-05,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.0002570444,PM10 Primary (Filt + Cond),TON
+37115,4.453202e-06,Sulfate Portion of PM2.5-PRI,TON
+37101,0.0001033906,Chrysene,LB
+37101,36.50932,Styrene,LB
+37101,0.3599528,Benzo[b]Fluoranthene,LB
+37101,176.0141,"2,2,4-Trimethylpentane",LB
+37101,354.7369,Nitrogen Oxides,TON
+37101,15.348006,Benzene,LB
+37101,0.06228836,Manganese,LB
+37101,4.319938e-05,Mercury,LB
+37101,2419.161,Carbon Dioxide,TON
+37101,0.3537152,PM25-Primary from certain diesel engines,TON
+37101,0.002451886,Benzo[k]Fluoranthene,LB
+37101,0.885518,Acenaphthylene,LB
+37101,0.0024401,"Dibenzo[a,h]Anthracene",LB
+37087,83.84572,Ethyl Benzene,LB
+37087,0.0004919786,Chromium (VI),LB
+37087,84.44838,"2,2,4-Trimethylpentane",LB
+37087,0.8034094,Manganese,LB
+37087,1005.481,Acetaldehyde,LB
+37087,0.05999037,Nitrous Oxide,TON
+37087,10.4413,Volatile Organic Compounds,TON
+37087,0.006714008,Benzo[b]Fluoranthene,LB
+37087,0.0442366,Acenaphthylene,LB
+37087,0.222376,Styrene,LB
+37087,0.01742035,Pyrene,LB
+37087,2.806016,Acetaldehyde,LB
+37087,3.701687e-05,Nitrate portion of PM2.5-PRI,TON
+37087,0.01350253,PM2.5 Primary (Filt + Cond),TON
+37081,0.8608428,Styrene,LB
+37081,4.59286,Acrolein,LB
+37081,0.01215683,Benzo[b]Fluoranthene,LB
+37081,0.011028388,Manganese,LB
+37081,0.01385346,Methane,TON
+37081,412.9706,Carbon Dioxide,TON
+37081,0.0007054024,Nitrate portion of PM2.5-PRI,TON
+37081,43.35922,Acrolein,LB
+37081,15223.394,Toluene,LB
+37081,36.9976,Propionaldehyde,LB
+37081,0.000923632,Chromium (VI),LB
+37081,0.7081922,Benzo[b]Fluoranthene,LB
+37081,10.42837,Acenaphthylene,LB
+37081,873.397,Formaldehyde,LB
+37081,0.02289976,"Dibenzo[a,h]Anthracene",LB
+37081,0.00925934,Mercury,LB
+37081,1.808177,Ammonia,TON
+37081,0.5540861,Organic Carbon portion of PM2.5-PRI,TON
+37077,2.439212,Sulfur Dioxide,TON
+37077,120.53584,Acrolein,LB
+37077,5632.85,"2,2,4-Trimethylpentane",LB
+37077,6122.192,Benzene,LB
+37065,3.707384,Styrene,LB
+37065,8.57514,"1,3-Butadiene",LB
+37065,14.504614,Propionaldehyde,LB
+37065,0.010156524,"Benzo[g,h,i,]Perylene",LB
+37065,9.417629,Carbon Monoxide,TON
+37065,1.231214,PM25-Primary from certain diesel engines,TON
+37065,0.1805381,Ammonia,TON
+37051,0.1726096,Organic Carbon portion of PM2.5-PRI,TON
+37051,7.608852,"2,2,4-Trimethylpentane",LB
+37051,0.013065482,Arsenic,LB
+37051,0.02097012,Styrene,LB
+37051,0.0185923,Propionaldehyde,LB
+37051,1.8130372,Xylenes (Mixed Isomers),LB
+37051,8.032036e-08,Chromium (VI),LB
+37051,0.2564618,Formaldehyde,LB
+37051,0.00019891414,Benz[a]Anthracene,LB
+37051,0.0004417657,Methane,TON
+37051,0.01365162,Volatile Organic Compounds,TON
+37049,0.0007486912,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.0002849971,Nitrous Oxide,TON
+37049,0.01376783,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.02501492,Ammonia,TON
+37045,0.008420528,Sulfate Portion of PM2.5-PRI,TON
+37045,5.281234,Xylenes (Mixed Isomers),LB
+37045,0.003176008,"Benzo[g,h,i,]Perylene",LB
+37045,0.03966722,Methane,TON
+37045,1.494898,Carbon Monoxide,TON
+37047,1.742339,"1,3-Butadiene",LB
+37047,14.104722,Hexane,LB
+37047,0.1025764,Phenanthrene,LB
+37047,0.009138996,Nitrous Oxide,TON
+37047,3.568545e-05,Nitrate portion of PM2.5-PRI,TON
+37047,0.04989722,PM10 Primary (Filt + Cond),TON
+37041,0.06904924,Formaldehyde,LB
+37041,0.19959832,Benzene,LB
+37041,0.06709816,Acetaldehyde,LB
+37041,0.09943638,Carbon Monoxide,TON
+37041,3.550803e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37041,5.260923e-07,Nitrate portion of PM2.5-PRI,TON
+37031,1025.066,Carbon Dioxide,TON
+37031,0.005042469,Elemental Carbon portion of PM2.5-PRI,TON
+37031,292.6236,Toluene,LB
+37031,0.3384806,Acenaphthylene,LB
+37031,0.0003690438,"Dibenzo[a,h]Anthracene",LB
+37031,0.02708662,Manganese,LB
+37031,0.004520592,Arsenic,LB
+37031,0.05928064,Methane,TON
+37029,1.1604262,Propionaldehyde,LB
+37029,21.09898,Formaldehyde,LB
+37029,4.078434e-06,Mercury,LB
+37029,0.04531926,PM25-Primary from certain diesel engines,TON
+37029,0.02880678,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.06594845,PM10 Primary (Filt + Cond),TON
+37019,345.2114,Formaldehyde,LB
+37019,169.7146,Carbon Dioxide,TON
+37019,0.003060404,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.1536239,"1,3-Butadiene",LB
+37019,0.00012970732,"Benzo[g,h,i,]Perylene",LB
+37007,1.677064,Acrolein,LB
+37007,0.5466814,Hexane,LB
+37007,0.001078263,"Benzo[g,h,i,]Perylene",LB
+37007,0.0014095952,Arsenic,LB
+37003,1690.349,Toluene,LB
+37003,0.0005343104,Mercury,LB
+37003,37.2977,Acetaldehyde,LB
+37003,0.07118331,Methane,TON
+37003,0.03024084,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.09073665,PM10 Primary (Filt + Cond),TON
+37065,2.809338,Acetaldehyde,LB
+37065,0.0476992,Phenanthrene,LB
+37065,78.9131,Carbon Dioxide,TON
+37065,24.67752,Xylenes (Mixed Isomers),LB
+37065,1.920356e-06,Chromium (VI),LB
+37065,0.004771206,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,0.02445892,"Benzo[g,h,i,]Perylene",LB
+37061,0.006040948,Benz[a]Anthracene,LB
+37061,0.017964536,Acenaphthene,LB
+37061,11.17955,Carbon Monoxide,TON
+37057,1.173259,Naphthalene,LB
+37057,97.08484,Toluene,LB
+37057,0.01960563,Anthracene,LB
+37057,0.008571996,Chrysene,LB
+37057,6.87487,Formaldehyde,LB
+37055,18.671308,Propionaldehyde,LB
+37055,0.0841907,Benzo[b]Fluoranthene,LB
+37055,0.0443164,Nickel,LB
+37055,0.4025635,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.0380372,Sulfur Dioxide,TON
+37051,0.16551954,"Benzo[g,h,i,]Perylene",LB
+37051,61.19742,"2,2,4-Trimethylpentane",LB
+37051,0.04461128,Benz[a]Anthracene,LB
+37051,0.012643934,Arsenic,LB
+37051,0.1490985,Acenaphthene,LB
+37051,0.1194051,PM2.5 Primary (Filt + Cond),TON
+37047,5.392954,Carbon Monoxide,TON
+37047,0.01220517,PM2.5 Primary (Filt + Cond),TON
+37047,0.002739254,Benzo[a]Pyrene,LB
+37047,0.00011402026,"Dibenzo[a,h]Anthracene",LB
+37047,4.250038,Benzene,LB
+37047,2354.272,Toluene,LB
+37047,0.017921952,Nickel,LB
+37047,1.8708878,Phenanthrene,LB
+37047,0.696717,Fluorene,LB
+37047,17.862634,Naphthalene,LB
+37047,0.04840055,Sulfur Dioxide,TON
+37033,0.0247195,Acrolein,LB
+37033,0.0007458524,Benzo[a]Pyrene,LB
+37033,6.722804e-05,Manganese,LB
+37033,0.0015528828,Acenaphthene,LB
+37033,0.0007385109,PM2.5 Primary (Filt + Cond),TON
+37031,1.457776,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,2.312308,Sulfur Dioxide,TON
+37031,105.44538,Styrene,LB
+37069,0.00429612,Acenaphthylene,LB
+37069,7.239911e-06,Nitrate portion of PM2.5-PRI,TON
+37069,0.00125917,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.0002135484,Mercury,LB
+37047,0.0008823016,Elemental Carbon portion of PM2.5-PRI,TON
+37047,2.13007e-05,Chromium (VI),LB
+37047,0.002581354,Fluoranthene,LB
+37171,2.619678,Hexane,LB
+37105,0.03362498,Nitrogen Oxides,TON
+37105,0.001260362,PM2.5 Primary (Filt + Cond),TON
+37105,0.0002678084,Anthracene,LB
+37105,3.424496e-06,Chromium (VI),LB
+37105,0.003058108,Methane,TON
+37105,0.4751184,Ethyl Benzene,LB
+37105,1.7654408,Xylenes (Mixed Isomers),LB
+37105,0.003591748,Acenaphthylene,LB
+37105,0.0007727962,Acenaphthene,LB
+37105,0.004458688,Phenanthrene,LB
+37105,0.01443341,PM10 Primary (Filt + Cond),TON
+37105,0.001450072,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.0004037348,Chromium (VI),LB
+37197,394.7154,"2,2,4-Trimethylpentane",LB
+37191,0.000681888,Propionaldehyde,LB
+37191,7.877578e-05,Fluoranthene,LB
+37191,5.312512e-05,Benzo[a]Pyrene,LB
+37191,8.158352e-06,Arsenic,LB
+37191,6.176481e-05,Sulfur Dioxide,TON
+37191,16126.526,Hexane,LB
+37191,45243.28,Xylenes (Mixed Isomers),LB
+37191,18.253904,"Benzo[g,h,i,]Perylene",LB
+37191,2.714236,Arsenic,LB
+37191,6894.126,Acetaldehyde,LB
+37191,109.91918,Phenanthrene,LB
+37191,1.726357,Elemental Carbon portion of PM2.5-PRI,TON
+37191,5.833112,Sulfur Dioxide,TON
+37189,7.067778,Toluene,LB
+37189,2.708402,Hexane,LB
+37189,0.8205394,Pyrene,LB
+37189,0.6094698,Acenaphthylene,LB
+37189,0.0889339,Chrysene,LB
+37189,0.0016651328,"Dibenzo[a,h]Anthracene",LB
+37189,10.244908,Benzene,LB
+37189,47.15536,Acetaldehyde,LB
+37189,0.3624686,Acenaphthene,LB
+37189,3.939165,Carbon Monoxide,TON
+37189,0.2349385,PM10-Primary from certain diesel engines,TON
+37189,0.33398,PM10 Primary (Filt + Cond),TON
+37189,0.6338958,Volatile Organic Compounds,TON
+37189,1.564784e-05,"Dibenzo[a,h]Anthracene",LB
+37189,0.6699216,Benzene,LB
+37189,4.372073,Carbon Dioxide,TON
+37189,0.02265135,Nitrogen Oxides,TON
+37189,0.01749105,Styrene,LB
+37189,0.001273008,Pyrene,LB
+37189,0.0006817184,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.0003359558,Chrysene,LB
+37181,0.005104406,Anthracene,LB
+37181,0.00529586,Benzo[b]Fluoranthene,LB
+37181,11.869562,Formaldehyde,LB
+37181,14.874162,Benzene,LB
+37181,0.003930052,Nickel,LB
+37181,585.5598,Carbon Dioxide,TON
+37081,0.002245228,"Dibenzo[a,h]Anthracene",LB
+37081,40.1561,"2,2,4-Trimethylpentane",LB
+37081,0.06683794,Arsenic,LB
+37081,2.528432,Volatile Organic Compounds,TON
+37011,0.5038852,Hexane,LB
+37141,0.912222,Acrolein,LB
+37141,0.0004335088,"Dibenzo[a,h]Anthracene",LB
+37141,13.96018,Carbon Monoxide,TON
+37141,0.0043667,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.0007576012,Sulfate Portion of PM2.5-PRI,TON
+37199,0.0007361799,Sulfur Dioxide,TON
+37199,1.5408174,Ethyl Benzene,LB
+37199,0.6988362,Formaldehyde,LB
+37199,0.0001343106,Nickel,LB
+37199,0.002262922,Acenaphthene,LB
+37199,0.001613176,Nitrous Oxide,TON
+37197,0.002220462,"Benzo[g,h,i,]Perylene",LB
+37197,0.7340608,Fluoranthene,LB
+37197,0.000556786,"Dibenzo[a,h]Anthracene",LB
+37197,0.008755584,Arsenic,LB
+37197,0.009884716,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,2.13504,"2,2,4-Trimethylpentane",LB
+37187,0.011218868,"1,3-Butadiene",LB
+37187,0.0842133,Hexane,LB
+37187,0.0019424044,Propionaldehyde,LB
+37187,0.0706216,"2,2,4-Trimethylpentane",LB
+37187,4.251026e-05,Benz[a]Anthracene,LB
+37187,3.871536e-06,Nickel,LB
+37187,0.0002046482,Fluorene,LB
+37187,1.99694,Carbon Dioxide,TON
+37187,1.29269e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37187,3.988743e-05,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.001727899,Volatile Organic Compounds,TON
+37183,0.018034166,Benzo[b]Fluoranthene,LB
+37183,0.02311494,Fluoranthene,LB
+37183,0.018034166,Benzo[k]Fluoranthene,LB
+37183,21.59112,Formaldehyde,LB
+37183,39.6038,Benzene,LB
+37183,0.018294222,Nickel,LB
+37183,0.0280528,Arsenic,LB
+37183,147.96806,Acetaldehyde,LB
+37183,7.563468,Ethyl Benzene,LB
+37183,0.07882958,Sulfur Dioxide,TON
+37181,1.241364,Acetaldehyde,LB
+37181,0.004575912,PM2.5 Primary (Filt + Cond),TON
+37181,0.00212437,Sulfur Dioxide,TON
+37181,0.0001376377,Sulfate Portion of PM2.5-PRI,TON
+37179,0.008029973,PM2.5 Primary (Filt + Cond),TON
+37179,0.5824606,Styrene,LB
+37179,29.9515,"2,2,4-Trimethylpentane",LB
+37179,11.22824,Carbon Monoxide,TON
+37007,1.1515682e-05,Mercury,LB
+37007,8.7622,Hexane,LB
+37007,0.0014735984,Benzo[k]Fluoranthene,LB
+37007,0.0015068392,Chrysene,LB
+37007,4.020936,Ethyl Benzene,LB
+37007,5.340672,Hexane,LB
+37007,0.010538244,Pyrene,LB
+37007,0.00547277,"Benzo[g,h,i,]Perylene",LB
+37007,2.043892,Formaldehyde,LB
+37007,0.0016688312,Benz[a]Anthracene,LB
+37013,3.671898,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.7623494,Nickel,LB
+37013,29.2029,Fluorene,LB
+37013,1.247412,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.6572148,Anthracene,LB
+37003,0.5905878,Acenaphthene,LB
+37003,1.3545676,Fluorene,LB
+37003,7.612224,Carbon Monoxide,TON
+37003,0.1014215,Sulfate Portion of PM2.5-PRI,TON
+37001,2.892052,Acrolein,LB
+37001,1.8602054,Propionaldehyde,LB
+37001,0.1079405,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.02458082,Volatile Organic Compounds,TON
+37171,1.3262764,Hexane,LB
+37171,0.002929796,Benzo[a]Pyrene,LB
+37171,0.0018947586,Nickel,LB
+37171,0.0011519858,Acenaphthene,LB
+37171,0.01579555,PM10 Primary (Filt + Cond),TON
+37171,0.0001289385,Sulfate Portion of PM2.5-PRI,TON
+37145,0.000386745,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.2456042,"2,2,4-Trimethylpentane",LB
+37145,0.0005713754,Nitrous Oxide,TON
+37145,0.001247062,Ammonia,TON
+37145,1.386766e-06,Nitrate portion of PM2.5-PRI,TON
+37141,0.19681742,Ethyl Benzene,LB
+37141,0.3334296,Hexane,LB
+37141,0.988571,Benzene,LB
+37141,0.000682485,Fluorene,LB
+37141,0.001859573,Sulfur Dioxide,TON
+37141,0.02357844,Volatile Organic Compounds,TON
+37131,1.0250408,Ethyl Benzene,LB
+37099,0.010144098,Pyrene,LB
+37099,0.2711472,Naphthalene,LB
+37099,0.002733869,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.006032113,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.3299873,Volatile Organic Compounds,TON
+37101,6.975886,Hexane,LB
+37101,0.572726,Volatile Organic Compounds,TON
+37097,19.315192,Hexane,LB
+37097,42.97028,Xylenes (Mixed Isomers),LB
+37097,0.14562324,"Benzo[g,h,i,]Perylene",LB
+37097,0.09653904,Acenaphthylene,LB
+37097,0.02130222,Chrysene,LB
+37171,2.102424,"1,3-Butadiene",LB
+37171,0.004481954,Manganese,LB
+37171,0.01327729,Methane,TON
+37171,7.5693,Carbon Monoxide,TON
+37171,0.00253846,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.007107758,Organic Carbon portion of PM2.5-PRI,TON
+37169,34.30568,Hexane,LB
+37169,0.011753866,Benzo[b]Fluoranthene,LB
+37169,0.011753866,Benzo[k]Fluoranthene,LB
+37169,1.3778914e-05,Mercury,LB
+37169,0.2043894,Phenanthrene,LB
+37169,1.9507256,Naphthalene,LB
+37169,59.35132,Carbon Dioxide,TON
+37149,27.0199,Ethyl Benzene,LB
+37149,0.07803248,Pyrene,LB
+37149,0.14146266,"Benzo[g,h,i,]Perylene",LB
+37149,0.02981284,Benzo[k]Fluoranthene,LB
+37149,0.0241876,Chrysene,LB
+37149,0.02672108,Benz[a]Anthracene,LB
+37149,0.2402894,Phenanthrene,LB
+37149,0.0001564431,Nitrate portion of PM2.5-PRI,TON
+37149,2.628039,Nitrogen Oxides,TON
+37149,0.02931875,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.001132839,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.0006368806,Benzo[k]Fluoranthene,LB
+37141,0.7012094,"2,2,4-Trimethylpentane",LB
+37141,6.612662e-05,Manganese,LB
+37141,1.2263086e-06,Mercury,LB
+37141,0.0018961918,Fluorene,LB
+37141,8.132017,Carbon Dioxide,TON
+37141,0.0001513697,Nitrous Oxide,TON
+37141,0.0006091562,Organic Carbon portion of PM2.5-PRI,TON
+37141,3.310768e-05,Sulfate Portion of PM2.5-PRI,TON
+37137,0.2097919,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.7381318,Chrysene,LB
+37137,3089.062,Benzene,LB
+37137,0.44968,Manganese,LB
+37133,107.47894,Xylenes (Mixed Isomers),LB
+37129,0.7459816,Chrysene,LB
+37129,0.9492108,Benzo[a]Pyrene,LB
+37129,2151.92,"2,2,4-Trimethylpentane",LB
+37129,15.49305,Phenanthrene,LB
+37129,1.993166,Methane,TON
+37129,2.832175,Ammonia,TON
+37129,6.204069,PM10 Primary (Filt + Cond),TON
+37121,15.700686,Ethyl Benzene,LB
+37121,0.5358638,Styrene,LB
+37121,0.005827084,Benzo[k]Fluoranthene,LB
+37121,0.005895122,Chrysene,LB
+37121,0.0006121706,Nickel,LB
+37121,0.02253787,Methane,TON
+37121,0.6361093,Nitrogen Oxides,TON
+37121,0.008516411,PM2.5 Primary (Filt + Cond),TON
+37121,0.0001538009,Sulfate Portion of PM2.5-PRI,TON
+37117,0.29569,Hexane,LB
+37117,6.231796e-06,Chromium (VI),LB
+37117,0.0561115,Acenaphthylene,LB
+37117,11.785278,Formaldehyde,LB
+37117,0.0333908,Acenaphthene,LB
+37117,0.0931894,Phenanthrene,LB
+37117,1.08527,Carbon Monoxide,TON
+37117,0.0008154259,Sulfur Dioxide,TON
+37117,1.4125952e-06,Chromium (VI),LB
+37117,0.000949523,Benz[a]Anthracene,LB
+37117,0.001554108,Sulfur Dioxide,TON
+37117,1025.0054,"1,3-Butadiene",LB
+37117,2.252668,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,2379.342,Formaldehyde,LB
+37117,0.5234492,Nickel,LB
+37117,225.1601,Nitrogen Oxides,TON
+37101,0.01240145,Benzo[k]Fluoranthene,LB
+37101,1.129855,Methane,TON
+37101,3.425102,PM2.5 Primary (Filt + Cond),TON
+37101,0.1168367,Sulfate Portion of PM2.5-PRI,TON
+37091,0.07953355,Ammonia,TON
+37091,0.8739619,Volatile Organic Compounds,TON
+37091,7.879608,Propionaldehyde,LB
+37091,13.12663,Xylenes (Mixed Isomers),LB
+37091,6.5028e-05,Chromium (VI),LB
+37091,4.300532,"2,2,4-Trimethylpentane",LB
+37103,0.0013007832,Anthracene,LB
+37103,0.0011585526,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.0007049944,Benzo[b]Fluoranthene,LB
+37103,0.0007049944,Benzo[k]Fluoranthene,LB
+37103,0.0006104502,Chrysene,LB
+37103,0.4884392,Formaldehyde,LB
+37103,1.2740062e-05,Mercury,LB
+37103,0.003020988,Fluorene,LB
+37103,0.7685005,Carbon Monoxide,TON
+37103,3.689382e-06,Nitrate portion of PM2.5-PRI,TON
+37103,0.003572673,PM10 Primary (Filt + Cond),TON
+37095,0.01429617,PM10 Primary (Filt + Cond),TON
+37095,0.0003468935,Sulfur Dioxide,TON
+37095,0.02134672,Volatile Organic Compounds,TON
+37095,0.12668978,Ethyl Benzene,LB
+37095,0.05120496,Styrene,LB
+37095,0.009836826,Benz[a]Anthracene,LB
+37095,0.000594344,Nickel,LB
+37093,46.36674,Toluene,LB
+37093,0.004787858,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.2130761,Methane,TON
+37093,35.26142,Carbon Monoxide,TON
+37093,0.5797799,PM10-Primary from certain diesel engines,TON
+37093,0.03422113,Sulfur Dioxide,TON
+37089,4.986394,Styrene,LB
+37089,18.963804,Propionaldehyde,LB
+37089,1.6423618,Fluoranthene,LB
+37089,0.05320294,Benzo[a]Pyrene,LB
+37089,0.00102363,Nitrate portion of PM2.5-PRI,TON
+37083,0.234728,Pyrene,LB
+37083,25.80326,Formaldehyde,LB
+37083,0.015905314,Benzo[a]Pyrene,LB
+37083,0.6556164,"2,2,4-Trimethylpentane",LB
+37083,0.05400566,Benz[a]Anthracene,LB
+37083,0.1267475,PM25-Primary from certain diesel engines,TON
+37083,0.09092642,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.0002769452,Nitrate portion of PM2.5-PRI,TON
+37083,1.6683196,Propionaldehyde,LB
+37083,0.0003801402,"Benzo[g,h,i,]Perylene",LB
+37083,0.12883626,Fluoranthene,LB
+37083,35.26404,Formaldehyde,LB
+37083,8.527728e-05,"Dibenzo[a,h]Anthracene",LB
+37083,0.019693472,Benz[a]Anthracene,LB
+37083,0.010393636,Nickel,LB
+37083,0.02535178,Methane,TON
+37083,0.3416224,Nitrogen Oxides,TON
+37083,0.002258781,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.002622118,Sulfur Dioxide,TON
+37077,0.014911272,Anthracene,LB
+37077,31.97204,Xylenes (Mixed Isomers),LB
+37077,0.006030128,Benzo[b]Fluoranthene,LB
+37077,0.02564674,Fluoranthene,LB
+37077,5.677036,Formaldehyde,LB
+37077,0.00586085,Benz[a]Anthracene,LB
+37077,0.007318385,Ammonia,TON
+37077,0.005006726,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.0003924822,Sulfate Portion of PM2.5-PRI,TON
+37077,0.2508711,Volatile Organic Compounds,TON
+37053,0.764278,Acrolein,LB
+37053,1.0727098,Naphthalene,LB
+37053,0.0001230685,Nitrate portion of PM2.5-PRI,TON
+37197,0.3026179,Carbon Monoxide,TON
+37197,0.0132458,Volatile Organic Compounds,TON
+37197,0.04870036,Propionaldehyde,LB
+37197,0.0013068464,"Benzo[g,h,i,]Perylene",LB
+37197,0.000937212,Acenaphthylene,LB
+37197,0.00019353294,Chrysene,LB
+37197,0.3889884,Formaldehyde,LB
+37193,0.8105766,Anthracene,LB
+37193,4.324462,Acenaphthylene,LB
+37193,687.3184,"2,2,4-Trimethylpentane",LB
+37193,0.2542764,Benz[a]Anthracene,LB
+37193,0.06191666,Nickel,LB
+37193,0.8887671,PM10 Primary (Filt + Cond),TON
+37193,0.104129,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.008914906,Sulfate Portion of PM2.5-PRI,TON
+37191,0.0012481962,Fluoranthene,LB
+37191,0.003303028,Acenaphthylene,LB
+37191,0.808373,"2,2,4-Trimethylpentane",LB
+37191,0.00221012,Manganese,LB
+37191,0.0013471076,Arsenic,LB
+37191,0.00636302,Methane,TON
+37191,0.00107168,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.009258917,PM10 Primary (Filt + Cond),TON
+37191,7.124769e-05,Sulfate Portion of PM2.5-PRI,TON
+37187,30.19872,Styrene,LB
+37187,2.181368,Pyrene,LB
+37187,0.4378386,Benzo[b]Fluoranthene,LB
+37187,1.913019,Fluoranthene,LB
+37187,5.901694,Acenaphthylene,LB
+37187,0.6414054,Benzo[a]Pyrene,LB
+37187,67.23382,Naphthalene,LB
+37179,6.554666,Hexane,LB
+37179,0.004190384,Benzo[k]Fluoranthene,LB
+37179,0.01278953,Arsenic,LB
+37179,112.26428,Acetaldehyde,LB
+37179,28.27914,Naphthalene,LB
+37179,0.1186619,Methane,TON
+37171,9.588332,Pyrene,LB
+37171,0.02220724,Benzo[k]Fluoranthene,LB
+37171,7.042716,Acenaphthylene,LB
+37171,198.45304,Benzene,LB
+37171,58214.92,Carbon Dioxide,TON
+37171,0.4923551,Sulfur Dioxide,TON
+37171,15.716034,Benzene,LB
+37171,1985.801,Carbon Dioxide,TON
+37171,0.4927082,Anthracene,LB
+37149,0.4239674,Fluoranthene,LB
+37149,0.091495,Benzo[k]Fluoranthene,LB
+37149,1.5683286,Phenanthrene,LB
+37149,0.1987721,Methane,TON
+37149,81.01228,Carbon Monoxide,TON
+37149,911.0502,Ethyl Benzene,LB
+37149,201.5938,Benzene,LB
+37137,2.519857,Volatile Organic Compounds,TON
+37137,0.03483198,Benzo[b]Fluoranthene,LB
+37137,0.03623504,Chrysene,LB
+37137,0.02565872,Manganese,LB
+37137,3.700252,Nitrogen Oxides,TON
+37135,7.302936,Ethyl Benzene,LB
+37135,7.178334e-05,Mercury,LB
+37135,0.08295986,Phenanthrene,LB
+37135,0.006056909,Methane,TON
+37135,7.027684,Carbon Monoxide,TON
+37135,0.00940472,Ammonia,TON
+37135,0.6914734,Nitrogen Oxides,TON
+37135,0.05172666,PM10 Primary (Filt + Cond),TON
+37135,0.02582682,Pyrene,LB
+37135,7.160736e-06,Chromium (VI),LB
+37135,0.0239535,"Benzo[g,h,i,]Perylene",LB
+37135,0.02266136,Fluoranthene,LB
+37133,12567.09,Carbon Dioxide,TON
+37133,1.811955,PM25-Primary from certain diesel engines,TON
+37133,1.976152,PM2.5 Primary (Filt + Cond),TON
+37133,2.519042,Anthracene,LB
+37133,0.16381924,Benzo[b]Fluoranthene,LB
+37129,0.07783487,PM2.5 Primary (Filt + Cond),TON
+37129,0.02208144,Sulfur Dioxide,TON
+37129,12.53539,Propionaldehyde,LB
+37129,30.13518,Naphthalene,LB
+37125,0.001265207,Nitrous Oxide,TON
+37125,1.2877688,Propionaldehyde,LB
+37125,2.373796,Xylenes (Mixed Isomers),LB
+37125,8.396534e-06,Chromium (VI),LB
+37125,0.017684238,Benzo[a]Pyrene,LB
+37125,0.01620073,Manganese,LB
+37125,11.501946,Acetaldehyde,LB
+37125,0.02054476,Methane,TON
+37123,0.03702316,Anthracene,LB
+37123,0.00208965,Benzo[b]Fluoranthene,LB
+37123,0.07778808,Fluoranthene,LB
+37123,0.0008658188,Arsenic,LB
+37123,0.03506118,Acenaphthene,LB
+37123,0.12902542,Phenanthrene,LB
+37123,0.0001226573,Nitrate portion of PM2.5-PRI,TON
+37123,0.05457783,PM2.5 Primary (Filt + Cond),TON
+37121,1.0840632,Pyrene,LB
+37121,4.518345,Nitrogen Oxides,TON
+37123,54.92522,Formaldehyde,LB
+37123,8.310426e-06,Mercury,LB
+37123,1.8502642,Ethyl Benzene,LB
+37123,4.542174,Acrolein,LB
+37123,3.269438,Toluene,LB
+37119,0.4913074,Phenanthrene,LB
+37119,0.03537132,Manganese,LB
+37117,6676.666,Toluene,LB
+37117,1181.0762,Hexane,LB
+37117,23.28606,Volatile Organic Compounds,TON
+37113,83.79418,Xylenes (Mixed Isomers),LB
+37113,0.004624252,"Dibenzo[a,h]Anthracene",LB
+37113,12.107576,Phenanthrene,LB
+37113,69.09323,Carbon Monoxide,TON
+37113,0.02133455,Nitrous Oxide,TON
+37105,0.2251402,Fluoranthene,LB
+37105,0.0433262,Chrysene,LB
+37105,0.013095108,Manganese,LB
+37105,3.404974,Naphthalene,LB
+37105,0.07894448,PM25-Primary from certain diesel engines,TON
+37091,46.621,Formaldehyde,LB
+37091,0.5053478,Phenanthrene,LB
+37091,1.956658,Carbon Monoxide,TON
+37091,0.0003334715,Nitrate portion of PM2.5-PRI,TON
+37091,0.1396611,PM10 Primary (Filt + Cond),TON
+37091,0.001870534,Sulfate Portion of PM2.5-PRI,TON
+37093,5093.242,Ethyl Benzene,LB
+37093,7.292576,Anthracene,LB
+37093,14.115536,Pyrene,LB
+37093,18770.454,Xylenes (Mixed Isomers),LB
+37093,0.004462154,Chromium (VI),LB
+37093,4.115787,Nitrous Oxide,TON
+37093,1.200759,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.8150323,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,1.8780306,Benzo[k]Fluoranthene,LB
+37093,2.004402,Chrysene,LB
+37093,6179.646,"2,2,4-Trimethylpentane",LB
+37079,15.36666,"1,3-Butadiene",LB
+37079,1.2741864,Anthracene,LB
+37079,2.627128,Acenaphthylene,LB
+37079,2907.812,Carbon Dioxide,TON
+37079,0.5070092,PM10 Primary (Filt + Cond),TON
+37073,0.06466336,Benzene,LB
+37073,0.0005861044,Manganese,LB
+37073,0.4532746,Manganese,LB
+37073,1.579226,Nitrous Oxide,TON
+37073,7842.24,Xylenes (Mixed Isomers),LB
+37073,0.001737894,Chromium (VI),LB
+37073,86.46312,Styrene,LB
+37073,503.8256,"1,3-Butadiene",LB
+37073,2554.986,"2,2,4-Trimethylpentane",LB
+37073,60.52266,Volatile Organic Compounds,TON
+37079,5274.05,Toluene,LB
+37067,0.0008818165,Nitrous Oxide,TON
+37067,0.0006810642,Nitrate portion of PM2.5-PRI,TON
+37067,0.1680514,PM10 Primary (Filt + Cond),TON
+37067,3.177756,Xylenes (Mixed Isomers),LB
+37067,0.07690934,Chrysene,LB
+37067,22.0607,Benzene,LB
+37067,0.02010808,Acenaphthene,LB
+37067,0.04073144,Fluorene,LB
+37067,6.883617e-05,Nitrate portion of PM2.5-PRI,TON
+37067,0.3517525,Volatile Organic Compounds,TON
+37067,0.012370322,Benzo[k]Fluoranthene,LB
+37067,14.299234,"2,2,4-Trimethylpentane",LB
+37067,0.02160016,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.04142196,Nickel,LB
+37065,0.012308212,Arsenic,LB
+37065,1.93022,Fluorene,LB
+37065,0.003763701,Nitrate portion of PM2.5-PRI,TON
+37065,0.3096348,Organic Carbon portion of PM2.5-PRI,TON
+37065,1.682563,PM10 Primary (Filt + Cond),TON
+37065,0.03811977,Sulfur Dioxide,TON
+37065,0.013079508,"Benzo[g,h,i,]Perylene",LB
+37065,0.2184888,Benzo[a]Pyrene,LB
+37059,3.192131,PM2.5 Primary (Filt + Cond),TON
+37059,105.4672,Volatile Organic Compounds,TON
+37059,108.16636,Acrolein,LB
+37059,13126.874,Xylenes (Mixed Isomers),LB
+37059,2.701078,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,1.7626962,Benz[a]Anthracene,LB
+37059,1.0911562,Arsenic,LB
+37059,2.636435,Methane,TON
+37043,0.03333422,Hexane,LB
+37043,0.004594844,Anthracene,LB
+37043,0.00984011,Fluoranthene,LB
+37043,1.3268022,Formaldehyde,LB
+37043,0.001189391,Elemental Carbon portion of PM2.5-PRI,TON
+37043,2.872136e-05,Nitrous Oxide,TON
+37043,5.30706e-05,Arsenic,LB
+37043,0.001051824,Nitrate portion of PM2.5-PRI,TON
+37043,0.8189794,Pyrene,LB
+37043,6.912412,Xylenes (Mixed Isomers),LB
+37043,0.004493556,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.0176474,Benzo[b]Fluoranthene,LB
+37043,0.0233909,Manganese,LB
+37043,0.00487617,Arsenic,LB
+37043,0.2156393,PM10-Primary from certain diesel engines,TON
+37043,0.1983801,PM25-Primary from certain diesel engines,TON
+37037,4.069126,Fluoranthene,LB
+37037,0.756847,Chrysene,LB
+37037,5.367988,Pyrene,LB
+37037,614.0582,Formaldehyde,LB
+37037,0.19427944,Manganese,LB
+37037,2.179986,PM10 Primary (Filt + Cond),TON
+37035,39.00528,Ethyl Benzene,LB
+37035,29.40468,Hexane,LB
+37035,63.67096,Propionaldehyde,LB
+37035,1169.5302,Formaldehyde,LB
+37035,0.7026729,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.1316437,Sulfate Portion of PM2.5-PRI,TON
+37035,0.0282872,Nitrous Oxide,TON
+37035,108.5429,Nitrogen Oxides,TON
+37035,1.458843,Organic Carbon portion of PM2.5-PRI,TON
+37027,1.2709322,Phenanthrene,LB
+37027,0.07252215,Organic Carbon portion of PM2.5-PRI,TON
+37027,11.37365,Benzene,LB
+37027,0.013644284,Nickel,LB
+37027,52.4584,Acetaldehyde,LB
+37027,34.16304,Xylenes (Mixed Isomers),LB
+37027,17.888866,Ethyl Benzene,LB
+37027,35.06554,Toluene,LB
+37027,13.230244,"2,2,4-Trimethylpentane",LB
+37027,0.06048261,Sulfate Portion of PM2.5-PRI,TON
+37023,51.56844,Benzene,LB
+37023,2.680334,PM10-Primary from certain diesel engines,TON
+37023,18.062414,"1,3-Butadiene",LB
+37023,2.067228,Anthracene,LB
+37159,0.0004182418,Nitrate portion of PM2.5-PRI,TON
+37159,0.02123652,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.007189288,Sulfate Portion of PM2.5-PRI,TON
+37159,4.174248,Styrene,LB
+37159,0.003532486,"Benzo[g,h,i,]Perylene",LB
+37149,0.0272482,Chrysene,LB
+37149,0.005307912,Arsenic,LB
+37149,0.07836066,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.001525637,Nitrous Oxide,TON
+37153,375.0234,Ethyl Benzene,LB
+37153,2093.248,Toluene,LB
+37153,0.542503,Anthracene,LB
+37153,0.5408434,"Benzo[g,h,i,]Perylene",LB
+37153,0.00415187,Mercury,LB
+37153,146.151,Carbon Monoxide,TON
+37153,0.6844729,PM10 Primary (Filt + Cond),TON
+37147,6.43976,Pyrene,LB
+37147,0.03447918,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.2743952,Styrene,LB
+37147,0.475784,Hexane,LB
+37147,0.001914426,Nickel,LB
+37147,8.255644,Acetaldehyde,LB
+37015,0.4004976,Toluene,LB
+37015,4.302832e-05,Benzo[k]Fluoranthene,LB
+37015,0.000665585,Phenanthrene,LB
+37015,0.0002472106,Fluorene,LB
+37015,0.00633943,Naphthalene,LB
+37199,0.01431233,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.001565543,Nitrate portion of PM2.5-PRI,TON
+37191,1110.973,Hexane,LB
+37191,6.21711,Acenaphthylene,LB
+37191,0.3671836,Chrysene,LB
+37191,0.4851092,Benzo[a]Pyrene,LB
+37187,0.000718207,Fluoranthene,LB
+37187,0.0009201824,Manganese,LB
+37187,4.620604e-05,Mercury,LB
+37187,0.0005761298,Nickel,LB
+37187,0.0008543942,Fluorene,LB
+37187,0.000889478,Nitrous Oxide,TON
+37187,2.868932e-06,Nitrate portion of PM2.5-PRI,TON
+37187,0.0003655069,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.06189458,Ammonia,TON
+37187,9.016772,Acrolein,LB
+37195,6.530604,Acenaphthylene,LB
+37195,0.2075892,Nickel,LB
+37187,0.03596038,Xylenes (Mixed Isomers),LB
+37187,2.40833e-07,Arsenic,LB
+37187,1.517456e-05,Acenaphthene,LB
+37187,2.148076e-06,Ammonia,TON
+37187,1.097739e-05,PM10 Primary (Filt + Cond),TON
+37187,1.923258e-07,Sulfate Portion of PM2.5-PRI,TON
+37187,0.0002855427,Volatile Organic Compounds,TON
+37183,304.0278,Formaldehyde,LB
+37183,0.006920526,"Dibenzo[a,h]Anthracene",LB
+37183,2.940322,Styrene,LB
+37183,7.013014,"1,3-Butadiene",LB
+37183,2.231302,Pyrene,LB
+37183,30.97874,Xylenes (Mixed Isomers),LB
+37183,0.6985896,Acenaphthene,LB
+37183,0.1403185,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,1.416623,Volatile Organic Compounds,TON
+37181,2.776472e-05,Mercury,LB
+37179,14.449792,Acetaldehyde,LB
+37179,0.0011946286,Acenaphthene,LB
+37179,0.12793966,Acrolein,LB
+37181,0.5331034,Anthracene,LB
+37181,430.1924,"2,2,4-Trimethylpentane",LB
+37181,0.11448786,Manganese,LB
+37181,0.04822804,Nickel,LB
+37181,1.2646648,Fluorene,LB
+37181,0.1209662,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.2549002,PM2.5 Primary (Filt + Cond),TON
+37181,0.006451472,Sulfate Portion of PM2.5-PRI,TON
+37179,3.901632,Pyrene,LB
+37179,5151.018,Xylenes (Mixed Isomers),LB
+37179,345.3494,"1,3-Butadiene",LB
+37179,0.01871139,"Dibenzo[a,h]Anthracene",LB
+37179,526.9964,Carbon Monoxide,TON
+37177,0.002752104,Manganese,LB
+37177,0.0008213449,Sulfur Dioxide,TON
+37177,0.4798462,Ethyl Benzene,LB
+37177,0.0006521904,"Benzo[g,h,i,]Perylene",LB
+37043,2.103714,Ethyl Benzene,LB
+37043,1.697e-05,Chromium (VI),LB
+37043,0.003057654,"Benzo[g,h,i,]Perylene",LB
+37043,0.0966876,Chrysene,LB
+37043,0.002046864,"Dibenzo[a,h]Anthracene",LB
+37043,0.1651159,Benz[a]Anthracene,LB
+37043,0.002688784,Arsenic,LB
+37043,27.7641,Acetaldehyde,LB
+37043,0.1902782,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.0008661275,Nitrate portion of PM2.5-PRI,TON
+37043,0.00836982,Sulfur Dioxide,TON
+37043,0.002983982,Anthracene,LB
+37043,0.0012750226,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.005091238,Fluoranthene,LB
+37037,22.90884,Hexane,LB
+37037,0.01334303,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,9.103468,Formaldehyde,LB
+37037,0.0003062,"Dibenzo[a,h]Anthracene",LB
+37037,0.0015508286,Nickel,LB
+37037,17.64379,Carbon Monoxide,TON
+37037,0.01773683,Ammonia,TON
+37037,0.008444238,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.2744846,Anthracene,LB
+37037,5.164864,Propionaldehyde,LB
+37037,0.14071386,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,121.23866,Formaldehyde,LB
+37037,0.2038073,PM10 Primary (Filt + Cond),TON
+37029,10.794456,"2,2,4-Trimethylpentane",LB
+37029,41.86566,Benzene,LB
+37029,0.06752242,Nickel,LB
+37029,192.52238,Acetaldehyde,LB
+37029,2.523826,Fluorene,LB
+37029,0.01296273,Sulfate Portion of PM2.5-PRI,TON
+37025,0.083735,Arsenic,LB
+37025,3.70665,Acenaphthene,LB
+37025,8.26592,Fluorene,LB
+37025,1.076771,Methane,TON
+37025,1.035967,Elemental Carbon portion of PM2.5-PRI,TON
+37025,1.259388,Organic Carbon portion of PM2.5-PRI,TON
+37025,34.50384,Hexane,LB
+37025,120.86936,Xylenes (Mixed Isomers),LB
+37025,0.05283522,"Benzo[g,h,i,]Perylene",LB
+37025,0.2592016,Benzo[b]Fluoranthene,LB
+37025,6.22792,Acenaphthylene,LB
+37069,12.379594,Phenanthrene,LB
+37069,152.05228,Naphthalene,LB
+37069,1.099795,PM2.5 Primary (Filt + Cond),TON
+37069,0.09405497,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.4874012,Chrysene,LB
+37067,92.68862,Propionaldehyde,LB
+37067,5.414064,Acenaphthene,LB
+37067,21.07664,Phenanthrene,LB
+37067,90192.49,Carbon Dioxide,TON
+37067,0.09100486,Nitrous Oxide,TON
+37067,0.6549968,Sulfate Portion of PM2.5-PRI,TON
+37059,0.02212618,PM10 Primary (Filt + Cond),TON
+37059,0.0004937187,Sulfate Portion of PM2.5-PRI,TON
+37059,0.09523012,Styrene,LB
+37059,0.2155534,"1,3-Butadiene",LB
+37059,0.4550938,Toluene,LB
+37059,0.0636169,Pyrene,LB
+37059,0.004364418,Benzo[a]Pyrene,LB
+37059,0.0014046372,Manganese,LB
+37065,13588.916,Xylenes (Mixed Isomers),LB
+37065,1.7743378,Chrysene,LB
+37065,2.58327,Manganese,LB
+37065,27.41096,Phenanthrene,LB
+37049,1.016161e-06,Nitrate portion of PM2.5-PRI,TON
+37049,0.0001834927,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.5733888,Ethyl Benzene,LB
+37045,15.3498,Hexane,LB
+37045,0.02335266,"Benzo[g,h,i,]Perylene",LB
+37045,0.008698587,Nitrous Oxide,TON
+37041,144.77762,Ethyl Benzene,LB
+37041,808.4724,Toluene,LB
+37041,0.0001432133,Chromium (VI),LB
+37041,0.0274515,Arsenic,LB
+37041,52.23327,Carbon Monoxide,TON
+37041,0.04027044,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.01384898,Sulfate Portion of PM2.5-PRI,TON
+37029,3681.312,Toluene,LB
+37029,1.3020646,Fluoranthene,LB
+37029,255.0936,Formaldehyde,LB
+37029,798.377,"2,2,4-Trimethylpentane",LB
+37029,937.8576,Benzene,LB
+37029,1.7872646,Fluorene,LB
+37029,218.219,Carbon Monoxide,TON
+37029,0.001347375,Nitrate portion of PM2.5-PRI,TON
+37023,60.99476,Ethyl Benzene,LB
+37023,0.03605744,"Benzo[g,h,i,]Perylene",LB
+37023,6.664238,Fluoranthene,LB
+37023,5.517078,Acenaphthylene,LB
+37023,1.8867982,Benz[a]Anthracene,LB
+37023,2.938047,Methane,TON
+37023,44956.03,Carbon Dioxide,TON
+37023,7.662881,PM10 Primary (Filt + Cond),TON
+37023,0.4160929,Methane,TON
+37023,14.32651,Carbon Monoxide,TON
+37023,0.07545099,Sulfur Dioxide,TON
+37023,4.446724,Fluoranthene,LB
+37023,0.017710884,Benzo[k]Fluoranthene,LB
+37023,646.9616,Formaldehyde,LB
+37133,90.8894,Ethyl Benzene,LB
+37133,192.7946,Toluene,LB
+37133,0.3941918,Nickel,LB
+37133,1183.2816,Acetaldehyde,LB
+37133,0.07031509,Nitrous Oxide,TON
+37133,15.56647,Volatile Organic Compounds,TON
+37133,0.02090444,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.500226,Benz[a]Anthracene,LB
+37131,1.460659,Volatile Organic Compounds,TON
+37131,8.868762,Ethyl Benzene,LB
+37131,3.431956,Styrene,LB
+37131,0.8214716,Anthracene,LB
+37131,0.009336474,"Benzo[g,h,i,]Perylene",LB
+37131,0.04344936,Benzo[b]Fluoranthene,LB
+37131,0.006062402,Benzo[k]Fluoranthene,LB
+37129,17413.328,Ethyl Benzene,LB
+37129,100494.98,Toluene,LB
+37129,64293.5,Xylenes (Mixed Isomers),LB
+37129,4.35107,Arsenic,LB
+37129,57.37856,Fluorene,LB
+37129,55.9949,PM10 Primary (Filt + Cond),TON
+37129,14.46647,PM2.5 Primary (Filt + Cond),TON
+37129,9.909586,Sulfur Dioxide,TON
+37127,0.5752786,Ethyl Benzene,LB
+37127,0.0005023106,Benzo[k]Fluoranthene,LB
+37127,0.09686668,Acenaphthylene,LB
+37127,0.0005017594,"Dibenzo[a,h]Anthracene",LB
+37127,0.4288854,"2,2,4-Trimethylpentane",LB
+37127,1.637628,Benzene,LB
+37127,0.001211364,Sulfur Dioxide,TON
+37113,0.4560746,"1,3-Butadiene",LB
+37113,14.326194,Toluene,LB
+37113,3.438072,Hexane,LB
+37113,1.608958,Carbon Monoxide,TON
+37107,108823.4,Carbon Dioxide,TON
+37107,2.639309,Nitrous Oxide,TON
+37107,3.76489,PM2.5 Primary (Filt + Cond),TON
+37091,0.2069536,Fluorene,LB
+37091,0.01458036,Sulfur Dioxide,TON
+37091,2.263054,Styrene,LB
+37091,1.6964274,Propionaldehyde,LB
+37091,352.2956,Xylenes (Mixed Isomers),LB
+37091,4.320332e-05,Chromium (VI),LB
+37091,0.0432005,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,9517.52,Carbon Monoxide,TON
+37071,19.65288,PM2.5 Primary (Filt + Cond),TON
+37071,11.222398,Manganese,LB
+37071,5.607314,Arsenic,LB
+37071,23.808,Methane,TON
+37071,800.1336,Acrolein,LB
+37071,11.60268,Chrysene,LB
+37069,5.014152,Hexane,LB
+37069,0.0017735928,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,1.072028,Acenaphthylene,LB
+37069,0.07515784,Chrysene,LB
+37069,0.02334502,Benzo[a]Pyrene,LB
+37069,5.049844,"2,2,4-Trimethylpentane",LB
+37069,18.592214,Benzene,LB
+37069,0.02658386,Nickel,LB
+37069,86.07058,Acetaldehyde,LB
+37069,0.6377152,Acenaphthene,LB
+37069,1275.367,Carbon Dioxide,TON
+37069,3.970878,Nitrogen Oxides,TON
+37069,0.0361535,Organic Carbon portion of PM2.5-PRI,TON
+37069,7.832318,Fluoranthene,LB
+37069,1.7014844,Benz[a]Anthracene,LB
+37069,28.93544,Phenanthrene,LB
+37069,1042.751,Carbon Monoxide,TON
+37069,7.277482,Ammonia,TON
+37069,839.0516,"1,3-Butadiene",LB
+37069,111.56702,Acrolein,LB
+37069,6055.564,Hexane,LB
+37069,1.793869,Sulfur Dioxide,TON
+37069,117.5232,Volatile Organic Compounds,TON
+37055,0.05011417,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.00284053,Sulfate Portion of PM2.5-PRI,TON
+37055,1654.364,Toluene,LB
+37055,0.0668487,Chrysene,LB
+37047,11.476068,Hexane,LB
+37047,26.87604,Xylenes (Mixed Isomers),LB
+37047,0.11077932,Benzo[b]Fluoranthene,LB
+37047,0.15018028,Manganese,LB
+37047,202.2204,Acetaldehyde,LB
+37047,0.1014901,Methane,TON
+37045,0.1008881,Volatile Organic Compounds,TON
+37045,0.4312874,Hexane,LB
+37045,0.17629544,Pyrene,LB
+37045,0.13367328,Fluoranthene,LB
+37045,0.09697014,Acenaphthylene,LB
+37045,0.0005152566,"Dibenzo[a,h]Anthracene",LB
+37045,0.002132498,Nickel,LB
+37045,0.007387744,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.001258434,Sulfur Dioxide,TON
+37045,9.653444,"1,3-Butadiene",LB
+37045,1.6541324,Pyrene,LB
+37045,21.90956,Xylenes (Mixed Isomers),LB
+37045,6.663841,Nitrogen Oxides,TON
+37041,0.00601249,Ethyl Benzene,LB
+37041,0.0002300386,Styrene,LB
+37041,4.39759e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,3.078374e-06,Benzo[b]Fluoranthene,LB
+37041,0.002955634,Formaldehyde,LB
+37041,1.0094786e-07,"Dibenzo[a,h]Anthracene",LB
+37041,0.0001752726,Volatile Organic Compounds,TON
+37041,1755.6734,Ethyl Benzene,LB
+37041,2.56476,Anthracene,LB
+37041,0.192223,Nickel,LB
+37041,75.59244,Nitrogen Oxides,TON
+37041,0.2260901,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.002119338,"Benzo[g,h,i,]Perylene",LB
+37037,0.0014531588,Benzo[k]Fluoranthene,LB
+37037,0.599703,Styrene,LB
+37037,2.044758e-05,Mercury,LB
+37037,0.03229542,Methane,TON
+37037,699.3596,Carbon Dioxide,TON
+37037,0.001613868,Nitrous Oxide,TON
+37037,0.1874228,PM10 Primary (Filt + Cond),TON
+37037,6.895546,"1,3-Butadiene",LB
+37037,0.5744254,Anthracene,LB
+37037,0.9304628,Fluoranthene,LB
+37037,0.00083145,Benzo[k]Fluoranthene,LB
+37037,230.7708,Formaldehyde,LB
+37037,0.03286878,Nickel,LB
+37037,4.841798,Nitrogen Oxides,TON
+37037,0.01589865,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,2.704502,Ethyl Benzene,LB
+37171,82.78298,Formaldehyde,LB
+37171,0.2397448,Acenaphthene,LB
+37171,0.5337588,Fluorene,LB
+37171,0.00101057,Nitrate portion of PM2.5-PRI,TON
+37171,3.508422,Nitrogen Oxides,TON
+37161,0.00373842,Benzo[b]Fluoranthene,LB
+37161,0.2137264,Phenanthrene,LB
+37161,0.6117886,Carbon Monoxide,TON
+37161,0.0006872694,Nitrous Oxide,TON
+37161,0.007412461,Ammonia,TON
+37145,0.006878368,"Dibenzo[a,h]Anthracene",LB
+37145,26.4185,Benzene,LB
+37145,0.002957234,Nitrate portion of PM2.5-PRI,TON
+37145,0.2726507,Organic Carbon portion of PM2.5-PRI,TON
+37145,13.072192,Propionaldehyde,LB
+37135,27.54388,Hexane,LB
+37135,10.007048,Pyrene,LB
+37135,5.309166,Acenaphthylene,LB
+37135,2.426476,Benz[a]Anthracene,LB
+37135,0.1670504,Nickel,LB
+37135,0.03744157,Nitrous Oxide,TON
+37135,4.333042,PM10 Primary (Filt + Cond),TON
+37135,0.006320812,Chrysene,LB
+37135,0.00205005,Arsenic,LB
+37135,0.02130744,Fluorene,LB
+37135,0.00543014,Methane,TON
+37135,0.8098011,Nitrogen Oxides,TON
+37135,0.008251499,Organic Carbon portion of PM2.5-PRI,TON
+37135,21.56826,Xylenes (Mixed Isomers),LB
+37143,2.448574,"1,3-Butadiene",LB
+37143,1.2876508,Acrolein,LB
+37143,0.0777456,"Benzo[g,h,i,]Perylene",LB
+37143,0.02072666,Benzo[k]Fluoranthene,LB
+37143,0.0205433,Benz[a]Anthracene,LB
+37143,0.003681782,Nickel,LB
+37143,486.6058,Carbon Dioxide,TON
+37143,0.0405396,PM10 Primary (Filt + Cond),TON
+37141,19.10412,Ethyl Benzene,LB
+37141,83.66858,Toluene,LB
+37141,0.010794688,Styrene,LB
+37141,0.05918476,"1,3-Butadiene",LB
+37141,2.579084e-07,Mercury,LB
+37141,3.215766e-06,Nickel,LB
+37141,1.050796,Carbon Dioxide,TON
+37141,4.772008e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,1.0780978,Xylenes (Mixed Isomers),LB
+37141,0.0005545768,"Benzo[g,h,i,]Perylene",LB
+37141,0.00202337,Acenaphthylene,LB
+37133,22.53702,Hexane,LB
+37133,9.74896,Pyrene,LB
+37133,59.93274,Xylenes (Mixed Isomers),LB
+37133,0.05665454,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,2.408534,Benz[a]Anthracene,LB
+37133,84.4691,Benzene,LB
+37133,0.4548324,Manganese,LB
+37133,6.589636,Fluorene,LB
+37133,3.838124,PM25-Primary from certain diesel engines,TON
+37133,0.02371239,Nitrous Oxide,TON
+37133,5.821309,PM10 Primary (Filt + Cond),TON
+37133,0.5723708,Formaldehyde,LB
+37133,0.0002196406,Manganese,LB
+37133,0.003980086,Fluorene,LB
+37133,0.000440415,PM2.5 Primary (Filt + Cond),TON
+37133,0.03161134,Volatile Organic Compounds,TON
+37129,0.0002438922,Acenaphthene,LB
+37129,0.001342911,Phenanthrene,LB
+37129,20.11089,Carbon Dioxide,TON
+37129,0.0004212847,Sulfur Dioxide,TON
+37129,0.010491166,"1,3-Butadiene",LB
+37129,0.003551798,Propionaldehyde,LB
+37129,0.4601486,Xylenes (Mixed Isomers),LB
+37129,0.00012703726,Benzo[k]Fluoranthene,LB
+37129,0.09091378,Formaldehyde,LB
+37117,0.8107442,Acenaphthene,LB
+37117,19.300338,Toluene,LB
+37117,19.896544,Xylenes (Mixed Isomers),LB
+37117,0.00790057,Benzo[k]Fluoranthene,LB
+37117,0.3700938,Chrysene,LB
+37125,6.22964e-05,Nickel,LB
+37125,0.0006940092,Ammonia,TON
+37125,0.0005024309,Sulfur Dioxide,TON
+37125,24.50098,Hexane,LB
+37125,4.98345e-07,Chromium (VI),LB
+37125,0.11224254,Acenaphthylene,LB
+37125,0.006071412,Chrysene,LB
+37125,0.007098086,Benzo[a]Pyrene,LB
+37119,0.2810442,Propionaldehyde,LB
+37119,3.2452e-06,Chromium (VI),LB
+37119,0.003975398,Benzo[b]Fluoranthene,LB
+37119,4.443642,Acetaldehyde,LB
+37119,0.013656806,Acenaphthene,LB
+37119,0.02766188,Fluorene,LB
+37107,0.002338024,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.009802308,Nickel,LB
+37107,3.189423,Carbon Monoxide,TON
+37107,0.1622423,PM25-Primary from certain diesel engines,TON
+37107,0.04534094,Organic Carbon portion of PM2.5-PRI,TON
+37089,25.59352,Acrolein,LB
+37089,2777.964,Xylenes (Mixed Isomers),LB
+37089,0.3677994,Benzo[b]Fluoranthene,LB
+37089,0.011424114,"Dibenzo[a,h]Anthracene",LB
+37083,9.075442,Toluene,LB
+37083,0.00418613,Benzo[k]Fluoranthene,LB
+37083,0.7939628,Acenaphthylene,LB
+37083,13.29471,Benzene,LB
+37083,15.4574,Naphthalene,LB
+37083,0.1824099,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.05875537,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.823958,Volatile Organic Compounds,TON
+37079,0.07084202,Benz[a]Anthracene,LB
+37079,6.824928e-06,Mercury,LB
+37079,20.31152,Acetaldehyde,LB
+37079,5.153186,Naphthalene,LB
+37079,0.0003196442,Nitrate portion of PM2.5-PRI,TON
+37079,0.1078933,PM2.5 Primary (Filt + Cond),TON
+37079,0.00379196,Sulfur Dioxide,TON
+37079,1.5281708,Ethyl Benzene,LB
+37087,0.8425094,Acetaldehyde,LB
+37087,1.045081,Carbon Monoxide,TON
+37087,0.3528716,"1,3-Butadiene",LB
+37085,0.9148768,Ethyl Benzene,LB
+37085,2.15756,Toluene,LB
+37085,0.7033422,Hexane,LB
+37085,0.0011425546,"Benzo[g,h,i,]Perylene",LB
+37085,0.018777402,Benzo[a]Pyrene,LB
+37085,0.06135904,Benz[a]Anthracene,LB
+37085,0.004704194,Nickel,LB
+37085,11.744958,Acetaldehyde,LB
+37085,0.00726684,Sulfur Dioxide,TON
+37075,5.029614e-07,Chromium (VI),LB
+37075,0.006573032,Phenanthrene,LB
+37075,0.002014914,Pyrene,LB
+37071,4.09317e-05,"Benzo[g,h,i,]Perylene",LB
+37071,0.0012285624,Acenaphthylene,LB
+37071,3.208152e-05,Mercury,LB
+37071,11.508592,Acetaldehyde,LB
+37071,0.01672811,Nitrous Oxide,TON
+37067,8.308126,Fluoranthene,LB
+37067,5.750434,Acenaphthylene,LB
+37067,0.03359424,"Dibenzo[a,h]Anthracene",LB
+37067,0.03542366,Arsenic,LB
+37067,458.5256,Acetaldehyde,LB
+37067,0.9614106,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.1601534,Ammonia,TON
+37067,0.01437437,Nitrate portion of PM2.5-PRI,TON
+37067,6.070222,Volatile Organic Compounds,TON
+37065,5555.98,Xylenes (Mixed Isomers),LB
+37053,0.0013444842,Benzo[k]Fluoranthene,LB
+37053,0.0018123418,Benzo[a]Pyrene,LB
+37053,3.008634e-05,Nickel,LB
+37051,0.7927048,Styrene,LB
+37051,64.12364,Formaldehyde,LB
+37051,0.004700148,Arsenic,LB
+37051,6.732244,Naphthalene,LB
+37051,0.176428,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.002510004,Nitrous Oxide,TON
+37051,6.333882,Nitrogen Oxides,TON
+37051,0.3046739,PM2.5 Primary (Filt + Cond),TON
+37051,6.593934,Anthracene,LB
+37051,10.936166,Fluoranthene,LB
+37051,21199.69,Carbon Dioxide,TON
+37051,0.6671455,Ammonia,TON
+37049,0.004653828,Benzo[k]Fluoranthene,LB
+37049,0.00648052,Benzo[a]Pyrene,LB
+37049,18.385162,Benzene,LB
+37049,6.548394e-05,Mercury,LB
+37049,0.0840291,Phenanthrene,LB
+37049,0.03130078,Fluorene,LB
+37049,0.001357893,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.04682688,PM10 Primary (Filt + Cond),TON
+37041,0.1824313,"1,3-Butadiene",LB
+37041,0.0005485412,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.0004005202,Benz[a]Anthracene,LB
+37041,1.2687778,Benzene,LB
+37041,8.178026e-06,Arsenic,LB
+37041,0.4397122,Acetaldehyde,LB
+37033,0.000953214,Acrolein,LB
+37033,0.07134108,Xylenes (Mixed Isomers),LB
+37033,1.0052546e-05,Benzo[k]Fluoranthene,LB
+37033,0.008752084,Formaldehyde,LB
+37033,1.3875554e-05,Benzo[a]Pyrene,LB
+37111,1.5872234,Benzene,LB
+37111,0.1456164,Volatile Organic Compounds,TON
+37083,1.9892788,Ethyl Benzene,LB
+37169,0.0009220114,"Benzo[g,h,i,]Perylene",LB
+37169,0.0291782,Chrysene,LB
+37169,7.672126e-06,Mercury,LB
+37169,0.0016041824,Arsenic,LB
+37169,2.291054,Naphthalene,LB
+37169,0.07770673,PM10 Primary (Filt + Cond),TON
+37165,0.007010022,"Dibenzo[a,h]Anthracene",LB
+37165,38.4934,Acrolein,LB
+37165,0.04480188,Arsenic,LB
+37165,4.759216,Phenanthrene,LB
+37165,44.43511,Nitrogen Oxides,TON
+37165,2.383611,PM10 Primary (Filt + Cond),TON
+37165,0.1438558,Sulfate Portion of PM2.5-PRI,TON
+37165,2.493578,Volatile Organic Compounds,TON
+37163,0.15833278,Acetaldehyde,LB
+37163,0.02696614,Naphthalene,LB
+37157,0.01173561,Chromium (VI),LB
+37157,20.29552,"Benzo[g,h,i,]Perylene",LB
+37157,104.44404,Acenaphthylene,LB
+37157,6.101484,Benz[a]Anthracene,LB
+37157,1.4669442,Nickel,LB
+37157,0.02302424,Nitrate portion of PM2.5-PRI,TON
+37157,19.43221,PM10 Primary (Filt + Cond),TON
+37157,393.4409,Volatile Organic Compounds,TON
+37155,0.4141766,Phenanthrene,LB
+37155,0.06536521,PM2.5 Primary (Filt + Cond),TON
+37155,0.03108516,Benzo[b]Fluoranthene,LB
+37155,0.03108516,Benzo[k]Fluoranthene,LB
+37155,6.760938,"1,3-Butadiene",LB
+37153,0.009256822,Formaldehyde,LB
+37153,1.0047956e-05,Benz[a]Anthracene,LB
+37153,0.01265589,Carbon Monoxide,TON
+37153,0.0008967894,Nitrogen Oxides,TON
+37153,1.1363318e-06,Mercury,LB
+37153,0.01739719,Nitrogen Oxides,TON
+37153,11193.052,Toluene,LB
+37153,5014.97,Xylenes (Mixed Isomers),LB
+37175,73.58238,Toluene,LB
+37175,28.84518,Hexane,LB
+37175,70.9236,Xylenes (Mixed Isomers),LB
+37175,0.0002159332,Chromium (VI),LB
+37175,0.008823784,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.004781974,Benzo[k]Fluoranthene,LB
+37175,0.1266122,Nickel,LB
+37175,0.9074939,PM10-Primary from certain diesel engines,TON
+37175,0.8348515,PM25-Primary from certain diesel engines,TON
+37175,0.01942608,Nitrous Oxide,TON
+37175,0.8738229,PM2.5 Primary (Filt + Cond),TON
+37173,0.02684896,Acrolein,LB
+37173,0.0007928228,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.000545948,Benzo[b]Fluoranthene,LB
+37173,1.5028106,Benzene,LB
+37173,0.001932785,Methane,TON
+37173,0.5485248,Carbon Monoxide,TON
+37155,125.63482,Formaldehyde,LB
+37155,0.0177072,Nickel,LB
+37155,10.91334,Nitrogen Oxides,TON
+37155,0.0155677,Sulfur Dioxide,TON
+37155,4.214954,"1,3-Butadiene",LB
+37149,5.366852,Acrolein,LB
+37149,0.0015980834,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.09032866,Benz[a]Anthracene,LB
+37149,0.00960799,Nickel,LB
+37149,0.2357492,Acenaphthene,LB
+37149,0.00846348,Methane,TON
+37149,0.001062335,Nitrous Oxide,TON
+37149,2.799012e-05,Mercury,LB
+37149,0.0003490086,Nickel,LB
+37149,0.5231762,Naphthalene,LB
+37149,119.9863,Carbon Dioxide,TON
+37149,0.1761448,Acrolein,LB
+37149,2.791948e-06,Chromium (VI),LB
+37157,5.980348,Acetaldehyde,LB
+37157,0.17391462,Phenanthrene,LB
+37157,0.11129526,Fluoranthene,LB
+37153,0.17108014,Acrolein,LB
+37153,0.008374244,Anthracene,LB
+37153,0.0041112,Benz[a]Anthracene,LB
+37153,93.14159,Carbon Dioxide,TON
+37153,0.00747756,PM2.5 Primary (Filt + Cond),TON
+37153,0.001952946,Sulfur Dioxide,TON
+37147,1.0155604,Pyrene,LB
+37147,131.27028,Acetaldehyde,LB
+37129,0.001593487,Nitrous Oxide,TON
+37129,0.009712129,Sulfate Portion of PM2.5-PRI,TON
+37129,1.1997286,Ethyl Benzene,LB
+37129,2.868442,Toluene,LB
+37141,4.712982,Propionaldehyde,LB
+37141,0.4902034,Pyrene,LB
+37141,1209.5214,Xylenes (Mixed Isomers),LB
+37141,0.0234179,Manganese,LB
+37141,0.592384,Fluorene,LB
+37141,0.2703578,Ammonia,TON
+37141,0.1882966,PM10 Primary (Filt + Cond),TON
+37137,0.08926158,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.4987724,Volatile Organic Compounds,TON
+37137,7.13967,Toluene,LB
+37137,0.002551732,Benzo[k]Fluoranthene,LB
+37137,0.1198063,Chrysene,LB
+37137,0.002546172,"Dibenzo[a,h]Anthracene",LB
+37137,2.613586e-05,Mercury,LB
+37137,0.596067,Fluorene,LB
+37137,1060.868,Carbon Dioxide,TON
+37137,0.2232419,PM10-Primary from certain diesel engines,TON
+37133,152.8895,Xylenes (Mixed Isomers),LB
+37133,0.8352088,Manganese,LB
+37133,0.0007682252,Mercury,LB
+37133,0.2114526,Nickel,LB
+37133,0.01270966,Nitrate portion of PM2.5-PRI,TON
+37133,5.533684,PM2.5 Primary (Filt + Cond),TON
+37125,0.00768161,"1,3-Butadiene",LB
+37125,0.04613892,Hexane,LB
+37125,4.212452e-05,Anthracene,LB
+37125,1.4845122e-09,Chromium (VI),LB
+37125,7.129636e-05,Fluoranthene,LB
+37125,1.0162274e-05,Benzo[k]Fluoranthene,LB
+37125,1.0987084e-05,Benzo[a]Pyrene,LB
+37125,1.8556646e-07,Nickel,LB
+37125,0.017887994,Acetaldehyde,LB
+37125,2.591292e-06,Ammonia,TON
+37125,1861.307,Ethyl Benzene,LB
+37115,0.415435,Propionaldehyde,LB
+37115,0.000214328,Benzo[k]Fluoranthene,LB
+37115,2.770548e-06,Mercury,LB
+37115,0.05416248,Fluorene,LB
+37115,0.004171162,Methane,TON
+37115,209.3473,Carbon Dioxide,TON
+37115,9.151069e-05,Nitrate portion of PM2.5-PRI,TON
+37115,75.7422,Formaldehyde,LB
+37115,0.06822552,Benz[a]Anthracene,LB
+37115,0.0014044954,Mercury,LB
+37115,0.017511816,Nickel,LB
+37115,49.36702,Carbon Monoxide,TON
+37115,0.02327358,Elemental Carbon portion of PM2.5-PRI,TON
+37115,4.810646,Acrolein,LB
+37115,0.212114,Anthracene,LB
+37115,0.2344862,"Benzo[g,h,i,]Perylene",LB
+37107,0.02369636,Chrysene,LB
+37107,16.846778,Formaldehyde,LB
+37107,0.002573954,Nickel,LB
+37107,0.07825606,PM10-Primary from certain diesel engines,TON
+37107,0.0002209206,Nitrate portion of PM2.5-PRI,TON
+37107,0.0186063,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.07727969,PM2.5 Primary (Filt + Cond),TON
+37103,0.00019321498,Benzo[k]Fluoranthene,LB
+37103,0.002913462,Acenaphthylene,LB
+37103,0.205775,Formaldehyde,LB
+37103,6.179936e-06,"Dibenzo[a,h]Anthracene",LB
+37103,8.61415e-06,Arsenic,LB
+37103,7.633015e-07,Nitrate portion of PM2.5-PRI,TON
+37099,167.81194,Naphthalene,LB
+37099,33.07366,Nitrogen Oxides,TON
+37099,4.243612,Anthracene,LB
+37099,0.0003512872,Mercury,LB
+37097,2390.55,"1,3-Butadiene",LB
+37097,40531.12,Xylenes (Mixed Isomers),LB
+37097,3.616996,Nickel,LB
+37097,32.88143,Ammonia,TON
+37097,13.69579,PM2.5 Primary (Filt + Cond),TON
+37093,0.001386307,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.2133054,Volatile Organic Compounds,TON
+37093,1.4275764,Ethyl Benzene,LB
+37093,1.1180262,Hexane,LB
+37093,1.2562858,"2,2,4-Trimethylpentane",LB
+37085,55.63496,Acrolein,LB
+37085,0.02002988,Benzo[k]Fluoranthene,LB
+37085,3.548858,Acenaphthylene,LB
+37085,78.62244,Naphthalene,LB
+37085,10598.74,Carbon Dioxide,TON
+37085,31.50518,Nitrogen Oxides,TON
+37079,0.05928229,Ammonia,TON
+37079,0.002463653,Nitrate portion of PM2.5-PRI,TON
+37079,14.797324,Xylenes (Mixed Isomers),LB
+37079,0.010645618,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.1045852,Methane,TON
+37079,2344.923,Carbon Dioxide,TON
+37073,9.997602e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.013830298,Fluoranthene,LB
+37073,0.03678102,Carbon Monoxide,TON
+37073,0.07954311,Nitrogen Oxides,TON
+37087,0.005340164,Nitrous Oxide,TON
+37087,0.006652523,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.02493774,Benzo[a]Pyrene,LB
+37087,0.014147104,Benzo[b]Fluoranthene,LB
+37087,0.0946682,Acenaphthylene,LB
+37085,10.348168,Styrene,LB
+37085,0.13710018,Benzo[k]Fluoranthene,LB
+37085,0.1335917,Chrysene,LB
+37085,668.5688,Benzene,LB
+37085,0.0018428338,Mercury,LB
+37085,0.03523196,Arsenic,LB
+37085,106.61806,Acetaldehyde,LB
+37085,0.4713958,Acenaphthene,LB
+37085,117.2052,Carbon Monoxide,TON
+37071,238.0922,Toluene,LB
+37071,0.1725606,Pyrene,LB
+37071,2.847812e-05,Chromium (VI),LB
+37071,0.4744736,Acenaphthylene,LB
+37071,0.003559766,Nickel,LB
+37071,5.4118,Naphthalene,LB
+37071,0.006821401,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.03069488,Nitrous Oxide,TON
+37071,1.435741,Volatile Organic Compounds,TON
+37059,0.12943716,Toluene,LB
+37059,6.7427e-05,Pyrene,LB
+37059,8.402652e-05,"Benzo[g,h,i,]Perylene",LB
+37059,1.9027096e-05,Benzo[b]Fluoranthene,LB
+37059,1.6357948e-05,Chrysene,LB
+37059,4.081702e-06,Manganese,LB
+37007,0.00308218,Nickel,LB
+37007,0.007101876,Fluorene,LB
+37007,447.1106,Carbon Dioxide,TON
+37007,0.001465901,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.01358468,Sulfur Dioxide,TON
+37007,7.605134,Formaldehyde,LB
+37007,0.00014052136,"Dibenzo[a,h]Anthracene",LB
+37001,4.104924,Formaldehyde,LB
+37001,0.003969728,Nickel,LB
+37001,0.002590968,Acenaphthene,LB
+37001,0.001693278,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.006663651,Nitrous Oxide,TON
+37001,0.0003123655,Sulfate Portion of PM2.5-PRI,TON
+37113,0.0004214978,Fluoranthene,LB
+37113,0.03311222,"1,3-Butadiene",LB
+37113,1.8769846e-05,Mercury,LB
+37113,0.01635005,Volatile Organic Compounds,TON
+37097,2.632858,Toluene,LB
+37097,0.00334612,Benzo[a]Pyrene,LB
+37097,1.2218376,"2,2,4-Trimethylpentane",LB
+37021,61.94232,Ethyl Benzene,LB
+37021,138.7662,Acrolein,LB
+37021,0.07273824,"Benzo[g,h,i,]Perylene",LB
+37021,0.0005393116,Mercury,LB
+37021,39.5698,Carbon Monoxide,TON
+37021,26223.56,Carbon Dioxide,TON
+37017,2.585798,Pyrene,LB
+37017,36.15248,Xylenes (Mixed Isomers),LB
+37017,0.011072802,"Benzo[g,h,i,]Perylene",LB
+37017,31.65574,Benzene,LB
+37017,0.0514224,Arsenic,LB
+37017,0.01791851,Nitrous Oxide,TON
+37021,0.017565644,"1,3-Butadiene",LB
+37021,0.003253108,Acrolein,LB
+37021,0.00016330504,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,7.967982e-05,Chrysene,LB
+37021,1.9695642e-05,Nickel,LB
+37021,0.0002770036,Ammonia,TON
+37009,6.522604,"2,2,4-Trimethylpentane",LB
+37005,8.626486e-07,Chromium (VI),LB
+37005,0.00011294762,"Benzo[g,h,i,]Perylene",LB
+37005,0.03324112,Phenanthrene,LB
+37005,0.007283674,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.0009343555,Ammonia,TON
+37005,8.674226,Toluene,LB
+37003,29555.98,Xylenes (Mixed Isomers),LB
+37003,0.009784508,Nitrate portion of PM2.5-PRI,TON
+37001,180.5934,Acrolein,LB
+37001,0.0341688,"Dibenzo[a,h]Anthracene",LB
+37001,222.3198,Benzene,LB
+37001,4.91182,Acenaphthene,LB
+37001,268.2636,Naphthalene,LB
+37001,4.374075,Methane,TON
+37197,0.16122062,Styrene,LB
+37197,0.798538,"1,3-Butadiene",LB
+37197,0.01249833,Pyrene,LB
+37197,0.02288374,"Benzo[g,h,i,]Perylene",LB
+37197,0.004814628,Benzo[b]Fluoranthene,LB
+37197,0.00019729578,"Dibenzo[a,h]Anthracene",LB
+37197,5.501648,"2,2,4-Trimethylpentane",LB
+37191,0.002211304,Anthracene,LB
+37191,0.01429201,"Benzo[g,h,i,]Perylene",LB
+37191,0.002427864,Benz[a]Anthracene,LB
+37191,7.80001,Benzene,LB
+37191,0.01018221,Manganese,LB
+37191,0.1232647,Naphthalene,LB
+37191,426.6004,Carbon Dioxide,TON
+37197,1.6121732,Acrolein,LB
+37197,1.4708058,Toluene,LB
+37197,0.52268,Hexane,LB
+37197,0.2348612,Phenanthrene,LB
+37197,623.9098,Carbon Dioxide,TON
+37197,0.09967851,PM25-Primary from certain diesel engines,TON
+37197,0.07251029,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.0006146617,Nitrous Oxide,TON
+37197,0.1343053,PM10 Primary (Filt + Cond),TON
+37185,1.3926398e-05,Chromium (VI),LB
+37185,0.00016797862,Benzo[k]Fluoranthene,LB
+37185,0.007474082,Nickel,LB
+37185,5.402312,Naphthalene,LB
+37179,0.11278764,Ethyl Benzene,LB
+37179,0.00013136824,Chrysene,LB
+37179,7.653114e-05,Benz[a]Anthracene,LB
+37179,3.821e-05,Mercury,LB
+37179,1.201868,Carbon Monoxide,TON
+37179,0.02241481,Nitrous Oxide,TON
+37179,0.002435014,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.05175716,Pyrene,LB
+37177,0.007633466,Chrysene,LB
+37177,0.0003461746,Arsenic,LB
+37177,0.015308776,Acenaphthene,LB
+37177,0.1113178,Carbon Monoxide,TON
+37173,0.0009826496,Styrene,LB
+37173,0.0007757806,Acrolein,LB
+37173,0.03236932,Hexane,LB
+37173,0.09403258,Xylenes (Mixed Isomers),LB
+37173,1.668422e-05,Benzo[b]Fluoranthene,LB
+37173,0.001415036,Nitrogen Oxides,TON
+37027,422.2113,Volatile Organic Compounds,TON
+37027,110.59412,Acenaphthylene,LB
+37027,2.081404,Arsenic,LB
+37027,83605.94,Toluene,LB
+37027,18271.6,"2,2,4-Trimethylpentane",LB
+37027,6.081658,Benz[a]Anthracene,LB
+37027,1261.5498,Naphthalene,LB
+37027,12.55213,Nitrous Oxide,TON
+37055,5022.225,Carbon Dioxide,TON
+37055,0.4597689,Organic Carbon portion of PM2.5-PRI,TON
+37039,37447.06,Carbon Dioxide,TON
+37039,0.6526085,Organic Carbon portion of PM2.5-PRI,TON
+37175,6.156244,"1,3-Butadiene",LB
+37175,15.60405,Toluene,LB
+37175,1.0451048,Acenaphthylene,LB
+37175,7.664589,Nitrogen Oxides,TON
+37175,0.7159618,PM10 Primary (Filt + Cond),TON
+37169,35.57044,Acrolein,LB
+37169,57.26424,Toluene,LB
+37169,19.390058,Propionaldehyde,LB
+37169,213.6304,Acetaldehyde,LB
+37169,2.1674,Fluorene,LB
+37169,0.003100399,Nitrate portion of PM2.5-PRI,TON
+37169,0.2546602,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.12962488,Anthracene,LB
+37161,1.8952388,Propionaldehyde,LB
+37161,0.005683896,Nickel,LB
+37161,4.104324,Naphthalene,LB
+37161,0.0005168101,Nitrate portion of PM2.5-PRI,TON
+37161,1.601223,Nitrogen Oxides,TON
+37159,170.06004,Acrolein,LB
+37159,0.03608488,"Dibenzo[a,h]Anthracene",LB
+37159,6.473592,PM25-Primary from certain diesel engines,TON
+37159,186.0991,Nitrogen Oxides,TON
+37159,1.496131,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.590099,Sulfur Dioxide,TON
+37155,29.31476,Styrene,LB
+37155,0.06416472,"Benzo[g,h,i,]Perylene",LB
+37155,0.8817554,Benzo[a]Pyrene,LB
+37155,7.358342,Methane,TON
+37155,0.0878305,Nitrous Oxide,TON
+37155,13.05606,PM10 Primary (Filt + Cond),TON
+37149,4.444284e-05,Mercury,LB
+37149,0.0007221888,Nitrous Oxide,TON
+37149,0.8151735,Nitrogen Oxides,TON
+37149,0.009146831,Organic Carbon portion of PM2.5-PRI,TON
+37149,5.718098,Acrolein,LB
+37149,3.65181,Propionaldehyde,LB
+37149,0.000871035,"Benzo[g,h,i,]Perylene",LB
+37149,0.0452193,Benz[a]Anthracene,LB
+37163,13.251246,"1,3-Butadiene",LB
+37163,0.13709354,"Benzo[g,h,i,]Perylene",LB
+37163,0.03487918,Benzo[b]Fluoranthene,LB
+37163,0.02354934,Manganese,LB
+37163,0.553378,Phenanthrene,LB
+37163,4.062078,Nitrogen Oxides,TON
+37163,0.01802791,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.00406138,Nickel,LB
+37157,0.1103444,PM2.5 Primary (Filt + Cond),TON
+37157,0.0006628614,Benzo[k]Fluoranthene,LB
+37155,8396.544,Ethyl Benzene,LB
+37155,272.391,Styrene,LB
+37155,12788.416,Hexane,LB
+37155,24.63791,PM10 Primary (Filt + Cond),TON
+37155,9.890146,PM2.5 Primary (Filt + Cond),TON
+37137,0.019065466,Hexane,LB
+37137,1.708628e-09,Chromium (VI),LB
+37137,1.8721142e-05,"Benzo[g,h,i,]Perylene",LB
+37137,5.651264e-06,Chrysene,LB
+37137,1.1463736e-06,Manganese,LB
+37137,3.274818e-07,Arsenic,LB
+37137,2.188866e-05,Acenaphthene,LB
+37137,0.00011869964,Phenanthrene,LB
+37137,1.591902e-05,Methane,TON
+37121,795.923,Toluene,LB
+37121,0.220981,Anthracene,LB
+37121,541.348,Xylenes (Mixed Isomers),LB
+37121,0.0809174,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.1324759,Nitrous Oxide,TON
+37121,0.04615912,Sulfur Dioxide,TON
+37105,0.01212875,"Benzo[g,h,i,]Perylene",LB
+37105,0.05723736,Benzo[b]Fluoranthene,LB
+37105,0.3759086,Chrysene,LB
+37105,383.8582,Formaldehyde,LB
+37105,0.19170014,Benzo[a]Pyrene,LB
+37105,10.585992,"2,2,4-Trimethylpentane",LB
+37105,0.200813,Manganese,LB
+37105,0.0002069332,Mercury,LB
+37105,0.06677286,Nickel,LB
+37105,2.362176,PM10 Primary (Filt + Cond),TON
+37101,0.00013659834,Chrysene,LB
+37101,2.662904e-07,Mercury,LB
+37101,5.090934e-06,Arsenic,LB
+37101,0.9855818,Carbon Dioxide,TON
+37101,3.160605e-05,Ammonia,TON
+37085,485.548,Styrene,LB
+37085,5.391018,Benzo[k]Fluoranthene,LB
+37077,0.3847002,"1,3-Butadiene",LB
+37077,0.0003337684,Benzo[k]Fluoranthene,LB
+37077,0.0274108,Benz[a]Anthracene,LB
+37067,35.3518,Styrene,LB
+37067,156.00382,Propionaldehyde,LB
+37067,0.06010678,Benzo[k]Fluoranthene,LB
+37067,14.319034,Acenaphthylene,LB
+37067,335.5296,Benzene,LB
+37067,1626.4356,Acetaldehyde,LB
+37057,0.06573456,"1,3-Butadiene",LB
+37057,4.37015,Propionaldehyde,LB
+37057,0.002017632,Pyrene,LB
+37057,0.0010573474,Fluoranthene,LB
+37057,0.0003085892,Chrysene,LB
+37057,5.836452e-06,Nickel,LB
+37057,21.3061,Acetaldehyde,LB
+37057,2.833144,Carbon Monoxide,TON
+37051,0.257472,Pyrene,LB
+37051,5.76479e-06,Chromium (VI),LB
+37051,0.0011254692,"Benzo[g,h,i,]Perylene",LB
+37051,0.19561696,Fluoranthene,LB
+37051,0.007044488,Manganese,LB
+37051,0.3159794,Phenanthrene,LB
+37051,2.898916,Naphthalene,LB
+37051,0.005438962,Ammonia,TON
+37051,0.06193607,PM2.5 Primary (Filt + Cond),TON
+37051,0.002352821,Sulfur Dioxide,TON
+37049,1.867573,Nitrogen Oxides,TON
+37049,0.1219096,PM2.5 Primary (Filt + Cond),TON
+37049,0.2429818,Volatile Organic Compounds,TON
+37049,3.4058,Acrolein,LB
+37049,3.531092,Toluene,LB
+37049,19.155892,Acetaldehyde,LB
+37049,4.801,Naphthalene,LB
+37047,1.8316536,"1,3-Butadiene",LB
+37047,4.200532,Toluene,LB
+37047,0.002018246,Benzo[k]Fluoranthene,LB
+37047,0.15787414,Benz[a]Anthracene,LB
+37047,0.7440202,Phenanthrene,LB
+37047,728.5403,Carbon Dioxide,TON
+37047,0.1761043,PM2.5 Primary (Filt + Cond),TON
+37047,0.03008904,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.3325651,Volatile Organic Compounds,TON
+37043,0.5617182,Ethyl Benzene,LB
+37043,0.473306,"1,3-Butadiene",LB
+37043,0.4338598,Hexane,LB
+37043,0.05960584,Fluoranthene,LB
+37043,2.586596e-05,Benzo[k]Fluoranthene,LB
+37043,0.002252826,PM25-Primary from certain diesel engines,TON
+37143,0.05805434,Styrene,LB
+37143,0.2050496,Acrolein,LB
+37143,4.088746,Xylenes (Mixed Isomers),LB
+37143,1.384922e-05,Chromium (VI),LB
+37143,0.00923302,"Benzo[g,h,i,]Perylene",LB
+37143,0.0018639668,Benzo[k]Fluoranthene,LB
+37143,7.963654e-05,"Dibenzo[a,h]Anthracene",LB
+37143,5.583018,Benzene,LB
+37143,0.1045846,Naphthalene,LB
+37143,0.003900967,Nitrous Oxide,TON
+37107,0.01367338,Ammonia,TON
+37107,0.1047799,Nitrogen Oxides,TON
+37107,0.03300324,Styrene,LB
+37107,0.005293568,Acenaphthylene,LB
+37107,0.003002736,Arsenic,LB
+37107,0.006549362,Phenanthrene,LB
+37163,1.0704332,Nickel,LB
+37163,1718.563,Carbon Monoxide,TON
+37163,119492.1,Carbon Dioxide,TON
+37163,7055.3,Hexane,LB
+37163,9.881872,Fluoranthene,LB
+37163,1980.4318,Formaldehyde,LB
+37151,1.793039,Elemental Carbon portion of PM2.5-PRI,TON
+37151,329.524,Nitrogen Oxides,TON
+37151,290.3612,Volatile Organic Compounds,TON
+37147,6.830016e-05,Mercury,LB
+37147,0.01092445,Ammonia,TON
+37147,0.007593882,Anthracene,LB
+37147,0.004807412,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.04016848,Acenaphthylene,LB
+37147,0.002929836,Chrysene,LB
+37147,0.00011034036,"Dibenzo[a,h]Anthracene",LB
+37143,1.1292734,Pyrene,LB
+37143,0.0033647,Benzo[k]Fluoranthene,LB
+37143,126.5994,Formaldehyde,LB
+37143,0.1176901,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.4221296,PM10 Primary (Filt + Cond),TON
+37143,0.6755058,Volatile Organic Compounds,TON
+37143,0.0008367626,Benzo[b]Fluoranthene,LB
+37143,0.00280489,Benzo[a]Pyrene,LB
+37143,0.3171642,Acrolein,LB
+37143,0.013562754,Anthracene,LB
+37143,1.5079614e-06,Mercury,LB
+37143,0.0003152992,Arsenic,LB
+37143,1.774381,Acetaldehyde,LB
+37143,0.0272618,Styrene,LB
+37143,4.64393,Toluene,LB
+37143,0.0011361602,"Benzo[g,h,i,]Perylene",LB
+37143,1.0387506,"2,2,4-Trimethylpentane",LB
+37143,0.05821016,Naphthalene,LB
+37143,0.0001320181,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.0003107037,Nitrous Oxide,TON
+37143,0.0002027204,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.001342952,Sulfate Portion of PM2.5-PRI,TON
+37137,1.7259372,Xylenes (Mixed Isomers),LB
+37137,0.004646596,Benzo[b]Fluoranthene,LB
+37137,23.91222,Formaldehyde,LB
+37137,0.01151113,Methane,TON
+37137,0.0276933,"1,3-Butadiene",LB
+37137,0.0009294178,Acenaphthylene,LB
+37137,6.286816e-05,Benzo[a]Pyrene,LB
+37137,0.1179336,"2,2,4-Trimethylpentane",LB
+37137,7.798798e-06,Nickel,LB
+37129,6.871554,Ethyl Benzene,LB
+37117,1.5608948,Hexane,LB
+37117,1.362874e-05,Chromium (VI),LB
+37117,0.0010475096,Benzo[k]Fluoranthene,LB
+37117,0.10110516,Benz[a]Anthracene,LB
+37117,0.014280446,Manganese,LB
+37117,2.400884,Carbon Monoxide,TON
+37117,0.005014221,Sulfur Dioxide,TON
+37121,0.0924314,Propionaldehyde,LB
+37121,0.0015033872,Benzo[k]Fluoranthene,LB
+37121,1.6486014,Formaldehyde,LB
+37121,0.000342273,Arsenic,LB
+37121,1.9263024,Acetaldehyde,LB
+37121,0.0004646522,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.009718106,PM10 Primary (Filt + Cond),TON
+37121,0.001075519,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.001960468,Sulfur Dioxide,TON
+37121,0.08325169,Volatile Organic Compounds,TON
+37113,0.00010422232,Benzo[k]Fluoranthene,LB
+37113,0.008447666,Benz[a]Anthracene,LB
+37113,0.01148073,Acenaphthene,LB
+37113,0.3896234,Naphthalene,LB
+37113,0.07093754,Carbon Monoxide,TON
+37193,4.6239,Fluoranthene,LB
+37193,0.03020352,Arsenic,LB
+37193,0.000153242,Chromium (VI),LB
+37193,7.500302,Phenanthrene,LB
+37193,0.6246103,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.2103586,"2,2,4-Trimethylpentane",LB
+37197,0.03461832,"1,3-Butadiene",LB
+37197,0.0002700676,Anthracene,LB
+37197,3.35483e-05,Manganese,LB
+37189,0.0162577,Pyrene,LB
+37189,10.688816,"2,2,4-Trimethylpentane",LB
+37189,0.0003455132,Arsenic,LB
+37189,0.003259771,Nitrous Oxide,TON
+37187,0.0008720298,"Dibenzo[a,h]Anthracene",LB
+37187,2.871074,Benzene,LB
+37187,4.382876e-06,Mercury,LB
+37187,0.08353772,PM10-Primary from certain diesel engines,TON
+37187,0.001014238,Nitrous Oxide,TON
+37187,2.408072,Acrolein,LB
+37187,5.909526e-06,Chromium (VI),LB
+37187,0.006385772,Benzo[b]Fluoranthene,LB
+37187,0.0008725938,Benzo[k]Fluoranthene,LB
+37181,0.06748566,Propionaldehyde,LB
+37181,0.5772616,Xylenes (Mixed Isomers),LB
+37181,0.0006285802,Benzo[a]Pyrene,LB
+37181,0.0003115454,Nickel,LB
+37181,0.0002799698,Acenaphthene,LB
+37181,0.3995745,Carbon Monoxide,TON
+37181,0.03291781,Nitrogen Oxides,TON
+37181,0.0004040177,Organic Carbon portion of PM2.5-PRI,TON
+37105,2.158424e-05,Arsenic,LB
+37105,1.809701e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37105,4.315607e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.0003999012,Acenaphthylene,LB
+37105,0.0019543966,Styrene,LB
+37105,0.00015683202,Pyrene,LB
+37093,4516,Hexane,LB
+37093,76.8565,Propionaldehyde,LB
+37093,10605.498,Xylenes (Mixed Isomers),LB
+37093,18.550096,Acenaphthylene,LB
+37083,0.03862884,Propionaldehyde,LB
+37083,4.052416,Xylenes (Mixed Isomers),LB
+37083,1.3873398,"2,2,4-Trimethylpentane",LB
+37083,0.5846604,Acetaldehyde,LB
+37083,0.001963202,Methane,TON
+37077,86.85644,Phenanthrene,LB
+37077,7.34665,Nitrous Oxide,TON
+37077,52717.38,Toluene,LB
+37077,11795.916,Hexane,LB
+37077,328.7764,Propionaldehyde,LB
+37077,4.643054,Benzo[k]Fluoranthene,LB
+37077,5050.87,Formaldehyde,LB
+37077,13.53063,PM10 Primary (Filt + Cond),TON
+37057,332.4184,Acrolein,LB
+37057,41804.66,Xylenes (Mixed Isomers),LB
+37057,25.24684,"Benzo[g,h,i,]Perylene",LB
+37057,23.80836,Fluoranthene,LB
+37057,828.592,Naphthalene,LB
+37057,282917.7,Carbon Dioxide,TON
+37057,2.209517,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.2861156,Sulfate Portion of PM2.5-PRI,TON
+37051,6.12532,Formaldehyde,LB
+37051,0.007980288,Benz[a]Anthracene,LB
+37051,0.002590391,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.008747681,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.0455915,Anthracene,LB
+37177,0.000393357,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.001545167,Benzo[b]Fluoranthene,LB
+37177,0.1465669,Phenanthrene,LB
+37177,9.41477e-05,Nitrate portion of PM2.5-PRI,TON
+37177,1.181883,Nitrogen Oxides,TON
+37177,0.007392054,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.00019288342,Chromium (VI),LB
+37173,0.0835296,Manganese,LB
+37173,0.1939987,Methane,TON
+37173,4475.072,Carbon Dioxide,TON
+37173,0.7879841,PM10 Primary (Filt + Cond),TON
+37173,4.200748,Volatile Organic Compounds,TON
+37167,45.46724,Benzene,LB
+37167,16.38699,Carbon Monoxide,TON
+37167,60.90422,Nitrogen Oxides,TON
+37167,0.2580918,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,13.018118,"1,3-Butadiene",LB
+37167,1.3774214,Anthracene,LB
+37199,19.31321,Acetaldehyde,LB
+37199,0.09102518,"Benzo[g,h,i,]Perylene",LB
+37199,0.03424946,Benzo[a]Pyrene,LB
+37197,0.019013658,Manganese,LB
+37197,51.25554,Acetaldehyde,LB
+37197,12.922548,Naphthalene,LB
+37197,0.003853978,Nitrous Oxide,TON
+37197,0.001335177,Nitrate portion of PM2.5-PRI,TON
+37197,0.04168466,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.6780975,Volatile Organic Compounds,TON
+37193,3.667426e-08,Chromium (VI),LB
+37193,0.0007280174,Acenaphthylene,LB
+37193,0.000401671,Arsenic,LB
+37193,9.040754e-05,Sulfate Portion of PM2.5-PRI,TON
+37193,0.08605398,Volatile Organic Compounds,TON
+37185,0.013596038,Anthracene,LB
+37185,0.00016275412,"Benzo[g,h,i,]Perylene",LB
+37185,3.86313,Formaldehyde,LB
+37185,0.00260059,Benzo[a]Pyrene,LB
+37185,0.0001060579,"Dibenzo[a,h]Anthracene",LB
+37185,0.09597956,"2,2,4-Trimethylpentane",LB
+37185,0.02717642,Fluorene,LB
+37185,0.05600752,Styrene,LB
+37185,0.01000758,PM25-Primary from certain diesel engines,TON
+37185,0.001502593,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.0003704549,Sulfur Dioxide,TON
+37185,7.814732,Ethyl Benzene,LB
+37185,3.184492,Styrene,LB
+37185,0.8025284,Anthracene,LB
+37185,17.452552,Xylenes (Mixed Isomers),LB
+37185,0.323162,Chrysene,LB
+37185,0.5516606,Benz[a]Anthracene,LB
+37185,21.82428,Benzene,LB
+37185,7.923906e-05,Mercury,LB
+37185,0.002914989,Nitrate portion of PM2.5-PRI,TON
+37185,0.1418196,Toluene,LB
+37185,2.114834e-05,Benzo[b]Fluoranthene,LB
+37185,8.118038e-07,"Dibenzo[a,h]Anthracene",LB
+37185,0.001761794,Nitrogen Oxides,TON
+37185,1.907728e-05,Organic Carbon portion of PM2.5-PRI,TON
+37185,3.479442e-05,PM2.5 Primary (Filt + Cond),TON
+37195,7.3267,PM2.5 Primary (Filt + Cond),TON
+37195,4.38325,Benz[a]Anthracene,LB
+37195,29.35372,Fluorene,LB
+37195,3987.866,Carbon Monoxide,TON
+37195,467.7724,Nitrogen Oxides,TON
+37189,8.447662e-05,"Dibenzo[a,h]Anthracene",LB
+37189,5.929388,Benzene,LB
+37189,28.3863,Acetaldehyde,LB
+37189,556.7096,Carbon Dioxide,TON
+37189,0.01430692,PM2.5 Primary (Filt + Cond),TON
+37187,0.002143004,PM2.5 Primary (Filt + Cond),TON
+37187,17.750538,Toluene,LB
+37187,0.014343568,Acenaphthylene,LB
+37187,7.917716e-05,Nickel,LB
+37183,0.03571904,Benzo[a]Pyrene,LB
+37183,26.2993,"2,2,4-Trimethylpentane",LB
+37183,0.03073066,Manganese,LB
+37183,0.03997744,Acenaphthene,LB
+37183,0.02172908,Organic Carbon portion of PM2.5-PRI,TON
+37181,2.382014,Hexane,LB
+37181,0.9883862,Pyrene,LB
+37181,6.10203,Xylenes (Mixed Isomers),LB
+37181,0.010752492,Nickel,LB
+37181,2.950646,"1,3-Butadiene",LB
+37181,6.850156,Acrolein,LB
+37181,2.083568,Hexane,LB
+37181,4.766812,Propionaldehyde,LB
+37181,4.521826,Xylenes (Mixed Isomers),LB
+37181,0.002561102,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,8.1258,Benzene,LB
+37181,0.01965501,Manganese,LB
+37181,0.01120768,Methane,TON
+37181,3.17607,Carbon Monoxide,TON
+37181,761.1124,Carbon Dioxide,TON
+37181,0.006703146,Sulfur Dioxide,TON
+37181,1.786943,Anthracene,LB
+37181,2.879608,Fluoranthene,LB
+37181,0.05701532,Benzo[a]Pyrene,LB
+37181,0.00012082164,Mercury,LB
+37181,0.5679025,PM10-Primary from certain diesel engines,TON
+37185,1.212178e-05,Chromium (VI),LB
+37185,0.0014991562,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.5725296,Phenanthrene,LB
+37185,0.1259091,PM25-Primary from certain diesel engines,TON
+37195,9.105736,Propionaldehyde,LB
+37195,0.9350786,Acenaphthylene,LB
+37195,16.478788,Benzene,LB
+37195,0.006083756,Arsenic,LB
+37195,19.254606,Naphthalene,LB
+37195,0.08886227,Methane,TON
+37195,0.578554,PM10 Primary (Filt + Cond),TON
+37195,0.01049207,Sulfate Portion of PM2.5-PRI,TON
+37187,0.00014577254,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,6.122186e-06,Mercury,LB
+37187,0.7865708,Acetaldehyde,LB
+37187,0.00013613946,Fluorene,LB
+37187,4.882305e-07,Nitrate portion of PM2.5-PRI,TON
+37187,5.387713e-06,Sulfate Portion of PM2.5-PRI,TON
+37187,5.032958e-07,Chromium (VI),LB
+37187,0.00010090216,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.010845458,Acenaphthylene,LB
+37187,0.004465678,Benz[a]Anthracene,LB
+37187,4.223022e-05,Nitrous Oxide,TON
+37187,2.321657e-05,Nitrate portion of PM2.5-PRI,TON
+37187,0.1004877,Nitrogen Oxides,TON
+37187,0.006403989,PM10 Primary (Filt + Cond),TON
+37187,0.0001726273,Sulfur Dioxide,TON
+37067,735.8956,Styrene,LB
+37067,0.5841924,Mercury,LB
+37067,31.81514,Acenaphthene,LB
+37067,16.25733,Nitrous Oxide,TON
+37067,893.2093,Nitrogen Oxides,TON
+37073,4.018218e-05,Sulfur Dioxide,TON
+37073,9.542074e-05,Anthracene,LB
+37073,3.004344e-08,Chromium (VI),LB
+37073,0.00015411924,"Benzo[g,h,i,]Perylene",LB
+37073,3.887552e-05,Benzo[k]Fluoranthene,LB
+37073,0.0005052162,Acenaphthylene,LB
+37073,0.03650754,Formaldehyde,LB
+37073,0.00011078558,Acenaphthene,LB
+37073,0.000224408,Fluorene,LB
+37073,0.005754666,Naphthalene,LB
+37073,1.137524e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37021,97.38724,Xylenes (Mixed Isomers),LB
+37021,0.009809078,Manganese,LB
+37021,1.9516934,Naphthalene,LB
+37021,17.52734,Carbon Monoxide,TON
+37041,6.459176,Acetaldehyde,LB
+37041,0.0371949,Fluorene,LB
+37041,0.008947752,Ammonia,TON
+37041,0.003800483,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.005240588,Benzo[b]Fluoranthene,LB
+37059,0.000521139,Pyrene,LB
+37059,0.5449306,Xylenes (Mixed Isomers),LB
+37059,0.0002818084,Nickel,LB
+37059,0.000535307,Fluorene,LB
+37081,10.255544,Styrene,LB
+37081,0.003445712,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,22.82024,"2,2,4-Trimethylpentane",LB
+37081,355.1424,Acetaldehyde,LB
+37081,4.115608,Fluorene,LB
+37081,0.03510505,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.130222,Ammonia,TON
+37081,7.052233,Nitrogen Oxides,TON
+37081,0.08627142,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.06581822,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.017643612,Acenaphthene,LB
+37139,0.01192126,PM2.5 Primary (Filt + Cond),TON
+37139,0.0002232174,"Benzo[g,h,i,]Perylene",LB
+37139,0.00698821,Chrysene,LB
+37163,25.73892,Benzene,LB
+37163,0.03545072,Manganese,LB
+37163,118.81574,Acetaldehyde,LB
+37163,1902.923,Carbon Dioxide,TON
+37163,21.58418,Acrolein,LB
+37163,0.7423384,Anthracene,LB
+37099,0.04045656,Ethyl Benzene,LB
+37099,9.761586e-05,Fluoranthene,LB
+37197,18.762122,Ethyl Benzene,LB
+37197,43.60724,Acrolein,LB
+37197,0.3063507,Methane,TON
+37197,0.2303795,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.06519346,Sulfur Dioxide,TON
+37189,42.27632,Toluene,LB
+37189,36.40656,Xylenes (Mixed Isomers),LB
+37187,0.1388336,"Benzo[g,h,i,]Perylene",LB
+37187,0.0521606,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.2270058,Fluoranthene,LB
+37187,48.2728,Formaldehyde,LB
+37187,108.67882,"2,2,4-Trimethylpentane",LB
+37187,0.316395,Fluorene,LB
+37187,62.12978,Acrolein,LB
+37187,1.056049,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,4.923438,Fluoranthene,LB
+37187,3312.524,Benzene,LB
+37187,0.017593456,Mercury,LB
+37197,4.151246e-06,Benzo[b]Fluoranthene,LB
+37197,0.00691849,"2,2,4-Trimethylpentane",LB
+37197,1.921696e-08,Nitrate portion of PM2.5-PRI,TON
+37193,0.3417944,Ethyl Benzene,LB
+37193,0.2576894,Hexane,LB
+37193,0.5576774,Propionaldehyde,LB
+37193,0.08428362,Fluoranthene,LB
+37193,0.02726562,Benz[a]Anthracene,LB
+37193,0.0012535864,Nickel,LB
+37193,0.0346762,Acenaphthene,LB
+37185,0.2802828,"1,3-Butadiene",LB
+37185,0.08252818,Pyrene,LB
+37185,0.0004300338,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.0007142098,Arsenic,LB
+37185,0.973181,Naphthalene,LB
+37185,0.04304935,PM25-Primary from certain diesel engines,TON
+37185,0.03040609,Elemental Carbon portion of PM2.5-PRI,TON
+37185,1.095146,Nitrogen Oxides,TON
+37185,0.05958594,PM10 Primary (Filt + Cond),TON
+37185,0.001821005,Sulfate Portion of PM2.5-PRI,TON
+37067,13.899574,Styrene,LB
+37067,0.16466608,Nickel,LB
+37067,0.07474134,Arsenic,LB
+37067,1.650559,PM10 Primary (Filt + Cond),TON
+37135,18.454896,Ethyl Benzene,LB
+37135,6.605,Styrene,LB
+37135,0.0013421344,Benzo[k]Fluoranthene,LB
+37135,0.13923104,Chrysene,LB
+37135,0.13432664,Manganese,LB
+37135,0.0592782,Arsenic,LB
+37135,4.437876,Phenanthrene,LB
+37135,0.0007436594,Nitrate portion of PM2.5-PRI,TON
+37111,8.207132,Xylenes (Mixed Isomers),LB
+37111,843.7593,Carbon Dioxide,TON
+37111,0.00936282,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.007279723,Sulfur Dioxide,TON
+37005,0.02508069,Methane,TON
+37005,3.61005,Toluene,LB
+37005,1.2677954,Hexane,LB
+37005,0.000241596,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,50.47656,Formaldehyde,LB
+37007,0.7681186,Toluene,LB
+37007,0.008095012,Benzo[a]Pyrene,LB
+37007,0.03351778,Acenaphthene,LB
+37007,0.3488542,Carbon Monoxide,TON
+37007,0.0003572561,Nitrous Oxide,TON
+37089,0.004873176,Manganese,LB
+37089,0.006805666,Phenanthrene,LB
+37089,0.007717876,Naphthalene,LB
+37089,0.01895124,Nitrous Oxide,TON
+37089,11.48866,Propionaldehyde,LB
+37089,0.03715867,PM2.5 Primary (Filt + Cond),TON
+37089,0.02028408,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,2.469148,Formaldehyde,LB
+37177,0.004520186,Benzo[a]Pyrene,LB
+37177,0.006016877,Methane,TON
+37177,0.3828037,Nitrogen Oxides,TON
+37177,0.15017916,Propionaldehyde,LB
+37177,0.012078286,"Benzo[g,h,i,]Perylene",LB
+37197,292.0698,Propionaldehyde,LB
+37197,3.956778,Benzo[k]Fluoranthene,LB
+37197,14.262252,Acenaphthene,LB
+37197,77.44684,Phenanthrene,LB
+37197,3449.585,Carbon Monoxide,TON
+37197,5.550955,PM2.5 Primary (Filt + Cond),TON
+37197,0.12092554,"Dibenzo[a,h]Anthracene",LB
+37197,3.999968,Benz[a]Anthracene,LB
+37189,6.518518e-07,Chromium (VI),LB
+37189,0.6860876,Acetaldehyde,LB
+37189,0.07440011,Nitrogen Oxides,TON
+37189,3.515413e-05,Sulfate Portion of PM2.5-PRI,TON
+37181,1.4326644,Acenaphthylene,LB
+37181,0.2077056,Benzo[a]Pyrene,LB
+37181,5.904218,"2,2,4-Trimethylpentane",LB
+37181,0.0380159,Nickel,LB
+37181,3752.946,Carbon Dioxide,TON
+37179,0.2321648,PM25-Primary from certain diesel engines,TON
+37179,0.3256072,Anthracene,LB
+37179,0.483838,Acenaphthylene,LB
+37179,105.25832,Formaldehyde,LB
+37179,0.013062802,Nickel,LB
+37173,0.0003107424,Fluorene,LB
+37173,0.0040025,PM2.5 Primary (Filt + Cond),TON
+37173,0.002212468,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,15.667342,"1,3-Butadiene",LB
+37193,502.733,Toluene,LB
+37193,2.31741,Propionaldehyde,LB
+37193,0.19210434,Pyrene,LB
+37193,0.03376518,Benzo[b]Fluoranthene,LB
+37193,0.03281432,Chrysene,LB
+37193,0.004050684,Arsenic,LB
+37193,0.1150397,Acenaphthene,LB
+37193,0.0001359047,Nitrate portion of PM2.5-PRI,TON
+37193,3.414617,Nitrogen Oxides,TON
+37193,0.1059919,PM10 Primary (Filt + Cond),TON
+37193,0.01756815,Sulfur Dioxide,TON
+37185,230.928,Formaldehyde,LB
+37185,6.049564,"2,2,4-Trimethylpentane",LB
+37185,0.4206206,Benz[a]Anthracene,LB
+37185,11.273062,Propionaldehyde,LB
+37185,97.39492,Acetaldehyde,LB
+37185,7.007083,Carbon Monoxide,TON
+37185,8430.867,Carbon Dioxide,TON
+37185,28.35333,Nitrogen Oxides,TON
+37185,1.036355,PM2.5 Primary (Filt + Cond),TON
+37185,24.59076,Xylenes (Mixed Isomers),LB
+37185,19.600202,"2,2,4-Trimethylpentane",LB
+37185,1.006174,Volatile Organic Compounds,TON
+37195,83.7499,Hexane,LB
+37191,0.05067172,Benzo[b]Fluoranthene,LB
+37191,100.80402,Acetaldehyde,LB
+37191,0.5541258,PM25-Primary from certain diesel engines,TON
+37191,0.2186503,Elemental Carbon portion of PM2.5-PRI,TON
+37191,7.746982,Ethyl Benzene,LB
+37191,2.31775,Pyrene,LB
+37189,0.2809422,Benzo[b]Fluoranthene,LB
+37189,4.626354,Acenaphthylene,LB
+37189,0.007031094,Mercury,LB
+37189,0.0876676,Nickel,LB
+37189,0.134425,Arsenic,LB
+37189,0.1014904,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.2092028,Organic Carbon portion of PM2.5-PRI,TON
+37187,4.56165,Toluene,LB
+37187,4.05959,Propionaldehyde,LB
+37187,0.016780208,Benzo[b]Fluoranthene,LB
+37187,0.002298854,Benzo[k]Fluoranthene,LB
+37187,0.012636302,Nickel,LB
+37187,0.003286014,Arsenic,LB
+37183,24.40604,"1,3-Butadiene",LB
+37183,1.0514874,Benz[a]Anthracene,LB
+37183,0.6092807,Methane,TON
+37183,0.00506221,Nitrate portion of PM2.5-PRI,TON
+37183,7374.622,Ethyl Benzene,LB
+37183,14.851722,"Benzo[g,h,i,]Perylene",LB
+37183,3.944902,Benzo[k]Fluoranthene,LB
+37183,8.840488,Nitrous Oxide,TON
+37173,0.2488852,"1,3-Butadiene",LB
+37173,1.8697408,Hexane,LB
+37173,1.5313986e-06,Chromium (VI),LB
+37173,0.009687022,Acenaphthylene,LB
+37173,1.535228e-05,Mercury,LB
+37173,0.004290856,Fluorene,LB
+37173,0.11012428,Naphthalene,LB
+37173,5.466324e-06,Nitrate portion of PM2.5-PRI,TON
+37173,5.894262e-05,Sulfate Portion of PM2.5-PRI,TON
+37095,1.1066602,Acrolein,LB
+37095,0.04817344,Anthracene,LB
+37095,0.07616684,Acenaphthylene,LB
+37095,0.04530974,Acenaphthene,LB
+37095,0.7456409,Carbon Monoxide,TON
+37095,0.03216904,PM25-Primary from certain diesel engines,TON
+37095,0.01326912,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.04184139,PM10 Primary (Filt + Cond),TON
+37089,5.154652,Ethyl Benzene,LB
+37089,10.470174,Toluene,LB
+37089,0.9142708,Fluoranthene,LB
+37089,0.002455002,Benzo[k]Fluoranthene,LB
+37089,0.12915672,Chrysene,LB
+37089,155.19906,Formaldehyde,LB
+37089,0.002447074,"Dibenzo[a,h]Anthracene",LB
+37089,1797.272,Carbon Dioxide,TON
+37089,0.001096002,Nitrate portion of PM2.5-PRI,TON
+37089,0.05028679,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,8.473542,Toluene,LB
+37079,0.2083148,Chrysene,LB
+37079,135.51144,Formaldehyde,LB
+37079,3.282214,"2,2,4-Trimethylpentane",LB
+37073,0.4480726,Styrene,LB
+37073,1.0134564,"1,3-Butadiene",LB
+37073,0.7874432,Hexane,LB
+37073,1.6641884,Propionaldehyde,LB
+37073,0.0009162992,Benzo[k]Fluoranthene,LB
+37073,0.04360502,Chrysene,LB
+37073,31.32966,Formaldehyde,LB
+37073,13.61566,Acetaldehyde,LB
+37073,0.2216054,Fluorene,LB
+37073,185.5047,Carbon Dioxide,TON
+37073,0.001032969,Nitrous Oxide,TON
+37073,0.003865331,Ammonia,TON
+37073,0.0004061969,Nitrate portion of PM2.5-PRI,TON
+37059,5.758502,Hexane,LB
+37059,14.761756,Xylenes (Mixed Isomers),LB
+37059,2.101946,Formaldehyde,LB
+37059,0.0004642458,Nickel,LB
+37059,0.01571591,PM10 Primary (Filt + Cond),TON
+37049,7.025084,Ethyl Benzene,LB
+37049,213.5346,Formaldehyde,LB
+37049,0.0215698,Benzo[a]Pyrene,LB
+37049,0.15127796,Benz[a]Anthracene,LB
+37049,10.90582,Carbon Monoxide,TON
+37049,1648.186,Carbon Dioxide,TON
+37049,0.2202627,PM10-Primary from certain diesel engines,TON
+37037,0.02549306,"Benzo[g,h,i,]Perylene",LB
+37037,0.0444464,Benzo[b]Fluoranthene,LB
+37037,0.14894662,Benzo[a]Pyrene,LB
+37037,48.51132,"2,2,4-Trimethylpentane",LB
+37037,6.522424,Acenaphthene,LB
+37037,17.21466,Phenanthrene,LB
+37037,2.112313,PM10 Primary (Filt + Cond),TON
+37037,1.599911,PM2.5 Primary (Filt + Cond),TON
+37037,0.1092664,Sulfur Dioxide,TON
+37037,64.24304,"1,3-Butadiene",LB
+37033,5445.798,Toluene,LB
+37033,145.02814,Benzene,LB
+37025,1.135979,Benzo[a]Pyrene,LB
+37025,3.782112,Benz[a]Anthracene,LB
+37025,0.2766636,Nickel,LB
+37025,0.8057507,Sulfate Portion of PM2.5-PRI,TON
+37025,49.26724,Acrolein,LB
+37025,3.415804,Pyrene,LB
+37025,0.006729182,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,16.973546,"2,2,4-Trimethylpentane",LB
+37025,5407.615,Carbon Dioxide,TON
+37025,0.1708808,Ammonia,TON
+37025,0.04634135,Sulfur Dioxide,TON
+37013,0.019911878,Anthracene,LB
+37013,1.1703134e-06,Chromium (VI),LB
+37013,0.00016635022,"Dibenzo[a,h]Anthracene",LB
+37013,47.74575,Carbon Dioxide,TON
+37013,0.0004033609,Sulfate Portion of PM2.5-PRI,TON
+37015,3.89405e-05,Anthracene,LB
+37015,1.4437026e-05,Benzo[b]Fluoranthene,LB
+37015,1.4437026e-05,Benzo[k]Fluoranthene,LB
+37015,0.03660092,"2,2,4-Trimethylpentane",LB
+37015,4.536372e-05,Acenaphthene,LB
+37015,0.001511631,Nitrogen Oxides,TON
+37015,0.0008322221,Volatile Organic Compounds,TON
+37009,4971.782,Toluene,LB
+37009,879.5122,Hexane,LB
+37005,0.0006145664,"Benzo[g,h,i,]Perylene",LB
+37005,0.0003205232,"Dibenzo[a,h]Anthracene",LB
+37005,0.03293778,Benz[a]Anthracene,LB
+37005,1.066442,Carbon Monoxide,TON
+37005,0.04924047,PM10-Primary from certain diesel engines,TON
+37067,0.011738434,Acenaphthylene,LB
+37067,2.843302,"2,2,4-Trimethylpentane",LB
+37067,0.010819408,Manganese,LB
+37067,0.002514356,Acenaphthene,LB
+37067,0.014697028,Phenanthrene,LB
+37063,16.062652,"2,2,4-Trimethylpentane",LB
+37049,0.002655652,Nickel,LB
+37049,0.0040721,Arsenic,LB
+37049,0.0015840138,Acenaphthene,LB
+37049,0.02356837,PM10 Primary (Filt + Cond),TON
+37049,2.130636,Hexane,LB
+37017,0.0004890086,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.0002227738,Acenaphthene,LB
+37017,0.001957908,Ammonia,TON
+37017,8.0476,Ethyl Benzene,LB
+37017,6.040384,Hexane,LB
+37017,0.00801958,Benzo[k]Fluoranthene,LB
+37017,0.3776056,Chrysene,LB
+37017,23.21062,Benzene,LB
+37017,0.0761046,Manganese,LB
+37017,0.0404724,Nickel,LB
+37017,7.082342,Carbon Monoxide,TON
+37013,0.2268604,Acrolein,LB
+37013,0.000630842,Pyrene,LB
+37013,0.5133236,Methane,TON
+37013,0.7005137,Carbon Monoxide,TON
+37013,0.0004974446,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.3799593,Nitrogen Oxides,TON
+37013,0.000460923,Sulfur Dioxide,TON
+37011,0.012713716,Benzo[b]Fluoranthene,LB
+37011,0.06745612,Fluoranthene,LB
+37011,14.148162,Formaldehyde,LB
+37011,0.0003867512,"Dibenzo[a,h]Anthracene",LB
+37011,47.87782,Benzene,LB
+37011,0.2512296,Phenanthrene,LB
+37011,2.40254,Naphthalene,LB
+37011,457.2872,Carbon Dioxide,TON
+37011,0.0003890799,Sulfate Portion of PM2.5-PRI,TON
+37027,0.8152135,Nitrogen Oxides,TON
+37027,0.9846744,"1,3-Butadiene",LB
+37189,0.273561,PM2.5 Primary (Filt + Cond),TON
+37189,0.01429244,Sulfur Dioxide,TON
+37189,0.009597924,Benzo[b]Fluoranthene,LB
+37189,6.643982,"2,2,4-Trimethylpentane",LB
+37189,113.40538,Acetaldehyde,LB
+37189,0.1139604,Methane,TON
+37073,0.0861036,"Benzo[g,h,i,]Perylene",LB
+37073,0.02742888,Benz[a]Anthracene,LB
+37073,0.012985214,Arsenic,LB
+37073,0.2202396,Fluorene,LB
+37073,0.03794562,PM2.5 Primary (Filt + Cond),TON
+37063,0.8724748,Manganese,LB
+37063,1.328166,Organic Carbon portion of PM2.5-PRI,TON
+37063,6.570024,PM2.5 Primary (Filt + Cond),TON
+37063,4.361978,Anthracene,LB
+37063,0.05218142,"Benzo[g,h,i,]Perylene",LB
+37063,0.06325874,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.02330626,"1,3-Butadiene",LB
+37145,0.2995962,Toluene,LB
+37145,0.2107322,Benzene,LB
+37145,7.11067,Acetaldehyde,LB
+37145,0.003832084,PM2.5 Primary (Filt + Cond),TON
+37145,0.002304313,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.0017869622,Manganese,LB
+37189,0.01054694,PM10 Primary (Filt + Cond),TON
+37183,3.00606,Hexane,LB
+37183,0.3237312,Anthracene,LB
+37183,0.02118766,Benzo[b]Fluoranthene,LB
+37183,10.11619,Benzene,LB
+37183,5.411398e-05,Mercury,LB
+37183,3.880313,Carbon Monoxide,TON
+37183,0.5300832,PM10-Primary from certain diesel engines,TON
+37183,0.001291992,Nitrate portion of PM2.5-PRI,TON
+37183,0.5762113,Volatile Organic Compounds,TON
+37057,0.007678134,Arsenic,LB
+37057,0.07648856,Methane,TON
+37057,0.2586494,PM10-Primary from certain diesel engines,TON
+37057,0.03723344,Ammonia,TON
+37057,7.625456,Acrolein,LB
+37057,0.01966107,Benzo[b]Fluoranthene,LB
+37057,0.12674244,Chrysene,LB
+37057,103.9957,Formaldehyde,LB
+37057,0.00269693,"Dibenzo[a,h]Anthracene",LB
+37057,9.172204,Benzene,LB
+37191,0.8664593,Nitrogen Oxides,TON
+37191,0.009641115,Organic Carbon portion of PM2.5-PRI,TON
+37191,5.439454,Propionaldehyde,LB
+37191,0.5399546,Acenaphthylene,LB
+37191,3.231186,"2,2,4-Trimethylpentane",LB
+37191,0.025238,Manganese,LB
+37153,2.863058,Ethyl Benzene,LB
+37153,0.2918614,Anthracene,LB
+37153,1.792684e-05,Chromium (VI),LB
+37153,0.5529318,Fluoranthene,LB
+37153,0.07779154,Chrysene,LB
+37153,1.2137148e-05,Mercury,LB
+37153,3.235428,Carbon Monoxide,TON
+37153,0.01148592,Ammonia,TON
+37153,0.00365856,Sulfate Portion of PM2.5-PRI,TON
+37075,1.2541886,Hexane,LB
+37075,0.0014548084,Anthracene,LB
+37075,0.002444794,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.002627428,Fluoranthene,LB
+37075,1.5716914,"2,2,4-Trimethylpentane",LB
+37075,0.001041376,Nickel,LB
+37075,0.0016093986,Acenaphthene,LB
+37075,0.003259972,Fluorene,LB
+37075,7.858397e-06,Nitrate portion of PM2.5-PRI,TON
+37069,0.03447754,Acenaphthylene,LB
+37069,8.018928,"2,2,4-Trimethylpentane",LB
+37069,20.18772,Benzene,LB
+37069,0.006817322,Anthracene,LB
+37069,836.9597,Carbon Dioxide,TON
+37069,0.0005205963,Sulfate Portion of PM2.5-PRI,TON
+37019,0.0313022,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.03089648,Benzo[a]Pyrene,LB
+37019,1.794994,Nitrogen Oxides,TON
+37019,0.001446051,Sulfate Portion of PM2.5-PRI,TON
+37019,0.3357886,"1,3-Butadiene",LB
+37019,5.755966,Xylenes (Mixed Isomers),LB
+37019,0.0009194146,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.8153756,Formaldehyde,LB
+37019,0.000922913,Benzo[a]Pyrene,LB
+37019,2.110712e-05,"Dibenzo[a,h]Anthracene",LB
+37019,2.260996,Benzene,LB
+37019,0.130614,Naphthalene,LB
+37019,6.466915,Carbon Dioxide,TON
+37019,0.001793659,PM10 Primary (Filt + Cond),TON
+37015,0.005090468,Anthracene,LB
+37015,1.32106e-06,Chromium (VI),LB
+37015,0.005644178,"Benzo[g,h,i,]Perylene",LB
+37015,0.002120606,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.0016148068,Benzo[b]Fluoranthene,LB
+37015,0.001606786,Chrysene,LB
+37015,6.610869e-06,Nitrate portion of PM2.5-PRI,TON
+37015,0.000990676,Manganese,LB
+37015,57.98168,Carbon Dioxide,TON
+37015,3.665773e-06,Nitrate portion of PM2.5-PRI,TON
+37015,2.365942,Hexane,LB
+37015,0.0469374,Propionaldehyde,LB
+37015,0.004064098,Pyrene,LB
+37015,0.003563152,Fluoranthene,LB
+37015,0.000720376,Chrysene,LB
+37011,226.0426,"1,3-Butadiene",LB
+37011,0.7163206,Benzo[a]Pyrene,LB
+37011,0.3108454,Manganese,LB
+37011,1.429287,Acenaphthene,LB
+37011,19509.67,Carbon Dioxide,TON
+37005,0.00245753,Propionaldehyde,LB
+37005,1.8631704e-08,Chromium (VI),LB
+37005,0.000680719,Phenanthrene,LB
+37005,0.0002535852,Fluorene,LB
+37005,0.003849402,Nitrogen Oxides,TON
+37005,2.66348e-05,Organic Carbon portion of PM2.5-PRI,TON
+37005,5.381657e-05,PM2.5 Primary (Filt + Cond),TON
+37003,0.6378248,Xylenes (Mixed Isomers),LB
+37003,0.0005441248,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.01371269,Chrysene,LB
+37003,3.99526,Acetaldehyde,LB
+37003,0.0297964,Acenaphthene,LB
+37003,0.05288556,Volatile Organic Compounds,TON
+37003,0.2321784,Hexane,LB
+37003,0.4504128,Styrene,LB
+37003,3.155944,Toluene,LB
+37003,0.00200722,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.0008431462,Sulfate Portion of PM2.5-PRI,TON
+37003,0.0007293874,Benzo[a]Pyrene,LB
+37003,0.2949944,Phenanthrene,LB
+37003,226.3849,Carbon Dioxide,TON
+37051,0.01154217,Fluorene,LB
+37051,0.07857559,Ammonia,TON
+37051,16.684524,Toluene,LB
+37051,9.001874,Formaldehyde,LB
+37017,1.1407968,Hexane,LB
+37017,0.0100495,Ammonia,TON
+37017,0.002851924,PM2.5 Primary (Filt + Cond),TON
+37009,0.03523906,Acrolein,LB
+37009,0.0002850936,Anthracene,LB
+37009,2.311496e-05,Mercury,LB
+37009,0.0005917964,Nitrous Oxide,TON
+37009,1.631292e-06,Nitrate portion of PM2.5-PRI,TON
+37145,0.16528028,Styrene,LB
+37145,11.498786,Xylenes (Mixed Isomers),LB
+37145,2.530508e-05,Chromium (VI),LB
+37145,0.009180994,Fluoranthene,LB
+37145,0.003163064,Nickel,LB
+37145,73.08722,Acetaldehyde,LB
+37145,2.62036e-05,Nitrate portion of PM2.5-PRI,TON
+37145,0.5413655,Nitrogen Oxides,TON
+37017,0.0290584,Arsenic,LB
+37017,9.676925,Carbon Monoxide,TON
+37017,1.31,PM2.5 Primary (Filt + Cond),TON
+37017,10.167486,Ethyl Benzene,LB
+37017,23.54708,Toluene,LB
+37017,0.05215354,Benzo[b]Fluoranthene,LB
+37013,0.002812516,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.5749482,Fluoranthene,LB
+37013,89.39224,Formaldehyde,LB
+37013,0.02149938,Manganese,LB
+37013,10.13431,Naphthalene,LB
+37013,7.148394,Nitrogen Oxides,TON
+37021,2408.046,Hexane,LB
+37021,5.281914,Pyrene,LB
+37021,0.9984636,Benzo[k]Fluoranthene,LB
+37021,0.949508,Chrysene,LB
+37021,1.423692,Benzo[a]Pyrene,LB
+37021,0.03246448,Mercury,LB
+37021,0.620658,Arsenic,LB
+37021,0.004916437,Nitrate portion of PM2.5-PRI,TON
+37021,6.570647,PM10 Primary (Filt + Cond),TON
+37019,21.30986,Hexane,LB
+37019,69.93462,Xylenes (Mixed Isomers),LB
+37019,355.0676,Acetaldehyde,LB
+37019,1.961176,PM25-Primary from certain diesel engines,TON
+37011,0.000785398,Benzo[b]Fluoranthene,LB
+37011,0.0007976004,Benz[a]Anthracene,LB
+37011,0.0009208184,Manganese,LB
+37011,9.06268e-06,Mercury,LB
+37003,0.7333384,"1,3-Butadiene",LB
+37003,1.5757022,Xylenes (Mixed Isomers),LB
+37003,0.0011851266,"Benzo[g,h,i,]Perylene",LB
+37003,0.0008171338,Benzo[k]Fluoranthene,LB
+37003,0.0008162424,"Dibenzo[a,h]Anthracene",LB
+37179,0.03227076,Phenanthrene,LB
+37179,0.0004808519,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.0002220063,Sulfur Dioxide,TON
+37179,0.7969504,"1,3-Butadiene",LB
+37197,0.03313434,Ammonia,TON
+37197,0.006280553,Organic Carbon portion of PM2.5-PRI,TON
+37197,11.566378,Toluene,LB
+37197,1.3042992,Propionaldehyde,LB
+37197,0.010416876,Pyrene,LB
+37197,0.010622042,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.0002438038,"Dibenzo[a,h]Anthracene",LB
+37197,0.00490258,Benz[a]Anthracene,LB
+37193,0.4386998,Styrene,LB
+37193,0.016935394,Anthracene,LB
+37193,0.02893348,Fluoranthene,LB
+37193,12.46448,Carbon Monoxide,TON
+37193,0.03648171,PM10 Primary (Filt + Cond),TON
+37193,0.3254574,Volatile Organic Compounds,TON
+37183,0.274341,Chrysene,LB
+37183,124.88872,Benzene,LB
+37183,3.467536,Acenaphthene,LB
+37183,47.954,Ethyl Benzene,LB
+37183,5.24011,Pyrene,LB
+37199,0.1649946,Acenaphthene,LB
+37199,2.691222,Propionaldehyde,LB
+37199,1.202788e-05,Chromium (VI),LB
+37199,0.0006587048,"Benzo[g,h,i,]Perylene",LB
+37199,0.2169726,Fluoranthene,LB
+37199,0.000167582,Benzo[k]Fluoranthene,LB
+37197,2.049732e-05,"Benzo[g,h,i,]Perylene",LB
+37197,0.0002860092,Fluoranthene,LB
+37197,0.00018487662,Acenaphthene,LB
+37197,7.904328e-07,Nitrate portion of PM2.5-PRI,TON
+37195,2.282516,Propionaldehyde,LB
+37195,0.01085755,Nickel,LB
+37195,0.016648288,Arsenic,LB
+37195,0.00946914,Acenaphthene,LB
+37195,8.451028e-05,Nitrate portion of PM2.5-PRI,TON
+37195,247.4632,Formaldehyde,LB
+37195,0.0006942457,Sulfur Dioxide,TON
+37189,1.0557514,Ethyl Benzene,LB
+37189,3.57895,Xylenes (Mixed Isomers),LB
+37183,83.0135,Ethyl Benzene,LB
+37183,9.927334,Fluoranthene,LB
+37183,2556.276,Formaldehyde,LB
+37183,0.3291226,Nickel,LB
+37183,0.16774826,Arsenic,LB
+37183,0.7532827,Ammonia,TON
+37183,0.006076481,Nitrate portion of PM2.5-PRI,TON
+37183,539.0694,Xylenes (Mixed Isomers),LB
+37141,0.00591652,Benzo[k]Fluoranthene,LB
+37141,0.5557944,Chrysene,LB
+37141,9.516102,Fluorene,LB
+37141,36.1635,Nitrogen Oxides,TON
+37141,2.015626,PM10 Primary (Filt + Cond),TON
+37141,1.551952,PM2.5 Primary (Filt + Cond),TON
+37129,94.4821,Propionaldehyde,LB
+37129,10.124538,Pyrene,LB
+37129,0.8065709,Methane,TON
+37129,0.9575451,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.3884895,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.00252613,Acrolein,LB
+37123,0.0002318386,Pyrene,LB
+37123,0.2851774,Xylenes (Mixed Isomers),LB
+37123,0.00010698974,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.0001062233,Benzo[a]Pyrene,LB
+37123,7.03237e-05,Ammonia,TON
+37109,0.5869908,Chrysene,LB
+37109,7.142626,Phenanthrene,LB
+37109,2.8528,PM10-Primary from certain diesel engines,TON
+37109,0.5135683,Ammonia,TON
+37107,0.4091904,Benzene,LB
+37107,4.48289e-06,Arsenic,LB
+37107,0.0009130238,Fluorene,LB
+37107,0.06042276,"1,3-Butadiene",LB
+37107,0.3579914,Hexane,LB
+37107,2.338818e-08,Chromium (VI),LB
+37097,2.761264,Fluoranthene,LB
+37097,0.003513114,"Dibenzo[a,h]Anthracene",LB
+37097,0.5065992,Benz[a]Anthracene,LB
+37097,33.22593,Carbon Monoxide,TON
+37097,0.502181,Elemental Carbon portion of PM2.5-PRI,TON
+37091,5.065692,Benzene,LB
+37091,7.127814e-06,Mercury,LB
+37091,0.006384724,Ammonia,TON
+37091,0.002710719,Sulfur Dioxide,TON
+37103,1.064306,Benzo[k]Fluoranthene,LB
+37103,0.6821572,Manganese,LB
+37103,208.7658,Naphthalene,LB
+37103,1.575861,Nitrous Oxide,TON
+37103,138.9088,Nitrogen Oxides,TON
+37103,0.4495086,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.0010342308,Mercury,LB
+37095,0.0001031682,Chromium (VI),LB
+37095,0.04657454,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,8.003068,Naphthalene,LB
+37093,0.00256216,Manganese,LB
+37093,0.0001519118,Acenaphthene,LB
+37093,0.0003976032,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.00283323,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.003971242,Anthracene,LB
+37093,0.0011997892,Benzo[b]Fluoranthene,LB
+37093,3.510306e-05,"Dibenzo[a,h]Anthracene",LB
+37093,4.250916,Benzene,LB
+37093,2.651092e-05,Nickel,LB
+37093,0.002730889,PM10 Primary (Filt + Cond),TON
+37087,1.563803e-05,Chromium (VI),LB
+37087,0.02032878,Manganese,LB
+37087,1.357794e-05,Mercury,LB
+37087,0.02451178,Methane,TON
+37087,0.03555347,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.007661055,Sulfur Dioxide,TON
+37083,0.002021446,"Dibenzo[a,h]Anthracene",LB
+37083,0.03201219,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.03992164,Acenaphthylene,LB
+37079,0.010034356,Chrysene,LB
+37079,0.8190056,Naphthalene,LB
+37079,0.0002397479,Nitrous Oxide,TON
+37079,0.04260157,Volatile Organic Compounds,TON
+37079,7.302858,Acetaldehyde,LB
+37079,1.689064,Carbon Monoxide,TON
+37079,0.1611694,Nitrogen Oxides,TON
+37079,0.00158601,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.009233599,PM10 Primary (Filt + Cond),TON
+37079,1.3649654,Toluene,LB
+37079,6.40713e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,3.506596e-05,"Dibenzo[a,h]Anthracene",LB
+37087,1.5134354e-07,Chromium (VI),LB
+37087,4.620734e-05,"Dibenzo[a,h]Anthracene",LB
+37087,6.526257,Carbon Dioxide,TON
+37087,0.0002137388,Ammonia,TON
+37087,0.06766125,Nitrogen Oxides,TON
+37083,1.0338734,Nickel,LB
+37083,4849.956,Acetaldehyde,LB
+37083,3780.723,Carbon Monoxide,TON
+37075,0.009927942,"1,3-Butadiene",LB
+37075,9.339932e-05,"Benzo[g,h,i,]Perylene",LB
+37075,2.347372e-05,Chrysene,LB
+37075,0.08083512,Benzene,LB
+37075,1.8189716e-06,Nickel,LB
+37075,0.004054234,Naphthalene,LB
+37075,0.001384862,Volatile Organic Compounds,TON
+37071,6.19949,Organic Carbon portion of PM2.5-PRI,TON
+37071,15.135802,Anthracene,LB
+37071,29.7659,Pyrene,LB
+37071,46163.22,Xylenes (Mixed Isomers),LB
+37069,402.3062,Formaldehyde,LB
+37069,0.8591214,Benz[a]Anthracene,LB
+37069,0.9230351,PM10-Primary from certain diesel engines,TON
+37069,0.001921444,Fluorene,LB
+37069,9.006187e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.0002021581,Nitrous Oxide,TON
+37069,0.0005228521,PM2.5 Primary (Filt + Cond),TON
+37069,0.0001318746,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,3.383572,Toluene,LB
+37069,0.0014109082,Fluoranthene,LB
+37069,0.004327464,Acenaphthylene,LB
+37069,0.10539484,Ethyl Benzene,LB
+37069,0.05279668,Acetaldehyde,LB
+37069,0.0008851864,Phenanthrene,LB
+37069,0.008475564,Naphthalene,LB
+37069,1.669532e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37063,6.268453,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.1114882,Nitrous Oxide,TON
+37063,289.3657,Nitrogen Oxides,TON
+37063,68.0201,"1,3-Butadiene",LB
+37063,222.9908,Acrolein,LB
+37063,0.0010840964,Chromium (VI),LB
+37063,0.345776,Benzo[b]Fluoranthene,LB
+37059,25.24042,Styrene,LB
+37059,92.49478,Propionaldehyde,LB
+37059,9481.208,Carbon Dioxide,TON
+37059,0.002885108,Nitrate portion of PM2.5-PRI,TON
+37059,1.3877,PM2.5 Primary (Filt + Cond),TON
+37059,0.14232458,Benzo[a]Pyrene,LB
+37059,40.96506,"2,2,4-Trimethylpentane",LB
+37059,0.009580402,Anthracene,LB
+37059,3.686376e-06,Chromium (VI),LB
+37059,0.003468156,Chrysene,LB
+37059,3.37244,Formaldehyde,LB
+37059,0.003839904,Manganese,LB
+37059,3.749464,Acetaldehyde,LB
+37059,0.006206519,Nitrous Oxide,TON
+37055,1.1227004,Nickel,LB
+37055,18.06712,PM10 Primary (Filt + Cond),TON
+37055,10.466522,Anthracene,LB
+37055,0.008981546,Chromium (VI),LB
+37055,3.099452,Chrysene,LB
+37047,15.779296,Ethyl Benzene,LB
+37047,2.636312,Acenaphthylene,LB
+37047,0.3591874,Benz[a]Anthracene,LB
+37047,30.74656,Carbon Monoxide,TON
+37039,0.8875994,Acetaldehyde,LB
+37039,0.00559739,Fluorene,LB
+37039,1.316471,Carbon Monoxide,TON
+37039,0.005269669,PM10 Primary (Filt + Cond),TON
+37039,0.0005977674,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.0535642,Propionaldehyde,LB
+37039,0.004063988,Fluoranthene,LB
+37039,2.354796,"2,2,4-Trimethylpentane",LB
+37039,0.0008610074,Benz[a]Anthracene,LB
+37041,789.769,Ethyl Benzene,LB
+37041,26.81266,Styrene,LB
+37041,4913.584,Toluene,LB
+37041,1241.9064,Hexane,LB
+37041,0.9940602,Anthracene,LB
+37041,0.012164226,Mercury,LB
+37041,248.8116,Carbon Monoxide,TON
+37041,0.1423261,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,4.089768,Anthracene,LB
+37035,0.0345766,"Dibenzo[a,h]Anthracene",LB
+37035,0.4388688,Manganese,LB
+37035,552.0492,Acetaldehyde,LB
+37035,3.173521,PM10-Primary from certain diesel engines,TON
+37027,0.04999856,Acenaphthylene,LB
+37027,0.0002740514,"Dibenzo[a,h]Anthracene",LB
+37027,0.022188,Benz[a]Anthracene,LB
+37027,0.12962834,Styrene,LB
+37027,0.8508026,Benzene,LB
+37027,64.55113,Carbon Dioxide,TON
+37027,0.006546982,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.02832133,PM10 Primary (Filt + Cond),TON
+37027,0.02066612,PM2.5 Primary (Filt + Cond),TON
+37027,0.004031509,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.00438259,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.006883117,Sulfur Dioxide,TON
+37027,0.06635452,Benz[a]Anthracene,LB
+37027,0.5697904,Pyrene,LB
+37023,0.4297162,Acenaphthene,LB
+37023,1030.681,Carbon Dioxide,TON
+37023,0.02070414,Ammonia,TON
+37023,0.109547,PM10 Primary (Filt + Cond),TON
+37023,0.00414559,Sulfate Portion of PM2.5-PRI,TON
+37023,2777.274,Ethyl Benzene,LB
+37023,23134.52,Toluene,LB
+37023,616.0454,Benzene,LB
+37013,2391.34,"2,2,4-Trimethylpentane",LB
+37011,0.05784866,Styrene,LB
+37011,0.002115502,Anthracene,LB
+37011,1.1726448e-05,Mercury,LB
+37011,0.0002944248,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.1150754,Nitrogen Oxides,TON
+37011,0.0007995563,Sulfur Dioxide,TON
+37001,0.02392704,"Dibenzo[a,h]Anthracene",LB
+37001,0.1005648,Nickel,LB
+37001,9.143772,Phenanthrene,LB
+37001,0.2787284,Methane,TON
+37001,56.9317,Acrolein,LB
+37001,0.03517394,"Benzo[g,h,i,]Perylene",LB
+37055,1.4053954,Toluene,LB
+37055,0.0004701182,Chrysene,LB
+37055,1.655634,Benzene,LB
+37055,0.001347008,Arsenic,LB
+37055,0.00287044,Phenanthrene,LB
+37055,0.8142753,Carbon Monoxide,TON
+37055,5.371406e-06,Nitrate portion of PM2.5-PRI,TON
+37055,0.003162992,Sulfur Dioxide,TON
+37055,7.402156e-05,Sulfate Portion of PM2.5-PRI,TON
+37003,0.000412221,Benzo[b]Fluoranthene,LB
+37003,0.651522,"2,2,4-Trimethylpentane",LB
+37003,1.6749548,Benzene,LB
+37003,0.003026668,Phenanthrene,LB
+37003,0.03588662,Nitrogen Oxides,TON
+37003,0.004879269,PM10 Primary (Filt + Cond),TON
+37173,0.7270328,Ethyl Benzene,LB
+37173,0.6058538,Benzene,LB
+37161,0.006703042,Styrene,LB
+37161,0.2296966,Hexane,LB
+37161,38.83504,Carbon Dioxide,TON
+37141,19.970128,Toluene,LB
+37141,8.484806,Xylenes (Mixed Isomers),LB
+37139,2.702536,Ethyl Benzene,LB
+37139,0.4840102,Acrolein,LB
+37139,0.004263652,Anthracene,LB
+37139,1.1295208,Propionaldehyde,LB
+37139,57.56928,Acetaldehyde,LB
+37139,0.004685872,Acenaphthene,LB
+37139,0.04536828,PM10 Primary (Filt + Cond),TON
+37099,3.916786,"2,2,4-Trimethylpentane",LB
+37087,0.03346938,"1,3-Butadiene",LB
+37087,0.6296706,Toluene,LB
+37087,0.246484,Hexane,LB
+37087,0.000269332,Anthracene,LB
+37087,0.000459615,Benzo[b]Fluoranthene,LB
+37087,0.00066463,Arsenic,LB
+37087,3.201496e-06,Nitrate portion of PM2.5-PRI,TON
+37087,0.0004720272,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,119.67664,Acrolein,LB
+37021,100.6478,Toluene,LB
+37021,80.79602,Propionaldehyde,LB
+37021,0.7555642,Manganese,LB
+37021,0.0003067552,Mercury,LB
+37021,9.797496,PM10 Primary (Filt + Cond),TON
+37021,0.8956871,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,26.66928,Ethyl Benzene,LB
+37021,61.21408,Toluene,LB
+37015,18.533648,"2,2,4-Trimethylpentane",LB
+37015,0.9514179,Volatile Organic Compounds,TON
+37015,0.4658582,"1,3-Butadiene",LB
+37015,0.008216958,Pyrene,LB
+37015,8.984326,Xylenes (Mixed Isomers),LB
+37015,5.07075e-05,"Dibenzo[a,h]Anthracene",LB
+37015,0.0004627636,Arsenic,LB
+37015,0.00992049,Fluorene,LB
+37015,0.0001043581,Sulfate Portion of PM2.5-PRI,TON
+37009,0.0002675544,Chromium (VI),LB
+37009,0.7883888,Fluoranthene,LB
+37009,0.1442524,Benz[a]Anthracene,LB
+37009,0.0512822,Arsenic,LB
+37009,2.943196,Phenanthrene,LB
+37001,11.75146,Styrene,LB
+37001,24.63804,Hexane,LB
+37001,0.0002686262,Chromium (VI),LB
+37001,1.2076998,Chrysene,LB
+37001,0.0256934,"Dibenzo[a,h]Anthracene",LB
+37001,0.1196448,Nickel,LB
+37001,2.735788,Acenaphthene,LB
+37001,2.367226,PM10-Primary from certain diesel engines,TON
+37085,0.4851812,Propionaldehyde,LB
+37085,0.00932769,Acenaphthylene,LB
+37085,0.004957356,Arsenic,LB
+37085,0.01793698,Methane,TON
+37085,370.4313,Carbon Dioxide,TON
+37085,0.001275988,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.01125613,Sulfur Dioxide,TON
+37085,0.1665172,Volatile Organic Compounds,TON
+37071,0.04405042,Pyrene,LB
+37071,0.09708848,Sulfur Dioxide,TON
+37071,0.045558,Fluorene,LB
+37063,0.8376308,Naphthalene,LB
+37063,0.0001408244,Nitrate portion of PM2.5-PRI,TON
+37063,0.07578005,Sulfur Dioxide,TON
+37005,0.3226266,Propionaldehyde,LB
+37005,0.0017575186,Benzo[a]Pyrene,LB
+37005,1.097511,Carbon Monoxide,TON
+37159,3.61833,Propionaldehyde,LB
+37159,0.02273056,Arsenic,LB
+37159,0.08573914,Phenanthrene,LB
+37159,0.03040514,Fluorene,LB
+37159,19.19614,Carbon Monoxide,TON
+37159,2186.392,Carbon Dioxide,TON
+37177,0.0001727731,PM2.5 Primary (Filt + Cond),TON
+37177,5.765327e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.0013672032,Styrene,LB
+37177,0.005189278,"1,3-Butadiene",LB
+37177,0.004733858,Acrolein,LB
+37177,6.465488e-05,Benzo[k]Fluoranthene,LB
+37177,4.726514e-05,Acenaphthene,LB
+37177,0.0002727348,Phenanthrene,LB
+37161,0.02964208,Styrene,LB
+37161,0.2470184,Propionaldehyde,LB
+37161,1.1955978e-05,Chromium (VI),LB
+37161,0.004745476,Acenaphthylene,LB
+37161,172.517,Carbon Dioxide,TON
+37133,0.07131736,Acrolein,LB
+37133,0.0006492956,Chrysene,LB
+37133,0.003876344,Phenanthrene,LB
+37133,0.006383547,Ammonia,TON
+37133,6.382008e-06,Nitrate portion of PM2.5-PRI,TON
+37133,0.002742345,PM2.5 Primary (Filt + Cond),TON
+37133,0.001091311,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.05021923,Volatile Organic Compounds,TON
+37131,0.003246556,Nickel,LB
+37131,43.77244,Acetaldehyde,LB
+37131,0.0210402,Phenanthrene,LB
+37131,467.5505,Carbon Dioxide,TON
+37131,0.001658172,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.02615889,Ammonia,TON
+37131,7.364728,Xylenes (Mixed Isomers),LB
+37131,0.02020722,"Benzo[g,h,i,]Perylene",LB
+37117,0.0972702,"1,3-Butadiene",LB
+37117,1.8191058,Toluene,LB
+37117,1.5204174,Xylenes (Mixed Isomers),LB
+37117,0.0007542512,Benzo[k]Fluoranthene,LB
+37117,0.003178082,Acenaphthylene,LB
+37117,0.006028278,Methane,TON
+37117,0.06590797,Nitrogen Oxides,TON
+37159,9.092688,Pyrene,LB
+37159,1.2692426,Chrysene,LB
+37159,0.1706886,Nickel,LB
+37159,0.05165707,Nitrous Oxide,TON
+37159,107.2625,Nitrogen Oxides,TON
+37159,5.702395,Volatile Organic Compounds,TON
+37163,0.0174475,Fluorene,LB
+37163,0.003419031,Organic Carbon portion of PM2.5-PRI,TON
+37163,5.657026,Ethyl Benzene,LB
+37163,1.0493208,"1,3-Butadiene",LB
+37163,0.007483852,Anthracene,LB
+37163,0.003749878,Benzo[k]Fluoranthene,LB
+37163,2.764226,Formaldehyde,LB
+37153,6.50058,Styrene,LB
+37153,16.442968,"1,3-Butadiene",LB
+37153,95.91012,Toluene,LB
+37153,30.8836,Propionaldehyde,LB
+37153,3.994656,Pyrene,LB
+37153,2.693528,Acenaphthylene,LB
+37153,0.010017024,"Dibenzo[a,h]Anthracene",LB
+37153,28.31662,"2,2,4-Trimethylpentane",LB
+37153,70.84012,Benzene,LB
+37151,8.63114e-06,Chromium (VI),LB
+37151,0.02067978,Fluoranthene,LB
+37151,0.3141704,Styrene,LB
+37151,8.65286e-05,Mercury,LB
+37145,0.12306476,Ethyl Benzene,LB
+37145,0.05105418,Styrene,LB
+37145,0.03654916,Pyrene,LB
+37145,7.275022e-07,Chromium (VI),LB
+37145,0.00013038662,Arsenic,LB
+37145,0.011754204,Acenaphthene,LB
+37145,28.3463,Carbon Dioxide,TON
+37145,13.910258,Hexane,LB
+37145,0.007162664,Anthracene,LB
+37145,1.0952182e-05,Mercury,LB
+37145,0.04562318,Phenanthrene,LB
+37145,6.464156e-06,Nitrate portion of PM2.5-PRI,TON
+37167,0.004932196,Fluoranthene,LB
+37167,2.764916e-05,Arsenic,LB
+37167,1.0925344,Acetaldehyde,LB
+37003,0.002456863,Nitrate portion of PM2.5-PRI,TON
+37003,21.28689,Nitrogen Oxides,TON
+37003,42.6404,Ethyl Benzene,LB
+37003,73.89626,Xylenes (Mixed Isomers),LB
+37003,5.965276,Fluoranthene,LB
+37003,4.487488,Acenaphthene,LB
+37003,0.6292137,Elemental Carbon portion of PM2.5-PRI,TON
+37077,2.00436e-06,Nickel,LB
+37077,7.955528e-05,Sulfate Portion of PM2.5-PRI,TON
+37067,59.59616,Xylenes (Mixed Isomers),LB
+37067,0.07294752,Benzo[a]Pyrene,LB
+37067,0.04734946,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.003164491,Sulfate Portion of PM2.5-PRI,TON
+37079,1.6715928e-06,Chromium (VI),LB
+37079,0.17772398,"2,2,4-Trimethylpentane",LB
+37079,0.0001707979,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.0922799,Pyrene,LB
+37121,0.0070096,Benzo[a]Pyrene,LB
+37121,0.00028607,"Dibenzo[a,h]Anthracene",LB
+37121,3.969478,Acetaldehyde,LB
+37121,0.9975914,Naphthalene,LB
+37121,0.009919979,Organic Carbon portion of PM2.5-PRI,TON
+37127,26.67764,"2,2,4-Trimethylpentane",LB
+37127,84.56984,Benzene,LB
+37127,0.16320174,Nickel,LB
+37127,0.5204335,Ammonia,TON
+37127,88.03808,Xylenes (Mixed Isomers),LB
+37127,0.0245515,Benzo[k]Fluoranthene,LB
+37179,126.95678,Acrolein,LB
+37179,4.260386,Acenaphthene,LB
+37179,51.79265,Carbon Monoxide,TON
+37179,0.631958,Sulfur Dioxide,TON
+37081,5.771026e-06,Arsenic,LB
+37081,0.01115001,Carbon Monoxide,TON
+37081,0.0007578222,Ethyl Benzene,LB
+37033,4.918846,Ethyl Benzene,LB
+37033,18.55222,Xylenes (Mixed Isomers),LB
+37033,6.22449,Benzene,LB
+37035,0.06981252,Benzo[a]Pyrene,LB
+37035,14.560732,"2,2,4-Trimethylpentane",LB
+37035,0.07977608,Nickel,LB
+37035,18.951248,Ethyl Benzene,LB
+37035,7.897164,Styrene,LB
+37035,14.404488,Hexane,LB
+37035,0.02082658,Benzo[b]Fluoranthene,LB
+37161,0.00829314,Arsenic,LB
+37161,0.02453466,Sulfur Dioxide,TON
+37161,0.0005125125,Sulfate Portion of PM2.5-PRI,TON
+37161,0.7760928,"1,3-Butadiene",LB
+37161,0.6683036,Acrolein,LB
+37161,15.04342,Toluene,LB
+37161,1.5863476,Propionaldehyde,LB
+37161,0.012607662,Pyrene,LB
+37099,0.0003421286,Anthracene,LB
+37099,0.08755024,Propionaldehyde,LB
+37099,0.6964464,Formaldehyde,LB
+37099,3.858534e-05,Mercury,LB
+37099,65.42075,Carbon Dioxide,TON
+37165,0.7615482,Anthracene,LB
+37165,2.202304,Pyrene,LB
+37165,17.711762,Xylenes (Mixed Isomers),LB
+37165,1.1559532,Acenaphthylene,LB
+37165,0.02718078,Sulfur Dioxide,TON
+37165,2.700262,Phenanthrene,LB
+37159,0.02139192,Styrene,LB
+37159,0.0005526902,Benzo[a]Pyrene,LB
+37159,7.021182e-06,Nickel,LB
+37159,0.0017827354,Fluorene,LB
+37159,0.0005377603,PM2.5 Primary (Filt + Cond),TON
+37151,0.14563832,Benzo[b]Fluoranthene,LB
+37151,25.42618,"1,3-Butadiene",LB
+37151,2.662176,Anthracene,LB
+37151,7.241014,Pyrene,LB
+37151,0.000405439,Chromium (VI),LB
+37151,0.800174,Methane,TON
+37151,101.8717,Nitrogen Oxides,TON
+37151,5.764708,PM10 Primary (Filt + Cond),TON
+37135,0.9918124,Benzene,LB
+37135,0.0014720378,Acenaphthene,LB
+37135,0.0009748245,Sulfur Dioxide,TON
+37135,0.000325739,Sulfate Portion of PM2.5-PRI,TON
+37171,0.0001743828,Ammonia,TON
+37171,6.828673e-06,Nitrate portion of PM2.5-PRI,TON
+37171,0.0005360005,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.0024512,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.001210531,Benz[a]Anthracene,LB
+37171,0.5876526,Acetaldehyde,LB
+37171,6.952691,Carbon Dioxide,TON
+37171,1.0296532e-07,Chromium (VI),LB
+37169,24.31298,Styrene,LB
+37169,0.00505765,Benzo[k]Fluoranthene,LB
+37169,178.14678,Naphthalene,LB
+37169,9.587727,Volatile Organic Compounds,TON
+37159,21.18038,Ethyl Benzene,LB
+37159,0.509554,Acrolein,LB
+37159,0.02331528,Anthracene,LB
+37159,0.12326344,Acenaphthylene,LB
+37159,0.009107726,Chrysene,LB
+37159,0.0003466996,"Dibenzo[a,h]Anthracene",LB
+37159,8.978696,Acetaldehyde,LB
+37159,0.02171475,Methane,TON
+37159,0.03180314,PM10 Primary (Filt + Cond),TON
+37159,0.01612976,PM2.5 Primary (Filt + Cond),TON
+37149,1.751013e-05,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.0004982216,Propionaldehyde,LB
+37149,0.05045018,Xylenes (Mixed Isomers),LB
+37149,4.88231e-09,Chromium (VI),LB
+37149,3.896292e-05,Fluoranthene,LB
+37149,0.00011170254,Acenaphthylene,LB
+37149,9.358098e-07,Arsenic,LB
+37149,8.820723e-06,Nitrous Oxide,TON
+37149,0.01761174,"Benzo[g,h,i,]Perylene",LB
+37149,3.492176e-05,Mercury,LB
+37149,0.01316041,PM10 Primary (Filt + Cond),TON
+37149,0.001987924,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.1765115,PM2.5 Primary (Filt + Cond),TON
+37151,0.2067796,Volatile Organic Compounds,TON
+37151,1.8612856,Propionaldehyde,LB
+37151,0.0009924974,Benzo[k]Fluoranthene,LB
+37151,0.00098579,"Dibenzo[a,h]Anthracene",LB
+37151,0.07936448,Benz[a]Anthracene,LB
+37151,0.006616824,Nickel,LB
+37151,0.001510228,Nitrous Oxide,TON
+37147,169.95812,Xylenes (Mixed Isomers),LB
+37147,0.03749872,"Benzo[g,h,i,]Perylene",LB
+37147,6.702812,Fluoranthene,LB
+37147,45.04666,"2,2,4-Trimethylpentane",LB
+37147,0.766324,Manganese,LB
+37147,592.3086,Acetaldehyde,LB
+37147,53905.9,Carbon Dioxide,TON
+37147,2.909196,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.9986499,Organic Carbon portion of PM2.5-PRI,TON
+37147,8.682388,Benzo[a]Pyrene,LB
+37147,25221.36,Benzene,LB
+37147,8.1181,Manganese,LB
+37147,374606.7,Carbon Dioxide,TON
+37147,38.19117,PM10 Primary (Filt + Cond),TON
+37145,3.241352,Toluene,LB
+37145,1.0212722,Hexane,LB
+37145,5.030158e-05,Benzo[k]Fluoranthene,LB
+37145,0.18888074,Acenaphthylene,LB
+37145,4.971064e-05,"Dibenzo[a,h]Anthracene",LB
+37145,16.885564,Acetaldehyde,LB
+37145,2.779473,Carbon Monoxide,TON
+37145,0.004552572,Ammonia,TON
+37145,0.2747542,Nitrogen Oxides,TON
+37143,1.1298388,Ethyl Benzene,LB
+37143,0.3095772,Pyrene,LB
+37143,0.0008715524,"Dibenzo[a,h]Anthracene",LB
+37143,0.001086563,Arsenic,LB
+37143,14.653024,Acetaldehyde,LB
+37143,0.001952734,Sulfur Dioxide,TON
+37133,4589.716,Carbon Dioxide,TON
+37133,8.666272,Nitrogen Oxides,TON
+37133,0.0944089,Sulfur Dioxide,TON
+37133,14.941858,Styrene,LB
+37133,24.71244,"1,3-Butadiene",LB
+37133,1710.4422,Hexane,LB
+37133,0.2017068,Benzo[k]Fluoranthene,LB
+37131,0.567879,Propionaldehyde,LB
+37131,0.0005483792,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.02416566,Benz[a]Anthracene,LB
+37131,0.0003363262,Nitrous Oxide,TON
+37131,0.005206226,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.002657525,Sulfur Dioxide,TON
+37095,0.0739018,"1,3-Butadiene",LB
+37095,0.006000862,Anthracene,LB
+37095,0.0005791184,Manganese,LB
+37095,9.72434e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.01385517,Volatile Organic Compounds,TON
+37093,3.27442,"1,3-Butadiene",LB
+37093,5.382756,Propionaldehyde,LB
+37093,0.1053434,PM10-Primary from certain diesel engines,TON
+37093,0.1358951,PM10 Primary (Filt + Cond),TON
+37073,0.00011862978,Benzo[k]Fluoranthene,LB
+37073,0.374756,Benzene,LB
+37073,0.02766414,Fluorene,LB
+37073,0.01942715,PM10-Primary from certain diesel engines,TON
+37001,7.79218,Ethyl Benzene,LB
+37001,28.7726,Xylenes (Mixed Isomers),LB
+37001,8.254106e-06,Chromium (VI),LB
+37001,0.005852088,Benz[a]Anthracene,LB
+37001,8.275026e-05,Mercury,LB
+37001,3.855238,Acetaldehyde,LB
+37001,0.012743732,Acenaphthene,LB
+37001,0.02581382,Fluorene,LB
+37001,0.6791749,Nitrogen Oxides,TON
+37001,0.00676931,Sulfur Dioxide,TON
+37055,0.06255522,Methane,TON
+37055,0.01152822,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.0007819505,Sulfate Portion of PM2.5-PRI,TON
+37055,6.160628e-05,Chromium (VI),LB
+37055,0.014612762,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.007741844,Benzo[k]Fluoranthene,LB
+37055,0.006733366,Benz[a]Anthracene,LB
+37055,0.007700538,Nickel,LB
+37055,87.61674,Acetaldehyde,LB
+37033,1.1815196,Acetaldehyde,LB
+37033,0.00018951044,Fluorene,LB
+37033,0.009262398,Nitrogen Oxides,TON
+37011,0.00011896086,"Dibenzo[a,h]Anthracene",LB
+37011,40.57372,Acetaldehyde,LB
+37011,0.005114898,Nitrous Oxide,TON
+37011,1.9017604,Acetaldehyde,LB
+37011,0.0001238362,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.0005786226,Sulfur Dioxide,TON
+37011,0.09283962,Ethyl Benzene,LB
+37011,0.00014565756,Anthracene,LB
+37011,0.00015049274,Benzo[b]Fluoranthene,LB
+37011,0.2502546,Formaldehyde,LB
+37173,0.18657714,Ethyl Benzene,LB
+37173,0.3293054,Hexane,LB
+37173,0.0006891868,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,0.0006416466,Fluorene,LB
+37175,0.5816356,Hexane,LB
+37155,0.00590082,Methane,TON
+37155,6.031118e-06,Nitrate portion of PM2.5-PRI,TON
+37155,7.105646e-05,Sulfate Portion of PM2.5-PRI,TON
+37155,0.542611,Hexane,LB
+37155,1.1145782,Formaldehyde,LB
+37149,6.785596,Toluene,LB
+37139,0.07649602,Volatile Organic Compounds,TON
+37119,8.62451,Ethyl Benzene,LB
+37119,2.001074,"1,3-Butadiene",LB
+37119,0.0295168,Nickel,LB
+37119,0.02808428,Fluorene,LB
+37119,0.002737184,Sulfate Portion of PM2.5-PRI,TON
+37087,0.08875422,Acrolein,LB
+37087,0.8952548,Hexane,LB
+37087,1.2092744e-05,Chromium (VI),LB
+37087,0.0015117682,Fluoranthene,LB
+37087,2.578912,Benzene,LB
+37087,0.007271083,Methane,TON
+37087,1.290139,Carbon Monoxide,TON
+37087,0.001604317,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.01352267,PM10 Primary (Filt + Cond),TON
+37007,0.2837511,Methane,TON
+37007,293.112,Formaldehyde,LB
+37007,24.73052,Benzene,LB
+37007,28.51208,Xylenes (Mixed Isomers),LB
+37177,1.4152896,Hexane,LB
+37177,2.744452,Propionaldehyde,LB
+37177,0.00232849,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,2.60843e-05,Mercury,LB
+37177,0.011232408,Nickel,LB
+37177,0.2558043,PM10-Primary from certain diesel engines,TON
+37177,0.2353368,PM25-Primary from certain diesel engines,TON
+37177,0.2447608,PM2.5 Primary (Filt + Cond),TON
+37175,42.99864,Hexane,LB
+37175,0.0002927984,"Dibenzo[a,h]Anthracene",LB
+37175,0.01070976,Manganese,LB
+37175,0.000114113,Mercury,LB
+37175,0.01852629,Ammonia,TON
+37165,9.205252,Benzene,LB
+37163,0.785082,Fluorene,LB
+37163,0.1741338,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.00234955,Nitrous Oxide,TON
+37163,0.9297648,Pyrene,LB
+37163,0.0018282938,Benzo[k]Fluoranthene,LB
+37161,0.0003985276,"Benzo[g,h,i,]Perylene",LB
+37161,0.0002618928,Benzo[k]Fluoranthene,LB
+37161,0.8693088,Benzene,LB
+37161,0.000343823,Arsenic,LB
+37161,0.02144619,PM25-Primary from certain diesel engines,TON
+37161,0.0001881406,Nitrous Oxide,TON
+37161,0.02907656,PM10 Primary (Filt + Cond),TON
+37159,0.03270332,Arsenic,LB
+37159,5.499946,Phenanthrene,LB
+37159,29.36527,Carbon Monoxide,TON
+37159,4508.498,Carbon Dioxide,TON
+37159,0.7387231,PM10-Primary from certain diesel engines,TON
+37159,15.354602,Hexane,LB
+37159,0.02556908,Benzo[b]Fluoranthene,LB
+37159,0.08571724,Benzo[a]Pyrene,LB
+37159,57.20094,Benzene,LB
+37155,26.50744,"1,3-Butadiene",LB
+37155,50.52582,Toluene,LB
+37155,19.784248,Hexane,LB
+37155,0.00018842208,Mercury,LB
+37155,346.1672,Acetaldehyde,LB
+37155,9.938894,Phenanthrene,LB
+37155,5.823336,Fluorene,LB
+37155,0.2065924,Ammonia,TON
+37155,0.01038957,Nitrate portion of PM2.5-PRI,TON
+37155,0.1284401,Sulfur Dioxide,TON
+37159,13.261484,Phenanthrene,LB
+37159,126.76876,Naphthalene,LB
+37159,558.8509,Carbon Monoxide,TON
+37159,68.19175,Nitrogen Oxides,TON
+37159,3.565372,Fluoranthene,LB
+37159,57.78722,Styrene,LB
+37159,334.0272,Styrene,LB
+37159,15707.142,Hexane,LB
+37159,8.644506,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,6.948562,Manganese,LB
+37159,0.2066054,Mercury,LB
+37159,5124.382,Acetaldehyde,LB
+37159,28.94188,Fluorene,LB
+37159,742.3478,Naphthalene,LB
+37159,3519.516,Carbon Monoxide,TON
+37159,0.02860936,Nitrate portion of PM2.5-PRI,TON
+37153,1.2231622,Styrene,LB
+37153,195.8085,Toluene,LB
+37153,0.01928089,Chrysene,LB
+37153,0.0002652162,Mercury,LB
+37153,2.717764,Naphthalene,LB
+37153,0.03834153,Methane,TON
+37147,0.9198156,Acenaphthene,LB
+37147,0.2649093,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.01319444,"Benzo[g,h,i,]Perylene",LB
+37147,0.008866894,"Dibenzo[a,h]Anthracene",LB
+37139,1076.8228,"1,3-Butadiene",LB
+37139,5696.076,Hexane,LB
+37139,16450.214,Xylenes (Mixed Isomers),LB
+37139,2343.396,Formaldehyde,LB
+37139,0.782126,Arsenic,LB
+37139,7.651883,PM10 Primary (Filt + Cond),TON
+37139,0.8618548,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,1.721422,Sulfur Dioxide,TON
+37139,0.06869023,Sulfate Portion of PM2.5-PRI,TON
+37137,22.79586,Styrene,LB
+37137,0.2853514,Benzo[b]Fluoranthene,LB
+37137,0.008930408,"Dibenzo[a,h]Anthracene",LB
+37137,0.01140782,Mercury,LB
+37137,212.6101,Carbon Monoxide,TON
+37137,0.1019401,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.4712361,Nitrous Oxide,TON
+37137,22.79331,Nitrogen Oxides,TON
+37137,380.1736,Hexane,LB
+37137,962.875,Xylenes (Mixed Isomers),LB
+37137,7.495532,Volatile Organic Compounds,TON
+37133,0.4786959,PM10-Primary from certain diesel engines,TON
+37131,244.8484,Hexane,LB
+37131,0.09908374,Benzo[k]Fluoranthene,LB
+37131,0.09622914,Chrysene,LB
+37131,0.336822,Acenaphthene,LB
+37131,0.3454464,Ammonia,TON
+37131,0.1009859,Sulfur Dioxide,TON
+37123,37.05366,Formaldehyde,LB
+37123,3.834464,Acetaldehyde,LB
+37123,65.65133,Carbon Dioxide,TON
+37123,0.007705161,Nitrous Oxide,TON
+37123,0.015560372,"1,3-Butadiene",LB
+37123,0.14790064,Toluene,LB
+37123,0.001585868,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.7179074,Anthracene,LB
+37117,11.883236,Propionaldehyde,LB
+37117,0.008449326,"Benzo[g,h,i,]Perylene",LB
+37117,0.2613814,Chrysene,LB
+37117,28.07774,Naphthalene,LB
+37117,32.87371,Nitrogen Oxides,TON
+37111,0.015676402,Manganese,LB
+37111,0.008584794,Nickel,LB
+37111,0.001328801,Nitrous Oxide,TON
+37111,0.0007086183,Nitrate portion of PM2.5-PRI,TON
+37111,0.0252218,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.005503198,Sulfur Dioxide,TON
+37111,0.005811254,Sulfate Portion of PM2.5-PRI,TON
+37111,1.6661968,Ethyl Benzene,LB
+37111,0.012275344,Benzo[b]Fluoranthene,LB
+37111,0.0016806966,"Dibenzo[a,h]Anthracene",LB
+37111,0.00434248,Benzo[b]Fluoranthene,LB
+37111,0.00434248,Benzo[k]Fluoranthene,LB
+37111,0.00350941,Chrysene,LB
+37111,0.002624606,Manganese,LB
+37111,0.00378957,Methane,TON
+37111,0.001279652,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.003235924,Nitrous Oxide,TON
+37119,137.9793,Styrene,LB
+37119,659.6942,Propionaldehyde,LB
+37119,2450.892,Xylenes (Mixed Isomers),LB
+37119,12.783626,Chrysene,LB
+37119,10.80064,Manganese,LB
+37119,0.005258136,Mercury,LB
+37119,357.7866,Carbon Monoxide,TON
+37119,20951.96,Formaldehyde,LB
+37119,1.10581,"Dibenzo[a,h]Anthracene",LB
+37119,1654.1388,Styrene,LB
+37119,319313.6,Toluene,LB
+37119,188340.68,Xylenes (Mixed Isomers),LB
+37119,0.16621454,Chromium (VI),LB
+37119,30.35968,Benzo[k]Fluoranthene,LB
+37119,20.77618,Nickel,LB
+37119,26670.56,Acetaldehyde,LB
+37119,50.05942,Methane,TON
+37119,42.7771,Nitrous Oxide,TON
+37119,1542.748,Volatile Organic Compounds,TON
+37019,0.0002479554,Acrolein,LB
+37019,1.1541424e-05,Anthracene,LB
+37019,8.147728e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,7.29288e-05,Phenanthrene,LB
+37019,5.870541e-06,Nitrous Oxide,TON
+37019,1.661891e-05,PM10 Primary (Filt + Cond),TON
+37019,8.649162e-06,PM2.5 Primary (Filt + Cond),TON
+37019,2.393719e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.4403541,Ammonia,TON
+37017,0.4340973,PM10 Primary (Filt + Cond),TON
+37195,9.805362,Phenanthrene,LB
+37195,0.7339151,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.02108655,Nitrous Oxide,TON
+37187,1.102251,Pyrene,LB
+37187,7.186154e-05,Chromium (VI),LB
+37187,0.004828976,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.8619876,Fluoranthene,LB
+37187,7.818644,"2,2,4-Trimethylpentane",LB
+37187,23.79918,Naphthalene,LB
+37187,0.6352257,PM10-Primary from certain diesel engines,TON
+37167,134.17602,Propionaldehyde,LB
+37167,0.063165,Benzo[b]Fluoranthene,LB
+37167,0.083851,Arsenic,LB
+37167,12183.85,Carbon Dioxide,TON
+37167,0.004275256,Nitrate portion of PM2.5-PRI,TON
+37167,0.3257819,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.05294554,Sulfate Portion of PM2.5-PRI,TON
+37161,3.916104e-05,Mercury,LB
+37161,0.008188254,Arsenic,LB
+37161,661.91,Carbon Dioxide,TON
+37161,1.4766448,Styrene,LB
+37159,935.7966,Benzene,LB
+37157,778.228,Hexane,LB
+37157,0.3384944,Anthracene,LB
+37157,0.00015389302,Chromium (VI),LB
+37157,0.11319096,Chrysene,LB
+37157,0.0004625091,Nitrate portion of PM2.5-PRI,TON
+37135,0.02123022,Benzo[b]Fluoranthene,LB
+37135,6.662549,Carbon Monoxide,TON
+37135,0.411979,PM25-Primary from certain diesel engines,TON
+37137,0.0002296335,Nitrous Oxide,TON
+37137,0.0006704781,Sulfur Dioxide,TON
+37137,0.1946252,"1,3-Butadiene",LB
+37137,0.0491676,Fluoranthene,LB
+37137,0.0002052774,"Dibenzo[a,h]Anthracene",LB
+37131,5.349632e-05,Anthracene,LB
+37131,20.08796,Formaldehyde,LB
+37129,0.01220579,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.1178838,Ammonia,TON
+37129,6.112429,Nitrogen Oxides,TON
+37129,0.04519083,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,4.197282,Styrene,LB
+37129,19.848982,"1,3-Butadiene",LB
+37129,394.2898,Xylenes (Mixed Isomers),LB
+37129,6.732004e-05,Chromium (VI),LB
+37129,0.04691472,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.008415188,Nickel,LB
+37129,0.18571292,Acenaphthene,LB
+37129,0.1120125,Methane,TON
+37123,22.05704,Toluene,LB
+37123,23.1391,Xylenes (Mixed Isomers),LB
+37123,0.15317188,Benzo[a]Pyrene,LB
+37123,0.09555492,Manganese,LB
+37123,1.244254,PM25-Primary from certain diesel engines,TON
+37123,0.08974357,Sulfur Dioxide,TON
+37117,6.109528,Ethyl Benzene,LB
+37117,6.273042,"1,3-Butadiene",LB
+37117,0.7088132,Anthracene,LB
+37117,3.686554e-05,Mercury,LB
+37117,0.6381628,Acenaphthene,LB
+37117,2.393078,Phenanthrene,LB
+37105,127.5641,Nitrogen Oxides,TON
+37105,2.408392,Sulfur Dioxide,TON
+37105,7.438144,"Benzo[g,h,i,]Perylene",LB
+37105,2.521532,Manganese,LB
+37105,0.07830132,Mercury,LB
+37103,14.882644,"1,3-Butadiene",LB
+37103,0.0390947,Benzo[a]Pyrene,LB
+37103,41.98328,Benzene,LB
+37103,0.4351172,PM2.5 Primary (Filt + Cond),TON
+37095,0.0005084611,Volatile Organic Compounds,TON
+37095,0.017020116,Ethyl Benzene,LB
+37095,0.0005271574,Propionaldehyde,LB
+37095,1.8876714e-05,"Benzo[g,h,i,]Perylene",LB
+37095,0.00011613494,Acenaphthylene,LB
+37095,0.02306714,"2,2,4-Trimethylpentane",LB
+37095,0.01019838,Carbon Monoxide,TON
+37093,17.436492,"2,2,4-Trimethylpentane",LB
+37093,6.205068,Xylenes (Mixed Isomers),LB
+37093,0.0006668042,Benzo[k]Fluoranthene,LB
+37093,0.012105628,Acenaphthylene,LB
+37093,0.8566724,Formaldehyde,LB
+37093,1.229536,Carbon Monoxide,TON
+37087,3.77395,Propionaldehyde,LB
+37087,0.004943648,Arsenic,LB
+37087,1.551709,Carbon Monoxide,TON
+37087,0.07935729,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.02639977,Ammonia,TON
+37083,5.420878,Styrene,LB
+37083,20.81806,Xylenes (Mixed Isomers),LB
+37083,2.081246,Acenaphthylene,LB
+37083,0.5294514,Chrysene,LB
+37083,0.01115042,"Dibenzo[a,h]Anthracene",LB
+37083,7.636396e-05,Mercury,LB
+37083,0.015967254,Arsenic,LB
+37083,39.60458,Naphthalene,LB
+37083,0.07908228,Methane,TON
+37083,1.785659,PM2.5 Primary (Filt + Cond),TON
+37083,1.5486678,Styrene,LB
+37083,1.2503638,Acrolein,LB
+37083,237.9592,Toluene,LB
+37083,57.3442,Hexane,LB
+37083,4.045618e-05,Chromium (VI),LB
+37083,0.04086704,Benzo[b]Fluoranthene,LB
+37083,0.007754094,Arsenic,LB
+37083,3.444104,Naphthalene,LB
+37083,1570.661,Carbon Dioxide,TON
+37085,6.438494e-05,Fluoranthene,LB
+37085,1.663238e-05,Manganese,LB
+37085,3.034646e-07,Mercury,LB
+37085,0.0001041552,PM10 Primary (Filt + Cond),TON
+37085,1.328852e-06,Sulfate Portion of PM2.5-PRI,TON
+37075,0.9619084,Hexane,LB
+37075,1.995418,Propionaldehyde,LB
+37075,0.0002430734,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.1623758,Fluoranthene,LB
+37075,3.57043,Benzene,LB
+37075,0.00513677,Nickel,LB
+37075,0.01652607,Methane,TON
+37075,2.014722,Carbon Monoxide,TON
+37075,0.03819454,PM10-Primary from certain diesel engines,TON
+37075,0.005136936,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.1118528,Styrene,LB
+37075,0.8216476,Xylenes (Mixed Isomers),LB
+37075,2.529208e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,1.4018226e-05,Benzo[k]Fluoranthene,LB
+37075,0.007443753,Methane,TON
+37075,0.0003948183,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,12.319664,Propionaldehyde,LB
+37069,1.8762734,Fluoranthene,LB
+37069,1.277553,Acenaphthylene,LB
+37069,0.3602102,Chrysene,LB
+37069,101.19822,Acetaldehyde,LB
+37069,1.6925166,Fluorene,LB
+37067,218.139,"2,2,4-Trimethylpentane",LB
+37053,0.01464444,PM10 Primary (Filt + Cond),TON
+37053,0.01135981,PM2.5 Primary (Filt + Cond),TON
+37053,0.0730513,Styrene,LB
+37053,0.12381232,Hexane,LB
+37053,0.0375728,Fluoranthene,LB
+37053,4.924008,Formaldehyde,LB
+37053,0.0009444644,Manganese,LB
+37153,0.658591,Acrolein,LB
+37153,0.03022104,"Benzo[g,h,i,]Perylene",LB
+37153,0.011217328,Benzo[a]Pyrene,LB
+37153,4.051026e-05,Nitrate portion of PM2.5-PRI,TON
+37113,0.005126612,Benzo[b]Fluoranthene,LB
+37113,0.004524796,Benz[a]Anthracene,LB
+37113,0.009386174,Manganese,LB
+37113,0.012380364,Fluorene,LB
+37113,568.2513,Carbon Dioxide,TON
+37113,3.216254e-05,Nitrate portion of PM2.5-PRI,TON
+37113,0.04133589,PM10 Primary (Filt + Cond),TON
+37113,0.01300106,PM2.5 Primary (Filt + Cond),TON
+37113,0.01728122,Sulfur Dioxide,TON
+37113,0.011344206,Pyrene,LB
+37097,6.818554,Ethyl Benzene,LB
+37083,0.2163722,Styrene,LB
+37083,0.735753,Acrolein,LB
+37083,7.358076,"2,2,4-Trimethylpentane",LB
+37083,0.006996442,Benz[a]Anthracene,LB
+37083,0.011589138,Manganese,LB
+37083,0.0004886776,Mercury,LB
+37083,0.01515262,Fluorene,LB
+37083,0.06402809,Methane,TON
+37169,6.685332,Acrolein,LB
+37169,0.001718738,Sulfate Portion of PM2.5-PRI,TON
+37169,0.0002370908,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,2.371756,"2,2,4-Trimethylpentane",LB
+37169,2.464188e-05,Mercury,LB
+37157,1.2165382,Styrene,LB
+37157,6.379462,Toluene,LB
+37157,2.252292,Hexane,LB
+37157,0.00216783,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,38.43518,Acetaldehyde,LB
+37157,9.675286,Naphthalene,LB
+37157,0.1638918,PM25-Primary from certain diesel engines,TON
+37157,0.1000129,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.002893967,Nitrous Oxide,TON
+37157,0.01936067,Ammonia,TON
+37157,0.0005333387,Nitrate portion of PM2.5-PRI,TON
+37157,6.555835,Nitrogen Oxides,TON
+37157,0.1770068,PM2.5 Primary (Filt + Cond),TON
+37145,8609.85,"2,2,4-Trimethylpentane",LB
+37145,0.04648798,Mercury,LB
+37145,0.579681,Nickel,LB
+37145,0.8888282,Arsenic,LB
+37145,6.490555,Methane,TON
+37199,1.6702732,"1,3-Butadiene",LB
+37199,0.0013173614,Benzo[k]Fluoranthene,LB
+37199,0.169033,Acenaphthene,LB
+37199,0.3552288,Fluorene,LB
+37199,0.1202322,PM10-Primary from certain diesel engines,TON
+37199,0.1106042,PM25-Primary from certain diesel engines,TON
+37199,0.1025838,PM10-Primary from certain diesel engines,TON
+37199,0.06124198,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.005658037,Ammonia,TON
+37199,0.02362405,Organic Carbon portion of PM2.5-PRI,TON
+37199,2.736496,Toluene,LB
+37199,1.1311728,Hexane,LB
+37199,1.077406,"2,2,4-Trimethylpentane",LB
+37193,0.158966,"1,3-Butadiene",LB
+37193,0.0008481352,Chrysene,LB
+37193,0.006025556,Phenanthrene,LB
+37193,0.05545042,Naphthalene,LB
+37193,0.08351214,Nitrogen Oxides,TON
+37193,16.52648,Benzene,LB
+37193,0.1838831,PM10-Primary from certain diesel engines,TON
+37193,0.003500924,Nitrous Oxide,TON
+37193,0.03453475,Ammonia,TON
+37193,0.1754732,PM2.5 Primary (Filt + Cond),TON
+37193,1.016963,Volatile Organic Compounds,TON
+37193,11.795882,Toluene,LB
+37193,4.40614,Hexane,LB
+37193,0.008484152,Benzo[k]Fluoranthene,LB
+37193,7.847996,Formaldehyde,LB
+37193,1.288015,Naphthalene,LB
+37185,0.002781568,Methane,TON
+37185,0.002041322,PM10 Primary (Filt + Cond),TON
+37185,0.0003242625,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,20.7792,Toluene,LB
+37189,0.08187252,Benzo[b]Fluoranthene,LB
+37189,1.8512336,Acenaphthylene,LB
+37189,322.4406,Formaldehyde,LB
+37189,0.013010978,Arsenic,LB
+37189,4.210362,Phenanthrene,LB
+37189,0.09290708,Methane,TON
+37189,1.449188,PM25-Primary from certain diesel engines,TON
+37181,128.93056,Styrene,LB
+37181,8.178236,Fluoranthene,LB
+37181,25.19614,Acenaphthylene,LB
+37181,1.8562084,Benz[a]Anthracene,LB
+37181,1.7046038,Manganese,LB
+37181,1994.4606,Acetaldehyde,LB
+37181,1325.855,Carbon Monoxide,TON
+37181,143.6456,Nitrogen Oxides,TON
+37077,1.7951506,Benzene,LB
+37077,0.1646932,Volatile Organic Compounds,TON
+37051,3.180956,Toluene,LB
+37051,0.0013640168,Chrysene,LB
+37051,2.372204,Formaldehyde,LB
+37051,0.00015467026,Mercury,LB
+37051,0.01262024,Methane,TON
+37051,1.475493e-05,Nitrate portion of PM2.5-PRI,TON
+37051,0.002891267,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.09284643,Volatile Organic Compounds,TON
+37041,0.2193174,Acrolein,LB
+37041,0.00395006,Pyrene,LB
+37041,0.0014341596,Chrysene,LB
+37041,0.002491516,Manganese,LB
+37041,0.2287794,Nitrogen Oxides,TON
+37031,1.593343,Toluene,LB
+37031,3.187394e-05,"Dibenzo[a,h]Anthracene",LB
+37031,0.3708968,Ethyl Benzene,LB
+37031,0.018002808,Styrene,LB
+37031,0.0012606966,Fluorene,LB
+37031,0.00542724,Methane,TON
+37031,0.002034647,Nitrous Oxide,TON
+37031,0.00266479,PM2.5 Primary (Filt + Cond),TON
+37031,0.04651758,Volatile Organic Compounds,TON
+37031,9.210046,"2,2,4-Trimethylpentane",LB
+37097,0.0686906,Styrene,LB
+37097,0.004925702,Pyrene,LB
+37097,0.006825144,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.004363402,Fluoranthene,LB
+37097,0.00350913,Benzo[k]Fluoranthene,LB
+37097,0.02285433,Methane,TON
+37097,0.0003553002,Sulfate Portion of PM2.5-PRI,TON
+37089,118.73602,Acetaldehyde,LB
+37089,0.02315264,Nitrous Oxide,TON
+37089,0.07012245,Ammonia,TON
+37089,5.610492,Ethyl Benzene,LB
+37089,7.585724e-05,Chromium (VI),LB
+37089,0.0221768,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,7.683644,"2,2,4-Trimethylpentane",LB
+37169,0.007286636,"Benzo[g,h,i,]Perylene",LB
+37169,7.804572,Ethyl Benzene,LB
+37169,6.535646,"1,3-Butadiene",LB
+37169,2.440502,Phenanthrene,LB
+37169,24.88012,Naphthalene,LB
+37165,31.3057,Hexane,LB
+37165,0.03222744,Anthracene,LB
+37165,1.9248212,Naphthalene,LB
+37165,0.02484029,Nitrous Oxide,TON
+37163,0.2688744,Hexane,LB
+37163,0.002207686,Benzo[b]Fluoranthene,LB
+37163,0.07965398,Fluoranthene,LB
+37163,0.02617367,PM25-Primary from certain diesel engines,TON
+37163,0.5279925,Nitrogen Oxides,TON
+37163,0.0007857049,Sulfate Portion of PM2.5-PRI,TON
+37155,136.35076,Hexane,LB
+37157,14.90757,Acrolein,LB
+37157,0.5087504,Anthracene,LB
+37157,0.0016370534,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,126.2371,Carbon Monoxide,TON
+37157,0.3098514,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.1064064,Sulfur Dioxide,TON
+37157,13.99615,Volatile Organic Compounds,TON
+37157,0.03237356,"Benzo[g,h,i,]Perylene",LB
+37157,2326.334,Formaldehyde,LB
+37157,0.2596086,Manganese,LB
+37157,8.095398,Acenaphthene,LB
+37157,0.08096344,Anthracene,LB
+37157,1.8588764,Propionaldehyde,LB
+37157,0.0296815,Benzo[k]Fluoranthene,LB
+37157,0.513459,Phenanthrene,LB
+37157,4.900068,Naphthalene,LB
+37157,1327.465,Carbon Dioxide,TON
+37157,0.05381953,Ammonia,TON
+37147,0.3955388,Styrene,LB
+37147,0.8053152,Hexane,LB
+37147,0.006993538,Benzo[b]Fluoranthene,LB
+37147,0.0009703142,Benzo[k]Fluoranthene,LB
+37147,32.09186,Formaldehyde,LB
+37147,0.3767854,Phenanthrene,LB
+37147,0.02034492,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,110.7494,Acetaldehyde,LB
+37135,0.9597317,PM10 Primary (Filt + Cond),TON
+37135,8.464814,Ethyl Benzene,LB
+37119,2356.646,Styrene,LB
+37119,2064.898,Acrolein,LB
+37119,81219.5,Hexane,LB
+37119,86.73544,Anthracene,LB
+37119,169.81944,Pyrene,LB
+37119,221470.2,Xylenes (Mixed Isomers),LB
+37119,31506.2,Formaldehyde,LB
+37119,63.47592,Manganese,LB
+37117,1.123084e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37117,3.62304e-06,Nickel,LB
+37117,5.555574e-06,Arsenic,LB
+37107,0.002091436,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.264857,Fluoranthene,LB
+37107,0.0011248638,"Dibenzo[a,h]Anthracene",LB
+37107,0.918908,"2,2,4-Trimethylpentane",LB
+37107,0.00236847,Arsenic,LB
+37107,0.01801848,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.71549,Styrene,LB
+37097,3.651862,"1,3-Butadiene",LB
+37097,0.585358,Propionaldehyde,LB
+37097,82.68936,Xylenes (Mixed Isomers),LB
+37097,0.0519871,"Benzo[g,h,i,]Perylene",LB
+37097,0.011158608,Chrysene,LB
+37097,0.011848718,Benz[a]Anthracene,LB
+37097,9.78371,Acetaldehyde,LB
+37097,1.6036202,Naphthalene,LB
+37097,6.061499e-05,Nitrate portion of PM2.5-PRI,TON
+37085,0.3848696,Hexane,LB
+37085,0.0004258388,"Dibenzo[a,h]Anthracene",LB
+37085,0.3801416,"2,2,4-Trimethylpentane",LB
+37085,129.1543,Carbon Dioxide,TON
+37085,0.001024679,Sulfate Portion of PM2.5-PRI,TON
+37143,4746.094,Toluene,LB
+37143,1189.0168,Hexane,LB
+37143,2842.276,Xylenes (Mixed Isomers),LB
+37143,0.001474516,Chromium (VI),LB
+37137,0.001215881,Phenanthrene,LB
+37137,4.542811e-06,Sulfate Portion of PM2.5-PRI,TON
+37133,74.73458,Toluene,LB
+37133,0.02853782,"Benzo[g,h,i,]Perylene",LB
+37133,24.17176,"2,2,4-Trimethylpentane",LB
+37133,0.09621536,Arsenic,LB
+37133,2.147496,Acenaphthene,LB
+37133,0.8100573,Methane,TON
+37133,34330.11,Carbon Dioxide,TON
+37133,3.285196,PM10-Primary from certain diesel engines,TON
+37133,1.842371,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.008201707,Nitrate portion of PM2.5-PRI,TON
+37127,57.3216,Ethyl Benzene,LB
+37127,2.146048,Styrene,LB
+37127,0.08054136,Anthracene,LB
+37127,0.061682,Benzo[a]Pyrene,LB
+37127,0.009461466,Arsenic,LB
+37127,43.40918,Carbon Monoxide,TON
+37127,0.07817169,Ammonia,TON
+37127,1.697802,Volatile Organic Compounds,TON
+37117,9.83799e-05,Chromium (VI),LB
+37117,1.5638178,Fluoranthene,LB
+37117,0.005772116,"Dibenzo[a,h]Anthracene",LB
+37117,0.6596346,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.1205907,Ammonia,TON
+37115,4.238894,Acrolein,LB
+37115,1.2970662,Hexane,LB
+37115,2.900924,Xylenes (Mixed Isomers),LB
+37115,0.0014082904,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.005532476,Benzo[b]Fluoranthene,LB
+37115,0.31565,Fluoranthene,LB
+37115,0.07623474,Benz[a]Anthracene,LB
+37097,3.918852,Elemental Carbon portion of PM2.5-PRI,TON
+37097,163.7146,Nitrogen Oxides,TON
+37097,0.5445615,Sulfur Dioxide,TON
+37097,125.9361,Acrolein,LB
+37097,44.54894,Hexane,LB
+37097,77.41658,Propionaldehyde,LB
+37097,14.005942,Pyrene,LB
+37097,10.636168,Fluoranthene,LB
+37097,3.362192,Benz[a]Anthracene,LB
+37097,0.2593624,Nickel,LB
+37097,10.066198,Fluorene,LB
+37097,179.83322,Naphthalene,LB
+37105,0.16995518,Benzo[b]Fluoranthene,LB
+37105,403.9342,"2,2,4-Trimethylpentane",LB
+37105,1.154158,Fluorene,LB
+37105,29.58792,Naphthalene,LB
+37105,11009.75,Carbon Dioxide,TON
+37105,9.768554,Volatile Organic Compounds,TON
+37073,2.735142e-06,Chromium (VI),LB
+37073,0.0004325756,"Benzo[g,h,i,]Perylene",LB
+37073,0.002506788,Manganese,LB
+37073,0.0005751398,Arsenic,LB
+37073,0.11039204,Phenanthrene,LB
+37073,0.06239326,Fluorene,LB
+37073,0.002915714,Ammonia,TON
+37073,0.0001266247,Nitrate portion of PM2.5-PRI,TON
+37073,0.02426724,PM2.5 Primary (Filt + Cond),TON
+37073,0.7213344,Propionaldehyde,LB
+37073,1.2836678,Xylenes (Mixed Isomers),LB
+37073,6.383506,Acetaldehyde,LB
+37073,108.5477,Carbon Dioxide,TON
+37073,0.002349931,PM10-Primary from certain diesel engines,TON
+37073,0.002161942,PM25-Primary from certain diesel engines,TON
+37073,0.008261531,PM10 Primary (Filt + Cond),TON
+37073,0.0004080288,Sulfate Portion of PM2.5-PRI,TON
+37077,6.546546,Styrene,LB
+37077,43.11732,Toluene,LB
+37077,0.10856548,Nickel,LB
+37077,16.32899,Carbon Monoxide,TON
+37077,2.853594,Volatile Organic Compounds,TON
+37053,0.0395401,Chrysene,LB
+37053,4.587816,Benzene,LB
+37053,0.16398156,Acenaphthene,LB
+37053,0.5047656,Phenanthrene,LB
+37053,560.3587,Carbon Dioxide,TON
+37053,0.01285912,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,1.2047022,Hexane,LB
+37053,0.0007384386,Benzo[k]Fluoranthene,LB
+37061,10691.164,Ethyl Benzene,LB
+37061,437.8334,Styrene,LB
+37061,332.2748,Acrolein,LB
+37061,58609.72,Toluene,LB
+37061,376.6536,Propionaldehyde,LB
+37061,16.422256,"Benzo[g,h,i,]Perylene",LB
+37061,4.799248,Benzo[k]Fluoranthene,LB
+37061,17916.1,Benzene,LB
+37049,36.0624,Acetaldehyde,LB
+37049,0.2262696,Fluorene,LB
+37049,2.123706,Volatile Organic Compounds,TON
+37049,424.2948,Toluene,LB
+37049,0.5092936,Acenaphthylene,LB
+37049,91.35456,"2,2,4-Trimethylpentane",LB
+37047,22.67228,"1,3-Butadiene",LB
+37047,18.566356,Hexane,LB
+37047,1.775209,Benz[a]Anthracene,LB
+37047,0.7707959,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.0004274944,Acenaphthylene,LB
+37039,0.0002928344,Arsenic,LB
+37039,0.009307556,Nitrous Oxide,TON
+37039,1.146427e-06,Nitrate portion of PM2.5-PRI,TON
+37039,0.3564212,Nitrogen Oxides,TON
+37039,0.001776219,Organic Carbon portion of PM2.5-PRI,TON
+37043,19.014124,Acrolein,LB
+37043,0.769101,Anthracene,LB
+37043,17.233318,Propionaldehyde,LB
+37043,1.3182746,Fluoranthene,LB
+37043,0.1761038,Arsenic,LB
+37043,0.2258652,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.1210384,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,1.9277738e-08,Chromium (VI),LB
+37033,51.84136,Formaldehyde,LB
+37033,9.179706e-07,Nickel,LB
+37033,4.279326,Acetaldehyde,LB
+37033,59.80514,Carbon Dioxide,TON
+37033,0.005853915,PM2.5 Primary (Filt + Cond),TON
+37033,0.479978,"2,2,4-Trimethylpentane",LB
+37033,0.05323962,Benz[a]Anthracene,LB
+37033,1.8121648,Benzene,LB
+37033,5.344824e-06,Mercury,LB
+37033,0.003246448,Nickel,LB
+37033,0.4244822,Carbon Monoxide,TON
+37033,0.0054576,Ammonia,TON
+37029,7.844378,Acrolein,LB
+37029,7.905922,Toluene,LB
+37029,0.002904404,"Dibenzo[a,h]Anthracene",LB
+37029,3.19786e-05,Mercury,LB
+37029,1.1969932,Phenanthrene,LB
+37029,0.001253053,Nitrate portion of PM2.5-PRI,TON
+37027,2.108346,Acrolein,LB
+37027,0.15296198,Fluoranthene,LB
+37027,893.3876,Carbon Dioxide,TON
+37027,0.0864772,Nitrous Oxide,TON
+37027,0.0007242864,Sulfate Portion of PM2.5-PRI,TON
+37129,15312.812,Hexane,LB
+37129,229.736,Propionaldehyde,LB
+37129,0.13759766,"Dibenzo[a,h]Anthracene",LB
+37129,4628.812,Acetaldehyde,LB
+37129,3162.551,Carbon Monoxide,TON
+37129,4.024962,Organic Carbon portion of PM2.5-PRI,TON
+37021,1.0137362,Ethyl Benzene,LB
+37021,0.7623638,Hexane,LB
+37021,0.739418,"2,2,4-Trimethylpentane",LB
+37021,4.19974e-06,Mercury,LB
+37021,0.1045721,Acenaphthene,LB
+37021,0.1813248,Volatile Organic Compounds,TON
+37055,0.0002517722,Acenaphthene,LB
+37055,0.0007342713,Sulfur Dioxide,TON
+37055,2.27728e-05,"Benzo[g,h,i,]Perylene",LB
+37055,67.71464,Formaldehyde,LB
+37055,2.318486e-06,Nickel,LB
+37151,83473.7,Xylenes (Mixed Isomers),LB
+37151,0.019127574,Chromium (VI),LB
+37151,10.101116,Chrysene,LB
+37151,15.09608,PM2.5 Primary (Filt + Cond),TON
+37151,8.073885,Sulfur Dioxide,TON
+37139,14.96704,Styrene,LB
+37139,1370.25,Xylenes (Mixed Isomers),LB
+37139,444.6122,"2,2,4-Trimethylpentane",LB
+37139,0.14541666,Manganese,LB
+37139,0.412806,Methane,TON
+37139,7486.23,Carbon Dioxide,TON
+37139,0.3426797,Nitrous Oxide,TON
+37101,3.506446,"1,3-Butadiene",LB
+37101,0.5710776,Propionaldehyde,LB
+37101,0.013993862,Chrysene,LB
+37101,0.01845209,Ammonia,TON
+37117,1000.4924,Xylenes (Mixed Isomers),LB
+37117,0.770579,Pyrene,LB
+37117,0.4650052,Acenaphthene,LB
+37117,5972.409,Carbon Dioxide,TON
+37117,0.0004733502,Nitrate portion of PM2.5-PRI,TON
+37117,13.33284,Nitrogen Oxides,TON
+37117,7.78152,Volatile Organic Compounds,TON
+37189,0.001197428,Pyrene,LB
+37189,0.000680736,Benzo[b]Fluoranthene,LB
+37189,0.0009776886,Arsenic,LB
+37189,0.0012452882,Fluorene,LB
+37189,0.6927814,Carbon Monoxide,TON
+37185,0.5890068,Pyrene,LB
+37185,0.003219882,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.4188726,Fluorene,LB
+37169,0.3253624,Fluoranthene,LB
+37169,2.008002,"2,2,4-Trimethylpentane",LB
+37127,10.637096,Styrene,LB
+37127,7.819854,Propionaldehyde,LB
+37127,0.8158294,Pyrene,LB
+37127,184.97026,Formaldehyde,LB
+37127,0.2335608,Benzo[a]Pyrene,LB
+37127,0.0431302,Manganese,LB
+37127,126.1983,Carbon Monoxide,TON
+37133,0.008348486,Manganese,LB
+37133,0.9299547,Carbon Monoxide,TON
+37133,0.003606733,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,0.02865508,Acrolein,LB
+37133,1.3370844e-05,Benz[a]Anthracene,LB
+37133,26.57842,Styrene,LB
+37133,165.38228,"1,3-Butadiene",LB
+37133,1.6584026,Fluoranthene,LB
+37133,0.3124688,Benzo[k]Fluoranthene,LB
+37133,0.3164852,Benz[a]Anthracene,LB
+37133,1.1375922,Acenaphthene,LB
+37133,0.8168153,Methane,TON
+37133,0.7405705,Nitrous Oxide,TON
+37133,0.5767911,PM2.5 Primary (Filt + Cond),TON
+37127,17.736634,Propionaldehyde,LB
+37127,0.00011349602,Chromium (VI),LB
+37127,0.0016913552,"Dibenzo[a,h]Anthracene",LB
+37127,0.05886678,Manganese,LB
+37127,0.09788801,Ammonia,TON
+37127,0.3432678,Propionaldehyde,LB
+37127,48.10416,Xylenes (Mixed Isomers),LB
+37127,0.008097308,Benzo[k]Fluoranthene,LB
+37127,0.09577382,Phenanthrene,LB
+37127,0.007420885,Ammonia,TON
+37127,7.928724e-05,Benzo[b]Fluoranthene,LB
+37127,0.2438124,Benzene,LB
+37127,2.525809e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.9884682,Toluene,LB
+37127,0.005811068,Propionaldehyde,LB
+37127,0.0004501568,Pyrene,LB
+37121,0.2217464,Propionaldehyde,LB
+37121,1.4118726e-06,Chromium (VI),LB
+37121,0.02268134,Acenaphthylene,LB
+37121,1.3598348e-06,Mercury,LB
+37121,0.001529247,Ammonia,TON
+37117,0.0004289685,Sulfur Dioxide,TON
+37117,0.00019398304,Acenaphthene,LB
+37117,0.0009562278,Phenanthrene,LB
+37117,0.01133471,PM10 Primary (Filt + Cond),TON
+37117,0.03173516,Ethyl Benzene,LB
+37117,0.2055984,Acrolein,LB
+37111,2.226744,Ethyl Benzene,LB
+37111,0.001309095,Nitrous Oxide,TON
+37125,18.075608,Benzene,LB
+37125,0.0002237732,Nickel,LB
+37125,0.01495489,Methane,TON
+37125,0.002894029,Ammonia,TON
+37125,1.068303e-05,Nitrate portion of PM2.5-PRI,TON
+37125,0.3527588,Nitrogen Oxides,TON
+37125,9.243706e-05,Sulfate Portion of PM2.5-PRI,TON
+37125,0.5018261,Volatile Organic Compounds,TON
+37125,0.01317316,Anthracene,LB
+37123,1.5237228,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,3153.438,Benzene,LB
+37123,16.360666,Phenanthrene,LB
+37123,1.705225,PM2.5 Primary (Filt + Cond),TON
+37123,1.030706,Sulfur Dioxide,TON
+37123,61.62192,Volatile Organic Compounds,TON
+37115,566.5232,Ethyl Benzene,LB
+37115,124.74548,Benzene,LB
+37107,0.0890373,Fluoranthene,LB
+37107,0.015166228,Chrysene,LB
+37107,0.0004038562,"Dibenzo[a,h]Anthracene",LB
+37103,0.011837312,"1,3-Butadiene",LB
+37103,0.12094848,Acrolein,LB
+37103,0.0003437076,Pyrene,LB
+37103,1.161269e-05,"Benzo[g,h,i,]Perylene",LB
+37103,0.000558878,Phenanthrene,LB
+37103,0.0002947444,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.004562913,Nitrous Oxide,TON
+37103,0.0002607053,Sulfur Dioxide,TON
+37097,1.063936e-07,Chromium (VI),LB
+37097,5.066148e-06,Nickel,LB
+37097,2.007125,Carbon Monoxide,TON
+37097,303.6958,Carbon Dioxide,TON
+37097,0.007529955,Ammonia,TON
+37097,7.983245e-06,Nitrate portion of PM2.5-PRI,TON
+37097,0.009690678,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,269.6756,Hexane,LB
+37091,0.089044,Benzo[k]Fluoranthene,LB
+37091,0.0909286,Chrysene,LB
+37091,3975.324,Carbon Dioxide,TON
+37091,0.127901,PM2.5 Primary (Filt + Cond),TON
+37091,0.08338678,Sulfur Dioxide,TON
+37089,0.0003206276,Mercury,LB
+37089,5.128634,Fluorene,LB
+37089,1.703807,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.00998437,Nitrate portion of PM2.5-PRI,TON
+37087,28.28982,Ethyl Benzene,LB
+37087,10.25423,Styrene,LB
+37087,63.72298,Acrolein,LB
+37087,7.45324,Pyrene,LB
+37087,0.0334031,"Benzo[g,h,i,]Perylene",LB
+37087,1.7911814,Benz[a]Anthracene,LB
+37087,0.13695006,Nickel,LB
+37087,0.4355616,Ammonia,TON
+37087,85.85922,Nitrogen Oxides,TON
+37073,75.40478,Formaldehyde,LB
+37073,0.06099576,Benzo[a]Pyrene,LB
+37073,0.4593271,PM10 Primary (Filt + Cond),TON
+37073,0.3620987,PM2.5 Primary (Filt + Cond),TON
+37073,0.012935684,"Benzo[g,h,i,]Perylene",LB
+37073,0.003908304,Chrysene,LB
+37073,5.06757,Acetaldehyde,LB
+37073,0.0821392,Phenanthrene,LB
+37073,0.00202891,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.1173045,PM25-Primary from certain diesel engines,TON
+37067,0.1005547,Ammonia,TON
+37067,0.06512179,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.0216141,Sulfate Portion of PM2.5-PRI,TON
+37067,0.002628898,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,2.98852,Acenaphthylene,LB
+37059,0.018266342,"Benzo[g,h,i,]Perylene",LB
+37059,0.0868647,Benzo[b]Fluoranthene,LB
+37059,2.319669,PM10-Primary from certain diesel engines,TON
+37059,0.1410148,Sulfur Dioxide,TON
+37057,0.001310363,Nitrate portion of PM2.5-PRI,TON
+37051,179.64854,Propionaldehyde,LB
+37051,25.37692,Pyrene,LB
+37051,648.4072,Xylenes (Mixed Isomers),LB
+37051,19.603254,Fluoranthene,LB
+37051,0.07096966,Benzo[k]Fluoranthene,LB
+37051,1.669356,Benzo[a]Pyrene,LB
+37051,493.765,Naphthalene,LB
+37049,2.535364,Acenaphthylene,LB
+37049,0.680672,Chrysene,LB
+37049,0.18475892,Manganese,LB
+37049,1.5088156,Acenaphthene,LB
+37049,0.2397048,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,50.31876,Propionaldehyde,LB
+37039,56.35584,Xylenes (Mixed Isomers),LB
+37039,4.05099,Fluoranthene,LB
+37039,0.002523574,Benzo[k]Fluoranthene,LB
+37039,914.187,Formaldehyde,LB
+37039,0.0996162,Manganese,LB
+37039,0.00018228298,Mercury,LB
+37039,8.123744,Phenanthrene,LB
+37031,72.16338,Carbon Monoxide,TON
+37031,0.01654723,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.2195188,Ammonia,TON
+37031,387.9778,Ethyl Benzene,LB
+37031,11.565444,"1,3-Butadiene",LB
+37031,0.2968634,"Benzo[g,h,i,]Perylene",LB
+37031,0.08665438,Chrysene,LB
+37025,1.6540782,Pyrene,LB
+37025,5.6459e-05,Chromium (VI),LB
+37025,0.08361716,Benzo[a]Pyrene,LB
+37025,15.51462,Nitrogen Oxides,TON
+37085,8.234374,"1,3-Butadiene",LB
+37085,20.87358,Acrolein,LB
+37085,1.410671,Pyrene,LB
+37085,20.5528,Xylenes (Mixed Isomers),LB
+37085,0.2004016,Benz[a]Anthracene,LB
+37085,0.015295144,Arsenic,LB
+37085,1.508026,Volatile Organic Compounds,TON
+37075,0.03131776,Acrolein,LB
+37075,7.07001,Toluene,LB
+37075,0.04131228,Propionaldehyde,LB
+37075,4.4808,Xylenes (Mixed Isomers),LB
+37075,0.0005062878,Chrysene,LB
+37075,5.060532e-05,Manganese,LB
+37075,5.590866e-07,Mercury,LB
+37063,23.27378,Xylenes (Mixed Isomers),LB
+37063,8.356292e-05,Mercury,LB
+37063,0.04779702,Nickel,LB
+37063,0.017471924,Arsenic,LB
+37063,3.574548,Phenanthrene,LB
+37063,12.22577,Carbon Monoxide,TON
+37059,43.88592,Formaldehyde,LB
+37059,0.001455855,"Dibenzo[a,h]Anthracene",LB
+37059,0.11439768,Benz[a]Anthracene,LB
+37059,18.773466,Acetaldehyde,LB
+37059,0.001240185,Nitrous Oxide,TON
+37059,0.004907303,Sulfate Portion of PM2.5-PRI,TON
+37059,0.5908428,Styrene,LB
+37061,0.000640247,Pyrene,LB
+37061,51.60604,Formaldehyde,LB
+37061,0.0005691552,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.002421989,Ammonia,TON
+37061,1.113116e-06,Nitrate portion of PM2.5-PRI,TON
+37061,0.006267469,PM2.5 Primary (Filt + Cond),TON
+37055,1.7684496,Ethyl Benzene,LB
+37055,0.0007105076,Benz[a]Anthracene,LB
+37055,2.490646,Benzene,LB
+37055,2.925452e-05,Arsenic,LB
+37055,0.05525815,Nitrogen Oxides,TON
+37053,0.2357966,Ethyl Benzene,LB
+37053,0.005995648,Acrolein,LB
+37053,0.3046864,"2,2,4-Trimethylpentane",LB
+37053,0.1182882,Acetaldehyde,LB
+37053,0.0004490512,PM10 Primary (Filt + Cond),TON
+37053,5.830529e-05,Sulfur Dioxide,TON
+37053,0.006867075,Volatile Organic Compounds,TON
+37047,23.8835,Benzene,LB
+37039,0.1670066,Volatile Organic Compounds,TON
+37039,8.906596,Hexane,LB
+37039,0.006137774,Anthracene,LB
+37039,0.002053222,Benzo[b]Fluoranthene,LB
+37039,0.010484504,Fluoranthene,LB
+37039,0.03267634,Acenaphthylene,LB
+37039,7.915494,"2,2,4-Trimethylpentane",LB
+37039,0.3725138,Naphthalene,LB
+37039,0.002158657,Nitrous Oxide,TON
+37039,0.001000049,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.0009853025,PM2.5 Primary (Filt + Cond),TON
+37033,0.0005538166,Sulfur Dioxide,TON
+37033,0.0006315712,Chrysene,LB
+37033,0.002452148,Acenaphthene,LB
+37033,0.013297378,Phenanthrene,LB
+37023,0.5118134,Anthracene,LB
+37023,0.0017515496,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,193.72864,Formaldehyde,LB
+37023,0.04485718,Ammonia,TON
+37023,0.007908396,Sulfate Portion of PM2.5-PRI,TON
+37023,8.493584,Acenaphthene,LB
+37023,2.252932,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,3.582278,Sulfur Dioxide,TON
+37023,7.345364,Anthracene,LB
+37023,164.82006,Propionaldehyde,LB
+37023,22692.18,Xylenes (Mixed Isomers),LB
+37023,13.674024,"Benzo[g,h,i,]Perylene",LB
+37023,3.315024,Benzo[k]Fluoranthene,LB
+37023,5.116078,Benzo[a]Pyrene,LB
+37173,33.56598,Styrene,LB
+37173,5651.718,Toluene,LB
+37167,16423.2,Benzene,LB
+37167,1.6739674,Arsenic,LB
+37167,878.9584,Naphthalene,LB
+37167,13.35896,Ammonia,TON
+37159,3.758508,Benzene,LB
+37159,17.614348,Acetaldehyde,LB
+37159,0.04177587,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.13116536,Anthracene,LB
+37159,0.002071498,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.283127,Fluoranthene,LB
+37155,0.17325348,Benzene,LB
+37155,0.0017982162,Manganese,LB
+37155,0.0009962946,Phenanthrene,LB
+37155,0.008083978,Nitrous Oxide,TON
+37155,0.05499904,Volatile Organic Compounds,TON
+37149,29.44856,Hexane,LB
+37149,0.2941634,Ammonia,TON
+37161,8.352464,Propionaldehyde,LB
+37161,0.008711262,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.9399802,"2,2,4-Trimethylpentane",LB
+37137,0.3524662,Acetaldehyde,LB
+37137,0.002126192,Fluorene,LB
+37137,21.00681,Carbon Dioxide,TON
+37137,0.0007942548,Nitrous Oxide,TON
+37137,0.0005232654,PM2.5 Primary (Filt + Cond),TON
+37137,0.0001949943,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,1.398907e-05,Sulfate Portion of PM2.5-PRI,TON
+37137,0.0002807452,Benzo[k]Fluoranthene,LB
+37131,26.98322,Ethyl Benzene,LB
+37131,0.8118098,Acrolein,LB
+37131,0.19495002,Acenaphthylene,LB
+37131,13.426686,Acetaldehyde,LB
+37131,2.216104,Naphthalene,LB
+37117,0.00955242,Manganese,LB
+37117,0.2594378,Fluorene,LB
+37117,6.650482,Naphthalene,LB
+37117,1.731352,Nitrogen Oxides,TON
+37117,3.655945,Volatile Organic Compounds,TON
+37107,0.00018484486,Mercury,LB
+37107,0.02627973,Sulfate Portion of PM2.5-PRI,TON
+37107,0.12743676,Styrene,LB
+37107,0.6782764,"1,3-Butadiene",LB
+37107,0.10881162,Acrolein,LB
+37107,0.004679318,Anthracene,LB
+37107,0.0015334728,Benzo[b]Fluoranthene,LB
+37107,5.887572,Benzene,LB
+37107,0.00423098,Methane,TON
+37105,1327.1772,Ethyl Benzene,LB
+37099,84.23966,Acetaldehyde,LB
+37099,1.119029,Volatile Organic Compounds,TON
+37099,6.23774,"1,3-Butadiene",LB
+37099,4.882404,Hexane,LB
+37099,10.255898,Propionaldehyde,LB
+37093,0.269706,"1,3-Butadiene",LB
+37093,0.694474,Acrolein,LB
+37093,0.6903658,Toluene,LB
+37093,9.203704,Formaldehyde,LB
+37093,3.886512,Acetaldehyde,LB
+37093,0.02723322,Acenaphthene,LB
+37093,227.0374,Carbon Dioxide,TON
+37093,0.04289651,PM10-Primary from certain diesel engines,TON
+37093,0.003337607,Ammonia,TON
+37093,0.825435,Nitrogen Oxides,TON
+37087,5511.802,Carbon Monoxide,TON
+37087,380.5352,Volatile Organic Compounds,TON
+37087,7.31944,Chrysene,LB
+37085,11.707176,"1,3-Butadiene",LB
+37085,4.885078e-05,Chromium (VI),LB
+37085,0.03096176,Benz[a]Anthracene,LB
+37085,0.009363312,Arsenic,LB
+37085,0.09513756,Acenaphthene,LB
+37081,12.14617,Formaldehyde,LB
+37081,0.012161902,Benzo[b]Fluoranthene,LB
+37081,0.00305692,Ammonia,TON
+37075,0.0615816,Toluene,LB
+37075,5.96993e-05,Acenaphthene,LB
+37075,0.000326982,Naphthalene,LB
+37075,3.585976e-07,Nitrate portion of PM2.5-PRI,TON
+37075,0.0001309662,Sulfur Dioxide,TON
+37075,1.710852e-05,Sulfate Portion of PM2.5-PRI,TON
+37075,0.05581302,Xylenes (Mixed Isomers),LB
+37075,0.00014437148,Benzo[b]Fluoranthene,LB
+37075,4.976326e-05,Sulfate Portion of PM2.5-PRI,TON
+37075,0.004195546,Volatile Organic Compounds,TON
+37047,9.733078,"2,2,4-Trimethylpentane",LB
+37049,2.81827e-05,"Dibenzo[a,h]Anthracene",LB
+37049,0.0005545226,Benz[a]Anthracene,LB
+37049,6.59219,Acetaldehyde,LB
+37049,0.004823158,Methane,TON
+37049,1.3244876,Toluene,LB
+37049,0.0006733656,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,40.09578,Toluene,LB
+37035,15.637298,Hexane,LB
+37035,0.00013020964,Chromium (VI),LB
+37035,0.037945,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.08135814,Acenaphthylene,LB
+37035,0.0013053716,Mercury,LB
+37035,0.03560992,Fluorene,LB
+37035,0.03678575,Nitrous Oxide,TON
+37035,0.127391,Ammonia,TON
+37007,0.07725497,Volatile Organic Compounds,TON
+37115,0.819824,Benzene,LB
+37115,0.0001290839,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.000690662,PM2.5 Primary (Filt + Cond),TON
+37115,0.6458764,Toluene,LB
+37115,0.5575696,Xylenes (Mixed Isomers),LB
+37169,0.03701806,Fluoranthene,LB
+37169,0.07230838,Styrene,LB
+37169,0.4001716,Acrolein,LB
+37169,0.12710702,"2,2,4-Trimethylpentane",LB
+37169,0.06000934,Phenanthrene,LB
+37169,0.001943892,Methane,TON
+37169,0.004864348,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.001959143,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,3.360712,Ethyl Benzene,LB
+37167,1.2947436,Styrene,LB
+37167,7.58612,Carbon Monoxide,TON
+37167,554.3556,Carbon Dioxide,TON
+37167,0.01504669,PM10-Primary from certain diesel engines,TON
+37167,0.004782142,Sulfur Dioxide,TON
+37167,0.002172343,Sulfate Portion of PM2.5-PRI,TON
+37149,11.57935,Ethyl Benzene,LB
+37021,15.317704,Formaldehyde,LB
+37021,0.00011109734,Arsenic,LB
+37021,6.204726e-05,Acenaphthene,LB
+37021,0.0008619685,Ammonia,TON
+37011,5.2988,Ethyl Benzene,LB
+37011,12.098122,Acrolein,LB
+37011,0.9878194,Fluoranthene,LB
+37011,0.05168348,Manganese,LB
+37011,4920.681,Carbon Dioxide,TON
+37011,0.850485,PM10 Primary (Filt + Cond),TON
+37011,0.03347629,Sulfate Portion of PM2.5-PRI,TON
+37009,0.001761002,Ammonia,TON
+37009,9.390303e-07,Nitrate portion of PM2.5-PRI,TON
+37009,0.2919496,Nitrogen Oxides,TON
+37009,0.00010148836,Anthracene,LB
+37009,0.0003534374,Acenaphthylene,LB
+37009,64.33978,Carbon Dioxide,TON
+37009,0.1623151,Acrolein,LB
+37005,0.04980864,Benzene,LB
+37005,0.0004432098,Manganese,LB
+37005,9.13192e-05,Arsenic,LB
+37005,6.030452e-05,Acenaphthene,LB
+37005,0.0002898152,Phenanthrene,LB
+37005,0.0006704338,Ammonia,TON
+37005,1.735562e-05,Sulfate Portion of PM2.5-PRI,TON
+37069,1.6571198,Hexane,LB
+37155,0.0009667388,"Dibenzo[a,h]Anthracene",LB
+37155,17.088338,"2,2,4-Trimethylpentane",LB
+37155,44.61832,Benzene,LB
+37155,0.01835271,Nickel,LB
+37155,0.09511406,Phenanthrene,LB
+37155,26.81933,Carbon Monoxide,TON
+37155,2681.287,Carbon Dioxide,TON
+37155,0.01810989,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.001621395,Sulfate Portion of PM2.5-PRI,TON
+37135,217.7558,Carbon Dioxide,TON
+37135,0.0007495489,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.6048388,Ethyl Benzene,LB
+37135,0.0010040298,Anthracene,LB
+37135,1.2666946e-05,Chromium (VI),LB
+37135,1.1467436,"2,2,4-Trimethylpentane",LB
+37135,0.001583346,Nickel,LB
+37121,0.00037383,Pyrene,LB
+37121,0.00016500506,Benzo[b]Fluoranthene,LB
+37121,0.3112724,Formaldehyde,LB
+37121,0.227189,"2,2,4-Trimethylpentane",LB
+37121,1.4398282e-05,Mercury,LB
+37121,0.1970879,Carbon Monoxide,TON
+37007,32.12998,Acetaldehyde,LB
+37007,8.115906,Naphthalene,LB
+37007,2.685004,Carbon Monoxide,TON
+37007,0.1864493,PM25-Primary from certain diesel engines,TON
+37007,0.009089867,Ammonia,TON
+37007,2.978078,Nitrogen Oxides,TON
+37007,0.4306606,Volatile Organic Compounds,TON
+37189,1.358731,Nitrous Oxide,TON
+37189,0.003981578,Chromium (VI),LB
+37189,1.184907,Sulfur Dioxide,TON
+37187,2829.004,Toluene,LB
+37179,21.01268,Hexane,LB
+37179,5.109506,Propionaldehyde,LB
+37179,0.000945568,"Dibenzo[a,h]Anthracene",LB
+37179,0.03184596,Arsenic,LB
+37179,23.69935,Carbon Monoxide,TON
+37179,0.01123575,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.0001619419,Nitrate portion of PM2.5-PRI,TON
+37179,0.1994413,Ammonia,TON
+37091,116.61972,Benzene,LB
+37087,3.345342e-08,Chromium (VI),LB
+37087,0.0003664128,Arsenic,LB
+37087,0.7288658,Carbon Monoxide,TON
+37077,14874.084,Toluene,LB
+37077,6664.1,Xylenes (Mixed Isomers),LB
+37075,0.0714568,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.056125,Benzo[k]Fluoranthene,LB
+37075,145.61946,"2,2,4-Trimethylpentane",LB
+37075,0.0575654,Benz[a]Anthracene,LB
+37075,0.01926371,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.1766966,PM10 Primary (Filt + Cond),TON
+37069,0.0002203628,Naphthalene,LB
+37069,5.286898e-07,Ammonia,TON
+37069,4.302553e-07,Sulfur Dioxide,TON
+37069,3.773393e-08,Sulfate Portion of PM2.5-PRI,TON
+37069,0.002697278,Ethyl Benzene,LB
+37069,1.5076382e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,23.70934,Propionaldehyde,LB
+37065,5.365308,Phenanthrene,LB
+37065,2.69654,Fluorene,LB
+37065,55.12763,Nitrogen Oxides,TON
+37065,0.3341184,Organic Carbon portion of PM2.5-PRI,TON
+37065,1.804146,PM2.5 Primary (Filt + Cond),TON
+37065,0.1814173,Sulfur Dioxide,TON
+37065,0.1707037,Sulfate Portion of PM2.5-PRI,TON
+37063,0.006879192,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,3.366296,"2,2,4-Trimethylpentane",LB
+37063,2047.763,Carbon Dioxide,TON
+37063,0.004379031,Nitrous Oxide,TON
+37063,0.06310028,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,11.148198,Ethyl Benzene,LB
+37055,0.009001332,Benzo[k]Fluoranthene,LB
+37055,11167.19,Carbon Dioxide,TON
+37055,1.454134,PM10-Primary from certain diesel engines,TON
+37055,0.1648642,Ammonia,TON
+37055,2.241655,PM10 Primary (Filt + Cond),TON
+37049,0.006615216,Benzo[a]Pyrene,LB
+37049,0.0004218266,Nickel,LB
+37049,4.867206,Acetaldehyde,LB
+37049,0.004813765,Nitrous Oxide,TON
+37049,0.2946674,Propionaldehyde,LB
+37049,0.007747035,PM2.5 Primary (Filt + Cond),TON
+37049,0.002530298,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.002795486,"1,3-Butadiene",LB
+37035,0.02856,Acrolein,LB
+37035,4.232652e-05,Fluoranthene,LB
+37035,2.728016e-05,Acenaphthene,LB
+37033,0.9627624,PM2.5 Primary (Filt + Cond),TON
+37033,0.05330889,Sulfur Dioxide,TON
+37033,0.005101712,"Dibenzo[a,h]Anthracene",LB
+37033,0.017131048,Arsenic,LB
+37033,23.19972,Naphthalene,LB
+37027,0.5206662,Styrene,LB
+37027,0.002453308,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,3.724566,Benzene,LB
+37027,0.02607677,Methane,TON
+37027,0.001446041,Nitrous Oxide,TON
+37023,0.4391362,"1,3-Butadiene",LB
+37023,0.04778968,Anthracene,LB
+37023,0.0007176014,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.16220306,Phenanthrene,LB
+37023,119.2556,Carbon Dioxide,TON
+37023,0.03292435,PM2.5 Primary (Filt + Cond),TON
+37023,0.001033878,Sulfur Dioxide,TON
+37023,0.07803572,Volatile Organic Compounds,TON
+37077,1.3444468,Hexane,LB
+37077,0.002717527,Nitrous Oxide,TON
+37175,0.05602772,"1,3-Butadiene",LB
+37175,0.08745846,Propionaldehyde,LB
+37175,2.877374e-05,Mercury,LB
+37175,0.01890289,Naphthalene,LB
+37175,0.3933283,Carbon Monoxide,TON
+37175,0.0001761069,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.0004459998,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.04371724,Naphthalene,LB
+37167,0.008421451,Ammonia,TON
+37167,0.001124057,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.06722978,Volatile Organic Compounds,TON
+37167,0.0017782774,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,4.082486e-05,"Dibenzo[a,h]Anthracene",LB
+37167,0.000811616,Benz[a]Anthracene,LB
+37137,0.02195134,Propionaldehyde,LB
+37137,0.1917229,Xylenes (Mixed Isomers),LB
+37137,0.0002368175,Nitrous Oxide,TON
+37137,0.0002386796,PM2.5 Primary (Filt + Cond),TON
+37123,0.009019096,Pyrene,LB
+37123,2.836826e-05,Chromium (VI),LB
+37123,0.00348634,Chrysene,LB
+37123,0.00019113634,"Dibenzo[a,h]Anthracene",LB
+37123,0.003915626,Benz[a]Anthracene,LB
+37123,0.005689124,Manganese,LB
+37123,0.004773614,Acenaphthene,LB
+37123,0.02690254,Phenanthrene,LB
+37123,0.2487636,Naphthalene,LB
+37123,0.03817646,Methane,TON
+37123,6.077118,Carbon Monoxide,TON
+37123,0.01537501,Sulfur Dioxide,TON
+37121,9.93265e-05,Sulfate Portion of PM2.5-PRI,TON
+37121,1.3098786,Ethyl Benzene,LB
+37175,5.98372,Ethyl Benzene,LB
+37175,0.7090634,Anthracene,LB
+37175,10.814744,Xylenes (Mixed Isomers),LB
+37175,0.52779,Benz[a]Anthracene,LB
+37175,17.211776,Benzene,LB
+37175,2.412482,Phenanthrene,LB
+37175,0.1067583,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,1552.3918,Toluene,LB
+37175,357.2358,Hexane,LB
+37175,9.825074,Propionaldehyde,LB
+37175,0.002419038,Mercury,LB
+37175,2.656876,Phenanthrene,LB
+37175,0.993267,Fluorene,LB
+37175,0.05520073,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.09776417,Sulfur Dioxide,TON
+37171,0.04831744,Benzo[a]Pyrene,LB
+37171,2.098678,Acrolein,LB
+37171,2.787881,Nitrogen Oxides,TON
+37171,0.01606155,Sulfur Dioxide,TON
+37171,0.001129516,Sulfate Portion of PM2.5-PRI,TON
+37171,2.198885,Volatile Organic Compounds,TON
+37169,3.430436,Phenanthrene,LB
+37169,0.2749245,Organic Carbon portion of PM2.5-PRI,TON
+37169,1.039987,PM10 Primary (Filt + Cond),TON
+37169,0.6927894,PM2.5 Primary (Filt + Cond),TON
+37169,10.282866,Ethyl Benzene,LB
+37169,0.014490068,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.007817844,Benzo[k]Fluoranthene,LB
+37169,0.3697656,Chrysene,LB
+37167,1.305582e-05,Mercury,LB
+37167,0.4005982,Fluorene,LB
+37167,0.3669309,Volatile Organic Compounds,TON
+37167,0.01508394,Arsenic,LB
+37167,0.9574832,Acenaphthene,LB
+37167,0.3129089,PM10-Primary from certain diesel engines,TON
+37167,0.02495826,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,21.77984,Xylenes (Mixed Isomers),LB
+37167,1.60954,Acenaphthylene,LB
+37167,0.001342286,"Dibenzo[a,h]Anthracene",LB
+37167,0.224652,Benz[a]Anthracene,LB
+37149,45.54458,Ethyl Benzene,LB
+37149,8.569998,Styrene,LB
+37149,0.009240414,"Dibenzo[a,h]Anthracene",LB
+37149,108.93372,Benzene,LB
+37149,0.02238891,Nitrous Oxide,TON
+37149,0.006270968,Nitrate portion of PM2.5-PRI,TON
+37045,0.5001768,Pyrene,LB
+37045,4.627078e-05,Mercury,LB
+37045,0.02551424,Nickel,LB
+37045,0.0096746,Arsenic,LB
+37045,0.02054224,PM10-Primary from certain diesel engines,TON
+37045,0.0001389173,Nitrate portion of PM2.5-PRI,TON
+37045,0.06818995,PM10 Primary (Filt + Cond),TON
+37041,4.700586,Hexane,LB
+37041,0.5884618,Acenaphthylene,LB
+37041,0.015972274,Arsenic,LB
+37041,0.04703331,Sulfate Portion of PM2.5-PRI,TON
+37035,2.689734,Acenaphthene,LB
+37035,5.448322,Fluorene,LB
+37035,139.66166,Naphthalene,LB
+37035,63.62122,Styrene,LB
+37035,4.482604,Pyrene,LB
+37033,6.636642e-05,Chromium (VI),LB
+37033,233.0468,Formaldehyde,LB
+37033,5.873032,"2,2,4-Trimethylpentane",LB
+37033,25.40464,Naphthalene,LB
+37033,0.6239461,PM2.5 Primary (Filt + Cond),TON
+37033,0.01990463,Sulfate Portion of PM2.5-PRI,TON
+37029,2.422796,Ethyl Benzene,LB
+37029,1.092777,Styrene,LB
+37029,2.45719,"1,3-Butadiene",LB
+37029,0.2747834,Anthracene,LB
+37029,0.003532394,"Benzo[g,h,i,]Perylene",LB
+37029,0.002374812,Benzo[k]Fluoranthene,LB
+37029,0.11177402,Chrysene,LB
+37029,0.05811206,Benzo[a]Pyrene,LB
+37029,0.002370824,"Dibenzo[a,h]Anthracene",LB
+37029,0.012245736,Nickel,LB
+37029,0.249845,Acenaphthene,LB
+37029,0.001510986,Nitrous Oxide,TON
+37029,0.4433681,PM10 Primary (Filt + Cond),TON
+37019,6.39985,Fluoranthene,LB
+37019,0.02366154,Benzo[k]Fluoranthene,LB
+37019,5.017268,Acenaphthylene,LB
+37019,1377.9998,Formaldehyde,LB
+37019,92.1728,Acrolein,LB
+37019,0.15031512,Arsenic,LB
+37019,12.506498,Phenanthrene,LB
+37019,54263.9,Carbon Dioxide,TON
+37019,0.0104905,Nitrate portion of PM2.5-PRI,TON
+37009,0.0014907202,Benzo[b]Fluoranthene,LB
+37009,0.03376161,PM10-Primary from certain diesel engines,TON
+37009,0.03266249,PM2.5 Primary (Filt + Cond),TON
+37009,0.0381557,Benz[a]Anthracene,LB
+37009,0.6940954,Phenanthrene,LB
+37009,0.05791467,Methane,TON
+37005,4.092998e-07,Manganese,LB
+37005,8.58488e-08,Nickel,LB
+37005,5.100431e-06,Nitrous Oxide,TON
+37005,1.124569e-08,Nitrate portion of PM2.5-PRI,TON
+37005,0.0012226646,"1,3-Butadiene",LB
+37005,0.00017711838,Propionaldehyde,LB
+37005,6.86778e-10,Chromium (VI),LB
+37005,0.006256714,Styrene,LB
+37005,0.0001989787,"Benzo[g,h,i,]Perylene",LB
+37005,0.0012796468,Acenaphthylene,LB
+37005,0.3197246,Benzene,LB
+37005,7.099246e-06,Nickel,LB
+37005,1.997499e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37005,0.0001765828,Nitrous Oxide,TON
+37005,4.350934e-05,Organic Carbon portion of PM2.5-PRI,TON
+37005,3.558904e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.8091232,Propionaldehyde,LB
+37033,0.002577002,Benzo[k]Fluoranthene,LB
+37009,0.0002247449,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.0510787,Propionaldehyde,LB
+37143,0.02039931,PM10 Primary (Filt + Cond),TON
+37143,0.0001602292,Sulfate Portion of PM2.5-PRI,TON
+37143,57.80266,Toluene,LB
+37143,0.02415434,Pyrene,LB
+37143,0.003720656,Benzo[k]Fluoranthene,LB
+37143,0.0008265344,Nickel,LB
+37143,0.001312685,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.01031238,Ammonia,TON
+37143,1.584157e-05,Nitrate portion of PM2.5-PRI,TON
+37125,30.2871,Propionaldehyde,LB
+37125,5.16836,Pyrene,LB
+37125,62.50098,Xylenes (Mixed Isomers),LB
+37125,3.942824,Fluoranthene,LB
+37125,0.014669004,"Dibenzo[a,h]Anthracene",LB
+37125,1.204207,Benz[a]Anthracene,LB
+37125,0.444435,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.006687901,Nitrate portion of PM2.5-PRI,TON
+37125,0.11805024,Mercury,LB
+37125,6237.37,Acetaldehyde,LB
+37125,98.66946,Phenanthrene,LB
+37125,36.8657,Fluorene,LB
+37125,10.52896,Methane,TON
+37125,230141.8,Carbon Dioxide,TON
+37125,19.60229,PM10 Primary (Filt + Cond),TON
+37125,431.6028,Styrene,LB
+37125,40606.88,Xylenes (Mixed Isomers),LB
+37125,26.38546,Fluoranthene,LB
+37121,76.64018,Ethyl Benzene,LB
+37121,1.455782,Styrene,LB
+37121,0.07109688,"Benzo[g,h,i,]Perylene",LB
+37121,0.003159246,Nickel,LB
+37121,15.56866,Acetaldehyde,LB
+37121,422.3287,Carbon Dioxide,TON
+37121,0.03653019,PM10 Primary (Filt + Cond),TON
+37121,0.02591369,PM2.5 Primary (Filt + Cond),TON
+37119,32.54529,Volatile Organic Compounds,TON
+37119,536.1596,Benzene,LB
+37119,0.08329168,Nitrate portion of PM2.5-PRI,TON
+37119,43.87102,PM10 Primary (Filt + Cond),TON
+37119,0.2823168,"Benzo[g,h,i,]Perylene",LB
+37119,0.19442322,"Dibenzo[a,h]Anthracene",LB
+37119,247.9606,Acrolein,LB
+37119,17.566762,Pyrene,LB
+37119,0.05337958,"Benzo[g,h,i,]Perylene",LB
+37119,14.10715,Fluoranthene,LB
+37119,3337.56,Formaldehyde,LB
+37119,17.22849,Fluorene,LB
+37119,3.602841,PM25-Primary from certain diesel engines,TON
+37119,1.059325,Ammonia,TON
+37099,1.3240882,Anthracene,LB
+37099,0.017049266,"Benzo[g,h,i,]Perylene",LB
+37099,2.029956,Acenaphthylene,LB
+37099,37.29752,Benzene,LB
+37099,43.74712,Naphthalene,LB
+37099,0.04382232,Sulfate Portion of PM2.5-PRI,TON
+37091,0.010469474,Fluorene,LB
+37091,0.2683418,Naphthalene,LB
+37091,0.002199,Nitrous Oxide,TON
+37091,0.000296794,Ammonia,TON
+37091,0.0001868863,Sulfur Dioxide,TON
+37091,0.7058132,"1,3-Butadiene",LB
+37091,0.1114322,Propionaldehyde,LB
+37091,4.76979,Benzene,LB
+37071,142.10168,Toluene,LB
+37071,0.02856848,Anthracene,LB
+37071,0.67211,Propionaldehyde,LB
+37071,0.01943985,Benzo[a]Pyrene,LB
+37071,10.451744,Acetaldehyde,LB
+37071,0.06696362,Fluorene,LB
+37071,0.01025633,Ammonia,TON
+37071,0.006718767,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.6915858,Volatile Organic Compounds,TON
+37063,15.257368,Benzene,LB
+37063,0.07678858,Phenanthrene,LB
+37063,553.9936,Carbon Dioxide,TON
+37063,1.058514,Nitrogen Oxides,TON
+37063,0.007160787,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,7.720194,Ethyl Benzene,LB
+37065,7.879774,Xylenes (Mixed Isomers),LB
+37065,2.71118e-06,Chromium (VI),LB
+37065,3.570426,Benzene,LB
+37065,2.718118e-05,Mercury,LB
+37061,1.5519414,"2,2,4-Trimethylpentane",LB
+37061,4.32398,Toluene,LB
+37061,4.410606,Xylenes (Mixed Isomers),LB
+37061,754.4532,Carbon Dioxide,TON
+37061,0.0008536554,Nitrate portion of PM2.5-PRI,TON
+37049,56.44002,"1,3-Butadiene",LB
+37049,42.9522,Hexane,LB
+37049,4.70537,Anthracene,LB
+37049,7.560376,Fluoranthene,LB
+37049,1.339953,PM25-Primary from certain diesel engines,TON
+37049,0.3659801,Ammonia,TON
+37049,0.002928685,Nitrate portion of PM2.5-PRI,TON
+37049,0.05588125,Sulfate Portion of PM2.5-PRI,TON
+37047,0.0001459168,Nitrous Oxide,TON
+37045,44.52184,Pyrene,LB
+37045,0.015521996,Chromium (VI),LB
+37045,25.09218,"Benzo[g,h,i,]Perylene",LB
+37045,10.91387,PM2.5 Primary (Filt + Cond),TON
+37035,12.405316,Hexane,LB
+37035,25.84286,Propionaldehyde,LB
+37035,0.10813914,Benzo[b]Fluoranthene,LB
+37035,0.6991494,Chrysene,LB
+37035,6.34601e-05,Mercury,LB
+37035,0.0481283,Nickel,LB
+37035,0.013268834,Arsenic,LB
+37035,5.986608,Phenanthrene,LB
+37035,0.01612289,Nitrous Oxide,TON
+37025,0.835068,"1,3-Butadiene",LB
+37025,0.018201658,Benzo[a]Pyrene,LB
+37025,0.0007411112,"Dibenzo[a,h]Anthracene",LB
+37025,3.244692e-06,Mercury,LB
+37025,0.02019301,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.0004183887,Nitrous Oxide,TON
+37025,0.0252819,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.001462874,Sulfur Dioxide,TON
+37025,0.001375074,Sulfate Portion of PM2.5-PRI,TON
+37025,0.1470503,Volatile Organic Compounds,TON
+37027,15.568656,Toluene,LB
+37027,11.685192,Propionaldehyde,LB
+37027,3.406576e-05,Chromium (VI),LB
+37027,0.04963982,Benzo[b]Fluoranthene,LB
+37027,0.54637,Benz[a]Anthracene,LB
+37027,20.91552,Benzene,LB
+37027,0.05245434,Manganese,LB
+37027,7.681144,Carbon Monoxide,TON
+37027,0.1003401,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,3.590168e-08,Chromium (VI),LB
+37023,58.51142,Formaldehyde,LB
+37023,5.743672e-05,Benz[a]Anthracene,LB
+37023,0.0002358664,Acenaphthene,LB
+37023,0.0013520644,Naphthalene,LB
+37023,0.01221702,Nitrous Oxide,TON
+37023,0.002098785,Organic Carbon portion of PM2.5-PRI,TON
+37023,2.484832,Phenanthrene,LB
+37023,0.05481164,Sulfur Dioxide,TON
+37171,13.338244,Styrene,LB
+37171,0.03857906,"Benzo[g,h,i,]Perylene",LB
+37171,6.830606,Fluoranthene,LB
+37171,0.02508588,Benzo[k]Fluoranthene,LB
+37171,0.1213193,Sulfur Dioxide,TON
+37165,0.005190664,Anthracene,LB
+37165,0.001971396,Chrysene,LB
+37165,0.002068248,Benz[a]Anthracene,LB
+37165,4.327654e-06,Mercury,LB
+37165,8.274508e-05,Arsenic,LB
+37165,9.096417e-06,Nitrate portion of PM2.5-PRI,TON
+37163,0.1507303,Volatile Organic Compounds,TON
+37163,1.9107928,Toluene,LB
+37163,0.674768,Hexane,LB
+37163,9.640624e-06,Chromium (VI),LB
+37163,26.86496,Formaldehyde,LB
+37163,0.018179524,Benzo[a]Pyrene,LB
+37163,0.6863606,"2,2,4-Trimethylpentane",LB
+37163,0.005009498,Nickel,LB
+37163,0.001941448,Arsenic,LB
+37163,0.08399232,Acenaphthene,LB
+37163,0.9113904,Carbon Monoxide,TON
+37163,0.01035831,Ammonia,TON
+37159,271.8396,Propionaldehyde,LB
+37159,0.6530028,Manganese,LB
+37159,29.2101,Fluorene,LB
+37159,4.352077,PM25-Primary from certain diesel engines,TON
+37159,29.37188,Volatile Organic Compounds,TON
+37145,1.2547768,Propionaldehyde,LB
+37145,1.8857016,Xylenes (Mixed Isomers),LB
+37145,0.0011978774,"Benzo[g,h,i,]Perylene",LB
+37145,0.001531532,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.0201734,Benzo[a]Pyrene,LB
+37145,0.07629866,Acenaphthene,LB
+37145,0.1735056,Fluorene,LB
+37145,2.679064,Naphthalene,LB
+37145,0.01347655,Methane,TON
+37145,0.5881156,Carbon Monoxide,TON
+37145,0.007148057,Ammonia,TON
+37145,0.0935179,PM10 Primary (Filt + Cond),TON
+37145,0.0654882,PM2.5 Primary (Filt + Cond),TON
+37145,0.1382044,Volatile Organic Compounds,TON
+37131,2.405508,Propionaldehyde,LB
+37131,0.3336738,Pyrene,LB
+37131,0.0349576,Chrysene,LB
+37131,41.84572,Formaldehyde,LB
+37131,0.15163766,Acenaphthene,LB
+37131,4.75184,Naphthalene,LB
+37131,0.001689157,Sulfate Portion of PM2.5-PRI,TON
+37131,0.005859892,Anthracene,LB
+37131,0.008567536,"Benzo[g,h,i,]Perylene",LB
+37131,6.243504,Benzene,LB
+37131,7.078346e-05,Arsenic,LB
+37121,13.70996,Ethyl Benzene,LB
+37121,22.41326,Propionaldehyde,LB
+37121,25.9012,Xylenes (Mixed Isomers),LB
+37121,0.262978,Benz[a]Anthracene,LB
+37121,0.0489106,Nickel,LB
+37121,180.3228,Acetaldehyde,LB
+37121,0.005719183,Nitrous Oxide,TON
+37121,0.008740829,Sulfate Portion of PM2.5-PRI,TON
+37117,9.723618e-07,Mercury,LB
+37117,0.1011514,Carbon Monoxide,TON
+37117,0.0001077714,Nitrous Oxide,TON
+37117,6.425949e-05,Nitrate portion of PM2.5-PRI,TON
+37117,0.2178107,Nitrogen Oxides,TON
+37117,0.0003732753,Sulfur Dioxide,TON
+37117,0.3421816,Toluene,LB
+37117,0.1266316,Hexane,LB
+37117,0.0002805288,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.003695674,Benzo[a]Pyrene,LB
+37111,104.50672,Xylenes (Mixed Isomers),LB
+37111,0.02385708,"Benzo[g,h,i,]Perylene",LB
+37111,0.00631136,Benzo[k]Fluoranthene,LB
+37111,0.0003594452,Mercury,LB
+37111,5.878562,Acenaphthene,LB
+37111,15.406064,Phenanthrene,LB
+37111,0.4530786,Methane,TON
+37111,1.643435,PM10-Primary from certain diesel engines,TON
+37111,0.003007734,Nitrate portion of PM2.5-PRI,TON
+37111,37.10661,Nitrogen Oxides,TON
+37111,0.09368788,Sulfur Dioxide,TON
+37111,0.04937275,Sulfate Portion of PM2.5-PRI,TON
+37123,3.20067,"2,2,4-Trimethylpentane",LB
+37123,0.002064052,Benz[a]Anthracene,LB
+37123,1.066157e-05,Nitrate portion of PM2.5-PRI,TON
+37123,0.02785682,Acenaphthylene,LB
+37123,0.0019709808,Chrysene,LB
+37177,0.09436956,Benz[a]Anthracene,LB
+37177,0.011088046,Manganese,LB
+37177,591.6213,Carbon Dioxide,TON
+37177,0.0011670294,Benzo[k]Fluoranthene,LB
+37177,0.0005752408,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.0003077603,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.0402408,Styrene,LB
+37177,0.03059264,Acrolein,LB
+37177,3.787044e-07,Chromium (VI),LB
+37177,0.002789314,"Benzo[g,h,i,]Perylene",LB
+37177,0.002520936,Fluoranthene,LB
+37171,2.983854,Xylenes (Mixed Isomers),LB
+37171,0.0008760092,Benzo[k]Fluoranthene,LB
+37171,0.04158864,Chrysene,LB
+37171,0.985982,"2,2,4-Trimethylpentane",LB
+37171,0.01558599,Ammonia,TON
+37171,0.0003783678,Nitrate portion of PM2.5-PRI,TON
+37171,0.008155785,Sulfate Portion of PM2.5-PRI,TON
+37165,2.48497,Ethyl Benzene,LB
+37165,5.949468,Acrolein,LB
+37165,0.7872388,Pyrene,LB
+37165,0.5953952,Fluoranthene,LB
+37165,0.545739,Fluorene,LB
+37165,2.047375,Carbon Monoxide,TON
+37165,0.194584,PM25-Primary from certain diesel engines,TON
+37163,2.977754,Propionaldehyde,LB
+37163,1.9039078e-05,Chromium (VI),LB
+37163,0.001942833,Benzo[k]Fluoranthene,LB
+37163,0.0019392258,"Dibenzo[a,h]Anthracene",LB
+37163,5.394748,Benzene,LB
+37163,0.41165,Fluorene,LB
+37163,0.1746702,PM10-Primary from certain diesel engines,TON
+37163,0.001693051,Nitrous Oxide,TON
+37163,22.82086,Benzene,LB
+37153,0.002339135,Sulfur Dioxide,TON
+37153,3.232212,"2,2,4-Trimethylpentane",LB
+37153,0.0005908478,Arsenic,LB
+37149,0.004512418,Propionaldehyde,LB
+37149,0.000315115,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.2490876,Benzene,LB
+37149,0.0002373582,Acenaphthene,LB
+37149,0.0004808062,Fluorene,LB
+37149,8.999869e-07,Nitrate portion of PM2.5-PRI,TON
+37149,0.0001718329,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.00374081,Volatile Organic Compounds,TON
+37135,0.0002565436,Pyrene,LB
+37135,0.00011792082,Benzo[b]Fluoranthene,LB
+37135,0.0002261336,Fluoranthene,LB
+37135,0.05223342,Formaldehyde,LB
+37135,0.0001377858,Acenaphthene,LB
+37135,0.009478307,Nitrogen Oxides,TON
+37127,10.83375,Methane,TON
+37127,27.59267,PM10 Primary (Filt + Cond),TON
+37127,11044.802,Ethyl Benzene,LB
+37127,438.3136,Styrene,LB
+37127,15.855688,Anthracene,LB
+37127,5.890904,Benzo[b]Fluoranthene,LB
+37111,3.404424,Hexane,LB
+37111,7.313644,Propionaldehyde,LB
+37111,8.738978,Xylenes (Mixed Isomers),LB
+37111,0.006112514,"Benzo[g,h,i,]Perylene",LB
+37111,0.9765644,Fluorene,LB
+37111,0.1619937,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.003593498,Nitrous Oxide,TON
+37111,0.001754891,Nitrate portion of PM2.5-PRI,TON
+37087,0.00378377,Arsenic,LB
+37087,2.700724,Naphthalene,LB
+37087,1106.113,Carbon Dioxide,TON
+37087,0.019824044,Benz[a]Anthracene,LB
+37071,0.01400439,"Dibenzo[a,h]Anthracene",LB
+37071,3.210324,Fluorene,LB
+37071,0.1735161,Methane,TON
+37071,13.26989,Carbon Monoxide,TON
+37071,0.01367707,Nitrous Oxide,TON
+37063,4.737688,Phenanthrene,LB
+37063,0.09002831,Ammonia,TON
+37063,0.0007820423,Nitrate portion of PM2.5-PRI,TON
+37063,3.132791,Volatile Organic Compounds,TON
+37063,44.13688,Acrolein,LB
+37063,2.615686,Pyrene,LB
+37063,0.00629942,"Benzo[g,h,i,]Perylene",LB
+37063,0.0002599564,Mercury,LB
+37051,0.2660665,Sulfur Dioxide,TON
+37051,24.67128,Styrene,LB
+37051,6.43639,Anthracene,LB
+37051,162.31988,Benzene,LB
+37051,0.2276464,Nickel,LB
+37051,8.097183,PM10-Primary from certain diesel engines,TON
+37033,0.008510873,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.2094508,Volatile Organic Compounds,TON
+37033,1.1851258,"1,3-Butadiene",LB
+37033,8.35789e-06,Chromium (VI),LB
+37033,0.01208745,Benzo[a]Pyrene,LB
+37033,3.371024,Benzene,LB
+37033,0.001395215,Arsenic,LB
+37033,0.04802611,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.000842273,Nitrous Oxide,TON
+37031,2.315434,Toluene,LB
+37031,2.753218e-08,Chromium (VI),LB
+37031,0.00017427644,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,4.240164e-05,Manganese,LB
+37031,0.01040704,Nitrogen Oxides,TON
+37031,8.850836e-05,Organic Carbon portion of PM2.5-PRI,TON
+37031,2.364273e-05,Sulfur Dioxide,TON
+37177,2.149236,Styrene,LB
+37177,4.829968,"1,3-Butadiene",LB
+37177,0.7843224,Pyrene,LB
+37177,3.449322,"2,2,4-Trimethylpentane",LB
+37177,15.839738,Naphthalene,LB
+37177,3.324276,Nitrogen Oxides,TON
+37177,0.01744548,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.003865368,Arsenic,LB
+37173,0.2836866,Phenanthrene,LB
+37173,0.02723102,Methane,TON
+37173,0.006573405,PM10-Primary from certain diesel engines,TON
+37173,0.01891111,PM10 Primary (Filt + Cond),TON
+37015,0.10550098,Chrysene,LB
+37015,70.07632,Formaldehyde,LB
+37015,0.02209605,Methane,TON
+37015,0.009442652,Ammonia,TON
+37015,0.03133511,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.005128144,Nitrate portion of PM2.5-PRI,TON
+37149,1686.8056,Ethyl Benzene,LB
+37149,767.95,Formaldehyde,LB
+37149,2655.922,Benzene,LB
+37149,0.6494834,Manganese,LB
+37149,51959.36,Carbon Dioxide,TON
+37061,0.012460754,Fluoranthene,LB
+37061,2.635476,Formaldehyde,LB
+37061,0.00808365,Acenaphthene,LB
+37061,0.5132985,Nitrogen Oxides,TON
+37061,0.008347529,PM2.5 Primary (Filt + Cond),TON
+37061,0.004274418,Sulfur Dioxide,TON
+37173,12.222954,Propionaldehyde,LB
+37173,1.630859,Pyrene,LB
+37173,0.02909192,Benzo[b]Fluoranthene,LB
+37173,1.2697948,Fluoranthene,LB
+37173,27.12384,Benzene,LB
+37173,0.09543762,Manganese,LB
+37173,0.03954488,Nickel,LB
+37173,0.001130723,Nitrous Oxide,TON
+37173,1.24891,Formaldehyde,LB
+37173,4.181304,"2,2,4-Trimethylpentane",LB
+37195,0.16316716,Acrolein,LB
+37195,0.00306366,Fluorene,LB
+37195,0.1574514,Nitrogen Oxides,TON
+37057,6.60889,Styrene,LB
+37057,0.00012954522,Chromium (VI),LB
+37057,0.014934282,Benzo[b]Fluoranthene,LB
+37057,0.002073132,Benzo[k]Fluoranthene,LB
+37057,12.113508,"2,2,4-Trimethylpentane",LB
+37057,1.5205102,Acenaphthene,LB
+37057,0.07836604,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.0632617,Nickel,LB
+37051,0.021731,Arsenic,LB
+37051,7.019142,Phenanthrene,LB
+37051,0.2785711,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,579.0392,Formaldehyde,LB
+37051,7.9103,Styrene,LB
+37051,5.826978,Pyrene,LB
+37051,0.01775247,Benzo[k]Fluoranthene,LB
+37051,0.8334914,Chrysene,LB
+37049,18.539872,Ethyl Benzene,LB
+37049,25.83988,Propionaldehyde,LB
+37049,4.438946,Pyrene,LB
+37049,0.09176392,Benzo[b]Fluoranthene,LB
+37049,15.62581,"2,2,4-Trimethylpentane",LB
+37049,0.005438087,Nitrate portion of PM2.5-PRI,TON
+37049,0.2549307,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.1644106,Sulfate Portion of PM2.5-PRI,TON
+37049,4.036824e-05,Chromium (VI),LB
+37049,1.1236114,Acenaphthylene,LB
+37049,0.2057842,Elemental Carbon portion of PM2.5-PRI,TON
+37049,1.183164,Volatile Organic Compounds,TON
+37045,150.6731,Xylenes (Mixed Isomers),LB
+37045,12.020812,Fluoranthene,LB
+37045,15.179872,Acenaphthylene,LB
+37045,39.54534,Styrene,LB
+37045,159.42162,Toluene,LB
+37045,1138.6192,Acetaldehyde,LB
+37045,2.388482,PM10-Primary from certain diesel engines,TON
+37045,57.8598,Toluene,LB
+37045,0.02299406,Fluoranthene,LB
+37045,0.004737934,Benzo[k]Fluoranthene,LB
+37045,0.004566572,Chrysene,LB
+37045,0.00016491694,Arsenic,LB
+37045,0.08526366,Phenanthrene,LB
+37045,0.001033985,Ammonia,TON
+37045,0.01105927,PM10 Primary (Filt + Cond),TON
+37045,0.0006764811,Sulfur Dioxide,TON
+37045,0.2871868,Volatile Organic Compounds,TON
+37035,22.72154,Toluene,LB
+37035,7.317682e-05,Chromium (VI),LB
+37035,1.9227824,Acenaphthylene,LB
+37035,0.2916372,Chrysene,LB
+37035,0.13514676,Benzo[a]Pyrene,LB
+37035,0.5247312,Benz[a]Anthracene,LB
+37035,12.95113,Carbon Monoxide,TON
+37035,4009.449,Carbon Dioxide,TON
+37033,0.03322925,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.05504484,PM10 Primary (Filt + Cond),TON
+37033,1.5768696,Ethyl Benzene,LB
+37033,1.196336,Hexane,LB
+37033,3.298286,Xylenes (Mixed Isomers),LB
+37033,0.00014800624,Benzo[k]Fluoranthene,LB
+37027,10.048256,"1,3-Butadiene",LB
+37027,25.12484,Acrolein,LB
+37027,0.002907752,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,1.7101038,Acenaphthylene,LB
+37027,0.12154462,Chrysene,LB
+37027,0.15673,Methane,TON
+37027,1.824801,Volatile Organic Compounds,TON
+37023,0.003006388,Fluoranthene,LB
+37023,0.00010418522,Manganese,LB
+37023,1.1663936e-06,Mercury,LB
+37023,0.07049311,Nitrogen Oxides,TON
+37023,0.002241743,PM2.5 Primary (Filt + Cond),TON
+37157,0.2668766,Manganese,LB
+37157,17.81037,Carbon Monoxide,TON
+37157,22812.5,Carbon Dioxide,TON
+37157,0.3384444,Ammonia,TON
+37153,10.478764,Ethyl Benzene,LB
+37135,9.70896e-05,Anthracene,LB
+37135,5.344588e-05,Benz[a]Anthracene,LB
+37135,2.061898e-06,Nickel,LB
+37135,0.000609839,Phenanthrene,LB
+37135,0.00575748,Naphthalene,LB
+37135,0.001801165,Volatile Organic Compounds,TON
+37137,0.003697116,Sulfur Dioxide,TON
+37137,13.726034,Benzene,LB
+37137,0.2978194,Styrene,LB
+37137,0.2657542,Acrolein,LB
+37137,4.649468e-06,Chromium (VI),LB
+37137,0.00925928,"Benzo[g,h,i,]Perylene",LB
+37137,0.002951374,Benzo[b]Fluoranthene,LB
+37137,2.050652,"1,3-Butadiene",LB
+37137,0.11076032,Fluorene,LB
+37137,0.007773702,Sulfur Dioxide,TON
+37131,13923.8,Xylenes (Mixed Isomers),LB
+37131,0.003962162,Chromium (VI),LB
+37131,869.8956,"1,3-Butadiene",LB
+37131,20526.54,Toluene,LB
+37131,1.8463316,Benz[a]Anthracene,LB
+37131,6380.428,Benzene,LB
+37131,6.54703,Acenaphthene,LB
+37131,0.7103127,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,3.71561,Styrene,LB
+37129,1.5617862,Fluoranthene,LB
+37129,1.653871,Fluorene,LB
+37129,0.09672398,Methane,TON
+37129,3073.091,Carbon Dioxide,TON
+37129,0.157857,Organic Carbon portion of PM2.5-PRI,TON
+37123,3903.751,Carbon Dioxide,TON
+37117,0.0060207,Benzo[a]Pyrene,LB
+37117,0.2709212,Ethyl Benzene,LB
+37117,0.210211,"2,2,4-Trimethylpentane",LB
+37117,0.0549986,PM10 Primary (Filt + Cond),TON
+37117,0.001583002,Sulfate Portion of PM2.5-PRI,TON
+37115,0.1118175,"1,3-Butadiene",LB
+37115,0.2456184,Xylenes (Mixed Isomers),LB
+37115,8.519794e-07,Chromium (VI),LB
+37115,0.007798122,Benz[a]Anthracene,LB
+37115,7.303458e-07,Mercury,LB
+37115,0.00015271204,Arsenic,LB
+37115,0.003249252,Organic Carbon portion of PM2.5-PRI,TON
+37115,1.861886,Ethyl Benzene,LB
+37115,4.589472,Toluene,LB
+37115,0.00775624,Ammonia,TON
+37113,0.4969258,Benz[a]Anthracene,LB
+37113,27.96868,Benzene,LB
+37113,1.673125,Fluorene,LB
+37113,9.444677,Carbon Monoxide,TON
+37113,0.7683803,Elemental Carbon portion of PM2.5-PRI,TON
+37107,15.411136,Ethyl Benzene,LB
+37107,13.43263,"1,3-Butadiene",LB
+37107,22.5848,Propionaldehyde,LB
+37107,38.57528,Xylenes (Mixed Isomers),LB
+37107,1.127506,PM10-Primary from certain diesel engines,TON
+37107,0.01893688,Nitrous Oxide,TON
+37107,0.0242119,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.09508782,Benzo[b]Fluoranthene,LB
+37107,0.5589438,Styrene,LB
+37107,2.13321,Propionaldehyde,LB
+37107,8.453916e-05,Benzo[k]Fluoranthene,LB
+37107,43.09544,Formaldehyde,LB
+37107,0.002017614,Benzo[a]Pyrene,LB
+37107,1.12075,"2,2,4-Trimethylpentane",LB
+37107,3.583252,Benzo[b]Fluoranthene,LB
+37107,20.67212,Fluoranthene,LB
+37107,4.521916,Benzo[a]Pyrene,LB
+37107,10759.41,"2,2,4-Trimethylpentane",LB
+37107,14.252446,Acenaphthene,LB
+37107,2.573365,Organic Carbon portion of PM2.5-PRI,TON
+37107,15.33996,PM10 Primary (Filt + Cond),TON
+37097,308.4954,Acrolein,LB
+37097,0.0974284,"Benzo[g,h,i,]Perylene",LB
+37097,2.234212,Manganese,LB
+37097,0.0013705228,Mercury,LB
+37097,313.444,Nitrogen Oxides,TON
+37091,0.05129976,Anthracene,LB
+37091,0.0004806668,Benzo[k]Fluoranthene,LB
+37091,0.18075818,Phenanthrene,LB
+37091,0.001321675,Sulfur Dioxide,TON
+37091,0.001540108,Sulfate Portion of PM2.5-PRI,TON
+37099,1.0245958,Acrolein,LB
+37099,0.014556038,Chrysene,LB
+37099,37.74604,"2,2,4-Trimethylpentane",LB
+37099,54.42554,Benzene,LB
+37099,0.0507778,Acenaphthene,LB
+37095,0.0004425866,Benz[a]Anthracene,LB
+37095,0.0004206764,Benzo[b]Fluoranthene,LB
+37095,0.0004206764,Benzo[k]Fluoranthene,LB
+37095,1.1292908e-05,"Dibenzo[a,h]Anthracene",LB
+37095,0.001566366,Anthracene,LB
+37095,0.0009783,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.016549248,Acenaphthylene,LB
+37095,1.193167,Acetaldehyde,LB
+37095,0.01969669,Phenanthrene,LB
+37095,2.672338e-06,Nitrate portion of PM2.5-PRI,TON
+37095,0.001449489,PM10 Primary (Filt + Cond),TON
+37091,2.097458,"2,2,4-Trimethylpentane",LB
+37091,0.000651045,Benz[a]Anthracene,LB
+37091,1.5430338,Ethyl Benzene,LB
+37091,41.18162,Carbon Dioxide,TON
+37091,0.1150317,Nitrogen Oxides,TON
+37089,0.11084774,Anthracene,LB
+37089,0.06398842,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,4.730948,Nitrogen Oxides,TON
+37089,0.0297494,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.0003106335,Organic Carbon portion of PM2.5-PRI,TON
+37075,2.01853e-05,Sulfate Portion of PM2.5-PRI,TON
+37075,1.3070938,Hexane,LB
+37075,0.0004336998,Benz[a]Anthracene,LB
+37075,0.0017107714,Acenaphthene,LB
+37071,4.125994,Toluene,LB
+37071,0.008868834,Nickel,LB
+37071,0.16269348,Acenaphthene,LB
+37071,5.358813,Nitrogen Oxides,TON
+37071,0.286431,PM2.5 Primary (Filt + Cond),TON
+37071,0.01424546,Sulfate Portion of PM2.5-PRI,TON
+37071,0.2979435,Volatile Organic Compounds,TON
+37071,17.309982,Hexane,LB
+37071,0.02651652,Benzo[b]Fluoranthene,LB
+37071,3.088798,Fluoranthene,LB
+37071,0.003672686,Benzo[k]Fluoranthene,LB
+37071,3.71856,Acenaphthylene,LB
+37071,0.65761,PM25-Primary from certain diesel engines,TON
+37071,13.57935,Nitrogen Oxides,TON
+37071,0.06825376,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,9915.126,"2,2,4-Trimethylpentane",LB
+37059,3.80817,Benz[a]Anthracene,LB
+37059,6.025493,Nitrous Oxide,TON
+37051,0.010668862,Benzo[a]Pyrene,LB
+37051,7.2083,Hexane,LB
+37051,28.50668,Naphthalene,LB
+37051,2965.65,Carbon Dioxide,TON
+37051,0.01415335,Sulfate Portion of PM2.5-PRI,TON
+37049,289.6492,Formaldehyde,LB
+37049,694.9982,"2,2,4-Trimethylpentane",LB
+37049,0.1044268,Nickel,LB
+37049,15004.28,Carbon Dioxide,TON
+37037,273.7048,Acrolein,LB
+37037,3.961356,Benzo[b]Fluoranthene,LB
+37037,0.12045872,"Dibenzo[a,h]Anthracene",LB
+37037,78.2257,Phenanthrene,LB
+37037,7.40378,Nitrous Oxide,TON
+37037,416.9524,Nitrogen Oxides,TON
+37037,2.961485,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.02262966,Chromium (VI),LB
+37035,15895.632,"2,2,4-Trimethylpentane",LB
+37035,8.106363,Methane,TON
+37171,0.0758533,Benz[a]Anthracene,LB
+37171,0.0865889,Methane,TON
+37171,0.03072065,PM2.5 Primary (Filt + Cond),TON
+37149,0.5058814,Benzene,LB
+37149,0.0010837074,Manganese,LB
+37149,0.000919968,Nickel,LB
+37149,0.06235624,Phenanthrene,LB
+37149,0.0156556,PM10-Primary from certain diesel engines,TON
+37149,0.3556706,Toluene,LB
+37149,0.350051,Xylenes (Mixed Isomers),LB
+37149,9.96957e-05,Nitrous Oxide,TON
+37157,3.232782,"1,3-Butadiene",LB
+37157,0.009330928,Benzo[k]Fluoranthene,LB
+37157,35.42014,Benzene,LB
+37157,0.001451126,Nickel,LB
+37157,1.228803,Nitrogen Oxides,TON
+37155,0.2013576,Hexane,LB
+37155,0.0003951418,"Benzo[g,h,i,]Perylene",LB
+37155,2.041834e-06,Nickel,LB
+37155,0.0013298444,Phenanthrene,LB
+37153,4.442692,Styrene,LB
+37153,16.199022,Propionaldehyde,LB
+37153,0.07564966,Benzo[b]Fluoranthene,LB
+37153,3.853988,Phenanthrene,LB
+37153,32.4768,Naphthalene,LB
+37153,1.393151,PM25-Primary from certain diesel engines,TON
+37153,0.3565072,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.03864192,Sulfur Dioxide,TON
+37147,45.42846,Acetaldehyde,LB
+37147,0.2907152,Fluorene,LB
+37147,0.01303648,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.2869828,PM10 Primary (Filt + Cond),TON
+37147,0.002179759,Sulfate Portion of PM2.5-PRI,TON
+37147,0.13976036,"Benzo[g,h,i,]Perylene",LB
+37147,0.0004018396,"Benzo[g,h,i,]Perylene",LB
+37147,1.2737538e-06,Mercury,LB
+37147,1.5882326e-05,Nickel,LB
+37147,2.435288e-05,Arsenic,LB
+37147,2.58737e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37147,5.059587e-05,Nitrous Oxide,TON
+37147,6.30622e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,4.14234,Xylenes (Mixed Isomers),LB
+37141,0.0017278668,Benzo[k]Fluoranthene,LB
+37141,0.2709944,Acenaphthylene,LB
+37141,0.07989336,Chrysene,LB
+37141,0.01868484,Manganese,LB
+37141,0.00413623,Arsenic,LB
+37141,0.16123568,Acenaphthene,LB
+37141,0.03075029,Methane,TON
+37141,1.19239,Carbon Monoxide,TON
+37141,0.0001089555,Nitrate portion of PM2.5-PRI,TON
+37141,0.9423241,Nitrogen Oxides,TON
+37141,7.52335,Acrolein,LB
+37141,6.255958e-05,Chromium (VI),LB
+37141,0.0273108,Manganese,LB
+37141,0.103108,Methane,TON
+37141,0.001428127,Nitrous Oxide,TON
+37133,22.09032,Xylenes (Mixed Isomers),LB
+37133,0.630159,Fluoranthene,LB
+37133,0.04294304,Nickel,LB
+37133,18.67497,Carbon Monoxide,TON
+37133,0.03373516,PM10-Primary from certain diesel engines,TON
+37121,0.001317672,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.1147863,Volatile Organic Compounds,TON
+37123,0.0648515,Pyrene,LB
+37123,0.02601034,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.2069496,Phenanthrene,LB
+37123,0.03170209,Methane,TON
+37123,0.02580522,Ammonia,TON
+37123,0.008180901,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,247.1277,Carbon Dioxide,TON
+37111,0.00112671,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.006498379,Ammonia,TON
+37107,13.05463,"1,3-Butadiene",LB
+37107,38.66756,Acrolein,LB
+37107,14.183018,Hexane,LB
+37107,0.016844002,"Benzo[g,h,i,]Perylene",LB
+37107,0.02055148,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,2.183392,Acenaphthylene,LB
+37107,0.3500744,Manganese,LB
+37107,15.94584,Carbon Monoxide,TON
+37107,0.4512264,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.3842104,Styrene,LB
+37085,3.201748,Propionaldehyde,LB
+37085,0.06143802,Acenaphthylene,LB
+37085,0.03463024,Manganese,LB
+37063,0.007649924,Nickel,LB
+37063,0.05192627,Ammonia,TON
+37063,0.07498586,PM10 Primary (Filt + Cond),TON
+37063,0.007548586,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.02637492,Sulfur Dioxide,TON
+37063,0.3317127,Volatile Organic Compounds,TON
+37063,2.502458,Ethyl Benzene,LB
+37063,0.008395066,Pyrene,LB
+37063,6.119788e-05,Chromium (VI),LB
+37063,6.554832,Formaldehyde,LB
+37033,7.99691,Acetaldehyde,LB
+37033,0.004594691,Ammonia,TON
+37017,4.548712,"2,2,4-Trimethylpentane",LB
+37001,0.03050404,Styrene,LB
+37001,0.00350021,Manganese,LB
+37001,0.009206727,Methane,TON
+37001,0.01484313,PM10 Primary (Filt + Cond),TON
+37149,0.04039342,"1,3-Butadiene",LB
+37149,0.0003027172,Anthracene,LB
+37149,4.36432e-06,Chromium (VI),LB
+37149,0.0003712762,Benz[a]Anthracene,LB
+37149,0.001835313,Phenanthrene,LB
+37157,31.16554,Hexane,LB
+37157,6.413512,Pyrene,LB
+37157,0.02679742,"Benzo[g,h,i,]Perylene",LB
+37157,0.8136336,Chrysene,LB
+37157,0.4739856,Manganese,LB
+37157,10.370738,Phenanthrene,LB
+37157,1.618717,Methane,TON
+37157,28.2963,Carbon Monoxide,TON
+37157,41435.2,Carbon Dioxide,TON
+37157,3.701212,PM2.5 Primary (Filt + Cond),TON
+37157,0.4020197,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,5.309785,Volatile Organic Compounds,TON
+37157,2.668216,Styrene,LB
+37157,0.00823051,"Benzo[g,h,i,]Perylene",LB
+37157,0.005433792,"Dibenzo[a,h]Anthracene",LB
+37157,0.4432854,Benz[a]Anthracene,LB
+37157,0.02072434,Nickel,LB
+37157,2.303886,Phenanthrene,LB
+37157,0.002390169,Nitrate portion of PM2.5-PRI,TON
+37157,0.01119559,Sulfur Dioxide,TON
+37155,76.03984,Naphthalene,LB
+37155,0.991482,Methane,TON
+37155,49.54099,Nitrogen Oxides,TON
+37155,24.90518,Volatile Organic Compounds,TON
+37155,4844.856,Toluene,LB
+37155,1451.6324,Benzene,LB
+37155,0.17843108,Nickel,LB
+37147,1.9347882,Anthracene,LB
+37147,0.0019084732,Chromium (VI),LB
+37147,693.3868,Formaldehyde,LB
+37147,1.150645,PM2.5 Primary (Filt + Cond),TON
+37143,0.06113406,Fluorene,LB
+37143,0.01510206,Methane,TON
+37143,0.002600537,PM2.5 Primary (Filt + Cond),TON
+37143,3.27106e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.04361596,Fluoranthene,LB
+37143,7.245208e-06,Mercury,LB
+37173,16.855104,Hexane,LB
+37173,19.14211,Xylenes (Mixed Isomers),LB
+37197,1855.4462,Formaldehyde,LB
+37197,0.3060266,Benzo[a]Pyrene,LB
+37197,58.08874,"2,2,4-Trimethylpentane",LB
+37197,0.1005607,Arsenic,LB
+37197,0.008242174,Nitrate portion of PM2.5-PRI,TON
+37197,0.2928755,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.3128742,Sulfate Portion of PM2.5-PRI,TON
+37197,7.861786e-05,Chromium (VI),LB
+37197,1.5451742,Acenaphthylene,LB
+37197,0.9049039,Elemental Carbon portion of PM2.5-PRI,TON
+37153,2.532288,Xylenes (Mixed Isomers),LB
+37153,1.126538e-05,Chromium (VI),LB
+37153,0.0017423058,"Benzo[g,h,i,]Perylene",LB
+37153,0.008774212,Benzo[b]Fluoranthene,LB
+37153,0.011585856,Manganese,LB
+37153,1.1329154e-05,Mercury,LB
+37153,0.10957908,Acenaphthene,LB
+37153,0.09898822,PM25-Primary from certain diesel engines,TON
+37153,0.1457018,PM10 Primary (Filt + Cond),TON
+37147,65.74216,Acetaldehyde,LB
+37147,0.02616571,PM10-Primary from certain diesel engines,TON
+37147,0.002038318,Nitrous Oxide,TON
+37147,0.0002702716,Benzo[k]Fluoranthene,LB
+37147,0.03488458,Chrysene,LB
+37147,0.8199822,Volatile Organic Compounds,TON
+37145,9.193608,Ethyl Benzene,LB
+37145,20.97682,Acrolein,LB
+37145,7.070002,Hexane,LB
+37145,9.80445e-05,Chromium (VI),LB
+37145,0.3386024,Chrysene,LB
+37145,8.85506,Carbon Monoxide,TON
+37145,0.6880537,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.0019597492,Propionaldehyde,LB
+37145,9.995996e-05,Acenaphthene,LB
+37145,1.82338e-05,Organic Carbon portion of PM2.5-PRI,TON
+37145,8.534186e-07,Sulfate Portion of PM2.5-PRI,TON
+37145,0.001847791,Volatile Organic Compounds,TON
+37145,10.70252,Hexane,LB
+37145,26.62416,Xylenes (Mixed Isomers),LB
+37145,0.06457198,Acenaphthylene,LB
+37145,4.346108,Formaldehyde,LB
+37145,0.0004336376,Nickel,LB
+37145,0.00327009,Sulfur Dioxide,TON
+37143,6.732046e-05,Chrysene,LB
+37143,8.378384e-05,Manganese,LB
+37143,1.028238e-05,Nickel,LB
+37143,0.0005250168,Fluorene,LB
+37143,0.1443241,Carbon Monoxide,TON
+37143,3.05118e-07,Nitrate portion of PM2.5-PRI,TON
+37115,0.002220206,Sulfate Portion of PM2.5-PRI,TON
+37113,188.85722,Ethyl Benzene,LB
+37113,0.2748882,Pyrene,LB
+37113,0.0643983,Benzo[a]Pyrene,LB
+37113,305.4394,"2,2,4-Trimethylpentane",LB
+37113,41.42583,Carbon Monoxide,TON
+37113,1016.599,Carbon Dioxide,TON
+37113,0.0001850357,Nitrate portion of PM2.5-PRI,TON
+37113,0.06339375,PM2.5 Primary (Filt + Cond),TON
+37095,0.0004346102,Chromium (VI),LB
+37095,1.606493,Acenaphthylene,LB
+37095,9.52731,Nitrogen Oxides,TON
+37079,0.03718756,Hexane,LB
+37079,0.002163606,Naphthalene,LB
+37079,4.616949e-07,Sulfate Portion of PM2.5-PRI,TON
+37079,0.0007881834,Volatile Organic Compounds,TON
+37081,0.982886,Fluoranthene,LB
+37081,5.293076e-05,Mercury,LB
+37081,0.011067316,Arsenic,LB
+37081,14.895446,Naphthalene,LB
+37081,0.09955104,Methane,TON
+37081,1.053194,PM10 Primary (Filt + Cond),TON
+37081,0.08699278,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,1.5508066,"2,2,4-Trimethylpentane",LB
+37077,3.371348,Propionaldehyde,LB
+37077,27.33574,Acetaldehyde,LB
+37077,0.209077,Acenaphthene,LB
+37077,860.1768,Carbon Dioxide,TON
+37077,1.8692756,Hexane,LB
+37077,3.246946e-05,Chromium (VI),LB
+37077,0.3669376,Acenaphthylene,LB
+37077,3.089386e-05,Mercury,LB
+37077,0.04799783,Methane,TON
+37077,0.003016527,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.01388023,PM10-Primary from certain diesel engines,TON
+37075,0.0006030111,Sulfur Dioxide,TON
+37075,0.010240516,Anthracene,LB
+37075,0.2854764,Benzene,LB
+37075,0.0411742,Styrene,LB
+37063,31.03948,Hexane,LB
+37063,0.05888486,Arsenic,LB
+37063,22526.89,Carbon Dioxide,TON
+37063,1.5519256e-06,Acenaphthene,LB
+37063,3.263455e-06,Methane,TON
+37063,7.770794e-06,"Benzo[g,h,i,]Perylene",LB
+37063,2.625002e-05,Volatile Organic Compounds,TON
+37053,0.00010212208,Chromium (VI),LB
+37053,256.5978,Formaldehyde,LB
+37053,6.888894,"2,2,4-Trimethylpentane",LB
+37053,0.11045854,Manganese,LB
+37053,1.050974,PM10-Primary from certain diesel engines,TON
+37053,0.01019587,Nitrous Oxide,TON
+37065,0.0019969414,Fluorene,LB
+37065,0.05128692,Naphthalene,LB
+37065,0.3728736,Carbon Monoxide,TON
+37065,0.02397302,Styrene,LB
+37065,0.0015455766,Fluoranthene,LB
+37065,0.03615468,Nitrogen Oxides,TON
+37063,9.462554e-07,"Dibenzo[a,h]Anthracene",LB
+37063,0.000490374,Volatile Organic Compounds,TON
+37063,0.000542435,Propionaldehyde,LB
+37063,5.120352e-05,Fluoranthene,LB
+37043,1.9595846,Acrolein,LB
+37043,0.07965118,Anthracene,LB
+37043,1.3283924,Xylenes (Mixed Isomers),LB
+37043,0.02013492,Chrysene,LB
+37043,23.79346,Formaldehyde,LB
+37043,0.004904886,Manganese,LB
+37043,0.0338665,Elemental Carbon portion of PM2.5-PRI,TON
+37043,1.976797,Nitrogen Oxides,TON
+37043,0.05386401,PM2.5 Primary (Filt + Cond),TON
+37043,0.00588798,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,10.101206,Toluene,LB
+37031,5.029936e-05,Chromium (VI),LB
+37031,5.311016e-05,Mercury,LB
+37031,0.02409998,Nickel,LB
+37031,0.9206953,Nitrogen Oxides,TON
+37031,0.6614676,Volatile Organic Compounds,TON
+37025,5.330012,Propionaldehyde,LB
+37025,0.7995104,Fluoranthene,LB
+37025,0.003380116,Benzo[k]Fluoranthene,LB
+37025,0.5323276,Acenaphthylene,LB
+37025,0.08239368,Benzo[a]Pyrene,LB
+37025,0.05374,Manganese,LB
+37025,0.3167752,Acenaphthene,LB
+37025,0.7236272,Fluorene,LB
+37025,11.90165,Naphthalene,LB
+37025,2.468696,Carbon Monoxide,TON
+37025,0.2621572,PM25-Primary from certain diesel engines,TON
+37025,0.04057356,Ammonia,TON
+37025,0.0135461,Sulfur Dioxide,TON
+37025,0.13331776,Benz[a]Anthracene,LB
+37025,0.02210716,Arsenic,LB
+37025,1787.291,Carbon Dioxide,TON
+37025,0.0002951822,Nitrate portion of PM2.5-PRI,TON
+37025,0.02263997,Organic Carbon portion of PM2.5-PRI,TON
+37025,12.192606,Propionaldehyde,LB
+37025,21.72388,Xylenes (Mixed Isomers),LB
+37025,0.011081322,Benzo[a]Pyrene,LB
+37021,0.15573816,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,5942.594,Formaldehyde,LB
+37019,12.16937,Pyrene,LB
+37019,0.2980878,Manganese,LB
+37019,7.395834,Acenaphthene,LB
+37019,12.68028,Fluorene,LB
+37019,113.80952,Hexane,LB
+37019,0.03361358,Benzo[k]Fluoranthene,LB
+37019,0.0331414,Chrysene,LB
+37019,0.6534496,Phenanthrene,LB
+37019,0.01071256,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.1135973,Ammonia,TON
+37019,0.019468272,Benzo[a]Pyrene,LB
+37019,0.0004460898,"Dibenzo[a,h]Anthracene",LB
+37019,0.0027783,Nickel,LB
+37019,0.01816706,Methane,TON
+37019,21.23991,Carbon Monoxide,TON
+37019,0.01808748,Nitrous Oxide,TON
+37019,0.03204081,Ammonia,TON
+37019,0.3923582,Benz[a]Anthracene,LB
+37019,0.4575214,Manganese,LB
+37019,2.108253,PM10 Primary (Filt + Cond),TON
+37019,1.3301578,"Benzo[g,h,i,]Perylene",LB
+37015,0.000428616,Benz[a]Anthracene,LB
+37015,0.000289777,Organic Carbon portion of PM2.5-PRI,TON
+37015,7.668397e-05,Sulfur Dioxide,TON
+37015,1.329457e-05,Sulfate Portion of PM2.5-PRI,TON
+37009,0.0392604,Sulfur Dioxide,TON
+37009,23.15518,Hexane,LB
+37009,0.015729298,Benzo[b]Fluoranthene,LB
+37009,0.2651976,Chrysene,LB
+37009,0.7248058,"1,3-Butadiene",LB
+37009,0.00822938,Pyrene,LB
+37009,1.4113072,Formaldehyde,LB
+37009,5.67419,Benzene,LB
+37009,1.2702632e-05,Mercury,LB
+37009,0.0002428642,Arsenic,LB
+37001,10.55495,Xylenes (Mixed Isomers),LB
+37001,0.8036042,Fluoranthene,LB
+37001,0.7765584,Acenaphthylene,LB
+37001,0.05512814,Manganese,LB
+37001,3.221488e-05,Mercury,LB
+37001,0.880848,Fluorene,LB
+37175,0.4347362,"1,3-Butadiene",LB
+37175,7.221836,Formaldehyde,LB
+37175,0.00016514424,Mercury,LB
+37175,314.1884,Carbon Dioxide,TON
+37175,0.01616713,Ammonia,TON
+37175,0.3309919,Nitrogen Oxides,TON
+37163,1.2616802,Acrolein,LB
+37163,8.021628e-05,Chromium (VI),LB
+37163,0.02202496,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.011827116,Benzo[k]Fluoranthene,LB
+37163,27.33728,Formaldehyde,LB
+37163,0.0005055542,"Dibenzo[a,h]Anthracene",LB
+37163,12.844138,"2,2,4-Trimethylpentane",LB
+37163,0.019926732,Manganese,LB
+37163,153.81622,Acetaldehyde,LB
+37163,0.012670642,Acenaphthene,LB
+37163,0.08003342,Ammonia,TON
+37163,0.04409055,Sulfur Dioxide,TON
+37193,0.0003624428,Nitrous Oxide,TON
+37193,0.0004720823,PM2.5 Primary (Filt + Cond),TON
+37193,0.4001726,Ethyl Benzene,LB
+37193,1.1040066e-05,"Dibenzo[a,h]Anthracene",LB
+37193,0.485658,"2,2,4-Trimethylpentane",LB
+37189,0.15316634,Styrene,LB
+37189,0.0002276818,"Dibenzo[a,h]Anthracene",LB
+37189,0.01482186,PM2.5 Primary (Filt + Cond),TON
+37191,0.18393338,"1,3-Butadiene",LB
+37191,0.0003957178,Benz[a]Anthracene,LB
+37191,0.0005312197,Nitrous Oxide,TON
+37187,0.0016597442,Nickel,LB
+37187,2.270908,"2,2,4-Trimethylpentane",LB
+37187,0.002739948,Manganese,LB
+37183,3.567946,Ethyl Benzene,LB
+37183,0.18334806,"1,3-Butadiene",LB
+37183,0.15456224,Acrolein,LB
+37183,18.368116,Toluene,LB
+37183,0.10390718,Propionaldehyde,LB
+37183,0.03690042,"Benzo[g,h,i,]Perylene",LB
+37183,0.007591872,Acenaphthene,LB
+37183,0.0005658444,Sulfate Portion of PM2.5-PRI,TON
+37179,76.97126,Propionaldehyde,LB
+37179,4.766336,Acenaphthene,LB
+37179,6.936853,PM25-Primary from certain diesel engines,TON
+37177,0.0005575712,Anthracene,LB
+37177,0.5472982,"2,2,4-Trimethylpentane",LB
+37177,8.57356e-05,Arsenic,LB
+37177,0.0004115096,Nitrous Oxide,TON
+37177,0.0005433288,PM2.5 Primary (Filt + Cond),TON
+37019,0.0007070958,Benzo[k]Fluoranthene,LB
+37019,3.818434e-06,Mercury,LB
+37019,10.428876,Acetaldehyde,LB
+37019,0.1718697,Fluorene,LB
+37011,0.7273394,Styrene,LB
+37011,0.001289403,"Benzo[g,h,i,]Perylene",LB
+37011,0.0012861714,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,46.50114,Formaldehyde,LB
+37011,4.530034,Benzene,LB
+37011,0.001323742,Arsenic,LB
+37011,0.09721074,PM25-Primary from certain diesel engines,TON
+37011,0.0009562853,Nitrous Oxide,TON
+37011,0.001758958,Sulfate Portion of PM2.5-PRI,TON
+37011,0.4652418,Anthracene,LB
+37011,0.0199223,Nickel,LB
+37011,3.707349,Carbon Monoxide,TON
+37011,0.05949047,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.01603784,Sulfur Dioxide,TON
+37023,8.137568,Hexane,LB
+37023,0.04218858,Acenaphthylene,LB
+37023,0.009107122,Acenaphthene,LB
+37023,0.03847779,Sulfur Dioxide,TON
+37003,0.03392024,Propionaldehyde,LB
+37003,0.00018263826,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.14655982,"2,2,4-Trimethylpentane",LB
+37003,5.403907e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.0003296109,Sulfur Dioxide,TON
+37119,880.4388,Toluene,LB
+37119,254.3926,Benzene,LB
+37079,0.003255984,Benzo[b]Fluoranthene,LB
+37079,0.6969348,Acenaphthylene,LB
+37079,0.018323682,Nickel,LB
+37079,0.02963188,Ammonia,TON
+37081,35.5699,Pyrene,LB
+37081,3210.498,Formaldehyde,LB
+37081,304.0722,Benzene,LB
+37081,0.429509,Nickel,LB
+37081,13.96384,PM25-Primary from certain diesel engines,TON
+37081,289.2123,Nitrogen Oxides,TON
+37081,1.943262,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.4074654,Sulfate Portion of PM2.5-PRI,TON
+37071,1.5432598,Toluene,LB
+37071,0.2239266,Pyrene,LB
+37071,0.06947996,Acenaphthene,LB
+37071,2.37902,Naphthalene,LB
+37071,0.0552759,PM2.5 Primary (Filt + Cond),TON
+37071,0.7523865,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.3631271,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,342.141,Acrolein,LB
+37071,101.94196,"2,2,4-Trimethylpentane",LB
+37071,406.6272,Benzene,LB
+37071,0.16173816,Arsenic,LB
+37069,51216.52,Toluene,LB
+37069,4624.854,Formaldehyde,LB
+37069,0.10041048,"Dibenzo[a,h]Anthracene",LB
+37069,0.9134304,Nickel,LB
+37069,771.6246,Naphthalene,LB
+37069,0.01358549,Nitrate portion of PM2.5-PRI,TON
+37069,3.003478,Sulfur Dioxide,TON
+37063,101.90176,Acrolein,LB
+37063,117.4208,Xylenes (Mixed Isomers),LB
+37063,0.05506228,"Benzo[g,h,i,]Perylene",LB
+37063,0.2703628,Benzo[b]Fluoranthene,LB
+37059,0.03847468,Benz[a]Anthracene,LB
+37059,7.80177,Acetaldehyde,LB
+37059,0.6113388,Carbon Monoxide,TON
+37059,2.152047,Nitrogen Oxides,TON
+37059,0.01698796,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.08953898,PM2.5 Primary (Filt + Cond),TON
+37065,2.233904,Acrolein,LB
+37065,0.739543,Hexane,LB
+37065,29.45862,Formaldehyde,LB
+37065,1.2569472e-05,Mercury,LB
+37065,0.150684,Fluorene,LB
+37065,3.13415,Naphthalene,LB
+37065,0.0587255,Anthracene,LB
+37065,0.0230659,Benzo[b]Fluoranthene,LB
+37065,55.4093,"2,2,4-Trimethylpentane",LB
+37065,3.54607,Naphthalene,LB
+37065,0.02353398,Sulfur Dioxide,TON
+37061,0.0001656038,Benzo[k]Fluoranthene,LB
+37061,0.6933368,Nitrogen Oxides,TON
+37045,3.972868e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.026997,Formaldehyde,LB
+37045,0.004537362,Naphthalene,LB
+37045,0.463163,Carbon Dioxide,TON
+37045,5.203454e-05,Nitrous Oxide,TON
+37045,4.020888e-05,PM2.5 Primary (Filt + Cond),TON
+37045,0.001613382,Volatile Organic Compounds,TON
+37039,8.783998e-05,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.0282042,"1,3-Butadiene",LB
+37039,8.364906e-08,Chromium (VI),LB
+37039,0.0004266666,"Benzo[g,h,i,]Perylene",LB
+37039,9.386208e-05,Chrysene,LB
+37039,0.0014663696,Phenanthrene,LB
+37039,0.013942068,Naphthalene,LB
+37037,5.205495e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.2087674,Xylenes (Mixed Isomers),LB
+37037,0.0005480286,Acenaphthylene,LB
+37037,1.5617846e-05,Nickel,LB
+37037,0.0006647574,Phenanthrene,LB
+37037,8.221654,Carbon Dioxide,TON
+37035,1.0415164,Styrene,LB
+37035,1.0885624,Acrolein,LB
+37035,33.38432,Hexane,LB
+37035,0.012986292,Benzo[k]Fluoranthene,LB
+37035,24.2594,"2,2,4-Trimethylpentane",LB
+37035,0.01311225,Benz[a]Anthracene,LB
+37035,54.49532,Benzene,LB
+37035,0.002604546,Arsenic,LB
+37035,14.529928,Acetaldehyde,LB
+37035,0.02072943,Nitrous Oxide,TON
+37035,6.670717e-05,Nitrate portion of PM2.5-PRI,TON
+37035,0.1103042,PM10 Primary (Filt + Cond),TON
+37025,10.780234,Pyrene,LB
+37025,0.04864012,"Benzo[g,h,i,]Perylene",LB
+37025,0.03337206,Benzo[k]Fluoranthene,LB
+37025,3.429802,Acenaphthene,LB
+37025,47076.14,Carbon Dioxide,TON
+37025,0.0649873,Nitrous Oxide,TON
+37025,5.758488,Volatile Organic Compounds,TON
+37025,5.139158,Formaldehyde,LB
+37025,0.008880488,Benzo[a]Pyrene,LB
+37025,4.692156,Acetaldehyde,LB
+37025,0.281808,Propionaldehyde,LB
+37025,0.02638378,Pyrene,LB
+37025,0.005312284,Chrysene,LB
+37025,2.26398,Acrolein,LB
+37025,0.02560874,Benzo[b]Fluoranthene,LB
+37025,0.02582928,Chrysene,LB
+37025,0.00075139,"Dibenzo[a,h]Anthracene",LB
+37025,0.0001371043,Nitrate portion of PM2.5-PRI,TON
+37007,17.57153,Benzene,LB
+37007,0.0010912904,Arsenic,LB
+37007,0.7846362,Naphthalene,LB
+37001,38.52058,Benzene,LB
+37001,0.00013398396,Mercury,LB
+37001,35.7305,Carbon Monoxide,TON
+37001,0.08006333,PM10-Primary from certain diesel engines,TON
+37001,0.01662718,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.04650596,Ammonia,TON
+37001,0.04161816,Organic Carbon portion of PM2.5-PRI,TON
+37001,1.7348964,Benzene,LB
+37001,0.0002575998,Ammonia,TON
+37001,4.242775e-05,Sulfate Portion of PM2.5-PRI,TON
+37001,6.951228,Toluene,LB
+37001,1.49839,Hexane,LB
+37001,0.0008989038,Benzo[b]Fluoranthene,LB
+37001,0.6191972,Formaldehyde,LB
+37001,1.5431656,"2,2,4-Trimethylpentane",LB
+37001,0.000837891,Benz[a]Anthracene,LB
+37189,42.32944,Xylenes (Mixed Isomers),LB
+37189,12.08274,"2,2,4-Trimethylpentane",LB
+37189,0.0002522632,Mercury,LB
+37189,0.06943004,Nickel,LB
+37189,19251.01,Carbon Dioxide,TON
+37189,1.77981,PM10-Primary from certain diesel engines,TON
+37189,48.14479,Nitrogen Oxides,TON
+37183,0.0911023,"Dibenzo[a,h]Anthracene",LB
+37183,4.606238,Methane,TON
+37183,8.515043,PM10-Primary from certain diesel engines,TON
+37199,3331.747,Carbon Dioxide,TON
+37199,0.5020813,PM10-Primary from certain diesel engines,TON
+37199,3.944245,Volatile Organic Compounds,TON
+37199,22.26888,"1,3-Butadiene",LB
+37199,0.002952508,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,3.804286,Acenaphthylene,LB
+37199,0.06310532,Manganese,LB
+37199,0.0241468,Arsenic,LB
+37195,25.53914,Toluene,LB
+37195,2.980656,Hexane,LB
+37115,0.007014062,Propionaldehyde,LB
+37115,1.3427908e-06,Mercury,LB
+37115,0.0002398308,Nitrous Oxide,TON
+37115,6.946552e-06,Sulfate Portion of PM2.5-PRI,TON
+37109,0.4760421,PM10 Primary (Filt + Cond),TON
+37109,0.6635658,Volatile Organic Compounds,TON
+37109,8.518524,Toluene,LB
+37109,8.717204,Xylenes (Mixed Isomers),LB
+37109,0.6198154,Acenaphthylene,LB
+37109,0.0018068918,"Dibenzo[a,h]Anthracene",LB
+37109,3.046394,"2,2,4-Trimethylpentane",LB
+37109,61.4073,Xylenes (Mixed Isomers),LB
+37109,20.60294,Benzene,LB
+37101,0.5660856,Styrene,LB
+37101,0.13738008,Anthracene,LB
+37101,2.201502,Xylenes (Mixed Isomers),LB
+37101,3.574046,Benzene,LB
+37101,0.004726818,Nickel,LB
+37095,0.005353594,Nickel,LB
+37095,0.007271432,Ammonia,TON
+37095,0.8193586,Hexane,LB
+37095,0.3547884,Pyrene,LB
+37095,8.786846e-06,Chromium (VI),LB
+37095,0.007755092,Benzo[b]Fluoranthene,LB
+37083,0.04610016,Styrene,LB
+37083,0.003165284,Fluoranthene,LB
+37083,0.0002028554,Arsenic,LB
+37083,0.002096056,Acenaphthene,LB
+37083,1.166482,Carbon Monoxide,TON
+37083,0.0002684528,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.1134631,Nitrogen Oxides,TON
+37083,0.0006960286,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,3.461194,Styrene,LB
+37053,20.68256,Toluene,LB
+37053,0.011560304,"Benzo[g,h,i,]Perylene",LB
+37053,0.007795814,"Dibenzo[a,h]Anthracene",LB
+37053,0.6230809,PM25-Primary from certain diesel engines,TON
+37053,0.232161,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.08216655,Ammonia,TON
+37053,0.1245209,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.4302546,Nickel,LB
+37053,4.515132,Fluorene,LB
+37053,60.79162,Nitrogen Oxides,TON
+37053,0.6702314,Organic Carbon portion of PM2.5-PRI,TON
+37051,3.674644,Fluoranthene,LB
+37051,1.0348514,Benzo[a]Pyrene,LB
+37051,1.237667,Manganese,LB
+37051,0.02786784,Mercury,LB
+37051,130.23958,Naphthalene,LB
+37051,1.139939,Sulfur Dioxide,TON
+37029,0.09060562,Anthracene,LB
+37029,1.780906,Propionaldehyde,LB
+37029,0.18451908,Acenaphthylene,LB
+37029,0.011493116,Chrysene,LB
+37029,0.003155814,Benzo[a]Pyrene,LB
+37023,0.00719375,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.03926392,Acenaphthylene,LB
+37023,0.0006709596,Nickel,LB
+37023,2.586434,Acetaldehyde,LB
+37023,0.04722186,Phenanthrene,LB
+37023,0.004838961,Nitrous Oxide,TON
+37023,0.0030415,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,2.307026e-05,Arsenic,LB
+37171,0.00470358,Acenaphthene,LB
+37171,0.02561002,Phenanthrene,LB
+37171,0.2442822,Naphthalene,LB
+37171,0.0006812211,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.0001661495,Ammonia,TON
+37171,0.00214127,PM2.5 Primary (Filt + Cond),TON
+37171,0.0015250638,Benzo[k]Fluoranthene,LB
+37171,0.0014994986,Benz[a]Anthracene,LB
+37171,145.16408,Propionaldehyde,LB
+37171,3.115244,Benzo[k]Fluoranthene,LB
+37171,2.826932,Manganese,LB
+37171,15.2086,Fluorene,LB
+37171,1.114495,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.01538151,Nitrate portion of PM2.5-PRI,TON
+37171,5.825144,PM2.5 Primary (Filt + Cond),TON
+37167,0.0583597,Nickel,LB
+37167,1.875315,PM25-Primary from certain diesel engines,TON
+37167,1.953189,PM2.5 Primary (Filt + Cond),TON
+37167,1.5044776,Anthracene,LB
+37167,0.343332,Benzo[a]Pyrene,LB
+37167,0.014010862,"Dibenzo[a,h]Anthracene",LB
+37165,0.0421607,Benzo[b]Fluoranthene,LB
+37165,252.897,Formaldehyde,LB
+37165,0.00012317678,Mercury,LB
+37165,9521.636,Carbon Dioxide,TON
+37165,1.321867,Volatile Organic Compounds,TON
+37165,0.09590082,Carbon Monoxide,TON
+37165,43.29257,Carbon Dioxide,TON
+37165,0.005120779,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.326499,Xylenes (Mixed Isomers),LB
+37165,1.1175524e-06,Chromium (VI),LB
+37165,0.0002852796,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.000559001,Acrolein,LB
+37165,5.984166e-05,Fluorene,LB
+37165,0.2879226,Carbon Dioxide,TON
+37165,2.030762e-05,PM2.5 Primary (Filt + Cond),TON
+37153,227.074,Acrolein,LB
+37153,0.08443256,"Dibenzo[a,h]Anthracene",LB
+37153,4152.672,Acetaldehyde,LB
+37153,67.71702,Phenanthrene,LB
+37153,2841.359,Carbon Monoxide,TON
+37153,1.318073,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,2.432912,Hexane,LB
+37135,0.4732388,Acenaphthylene,LB
+37135,0.06174645,Methane,TON
+37135,0.01389616,Sulfate Portion of PM2.5-PRI,TON
+37131,0.008494834,"Benzo[g,h,i,]Perylene",LB
+37131,0.003161998,Benzo[a]Pyrene,LB
+37131,7.32391e-05,"Dibenzo[a,h]Anthracene",LB
+37131,0.0016675296,Benz[a]Anthracene,LB
+37131,52.34316,Propionaldehyde,LB
+37131,1.0573544,Benzo[b]Fluoranthene,LB
+37131,808.9492,Formaldehyde,LB
+37131,14.784304,Phenanthrene,LB
+37131,767.0068,Carbon Monoxide,TON
+37131,0.05258191,Sulfate Portion of PM2.5-PRI,TON
+37117,3.678171e-05,Nitrate portion of PM2.5-PRI,TON
+37117,0.01018993,Sulfur Dioxide,TON
+37117,0.02930116,Anthracene,LB
+37117,0.008812676,Benzo[b]Fluoranthene,LB
+37117,0.008812676,Benzo[k]Fluoranthene,LB
+37117,0.009046494,Benz[a]Anthracene,LB
+37125,1.4016244e-05,Arsenic,LB
+37125,5.068909,Carbon Dioxide,TON
+37125,2.967979e-07,Nitrate portion of PM2.5-PRI,TON
+37123,0.3804334,Fluoranthene,LB
+37123,0.4932964,Fluorene,LB
+37123,0.03545153,Methane,TON
+37109,1.047649,Hexane,LB
+37109,0.13320018,Anthracene,LB
+37109,0.0017853514,"Benzo[g,h,i,]Perylene",LB
+37109,0.002259548,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.02975244,Benzo[a]Pyrene,LB
+37109,1.6091476e-05,Mercury,LB
+37109,0.2680376,Fluorene,LB
+37103,0.4581034,Pyrene,LB
+37103,0.002053434,"Benzo[g,h,i,]Perylene",LB
+37093,0.018549368,Ethyl Benzene,LB
+37093,0.004194934,"1,3-Butadiene",LB
+37093,2.093716e-09,Chromium (VI),LB
+37093,9.124978e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,2.09896e-08,Mercury,LB
+37093,2.698501e-08,Nitrate portion of PM2.5-PRI,TON
+37093,4.844807e-06,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.0005420817,Volatile Organic Compounds,TON
+37091,0.006307058,PM2.5 Primary (Filt + Cond),TON
+37091,0.013350952,"Benzo[g,h,i,]Perylene",LB
+37091,0.005016084,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.004027914,Chrysene,LB
+37089,0.03522312,Pyrene,LB
+37089,0.007826766,Benzo[b]Fluoranthene,LB
+37089,1.0773306,Naphthalene,LB
+37089,0.01194314,Benzo[a]Pyrene,LB
+37089,22.18286,Benzene,LB
+37089,4.284476e-05,Mercury,LB
+37073,0.0009995106,Benzo[k]Fluoranthene,LB
+37073,0.0010013092,Chrysene,LB
+37073,2.973698e-05,"Dibenzo[a,h]Anthracene",LB
+37073,0.0010193518,Benz[a]Anthracene,LB
+37081,1.73103,Methane,TON
+37081,0.3380936,Sulfur Dioxide,TON
+37075,0.0805236,Styrene,LB
+37075,0.4700718,Acrolein,LB
+37075,0.02073112,Anthracene,LB
+37075,1.76386e-06,Chromium (VI),LB
+37075,0.00018614878,Benzo[k]Fluoranthene,LB
+37075,6.185134,Formaldehyde,LB
+37075,0.1606144,"2,2,4-Trimethylpentane",LB
+37075,0.018614324,Acenaphthene,LB
+37075,8.011472e-05,Nitrate portion of PM2.5-PRI,TON
+37069,2401.042,Toluene,LB
+37069,9.719276e-05,Chromium (VI),LB
+37069,0.09718834,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.012150144,Nickel,LB
+37069,0.018628514,Arsenic,LB
+37069,1.4243842,Phenanthrene,LB
+37069,0.1560965,PM10 Primary (Filt + Cond),TON
+37059,1.264601,PM2.5 Primary (Filt + Cond),TON
+37059,0.02341416,Sulfate Portion of PM2.5-PRI,TON
+37059,6.938232e-05,Chromium (VI),LB
+37059,0.01527832,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.6645082,Benz[a]Anthracene,LB
+37059,0.010992874,Arsenic,LB
+37059,113.39966,Acetaldehyde,LB
+37119,24.2005,Hexane,LB
+37119,1.986949,Volatile Organic Compounds,TON
+37115,7.031486e-05,Nickel,LB
+37115,0.00010781696,Arsenic,LB
+37115,0.0006493976,Methane,TON
+37115,0.08465174,Carbon Monoxide,TON
+37115,9.495294,Carbon Dioxide,TON
+37115,0.0002887001,Sulfur Dioxide,TON
+37115,0.00760934,Acrolein,LB
+37115,3.474066e-06,"Dibenzo[a,h]Anthracene",LB
+37083,0.19131448,"1,3-Butadiene",LB
+37083,0.15265564,Acrolein,LB
+37083,3.674788,Toluene,LB
+37083,0.002863622,Pyrene,LB
+37083,0.00345398,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.002532504,Fluoranthene,LB
+37083,2.426386,Formaldehyde,LB
+37083,1.7117908,"2,2,4-Trimethylpentane",LB
+37083,0.00018112894,Mercury,LB
+37083,0.0008327942,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.1516589,Nitrogen Oxides,TON
+37083,0.002260722,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.01626072,PM10 Primary (Filt + Cond),TON
+37079,7.388558,Formaldehyde,LB
+37079,0.00278167,Benz[a]Anthracene,LB
+37079,0.004744706,Manganese,LB
+37079,0.4484361,Nitrogen Oxides,TON
+37079,0.01188373,Sulfur Dioxide,TON
+37175,0.1973516,Toluene,LB
+37175,0.07117812,Hexane,LB
+37175,0.0006220098,Benzo[b]Fluoranthene,LB
+37175,0.00065242,Manganese,LB
+37175,9.181512e-05,Arsenic,LB
+37175,0.03428324,Phenanthrene,LB
+37175,0.05552762,Carbon Monoxide,TON
+37175,0.00219829,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.0001858194,Sulfur Dioxide,TON
+37175,0.04346505,Volatile Organic Compounds,TON
+37175,0.02716358,Anthracene,LB
+37175,0.0018337056,Benzo[b]Fluoranthene,LB
+37175,0.011674642,Chrysene,LB
+37175,0.004627076,Manganese,LB
+37175,0.09621942,Phenanthrene,LB
+37175,0.2575495,Carbon Monoxide,TON
+37175,0.7156199,Nitrogen Oxides,TON
+37169,49.42262,Ethyl Benzene,LB
+37169,0.02045208,Chrysene,LB
+37169,75.6135,Benzene,LB
+37169,24.42466,Acetaldehyde,LB
+37169,0.02621811,Ammonia,TON
+37169,0.0007649961,Sulfate Portion of PM2.5-PRI,TON
+37169,0.007619005,Nitrous Oxide,TON
+37169,0.005598536,Ammonia,TON
+37169,0.004480014,Sulfur Dioxide,TON
+37169,0.0246795,Pyrene,LB
+37169,28.90864,Xylenes (Mixed Isomers),LB
+37169,0.02162656,Fluoranthene,LB
+37169,0.00011934426,"Dibenzo[a,h]Anthracene",LB
+37169,8.305586,"2,2,4-Trimethylpentane",LB
+37169,0.004053632,Benz[a]Anthracene,LB
+37169,5.226544,Acetaldehyde,LB
+37169,0.7713136,Naphthalene,LB
+37167,1533.355,Xylenes (Mixed Isomers),LB
+37167,0.337038,"Benzo[g,h,i,]Perylene",LB
+37167,122.7367,Formaldehyde,LB
+37167,0.015828248,Nickel,LB
+37167,1.7818916,Phenanthrene,LB
+37167,0.02119473,Nitrous Oxide,TON
+37163,108.8106,Toluene,LB
+37163,155.4685,Carbon Dioxide,TON
+37163,0.005668537,Ammonia,TON
+37163,0.01189339,PM2.5 Primary (Filt + Cond),TON
+37161,2.033714,Ethyl Benzene,LB
+37161,1.3689646e-05,Chromium (VI),LB
+37161,0.0016759314,"Benzo[g,h,i,]Perylene",LB
+37161,61.13552,Formaldehyde,LB
+37161,0.000929583,"Dibenzo[a,h]Anthracene",LB
+37161,5.78588,Benzene,LB
+37161,0.02125773,Methane,TON
+37161,0.1256507,PM25-Primary from certain diesel engines,TON
+37157,0.001809036,Methane,TON
+37157,0.0001994471,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.0003720673,Nitrous Oxide,TON
+37157,0.2374436,"1,3-Butadiene",LB
+37157,0.0007665122,Benzo[b]Fluoranthene,LB
+37157,0.002678352,Fluoranthene,LB
+37157,0.5764662,Formaldehyde,LB
+37139,0.8040294,Styrene,LB
+37139,0.4229696,Pyrene,LB
+37139,0.04658274,Chrysene,LB
+37139,0.02153002,Benzo[a]Pyrene,LB
+37139,23.77106,Acetaldehyde,LB
+37139,6.010326,Naphthalene,LB
+37139,579.1083,Carbon Dioxide,TON
+37139,0.1229026,PM10-Primary from certain diesel engines,TON
+37125,13.258658,Toluene,LB
+37125,0.1305213,Benz[a]Anthracene,LB
+37125,76.96556,Acetaldehyde,LB
+37125,0.01120795,Sulfur Dioxide,TON
+37069,0.03158794,Acrolein,LB
+37069,0.000505374,Fluoranthene,LB
+37069,0.001377744,Acenaphthylene,LB
+37069,0.0002659494,Benz[a]Anthracene,LB
+37069,3.787274,Acetaldehyde,LB
+37069,0.0006042752,Fluorene,LB
+37069,0.00198914,Ammonia,TON
+37069,0.02685679,Nitrogen Oxides,TON
+37069,2.450593e-05,Sulfate Portion of PM2.5-PRI,TON
+37065,0.0006251228,Pyrene,LB
+37065,0.002883788,Methane,TON
+37065,0.0002101898,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.001348422,PM2.5 Primary (Filt + Cond),TON
+37061,0.018089066,Styrene,LB
+37061,1.4617214,Toluene,LB
+37061,1.2952906,Xylenes (Mixed Isomers),LB
+37061,0.0007975482,Benzo[k]Fluoranthene,LB
+37061,3.519214e-05,"Dibenzo[a,h]Anthracene",LB
+37049,3.153698,Ethyl Benzene,LB
+37171,19.367908,Xylenes (Mixed Isomers),LB
+37171,7.206784e-05,Chromium (VI),LB
+37171,0.01167948,Benzo[b]Fluoranthene,LB
+37171,0.0005131764,"Dibenzo[a,h]Anthracene",LB
+37171,0.01975628,Manganese,LB
+37171,0.05500938,Phenanthrene,LB
+37165,0.11019794,Styrene,LB
+37165,0.006596266,Fluoranthene,LB
+37165,0.004350412,Benzo[k]Fluoranthene,LB
+37165,0.0003196008,Mercury,LB
+37165,0.003984836,Nickel,LB
+37165,0.2523713,Volatile Organic Compounds,TON
+37171,0.010913598,Benzo[k]Fluoranthene,LB
+37171,17.33167,Acenaphthylene,LB
+37171,0.2647446,Benzo[a]Pyrene,LB
+37171,181.2637,Carbon Monoxide,TON
+37171,2.559983,PM25-Primary from certain diesel engines,TON
+37171,3.371274,PM10 Primary (Filt + Cond),TON
+37169,0.0018374964,Fluoranthene,LB
+37169,0.0001197978,Ammonia,TON
+37169,3.789585e-06,Nitrate portion of PM2.5-PRI,TON
+37169,0.0283012,Styrene,LB
+37169,0.001623423,PM10 Primary (Filt + Cond),TON
+37165,0.006981578,Anthracene,LB
+37165,3.656666e-06,Chromium (VI),LB
+37165,2.767428,Formaldehyde,LB
+37165,0.004354862,Benzo[a]Pyrene,LB
+37165,9.67181,Benzene,LB
+37165,3.665742e-05,Mercury,LB
+37165,0.002757657,Methane,TON
+37165,0.3827314,Nitrogen Oxides,TON
+37165,259.7608,Ethyl Benzene,LB
+37165,61.05224,"1,3-Butadiene",LB
+37165,1439.8108,Toluene,LB
+37165,0.7410624,Pyrene,LB
+37165,2.026934,Acenaphthylene,LB
+37165,0.07388348,Arsenic,LB
+37165,0.4450642,Acenaphthene,LB
+37165,0.00569264,Sulfate Portion of PM2.5-PRI,TON
+37165,0.002210111,Sulfate Portion of PM2.5-PRI,TON
+37165,0.0513916,Benzo[k]Fluoranthene,LB
+37165,0.08073061,Methane,TON
+37155,0.2487086,Propionaldehyde,LB
+37155,0.00979371,Benzo[k]Fluoranthene,LB
+37155,0.0004053664,"Dibenzo[a,h]Anthracene",LB
+37155,14.132038,Benzene,LB
+37155,6.803201,Carbon Monoxide,TON
+37155,0.2279524,Volatile Organic Compounds,TON
+37005,0.000219475,Benzo[a]Pyrene,LB
+37005,5.096698e-06,"Dibenzo[a,h]Anthracene",LB
+37005,1.0104072e-05,Mercury,LB
+37005,0.0003241658,Fluorene,LB
+37005,0.0002990074,PM2.5 Primary (Filt + Cond),TON
+37169,2.665732e-05,Nitrate portion of PM2.5-PRI,TON
+37169,0.13721196,Styrene,LB
+37169,0.5974118,"1,3-Butadiene",LB
+37169,0.007875994,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.007845396,Fluoranthene,LB
+37169,0.01364494,Sulfur Dioxide,TON
+37129,6.469412,Toluene,LB
+37129,5.077934,Xylenes (Mixed Isomers),LB
+37129,2.792198e-05,Chromium (VI),LB
+37129,7.231194,Benzene,LB
+37129,3.19896,Carbon Monoxide,TON
+37007,3.4911e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,6.080252e-07,Mercury,LB
+37019,4.880888,Benzo[a]Pyrene,LB
+37019,2.088886,Nickel,LB
+37019,23.37874,PM10 Primary (Filt + Cond),TON
+37019,0.1957734,Sulfate Portion of PM2.5-PRI,TON
+37019,6770.036,Ethyl Benzene,LB
+37019,1440.5688,"1,3-Butadiene",LB
+37019,43841.86,Toluene,LB
+37019,7.950462,Anthracene,LB
+37019,0.016711396,Chromium (VI),LB
+37019,42.08138,Acenaphthylene,LB
+37005,0.04058596,Ethyl Benzene,LB
+37005,5.642802e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,3.034652e-05,Benzo[k]Fluoranthene,LB
+37005,1.346722e-05,Nitrate portion of PM2.5-PRI,TON
+37005,0.2195186,Ethyl Benzene,LB
+37005,0.1683966,Hexane,LB
+37005,0.3261774,Propionaldehyde,LB
+37005,0.533298,Xylenes (Mixed Isomers),LB
+37005,0.1761542,"2,2,4-Trimethylpentane",LB
+37005,0.001573741,Manganese,LB
+37005,0.0003598632,Arsenic,LB
+37005,2.82582,Acetaldehyde,LB
+37005,0.2263899,Nitrogen Oxides,TON
+37081,0.009452786,Benzo[a]Pyrene,LB
+37081,0.003053492,Acenaphthene,LB
+37081,0.3864556,Nitrogen Oxides,TON
+37081,0.02185509,Sulfur Dioxide,TON
+37081,0.3183716,Acrolein,LB
+37081,0.005733308,Fluoranthene,LB
+37081,0.014254568,Acenaphthylene,LB
+37039,1.1778052,Toluene,LB
+37039,0.0004595584,Benzo[b]Fluoranthene,LB
+37039,0.000602894,Nickel,LB
+37039,0.002623768,Phenanthrene,LB
+37039,0.5868315,Carbon Monoxide,TON
+37039,0.000563064,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.001237756,PM2.5 Primary (Filt + Cond),TON
+37029,2.68265e-06,"Dibenzo[a,h]Anthracene",LB
+37029,0.05758284,"2,2,4-Trimethylpentane",LB
+37029,0.00010144758,Arsenic,LB
+37029,4.9771e-05,Anthracene,LB
+37025,5.251016,Hexane,LB
+37011,0.0011843866,"Benzo[g,h,i,]Perylene",LB
+37011,0.00018164746,Chrysene,LB
+37011,0.000439361,Benzo[a]Pyrene,LB
+37011,1.0217908e-05,"Dibenzo[a,h]Anthracene",LB
+37011,0.0004543732,Fluorene,LB
+37011,0.0002701755,Organic Carbon portion of PM2.5-PRI,TON
+37123,1.0933386,Ethyl Benzene,LB
+37113,0.08002184,"1,3-Butadiene",LB
+37113,0.05860698,Acrolein,LB
+37113,0.1272985,Propionaldehyde,LB
+37113,0.0386053,Volatile Organic Compounds,TON
+37113,1.1055164,Ethyl Benzene,LB
+37113,8.820438,Toluene,LB
+37101,0.0270708,Benz[a]Anthracene,LB
+37101,0.002180442,Mercury,LB
+37101,0.1467539,Phenanthrene,LB
+37101,0.2269498,Methane,TON
+37101,36.20102,Carbon Monoxide,TON
+37101,1.71416,Volatile Organic Compounds,TON
+37101,0.06011452,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.11881872,Acenaphthylene,LB
+37101,0.0013798458,"Dibenzo[a,h]Anthracene",LB
+37127,574.4054,Benzene,LB
+37117,6.28162,Ethyl Benzene,LB
+37117,0.006703418,Anthracene,LB
+37117,0.16151824,Propionaldehyde,LB
+37117,23.6018,Xylenes (Mixed Isomers),LB
+37117,0.0357742,Acenaphthylene,LB
+37117,0.006226321,Methane,TON
+37117,0.001291708,Sulfur Dioxide,TON
+37117,8.290987e-05,Sulfate Portion of PM2.5-PRI,TON
+37117,0.204922,Volatile Organic Compounds,TON
+37111,0.2259161,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,18.62677,Ethyl Benzene,LB
+37111,1.7309402,Anthracene,LB
+37111,27.72354,Propionaldehyde,LB
+37111,45.08484,Xylenes (Mixed Isomers),LB
+37111,0.02349714,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,14.926754,"2,2,4-Trimethylpentane",LB
+37111,0.3504263,Methane,TON
+37119,1.4437794e-05,Chromium (VI),LB
+37119,0.0016682722,Benzo[k]Fluoranthene,LB
+37119,0.2900538,Acenaphthylene,LB
+37119,0.07799518,Chrysene,LB
+37119,0.003364898,Arsenic,LB
+37119,1.274008,Carbon Monoxide,TON
+37119,0.04469101,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.0007134379,Nitrate portion of PM2.5-PRI,TON
+37113,7.261446,Ethyl Benzene,LB
+37113,0.009982614,Anthracene,LB
+37113,5.120118e-07,Chromium (VI),LB
+37113,0.00445097,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,3.748374,Formaldehyde,LB
+37113,0.000102246,"Dibenzo[a,h]Anthracene",LB
+37113,0.0007087749,Ammonia,TON
+37109,6.395916,Phenanthrene,LB
+37109,16.392432,Ethyl Benzene,LB
+37109,12.414194,Hexane,LB
+37109,5.476984,Pyrene,LB
+37109,0.07237478,Sulfate Portion of PM2.5-PRI,TON
+37091,4.622294,"1,3-Butadiene",LB
+37091,0.00554415,"Benzo[g,h,i,]Perylene",LB
+37091,0.02593486,Benzo[b]Fluoranthene,LB
+37091,0.0337986,Nickel,LB
+37091,0.4619054,Acenaphthene,LB
+37091,0.1403136,Ammonia,TON
+37103,0.7851794,Ethyl Benzene,LB
+37103,1.6345876e-05,Chromium (VI),LB
+37103,0.0014193584,Benzo[a]Pyrene,LB
+37103,5.910638e-05,"Dibenzo[a,h]Anthracene",LB
+37103,0.008631932,Nickel,LB
+37103,2.735338,Carbon Monoxide,TON
+37103,245.1625,Carbon Dioxide,TON
+37095,0.03729532,Propionaldehyde,LB
+37095,0.00014760574,Benzo[b]Fluoranthene,LB
+37095,0.7194986,Formaldehyde,LB
+37095,0.00014777014,Manganese,LB
+37095,2.823012e-05,Arsenic,LB
+37095,0.002289232,Acenaphthene,LB
+37095,0.07808872,Naphthalene,LB
+37095,5.062266e-05,Sulfate Portion of PM2.5-PRI,TON
+37089,0.1555631,Benzo[b]Fluoranthene,LB
+37089,0.2327598,Ammonia,TON
+37089,0.009261204,Nitrate portion of PM2.5-PRI,TON
+37089,9.600156,Styrene,LB
+37087,177.7605,Carbon Monoxide,TON
+37087,0.00861105,"Dibenzo[a,h]Anthracene",LB
+37075,1.8040864,Ethyl Benzene,LB
+37061,0.15687696,Benzo[b]Fluoranthene,LB
+37061,5.444388,Fluoranthene,LB
+37061,1.0132002,Chrysene,LB
+37061,19.230632,"2,2,4-Trimethylpentane",LB
+37061,0.02374765,Nitrous Oxide,TON
+37061,0.7473709,Organic Carbon portion of PM2.5-PRI,TON
+37061,23.21368,Acrolein,LB
+37061,19.828178,Xylenes (Mixed Isomers),LB
+37061,1.2766288,Fluoranthene,LB
+37061,0.3041843,PM25-Primary from certain diesel engines,TON
+37061,0.07406663,Ammonia,TON
+37061,0.04069153,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.0008706014,Arsenic,LB
+37055,5.821232,Acetaldehyde,LB
+37055,0.008116323,Methane,TON
+37055,1.0712142,Xylenes (Mixed Isomers),LB
+37055,4.076498e-06,Chromium (VI),LB
+37055,0.0006564412,"Benzo[g,h,i,]Perylene",LB
+37055,0.003310444,Benzo[b]Fluoranthene,LB
+37039,0.07816588,Anthracene,LB
+37039,0.001076082,"Benzo[g,h,i,]Perylene",LB
+37039,0.006472812,Manganese,LB
+37039,0.15562626,Fluorene,LB
+37039,0.4870055,Carbon Monoxide,TON
+37039,234.1323,Carbon Dioxide,TON
+37039,0.05845635,PM25-Primary from certain diesel engines,TON
+37039,0.02195718,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.0003133286,Nitrate portion of PM2.5-PRI,TON
+37039,0.1233495,Volatile Organic Compounds,TON
+37037,2.58299,Ethyl Benzene,LB
+37037,0.5623674,Pyrene,LB
+37037,0.001074365,"Dibenzo[a,h]Anthracene",LB
+37037,0.1661744,PM2.5 Primary (Filt + Cond),TON
+37037,0.006434863,Sulfate Portion of PM2.5-PRI,TON
+37025,0.0423662,"1,3-Butadiene",LB
+37025,0.4328762,Acrolein,LB
+37025,0.0012336234,Pyrene,LB
+37025,0.00015669026,Chrysene,LB
+37025,0.4404602,Benzene,LB
+37025,4.118636e-05,Mercury,LB
+37025,200.4291,Carbon Dioxide,TON
+37025,0.000816828,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.0004564122,"Benzo[g,h,i,]Perylene",LB
+37029,0.15773296,"2,2,4-Trimethylpentane",LB
+37029,0.17984902,Benzene,LB
+37029,2.748086e-06,Nickel,LB
+37029,0.00019358786,Acenaphthene,LB
+37029,4.841314e-07,Nitrate portion of PM2.5-PRI,TON
+37029,4.034028e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,4.789171e-06,Sulfate Portion of PM2.5-PRI,TON
+37029,0.003553965,Volatile Organic Compounds,TON
+37131,0.00012840008,Anthracene,LB
+37131,0.0002741824,Pyrene,LB
+37131,1.465801e-06,Chromium (VI),LB
+37131,0.000627987,Acenaphthylene,LB
+37131,8.04963e-06,"Dibenzo[a,h]Anthracene",LB
+37131,1.469452e-05,Mercury,LB
+37131,0.007060072,Naphthalene,LB
+37131,0.001414019,Methane,TON
+37131,1.200114e-06,Nitrate portion of PM2.5-PRI,TON
+37169,5.29678e-05,Chromium (VI),LB
+37169,0.009131232,Arsenic,LB
+37169,1.4622498,Fluorene,LB
+37155,0.1435721,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.6514677,Volatile Organic Compounds,TON
+37155,9.03783,Xylenes (Mixed Isomers),LB
+37155,4.366648e-05,Chromium (VI),LB
+37155,0.04026894,Manganese,LB
+37155,12.660296,Naphthalene,LB
+37163,1.0749954,"Benzo[g,h,i,]Perylene",LB
+37163,0.4038844,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.3226908,Benz[a]Anthracene,LB
+37163,0.1622607,Arsenic,LB
+37163,62.90574,Naphthalene,LB
+37163,1.148953,PM10 Primary (Filt + Cond),TON
+37153,4.978232,Acenaphthene,LB
+37153,2.545465,Methane,TON
+37153,2.199737,Nitrous Oxide,TON
+37153,3.079011,PM2.5 Primary (Filt + Cond),TON
+37153,105.4239,Volatile Organic Compounds,TON
+37153,3512.086,Ethyl Benzene,LB
+37153,5318.874,Hexane,LB
+37153,7.347358,Fluoranthene,LB
+37145,0.6715132,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.01222303,"Benzo[g,h,i,]Perylene",LB
+37145,1.290165,Acenaphthylene,LB
+37145,0.008423832,"Dibenzo[a,h]Anthracene",LB
+37145,4.239326e-05,Mercury,LB
+37145,0.03408786,Nickel,LB
+37145,0.008864384,Arsenic,LB
+37145,22.1151,Hexane,LB
+37129,0.017121094,Acrolein,LB
+37129,1.32026e-05,Chrysene,LB
+37129,3.052974e-05,Mercury,LB
+37139,0.000438411,Anthracene,LB
+37139,0.0002609376,Benzo[b]Fluoranthene,LB
+37139,0.0002216926,Chrysene,LB
+37139,0.0004361776,Benzo[a]Pyrene,LB
+37139,0.0001024167,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,5.323828,"1,3-Butadiene",LB
+37139,293.745,Hexane,LB
+37139,0.03988782,Benzo[b]Fluoranthene,LB
+37139,192.77878,Benzene,LB
+37139,0.006692462,Nickel,LB
+37139,0.2830494,Fluorene,LB
+37139,1.647882,Nitrogen Oxides,TON
+37139,0.0544106,PM2.5 Primary (Filt + Cond),TON
+37127,0.7968425,Volatile Organic Compounds,TON
+37127,137.41236,Formaldehyde,LB
+37127,0.05603316,Benzo[a]Pyrene,LB
+37013,3.643808,"1,3-Butadiene",LB
+37013,7.699196,Toluene,LB
+37013,1.1313366,Pyrene,LB
+37013,0.0242456,Benzo[b]Fluoranthene,LB
+37013,0.621364,Acenaphthylene,LB
+37013,0.003310508,"Dibenzo[a,h]Anthracene",LB
+37013,0.1076186,Elemental Carbon portion of PM2.5-PRI,TON
+37013,4.216737,Nitrogen Oxides,TON
+37007,6.18551,Hexane,LB
+37007,1.5981648,Fluoranthene,LB
+37007,103.65512,Acetaldehyde,LB
+37007,2.720572,Phenanthrene,LB
+37007,0.9925543,PM25-Primary from certain diesel engines,TON
+37007,0.6588651,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.1189986,Ammonia,TON
+37007,0.05506744,Sulfate Portion of PM2.5-PRI,TON
+37005,0.005901926,Fluoranthene,LB
+37005,2.858604e-05,"Dibenzo[a,h]Anthracene",LB
+37005,4.361096e-06,Mercury,LB
+37005,0.002597719,PM10 Primary (Filt + Cond),TON
+37005,0.0003309075,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,25.09208,Toluene,LB
+37005,4.34992e-07,Chromium (VI),LB
+37073,0.1003546,Naphthalene,LB
+37073,194.5107,Carbon Dioxide,TON
+37073,0.4644578,Propionaldehyde,LB
+37021,74.36836,Acrolein,LB
+37021,47.22026,Propionaldehyde,LB
+37021,0.010199326,"Benzo[g,h,i,]Perylene",LB
+37021,105.18646,Naphthalene,LB
+37021,0.03919792,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.1401143,Ammonia,TON
+37021,0.00120312,Nitrate portion of PM2.5-PRI,TON
+37021,237.984,Toluene,LB
+37013,0.8961622,Toluene,LB
+37013,0.6285128,Propionaldehyde,LB
+37013,0.919856,Xylenes (Mixed Isomers),LB
+37013,12.42578,Formaldehyde,LB
+37013,3.721302e-06,Mercury,LB
+37013,1.33475,Naphthalene,LB
+37013,0.01349399,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.08342984,PM10 Primary (Filt + Cond),TON
+37013,0.002491277,Sulfur Dioxide,TON
+37017,4.123212e-05,Phenanthrene,LB
+37017,1.53113e-05,Fluorene,LB
+37017,0.003671275,Carbon Monoxide,TON
+37017,0.06968556,Carbon Dioxide,TON
+37017,0.0001553944,Propionaldehyde,LB
+37017,3.44736e-05,Acenaphthylene,LB
+37013,0.0226543,Acenaphthylene,LB
+37013,0.010075606,Fluorene,LB
+37013,2.229877,Carbon Monoxide,TON
+37013,0.1038434,Volatile Organic Compounds,TON
+37013,2.834728,Xylenes (Mixed Isomers),LB
+37013,0.005447436,Acenaphthylene,LB
+37013,8.55633e-06,Arsenic,LB
+37013,0.006486916,Phenanthrene,LB
+37013,1.875137,Carbon Dioxide,TON
+37013,0.02044829,Nitrogen Oxides,TON
+37011,0.03574148,Styrene,LB
+37011,0.203649,Acrolein,LB
+37011,0.191478,Xylenes (Mixed Isomers),LB
+37011,0.00010787436,"Benzo[g,h,i,]Perylene",LB
+37011,0.0017387382,Benzo[a]Pyrene,LB
+37011,0.008235558,Acenaphthene,LB
+37011,0.001016601,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.0002598784,Acetaldehyde,LB
+37065,0.1446471,Volatile Organic Compounds,TON
+37027,0.02584784,Acrolein,LB
+37027,0.5115352,Xylenes (Mixed Isomers),LB
+37027,0.000512801,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,1.1774196e-05,"Dibenzo[a,h]Anthracene",LB
+37027,0.0008361754,Manganese,LB
+37027,2.429003e-05,Sulfate Portion of PM2.5-PRI,TON
+37153,0.11641908,Acrolein,LB
+37153,0.0012007806,Benzo[b]Fluoranthene,LB
+37153,0.002251302,Benzo[a]Pyrene,LB
+37153,0.003851444,Manganese,LB
+37153,0.00012412104,Mercury,LB
+37153,0.00217519,Fluorene,LB
+37153,0.01089527,Ammonia,TON
+37181,2.85227e-05,Mercury,LB
+37181,0.0006912338,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.00304976,Nitrous Oxide,TON
+37179,42402.82,Xylenes (Mixed Isomers),LB
+37179,2.96843,Nickel,LB
+37179,11417.39,Ethyl Benzene,LB
+37179,372.7343,Nitrogen Oxides,TON
+37179,4.80123,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.0003592296,"Benzo[g,h,i,]Perylene",LB
+37197,9.14558,Formaldehyde,LB
+37197,0.0014621892,Nickel,LB
+37197,0.02351196,PM25-Primary from certain diesel engines,TON
+37197,1.6061762,Ethyl Benzene,LB
+37197,0.12308192,Benz[a]Anthracene,LB
+37197,4.49007,Benzene,LB
+37197,0.008451284,Nickel,LB
+37197,5.246938,Naphthalene,LB
+37197,1.101426,Carbon Monoxide,TON
+37197,0.1450376,PM2.5 Primary (Filt + Cond),TON
+37197,0.02310663,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.00220553,Sulfur Dioxide,TON
+37185,0.6701418,Ethyl Benzene,LB
+37185,0.276085,Styrene,LB
+37185,0.07228362,Anthracene,LB
+37185,0.0012601826,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,8.709062,Acetaldehyde,LB
+37185,0.06360114,Acenaphthene,LB
+37185,257.2874,Carbon Dioxide,TON
+37185,0.01003133,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,250.0756,Acrolein,LB
+37189,3990,Formaldehyde,LB
+37189,0.9968194,Nickel,LB
+37189,4451.142,Acetaldehyde,LB
+37189,70.35196,Phenanthrene,LB
+37189,152736.9,Carbon Dioxide,TON
+37189,339.8536,Nitrogen Oxides,TON
+37189,2.496856,Organic Carbon portion of PM2.5-PRI,TON
+37189,1.630878,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.00010918672,Mercury,LB
+37199,8165.173,Carbon Dioxide,TON
+37199,0.001374919,Nitrate portion of PM2.5-PRI,TON
+37199,146.10048,Formaldehyde,LB
+37199,0.01263048,Arsenic,LB
+37193,3.36755e-06,Chromium (VI),LB
+37193,1.471421e-05,Nitrate portion of PM2.5-PRI,TON
+37187,0.7041628,Acrolein,LB
+37187,0.002263712,Chrysene,LB
+37187,0.8462294,Benzene,LB
+37187,72.54411,Carbon Dioxide,TON
+37183,83.40058,"1,3-Butadiene",LB
+37183,98.7664,Hexane,LB
+37183,1.6464456,Benzo[a]Pyrene,LB
+37183,0.10826846,"Dibenzo[a,h]Anthracene",LB
+37183,0.0009174916,Mercury,LB
+37183,0.19184964,Arsenic,LB
+37183,366.7386,Naphthalene,LB
+37183,0.0009439818,Chromium (VI),LB
+37183,17.745526,Acenaphthylene,LB
+37181,0.0003815118,Acrolein,LB
+37181,0.015390242,Hexane,LB
+37181,1.823785e-05,Anthracene,LB
+37181,1.0600566e-05,Benzo[b]Fluoranthene,LB
+37181,9.342676e-06,Nitrous Oxide,TON
+37179,0.05838387,Ammonia,TON
+37179,1.195165,PM2.5 Primary (Filt + Cond),TON
+37179,0.01509235,"Dibenzo[a,h]Anthracene",LB
+37179,13.161626,"2,2,4-Trimethylpentane",LB
+37179,3340.03,Carbon Dioxide,TON
+37177,0.03018304,Styrene,LB
+37177,0.011686386,Acenaphthylene,LB
+37177,6.127706e-05,"Dibenzo[a,h]Anthracene",LB
+37177,0.01023044,PM25-Primary from certain diesel engines,TON
+37177,0.006947835,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.0106952,PM2.5 Primary (Filt + Cond),TON
+37177,0.0010736,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.7346396,"Benzo[g,h,i,]Perylene",LB
+37013,1.4356514,Fluoranthene,LB
+37013,0.2320678,Benzo[k]Fluoranthene,LB
+37013,0.2788228,Benzo[a]Pyrene,LB
+37013,0.6181046,Methane,TON
+37013,0.5286765,Nitrous Oxide,TON
+37013,23.73487,Nitrogen Oxides,TON
+37001,0.5293495,Nitrogen Oxides,TON
+37001,0.0019621376,Manganese,LB
+37001,1.5945364e-05,Mercury,LB
+37001,0.0003048352,Arsenic,LB
+37001,0.03783539,Methane,TON
+37001,0.003052242,Elemental Carbon portion of PM2.5-PRI,TON
+37001,3.369738,"1,3-Butadiene",LB
+37001,0.007945336,Chrysene,LB
+37073,0.3911204,Hexane,LB
+37031,0.009157734,Anthracene,LB
+37031,20.05936,Formaldehyde,LB
+37031,0.039459,Manganese,LB
+37037,0.04265872,Acrolein,LB
+37037,0.000823085,Pyrene,LB
+37037,0.5540806,Carbon Monoxide,TON
+37037,0.0002562801,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.00113479,Nitrous Oxide,TON
+37037,0.04736778,Nitrogen Oxides,TON
+37127,0.015814544,Benzo[k]Fluoranthene,LB
+37127,0.011822214,Chrysene,LB
+37127,0.0001098951,Nitrate portion of PM2.5-PRI,TON
+37091,2.578094,Hexane,LB
+37091,0.004788604,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.014427748,Acenaphthylene,LB
+37091,6.608982,Formaldehyde,LB
+37091,3.14942,"2,2,4-Trimethylpentane",LB
+37091,8.331286,Benzene,LB
+37091,0.00017614278,Mercury,LB
+37091,39.0044,Acetaldehyde,LB
+37091,0.01756862,Phenanthrene,LB
+37091,0.001854623,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,2.124604,Benzene,LB
+37089,0.1949183,Volatile Organic Compounds,TON
+37179,0.06948042,Nitrous Oxide,TON
+37179,0.4117105,PM2.5 Primary (Filt + Cond),TON
+37179,0.9246414,Anthracene,LB
+37179,409.7082,Formaldehyde,LB
+37179,0.3046262,Benz[a]Anthracene,LB
+37179,1473.5112,Benzene,LB
+37179,0.004211848,Mercury,LB
+37179,56.15784,Naphthalene,LB
+37197,0.6922546,Hexane,LB
+37197,0.0011084374,Fluoranthene,LB
+37197,1.0604734,Formaldehyde,LB
+37197,0.001393985,Manganese,LB
+37197,0.000872477,Nickel,LB
+37197,0.003650712,Phenanthrene,LB
+37197,0.0005779941,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,4.981136,"2,2,4-Trimethylpentane",LB
+37193,0.001321111,Nitrous Oxide,TON
+37193,0.1375573,PM2.5 Primary (Filt + Cond),TON
+37193,0.004387915,Sulfate Portion of PM2.5-PRI,TON
+37191,12.83185,Fluoranthene,LB
+37191,2.815374,Chrysene,LB
+37191,0.10400486,"Dibenzo[a,h]Anthracene",LB
+37191,4.6685,Methane,TON
+37075,166.9025,Carbon Dioxide,TON
+37075,0.04151334,PM25-Primary from certain diesel engines,TON
+37075,0.0004622694,Nitrous Oxide,TON
+37075,1.569325,Nitrogen Oxides,TON
+37075,0.01043332,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.001470071,Sulfur Dioxide,TON
+37075,0.675175,Ethyl Benzene,LB
+37075,0.15600758,Pyrene,LB
+37075,0.12236792,Fluoranthene,LB
+37075,0.00387902,Manganese,LB
+37075,2.689618e-06,Mercury,LB
+37075,0.002560446,Nickel,LB
+37075,0.0005623836,Arsenic,LB
+37075,8.945134,Acetaldehyde,LB
+37071,56.5639,"1,3-Butadiene",LB
+37071,104.5275,Propionaldehyde,LB
+37071,14.616056,Pyrene,LB
+37071,0.2777194,Benzo[b]Fluoranthene,LB
+37071,7.473518,PM25-Primary from certain diesel engines,TON
+37071,0.08938697,Nitrous Oxide,TON
+37071,12.98192,PM10 Primary (Filt + Cond),TON
+37071,8.114803,PM2.5 Primary (Filt + Cond),TON
+37071,12.44894,Volatile Organic Compounds,TON
+37071,129.23774,Hexane,LB
+37071,146.77422,Xylenes (Mixed Isomers),LB
+37069,31.3967,Xylenes (Mixed Isomers),LB
+37069,0.01461505,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,1.5373298,Acenaphthylene,LB
+37069,142.63674,Acetaldehyde,LB
+37069,35.59584,Naphthalene,LB
+37069,0.800691,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.1895031,Ammonia,TON
+37067,3.126766,Pyrene,LB
+37067,0.09429472,Nickel,LB
+37067,10.156078,Phenanthrene,LB
+37067,1.309071,PM10 Primary (Filt + Cond),TON
+37067,0.2172203,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,414.4986,Hexane,LB
+37059,0.1741504,Anthracene,LB
+37059,7.684414e-05,Chromium (VI),LB
+37059,276.4968,Benzene,LB
+37059,0.015723946,Manganese,LB
+37059,51.00427,Carbon Monoxide,TON
+37059,1270.878,Carbon Dioxide,TON
+37053,0.0440981,Xylenes (Mixed Isomers),LB
+37053,9.180352e-05,Acenaphthylene,LB
+37053,6.311708e-06,Chrysene,LB
+37053,2.30695e-06,Manganese,LB
+37053,3.643132e-07,Nickel,LB
+37053,0.0017173678,Chrysene,LB
+37053,0.0017486246,Benz[a]Anthracene,LB
+37053,7.61049,Benzene,LB
+37053,0.0004282004,Arsenic,LB
+37053,8.220661e-06,Nitrate portion of PM2.5-PRI,TON
+37043,0.092056,Phenanthrene,LB
+37043,0.001688041,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.01432768,Nitrous Oxide,TON
+37043,0.006765296,PM2.5 Primary (Filt + Cond),TON
+37043,0.005540628,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.000967156,Arsenic,LB
+37037,10.654092,Styrene,LB
+37037,0.0004283426,Chromium (VI),LB
+37037,0.015547566,"Dibenzo[a,h]Anthracene",LB
+37037,43.26866,"2,2,4-Trimethylpentane",LB
+37037,0.11828166,Arsenic,LB
+37037,11.09302,Phenanthrene,LB
+37037,5.134479,PM10 Primary (Filt + Cond),TON
+37037,1.4889554,Pyrene,LB
+37037,11.478232,Xylenes (Mixed Isomers),LB
+37037,157.61206,Formaldehyde,LB
+37037,0.004328852,"Dibenzo[a,h]Anthracene",LB
+37037,0.005492552,Arsenic,LB
+37037,0.07789131,Methane,TON
+37037,0.009299817,Sulfate Portion of PM2.5-PRI,TON
+37037,314.4032,Naphthalene,LB
+37037,0.8245783,Elemental Carbon portion of PM2.5-PRI,TON
+37037,3.186181,Nitrous Oxide,TON
+37037,2.817885,Sulfur Dioxide,TON
+37037,2.212678,Benzo[b]Fluoranthene,LB
+37037,8.99679,Fluoranthene,LB
+37037,2.13449,Benz[a]Anthracene,LB
+37037,1.2171846,Nickel,LB
+37037,1.8663174,Arsenic,LB
+37037,33.03276,Phenanthrene,LB
+37033,73.56834,Xylenes (Mixed Isomers),LB
+37033,0.005105324,Manganese,LB
+37033,12.08934,Carbon Monoxide,TON
+37033,4.639117e-05,Nitrate portion of PM2.5-PRI,TON
+37033,0.008359443,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.01707431,PM2.5 Primary (Filt + Cond),TON
+37031,0.02215329,PM25-Primary from certain diesel engines,TON
+37031,0.03190349,PM10 Primary (Filt + Cond),TON
+37031,0.6925372,Toluene,LB
+37031,0.5536898,Propionaldehyde,LB
+37031,0.1051176,Pyrene,LB
+37031,0.9782344,Benzene,LB
+37029,0.0011914208,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.013755654,Acenaphthylene,LB
+37029,0.0002228886,Ammonia,TON
+37029,3.296285e-06,Nitrate portion of PM2.5-PRI,TON
+37119,19.373556,Propionaldehyde,LB
+37119,0.040695,Arsenic,LB
+37119,0.4769789,Methane,TON
+37119,8931.178,Carbon Dioxide,TON
+37109,7.057214,Ethyl Benzene,LB
+37109,0.5158608,Benz[a]Anthracene,LB
+37109,0.1017435,Methane,TON
+37109,0.180481,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.5152032,PM2.5 Primary (Filt + Cond),TON
+37109,0.01235623,Sulfate Portion of PM2.5-PRI,TON
+37109,11.526196,Ethyl Benzene,LB
+37109,0.3587408,Styrene,LB
+37109,1.9802812,"1,3-Butadiene",LB
+37109,0.2827408,Acrolein,LB
+37109,43.1977,Xylenes (Mixed Isomers),LB
+37109,0.01142062,"Benzo[g,h,i,]Perylene",LB
+37109,4.80356,Formaldehyde,LB
+37109,0.003735342,Benz[a]Anthracene,LB
+37109,0.0009723179,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.3589834,Manganese,LB
+37105,0.099033,Nickel,LB
+37105,0.07522944,Arsenic,LB
+37105,446.7986,Acetaldehyde,LB
+37105,4.298388,Fluorene,LB
+37105,1.589388,Elemental Carbon portion of PM2.5-PRI,TON
+37105,78.44347,Nitrogen Oxides,TON
+37105,4.186503,PM10 Primary (Filt + Cond),TON
+37105,0.2447887,Sulfur Dioxide,TON
+37105,4.710759,Volatile Organic Compounds,TON
+37097,0.15910362,Benzo[b]Fluoranthene,LB
+37097,1.8291062,Chrysene,LB
+37097,121.67936,Hexane,LB
+37097,13.701936,Anthracene,LB
+37097,3.223272,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.00017564072,Fluoranthene,LB
+37091,27.76904,Formaldehyde,LB
+37091,7.3922e-05,Anthracene,LB
+37091,0.0003349256,Pyrene,LB
+37091,0.00011337542,Acenaphthene,LB
+37091,0.0002481876,Fluorene,LB
+37091,0.001082042,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.009971886,"Benzo[g,h,i,]Perylene",LB
+37105,8.597216e-05,"Dibenzo[a,h]Anthracene",LB
+37105,0.0228252,Phenanthrene,LB
+37105,0.002194755,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.002811697,Sulfur Dioxide,TON
+37103,0.662079,Styrene,LB
+37103,1.4963612,"1,3-Butadiene",LB
+37103,8.626021e-05,Nitrate portion of PM2.5-PRI,TON
+37103,0.05297133,PM2.5 Primary (Filt + Cond),TON
+37103,0.003044879,Sulfur Dioxide,TON
+37101,27616.08,Hexane,LB
+37101,10.52212,Benz[a]Anthracene,LB
+37101,7.16965,Manganese,LB
+37099,3.94132,Acetaldehyde,LB
+37099,0.003580517,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.0005670708,Sulfur Dioxide,TON
+37099,3.854288e-08,Chromium (VI),LB
+37093,0.15635404,Benzo[a]Pyrene,LB
+37093,5.827452,"2,2,4-Trimethylpentane",LB
+37093,0.07320388,Manganese,LB
+37093,0.02651564,Nickel,LB
+37093,0.012096802,Arsenic,LB
+37093,0.138845,Methane,TON
+37093,0.02109542,Sulfur Dioxide,TON
+37093,0.7179712,Anthracene,LB
+37093,23.42586,Ethyl Benzene,LB
+37093,35.18394,Hexane,LB
+37093,0.692675,Propionaldehyde,LB
+37093,0.008506204,Benzo[b]Fluoranthene,LB
+37093,0.1659608,Acenaphthylene,LB
+37093,0.00890825,Benz[a]Anthracene,LB
+37093,0.02923375,Methane,TON
+37089,4.72521,Methane,TON
+37089,2065.717,Carbon Monoxide,TON
+37089,4.633989,Nitrous Oxide,TON
+37089,192.65536,Acrolein,LB
+37089,37961.16,Toluene,LB
+37089,165.97858,Propionaldehyde,LB
+37089,0.012966256,Chromium (VI),LB
+37089,0.11472488,"Dibenzo[a,h]Anthracene",LB
+37089,3.1587,Benz[a]Anthracene,LB
+37079,5.401496,"1,3-Butadiene",LB
+37079,14.098562,Toluene,LB
+37079,0.5653012,Anthracene,LB
+37079,0.916238,Acenaphthylene,LB
+37079,8.48927e-05,Mercury,LB
+37079,1.1478916,Fluorene,LB
+37079,0.006604603,Nitrous Oxide,TON
+37073,0.0510472,Anthracene,LB
+37073,0.01730494,Benzo[k]Fluoranthene,LB
+37073,0.3241024,Phenanthrene,LB
+37073,0.005967338,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,340.0022,Naphthalene,LB
+37067,79.43957,Carbon Monoxide,TON
+37063,0.018134778,Benzo[b]Fluoranthene,LB
+37063,2.14852,Fluoranthene,LB
+37063,522.06,Formaldehyde,LB
+37063,0.06076654,Benzo[a]Pyrene,LB
+37063,13.648598,"2,2,4-Trimethylpentane",LB
+37063,4.432712,Phenanthrene,LB
+37063,55.34848,Naphthalene,LB
+37063,0.5769302,PM10-Primary from certain diesel engines,TON
+37063,113.38762,Acenaphthylene,LB
+37063,61.1549,PM10 Primary (Filt + Cond),TON
+37061,24.49782,Benzene,LB
+37057,4.164138,"1,3-Butadiene",LB
+37057,0.000678448,Arsenic,LB
+37057,0.05846286,Fluorene,LB
+37057,0.7427515,Nitrogen Oxides,TON
+37057,0.015197702,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.0427864,Fluoranthene,LB
+37057,0.0101817,Benzo[k]Fluoranthene,LB
+37057,8.791668,Formaldehyde,LB
+37057,0.009875944,Benz[a]Anthracene,LB
+37057,32.05408,Benzene,LB
+37055,121.06104,Acrolein,LB
+37055,96.70598,Toluene,LB
+37055,7.191562,Fluoranthene,LB
+37055,167.37782,Naphthalene,LB
+37055,1.419677,PM25-Primary from certain diesel engines,TON
+37055,0.0322443,Nitrous Oxide,TON
+37055,0.1561728,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.08563853,Sulfur Dioxide,TON
+37047,120.978,Benzene,LB
+37047,0.0005661762,Mercury,LB
+37047,53.09312,Propionaldehyde,LB
+37047,0.8083634,Chrysene,LB
+37047,1576.6308,Formaldehyde,LB
+37039,8.269554,"1,3-Butadiene",LB
+37039,20.06094,Toluene,LB
+37039,0.919484,Anthracene,LB
+37039,0.007997612,Benzo[k]Fluoranthene,LB
+37039,0.1955443,Benzo[a]Pyrene,LB
+37039,116.88384,Acetaldehyde,LB
+37039,0.9606956,PM10 Primary (Filt + Cond),TON
+37039,1.515219,Volatile Organic Compounds,TON
+37033,0.6075806,Elemental Carbon portion of PM2.5-PRI,TON
+37033,1.226754,Sulfur Dioxide,TON
+37033,4950.088,Ethyl Benzene,LB
+37033,8054.56,Benzene,LB
+37033,2812.016,Acetaldehyde,LB
+37029,1.265123,Styrene,LB
+37029,6.035608e-05,Chromium (VI),LB
+37029,0.31411,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.005842566,Nitrous Oxide,TON
+37029,0.001011726,Nitrate portion of PM2.5-PRI,TON
+37029,0.770452,PM10 Primary (Filt + Cond),TON
+37121,0.00019682636,Pyrene,LB
+37121,0.2546758,Xylenes (Mixed Isomers),LB
+37121,3.981754e-05,Benzo[b]Fluoranthene,LB
+37121,3.71443e-05,Chrysene,LB
+37121,3.882676e-05,Benz[a]Anthracene,LB
+37121,1.304496e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37121,1.693942e-07,Nitrate portion of PM2.5-PRI,TON
+37121,0.004426813,Nitrogen Oxides,TON
+37121,0.0001091262,PM10 Primary (Filt + Cond),TON
+37121,1.543741e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,21.22828,"2,2,4-Trimethylpentane",LB
+37113,1.089739,Volatile Organic Compounds,TON
+37105,1.104814,PM10-Primary from certain diesel engines,TON
+37105,0.7380867,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.09247964,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,17.182886,Styrene,LB
+37105,28.9777,Hexane,LB
+37105,0.005097696,Benzo[k]Fluoranthene,LB
+37105,0.429924,Chrysene,LB
+37105,0.8985332,Benz[a]Anthracene,LB
+37105,41.02464,Hexane,LB
+37089,25.93766,Benzene,LB
+37089,0.0698902,Manganese,LB
+37089,0.02654306,Nickel,LB
+37089,21.69136,Acrolein,LB
+37089,20.12856,Toluene,LB
+37089,20.57692,Xylenes (Mixed Isomers),LB
+37089,0.03574326,Ammonia,TON
+37089,0.1223254,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.01550426,Sulfur Dioxide,TON
+37085,12.244794,Styrene,LB
+37085,0.02111588,Benzo[k]Fluoranthene,LB
+37085,0.0006242948,Mercury,LB
+37085,12.906148,Phenanthrene,LB
+37083,0.012762508,Pyrene,LB
+37083,5.779346e-05,Mercury,LB
+37083,2.042524,Acetaldehyde,LB
+37083,0.01405631,Fluorene,LB
+37083,0.3613242,Naphthalene,LB
+37083,0.008847866,Ammonia,TON
+37079,0.15920026,Hexane,LB
+37079,0.00012848118,Benzo[a]Pyrene,LB
+37079,7.637754e-06,Nickel,LB
+37079,0.00019401804,Acenaphthene,LB
+37075,1.675666,Pyrene,LB
+37075,0.003970296,"Benzo[g,h,i,]Perylene",LB
+37075,0.004591304,Nitrous Oxide,TON
+37075,0.3135548,PM10 Primary (Filt + Cond),TON
+37075,0.002829092,Pyrene,LB
+37075,5.413958,Xylenes (Mixed Isomers),LB
+37075,0.0014111254,"Benzo[g,h,i,]Perylene",LB
+37075,0.0004258034,Benzo[b]Fluoranthene,LB
+37075,1.8617442,Benzene,LB
+37075,0.5883972,Acetaldehyde,LB
+37075,0.003463208,Fluorene,LB
+37075,0.0887568,Naphthalene,LB
+37075,0.001204486,PM10 Primary (Filt + Cond),TON
+37075,1617.517,Ethyl Benzene,LB
+37075,4.073864,Fluoranthene,LB
+37075,12.797656,Acenaphthylene,LB
+37075,2.009335,Ammonia,TON
+37075,1.808427,PM10 Primary (Filt + Cond),TON
+37071,116.09852,Xylenes (Mixed Isomers),LB
+37071,0.03096628,Benzo[k]Fluoranthene,LB
+37071,14.350088,Phenanthrene,LB
+37069,0.16735076,Anthracene,LB
+37069,1.6225664e-05,Chromium (VI),LB
+37069,0.01983851,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,2.519094e-05,Chromium (VI),LB
+37069,0.3101908,Fluoranthene,LB
+37069,34.16488,Acetaldehyde,LB
+37069,0.008002407,Ammonia,TON
+37069,0.6026798,Nitrogen Oxides,TON
+37069,2.109612e-06,Chromium (VI),LB
+37069,0.002395086,Benzo[b]Fluoranthene,LB
+37069,0.19482996,Acrolein,LB
+37069,3.43145,Acetaldehyde,LB
+37069,0.010294632,Acenaphthene,LB
+37069,0.0557576,Phenanthrene,LB
+37069,82.3116,Carbon Dioxide,TON
+37069,0.001726388,Sulfur Dioxide,TON
+37061,0.0005963786,Nickel,LB
+37061,0.000914434,Arsenic,LB
+37061,0.11277786,Phenanthrene,LB
+37061,0.04157178,Fluorene,LB
+37057,0.1068887,Sulfate Portion of PM2.5-PRI,TON
+37057,65.7452,Acrolein,LB
+37057,0.1140468,Nickel,LB
+37057,0.0816947,Anthracene,LB
+37057,1192.326,Carbon Dioxide,TON
+37057,0.1522986,PM10 Primary (Filt + Cond),TON
+37057,0.0173025,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,11.647434,Ethyl Benzene,LB
+37055,11.412472,"1,3-Butadiene",LB
+37055,27.754,Acrolein,LB
+37055,8.807212,Hexane,LB
+37055,0.9869428,Anthracene,LB
+37055,8.905174e-05,Chromium (VI),LB
+37055,0.056042,Benzo[a]Pyrene,LB
+37055,33.08444,Benzene,LB
+37055,152.58362,Acetaldehyde,LB
+37055,38.5217,Naphthalene,LB
+37055,17.48431,Carbon Monoxide,TON
+37055,0.07430529,Ammonia,TON
+37053,0.05151839,Volatile Organic Compounds,TON
+37053,1.725948,Ethyl Benzene,LB
+37053,0.0010458176,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.012380562,Acenaphthylene,LB
+37053,0.000758987,Chrysene,LB
+37053,0.001885725,Nitrous Oxide,TON
+37039,2.960458,Ethyl Benzene,LB
+37039,1.2478548,Styrene,LB
+37039,6.989216,Acrolein,LB
+37039,0.00219353,Benzo[b]Fluoranthene,LB
+37039,8.343942,Benzene,LB
+37039,0.4919212,Fluorene,LB
+37039,9.732224,Naphthalene,LB
+37039,0.5101244,Volatile Organic Compounds,TON
+37041,0.2584976,Ethyl Benzene,LB
+37041,2.555958e-06,Chromium (VI),LB
+37041,0.0016521808,Benzo[b]Fluoranthene,LB
+37041,0.0002269668,Benzo[k]Fluoranthene,LB
+37041,0.002303812,Manganese,LB
+37041,0.0012120896,Nickel,LB
+37041,0.202872,Carbon Monoxide,TON
+37041,0.01898569,PM25-Primary from certain diesel engines,TON
+37041,0.0002764884,Nitrous Oxide,TON
+37041,0.007928156,Organic Carbon portion of PM2.5-PRI,TON
+37035,3.359672e-05,Manganese,LB
+37035,4.19534e-06,Nickel,LB
+37035,0.01473152,Volatile Organic Compounds,TON
+37035,1.8553528,Xylenes (Mixed Isomers),LB
+37031,10.843652,Propionaldehyde,LB
+37031,0.957417,Benzene,LB
+37031,0.005033894,Manganese,LB
+37031,169.3604,Carbon Dioxide,TON
+37031,0.0008967015,Sulfur Dioxide,TON
+37031,0.3545994,Volatile Organic Compounds,TON
+37025,0.0002334706,Manganese,LB
+37025,1.933948e-05,Nickel,LB
+37025,2.965342e-05,Arsenic,LB
+37025,0.006491392,Fluorene,LB
+37025,0.0001801602,Ammonia,TON
+37025,0.005323668,Pyrene,LB
+37025,7.361314,Xylenes (Mixed Isomers),LB
+37135,53.47914,Propionaldehyde,LB
+37135,0.000520911,Chromium (VI),LB
+37129,0.0638571,Benzo[a]Pyrene,LB
+37129,0.05128983,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,236.0392,Volatile Organic Compounds,TON
+37135,7840.592,Ethyl Benzene,LB
+37135,4.636462,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.10939592,Anthracene,LB
+37133,0.2125804,Pyrene,LB
+37133,0.03295592,Benzo[b]Fluoranthene,LB
+37133,0.03295592,Benzo[k]Fluoranthene,LB
+37133,0.0009616206,"Dibenzo[a,h]Anthracene",LB
+37133,0.0007395406,Mercury,LB
+37133,5.983425,Nitrogen Oxides,TON
+37133,0.02650336,Organic Carbon portion of PM2.5-PRI,TON
+37123,10.843198,Styrene,LB
+37123,0.003625638,"Dibenzo[a,h]Anthracene",LB
+37123,156.25274,Acetaldehyde,LB
+37123,7.649033,Volatile Organic Compounds,TON
+37113,0.1094452,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.05616808,Sulfate Portion of PM2.5-PRI,TON
+37113,1.387849,Volatile Organic Compounds,TON
+37113,12.502398,Propionaldehyde,LB
+37113,21.06652,Xylenes (Mixed Isomers),LB
+37113,9.76293e-05,Chromium (VI),LB
+37113,260.0972,Formaldehyde,LB
+37113,0.10149108,Manganese,LB
+37113,0.1691924,Methane,TON
+37113,2927.36,Hexane,LB
+37113,1.3871192,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,3166.79,Benzene,LB
+37113,0.8465734,Manganese,LB
+37113,0.8876145,Sulfur Dioxide,TON
+37111,0.0004076932,Chromium (VI),LB
+37111,173.59458,Formaldehyde,LB
+37111,373.9472,"2,2,4-Trimethylpentane",LB
+37111,0.11108148,Manganese,LB
+37111,0.05095942,Nickel,LB
+37111,188.0845,Acetaldehyde,LB
+37111,1.1290726,Fluorene,LB
+37111,0.0006825463,Nitrate portion of PM2.5-PRI,TON
+37111,16.8091,Nitrogen Oxides,TON
+37111,0.2568825,PM2.5 Primary (Filt + Cond),TON
+37103,1.4580704,Naphthalene,LB
+37103,0.2991245,Carbon Monoxide,TON
+37103,0.01589648,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.001369152,Sulfur Dioxide,TON
+37103,4.725466e-06,Chromium (VI),LB
+37103,0.0004600824,"Dibenzo[a,h]Anthracene",LB
+37091,0.06908864,Ethyl Benzene,LB
+37091,0.0291896,Styrene,LB
+37091,0.16323498,Acrolein,LB
+37091,2.08613,Formaldehyde,LB
+37091,0.08937712,Nitrogen Oxides,TON
+37105,5.461488,Styrene,LB
+37105,1.1330286,Acenaphthylene,LB
+37105,0.1057347,Benzo[a]Pyrene,LB
+37105,0.0009879062,Mercury,LB
+37105,0.0153332,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.1691052,PM10 Primary (Filt + Cond),TON
+37105,0.1055397,PM2.5 Primary (Filt + Cond),TON
+37099,0.1155389,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,2299.194,Toluene,LB
+37099,0.0006526934,Chromium (VI),LB
+37099,0.2075854,Manganese,LB
+37099,0.5043539,Methane,TON
+37095,317.016,"2,2,4-Trimethylpentane",LB
+37093,0.002065148,Acrolein,LB
+37093,0.00011232574,Anthracene,LB
+37093,0.0002622006,Fluorene,LB
+37093,0.05577205,Carbon Monoxide,TON
+37091,0.0312238,Benzo[b]Fluoranthene,LB
+37085,27869.42,Carbon Dioxide,TON
+37085,0.006544534,Nitrate portion of PM2.5-PRI,TON
+37085,50.6495,Acrolein,LB
+37085,0.11005498,Benzo[b]Fluoranthene,LB
+37085,0.3686836,Benzo[a]Pyrene,LB
+37083,2.119994,"1,3-Butadiene",LB
+37083,0.05916162,"Benzo[g,h,i,]Perylene",LB
+37083,0.0222277,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.0005099928,"Dibenzo[a,h]Anthracene",LB
+37083,0.017142182,Acenaphthene,LB
+37083,0.03308512,PM10 Primary (Filt + Cond),TON
+37077,1.6481804,Acrolein,LB
+37077,21.6579,Formaldehyde,LB
+37077,0.5617144,"2,2,4-Trimethylpentane",LB
+37077,8.945244e-06,Mercury,LB
+37065,4.474574,Styrene,LB
+37065,3.324016,Pyrene,LB
+37065,0.02196806,Arsenic,LB
+37065,149.67724,Acetaldehyde,LB
+37049,1115.2716,"1,3-Butadiene",LB
+37049,9.874362,"Benzo[g,h,i,]Perylene",LB
+37049,10.470362,Fluoranthene,LB
+37049,366.9258,Naphthalene,LB
+37049,14.47961,PM10 Primary (Filt + Cond),TON
+37049,4.885926,PM2.5 Primary (Filt + Cond),TON
+37049,0.1325318,Sulfate Portion of PM2.5-PRI,TON
+37047,1.1859592,Propionaldehyde,LB
+37047,2.901564e-05,Chromium (VI),LB
+37047,0.0224822,Benz[a]Anthracene,LB
+37047,63.71996,Benzene,LB
+37047,0.016786624,Manganese,LB
+37047,0.0232318,Sulfur Dioxide,TON
+37041,8.504572,Acetaldehyde,LB
+37041,0.1433021,Nitrogen Oxides,TON
+37041,0.5333078,Hexane,LB
+37041,0.0399781,Anthracene,LB
+37041,0.07484976,Pyrene,LB
+37041,0.00017204432,Benzo[b]Fluoranthene,LB
+37041,0.0005755834,Benzo[a]Pyrene,LB
+37041,0.003100554,Manganese,LB
+37031,1.1573602,Toluene,LB
+37031,0.01016021,Methane,TON
+37031,0.00552274,Ammonia,TON
+37031,1.22729,Nitrogen Oxides,TON
+37031,0.003244196,Sulfur Dioxide,TON
+37031,0.003734682,Sulfate Portion of PM2.5-PRI,TON
+37115,1.5977732,"2,2,4-Trimethylpentane",LB
+37109,0.17618112,"1,3-Butadiene",LB
+37109,0.002817832,Arsenic,LB
+37109,13.853452,Acetaldehyde,LB
+37109,1.56864,Carbon Monoxide,TON
+37109,0.0007199905,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.001624982,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.0001216012,Sulfate Portion of PM2.5-PRI,TON
+37175,18.228758,Xylenes (Mixed Isomers),LB
+37171,3846.402,Hexane,LB
+37169,0.004186772,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.463714,Acenaphthylene,LB
+37169,90.47328,Formaldehyde,LB
+37169,2.336534,"2,2,4-Trimethylpentane",LB
+37169,1.0146374,Phenanthrene,LB
+37169,0.004563119,Sulfur Dioxide,TON
+37169,6.915328,Acrolein,LB
+37167,0.02603154,Benzo[k]Fluoranthene,LB
+37167,0.107423,Acenaphthene,LB
+37167,44.36793,Carbon Monoxide,TON
+37167,0.0009450225,Sulfate Portion of PM2.5-PRI,TON
+37159,54.5961,Toluene,LB
+37159,0.0002190516,Chromium (VI),LB
+37159,0.02636618,"Dibenzo[a,h]Anthracene",LB
+37159,75.21568,Benzene,LB
+37159,0.383056,Manganese,LB
+37159,10.109318,Phenanthrene,LB
+37159,0.3186509,Methane,TON
+37159,3.692574,PM25-Primary from certain diesel engines,TON
+37159,0.9264988,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.1135924,Sulfate Portion of PM2.5-PRI,TON
+37155,5.078496,Acrolein,LB
+37155,1.675929,Hexane,LB
+37155,0.16490484,Anthracene,LB
+37155,0.3234172,Pyrene,LB
+37155,0.019698926,Nickel,LB
+37155,582.1372,Carbon Dioxide,TON
+37155,0.003132917,Elemental Carbon portion of PM2.5-PRI,TON
+37161,51.28237,Volatile Organic Compounds,TON
+37133,1.8614396,Acrolein,LB
+37133,0.001025693,"Benzo[g,h,i,]Perylene",LB
+37133,0.000679331,Benzo[k]Fluoranthene,LB
+37133,0.0006784064,"Dibenzo[a,h]Anthracene",LB
+37133,0.05527262,Benz[a]Anthracene,LB
+37133,2.222028,Benzene,LB
+37133,0.01001304,Methane,TON
+37133,0.001835073,Sulfate Portion of PM2.5-PRI,TON
+37133,0.015503942,Acenaphthene,LB
+37133,0.001004782,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.006775046,Ammonia,TON
+37133,0.02200755,PM10 Primary (Filt + Cond),TON
+37133,0.002577689,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,1.9181888,"1,3-Butadiene",LB
+37133,4.113982e-06,Chromium (VI),LB
+37125,6.863016,"2,2,4-Trimethylpentane",LB
+37125,2.870104,Styrene,LB
+37125,1.280237,Volatile Organic Compounds,TON
+37121,4.18777,Acrolein,LB
+37121,0.2861136,Acenaphthylene,LB
+37121,0.003987548,Benzo[a]Pyrene,LB
+37121,0.00016453466,"Dibenzo[a,h]Anthracene",LB
+37121,1.3749196,"2,2,4-Trimethylpentane",LB
+37121,0.00228765,Arsenic,LB
+37121,0.1702036,Acenaphthene,LB
+37121,0.02526803,Methane,TON
+37121,294.6743,Carbon Dioxide,TON
+37121,0.04764006,PM10-Primary from certain diesel engines,TON
+37121,0.9503721,Nitrogen Oxides,TON
+37021,3.093846,Propionaldehyde,LB
+37021,5.547294,Xylenes (Mixed Isomers),LB
+37021,0.3099202,Acenaphthylene,LB
+37021,1.7617514,"2,2,4-Trimethylpentane",LB
+37021,0.1844506,Acenaphthene,LB
+37021,0.7467322,Phenanthrene,LB
+37021,0.04699157,Methane,TON
+37019,94.0526,Naphthalene,LB
+37019,22.78476,Carbon Monoxide,TON
+37019,14919.92,Carbon Dioxide,TON
+37019,4.1261,PM10-Primary from certain diesel engines,TON
+37019,0.2120823,Ammonia,TON
+37019,0.129117,Sulfur Dioxide,TON
+37019,28.12538,"1,3-Butadiene",LB
+37019,0.03020368,Benzo[k]Fluoranthene,LB
+37019,1.4017802,Chrysene,LB
+37019,850.9966,Formaldehyde,LB
+37019,0.0301454,"Dibenzo[a,h]Anthracene",LB
+37015,6.665188,"1,3-Butadiene",LB
+37015,19.031626,Acrolein,LB
+37015,1.119313,Acenaphthylene,LB
+37015,7.614396,"2,2,4-Trimethylpentane",LB
+37015,0.01295405,Nitrous Oxide,TON
+37015,36.45573,Carbon Dioxide,TON
+37015,0.000305981,Sulfate Portion of PM2.5-PRI,TON
+37015,0.02416999,Volatile Organic Compounds,TON
+37011,0.01083277,"1,3-Butadiene",LB
+37011,6.91084e-05,Anthracene,LB
+37011,4.968814e-05,Chrysene,LB
+37011,0.0007955452,Manganese,LB
+37011,0.0002320632,Fluorene,LB
+37011,0.00599922,PM10 Primary (Filt + Cond),TON
+37001,0.06854286,Benzo[a]Pyrene,LB
+37001,0.011707036,Nickel,LB
+37001,0.25961,Acenaphthene,LB
+37001,9.470116,Naphthalene,LB
+37001,0.01055861,Sulfur Dioxide,TON
+37075,0.017868792,"1,3-Butadiene",LB
+37075,0.01421098,Acrolein,LB
+37075,1.004688e-06,Chromium (VI),LB
+37075,0.00010437278,Chrysene,LB
+37075,0.0002717956,Fluorene,LB
+37157,4.170118,Toluene,LB
+37157,1.725242e-05,Chromium (VI),LB
+37157,0.008796632,"Benzo[g,h,i,]Perylene",LB
+37157,243.9416,Carbon Dioxide,TON
+37157,0.001917545,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.0001458107,Sulfate Portion of PM2.5-PRI,TON
+37125,0.04818612,Acrolein,LB
+37125,0.9705242,Xylenes (Mixed Isomers),LB
+37125,0.0003894212,Chrysene,LB
+37125,0.0009250486,Fluorene,LB
+37125,0.0238221,Naphthalene,LB
+37125,0.03265142,Volatile Organic Compounds,TON
+37119,0.956553,"1,3-Butadiene",LB
+37119,0.016241474,Pyrene,LB
+37119,0.0011631246,Mercury,LB
+37119,0.015139874,Fluorene,LB
+37119,0.09744928,Ammonia,TON
+37119,0.0001126524,Nitrate portion of PM2.5-PRI,TON
+37119,0.05046626,PM2.5 Primary (Filt + Cond),TON
+37119,0.06522141,Sulfur Dioxide,TON
+37013,2.512042,Benzene,LB
+37013,0.008502838,Manganese,LB
+37013,7.929842e-06,Mercury,LB
+37013,0.0016580324,Arsenic,LB
+37013,0.08400248,Acenaphthene,LB
+37013,0.01364528,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,8.04216,Benzene,LB
+37007,0.9807484,Volatile Organic Compounds,TON
+37019,0.006787722,Benzo[b]Fluoranthene,LB
+37019,0.1328494,PM25-Primary from certain diesel engines,TON
+37015,0.0002776358,Acenaphthylene,LB
+37015,0.10183496,Benzene,LB
+37015,0.0002664646,Fluorene,LB
+37015,0.001860846,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.03281733,Volatile Organic Compounds,TON
+37013,0.06452044,Ethyl Benzene,LB
+37013,1.4054994e-08,Chromium (VI),LB
+37013,8.339418e-07,"Dibenzo[a,h]Anthracene",LB
+37013,1.40899e-07,Mercury,LB
+37013,0.002966036,Nitrogen Oxides,TON
+37013,7.093002e-05,PM10 Primary (Filt + Cond),TON
+37013,9.106794e-07,Sulfate Portion of PM2.5-PRI,TON
+37009,0.582697,Ethyl Benzene,LB
+37009,0.2282664,Styrene,LB
+37009,0.4462798,Hexane,LB
+37009,0.02384578,Chrysene,LB
+37009,0.001012208,Arsenic,LB
+37009,0.01050302,Methane,TON
+37009,0.04030698,PM25-Primary from certain diesel engines,TON
+37009,0.007568942,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,56.8467,Styrene,LB
+37009,2.098102,Anthracene,LB
+37009,697.7828,Formaldehyde,LB
+37009,1.092115,Methane,TON
+37005,25.19154,Styrene,LB
+37005,2616.656,Xylenes (Mixed Isomers),LB
+37005,1.5860588,Fluoranthene,LB
+37005,0.3184594,Benz[a]Anthracene,LB
+37005,0.008009862,Mercury,LB
+37003,0.06131758,Pyrene,LB
+37003,0.0002804548,"Benzo[g,h,i,]Perylene",LB
+37003,0.13382664,Hexane,LB
+37003,0.04120402,Fluorene,LB
+37003,0.5955424,Naphthalene,LB
+37003,0.001260731,Methane,TON
+37003,0.0002774561,Sulfur Dioxide,TON
+37003,4621.068,Hexane,LB
+37003,1.241695,Benz[a]Anthracene,LB
+37003,1.033067,Manganese,LB
+37003,1583.2468,Acetaldehyde,LB
+37003,3.976682,Ammonia,TON
+37003,0.005224575,Nitrate portion of PM2.5-PRI,TON
+37075,2.37331,Toluene,LB
+37075,0.2769804,Hexane,LB
+37199,2.80618e-05,Benz[a]Anthracene,LB
+37199,0.001239878,Ammonia,TON
+37199,0.2055558,Nitrogen Oxides,TON
+37187,1.0377862,Acrolein,LB
+37187,193.8214,Xylenes (Mixed Isomers),LB
+37187,0.01722786,Benzo[b]Fluoranthene,LB
+37187,0.004510126,Arsenic,LB
+37187,0.002558979,Nitrous Oxide,TON
+37187,0.0506858,Ammonia,TON
+37187,0.00797221,Sulfur Dioxide,TON
+37187,0.0007258728,Sulfate Portion of PM2.5-PRI,TON
+37183,0.003458758,Benzene,LB
+37183,5.509333e-08,Nitrate portion of PM2.5-PRI,TON
+37183,1.097481e-05,Sulfur Dioxide,TON
+37177,0.8696018,"1,3-Butadiene",LB
+37177,0.07308204,Anthracene,LB
+37177,8.70263e-06,Chromium (VI),LB
+37177,0.000377514,"Benzo[g,h,i,]Perylene",LB
+37177,0.00011141174,Benzo[k]Fluoranthene,LB
+37177,0.002681532,Benzo[a]Pyrene,LB
+37177,0.0001106662,"Dibenzo[a,h]Anthracene",LB
+37177,0.665102,"2,2,4-Trimethylpentane",LB
+37177,0.1518722,Fluorene,LB
+37177,1.757527,Carbon Monoxide,TON
+37177,0.03114832,PM25-Primary from certain diesel engines,TON
+37177,0.02476884,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.3052156,Benzene,LB
+37041,1.2472274e-06,Mercury,LB
+37041,0.0006034422,Nickel,LB
+37041,0.00202982,Benzo[a]Pyrene,LB
+37041,0.01484074,PM2.5 Primary (Filt + Cond),TON
+37041,0.01825321,Volatile Organic Compounds,TON
+37041,0.08868424,"2,2,4-Trimethylpentane",LB
+37041,0.02133892,Fluorene,LB
+37041,0.357801,Naphthalene,LB
+37041,1.2211046e-06,Chromium (VI),LB
+37041,0.00015433522,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.02227224,Fluoranthene,LB
+37037,2.493276e-05,Mercury,LB
+37037,2.072516e-06,Nickel,LB
+37037,1.2894824,Acrolein,LB
+37037,0.005079844,Phenanthrene,LB
+37037,0.00574966,Naphthalene,LB
+37037,4.352358e-08,Chromium (VI),LB
+37037,0.0005950876,Chrysene,LB
+37037,0.003558854,Ammonia,TON
+37037,0.01823211,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.07614796,Fluoranthene,LB
+37033,0.0005347534,Benzo[a]Pyrene,LB
+37033,0.62178,"2,2,4-Trimethylpentane",LB
+37033,0.7437928,Ethyl Benzene,LB
+37033,1.6674616,Acrolein,LB
+37033,0.002329789,PM25-Primary from certain diesel engines,TON
+37033,1.515286e-05,Nitrate portion of PM2.5-PRI,TON
+37027,0.0009109312,Acenaphthylene,LB
+37027,0.00013974294,Chrysene,LB
+37027,12.183524,Acetaldehyde,LB
+37027,4.342687e-06,Nitrate portion of PM2.5-PRI,TON
+37027,0.0008593976,Sulfur Dioxide,TON
+37027,2.490998,Propionaldehyde,LB
+37027,0.4660302,Xylenes (Mixed Isomers),LB
+37155,0.002171824,Anthracene,LB
+37155,1.9270548e-07,Chromium (VI),LB
+37155,8.557302e-05,"Dibenzo[a,h]Anthracene",LB
+37155,0.002398438,Acenaphthene,LB
+37155,0.00485837,Fluorene,LB
+37155,1.000104,Carbon Monoxide,TON
+37155,0.0003249822,Ammonia,TON
+37155,1.04766e-05,Nitrate portion of PM2.5-PRI,TON
+37155,0.002008868,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.6577309,Organic Carbon portion of PM2.5-PRI,TON
+37151,41.95614,Toluene,LB
+37151,6.24238,Pyrene,LB
+37151,0.0279213,"Benzo[g,h,i,]Perylene",LB
+37151,15.409636,"2,2,4-Trimethylpentane",LB
+37151,1.505095,Benz[a]Anthracene,LB
+37151,0.00014814516,Mercury,LB
+37151,265.54,Acetaldehyde,LB
+37143,0.0008828942,Benz[a]Anthracene,LB
+37143,0.0005723342,Manganese,LB
+37143,0.1768226,Naphthalene,LB
+37143,0.001182372,Ammonia,TON
+37143,0.09218733,Volatile Organic Compounds,TON
+37139,526.6734,"1,3-Butadiene",LB
+37139,3520.026,Hexane,LB
+37139,0.003672918,Chromium (VI),LB
+37139,0.00471415,Nitrate portion of PM2.5-PRI,TON
+37139,74.76582,Nitrogen Oxides,TON
+37139,0.05039173,Sulfate Portion of PM2.5-PRI,TON
+37123,4.274666,Hexane,LB
+37123,0.6411466,Anthracene,LB
+37123,0.03845414,Benzo[b]Fluoranthene,LB
+37123,169.93544,Formaldehyde,LB
+37123,4.117022,"2,2,4-Trimethylpentane",LB
+37123,3.745356e-05,Mercury,LB
+37123,75.23616,Acetaldehyde,LB
+37123,0.04040078,Ammonia,TON
+37123,19.77769,Nitrogen Oxides,TON
+37123,1.045556,PM10 Primary (Filt + Cond),TON
+37123,0.8381574,PM2.5 Primary (Filt + Cond),TON
+37123,0.07866503,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,109.73366,Acrolein,LB
+37119,4.001246,Anthracene,LB
+37119,0.03641052,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,1.0423256,Chrysene,LB
+37119,38.43446,"2,2,4-Trimethylpentane",LB
+37119,154.37192,Naphthalene,LB
+37119,23954.79,Carbon Dioxide,TON
+37119,6.326298,PM10 Primary (Filt + Cond),TON
+37115,0.013654,"Benzo[g,h,i,]Perylene",LB
+37115,0.00993153,Fluoranthene,LB
+37115,0.15586554,Styrene,LB
+37115,0.002897948,Benz[a]Anthracene,LB
+37115,0.00015538388,Nickel,LB
+37115,0.006526756,Acenaphthene,LB
+37115,51.38808,Carbon Dioxide,TON
+37115,0.001964955,Nitrous Oxide,TON
+37115,0.2536402,Nitrogen Oxides,TON
+37115,0.0001506764,Sulfate Portion of PM2.5-PRI,TON
+37101,5.61713,Benzene,LB
+37101,0.17949128,Acenaphthene,LB
+37101,0.3935488,Fluorene,LB
+37101,0.4257262,PM10 Primary (Filt + Cond),TON
+37101,0.0316237,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,1.7806864,"1,3-Butadiene",LB
+37101,4.880784,Toluene,LB
+37101,0.5499208,Pyrene,LB
+37101,0.417699,Fluoranthene,LB
+37103,15.02607,Volatile Organic Compounds,TON
+37073,3.483442,Hexane,LB
+37073,0.00354534,Anthracene,LB
+37073,0.0895284,Propionaldehyde,LB
+37073,9.725824,Xylenes (Mixed Isomers),LB
+37073,3.444336,"2,2,4-Trimethylpentane",LB
+37073,0.008411462,Fluorene,LB
+37073,3.989904e-06,Nitrate portion of PM2.5-PRI,TON
+37073,0.08185934,Nitrogen Oxides,TON
+37073,0.0007074611,Organic Carbon portion of PM2.5-PRI,TON
+37081,60.16048,"2,2,4-Trimethylpentane",LB
+37081,0.002015948,Nickel,LB
+37081,0.11758178,Fluorene,LB
+37081,0.02482486,Benzo[b]Fluoranthene,LB
+37081,62.71756,Ethyl Benzene,LB
+37081,2.835086,Styrene,LB
+37081,0.11129822,Anthracene,LB
+37081,229.367,Xylenes (Mixed Isomers),LB
+37081,0.19067672,Fluoranthene,LB
+37081,0.04050114,Benzo[k]Fluoranthene,LB
+37081,0.05734272,Benzo[a]Pyrene,LB
+37081,0.008657848,Arsenic,LB
+37081,0.04799698,Methane,TON
+37081,2549.264,Carbon Dioxide,TON
+37081,0.0509305,Nitrous Oxide,TON
+37081,1.829628,Volatile Organic Compounds,TON
+37081,10625.194,"1,3-Butadiene",LB
+37081,169792.4,Xylenes (Mixed Isomers),LB
+37081,34.13384,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,8.60137,Nickel,LB
+37081,27.63974,Sulfur Dioxide,TON
+37067,0.875119,Acenaphthylene,LB
+37067,0.1353355,Manganese,LB
+37067,0.00879177,Nickel,LB
+37067,90.93128,Ethyl Benzene,LB
+37067,137.02114,Hexane,LB
+37067,3.034794,Propionaldehyde,LB
+37067,0.3214258,Pyrene,LB
+37067,0.3890508,Fluorene,LB
+37067,0.06708224,Nitrous Oxide,TON
+37067,7.509882,Nitrogen Oxides,TON
+37067,35859.5,Ethyl Benzene,LB
+37067,1431.4002,Styrene,LB
+37067,51.8521,Anthracene,LB
+37067,69.83854,"Benzo[g,h,i,]Perylene",LB
+37067,18.647338,Benzo[b]Fluoranthene,LB
+37067,88.79396,Fluoranthene,LB
+37067,275.5256,Acenaphthylene,LB
+37067,60151.6,Benzene,LB
+37067,60.46772,Acenaphthene,LB
+37067,1022.124,Volatile Organic Compounds,TON
+37065,4.2957e-06,Chromium (VI),LB
+37065,0.002576624,Benzo[b]Fluoranthene,LB
+37065,0.08712524,Fluoranthene,LB
+37065,0.002091184,Nickel,LB
+37065,0.007065724,Methane,TON
+37065,0.06020513,PM2.5 Primary (Filt + Cond),TON
+37065,0.9110184,Acrolein,LB
+37065,0.5929248,Propionaldehyde,LB
+37043,0.0106261,Chrysene,LB
+37043,0.1654594,Carbon Monoxide,TON
+37043,0.006786669,Elemental Carbon portion of PM2.5-PRI,TON
+37037,62.50386,Hexane,LB
+37037,156.44866,Xylenes (Mixed Isomers),LB
+37037,0.02607614,Benzo[b]Fluoranthene,LB
+37037,0.0235429,Chrysene,LB
+37037,21.1319,Formaldehyde,LB
+37037,53.95508,"2,2,4-Trimethylpentane",LB
+37037,32.81022,Carbon Monoxide,TON
+37037,1543.883,Carbon Dioxide,TON
+37037,0.03235626,Sulfur Dioxide,TON
+37035,337.6188,Acrolein,LB
+37035,24.09156,Pyrene,LB
+37035,83.08327,Nitrogen Oxides,TON
+37035,0.08401246,Toluene,LB
+37035,1.508243e-05,Benzo[a]Pyrene,LB
+37035,0.001269766,Naphthalene,LB
+37035,8.176954e-06,Organic Carbon portion of PM2.5-PRI,TON
+37035,1.549709e-05,PM2.5 Primary (Filt + Cond),TON
+37035,4.013362e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,4.385251e-07,Sulfate Portion of PM2.5-PRI,TON
+37031,0.3248261,Methane,TON
+37031,0.04692474,Nickel,LB
+37031,1.2855734,Acenaphthene,LB
+37031,21.5552,Propionaldehyde,LB
+37031,4.183876,Pyrene,LB
+37031,38.54806,Xylenes (Mixed Isomers),LB
+37031,0.01298856,"Dibenzo[a,h]Anthracene",LB
+37025,0.2909162,Pyrene,LB
+37025,0.2550532,Fluoranthene,LB
+37025,0.7903626,Acenaphthylene,LB
+37025,0.3722397,PM10 Primary (Filt + Cond),TON
+37027,0.738207,Nitrogen Oxides,TON
+37027,0.004707443,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.005935312,Benzo[k]Fluoranthene,LB
+37175,1402.421,"2,2,4-Trimethylpentane",LB
+37175,20.90654,Volatile Organic Compounds,TON
+37173,541.2344,Ethyl Benzene,LB
+37159,0.3239452,Anthracene,LB
+37159,0.0223199,Benzo[b]Fluoranthene,LB
+37159,0.003066588,Benzo[k]Fluoranthene,LB
+37159,99.58134,Formaldehyde,LB
+37159,0.2395868,Benz[a]Anthracene,LB
+37159,0.04076612,Manganese,LB
+37159,0.2847094,Acenaphthene,LB
+37159,1.170132,Phenanthrene,LB
+37159,0.06656693,Methane,TON
+37159,0.2636657,PM10-Primary from certain diesel engines,TON
+37159,0.03374677,Ammonia,TON
+37159,4.07331,Nitrogen Oxides,TON
+37159,0.4103315,PM10 Primary (Filt + Cond),TON
+37151,231.1712,"1,3-Butadiene",LB
+37151,1590.2884,Benzene,LB
+37151,0.010415584,Mercury,LB
+37151,554.2162,Acetaldehyde,LB
+37151,340.732,Carbon Monoxide,TON
+37151,40.85284,Nitrogen Oxides,TON
+37151,1.711411,PM10 Primary (Filt + Cond),TON
+37141,0.0001553059,Nitrate portion of PM2.5-PRI,TON
+37141,0.1292667,"Benzo[g,h,i,]Perylene",LB
+37141,0.0281308,Benz[a]Anthracene,LB
+37141,72.44464,Benzene,LB
+37141,0.00587791,Nickel,LB
+37141,0.366936,Phenanthrene,LB
+37137,0.2849788,Styrene,LB
+37137,0.0607815,Anthracene,LB
+37137,0.004869478,Manganese,LB
+37137,0.1134985,Volatile Organic Compounds,TON
+37117,23.57296,Xylenes (Mixed Isomers),LB
+37123,2.697307e-06,Ammonia,TON
+37123,1.5476254e-05,Pyrene,LB
+37123,1.3604688e-05,Fluoranthene,LB
+37123,4.152368e-06,Chrysene,LB
+37123,8.429004e-06,Benzo[a]Pyrene,LB
+37123,0.0004566804,Naphthalene,LB
+37109,0.10477358,Styrene,LB
+37109,0.09259968,Propionaldehyde,LB
+37109,0.007165608,Pyrene,LB
+37109,0.006279074,Fluoranthene,LB
+37109,0.01965488,Acenaphthylene,LB
+37109,0.0003690172,Manganese,LB
+37109,1.3952268,Acetaldehyde,LB
+37109,0.0004245656,Elemental Carbon portion of PM2.5-PRI,TON
+37109,3.178085e-05,Sulfate Portion of PM2.5-PRI,TON
+37105,8.993853,Carbon Monoxide,TON
+37105,12.916312,Ethyl Benzene,LB
+37105,3.345906,Pyrene,LB
+37105,0.0001214588,Chromium (VI),LB
+37105,0.010017006,Benzo[k]Fluoranthene,LB
+37103,6.00642,"1,3-Butadiene",LB
+37103,10.971396,Propionaldehyde,LB
+37103,0.1791225,Chrysene,LB
+37103,305.2872,Formaldehyde,LB
+37103,1.2540514,Fluorene,LB
+37103,0.07601309,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,1.296456,Volatile Organic Compounds,TON
+37103,0.4826708,Anthracene,LB
+37103,7.645838e-05,Mercury,LB
+37103,0.9802266,Fluorene,LB
+37103,0.001477364,Nitrate portion of PM2.5-PRI,TON
+37103,0.1293514,Organic Carbon portion of PM2.5-PRI,TON
+37103,0.8931647,PM10 Primary (Filt + Cond),TON
+37103,4.278184,Hexane,LB
+37103,3.859999,Carbon Monoxide,TON
+37103,0.05524505,Ammonia,TON
+37101,0.018871792,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,2.595264,Fluoranthene,LB
+37101,0.01013221,"Dibenzo[a,h]Anthracene",LB
+37101,0.01277118,Nitrous Oxide,TON
+37101,1.19659,PM10 Primary (Filt + Cond),TON
+37101,10.960002,"1,3-Butadiene",LB
+37101,26.31848,Toluene,LB
+37101,3.42454,Pyrene,LB
+37101,17.244084,Styrene,LB
+37101,30.9002,"1,3-Butadiene",LB
+37101,0.06049198,Manganese,LB
+37101,4.273488,Phenanthrene,LB
+37101,40.77098,Naphthalene,LB
+37101,0.3864156,Methane,TON
+37097,3.32244,Benzene,LB
+37093,0.1844339,PM10-Primary from certain diesel engines,TON
+37093,0.002619369,Nitrous Oxide,TON
+37093,2.589698,Nitrogen Oxides,TON
+37093,2.449464,Ethyl Benzene,LB
+37093,5.156278,Xylenes (Mixed Isomers),LB
+37093,1.8694584,"2,2,4-Trimethylpentane",LB
+37089,2.27775e-06,Chrysene,LB
+37089,0.002994438,"2,2,4-Trimethylpentane",LB
+37089,2.933858e-05,Phenanthrene,LB
+37089,1.679229e-06,Ammonia,TON
+37089,7.768032e-05,Volatile Organic Compounds,TON
+37087,0.0004068044,"1,3-Butadiene",LB
+37087,2.47262e-06,Chrysene,LB
+37087,9.759684e-06,PM10 Primary (Filt + Cond),TON
+37087,1.212816e-06,Sulfur Dioxide,TON
+37081,0.12916288,"2,2,4-Trimethylpentane",LB
+37081,2.962324e-05,Nickel,LB
+37081,0.00013456554,Benzo[k]Fluoranthene,LB
+37081,0.00011149106,Chrysene,LB
+37059,65.21704,Hexane,LB
+37059,0.11846434,Pyrene,LB
+37059,2.676234e-05,Chromium (VI),LB
+37059,0.13105458,"Benzo[g,h,i,]Perylene",LB
+37059,0.3144498,Acenaphthylene,LB
+37059,0.005129386,Arsenic,LB
+37061,4.196248e-05,Benzo[k]Fluoranthene,LB
+37061,0.1176017,"2,2,4-Trimethylpentane",LB
+37061,9.551224e-07,Nickel,LB
+37061,1.371202e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37061,5.745829e-05,PM2.5 Primary (Filt + Cond),TON
+37055,6.508892e-05,Arsenic,LB
+37055,0.000488735,Ammonia,TON
+37055,0.0016095032,Pyrene,LB
+37055,0.000247241,Benzo[b]Fluoranthene,LB
+37055,0.0003143344,Benzo[a]Pyrene,LB
+37047,19.870664,"1,3-Butadiene",LB
+37047,51.33306,Acrolein,LB
+37047,5.668962,Pyrene,LB
+37047,1.2927882,Benz[a]Anthracene,LB
+37047,0.2072873,Sulfur Dioxide,TON
+37047,0.00191689,Nitrate portion of PM2.5-PRI,TON
+37047,1.395166,PM10 Primary (Filt + Cond),TON
+37047,0.06735342,Sulfur Dioxide,TON
+37047,37.48868,Ethyl Benzene,LB
+37047,0.02927544,Benzo[b]Fluoranthene,LB
+37047,6.540374,Acenaphthylene,LB
+37047,0.3852722,Chrysene,LB
+37047,0.0002615298,Mercury,LB
+37047,0.05468236,Arsenic,LB
+37177,8.658142,Styrene,LB
+37177,0.13037044,Chrysene,LB
+37177,0.2228034,Benzo[a]Pyrene,LB
+37177,0.2150782,Methane,TON
+37177,0.1491209,Nitrous Oxide,TON
+37175,2.471,Ethyl Benzene,LB
+37175,74.56942,Formaldehyde,LB
+37175,6.978678,Benzene,LB
+37175,0.014831276,Manganese,LB
+37175,8.235676e-06,Mercury,LB
+37175,32.26568,Acetaldehyde,LB
+37175,0.03116847,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.4274701,Volatile Organic Compounds,TON
+37161,23.46436,Propionaldehyde,LB
+37161,0.012995134,Benzo[k]Fluoranthene,LB
+37161,0.611333,Chrysene,LB
+37161,1.4061064,Acenaphthene,LB
+37161,0.3286495,Methane,TON
+37161,0.005639077,Nitrate portion of PM2.5-PRI,TON
+37155,6.441274,Acenaphthylene,LB
+37155,4.031236,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.8194193,Ammonia,TON
+37155,124.112,Xylenes (Mixed Isomers),LB
+37155,2131.242,Formaldehyde,LB
+37155,0.288025,Manganese,LB
+37155,946.2144,Acetaldehyde,LB
+37155,0.4761199,Ammonia,TON
+37155,0.003864174,Nitrate portion of PM2.5-PRI,TON
+37155,0.1408546,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,12.94222,Volatile Organic Compounds,TON
+37161,13.041752,"1,3-Butadiene",LB
+37161,21.30152,Propionaldehyde,LB
+37161,4.319408,Pyrene,LB
+37161,0.01332604,"Dibenzo[a,h]Anthracene",LB
+37161,9.620546,"2,2,4-Trimethylpentane",LB
+37161,0.05750698,Nickel,LB
+37161,1.3249768,Acenaphthene,LB
+37161,1.10462,Elemental Carbon portion of PM2.5-PRI,TON
+37161,38.20274,Nitrogen Oxides,TON
+37143,2.758334,"1,3-Butadiene",LB
+37143,0.004888214,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.1240248,Chrysene,LB
+37143,1.99708,"2,2,4-Trimethylpentane",LB
+37143,1.8006332e-05,Mercury,LB
+37143,35.96296,Acetaldehyde,LB
+37143,0.4047467,PM10-Primary from certain diesel engines,TON
+37143,0.01966389,Ammonia,TON
+37143,0.0909731,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.1150064,"Benzo[g,h,i,]Perylene",LB
+37143,0.1957398,Fluoranthene,LB
+37143,92.95554,"2,2,4-Trimethylpentane",LB
+37143,3.71245,Nitrogen Oxides,TON
+37143,0.05088517,PM2.5 Primary (Filt + Cond),TON
+37143,0.01396947,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.005172478,Benzo[k]Fluoranthene,LB
+37131,4.778557,Carbon Monoxide,TON
+37131,1.00864,PM10 Primary (Filt + Cond),TON
+37129,5.732584,Styrene,LB
+37129,38.10528,Toluene,LB
+37129,0.00012697964,Chromium (VI),LB
+37129,0.07392668,Benzo[a]Pyrene,LB
+37129,199.69144,Acetaldehyde,LB
+37129,3.247332e-07,Chromium (VI),LB
+37129,0.0007650068,Benzo[a]Pyrene,LB
+37129,0.0004678952,Ammonia,TON
+37129,2.453498e-05,Sulfate Portion of PM2.5-PRI,TON
+37121,4.92801,Propionaldehyde,LB
+37121,0.05337046,Benzo[a]Pyrene,LB
+37121,43.1159,Acetaldehyde,LB
+37121,1.0914946,Phenanthrene,LB
+37121,3127.724,Carbon Dioxide,TON
+37121,0.2590701,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.02121954,Sulfate Portion of PM2.5-PRI,TON
+37121,0.5474343,Volatile Organic Compounds,TON
+37111,0.3221578,Ethyl Benzene,LB
+37111,0.5187716,Propionaldehyde,LB
+37111,0.0946385,Pyrene,LB
+37111,0.000498462,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.07199672,Fluoranthene,LB
+37111,0.006566054,Benzo[a]Pyrene,LB
+37111,0.11606038,Phenanthrene,LB
+37111,0.02722217,PM10-Primary from certain diesel engines,TON
+37111,0.002143848,Ammonia,TON
+37111,0.009174634,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.003824387,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.05646045,Volatile Organic Compounds,TON
+37111,9686.288,Ethyl Benzene,LB
+37111,400.4382,Styrene,LB
+37111,52241.2,Toluene,LB
+37111,14.348058,Anthracene,LB
+37111,24.49,Fluoranthene,LB
+37111,4.617412,Chrysene,LB
+37111,5325.926,Formaldehyde,LB
+37111,6.271466,Benzo[a]Pyrene,LB
+37111,91.14628,Phenanthrene,LB
+37111,4072.261,Carbon Monoxide,TON
+37111,14.78522,PM10 Primary (Filt + Cond),TON
+37111,0.1058946,PM2.5 Primary (Filt + Cond),TON
+37109,1134.1252,"1,3-Butadiene",LB
+37109,151.99352,Acrolein,LB
+37109,2.48559,Benz[a]Anthracene,LB
+37109,7.29805,Acenaphthene,LB
+37109,0.01222214,Nitrate portion of PM2.5-PRI,TON
+37109,12.88346,PM10 Primary (Filt + Cond),TON
+37109,4.758187,PM2.5 Primary (Filt + Cond),TON
+37103,1.5562926e-05,Pyrene,LB
+37103,4.105438e-05,Acenaphthylene,LB
+37103,1.6234886e-07,"Dibenzo[a,h]Anthracene",LB
+37103,2.89963e-06,Ammonia,TON
+37103,1.777527e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,2.118044e-07,Sulfate Portion of PM2.5-PRI,TON
+37101,0.2322,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.3541773,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.03098183,Sulfate Portion of PM2.5-PRI,TON
+37101,7206.208,Toluene,LB
+37101,0.6539624,Manganese,LB
+37091,0.5603778,Toluene,LB
+37091,0.003210958,Propionaldehyde,LB
+37091,5.648238e-05,Benzo[k]Fluoranthene,LB
+37091,5.276188e-05,Chrysene,LB
+37091,1.9047284e-06,"Dibenzo[a,h]Anthracene",LB
+37091,2.671356,Carbon Dioxide,TON
+37091,2.393143e-06,Sulfate Portion of PM2.5-PRI,TON
+37089,15.031624,Styrene,LB
+37089,3.905998,Anthracene,LB
+37089,0.2301778,Benzo[b]Fluoranthene,LB
+37089,2057.422,Formaldehyde,LB
+37089,62.37464,"2,2,4-Trimethylpentane",LB
+37089,3.693286,Acenaphthene,LB
+37089,38.79262,Carbon Monoxide,TON
+37089,5.11037,PM10-Primary from certain diesel engines,TON
+37089,0.4769147,Sulfate Portion of PM2.5-PRI,TON
+37089,0.9073708,Styrene,LB
+37089,1.7920878e-05,Chromium (VI),LB
+37089,0.002291412,Benzo[k]Fluoranthene,LB
+37089,0.1057269,Chrysene,LB
+37089,0.002285788,"Dibenzo[a,h]Anthracene",LB
+37089,0.002816344,Nitrous Oxide,TON
+37089,0.1906333,PM2.5 Primary (Filt + Cond),TON
+37117,0.13496922,Styrene,LB
+37117,0.004251306,Anthracene,LB
+37117,1.1247296,Propionaldehyde,LB
+37117,0.008772408,Pyrene,LB
+37117,0.02150188,Acenaphthylene,LB
+37117,0.2431248,Naphthalene,LB
+37117,0.007932287,Nitrous Oxide,TON
+37117,0.01666132,Sulfur Dioxide,TON
+37117,0.000304747,Sulfate Portion of PM2.5-PRI,TON
+37175,6.292421,Carbon Monoxide,TON
+37175,0.8886749,PM10-Primary from certain diesel engines,TON
+37175,0.5148166,Elemental Carbon portion of PM2.5-PRI,TON
+37175,1.007877,Volatile Organic Compounds,TON
+37175,14.683904,Acrolein,LB
+37175,9.168646,Acrolein,LB
+37175,8.124732,Xylenes (Mixed Isomers),LB
+37175,0.6335346,Acenaphthylene,LB
+37175,0.004576776,Arsenic,LB
+37175,1.037649,Phenanthrene,LB
+37175,0.07032602,Elemental Carbon portion of PM2.5-PRI,TON
+37165,344.6216,Formaldehyde,LB
+37165,0.0357701,Benzo[a]Pyrene,LB
+37165,8.44972,"2,2,4-Trimethylpentane",LB
+37165,11.577978,"1,3-Butadiene",LB
+37165,22.21284,Toluene,LB
+37165,1.9477606,Pyrene,LB
+37165,2.018412,Fluorene,LB
+37165,0.3374068,PM2.5 Primary (Filt + Cond),TON
+37165,2.047415,Volatile Organic Compounds,TON
+37161,0.6064472,Anthracene,LB
+37161,18.59694,Nitrogen Oxides,TON
+37157,1.507727,Propionaldehyde,LB
+37151,0.003681006,"Benzo[g,h,i,]Perylene",LB
+37151,0.01013714,Sulfur Dioxide,TON
+37151,0.4534084,Volatile Organic Compounds,TON
+37149,0.04346286,Benzo[b]Fluoranthene,LB
+37149,0.04346286,Benzo[k]Fluoranthene,LB
+37149,36.27842,Carbon Monoxide,TON
+37149,0.007214358,Nitrous Oxide,TON
+37141,0.0004223538,Chromium (VI),LB
+37141,0.8613616,Chrysene,LB
+37141,0.11662924,Arsenic,LB
+37141,6.281134,Fluorene,LB
+37141,3.95473,PM10-Primary from certain diesel engines,TON
+37003,7.304218,Hexane,LB
+37003,2.84989,Pyrene,LB
+37003,0.01273144,"Benzo[g,h,i,]Perylene",LB
+37003,0.00850284,"Dibenzo[a,h]Anthracene",LB
+37003,7.4152,"2,2,4-Trimethylpentane",LB
+37003,0.9129638,Acenaphthene,LB
+37003,0.2949266,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.9479049,PM10 Primary (Filt + Cond),TON
+37003,0.1286883,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.0208588,"1,3-Butadiene",LB
+37075,0.0002402392,Benzo[a]Pyrene,LB
+37075,9.332772e-06,Sulfate Portion of PM2.5-PRI,TON
+37075,0.01005847,Volatile Organic Compounds,TON
+37075,6.70306e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.01114774,Nitrogen Oxides,TON
+37021,1.8702932,Acrolein,LB
+37021,0.9565812,Naphthalene,LB
+37021,23.60037,Carbon Monoxide,TON
+37021,0.0001801298,Nitrate portion of PM2.5-PRI,TON
+37147,5.467494,Xylenes (Mixed Isomers),LB
+37147,0.00418006,Fluoranthene,LB
+37147,0.002261338,Chrysene,LB
+37147,0.003966684,Nickel,LB
+37147,27.9125,Acetaldehyde,LB
+37147,0.004783146,Fluorene,LB
+37147,2.520348e-05,Nitrate portion of PM2.5-PRI,TON
+37127,0.014140668,"Benzo[g,h,i,]Perylene",LB
+37127,0.006192882,Arsenic,LB
+37127,0.001424002,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.02519432,Ammonia,TON
+37127,0.003840389,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.03741347,PM10 Primary (Filt + Cond),TON
+37127,0.1450296,Volatile Organic Compounds,TON
+37127,0.05116148,Styrene,LB
+37127,0.4263328,Propionaldehyde,LB
+37011,0.4070528,Xylenes (Mixed Isomers),LB
+37011,6.233458e-05,Chrysene,LB
+37011,2.332638e-06,"Dibenzo[a,h]Anthracene",LB
+37011,6.546764e-05,Benz[a]Anthracene,LB
+37011,0.0010302622,Phenanthrene,LB
+37011,0.009809876,Naphthalene,LB
+37011,7.17814e-05,Ammonia,TON
+37011,0.0001877125,PM10 Primary (Filt + Cond),TON
+37005,0.0009474514,Nitrate portion of PM2.5-PRI,TON
+37005,0.07315687,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.5266015,Volatile Organic Compounds,TON
+37005,1.2119434,Styrene,LB
+37005,7.411298,Acrolein,LB
+37005,0.17509444,Benz[a]Anthracene,LB
+37005,0.00995062,Nickel,LB
+37053,1.1122536,Toluene,LB
+37053,0.498736,Hexane,LB
+37053,0.9265176,Xylenes (Mixed Isomers),LB
+37053,0.0008924826,Benzo[a]Pyrene,LB
+37053,0.0006867434,Nickel,LB
+37053,0.0008448812,Fluorene,LB
+37053,0.0002433148,Elemental Carbon portion of PM2.5-PRI,TON
+37053,3.259618,"2,2,4-Trimethylpentane",LB
+37039,0.007343962,Benzo[a]Pyrene,LB
+37039,58.04316,Acetaldehyde,LB
+37039,0.03506486,Methane,TON
+37013,0.003819234,Sulfur Dioxide,TON
+37013,0.001699914,Sulfate Portion of PM2.5-PRI,TON
+37013,1.9243188,"1,3-Butadiene",LB
+37013,5.084226,Acrolein,LB
+37013,0.2924928,Pyrene,LB
+37013,6.109678,Benzene,LB
+37013,2.612374e-05,Mercury,LB
+37013,0.1938554,Acenaphthene,LB
+37013,0.0006982415,Nitrous Oxide,TON
+37011,12.811078,"2,2,4-Trimethylpentane",LB
+37005,0.0004309186,Benzo[k]Fluoranthene,LB
+37005,0.008860102,Phenanthrene,LB
+37005,0.001531954,Methane,TON
+37005,0.0007361993,Ammonia,TON
+37177,0.0001594803,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.0001234048,Ammonia,TON
+37177,0.0003270197,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.0006489245,PM2.5 Primary (Filt + Cond),TON
+37177,0.03147571,Volatile Organic Compounds,TON
+37177,0.5433494,Formaldehyde,LB
+37177,7.68021e-05,Manganese,LB
+37177,3.988068,Xylenes (Mixed Isomers),LB
+37177,9.030176e-08,Chromium (VI),LB
+37177,0.001727957,"Benzo[g,h,i,]Perylene",LB
+37173,133.03654,Acetaldehyde,LB
+37173,0.3906152,Acenaphthene,LB
+37173,0.04515483,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.004339969,Sulfate Portion of PM2.5-PRI,TON
+37173,0.0002874382,Chromium (VI),LB
+37171,3.451644,"1,3-Butadiene",LB
+37171,78.80712,Xylenes (Mixed Isomers),LB
+37171,3.462564e-06,Chromium (VI),LB
+37171,0.03662424,Fluoranthene,LB
+37171,0.0003754788,"Dibenzo[a,h]Anthracene",LB
+37171,26.69994,Benzene,LB
+37171,1.2650114,Naphthalene,LB
+37171,0.02558243,PM10 Primary (Filt + Cond),TON
+37169,0.6797076,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,82.10292,Propionaldehyde,LB
+37169,0.003922832,Chromium (VI),LB
+37169,1.351995,Benz[a]Anthracene,LB
+37169,8.649342,Fluorene,LB
+37149,0.02490866,Ethyl Benzene,LB
+37149,0.019002742,"1,3-Butadiene",LB
+37149,0.0004256352,Fluorene,LB
+37153,53.48137,Carbon Dioxide,TON
+37153,0.0001075116,Nitrous Oxide,TON
+37153,0.0138107,PM2.5 Primary (Filt + Cond),TON
+37153,0.0004628561,Sulfur Dioxide,TON
+37153,0.1315913,"2,2,4-Trimethylpentane",LB
+37153,0.012703264,Benz[a]Anthracene,LB
+37153,1.0907006e-06,Mercury,LB
+37153,0.0007199806,Nickel,LB
+37153,0.2833636,Propionaldehyde,LB
+37147,0.003145124,Benzo[k]Fluoranthene,LB
+37147,0.02432812,Nickel,LB
+37147,1.2441554,Fluorene,LB
+37147,0.06595233,Methane,TON
+37147,0.007478696,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,2.512638,"1,3-Butadiene",LB
+37147,0.005628822,Benz[a]Anthracene,LB
+37147,21.69102,Benzene,LB
+37147,189.6933,Carbon Dioxide,TON
+37145,3241.532,Xylenes (Mixed Isomers),LB
+37139,19.369144,Xylenes (Mixed Isomers),LB
+37139,6.080182e-05,Chromium (VI),LB
+37139,0.690827,Acenaphthene,LB
+37139,0.00928997,Nitrous Oxide,TON
+37139,9.457562,Nitrogen Oxides,TON
+37139,0.2245079,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.0003907058,Benzo[b]Fluoranthene,LB
+37143,0.002006594,Fluoranthene,LB
+37143,0.1802968,"1,3-Butadiene",LB
+37143,0.00278221,Fluorene,LB
+37143,29.56547,Carbon Dioxide,TON
+37141,1.1215606,Fluoranthene,LB
+37141,1.0464318,Fluorene,LB
+37141,16.267548,Naphthalene,LB
+37137,0.6047058,Styrene,LB
+37137,0.1846694,Fluoranthene,LB
+37137,1.0823218,"2,2,4-Trimethylpentane",LB
+37137,4.690624,Naphthalene,LB
+37137,8.134464e-05,Nitrate portion of PM2.5-PRI,TON
+37137,0.05040685,PM10 Primary (Filt + Cond),TON
+37133,0.005586772,Nickel,LB
+37133,0.02470047,Methane,TON
+37133,0.1559057,PM25-Primary from certain diesel engines,TON
+37133,0.1948417,Volatile Organic Compounds,TON
+37127,4.899326,Anthracene,LB
+37127,1.3227662,Benz[a]Anthracene,LB
+37127,0.0004539848,Mercury,LB
+37127,10.165362,Fluorene,LB
+37127,1.715315,PM10-Primary from certain diesel engines,TON
+37121,8.155884,"2,2,4-Trimethylpentane",LB
+37121,1.2498636e-08,Mercury,LB
+37121,2.533622e-05,Fluorene,LB
+37121,1.046359e-05,PM10 Primary (Filt + Cond),TON
+37121,6.702867e-06,PM2.5 Primary (Filt + Cond),TON
+37121,1.708893e-07,Sulfate Portion of PM2.5-PRI,TON
+37121,0.000298925,Styrene,LB
+37121,0.02873266,Xylenes (Mixed Isomers),LB
+37121,1.77587e-05,"Benzo[g,h,i,]Perylene",LB
+37117,0.65154,Ethyl Benzene,LB
+37117,0.1031252,Acenaphthylene,LB
+37117,19.767474,Formaldehyde,LB
+37117,0.006009044,Manganese,LB
+37117,6.24978e-06,Mercury,LB
+37117,0.002131834,Sulfate Portion of PM2.5-PRI,TON
+37117,0.0003595662,Fluoranthene,LB
+37117,0.0805528,Acetaldehyde,LB
+37117,0.0002465574,Acenaphthene,LB
+37107,14.111316,Benzene,LB
+37107,0.11250684,Benzo[a]Pyrene,LB
+37107,0.06697063,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,57.63842,Acetaldehyde,LB
+37097,0.37035,Fluorene,LB
+37097,85.62792,Carbon Monoxide,TON
+37097,9.826372e-05,Chromium (VI),LB
+37097,0.06990376,Benz[a]Anthracene,LB
+37105,1.598869e-05,"Dibenzo[a,h]Anthracene",LB
+37105,1.5769466e-05,Arsenic,LB
+37105,0.5127976,Acetaldehyde,LB
+37105,0.0015873322,Acenaphthene,LB
+37105,0.000163447,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,202.5322,Acrolein,LB
+37105,214.313,Propionaldehyde,LB
+37105,3318.61,Formaldehyde,LB
+37105,1.605326,Arsenic,LB
+37105,21.59766,Fluorene,LB
+37105,5.167373,PM2.5 Primary (Filt + Cond),TON
+37105,3.477291,Sulfur Dioxide,TON
+37103,0.811919,Fluorene,LB
+37103,0.002015692,Nitrous Oxide,TON
+37103,0.5267625,PM2.5 Primary (Filt + Cond),TON
+37103,5.980104,Propionaldehyde,LB
+37103,1.1713776,Pyrene,LB
+37103,0.03322122,Manganese,LB
+37099,7.971392,Hexane,LB
+37099,17.462252,Propionaldehyde,LB
+37099,0.07967858,Benzo[b]Fluoranthene,LB
+37099,316.9974,Formaldehyde,LB
+37099,0.010899446,"Dibenzo[a,h]Anthracene",LB
+37099,30.40508,Benzene,LB
+37099,6.435022e-05,Mercury,LB
+37099,0.006732849,Nitrous Oxide,TON
+37099,0.3769217,Organic Carbon portion of PM2.5-PRI,TON
+37099,1.501202,PM2.5 Primary (Filt + Cond),TON
+37099,0.13438112,Acrolein,LB
+37099,32.83074,Toluene,LB
+37099,0.0028743,Benzo[a]Pyrene,LB
+37099,6.584128e-05,"Dibenzo[a,h]Anthracene",LB
+37099,7.23485,"2,2,4-Trimethylpentane",LB
+37099,7.557854,Benzene,LB
+37099,1.760553e-05,Mercury,LB
+37099,0.3729942,Naphthalene,LB
+37099,0.005662359,Methane,TON
+37099,0.0006028878,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.1581433,Volatile Organic Compounds,TON
+37083,50.6185,Hexane,LB
+37083,0.01653229,Benzo[k]Fluoranthene,LB
+37083,0.3906554,Manganese,LB
+37083,0.15963568,Nickel,LB
+37083,183.19272,Naphthalene,LB
+37083,128.1554,Nitrogen Oxides,TON
+37017,0.019166708,Acenaphthene,LB
+37017,0.0001235385,Nitrous Oxide,TON
+37017,7.452644e-05,Nitrate portion of PM2.5-PRI,TON
+37017,0.0004291197,Sulfate Portion of PM2.5-PRI,TON
+37017,0.0012798752,Benzo[b]Fluoranthene,LB
+37017,0.04487624,Fluoranthene,LB
+37017,0.03222464,Acenaphthylene,LB
+37017,5.833004,Formaldehyde,LB
+37021,16834.58,Acetaldehyde,LB
+37021,0.7772627,Sulfate Portion of PM2.5-PRI,TON
+37021,161778.8,Toluene,LB
+37021,34915.3,"2,2,4-Trimethylpentane",LB
+37017,8.55667,Anthracene,LB
+37017,21829.18,Xylenes (Mixed Isomers),LB
+37017,2.881338,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,2.390366,Benzo[b]Fluoranthene,LB
+37017,0.8533618,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,3.428334,Xylenes (Mixed Isomers),LB
+37009,0.02110638,Benzo[a]Pyrene,LB
+37009,0.08688564,Benz[a]Anthracene,LB
+37009,0.1317758,PM10-Primary from certain diesel engines,TON
+37009,0.1632489,PM10 Primary (Filt + Cond),TON
+37009,0.002204649,Sulfate Portion of PM2.5-PRI,TON
+37015,0.007342484,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,49.54,Acetaldehyde,LB
+37015,2.442357e-05,Nitrate portion of PM2.5-PRI,TON
+37021,0.002464366,Fluorene,LB
+37021,266.1185,Carbon Dioxide,TON
+37021,0.2932598,Propionaldehyde,LB
+37021,1.4962954e-05,Chromium (VI),LB
+37021,0.003639974,Benzo[a]Pyrene,LB
+37021,1.3709828,"2,2,4-Trimethylpentane",LB
+37009,1.046791,Propionaldehyde,LB
+37009,0.2261298,Naphthalene,LB
+37171,0.460739,Hexane,LB
+37171,0.12029436,Propionaldehyde,LB
+37171,0.0008540206,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.4507836,Styrene,LB
+37151,0.08421906,"Benzo[g,h,i,]Perylene",LB
+37151,0.0194052,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.001220912,Sulfate Portion of PM2.5-PRI,TON
+37103,0.00012251024,Fluoranthene,LB
+37103,0.016349442,Propionaldehyde,LB
+37103,6.782448e-05,Acenaphthene,LB
+37103,0.01002791,Nitrogen Oxides,TON
+37089,0.13641792,Acrolein,LB
+37089,0.0015176658,Benzo[b]Fluoranthene,LB
+37089,0.002164306,Fluoranthene,LB
+37089,0.0015176658,Benzo[k]Fluoranthene,LB
+37089,0.0011516504,Chrysene,LB
+37089,0.0013085998,Benz[a]Anthracene,LB
+37089,3.982628,Benzene,LB
+37089,14.62248,Acetaldehyde,LB
+37089,1.686931,Carbon Monoxide,TON
+37021,0.016142072,Benzo[k]Fluoranthene,LB
+37021,8.735786e-05,Mercury,LB
+37021,5.502084,Pyrene,LB
+37021,1.8015136,Acenaphthene,LB
+37021,3.911258,Fluorene,LB
+37021,1.352392,PM2.5 Primary (Filt + Cond),TON
+37021,0.03586905,Sulfur Dioxide,TON
+37017,0.8290642,Acenaphthylene,LB
+37017,0.05288246,Chrysene,LB
+37017,0.07634948,Benzo[a]Pyrene,LB
+37017,0.0832766,Methane,TON
+37017,1269.097,Carbon Dioxide,TON
+37011,1.2501358,Pyrene,LB
+37011,8.90048e-05,Chromium (VI),LB
+37011,187.14136,Formaldehyde,LB
+37011,0.08311096,Benzo[a]Pyrene,LB
+37011,1.8074574,Phenanthrene,LB
+37011,356.074,Naphthalene,LB
+37011,2.478851,PM2.5 Primary (Filt + Cond),TON
+37011,0.5929403,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,966.343,"1,3-Butadiene",LB
+37011,5.853116,Anthracene,LB
+37011,140.15732,Propionaldehyde,LB
+37011,1.799202,Benzo[b]Fluoranthene,LB
+37011,6633.122,Benzene,LB
+37003,2.939096,Ethyl Benzene,LB
+37003,2.890938,"1,3-Butadiene",LB
+37003,0.8593856,Pyrene,LB
+37003,5.796602,Xylenes (Mixed Isomers),LB
+37003,0.08348678,Organic Carbon portion of PM2.5-PRI,TON
+37001,12.747472,Acrolein,LB
+37001,2846.166,Xylenes (Mixed Isomers),LB
+37001,0.19729236,Benzo[b]Fluoranthene,LB
+37001,0.9804058,Fluoranthene,LB
+37001,904.3682,Benzene,LB
+37199,0.7543924,"1,3-Butadiene",LB
+37199,1.8102588,Acetaldehyde,LB
+37199,0.0006531729,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.002352567,Nitrous Oxide,TON
+37199,0.001034012,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.003040447,PM10 Primary (Filt + Cond),TON
+37185,0.8502686,Acenaphthylene,LB
+37185,144.0658,Formaldehyde,LB
+37185,0.001889705,Nitrate portion of PM2.5-PRI,TON
+37185,0.06709832,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.8717228,Volatile Organic Compounds,TON
+37185,0.2542492,"1,3-Butadiene",LB
+37185,0.001612986,Benzo[b]Fluoranthene,LB
+37185,69.92744,Carbon Dioxide,TON
+37185,0.001294676,Nitrous Oxide,TON
+37185,0.001620646,Organic Carbon portion of PM2.5-PRI,TON
+37189,4.512083,Carbon Monoxide,TON
+37189,9.644982,Toluene,LB
+37189,3.28942,Hexane,LB
+37189,0.004978054,"Benzo[g,h,i,]Perylene",LB
+37189,19.19688,Styrene,LB
+37189,0.01861658,"Benzo[g,h,i,]Perylene",LB
+37189,4.398416,Acenaphthene,LB
+37189,0.2007452,Organic Carbon portion of PM2.5-PRI,TON
+37189,1.127284,PM2.5 Primary (Filt + Cond),TON
+37189,7.703499,Volatile Organic Compounds,TON
+37193,7.202282,Styrene,LB
+37193,39.4091,Toluene,LB
+37193,0.02072234,"Benzo[g,h,i,]Perylene",LB
+37193,3.214385,PM10 Primary (Filt + Cond),TON
+37193,0.2321766,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.0002846055,Nitrate portion of PM2.5-PRI,TON
+37185,0.002191806,"Dibenzo[a,h]Anthracene",LB
+37185,171.33718,"2,2,4-Trimethylpentane",LB
+37185,0.3683262,Fluoranthene,LB
+37185,0.07108628,Benzo[k]Fluoranthene,LB
+37185,145.38514,Ethyl Benzene,LB
+37185,35.31282,"1,3-Butadiene",LB
+37183,10.907862,Acrolein,LB
+37183,1.619993,PM10 Primary (Filt + Cond),TON
+37183,0.4603136,PM2.5 Primary (Filt + Cond),TON
+37183,0.1873472,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,8.153461,Volatile Organic Compounds,TON
+37183,155.20574,Formaldehyde,LB
+37183,309.4544,"2,2,4-Trimethylpentane",LB
+37183,0.07285782,Arsenic,LB
+37183,150.64272,Acetaldehyde,LB
+37183,0.9815998,Fluorene,LB
+37183,25.18006,Naphthalene,LB
+37183,0.3942873,Methane,TON
+37179,27.29837,Volatile Organic Compounds,TON
+37179,2020.934,Acetaldehyde,LB
+37179,26.96114,Fluorene,LB
+37179,511.0592,Naphthalene,LB
+37179,1.331536,Methane,TON
+37179,0.3864697,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,369.4938,Acrolein,LB
+37179,0.5030534,Benzo[a]Pyrene,LB
+37179,1.7797092,"1,3-Butadiene",LB
+37179,0.03053676,Fluorene,LB
+37179,357.81,Carbon Dioxide,TON
+37179,0.01622344,Ammonia,TON
+37179,0.7396548,Nitrogen Oxides,TON
+37179,0.007499358,Sulfur Dioxide,TON
+37179,0.2800483,Volatile Organic Compounds,TON
+37173,0.07428116,Chrysene,LB
+37173,0.0015553124,"Dibenzo[a,h]Anthracene",LB
+37173,0.12742098,Benz[a]Anthracene,LB
+37173,0.009915986,Manganese,LB
+37173,0.3828126,Fluorene,LB
+37173,3.6703,Toluene,LB
+37173,0.1917062,Anthracene,LB
+37173,2.889554,Propionaldehyde,LB
+37173,0.5385802,Pyrene,LB
+37173,0.0006801434,Nitrate portion of PM2.5-PRI,TON
+37173,0.1733421,PM10 Primary (Filt + Cond),TON
+37125,121.8543,Ethyl Benzene,LB
+37125,3.465118,Propionaldehyde,LB
+37125,53.10164,Formaldehyde,LB
+37125,0.05808934,PM2.5 Primary (Filt + Cond),TON
+37113,219.7526,Toluene,LB
+37113,0.04616362,Anthracene,LB
+37113,1.0695288,Propionaldehyde,LB
+37113,0.0004342056,"Dibenzo[a,h]Anthracene",LB
+37113,0.10950498,Fluorene,LB
+37113,600.4497,Carbon Dioxide,TON
+37113,0.005594022,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.06354031,PM10 Primary (Filt + Cond),TON
+37113,0.0005209926,Sulfate Portion of PM2.5-PRI,TON
+37109,0.003181258,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.009313944,Fluoranthene,LB
+37109,0.002009866,Chrysene,LB
+37109,0.0343196,Phenanthrene,LB
+37109,0.0001132344,Sulfate Portion of PM2.5-PRI,TON
+37109,26.1089,Toluene,LB
+37105,4.162342,"1,3-Butadiene",LB
+37105,0.0506846,Chrysene,LB
+37105,1.2041756,Phenanthrene,LB
+37105,7.263896,Carbon Monoxide,TON
+37101,0.017777372,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.008258556,Chrysene,LB
+37097,43.74378,Ethyl Benzene,LB
+37097,0.03406671,Ammonia,TON
+37097,0.05974825,PM2.5 Primary (Filt + Cond),TON
+37089,0.02827898,Arsenic,LB
+37089,0.4226499,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.09663025,Sulfur Dioxide,TON
+37087,0.8758032,"1,3-Butadiene",LB
+37087,0.134975,PM25-Primary from certain diesel engines,TON
+37087,0.0003253078,Nitrate portion of PM2.5-PRI,TON
+37079,0.004030644,Benzo[b]Fluoranthene,LB
+37079,0.08634006,Acenaphthylene,LB
+37079,0.0433216,Benz[a]Anthracene,LB
+37079,0.008186038,Methane,TON
+37079,0.3748492,Carbon Monoxide,TON
+37079,0.6973597,Nitrogen Oxides,TON
+37073,2.517155e-06,Sulfur Dioxide,TON
+37073,0.0003232416,Styrene,LB
+37073,0.04697552,Toluene,LB
+37073,0.01071421,Hexane,LB
+37073,0.006481421,Carbon Monoxide,TON
+37085,80.08326,Naphthalene,LB
+37085,0.1441856,Elemental Carbon portion of PM2.5-PRI,TON
+37085,2.042927,PM10 Primary (Filt + Cond),TON
+37085,0.4252106,Manganese,LB
+37085,5179.35,Toluene,LB
+37085,1.3175586,Anthracene,LB
+37085,468.5252,Formaldehyde,LB
+37085,0.012623254,"Dibenzo[a,h]Anthracene",LB
+37081,1.2515376,Acenaphthylene,LB
+37081,0.007621628,"Dibenzo[a,h]Anthracene",LB
+37081,0.02242726,Arsenic,LB
+37071,1.436176,Styrene,LB
+37071,3.295336,"1,3-Butadiene",LB
+37071,0.0049968,"Benzo[g,h,i,]Perylene",LB
+37071,4.00591e-05,Mercury,LB
+37071,0.7483054,Fluorene,LB
+37071,0.3035845,PM10-Primary from certain diesel engines,TON
+37065,0.5083264,Toluene,LB
+37065,0.04354764,Acenaphthylene,LB
+37065,7.720932,Formaldehyde,LB
+37065,0.018812368,Benz[a]Anthracene,LB
+37065,65.39027,Carbon Dioxide,TON
+37065,0.01968653,PM10-Primary from certain diesel engines,TON
+37065,0.006934925,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.0001475886,Nitrous Oxide,TON
+37065,0.0005234652,Sulfate Portion of PM2.5-PRI,TON
+37063,19.119252,Acrolein,LB
+37063,16.324074,Propionaldehyde,LB
+37063,1.4873976,Fluoranthene,LB
+37063,0.3247712,Benzo[k]Fluoranthene,LB
+37063,0.4965081,Methane,TON
+37063,6692.976,Carbon Dioxide,TON
+37063,0.463943,PM2.5 Primary (Filt + Cond),TON
+37063,0.1236547,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,53.5803,"1,3-Butadiene",LB
+37057,197.04024,Acrolein,LB
+37057,0.0456576,"Benzo[g,h,i,]Perylene",LB
+37057,0.02717494,Benzo[k]Fluoranthene,LB
+37057,73777.34,Carbon Dioxide,TON
+37051,2.659538,Volatile Organic Compounds,TON
+37051,53.0864,Naphthalene,LB
+37051,26.45145,Carbon Monoxide,TON
+37051,6.082734,Styrene,LB
+37051,12.819828,Hexane,LB
+37051,0.02153568,Benzo[b]Fluoranthene,LB
+37051,2.051776,Fluoranthene,LB
+37045,68.99116,"2,2,4-Trimethylpentane",LB
+37045,0.002186202,"Benzo[g,h,i,]Perylene",LB
+37045,0.707567,Benzene,LB
+37045,0.004365742,Phenanthrene,LB
+37045,7.507861e-05,Ammonia,TON
+37045,0.02659492,Nitrogen Oxides,TON
+37045,6.481315e-05,Sulfur Dioxide,TON
+37045,2886.414,Xylenes (Mixed Isomers),LB
+37045,0.495732,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.3702656,Benzo[b]Fluoranthene,LB
+37045,946.5452,"2,2,4-Trimethylpentane",LB
+37035,3.341252e-05,Chromium (VI),LB
+37035,0.001455276,Nitrate portion of PM2.5-PRI,TON
+37035,0.2955516,PM2.5 Primary (Filt + Cond),TON
+37035,0.5895943,Volatile Organic Compounds,TON
+37035,0.02486807,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.02058895,Sulfur Dioxide,TON
+37035,26.2097,Acrolein,LB
+37035,17.023338,Propionaldehyde,LB
+37035,9.073542,"2,2,4-Trimethylpentane",LB
+37035,0.00014307766,Mercury,LB
+37035,0.07889892,Nickel,LB
+37035,1.0285804,Acenaphthene,LB
+37035,36.81354,Naphthalene,LB
+37033,550.689,Xylenes (Mixed Isomers),LB
+37033,0.07387,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.0745487,Benzo[a]Pyrene,LB
+37033,0.012217288,Nickel,LB
+37033,0.0002142058,Nitrate portion of PM2.5-PRI,TON
+37033,0.3716341,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,13.639334,Acenaphthylene,LB
+37033,1.3738354,Benzo[a]Pyrene,LB
+37033,0.9448634,Benz[a]Anthracene,LB
+37033,0.3390944,Elemental Carbon portion of PM2.5-PRI,TON
+37033,3.470563,Ammonia,TON
+37029,0.312333,Nitrogen Oxides,TON
+37029,0.003804886,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,2.098554,Toluene,LB
+37027,0.0004702706,Anthracene,LB
+37027,0.0008013974,Fluoranthene,LB
+37027,0.00014591982,Benzo[k]Fluoranthene,LB
+37027,4.27053e-06,Arsenic,LB
+37027,5.878482e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37027,3.154486e-05,Ammonia,TON
+37027,0.0001959706,PM2.5 Primary (Filt + Cond),TON
+37175,1.9640416e-07,Chromium (VI),LB
+37175,0.004476798,"Benzo[g,h,i,]Perylene",LB
+37175,0.0013171444,Benzo[b]Fluoranthene,LB
+37175,3.864184e-05,"Dibenzo[a,h]Anthracene",LB
+37175,0.005088802,Acenaphthene,LB
+37175,0.09098263,Volatile Organic Compounds,TON
+37171,0.2713662,Arsenic,LB
+37171,52.57282,Nitrogen Oxides,TON
+37171,0.017293554,"Dibenzo[a,h]Anthracene",LB
+37165,0.6977942,Ethyl Benzene,LB
+37165,1.6144812,Acrolein,LB
+37165,0.16248346,Fluoranthene,LB
+37165,0.4526601,Carbon Monoxide,TON
+37165,0.06165303,PM10-Primary from certain diesel engines,TON
+37165,0.05672169,PM25-Primary from certain diesel engines,TON
+37165,0.02224131,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.1162826,Volatile Organic Compounds,TON
+37165,0.13243744,Styrene,LB
+37165,0.0972501,Pyrene,LB
+37165,0.7778902,Xylenes (Mixed Isomers),LB
+37165,10.161726,Formaldehyde,LB
+37165,0.005855038,Manganese,LB
+37165,4.311512,Acetaldehyde,LB
+37161,1.491939,Propionaldehyde,LB
+37161,0.0870496,"Benzo[g,h,i,]Perylene",LB
+37161,0.11089592,Fluoranthene,LB
+37161,0.0007509988,"Dibenzo[a,h]Anthracene",LB
+37161,68.65468,"2,2,4-Trimethylpentane",LB
+37161,25.10366,Acetaldehyde,LB
+37161,0.0755263,Acenaphthene,LB
+37161,9.984114,"1,3-Butadiene",LB
+37161,0.008028101,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.09581393,PM10 Primary (Filt + Cond),TON
+37153,0.19639724,Ethyl Benzene,LB
+37153,0.2504976,Hexane,LB
+37153,0.0004640032,Fluoranthene,LB
+37153,0.0014432578,Acenaphthylene,LB
+37153,2.41123e-06,Nickel,LB
+37153,0.00034464,Methane,TON
+37153,0.006971906,Nitrogen Oxides,TON
+37153,0.0001319325,PM2.5 Primary (Filt + Cond),TON
+37153,1.669892e-05,Sulfur Dioxide,TON
+37145,0.2869506,Hexane,LB
+37145,3.50248e-06,Chromium (VI),LB
+37145,0.0006663736,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.016682782,Chrysene,LB
+37145,0.008769882,Benzo[a]Pyrene,LB
+37145,1.2233314,Naphthalene,LB
+37145,0.05661647,PM2.5 Primary (Filt + Cond),TON
+37129,10.941372,Phenanthrene,LB
+37129,2.039551,PM25-Primary from certain diesel engines,TON
+37129,44.9173,Propionaldehyde,LB
+37141,32.66242,Acrolein,LB
+37141,22.3698,Propionaldehyde,LB
+37141,3.050432,Fluorene,LB
+37141,1.256701,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.008505646,Nitrous Oxide,TON
+37141,1.974999,PM2.5 Primary (Filt + Cond),TON
+37141,0.0248323,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.097523,Benzo[b]Fluoranthene,LB
+37141,3.34691,Fluoranthene,LB
+37141,38.8403,Benzene,LB
+37139,2601.146,Xylenes (Mixed Isomers),LB
+37133,5.883814,"1,3-Butadiene",LB
+37133,0.3284853,PM10 Primary (Filt + Cond),TON
+37133,0.01940218,Sulfur Dioxide,TON
+37129,26.25978,Acrolein,LB
+37129,17.357896,Propionaldehyde,LB
+37129,0.8452514,Benz[a]Anthracene,LB
+37129,0.1132579,Manganese,LB
+37129,36.68094,Naphthalene,LB
+37129,0.1681818,Methane,TON
+37129,11.5453,Carbon Monoxide,TON
+37129,2586.252,Carbon Dioxide,TON
+37129,1.2514,PM10 Primary (Filt + Cond),TON
+37125,9.246204e-07,Mercury,LB
+37125,2.791668,Acetaldehyde,LB
+37125,0.7027182,Naphthalene,LB
+37125,0.01283026,PM25-Primary from certain diesel engines,TON
+37125,0.002409258,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.000254869,"Benzo[g,h,i,]Perylene",LB
+37121,0.826419,Ethyl Benzene,LB
+37121,0.1505175,Volatile Organic Compounds,TON
+37123,0.005988908,Pyrene,LB
+37123,0.008786348,"Benzo[g,h,i,]Perylene",LB
+37123,1.1062708,Formaldehyde,LB
+37123,0.003272208,Benzo[a]Pyrene,LB
+37123,7.575506e-05,"Dibenzo[a,h]Anthracene",LB
+37123,1.0627836,Acetaldehyde,LB
+37119,0.8734649,Sulfur Dioxide,TON
+37119,13.539884,Acenaphthene,LB
+37119,566.0456,Naphthalene,LB
+37119,5.705341,Methane,TON
+37119,15.046326,Acrolein,LB
+37119,1.2088138,Pyrene,LB
+37119,1.2465158,"Benzo[g,h,i,]Perylene",LB
+37119,1.0610406,Fluoranthene,LB
+37107,23.08842,Acrolein,LB
+37107,0.3496712,Manganese,LB
+37107,0.18074554,Arsenic,LB
+37107,0.7726207,Methane,TON
+37107,0.5514181,PM2.5 Primary (Filt + Cond),TON
+37107,0.1843447,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,6.345637,PM10 Primary (Filt + Cond),TON
+37097,3.974379,PM2.5 Primary (Filt + Cond),TON
+37097,5.076412,Anthracene,LB
+37097,0.6600646,Manganese,LB
+37097,1.428184,Elemental Carbon portion of PM2.5-PRI,TON
+37101,9832.626,Ethyl Benzene,LB
+37101,12.122558,Anthracene,LB
+37099,7.928746,Hexane,LB
+37099,5.322092e-07,Chromium (VI),LB
+37099,0.004528884,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.014549296,Fluoranthene,LB
+37099,0.00311685,Benz[a]Anthracene,LB
+37099,0.513273,Naphthalene,LB
+37099,0.002209501,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.007061921,PM10 Primary (Filt + Cond),TON
+37099,0.0009739508,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.017889744,Phenanthrene,LB
+37093,0.0002302253,Elemental Carbon portion of PM2.5-PRI,TON
+37093,4.340589e-06,Nitrate portion of PM2.5-PRI,TON
+37093,0.001213271,Sulfur Dioxide,TON
+37093,0.0010334344,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,41.06682,Styrene,LB
+37089,0.02395556,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.1150218,Arsenic,LB
+37089,311.8426,Naphthalene,LB
+37065,0.7342808,Phenanthrene,LB
+37065,7.565556,Naphthalene,LB
+37065,0.007862472,Sulfur Dioxide,TON
+37065,3.697798,Propionaldehyde,LB
+37065,0.002068014,"Benzo[g,h,i,]Perylene",LB
+37065,0.002221436,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,68.50076,Formaldehyde,LB
+37065,0.02924754,Benzo[a]Pyrene,LB
+37063,1.2591172,Ethyl Benzene,LB
+37063,3.299482e-06,Nitrate portion of PM2.5-PRI,TON
+37061,5.745844,Ethyl Benzene,LB
+37061,3.531492e-05,Chromium (VI),LB
+37061,0.0217662,Nickel,LB
+37061,19.05148,Naphthalene,LB
+37061,0.1762067,Organic Carbon portion of PM2.5-PRI,TON
+37057,851.482,Toluene,LB
+37057,0.08183442,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.02315348,Manganese,LB
+37057,0.1916221,Methane,TON
+37057,0.006623758,"Dibenzo[a,h]Anthracene",LB
+37057,0.5429147,Ammonia,TON
+37057,837.744,Ethyl Benzene,LB
+37057,14.539846,Styrene,LB
+37057,6300.494,Toluene,LB
+37057,0.5630124,Anthracene,LB
+37057,0.7684284,"Benzo[g,h,i,]Perylene",LB
+37053,0.0560565,Pyrene,LB
+37053,0.011168178,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.00874789,Benzo[b]Fluoranthene,LB
+37053,27.25346,"2,2,4-Trimethylpentane",LB
+37053,0.02574778,Methane,TON
+37053,15.8411,Carbon Monoxide,TON
+37053,0.01448064,Sulfur Dioxide,TON
+37047,119.34704,Acrolein,LB
+37047,9.986028,Pyrene,LB
+37047,0.009010414,Chromium (VI),LB
+37047,0.7191976,Elemental Carbon portion of PM2.5-PRI,TON
+37047,11.57443,Ammonia,TON
+37047,0.01043573,Nitrate portion of PM2.5-PRI,TON
+37047,1.945425,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.002115834,Phenanthrene,LB
+37043,0.0007894512,Fluorene,LB
+37043,0.0002186011,Nitrous Oxide,TON
+37043,0.2946814,Hexane,LB
+37043,0.000332998,Anthracene,LB
+37043,0.000648151,Pyrene,LB
+37043,0.7373298,Xylenes (Mixed Isomers),LB
+37043,1.362966e-07,Chromium (VI),LB
+37043,0.0005680346,Fluoranthene,LB
+37043,3.231914e-06,"Dibenzo[a,h]Anthracene",LB
+37037,6.20416,"1,3-Butadiene",LB
+37037,10.58154,Propionaldehyde,LB
+37037,1.0469776,Acenaphthylene,LB
+37037,234.2914,Formaldehyde,LB
+37037,9.952064e-05,Mercury,LB
+37037,1.189045,Volatile Organic Compounds,TON
+37031,0.15561244,Acenaphthylene,LB
+37031,2.901046,Benzene,LB
+37031,13.599866,Acetaldehyde,LB
+37031,0.09260552,Acenaphthene,LB
+37031,3.407282,Naphthalene,LB
+37031,0.07662488,PM25-Primary from certain diesel engines,TON
+37031,0.03586176,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.1368023,PM10 Primary (Filt + Cond),TON
+37029,0.03433666,Styrene,LB
+37029,0.12623714,Propionaldehyde,LB
+37029,6.576172e-05,Benzo[k]Fluoranthene,LB
+37029,0.005427368,Benz[a]Anthracene,LB
+37029,0.0006718036,Methane,TON
+37029,16.77346,Carbon Dioxide,TON
+37029,0.3195174,"1,3-Butadiene",LB
+37029,3.560542,Hexane,LB
+37029,0.0006491616,Chrysene,LB
+37029,0.0008407816,Benzo[a]Pyrene,LB
+37029,1.9199224e-05,"Dibenzo[a,h]Anthracene",LB
+37029,6.288316e-06,Mercury,LB
+37029,7.840998e-05,Nickel,LB
+37029,0.002452036,Acenaphthene,LB
+37029,0.0007963861,Nitrous Oxide,TON
+37149,0.00013824502,Mercury,LB
+37149,0.01075758,Nitrous Oxide,TON
+37149,29.39158,Acrolein,LB
+37157,0.000215694,Mercury,LB
+37157,7.307176,Phenanthrene,LB
+37157,0.4844088,Methane,TON
+37157,1.44402,PM25-Primary from certain diesel engines,TON
+37157,0.220266,Ammonia,TON
+37151,0.3698066,Chrysene,LB
+37151,0.6360538,Benz[a]Anthracene,LB
+37151,0.01717017,Sulfur Dioxide,TON
+37145,2.735244,Acenaphthylene,LB
+37145,0.13976338,Benzo[b]Fluoranthene,LB
+37145,209.9792,Acetaldehyde,LB
+37145,31.20404,Naphthalene,LB
+37145,0.05528146,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.5308972,Styrene,LB
+37143,1.203507,"1,3-Butadiene",LB
+37143,3.537962,Benzene,LB
+37143,0.01581759,Methane,TON
+37143,0.03855664,PM10-Primary from certain diesel engines,TON
+37143,0.008229025,Ammonia,TON
+37143,0.7508321,Nitrogen Oxides,TON
+37143,0.03657288,PM2.5 Primary (Filt + Cond),TON
+37143,0.002074111,Sulfur Dioxide,TON
+37139,0.6863428,Xylenes (Mixed Isomers),LB
+37139,0.000372266,"Benzo[g,h,i,]Perylene",LB
+37139,0.006145108,Benzo[a]Pyrene,LB
+37139,0.000252676,"Dibenzo[a,h]Anthracene",LB
+37139,0.005116838,Manganese,LB
+37139,0.005279199,Methane,TON
+37139,0.02388993,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.0001090741,Nitrate portion of PM2.5-PRI,TON
+37139,0.001973782,Sulfur Dioxide,TON
+37141,436.293,Ethyl Benzene,LB
+37141,579.1336,Hexane,LB
+37141,14.772418,Propionaldehyde,LB
+37141,0.6998744,"Benzo[g,h,i,]Perylene",LB
+37141,231.18,Formaldehyde,LB
+37141,0.006036704,"Dibenzo[a,h]Anthracene",LB
+37141,0.006510864,Mercury,LB
+37141,4.053614,Phenanthrene,LB
+37135,30.13936,Naphthalene,LB
+37135,0.1467227,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.008112006,Sulfate Portion of PM2.5-PRI,TON
+37135,0.002386856,Mercury,LB
+37135,569.9792,Ethyl Benzene,LB
+37129,6087.318,Toluene,LB
+37129,0.2608342,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,1.0737378,Fluoranthene,LB
+37129,283.1754,Formaldehyde,LB
+37127,2.2544,Pyrene,LB
+37127,5.876182,"2,2,4-Trimethylpentane",LB
+37127,0.02751396,Nickel,LB
+37127,24.77456,Naphthalene,LB
+37127,8.67011,Nitrogen Oxides,TON
+37127,5.50393e-05,Fluoranthene,LB
+37127,2.302222e-05,Benz[a]Anthracene,LB
+37127,1.7540024e-05,Manganese,LB
+37127,0.01392458,Carbon Monoxide,TON
+37127,0.0005078875,Volatile Organic Compounds,TON
+37119,9.661606,Manganese,LB
+37119,0.2012996,Mercury,LB
+37119,383532.3,Carbon Dioxide,TON
+37119,293.6636,Styrene,LB
+37119,269.713,Acrolein,LB
+37119,10.941362,Anthracene,LB
+37115,12.97995,Propionaldehyde,LB
+37115,1.9385254,Fluoranthene,LB
+37115,271.8726,Formaldehyde,LB
+37115,8.612036e-05,Mercury,LB
+37115,1.165273,PM10-Primary from certain diesel engines,TON
+37115,0.2928648,Organic Carbon portion of PM2.5-PRI,TON
+37115,1.150016,PM2.5 Primary (Filt + Cond),TON
+37115,0.06007157,Sulfate Portion of PM2.5-PRI,TON
+37109,14.157342,Hexane,LB
+37109,0.014285128,"Dibenzo[a,h]Anthracene",LB
+37109,58.43996,Naphthalene,LB
+37109,13.22892,Carbon Monoxide,TON
+37109,0.05972539,Sulfur Dioxide,TON
+37107,279.6098,Ethyl Benzene,LB
+37107,4.637066,Propionaldehyde,LB
+37107,1039.8898,Xylenes (Mixed Isomers),LB
+37107,106.5858,Formaldehyde,LB
+37107,0.07968908,Benz[a]Anthracene,LB
+37107,1.5223762,Phenanthrene,LB
+37107,0.567736,Fluorene,LB
+37107,0.1307404,Methane,TON
+37107,0.03587249,Sulfur Dioxide,TON
+37097,0.341918,Formaldehyde,LB
+37097,0.0010542412,Acenaphthene,LB
+37097,0.016610926,Acrolein,LB
+37091,3.716868,Ethyl Benzene,LB
+37091,0.105428,Styrene,LB
+37091,0.0907204,Propionaldehyde,LB
+37091,0.003753688,"Benzo[g,h,i,]Perylene",LB
+37091,0.0011194288,Benzo[k]Fluoranthene,LB
+37091,9.48318e-05,Nickel,LB
+37091,0.008946092,Fluorene,LB
+37091,0.003739103,Methane,TON
+37091,30.1662,Carbon Dioxide,TON
+37079,0.04813892,Pyrene,LB
+37079,71.5834,Xylenes (Mixed Isomers),LB
+37079,1.1846686e-05,Chromium (VI),LB
+37079,0.0354382,"Benzo[g,h,i,]Perylene",LB
+37079,9.463456,Acetaldehyde,LB
+37079,1.488168,Naphthalene,LB
+37079,0.01813504,Ammonia,TON
+37077,0.02250566,"Benzo[g,h,i,]Perylene",LB
+37077,3.828136,Fluoranthene,LB
+37077,0.7085796,Chrysene,LB
+37077,0.04407064,Arsenic,LB
+37077,233.859,Acetaldehyde,LB
+37077,6.322038,Phenanthrene,LB
+37077,1.391169,PM25-Primary from certain diesel engines,TON
+37077,0.5266049,Organic Carbon portion of PM2.5-PRI,TON
+37077,1.464921,PM2.5 Primary (Filt + Cond),TON
+37025,0.5182552,Ethyl Benzene,LB
+37025,0.002422366,Benzo[a]Pyrene,LB
+37025,5.638266e-05,"Dibenzo[a,h]Anthracene",LB
+37025,0.0017660338,Fluorene,LB
+37025,0.0001285391,Sulfate Portion of PM2.5-PRI,TON
+37169,3.211348,Xylenes (Mixed Isomers),LB
+37169,2.836208,"2,2,4-Trimethylpentane",LB
+37145,0.07531121,Volatile Organic Compounds,TON
+37137,1.772008,Hexane,LB
+37137,0.003570826,Pyrene,LB
+37137,3.835288,Formaldehyde,LB
+37137,23.65032,Acetaldehyde,LB
+37137,2.161809,Carbon Monoxide,TON
+37137,0.01085544,Ammonia,TON
+37103,5.750566,Toluene,LB
+37089,0.05804694,Acrolein,LB
+37089,0.0011103478,Pyrene,LB
+37089,5.405554e-06,Chromium (VI),LB
+37089,0.001358259,Benzo[a]Pyrene,LB
+37089,0.0006151876,Benz[a]Anthracene,LB
+37089,97.30224,Carbon Dioxide,TON
+37089,0.001613247,Nitrous Oxide,TON
+37089,0.00463852,Ammonia,TON
+37167,1.3468264,"2,2,4-Trimethylpentane",LB
+37167,9.713314e-07,Mercury,LB
+37167,1.857084e-05,Arsenic,LB
+37167,0.6532105,Carbon Monoxide,TON
+37167,6.776156,Carbon Dioxide,TON
+37167,0.0008350405,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.002076,PM10 Primary (Filt + Cond),TON
+37167,0.0001421162,Sulfur Dioxide,TON
+37021,5.260042,Styrene,LB
+37021,11.9317,"1,3-Butadiene",LB
+37021,9.471968,Hexane,LB
+37021,26.24408,Xylenes (Mixed Isomers),LB
+37021,8.29021e-05,Chromium (VI),LB
+37021,0.14811068,Manganese,LB
+37021,0.01160432,Nitrous Oxide,TON
+37021,27.26895,Nitrogen Oxides,TON
+37021,2.150417,Volatile Organic Compounds,TON
+37021,0.1280228,Manganese,LB
+37021,0.016159904,Nickel,LB
+37021,5697.821,Carbon Dioxide,TON
+37021,0.215731,Ammonia,TON
+37021,0.6772674,PM10 Primary (Filt + Cond),TON
+37021,166.41362,Ethyl Benzene,LB
+37021,5.22143,Propionaldehyde,LB
+37021,0.11515466,Benzo[b]Fluoranthene,LB
+37021,194.88648,"2,2,4-Trimethylpentane",LB
+37005,4.549692,Acrolein,LB
+37005,3.697482,Toluene,LB
+37005,0.2085728,Anthracene,LB
+37005,3.09333,Propionaldehyde,LB
+37005,0.001239987,Nitrous Oxide,TON
+37005,5.811941,Nitrogen Oxides,TON
+37005,0.007106762,Sulfur Dioxide,TON
+37061,8.737108,Hexane,LB
+37061,0.01995608,Benzo[a]Pyrene,LB
+37061,0.013993582,Arsenic,LB
+37061,127.8978,Acetaldehyde,LB
+37061,1.505122,Nitrogen Oxides,TON
+37035,0.009866118,Manganese,LB
+37035,0.0002856522,Sulfate Portion of PM2.5-PRI,TON
+37035,0.002131046,Anthracene,LB
+37035,0.5431292,Propionaldehyde,LB
+37035,0.004535094,Pyrene,LB
+37035,0.010458896,Acenaphthylene,LB
+37035,2.873218,"2,2,4-Trimethylpentane",LB
+37023,0.03860714,Acrolein,LB
+37023,0.002734108,"Benzo[g,h,i,]Perylene",LB
+37023,0.7221728,Formaldehyde,LB
+37023,1.0828738,Benzene,LB
+37023,0.002161016,Phenanthrene,LB
+37143,0.03186376,Acrolein,LB
+37143,0.0013317384,Acenaphthylene,LB
+37017,0.0950017,Fluoranthene,LB
+37017,12.782408,Formaldehyde,LB
+37017,0.4216486,Ethyl Benzene,LB
+37017,0.03993662,Acenaphthene,LB
+37017,0.08483968,PM10 Primary (Filt + Cond),TON
+37017,0.06024746,PM2.5 Primary (Filt + Cond),TON
+37017,0.00246838,Sulfate Portion of PM2.5-PRI,TON
+37007,1.4382608,Styrene,LB
+37007,5.332946,Propionaldehyde,LB
+37007,0.003493342,Benzo[b]Fluoranthene,LB
+37007,0.329922,Acenaphthene,LB
+37007,5.909418,Carbon Monoxide,TON
+37007,705.1274,Carbon Dioxide,TON
+37007,0.1156835,PM10-Primary from certain diesel engines,TON
+37017,5.105384,"1,3-Butadiene",LB
+37017,0.03519262,"Benzo[g,h,i,]Perylene",LB
+37017,0.0396098,Acenaphthene,LB
+37017,2.056444,Naphthalene,LB
+37017,1.665829,Nitrogen Oxides,TON
+37017,0.006080343,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,4.718674,PM10 Primary (Filt + Cond),TON
+37015,33.54476,Phenanthrene,LB
+37015,0.449029,Elemental Carbon portion of PM2.5-PRI,TON
+37015,2.496587,Nitrous Oxide,TON
+37015,1.9763446,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.0002118654,Nickel,LB
+37181,0.006111415,Methane,TON
+37181,0.002603165,Ammonia,TON
+37181,2.007333e-05,Nitrate portion of PM2.5-PRI,TON
+37181,0.01209599,PM10 Primary (Filt + Cond),TON
+37181,0.001915101,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.1966098,Styrene,LB
+37181,40.65104,Toluene,LB
+37181,0.006881,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.004124176,Benzo[b]Fluoranthene,LB
+37195,0.0011144002,Pyrene,LB
+37195,0.0002239542,Benzo[b]Fluoranthene,LB
+37195,0.2226903,Carbon Monoxide,TON
+37195,4.47613e-05,Ammonia,TON
+37195,0.0004698428,PM10 Primary (Filt + Cond),TON
+37191,0.2178228,Styrene,LB
+37191,0.14850948,Pyrene,LB
+37191,0.0006465748,"Benzo[g,h,i,]Perylene",LB
+37191,0.11287938,Fluoranthene,LB
+37191,6.566436,Acetaldehyde,LB
+37191,0.04994788,Acenaphthene,LB
+37191,0.0462367,PM10 Primary (Filt + Cond),TON
+37191,0.03482042,PM2.5 Primary (Filt + Cond),TON
+37187,18.181498,Formaldehyde,LB
+37187,1.9984504e-05,Benz[a]Anthracene,LB
+37187,7.595624e-05,Acenaphthene,LB
+37187,0.002173552,PM2.5 Primary (Filt + Cond),TON
+37191,13.509664,Ethyl Benzene,LB
+37191,0.02160424,"Benzo[g,h,i,]Perylene",LB
+37191,5.523992,Formaldehyde,LB
+37191,0.005545836,Benz[a]Anthracene,LB
+37191,0.003618684,Manganese,LB
+37191,3.824058e-05,Mercury,LB
+37191,0.0004768244,Nickel,LB
+37191,5.676032,Acetaldehyde,LB
+37191,0.01353159,Methane,TON
+37191,0.002984041,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.003498702,Sulfur Dioxide,TON
+37181,1.9910016,Xylenes (Mixed Isomers),LB
+37181,0.0010763586,Benzo[a]Pyrene,LB
+37181,0.005821262,Nickel,LB
+37181,0.002175038,Arsenic,LB
+37181,0.01740501,Methane,TON
+37181,0.003647832,Ammonia,TON
+37179,45.93454,Benzene,LB
+37197,3189.33,Ethyl Benzene,LB
+37197,99.09454,Acrolein,LB
+37197,8.086352,Pyrene,LB
+37197,7.306522,"Benzo[g,h,i,]Perylene",LB
+37197,0.06301506,"Dibenzo[a,h]Anthracene",LB
+37197,0.7169734,Nickel,LB
+37197,1705.3636,Acetaldehyde,LB
+37197,9.644938,Fluorene,LB
+37197,1.540399,Organic Carbon portion of PM2.5-PRI,TON
+37197,1.665081,Sulfur Dioxide,TON
+37195,511.4288,"2,2,4-Trimethylpentane",LB
+37195,0.018245132,Nickel,LB
+37195,17.924346,Naphthalene,LB
+37195,0.2373661,PM10 Primary (Filt + Cond),TON
+37183,4.40812,Toluene,LB
+37183,0.06456868,Chrysene,LB
+37183,0.1100669,PM25-Primary from certain diesel engines,TON
+37183,0.02296203,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,48.49502,Naphthalene,LB
+37185,2812.089,Carbon Dioxide,TON
+37185,0.4787223,PM10 Primary (Filt + Cond),TON
+37185,10.937132,Hexane,LB
+37185,0.05023922,Manganese,LB
+37185,191.6736,Acetaldehyde,LB
+37185,3.871784,Phenanthrene,LB
+37041,3.072738e-05,Mercury,LB
+37041,0.00642487,Arsenic,LB
+37041,0.2993532,Acenaphthene,LB
+37041,0.03058193,Ammonia,TON
+37041,2.656968,Hexane,LB
+37041,2.925136e-05,Chromium (VI),LB
+37041,2.819464,"2,2,4-Trimethylpentane",LB
+37031,629.8756,Ethyl Benzene,LB
+37031,24.6478,Styrene,LB
+37031,149.15178,"1,3-Butadiene",LB
+37031,3593.17,Toluene,LB
+37031,0.5006137,PM2.5 Primary (Filt + Cond),TON
+37031,0.01347778,Sulfate Portion of PM2.5-PRI,TON
+37029,1.3850914e-07,Nickel,LB
+37029,1.922537e-06,Ammonia,TON
+37029,1.2478618e-05,Pyrene,LB
+37029,1.055128e-05,"Benzo[g,h,i,]Perylene",LB
+37029,2.640476e-06,Benzo[b]Fluoranthene,LB
+37029,2.640476e-06,Benzo[k]Fluoranthene,LB
+37029,9.098176e-08,"Dibenzo[a,h]Anthracene",LB
+37029,2.555308e-06,Benz[a]Anthracene,LB
+37095,4.745112,Xylenes (Mixed Isomers),LB
+37087,7.088538,Styrene,LB
+37087,30.18916,Xylenes (Mixed Isomers),LB
+37087,0.1133214,Benzo[b]Fluoranthene,LB
+37087,11.76853,"2,2,4-Trimethylpentane",LB
+37087,2.201456,PM25-Primary from certain diesel engines,TON
+37087,2.829829,Volatile Organic Compounds,TON
+37087,0.02307814,Ammonia,TON
+37087,0.0368153,PM2.5 Primary (Filt + Cond),TON
+37087,0.01037712,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.004402988,Sulfate Portion of PM2.5-PRI,TON
+37087,0.08175774,Benz[a]Anthracene,LB
+37087,0.03373546,Manganese,LB
+37087,1071.959,Carbon Dioxide,TON
+37087,0.03038546,PM10-Primary from certain diesel engines,TON
+37087,10.3629,Acrolein,LB
+37087,0.0376792,Chrysene,LB
+37083,2.902276e-06,Chromium (VI),LB
+37083,0.0005128774,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,10.293422,Formaldehyde,LB
+37083,0.002197186,Manganese,LB
+37083,0.0016422062,Nickel,LB
+37083,0.0005202126,Arsenic,LB
+37083,4.49082,Acetaldehyde,LB
+37083,0.002366025,Ammonia,TON
+37079,0.2888656,Acrolein,LB
+37079,0.246614,Toluene,LB
+37079,0.00016236852,Arsenic,LB
+37079,34.90084,Carbon Dioxide,TON
+37079,7.538705e-05,Nitrous Oxide,TON
+37079,0.0119571,PM10 Primary (Filt + Cond),TON
+37079,0.009243601,PM2.5 Primary (Filt + Cond),TON
+37079,0.001503576,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.0002700978,Sulfate Portion of PM2.5-PRI,TON
+37071,3.333382,Styrene,LB
+37071,19.490962,Acrolein,LB
+37071,19.00241,Toluene,LB
+37071,0.6234606,Anthracene,LB
+37071,0.002816344,"Benzo[g,h,i,]Perylene",LB
+37071,23.34818,Benzene,LB
+37071,9.237838e-05,Mercury,LB
+37071,0.03136535,Ammonia,TON
+37071,1.4550698,"1,3-Butadiene",LB
+37071,45.37212,Toluene,LB
+37071,0.0208903,Fluoranthene,LB
+37071,0.01139997,Benzo[a]Pyrene,LB
+37071,15.132648,Benzene,LB
+37071,0.007709126,Manganese,LB
+37071,4.080982,Acetaldehyde,LB
+37071,0.7098078,Naphthalene,LB
+37071,0.01808682,Ammonia,TON
+37071,0.005117774,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,4.624141e-05,Sulfate Portion of PM2.5-PRI,TON
+37053,0.011230806,Ethyl Benzene,LB
+37053,0.8847128,Propionaldehyde,LB
+37053,3.410406e-05,Benz[a]Anthracene,LB
+37053,0.001440956,Manganese,LB
+37063,44697.48,Toluene,LB
+37063,10456.982,"2,2,4-Trimethylpentane",LB
+37041,0.013458498,Benzo[b]Fluoranthene,LB
+37041,0.5360144,Fluoranthene,LB
+37041,2.502294,"2,2,4-Trimethylpentane",LB
+37041,0.1560028,Benz[a]Anthracene,LB
+37041,0.009420494,Arsenic,LB
+37041,0.3672659,PM2.5 Primary (Filt + Cond),TON
+37041,0.005546784,Pyrene,LB
+37041,0.07762176,Styrene,LB
+37041,0.003100781,Methane,TON
+37041,0.0007859521,Organic Carbon portion of PM2.5-PRI,TON
+37041,4.180269e-05,Sulfate Portion of PM2.5-PRI,TON
+37037,2.451278e-06,Chromium (VI),LB
+37037,0.002106355,Ammonia,TON
+37037,0.01027391,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.02629979,PM2.5 Primary (Filt + Cond),TON
+37029,0.016418504,Fluoranthene,LB
+37029,0.2626112,Styrene,LB
+37029,1.5037694,"1,3-Butadiene",LB
+37029,27.10392,Xylenes (Mixed Isomers),LB
+37029,12.114042,Benzene,LB
+37029,0.001862577,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.2185163,Volatile Organic Compounds,TON
+37023,0.7004138,Acrolein,LB
+37023,56.83556,Xylenes (Mixed Isomers),LB
+37023,0.001319432,Nickel,LB
+37023,0.16661686,Phenanthrene,LB
+37023,0.009111984,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.0001025542,Nickel,LB
+37199,0.0005679026,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.1183732,Styrene,LB
+37199,0.6879968,"1,3-Butadiene",LB
+37199,0.0018448908,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.007237286,Fluoranthene,LB
+37185,0.3084084,"1,3-Butadiene",LB
+37185,0.005479326,Pyrene,LB
+37185,0.014489726,"Benzo[g,h,i,]Perylene",LB
+37185,0.002239928,Chrysene,LB
+37185,0.00252463,Benz[a]Anthracene,LB
+37185,0.02378373,Methane,TON
+37185,0.004416495,Nitrous Oxide,TON
+37185,0.003247692,Organic Carbon portion of PM2.5-PRI,TON
+37191,4.666236,Ethyl Benzene,LB
+37191,2.02929,Styrene,LB
+37191,9.362344,Toluene,LB
+37191,0.4374778,Anthracene,LB
+37191,0.004020572,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.4653356,Acenaphthene,LB
+37191,0.890153,Fluorene,LB
+37191,0.170332,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.01197568,Sulfate Portion of PM2.5-PRI,TON
+37191,19.595482,Ethyl Benzene,LB
+37191,73.90564,Xylenes (Mixed Isomers),LB
+37191,13.28536,Ethyl Benzene,LB
+37191,20.70804,Hexane,LB
+37191,0.4176174,Propionaldehyde,LB
+37191,13.352814,"2,2,4-Trimethylpentane",LB
+37191,14.41327,Carbon Monoxide,TON
+37191,0.9909547,Nitrogen Oxides,TON
+37191,0.007712156,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.0005256673,Sulfate Portion of PM2.5-PRI,TON
+37189,53.81127,Carbon Monoxide,TON
+37189,0.1374463,PM10 Primary (Filt + Cond),TON
+37189,0.2317768,"Benzo[g,h,i,]Perylene",LB
+37181,36241.04,Toluene,LB
+37181,232.2896,Propionaldehyde,LB
+37181,3.674718,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.6792732,Nickel,LB
+37181,187.0796,Volatile Organic Compounds,TON
+37023,64.80162,Hexane,LB
+37023,0.06612276,Styrene,LB
+37023,0.3623944,"1,3-Butadiene",LB
+37023,10.016206,Toluene,LB
+37023,0.0009505148,Benzo[b]Fluoranthene,LB
+37023,2.226354,"2,2,4-Trimethylpentane",LB
+37023,1.7729858e-05,Nickel,LB
+37023,0.8759044,Acetaldehyde,LB
+37023,0.002719208,Acenaphthene,LB
+37023,0.005507928,Fluorene,LB
+37023,0.002176383,PM10 Primary (Filt + Cond),TON
+37023,0.00141426,PM2.5 Primary (Filt + Cond),TON
+37095,0.143455,Acrolein,LB
+37095,0.01194388,Pyrene,LB
+37095,0.0016539702,Benzo[b]Fluoranthene,LB
+37095,0.0005727623,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.0006161856,Benzo[k]Fluoranthene,LB
+37093,0.05012426,PM10-Primary from certain diesel engines,TON
+37093,0.001852087,Sulfur Dioxide,TON
+37087,7.15132,Acrolein,LB
+37087,2745.208,Toluene,LB
+37087,2.034932,Phenanthrene,LB
+37087,0.1735236,Methane,TON
+37087,0.0004927318,Nitrate portion of PM2.5-PRI,TON
+37085,27.0775,"2,2,4-Trimethylpentane",LB
+37085,26.84796,Ethyl Benzene,LB
+37085,0.0452553,Anthracene,LB
+37085,0.002572648,Nickel,LB
+37085,29.97051,Carbon Monoxide,TON
+37085,1121.155,Carbon Dioxide,TON
+37085,0.02543288,Nitrous Oxide,TON
+37085,8.163699e-05,Nitrate portion of PM2.5-PRI,TON
+37085,2.118637,Nitrogen Oxides,TON
+37085,0.01376614,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.9839876,Pyrene,LB
+37077,0.002531616,"Benzo[g,h,i,]Perylene",LB
+37077,0.08970631,Methane,TON
+37077,0.0030457,Chrysene,LB
+37077,5.542944,Ethyl Benzene,LB
+37077,1.1828874,"1,3-Butadiene",LB
+37077,0.013640142,"Benzo[g,h,i,]Perylene",LB
+37069,2229.004,Toluene,LB
+37069,3.034768,Acenaphthylene,LB
+37069,659.9362,Benzene,LB
+37069,128.3206,Carbon Monoxide,TON
+37069,0.38998,Nitrous Oxide,TON
+37045,0.0258985,Nickel,LB
+37045,118.22098,Acetaldehyde,LB
+37045,1.0691516,Fluorene,LB
+37045,0.000621659,Nitrate portion of PM2.5-PRI,TON
+37045,0.2130871,PM2.5 Primary (Filt + Cond),TON
+37045,0.05586558,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,11.68076,Styrene,LB
+37045,10.02716,Acrolein,LB
+37045,4217.016,Toluene,LB
+37045,1004.0738,Hexane,LB
+37045,0.881807,Pyrene,LB
+37045,2180.55,Xylenes (Mixed Isomers),LB
+37037,0.011848586,Benzo[k]Fluoranthene,LB
+37037,36.30358,Benzene,LB
+37037,0.14752148,Manganese,LB
+37037,0.0630251,Nickel,LB
+37037,0.105629,Ammonia,TON
+37037,1.767371,PM2.5 Primary (Filt + Cond),TON
+37031,0.010463466,Benzo[k]Fluoranthene,LB
+37031,0.2833802,Manganese,LB
+37031,0.0597932,Nickel,LB
+37031,0.03666418,Arsenic,LB
+37031,0.3410515,Methane,TON
+37031,0.3905271,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.235168,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,3.951784,Benzo[k]Fluoranthene,LB
+37031,5046.542,Formaldehyde,LB
+37031,841.543,Naphthalene,LB
+37031,286.7586,Volatile Organic Compounds,TON
+37031,9925.566,Ethyl Benzene,LB
+37027,0.1072165,Volatile Organic Compounds,TON
+37027,5.348358e-06,Chromium (VI),LB
+37027,0.02949604,Chrysene,LB
+37027,8.400292,Acetaldehyde,LB
+37027,0.01261964,Methane,TON
+37027,0.08321806,PM25-Primary from certain diesel engines,TON
+37027,0.0002783861,Nitrate portion of PM2.5-PRI,TON
+37027,0.003890524,Sulfur Dioxide,TON
+37169,0.05575184,Manganese,LB
+37169,0.0017093908,Mercury,LB
+37169,0.6662798,Fluorene,LB
+37169,0.2100674,Ammonia,TON
+37169,0.05558719,Organic Carbon portion of PM2.5-PRI,TON
+37169,6.40615,Acrolein,LB
+37169,0.2803472,Anthracene,LB
+37169,0.00017051022,Chromium (VI),LB
+37169,0.08213552,Benzo[k]Fluoranthene,LB
+37169,235.5394,"2,2,4-Trimethylpentane",LB
+37153,3.731096,Acrolein,LB
+37153,865.8144,Xylenes (Mixed Isomers),LB
+37153,73.76436,Formaldehyde,LB
+37153,0.0002210448,Nitrate portion of PM2.5-PRI,TON
+37153,2.303457,Nitrogen Oxides,TON
+37153,7.232347,Volatile Organic Compounds,TON
+37151,142.0854,Carbon Monoxide,TON
+37151,12.97071,Styrene,LB
+37151,0.0002153608,Chromium (VI),LB
+37143,0.005053266,Ethyl Benzene,LB
+37143,0.03580548,Xylenes (Mixed Isomers),LB
+37143,1.169174e-08,Chromium (VI),LB
+37143,0.00012045038,Acenaphthylene,LB
+37143,13.916908,Formaldehyde,LB
+37141,0.4326872,"1,3-Butadiene",LB
+37141,0.7895002,Xylenes (Mixed Isomers),LB
+37141,0.002534862,Benzo[b]Fluoranthene,LB
+37141,0.1545488,Phenanthrene,LB
+37141,0.09190226,Fluorene,LB
+37141,0.03032995,PM25-Primary from certain diesel engines,TON
+37141,0.5664805,Nitrogen Oxides,TON
+37139,6.93774e-05,Anthracene,LB
+37139,0.79437,Propionaldehyde,LB
+37139,0.0003178776,Pyrene,LB
+37139,2.792974e-05,Benz[a]Anthracene,LB
+37139,0.002018986,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.003090168,Nickel,LB
+37135,0.4544827,Carbon Monoxide,TON
+37135,0.0004245598,Nitrous Oxide,TON
+37135,0.6362422,Hexane,LB
+37127,0.2821248,Acenaphthene,LB
+37127,0.8075468,Phenanthrene,LB
+37127,0.02142198,PM10-Primary from certain diesel engines,TON
+37127,0.08495344,PM10 Primary (Filt + Cond),TON
+37127,5.602706e-05,Chromium (VI),LB
+37127,0.004054238,Sulfate Portion of PM2.5-PRI,TON
+37119,0.05737797,Nitrate portion of PM2.5-PRI,TON
+37119,5.278406,Organic Carbon portion of PM2.5-PRI,TON
+37119,46.59846,PM10 Primary (Filt + Cond),TON
+37115,0.007633814,Arsenic,LB
+37115,24.97136,Acetaldehyde,LB
+37115,0.006516432,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.08252814,Ammonia,TON
+37115,0.02429909,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.01357196,Sulfur Dioxide,TON
+37115,0.03076824,Chrysene,LB
+37115,39.2052,Formaldehyde,LB
+37115,219.9504,Hexane,LB
+37097,0.2478754,Acenaphthylene,LB
+37097,0.03844452,Manganese,LB
+37097,0.14751612,Acenaphthene,LB
+37097,0.3288214,Fluorene,LB
+37097,0.037511,Methane,TON
+37097,5.323135,Nitrogen Oxides,TON
+37097,0.05374888,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.2641889,PM2.5 Primary (Filt + Cond),TON
+37103,0.13986028,Acenaphthene,LB
+37103,0.4197984,Phenanthrene,LB
+37103,3.17987,Acrolein,LB
+37095,0.0013981598,Benzo[k]Fluoranthene,LB
+37095,51.15806,Formaldehyde,LB
+37095,1.3320252,"2,2,4-Trimethylpentane",LB
+37095,0.02955468,Methane,TON
+37095,0.1251165,PM10-Primary from certain diesel engines,TON
+37095,0.00062012,Nitrate portion of PM2.5-PRI,TON
+37095,0.2790315,Volatile Organic Compounds,TON
+37079,1.4918532e-05,Mercury,LB
+37079,0.004500926,Fluorene,LB
+37079,0.0002841792,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.001702776,PM2.5 Primary (Filt + Cond),TON
+37079,0.0014057984,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,8.85695,Toluene,LB
+37079,0.04304624,Propionaldehyde,LB
+37073,10.69668,Toluene,LB
+37073,0.8527242,Pyrene,LB
+37073,5.957054e-05,Chromium (VI),LB
+37073,0.05824392,Benzo[a]Pyrene,LB
+37073,0.05142385,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.02986494,Manganese,LB
+37073,0.3424468,Acenaphthene,LB
+37073,0.2629003,PM25-Primary from certain diesel engines,TON
+37073,0.001425494,Nitrate portion of PM2.5-PRI,TON
+37073,0.6220788,Volatile Organic Compounds,TON
+37073,0.08062792,Benzo[a]Pyrene,LB
+37073,0.003290816,"Dibenzo[a,h]Anthracene",LB
+37073,3.72045,Ethyl Benzene,LB
+37073,0.5755562,Acenaphthylene,LB
+37085,12.777478,Acrolein,LB
+37085,0.7275802,Pyrene,LB
+37085,0.0017031822,"Benzo[g,h,i,]Perylene",LB
+37085,0.0003193772,Benzo[k]Fluoranthene,LB
+37085,175.99032,Formaldehyde,LB
+37085,0.0003154786,"Dibenzo[a,h]Anthracene",LB
+37085,0.1415223,Methane,TON
+37085,0.01085128,Sulfur Dioxide,TON
+37085,0.02220198,PM10 Primary (Filt + Cond),TON
+37085,88.32956,Toluene,LB
+37085,0.02820676,Pyrene,LB
+37085,0.07627544,Acenaphthylene,LB
+37083,148.38116,Acrolein,LB
+37083,7170.428,Hexane,LB
+37083,0.009531572,Chromium (VI),LB
+37083,32.9236,Acenaphthylene,LB
+37083,2.168822,Manganese,LB
+37083,39.4229,Phenanthrene,LB
+37083,374.8278,Naphthalene,LB
+37083,2.89975,Nitrous Oxide,TON
+37083,12.48332,Ammonia,TON
+37083,0.01320974,Nitrate portion of PM2.5-PRI,TON
+37083,11.20368,PM10 Primary (Filt + Cond),TON
+37079,0.05457676,Acrolein,LB
+37079,0.0019879084,Anthracene,LB
+37079,0.03820948,Propionaldehyde,LB
+37077,0.014896256,Nickel,LB
+37077,0.2482238,Anthracene,LB
+37077,0.1265949,PM2.5 Primary (Filt + Cond),TON
+37053,2.136972,"1,3-Butadiene",LB
+37053,5.31669,Acrolein,LB
+37053,0.002839208,"Benzo[g,h,i,]Perylene",LB
+37053,0.3638448,Acenaphthylene,LB
+37053,0.08911272,Chrysene,LB
+37053,0.001864716,"Dibenzo[a,h]Anthracene",LB
+37053,1.7410444,"2,2,4-Trimethylpentane",LB
+37053,0.4642604,Fluorene,LB
+37053,0.009764321,Ammonia,TON
+37053,0.06445206,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.1610253,PM2.5 Primary (Filt + Cond),TON
+37061,22.83568,Ethyl Benzene,LB
+37061,5.670836,Pyrene,LB
+37061,2.051028,Acenaphthene,LB
+37061,0.4284022,Methane,TON
+37061,2.978239,PM25-Primary from certain diesel engines,TON
+37061,0.016878804,"Benzo[g,h,i,]Perylene",LB
+37061,0.003768426,Benzo[k]Fluoranthene,LB
+37061,4.461968,Acenaphthene,LB
+37061,7.540244,Fluorene,LB
+37061,0.1451634,Organic Carbon portion of PM2.5-PRI,TON
+37061,104.27064,Acrolein,LB
+37051,66.37888,Pyrene,LB
+37051,0.04020498,Chromium (VI),LB
+37051,0.4030446,Mercury,LB
+37051,13456.224,Acetaldehyde,LB
+37051,10479.1,Carbon Monoxide,TON
+37051,9.734125,Organic Carbon portion of PM2.5-PRI,TON
+37051,77.70692,PM10 Primary (Filt + Cond),TON
+37043,0.337477,Volatile Organic Compounds,TON
+37039,1.865657,PM10 Primary (Filt + Cond),TON
+37039,29.0548,Xylenes (Mixed Isomers),LB
+37039,0.4685702,Benz[a]Anthracene,LB
+37039,25.32676,Benzene,LB
+37039,120.63214,Acetaldehyde,LB
+37029,0.00322031,Pyrene,LB
+37029,0.001333969,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.0001162887,Sulfate Portion of PM2.5-PRI,TON
+37023,0.2077103,Volatile Organic Compounds,TON
+37017,0.0002163682,"Dibenzo[a,h]Anthracene",LB
+37017,5.85212,"2,2,4-Trimethylpentane",LB
+37017,0.004477956,Benz[a]Anthracene,LB
+37017,3.273688,Ethyl Benzene,LB
+37017,0.6339174,"1,3-Butadiene",LB
+37017,11.597676,Xylenes (Mixed Isomers),LB
+37017,0.01233001,PM2.5 Primary (Filt + Cond),TON
+37177,1.4457944e-05,Mercury,LB
+37177,0.0005286384,Phenanthrene,LB
+37177,0.0001594849,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.000916687,Nickel,LB
+37139,9.596306,Acetaldehyde,LB
+37139,0.0016375816,Fluorene,LB
+37139,0.001047863,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.02338536,Styrene,LB
+37139,0.0007388732,Anthracene,LB
+37139,0.0005926798,Chrysene,LB
+37139,0.0013997404,Benzo[a]Pyrene,LB
+37139,0.000665747,Benz[a]Anthracene,LB
+37129,0.003180354,Fluoranthene,LB
+37129,0.004196656,Benzo[a]Pyrene,LB
+37129,0.0164196,Methane,TON
+37129,2.463806,Carbon Monoxide,TON
+37129,0.01074864,Sulfur Dioxide,TON
+37129,0.0002600512,Sulfate Portion of PM2.5-PRI,TON
+37103,0.7362668,Xylenes (Mixed Isomers),LB
+37103,5.39305e-06,Chromium (VI),LB
+37103,3.667886,Acetaldehyde,LB
+37103,3.244398e-06,Nitrate portion of PM2.5-PRI,TON
+37103,0.004939321,PM10 Primary (Filt + Cond),TON
+37087,0.01101429,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.04056912,Sulfur Dioxide,TON
+37087,0.00854352,Anthracene,LB
+37087,0.008929492,Acenaphthene,LB
+37087,0.01808729,Fluorene,LB
+37087,0.4665986,Naphthalene,LB
+37087,1334.12,Carbon Dioxide,TON
+37175,1.096219,PM10 Primary (Filt + Cond),TON
+37175,0.9650011,Volatile Organic Compounds,TON
+37175,1.5707498,Pyrene,LB
+37175,0.00463205,Benzo[k]Fluoranthene,LB
+37175,0.8749762,Acenaphthylene,LB
+37175,0.013951516,Arsenic,LB
+37175,76.07336,Acetaldehyde,LB
+37175,19.06542,Naphthalene,LB
+37175,5.566291,Carbon Monoxide,TON
+37171,531.1646,Formaldehyde,LB
+37171,13.234958,"2,2,4-Trimethylpentane",LB
+37171,6.508206,Phenanthrene,LB
+37171,2.298851,PM25-Primary from certain diesel engines,TON
+37171,1.514031,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.07790998,Sulfur Dioxide,TON
+37171,3.088141,Volatile Organic Compounds,TON
+37171,0.2435974,Methane,TON
+37171,0.7570024,PM10 Primary (Filt + Cond),TON
+37171,2.757256,Pyrene,LB
+37159,0.389997,Acrolein,LB
+37159,0.0002694362,Anthracene,LB
+37159,7.455798e-08,Chromium (VI),LB
+37159,95.27424,Formaldehyde,LB
+37159,0.002259678,Naphthalene,LB
+37159,208.5348,Carbon Dioxide,TON
+37159,4.985078,Volatile Organic Compounds,TON
+37155,6.393326e-06,Chromium (VI),LB
+37155,0.0010171684,"Benzo[g,h,i,]Perylene",LB
+37155,0.016141272,Benzo[a]Pyrene,LB
+37155,10.615772,Acetaldehyde,LB
+37155,0.02963253,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.02251408,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.06344037,PM2.5 Primary (Filt + Cond),TON
+37155,4.207484,Acrolein,LB
+37155,2.758006,Propionaldehyde,LB
+37155,0.002117946,"Benzo[g,h,i,]Perylene",LB
+37155,0.002568412,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,55.10354,Formaldehyde,LB
+37155,0.01568962,Sulfur Dioxide,TON
+37009,0.00013728304,Benzo[a]Pyrene,LB
+37009,0.001564304,Phenanthrene,LB
+37009,0.0005817912,Fluorene,LB
+37009,0.1089931,Carbon Monoxide,TON
+37009,0.0001715226,Nitrous Oxide,TON
+37009,0.009909624,Nitrogen Oxides,TON
+37009,9.469782e-05,Benzo[b]Fluoranthene,LB
+37001,15.235398,Fluoranthene,LB
+37001,78.8146,"2,2,4-Trimethylpentane",LB
+37001,19.373984,Fluorene,LB
+37001,0.7685413,Methane,TON
+37001,0.0522746,Nitrous Oxide,TON
+37001,64.3753,Nitrogen Oxides,TON
+37071,7.259944,Xylenes (Mixed Isomers),LB
+37071,0.004267652,Benzo[b]Fluoranthene,LB
+37071,0.00018907318,"Dibenzo[a,h]Anthracene",LB
+37071,10.39329,Benzene,LB
+37071,0.005858844,Nickel,LB
+37071,0.018377962,Phenanthrene,LB
+37071,0.008811592,Nitrous Oxide,TON
+37071,0.0004544553,Sulfate Portion of PM2.5-PRI,TON
+37071,0.4705926,"1,3-Butadiene",LB
+37013,0.8971682,Acrolein,LB
+37013,0.006020678,Benz[a]Anthracene,LB
+37013,0.456782,Naphthalene,LB
+37013,0.04246334,Ammonia,TON
+37005,0.16304528,Toluene,LB
+37005,0.0616751,Hexane,LB
+37005,6.673684e-05,Anthracene,LB
+37005,0.14831312,Xylenes (Mixed Isomers),LB
+37005,3.913766e-07,Chromium (VI),LB
+37005,7.501422e-05,Arsenic,LB
+37005,0.0004129408,Phenanthrene,LB
+37005,0.0005927919,Methane,TON
+37005,6.81139e-05,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.000203533,Sulfur Dioxide,TON
+37005,0.004712216,Volatile Organic Compounds,TON
+37157,0.2569424,Styrene,LB
+37157,0.9081546,Acrolein,LB
+37157,23.93096,Benzene,LB
+37157,0.017993138,Fluorene,LB
+37157,0.06691912,Methane,TON
+37157,1046.462,Carbon Dioxide,TON
+37157,0.004202182,Elemental Carbon portion of PM2.5-PRI,TON
+37157,5.735816e-05,Nitrate portion of PM2.5-PRI,TON
+37157,0.01032346,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.5850862,Volatile Organic Compounds,TON
+37117,0.00168344,Ammonia,TON
+37117,0.02396845,Nitrogen Oxides,TON
+37117,0.0006377083,PM2.5 Primary (Filt + Cond),TON
+37117,1.9687826e-06,Chromium (VI),LB
+37095,0.3053074,Benzene,LB
+37095,1.1010378e-05,Mercury,LB
+37095,9.46272e-05,Acenaphthene,LB
+37095,0.0004468627,Sulfur Dioxide,TON
+37013,16.76309,Styrene,LB
+37013,61.35102,Propionaldehyde,LB
+37013,0.007487984,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.02940256,Benzo[b]Fluoranthene,LB
+37013,0.12604152,Manganese,LB
+37013,3.831572,Acenaphthene,LB
+37013,10.019248,Phenanthrene,LB
+37013,0.1901591,Ammonia,TON
+37013,20.92684,Nitrogen Oxides,TON
+37021,0.0410658,Pyrene,LB
+37021,49.4135,Xylenes (Mixed Isomers),LB
+37021,0.009621878,Chrysene,LB
+37021,8.096756,Formaldehyde,LB
+37021,26.2954,Benzene,LB
+37021,0.01324309,Methane,TON
+37021,0.02571323,Ammonia,TON
+37011,4.976104,Ethyl Benzene,LB
+37011,3.783122,Hexane,LB
+37011,10.721396,Xylenes (Mixed Isomers),LB
+37011,0.1332433,PM25-Primary from certain diesel engines,TON
+37011,0.851326,Volatile Organic Compounds,TON
+37001,74.07206,Xylenes (Mixed Isomers),LB
+37001,0.1234704,Acenaphthylene,LB
+37001,0.010971394,Chrysene,LB
+37001,0.0010805552,Arsenic,LB
+37001,0.008942928,Ammonia,TON
+37001,6.134445e-05,Nitrate portion of PM2.5-PRI,TON
+37001,0.04103245,PM10 Primary (Filt + Cond),TON
+37051,2.664064,Acrolein,LB
+37051,0.18708266,"Benzo[g,h,i,]Perylene",LB
+37051,0.03630514,Benzo[b]Fluoranthene,LB
+37051,0.05288214,Fluorene,LB
+37051,0.0002834038,Nitrate portion of PM2.5-PRI,TON
+37051,1.897372,Volatile Organic Compounds,TON
+37047,0.08874344,"1,3-Butadiene",LB
+37047,0.0009293186,Benz[a]Anthracene,LB
+37047,0.002455264,Manganese,LB
+37047,0.0419701,Naphthalene,LB
+37047,0.003007992,PM2.5 Primary (Filt + Cond),TON
+37047,0.004904142,Sulfur Dioxide,TON
+37023,0.6858516,Ethyl Benzene,LB
+37023,1.4647186e-05,Chromium (VI),LB
+37023,0.00280742,Arsenic,LB
+37023,0.0011274026,Acenaphthene,LB
+37023,0.002031272,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.006553106,Sulfur Dioxide,TON
+37159,0.2402026,Acrolein,LB
+37159,4.99507,Xylenes (Mixed Isomers),LB
+37159,0.00013454082,"Dibenzo[a,h]Anthracene",LB
+37159,0.1794635,Volatile Organic Compounds,TON
+37111,0.04244682,"Benzo[g,h,i,]Perylene",LB
+37111,0.01594753,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.008426706,Benzo[b]Fluoranthene,LB
+37111,0.015744356,Benzo[a]Pyrene,LB
+37111,0.04436806,Phenanthrene,LB
+37111,0.05209335,Ammonia,TON
+37111,0.02866846,Sulfur Dioxide,TON
+37017,1.5391802e-05,Mercury,LB
+37017,4.946474,Acetaldehyde,LB
+37017,0.3581962,Nitrogen Oxides,TON
+37017,4.806042e-05,Benz[a]Anthracene,LB
+37007,6.440778,Ethyl Benzene,LB
+37007,4.942512e-05,Chromium (VI),LB
+37007,0.9037064,PM25-Primary from certain diesel engines,TON
+37007,0.04171577,Ammonia,TON
+37007,0.9331567,PM2.5 Primary (Filt + Cond),TON
+37007,0.01781198,Sulfate Portion of PM2.5-PRI,TON
+37005,2.32186,Ethyl Benzene,LB
+37005,0.002573822,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.337731,Acenaphthylene,LB
+37005,6.334992,Benzene,LB
+37005,29.729,Acetaldehyde,LB
+37005,0.4162808,Fluorene,LB
+37005,7.444144,Naphthalene,LB
+37005,0.2435321,PM25-Primary from certain diesel engines,TON
+37005,0.0169634,Sulfur Dioxide,TON
+37005,0.01347255,Sulfate Portion of PM2.5-PRI,TON
+37001,27.79274,Pyrene,LB
+37001,6.938656,Manganese,LB
+37001,2.581124,Nickel,LB
+37001,3.957622,Arsenic,LB
+37061,23.59166,Toluene,LB
+37061,8.852348,"2,2,4-Trimethylpentane",LB
+37043,0.0003093519,Nitrous Oxide,TON
+37043,0.01105866,Volatile Organic Compounds,TON
+37043,0.00013887976,Benzo[b]Fluoranthene,LB
+37043,0.00012176396,Benz[a]Anthracene,LB
+37043,1.391526e-05,Mercury,LB
+37043,0.0001735234,Nickel,LB
+37043,0.0002660744,Arsenic,LB
+37043,0.0008468594,Phenanthrene,LB
+37043,0.001219867,Methane,TON
+37017,35.24664,Acetaldehyde,LB
+37017,0.2858726,Acenaphthene,LB
+37017,0.0005727771,Nitrate portion of PM2.5-PRI,TON
+37017,1.2552484,Styrene,LB
+37017,1.9802766,Hexane,LB
+37017,0.00240781,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.4807418,Acenaphthylene,LB
+37015,0.4664118,Propionaldehyde,LB
+37015,0.0005011252,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.06787136,Fluoranthene,LB
+37015,0.04793818,Acenaphthylene,LB
+37015,9.123402,Formaldehyde,LB
+37015,0.0002706164,"Dibenzo[a,h]Anthracene",LB
+37015,0.0016438462,Nickel,LB
+37015,0.0006370908,Arsenic,LB
+37015,0.0285186,Acenaphthene,LB
+37015,0.10981136,Phenanthrene,LB
+37015,0.04449412,PM10-Primary from certain diesel engines,TON
+37015,0.0001154268,Nitrate portion of PM2.5-PRI,TON
+37015,0.9458379,Nitrogen Oxides,TON
+37015,0.04305231,PM2.5 Primary (Filt + Cond),TON
+37015,0.001763709,Sulfate Portion of PM2.5-PRI,TON
+37011,0.00659479,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.000652805,"Benzo[g,h,i,]Perylene",LB
+37011,4.233174e-06,Mercury,LB
+37011,1.5533374,Naphthalene,LB
+37011,0.5463866,Nitrogen Oxides,TON
+37199,0.03966778,"1,3-Butadiene",LB
+37199,0.02876174,Acrolein,LB
+37199,0.0622023,Propionaldehyde,LB
+37199,0.0004246028,Fluoranthene,LB
+37199,0.0011882854,Acenaphthylene,LB
+37199,0.0004382996,Manganese,LB
+37199,0.0014488572,Phenanthrene,LB
+37199,0.001751882,Ammonia,TON
+37199,1.498244e-05,Sulfate Portion of PM2.5-PRI,TON
+37199,0.01814464,Volatile Organic Compounds,TON
+37193,2.922828,Styrene,LB
+37193,15.916344,Acrolein,LB
+37193,0.005859092,Benzo[k]Fluoranthene,LB
+37193,0.006340494,Nitrous Oxide,TON
+37193,0.08242928,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,7.260814,Acenaphthene,LB
+37193,14.70738,Fluorene,LB
+37193,0.01171602,Nitrate portion of PM2.5-PRI,TON
+37193,2.112316,Organic Carbon portion of PM2.5-PRI,TON
+37193,6.252628,Anthracene,LB
+37193,2136.722,Formaldehyde,LB
+37191,12.231048,Xylenes (Mixed Isomers),LB
+37191,10.802052,"2,2,4-Trimethylpentane",LB
+37191,143.711,Toluene,LB
+37191,49.82592,Propionaldehyde,LB
+37191,167.98362,Xylenes (Mixed Isomers),LB
+37191,1428.5204,Formaldehyde,LB
+37191,0.018383174,"Dibenzo[a,h]Anthracene",LB
+37191,43.00134,"2,2,4-Trimethylpentane",LB
+37191,0.15060946,Nickel,LB
+37191,0.11441504,Arsenic,LB
+37191,543.144,Acetaldehyde,LB
+37191,2.650134,Acenaphthene,LB
+37191,30.54176,Carbon Monoxide,TON
+37191,2.306556,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.04246189,Nitrous Oxide,TON
+37191,108.8452,Nitrogen Oxides,TON
+37191,0.3626954,Sulfate Portion of PM2.5-PRI,TON
+37181,0.18056974,Benzene,LB
+37181,0.000299206,Arsenic,LB
+37181,0.0004659342,Fluorene,LB
+37181,0.0011784964,Naphthalene,LB
+37181,0.0005180052,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.001992016,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.005867424,PM2.5 Primary (Filt + Cond),TON
+37181,0.0004524345,Sulfur Dioxide,TON
+37199,0.7272054,Propionaldehyde,LB
+37199,0.001931146,Chrysene,LB
+37199,0.002152486,Benz[a]Anthracene,LB
+37199,0.002681632,Arsenic,LB
+37199,0.02107765,Methane,TON
+37199,0.01431841,PM10 Primary (Filt + Cond),TON
+37199,0.005476021,PM2.5 Primary (Filt + Cond),TON
+37197,0.3882366,Fluorene,LB
+37197,0.003050599,Elemental Carbon portion of PM2.5-PRI,TON
+37197,6.847872,Xylenes (Mixed Isomers),LB
+37197,3.88656e-05,Chromium (VI),LB
+37197,0.3783908,Acenaphthylene,LB
+37197,80.8898,Formaldehyde,LB
+37197,0.015634048,Manganese,LB
+37195,1.71035,Benz[a]Anthracene,LB
+37195,73.1181,Benzene,LB
+37069,0.06361898,Acenaphthylene,LB
+37069,0.01765739,Chrysene,LB
+37069,0.0574985,PM25-Primary from certain diesel engines,TON
+37069,0.005513643,Ammonia,TON
+37069,0.0001643567,Nitrate portion of PM2.5-PRI,TON
+37069,0.0615021,PM2.5 Primary (Filt + Cond),TON
+37067,4.770732,PM10-Primary from certain diesel engines,TON
+37067,0.3850871,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.158228,Sulfate Portion of PM2.5-PRI,TON
+37067,13.669832,Anthracene,LB
+37067,0.0012581716,Chromium (VI),LB
+37067,0.15276198,Benzo[b]Fluoranthene,LB
+37067,0.5120884,Benzo[a]Pyrene,LB
+37067,3.751984,Benz[a]Anthracene,LB
+37049,0.03827095,Nitrous Oxide,TON
+37049,0.6870022,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.3962452,Benzo[a]Pyrene,LB
+37049,98.1603,Benzene,LB
+37049,0.4504626,Manganese,LB
+37037,0.06747922,Arsenic,LB
+37037,231.892,Acetaldehyde,LB
+37037,23776.33,Carbon Dioxide,TON
+37037,0.004708353,Nitrate portion of PM2.5-PRI,TON
+37037,0.4248549,Organic Carbon portion of PM2.5-PRI,TON
+37037,2.244461,PM2.5 Primary (Filt + Cond),TON
+37037,0.2018897,Sulfur Dioxide,TON
+37037,50.24064,Xylenes (Mixed Isomers),LB
+37037,0.000266942,Chromium (VI),LB
+37037,0.02036658,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.5319534,Chrysene,LB
+37037,14.948932,"1,3-Butadiene",LB
+37035,91.26168,Acetaldehyde,LB
+37035,3555.072,Carbon Dioxide,TON
+37035,0.03215654,Elemental Carbon portion of PM2.5-PRI,TON
+37035,185.04336,Ethyl Benzene,LB
+37035,6.532808,Styrene,LB
+37035,8.863658e-05,Chromium (VI),LB
+37035,38.43298,Anthracene,LB
+37035,12.438166,Benz[a]Anthracene,LB
+37033,9.017746,Hexane,LB
+37033,0.18091,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.9819765,PM2.5 Primary (Filt + Cond),TON
+37033,0.09849552,Sulfur Dioxide,TON
+37033,2.885976,Phenanthrene,LB
+37033,0.4826809,Methane,TON
+37033,0.9230027,PM25-Primary from certain diesel engines,TON
+37033,41.93806,Xylenes (Mixed Isomers),LB
+37033,0.006957746,"Benzo[g,h,i,]Perylene",LB
+37033,360.7072,Formaldehyde,LB
+37031,46.42548,Xylenes (Mixed Isomers),LB
+37031,1.899552,Volatile Organic Compounds,TON
+37023,0.00291508,Xylenes (Mixed Isomers),LB
+37023,2.267002e-06,Fluoranthene,LB
+37023,714.5588,"2,2,4-Trimethylpentane",LB
+37023,0.007634772,Mercury,LB
+37023,0.09519742,Nickel,LB
+37023,52.2029,Naphthalene,LB
+37023,230.9651,Carbon Monoxide,TON
+37023,0.001253748,Nitrate portion of PM2.5-PRI,TON
+37023,23.77472,Styrene,LB
+37023,141.60778,"1,3-Butadiene",LB
+37023,2188.64,Xylenes (Mixed Isomers),LB
+37023,0.0007615772,Chromium (VI),LB
+37159,0.02644568,Acenaphthene,LB
+37159,58.26139,Carbon Dioxide,TON
+37159,0.001783921,Ammonia,TON
+37159,0.005481316,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.0002344951,Sulfate Portion of PM2.5-PRI,TON
+37159,16.97487,Ethyl Benzene,LB
+37159,0.641771,Styrene,LB
+37159,101.44182,Toluene,LB
+37157,3195.546,Hexane,LB
+37157,8093.52,Xylenes (Mixed Isomers),LB
+37157,481.6092,Benzene,LB
+37145,4.142256,"2,2,4-Trimethylpentane",LB
+37145,1.8906326e-05,Mercury,LB
+37145,0.009165678,Fluorene,LB
+37145,18.960798,Toluene,LB
+37145,0.007498768,Pyrene,LB
+37145,0.001174568,Chrysene,LB
+37145,0.001482333,Benzo[a]Pyrene,LB
+37145,0.000729225,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.2134008,Acrolein,LB
+37143,0.14489572,Propionaldehyde,LB
+37143,5.47302e-07,Chromium (VI),LB
+37143,0.0001141483,"Benzo[g,h,i,]Perylene",LB
+37143,0.00013845764,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,7.430844e-05,"Dibenzo[a,h]Anthracene",LB
+37143,0.00900395,Acenaphthene,LB
+37143,0.019031932,Fluorene,LB
+37143,19.18248,Carbon Dioxide,TON
+37143,4.98657e-05,Nitrous Oxide,TON
+37139,0.0032972,Hexane,LB
+37139,2.493278e-10,Chromium (VI),LB
+37139,5.61619e-06,Fluoranthene,LB
+37139,1.066963e-06,Benz[a]Anthracene,LB
+37139,2.092224e-05,Phenanthrene,LB
+37139,0.01748496,Carbon Dioxide,TON
+37139,3.502491e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.02412316,Benzo[a]Pyrene,LB
+37127,1.4405694e-05,Mercury,LB
+37127,0.006219908,Nickel,LB
+37127,0.1871709,Volatile Organic Compounds,TON
+37125,0.02704962,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,2.494744,Acenaphthylene,LB
+37125,0.356227,Benzo[a]Pyrene,LB
+37125,198.9543,Acetaldehyde,LB
+37125,3.277486,Fluorene,LB
+37125,0.2447662,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.06631146,Sulfur Dioxide,TON
+37125,31.67566,Toluene,LB
+37125,31.03466,Xylenes (Mixed Isomers),LB
+37125,0.003705352,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.003070074,Chrysene,LB
+37125,0.003099846,Benz[a]Anthracene,LB
+37125,0.2561422,Volatile Organic Compounds,TON
+37123,30.2883,Xylenes (Mixed Isomers),LB
+37123,10.162312,Benzene,LB
+37113,0.13751006,Phenanthrene,LB
+37113,0.579826,Propionaldehyde,LB
+37113,0.01229084,Organic Carbon portion of PM2.5-PRI,TON
+37113,4.329458,Xylenes (Mixed Isomers),LB
+37113,7.601648,Benzene,LB
+37113,0.2798424,Acenaphthene,LB
+37113,0.001571909,Nitrous Oxide,TON
+37113,0.02084553,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,108.10372,Hexane,LB
+37109,0.09327228,Anthracene,LB
+37109,0.18155392,Pyrene,LB
+37109,0.03952724,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.03968676,Benzo[a]Pyrene,LB
+37109,0.02677958,Manganese,LB
+37109,0.08802194,Nitrous Oxide,TON
+37109,0.06234038,Ammonia,TON
+37109,0.03806834,Styrene,LB
+37109,0.0013547056,Anthracene,LB
+37109,0.00011312066,Manganese,LB
+37109,0.010519854,Manganese,LB
+37109,0.0372235,Fluorene,LB
+37109,0.5349009,Nitrogen Oxides,TON
+37109,0.03046922,Pyrene,LB
+37109,0.00611182,Benzo[a]Pyrene,LB
+37101,8.018468,Volatile Organic Compounds,TON
+37097,1.4590628,Fluoranthene,LB
+37097,0.00372036,Benzo[k]Fluoranthene,LB
+37097,1.40593,Acenaphthylene,LB
+37097,20.44662,Acrolein,LB
+37097,0.5571499,PM10-Primary from certain diesel engines,TON
+37099,0.0016727814,Benzo[b]Fluoranthene,LB
+37099,0.000228527,"Dibenzo[a,h]Anthracene",LB
+37099,0.018857166,Benz[a]Anthracene,LB
+37099,0.0009183752,Nickel,LB
+37099,0.0001394859,Nitrous Oxide,TON
+37099,9.708378e-05,Nitrate portion of PM2.5-PRI,TON
+37099,0.5228086,Toluene,LB
+37099,1.5514972e-06,Chromium (VI),LB
+37093,8.04412,Styrene,LB
+37093,0.4935744,Fluoranthene,LB
+37093,0.08216448,Benz[a]Anthracene,LB
+37093,0.0002959574,Nitrate portion of PM2.5-PRI,TON
+37083,0.000262354,Benz[a]Anthracene,LB
+37083,0.0007772866,Pyrene,LB
+37083,0.0013823628,"Benzo[g,h,i,]Perylene",LB
+37083,11.97123,Carbon Dioxide,TON
+37083,1.4948e-06,Nitrate portion of PM2.5-PRI,TON
+37081,0.015663312,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.06146076,Benzo[b]Fluoranthene,LB
+37081,0.2059592,Benzo[a]Pyrene,LB
+37081,0.0085119,"Dibenzo[a,h]Anthracene",LB
+37081,1.887946,PM10-Primary from certain diesel engines,TON
+37077,2.986831e-05,Nitrous Oxide,TON
+37077,1.14608e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,1.055741e-05,Sulfur Dioxide,TON
+37077,0.001026068,Volatile Organic Compounds,TON
+37077,0.0011046496,Acrolein,LB
+37077,5.155716e-05,Anthracene,LB
+37077,2.662954e-05,Benz[a]Anthracene,LB
+37075,2.198464,Ethyl Benzene,LB
+37075,5.532108,Xylenes (Mixed Isomers),LB
+37075,28.1996,Acetaldehyde,LB
+37065,0.0007089678,Anthracene,LB
+37065,0.000253656,Benz[a]Anthracene,LB
+37065,0.9743392,Benzene,LB
+37065,0.04293016,Naphthalene,LB
+37065,7.269718e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.0003569147,Ammonia,TON
+37065,0.02976629,Nitrogen Oxides,TON
+37065,0.0002448887,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.0827985,Acenaphthylene,LB
+37057,0.02140252,Chrysene,LB
+37057,0.03657534,Benz[a]Anthracene,LB
+37057,1.1415468,Xylenes (Mixed Isomers),LB
+37057,0.000566152,Arsenic,LB
+37057,6.752072,Acetaldehyde,LB
+37057,136.9034,Carbon Dioxide,TON
+37057,0.04171725,PM10-Primary from certain diesel engines,TON
+37055,10.935908,Hexane,LB
+37055,0.0671572,Nickel,LB
+37055,19407.8,Carbon Dioxide,TON
+37055,0.02253045,Nitrous Oxide,TON
+37041,0.010755838,Acenaphthylene,LB
+37041,0.0012011198,Benzo[a]Pyrene,LB
+37041,0.0002409784,Nickel,LB
+37041,0.2124432,Naphthalene,LB
+37041,0.01124772,Volatile Organic Compounds,TON
+37029,53.57468,Acrolein,LB
+37029,56.83604,Propionaldehyde,LB
+37029,4.66635,Pyrene,LB
+37029,4.0885,Fluoranthene,LB
+37029,1932.5876,"2,2,4-Trimethylpentane",LB
+37029,2797.49,Benzene,LB
+37029,0.374994,Arsenic,LB
+37029,648.0426,Carbon Monoxide,TON
+37029,0.4967132,Organic Carbon portion of PM2.5-PRI,TON
+37029,1.017992,PM2.5 Primary (Filt + Cond),TON
+37107,7.670074,"2,2,4-Trimethylpentane",LB
+37101,0.0011079326,Anthracene,LB
+37101,0.0016893062,Benzo[k]Fluoranthene,LB
+37101,0.00323835,Benzo[a]Pyrene,LB
+37101,3.483448,Benzene,LB
+37093,0.0015415434,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,0.0015234072,Benzo[a]Pyrene,LB
+37093,6.09601e-06,Nitrate portion of PM2.5-PRI,TON
+37093,0.01076257,PM10 Primary (Filt + Cond),TON
+37093,7.48589e-05,Sulfate Portion of PM2.5-PRI,TON
+37177,0.0018564692,Styrene,LB
+37177,0.0013852842,Propionaldehyde,LB
+37177,9.945724e-05,"Benzo[g,h,i,]Perylene",LB
+37177,3.248434e-05,Manganese,LB
+37177,4.888614e-05,Ammonia,TON
+37177,2.331386e-05,Organic Carbon portion of PM2.5-PRI,TON
+37177,1.997883e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,1.588006e-06,Sulfate Portion of PM2.5-PRI,TON
+37175,0.00196241,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.3885412,Fluoranthene,LB
+37175,0.3605992,Acenaphthylene,LB
+37175,0.015832498,Manganese,LB
+37175,0.0015929252,Arsenic,LB
+37175,0.001331022,Nitrous Oxide,TON
+37175,0.03692185,Organic Carbon portion of PM2.5-PRI,TON
+37167,11.314116,Hexane,LB
+37167,0.017355228,"Benzo[g,h,i,]Perylene",LB
+37167,0.9322652,Benz[a]Anthracene,LB
+37167,47.04984,Naphthalene,LB
+37167,10.84778,Carbon Monoxide,TON
+37167,0.01848597,Nitrous Oxide,TON
+37167,0.1279979,Ammonia,TON
+37167,0.4066482,Organic Carbon portion of PM2.5-PRI,TON
+37165,1.556703,Manganese,LB
+37165,0.05388352,Mercury,LB
+37165,992.2715,Carbon Monoxide,TON
+37163,34.60262,Pyrene,LB
+37163,0.14747228,"Dibenzo[a,h]Anthracene",LB
+37163,20415.88,Benzene,LB
+37163,20.91834,Acenaphthene,LB
+37145,0.0012134158,"Dibenzo[a,h]Anthracene",LB
+37145,0.6491662,Phenanthrene,LB
+37139,0.006058998,"Dibenzo[a,h]Anthracene",LB
+37139,0.01421286,Nitrous Oxide,TON
+37139,8.299774,"1,3-Butadiene",LB
+37139,27.17156,Acrolein,LB
+37139,2.214052,Pyrene,LB
+37139,48.41264,Xylenes (Mixed Isomers),LB
+37139,0.04322728,Benzo[b]Fluoranthene,LB
+37139,1.3874378,Fluoranthene,LB
+37139,0.12632516,Benzo[a]Pyrene,LB
+37139,23.38248,Naphthalene,LB
+37139,0.5648351,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.1033832,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,22.6487,Ethyl Benzene,LB
+37131,77.11208,Toluene,LB
+37131,1.1459314,Anthracene,LB
+37131,2.821986,Pyrene,LB
+37131,2.21767,Fluoranthene,LB
+37131,0.155969,Benzo[a]Pyrene,LB
+37131,0.06293188,Nickel,LB
+37131,0.04780676,Arsenic,LB
+37127,1.8033902,"Benzo[g,h,i,]Perylene",LB
+37127,1039.7018,"2,2,4-Trimethylpentane",LB
+37127,1483.4606,Benzene,LB
+37127,76.54102,Naphthalene,LB
+37127,1.814037,Ammonia,TON
+37127,0.2793241,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.0503478,Arsenic,LB
+37123,50.99805,Nitrogen Oxides,TON
+37123,0.1469209,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.5832126,Benz[a]Anthracene,LB
+37123,0.150836,Manganese,LB
+37111,1.963946e-05,Mercury,LB
+37111,1.632586e-06,Nickel,LB
+37111,0.0014433068,Naphthalene,LB
+37111,0.0005699754,Sulfur Dioxide,TON
+37007,0.19061088,Benzo[a]Pyrene,LB
+37007,6.978492e-05,Mercury,LB
+37007,110.60528,Acetaldehyde,LB
+37007,1.7601706,Fluorene,LB
+37007,2844.573,Carbon Dioxide,TON
+37007,0.008729273,Nitrous Oxide,TON
+37015,729.3844,Xylenes (Mixed Isomers),LB
+37015,0.317562,"Benzo[g,h,i,]Perylene",LB
+37015,0.4961022,Fluoranthene,LB
+37015,0.6902898,Fluorene,LB
+37015,4857.301,Carbon Dioxide,TON
+37015,628.0465,Carbon Monoxide,TON
+37015,4.462854,Ammonia,TON
+37015,1659.1828,Ethyl Benzene,LB
+37015,56.48586,Styrene,LB
+37015,2.08332,Anthracene,LB
+37077,0.05839918,Propionaldehyde,LB
+37077,0.0006586134,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.4700276,Formaldehyde,LB
+37077,0.000322952,Nickel,LB
+37077,0.0004092615,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.00514873,Pyrene,LB
+37025,0.00455485,Fluoranthene,LB
+37025,0.002852376,Benz[a]Anthracene,LB
+37133,0.002102994,Anthracene,LB
+37133,5.236352,Xylenes (Mixed Isomers),LB
+37133,0.002802222,Benzo[b]Fluoranthene,LB
+37133,0.00012349142,"Dibenzo[a,h]Anthracene",LB
+37133,7.526586,Benzene,LB
+37133,0.0003471148,Mercury,LB
+37133,0.002232464,Acenaphthene,LB
+37133,0.01021637,PM2.5 Primary (Filt + Cond),TON
+37133,0.004351744,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.0011592448,Phenanthrene,LB
+37111,0.00012473,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.02731669,Nitrogen Oxides,TON
+37021,85.93742,Styrene,LB
+37021,0.001094562,Mercury,LB
+37021,19.670836,Acenaphthene,LB
+37021,1.079191,Ammonia,TON
+37021,7.661716,PM10 Primary (Filt + Cond),TON
+37013,9.386168,Ethyl Benzene,LB
+37013,19.309832,Toluene,LB
+37013,1.5325622,Pyrene,LB
+37013,0.004015848,"Benzo[g,h,i,]Perylene",LB
+37013,0.0295683,Benzo[a]Pyrene,LB
+37013,1.5894314,Fluorene,LB
+37013,0.0006084333,Nitrate portion of PM2.5-PRI,TON
+37013,0.02220025,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,714.4172,"1,3-Butadiene",LB
+37013,11948.59,Xylenes (Mixed Isomers),LB
+37013,1329.6038,Formaldehyde,LB
+37013,0.5550338,Nickel,LB
+37013,1.074825,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.7302017,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,1.361337,Sulfur Dioxide,TON
+37011,0.0002281375,Nitrous Oxide,TON
+37011,0.863899,Ethyl Benzene,LB
+37011,0.0579175,Anthracene,LB
+37011,0.1213604,Acenaphthylene,LB
+37011,0.005668354,Chrysene,LB
+37011,0.7207072,"2,2,4-Trimethylpentane",LB
+37005,0.4590426,Styrene,LB
+37005,84.93632,Toluene,LB
+37005,0.015338656,"Benzo[g,h,i,]Perylene",LB
+37005,0.004851982,Chrysene,LB
+37005,18.73275,"2,2,4-Trimethylpentane",LB
+37005,2.728234e-05,Mercury,LB
+37005,0.019397202,Acenaphthene,LB
+37005,103.1617,Carbon Dioxide,TON
+37021,0.004639104,Pyrene,LB
+37021,0.003138452,Benzo[k]Fluoranthene,LB
+37021,3.565404,Formaldehyde,LB
+37021,7.355414,Benzene,LB
+37021,26.7799,Acetaldehyde,LB
+37021,0.02075449,Methane,TON
+37013,0.2345336,Propionaldehyde,LB
+37013,0.00292577,Benz[a]Anthracene,LB
+37013,0.0001946135,Nickel,LB
+37013,0.011429328,Acenaphthene,LB
+37013,0.06195672,Phenanthrene,LB
+37013,0.001176782,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.0001024993,Sulfate Portion of PM2.5-PRI,TON
+37009,5.297976,Ethyl Benzene,LB
+37009,0.011515132,Benzo[a]Pyrene,LB
+37009,0.0004751184,"Dibenzo[a,h]Anthracene",LB
+37009,0.1375724,PM10-Primary from certain diesel engines,TON
+37009,0.0002566916,Nitrate portion of PM2.5-PRI,TON
+37005,0.2538611,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,61.59007,Volatile Organic Compounds,TON
+37005,8034.208,Xylenes (Mixed Isomers),LB
+37005,2.8314,"Benzo[g,h,i,]Perylene",LB
+37005,0.8926876,Benzo[b]Fluoranthene,LB
+37005,17.346964,Acenaphthylene,LB
+37005,1.0744882,Benzo[a]Pyrene,LB
+37005,25229.63,Carbon Dioxide,TON
+37001,0.0007412748,Pyrene,LB
+37001,0.00010922388,Chrysene,LB
+37001,0.0004985508,Arsenic,LB
+37001,0.0163975,Nitrous Oxide,TON
+37001,9.550327e-05,Sulfate Portion of PM2.5-PRI,TON
+37015,0.5000235,PM10 Primary (Filt + Cond),TON
+37015,0.3963901,PM2.5 Primary (Filt + Cond),TON
+37015,2.512576,Volatile Organic Compounds,TON
+37015,1.1863856,Anthracene,LB
+37015,23.22194,Propionaldehyde,LB
+37015,0.005627924,"Benzo[g,h,i,]Perylene",LB
+37015,10.207686,"2,2,4-Trimethylpentane",LB
+37199,7.006638e-05,Anthracene,LB
+37199,0.0001281786,Fluoranthene,LB
+37199,0.2184178,Benzene,LB
+37199,0.0002612347,Sulfur Dioxide,TON
+37199,0.0006182558,Sulfate Portion of PM2.5-PRI,TON
+37199,2.501344,Xylenes (Mixed Isomers),LB
+37199,1.067534e-05,Chromium (VI),LB
+37199,0.1299422,Acenaphthylene,LB
+37199,2.503266,Benzene,LB
+37199,0.2188126,Phenanthrene,LB
+37199,2.948344,Naphthalene,LB
+37199,0.003429418,PM25-Primary from certain diesel engines,TON
+37199,0.01092831,PM10 Primary (Filt + Cond),TON
+37197,0.00235516,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.009251718,Benzo[b]Fluoranthene,LB
+37197,0.03102924,Benzo[a]Pyrene,LB
+37197,41.49826,Acetaldehyde,LB
+37197,0.3351882,Acenaphthene,LB
+37197,0.01380186,Methane,TON
+37197,0.0005735466,Nitrate portion of PM2.5-PRI,TON
+37193,16.44911,Volatile Organic Compounds,TON
+37193,12.65705,Fluoranthene,LB
+37193,2682.992,Formaldehyde,LB
+37193,64.19098,"2,2,4-Trimethylpentane",LB
+37193,303.3308,Naphthalene,LB
+37193,2.152296,PM10-Primary from certain diesel engines,TON
+37193,2.450158,"1,3-Butadiene",LB
+37193,0.00017835102,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.3047146,Fluoranthene,LB
+37193,0.002341394,Benzo[a]Pyrene,LB
+37193,7.796516,Benzene,LB
+37193,619.7369,Carbon Dioxide,TON
+37193,0.01265926,Ammonia,TON
+37195,9.209992,Acrolein,LB
+37195,0.6581596,Fluoranthene,LB
+37195,0.0015904188,Benzo[k]Fluoranthene,LB
+37195,2.877078,"2,2,4-Trimethylpentane",LB
+37195,0.725726,Fluorene,LB
+37195,0.003174098,Nitrous Oxide,TON
+37195,0.3719829,PM10 Primary (Filt + Cond),TON
+37195,1.814468,Ammonia,TON
+37195,2.153654,PM10 Primary (Filt + Cond),TON
+37195,0.5787714,Sulfur Dioxide,TON
+37195,0.02199166,Sulfate Portion of PM2.5-PRI,TON
+37195,0.0015109656,Chromium (VI),LB
+37195,0.4645404,Benzo[b]Fluoranthene,LB
+37195,2.176856,Fluoranthene,LB
+37195,0.18886716,Nickel,LB
+37195,76.89628,Naphthalene,LB
+37191,19.026008,Ethyl Benzene,LB
+37191,8.305104,Styrene,LB
+37191,0.019670174,"Dibenzo[a,h]Anthracene",LB
+37191,0.02579848,Arsenic,LB
+37191,2.524367,PM25-Primary from certain diesel engines,TON
+37191,3.720687,PM10 Primary (Filt + Cond),TON
+37191,0.1905331,PM2.5 Primary (Filt + Cond),TON
+37191,0.13825762,Benzo[b]Fluoranthene,LB
+37191,0.13472706,Chrysene,LB
+37191,0.04443094,Manganese,LB
+37191,0.4754862,Acenaphthene,LB
+37189,980.4152,Ethyl Benzene,LB
+37189,8166.96,Toluene,LB
+37189,1444.701,Hexane,LB
+37185,10485.99,Toluene,LB
+37185,3.79526,Fluoranthene,LB
+37185,1.4159734,Benzo[a]Pyrene,LB
+37185,2281.97,"2,2,4-Trimethylpentane",LB
+37185,0.903349,Benz[a]Anthracene,LB
+37185,0.801299,Organic Carbon portion of PM2.5-PRI,TON
+37185,3.298495,PM10 Primary (Filt + Cond),TON
+37181,0.007291304,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.003192307,Sulfur Dioxide,TON
+37181,0.3524432,Hexane,LB
+37181,1.0150194,Xylenes (Mixed Isomers),LB
+37181,4.936538e-06,Chromium (VI),LB
+37181,0.00981182,Benzo[a]Pyrene,LB
+37181,0.07880598,Volatile Organic Compounds,TON
+37179,1.7468794,Ethyl Benzene,LB
+37179,2.49627,Propionaldehyde,LB
+37179,0.002383718,"Benzo[g,h,i,]Perylene",LB
+37179,0.001673243,Benzo[k]Fluoranthene,LB
+37179,0.2492154,Acenaphthylene,LB
+37179,0.0016621946,"Dibenzo[a,h]Anthracene",LB
+37179,0.1280801,Benz[a]Anthracene,LB
+37179,22.29862,Acetaldehyde,LB
+37191,20.11408,Ethyl Benzene,LB
+37191,0.0002643614,Chromium (VI),LB
+37191,0.02069526,"Benzo[g,h,i,]Perylene",LB
+37191,63.6907,Naphthalene,LB
+37191,0.005851701,Nitrate portion of PM2.5-PRI,TON
+37191,3.705228,PM10 Primary (Filt + Cond),TON
+37191,0.2026902,Sulfur Dioxide,TON
+37183,0.1201107,Chromium (VI),LB
+37183,36.8391,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.845708,"Dibenzo[a,h]Anthracene",LB
+37183,23.56148,Benz[a]Anthracene,LB
+37183,41.99222,Methane,TON
+37183,201.2043,PM10 Primary (Filt + Cond),TON
+37183,1.553222,Sulfate Portion of PM2.5-PRI,TON
+37181,1137.9232,Ethyl Benzene,LB
+37181,9478.878,Toluene,LB
+37181,33.05977,Volatile Organic Compounds,TON
+37031,1.5478716,Anthracene,LB
+37031,4.644704,Pyrene,LB
+37031,0.02792322,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.10965704,Benzo[b]Fluoranthene,LB
+37031,3.485664,Fluoranthene,LB
+37031,0.6934112,Chrysene,LB
+37031,38.0589,Benzene,LB
+37031,10.80513,Carbon Monoxide,TON
+37031,0.006375843,Nitrate portion of PM2.5-PRI,TON
+37031,0.05601797,Sulfur Dioxide,TON
+37031,0.05046908,Sulfate Portion of PM2.5-PRI,TON
+37031,0.0018072944,"Dibenzo[a,h]Anthracene",LB
+37031,26.49188,Benzene,LB
+37031,0.014955714,Arsenic,LB
+37031,2174.977,Carbon Dioxide,TON
+37031,9.47124,Ethyl Benzene,LB
+37031,20.95274,Xylenes (Mixed Isomers),LB
+37031,0.013114082,Benzo[b]Fluoranthene,LB
+37031,0.009721246,"Dibenzo[a,h]Anthracene",LB
+37031,0.0732711,Arsenic,LB
+37031,2.374439,PM10 Primary (Filt + Cond),TON
+37031,1.618536,PM2.5 Primary (Filt + Cond),TON
+37029,0.00202415,"Dibenzo[a,h]Anthracene",LB
+37029,0.07555091,Organic Carbon portion of PM2.5-PRI,TON
+37029,2.32168,Hexane,LB
+37029,3.944504e-05,Chromium (VI),LB
+37029,0.014592856,Benzo[b]Fluoranthene,LB
+37029,1.918588,Toluene,LB
+37029,0.6896932,Hexane,LB
+37029,5.58438e-06,Chromium (VI),LB
+37029,0.1467444,Acenaphthylene,LB
+37029,0.01855826,Benzo[a]Pyrene,LB
+37029,0.001651149,Sulfur Dioxide,TON
+37119,187.37444,"1,3-Butadiene",LB
+37119,16.053172,Anthracene,LB
+37119,309.833,Propionaldehyde,LB
+37119,0.09403958,"Benzo[g,h,i,]Perylene",LB
+37119,0.03484272,Benzo[k]Fluoranthene,LB
+37119,51498.4,Carbon Dioxide,TON
+37119,3.611378,Elemental Carbon portion of PM2.5-PRI,TON
+37119,6.007427,PM2.5 Primary (Filt + Cond),TON
+37101,0.0002384416,Mercury,LB
+37101,4.380118,PM2.5 Primary (Filt + Cond),TON
+37101,31.17512,Ethyl Benzene,LB
+37101,13.62394,Styrene,LB
+37101,7.476166,Fluoranthene,LB
+37091,0.5323444,Xylenes (Mixed Isomers),LB
+37091,0.0012651454,Nickel,LB
+37091,0.0004903416,Arsenic,LB
+37091,0.001506993,Sulfur Dioxide,TON
+37103,9.141674,Naphthalene,LB
+37103,2805.17,Carbon Dioxide,TON
+37103,0.2031718,Ammonia,TON
+37103,55.42192,Formaldehyde,LB
+37103,0.0367956,Manganese,LB
+37099,0.15656678,Pyrene,LB
+37099,0.0004829136,Benzo[k]Fluoranthene,LB
+37099,0.0004804292,"Dibenzo[a,h]Anthracene",LB
+37099,0.4316828,"2,2,4-Trimethylpentane",LB
+37099,0.0380574,Benz[a]Anthracene,LB
+37099,1.4960696,Benzene,LB
+37099,0.07035517,PM25-Primary from certain diesel engines,TON
+37099,0.006440429,Ammonia,TON
+37099,0.003670331,Sulfate Portion of PM2.5-PRI,TON
+37093,2.760724,Styrene,LB
+37093,109.90122,Acetaldehyde,LB
+37093,7.990864,Carbon Monoxide,TON
+37093,11791.09,Carbon Dioxide,TON
+37093,0.01407736,Nitrous Oxide,TON
+37093,1.5661516,Fluoranthene,LB
+37093,1.0972414,Acenaphthylene,LB
+37093,0.293328,Chrysene,LB
+37093,274.6204,Formaldehyde,LB
+37091,0.0008050406,Benz[a]Anthracene,LB
+37091,0.015368796,Phenanthrene,LB
+37091,0.0007990364,Benzo[b]Fluoranthene,LB
+37091,0.0010776302,Benzo[a]Pyrene,LB
+37071,1.6468238e-05,Chromium (VI),LB
+37071,1.8258234,Formaldehyde,LB
+37071,0.002058514,Nickel,LB
+37071,0.914874,Acetaldehyde,LB
+37071,0.861406,Nitrogen Oxides,TON
+37071,0.01935329,PM2.5 Primary (Filt + Cond),TON
+37069,0.01519496,Pyrene,LB
+37069,0.004194454,Manganese,LB
+37069,3.05029e-05,Mercury,LB
+37069,0.0005831862,Arsenic,LB
+37069,0.02033427,PM10 Primary (Filt + Cond),TON
+37067,3.661826,Anthracene,LB
+37067,0.005095488,Chromium (VI),LB
+37067,4.26505,Acenaphthene,LB
+37067,221.499,Naphthalene,LB
+37067,2.53857,Nitrous Oxide,TON
+37061,0.00013584874,Chromium (VI),LB
+37061,0.6351536,Fluorene,LB
+37057,150.96244,Toluene,LB
+37039,0.008441213,Carbon Monoxide,TON
+37039,4.266911e-06,Ammonia,TON
+37039,2.82635e-05,"Benzo[g,h,i,]Perylene",LB
+37039,1.0619068e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,4.716392e-07,Arsenic,LB
+37039,3.557268e-05,Fluorene,LB
+37039,0.00041936,Styrene,LB
+37039,0.00229444,"1,3-Butadiene",LB
+37043,0.010870576,"1,3-Butadiene",LB
+37043,0.3104482,Toluene,LB
+37043,8.142584e-05,Anthracene,LB
+37043,4.995228e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,3.01439e-06,Nickel,LB
+37043,0.0294373,Acetaldehyde,LB
+37043,1.523731,Carbon Dioxide,TON
+37043,1.465129e-07,Nitrate portion of PM2.5-PRI,TON
+37041,0.02965006,Chrysene,LB
+37041,0.3582232,Styrene,LB
+37041,2.148968,Toluene,LB
+37041,0.2284108,Pyrene,LB
+37041,4.70072e-06,Chromium (VI),LB
+37041,0.0011290712,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.0006063308,"Dibenzo[a,h]Anthracene",LB
+37041,2.555088,Benzene,LB
+37041,2.996172,Naphthalene,LB
+37041,0.01774801,Methane,TON
+37027,0.6383902,Anthracene,LB
+37027,1641.102,Xylenes (Mixed Isomers),LB
+37027,228.7868,Formaldehyde,LB
+37027,0.00533891,"Dibenzo[a,h]Anthracene",LB
+37027,0.19273722,Benz[a]Anthracene,LB
+37027,0.1830451,Sulfur Dioxide,TON
+37027,12.81247,Volatile Organic Compounds,TON
+37023,0.001956846,Arsenic,LB
+37023,0.309737,Phenanthrene,LB
+37023,0.1183322,PM25-Primary from certain diesel engines,TON
+37023,0.08676012,Anthracene,LB
+37197,4.895106,Styrene,LB
+37197,0.2708434,"Benzo[g,h,i,]Perylene",LB
+37197,0.07095254,Benzo[k]Fluoranthene,LB
+37197,0.002334552,"Dibenzo[a,h]Anthracene",LB
+37197,0.01237063,Nitrous Oxide,TON
+37197,0.0002902989,Nitrate portion of PM2.5-PRI,TON
+37197,0.03077487,Sulfur Dioxide,TON
+37195,0.0661087,Benzene,LB
+37195,1.2941952e-06,Arsenic,LB
+37195,0.0003544148,Phenanthrene,LB
+37195,1.146324e-05,Ammonia,TON
+37195,9.654442e-06,Sulfur Dioxide,TON
+37195,0.00885602,"1,3-Butadiene",LB
+37195,0.0012619704,Acrolein,LB
+37195,2.629542e-05,Benzo[b]Fluoranthene,LB
+37195,2.352102e-05,Chrysene,LB
+37195,28530.1,Toluene,LB
+37195,7089.56,Hexane,LB
+37195,4.248896,Benzo[a]Pyrene,LB
+37195,334.9522,Naphthalene,LB
+37195,172179.5,Carbon Dioxide,TON
+37191,0.002704374,Chrysene,LB
+37191,8.157108,Benzene,LB
+37191,0.0010471988,Arsenic,LB
+37191,0.3885746,Naphthalene,LB
+37191,0.005160285,Nitrous Oxide,TON
+37191,0.006106325,PM2.5 Primary (Filt + Cond),TON
+37187,0.02374018,Acenaphthylene,LB
+37187,0.000872805,Nickel,LB
+37187,0.01433507,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.0001415856,Nitrous Oxide,TON
+37187,0.004345666,Organic Carbon portion of PM2.5-PRI,TON
+37183,8.902666,"1,3-Butadiene",LB
+37183,148.11346,Xylenes (Mixed Isomers),LB
+37183,0.16462774,Benzo[a]Pyrene,LB
+37183,0.00382997,"Dibenzo[a,h]Anthracene",LB
+37183,78.7909,"2,2,4-Trimethylpentane",LB
+37183,0.4018764,Phenanthrene,LB
+37183,0.6399279,Methane,TON
+37183,0.1098764,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.27267,PM2.5 Primary (Filt + Cond),TON
+37183,25710.72,Carbon Monoxide,TON
+37183,2069904,Carbon Dioxide,TON
+37183,59.59135,Nitrous Oxide,TON
+37183,0.1490326,Nitrate portion of PM2.5-PRI,TON
+37183,1755.227,Volatile Organic Compounds,TON
+37183,114.51438,"Benzo[g,h,i,]Perylene",LB
+37183,29.76944,Chrysene,LB
+37183,43.07408,Benzo[a]Pyrene,LB
+37183,35749.5,Acetaldehyde,LB
+37183,207.0782,Fluorene,LB
+37183,5308.71,Naphthalene,LB
+37179,13.387058,Styrene,LB
+37179,31.4418,"1,3-Butadiene",LB
+37179,117.84514,Xylenes (Mixed Isomers),LB
+37179,0.02957464,Benzo[k]Fluoranthene,LB
+37179,34.7126,"2,2,4-Trimethylpentane",LB
+37179,0.8022268,Manganese,LB
+37179,36.54943,Carbon Monoxide,TON
+37179,0.3660246,Sulfur Dioxide,TON
+37179,6.144622,Volatile Organic Compounds,TON
+37167,2.34517,Styrene,LB
+37167,4.273848,Hexane,LB
+37167,0.12463528,Benzo[a]Pyrene,LB
+37167,0.5396998,Acenaphthene,LB
+37167,0.4073133,PM2.5 Primary (Filt + Cond),TON
+37167,0.9634765,Volatile Organic Compounds,TON
+37165,0.002807876,Phenanthrene,LB
+37165,0.02011692,Nitrogen Oxides,TON
+37165,0.0005721789,PM2.5 Primary (Filt + Cond),TON
+37165,1.6071698,Toluene,LB
+37165,1.0820984,Xylenes (Mixed Isomers),LB
+37165,0.0015776604,"Benzo[g,h,i,]Perylene",LB
+37163,76.66068,Acetaldehyde,LB
+37163,2400.458,Carbon Dioxide,TON
+37163,0.08267536,Organic Carbon portion of PM2.5-PRI,TON
+37163,10.11557,Volatile Organic Compounds,TON
+37163,500.205,"2,2,4-Trimethylpentane",LB
+37161,375.5068,Ethyl Benzene,LB
+37161,0.3332028,"Benzo[g,h,i,]Perylene",LB
+37161,0.08986584,Chrysene,LB
+37161,0.0012215388,Mercury,LB
+37161,72.09798,Acetaldehyde,LB
+37161,0.0182636,Elemental Carbon portion of PM2.5-PRI,TON
+37161,3.945204,Nitrogen Oxides,TON
+37153,0.015379036,Benzo[a]Pyrene,LB
+37153,3.213828,"2,2,4-Trimethylpentane",LB
+37153,0.017480698,Nickel,LB
+37153,0.04814539,Methane,TON
+37153,7.682433,Carbon Monoxide,TON
+37153,0.002623667,Nitrous Oxide,TON
+37153,0.1809177,PM10 Primary (Filt + Cond),TON
+37153,0.01143883,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.01327473,Manganese,LB
+37139,43.42858,Acetaldehyde,LB
+37139,0.09536443,PM25-Primary from certain diesel engines,TON
+37139,0.01901918,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.1347459,PM10 Primary (Filt + Cond),TON
+37139,0.0015145224,"Benzo[g,h,i,]Perylene",LB
+37139,0.000510927,Benzo[k]Fluoranthene,LB
+37129,0.0003986276,Mercury,LB
+37129,0.12266992,Nickel,LB
+37129,35683.81,Carbon Dioxide,TON
+37129,2.08927,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.06066403,Nitrous Oxide,TON
+37129,0.8215623,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,28.4092,Naphthalene,LB
+37131,0.1383563,Methane,TON
+37131,3412.657,Carbon Dioxide,TON
+37131,12.51416,Nitrogen Oxides,TON
+37131,0.7060584,PM2.5 Primary (Filt + Cond),TON
+37131,20.3028,Acrolein,LB
+37131,19.185152,Toluene,LB
+37131,19.734382,Xylenes (Mixed Isomers),LB
+37131,8.283764e-05,Chromium (VI),LB
+37131,1.9133028,Fluoranthene,LB
+37131,3.109172,Phenanthrene,LB
+37127,2.351502,"1,3-Butadiene",LB
+37127,2.607e-05,Chromium (VI),LB
+37127,0.0323224,Manganese,LB
+37127,0.001113051,Nitrate portion of PM2.5-PRI,TON
+37123,0.03837654,Chrysene,LB
+37123,0.05860105,Methane,TON
+37123,890.5126,Carbon Dioxide,TON
+37123,0.007090444,Nitrous Oxide,TON
+37123,0.0001627206,Nitrate portion of PM2.5-PRI,TON
+37093,1.6738398,Acetaldehyde,LB
+37093,0.001760849,PM2.5 Primary (Filt + Cond),TON
+37093,0.0008729693,Sulfur Dioxide,TON
+37093,4.024948,Ethyl Benzene,LB
+37093,7.966602,Hexane,LB
+37093,0.0011443346,Benzo[b]Fluoranthene,LB
+37085,1.6816086,"1,3-Butadiene",LB
+37085,1.489299,Hexane,LB
+37085,0.013070376,Benzo[b]Fluoranthene,LB
+37085,0.1406892,Benz[a]Anthracene,LB
+37085,0.6933716,Phenanthrene,LB
+37085,0.1594411,PM10-Primary from certain diesel engines,TON
+37085,0.3145993,Volatile Organic Compounds,TON
+37073,0.007707682,Nitrogen Oxides,TON
+37073,4.456142e-05,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.0003311784,Pyrene,LB
+37073,0.0002902308,Fluoranthene,LB
+37085,0.003799952,Acrolein,LB
+37085,0.902466,Toluene,LB
+37085,7.033312e-05,Benzo[b]Fluoranthene,LB
+37085,0.0003528802,Fluoranthene,LB
+37085,1.524658e-06,Nickel,LB
+37085,0.0778,Acetaldehyde,LB
+37085,0.0013107024,Phenanthrene,LB
+37085,2.710266e-07,Nitrate portion of PM2.5-PRI,TON
+37085,1.048316e-05,Sulfur Dioxide,TON
+37199,0.1529246,Ammonia,TON
+37199,0.2038554,Anthracene,LB
+37199,498.9556,Xylenes (Mixed Isomers),LB
+37199,0.0776392,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,83.75146,Acetaldehyde,LB
+37199,43.64239,Carbon Monoxide,TON
+37195,7.82146e-05,Mercury,LB
+37195,0.0009752354,Nickel,LB
+37195,0.0014953922,Arsenic,LB
+37195,0.003636819,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.1474516,Volatile Organic Compounds,TON
+37195,42.6148,Xylenes (Mixed Isomers),LB
+37195,7.139392,Formaldehyde,LB
+37195,0.0002694236,"Dibenzo[a,h]Anthracene",LB
+37195,0.12365844,Phenanthrene,LB
+37195,511.7674,Carbon Dioxide,TON
+37195,0.007246,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.01641432,PM2.5 Primary (Filt + Cond),TON
+37195,0.496387,Styrene,LB
+37191,128.63128,Acrolein,LB
+37191,39.92982,"2,2,4-Trimethylpentane",LB
+37191,1.2158212,Benz[a]Anthracene,LB
+37191,705.559,Acetaldehyde,LB
+37191,0.3245547,Ammonia,TON
+37191,0.08764455,Sulfur Dioxide,TON
+37181,9.39494,"2,2,4-Trimethylpentane",LB
+37181,0.00015970488,Mercury,LB
+37181,150.58966,Acetaldehyde,LB
+37181,37.78068,Naphthalene,LB
+37181,0.3079947,Organic Carbon portion of PM2.5-PRI,TON
+37181,1.597352,PM2.5 Primary (Filt + Cond),TON
+37181,0.08423542,Sulfate Portion of PM2.5-PRI,TON
+37173,0.04049552,Pyrene,LB
+37173,0.009526898,Benzo[b]Fluoranthene,LB
+37173,0.035538,Fluoranthene,LB
+37173,7.55579,Formaldehyde,LB
+37173,0.0003422368,"Dibenzo[a,h]Anthracene",LB
+37173,24.71136,Benzene,LB
+37173,1.2327684,Naphthalene,LB
+37173,0.01955585,Methane,TON
+37173,10.62268,Carbon Monoxide,TON
+37173,0.01742942,Nitrous Oxide,TON
+37173,4.564419e-05,Nitrate portion of PM2.5-PRI,TON
+37173,0.03965007,PM10 Primary (Filt + Cond),TON
+37173,0.0170532,PM2.5 Primary (Filt + Cond),TON
+37113,659.6778,Naphthalene,LB
+37113,303.1326,Styrene,LB
+37113,8787.356,Hexane,LB
+37113,260.5222,Propionaldehyde,LB
+37113,0.005580142,Chromium (VI),LB
+37113,0.6975146,Nickel,LB
+37101,152.84484,Xylenes (Mixed Isomers),LB
+37101,0.06163622,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,9.273188,Fluoranthene,LB
+37101,1664.7648,Formaldehyde,LB
+37101,0.7771082,Manganese,LB
+37101,0.19966582,Arsenic,LB
+37101,4.29863,Acenaphthene,LB
+37101,1.433852,Methane,TON
+37101,0.07271193,Nitrous Oxide,TON
+37101,0.6166667,Sulfur Dioxide,TON
+37105,5.917966,"1,3-Butadiene",LB
+37105,174.28426,Toluene,LB
+37105,44.69682,Hexane,LB
+37105,0.08657194,Pyrene,LB
+37105,0.00365822,Nickel,LB
+37105,16.105784,Acetaldehyde,LB
+37105,24.47632,Carbon Monoxide,TON
+37105,0.04496234,Ammonia,TON
+37105,0.04047086,PM2.5 Primary (Filt + Cond),TON
+37105,0.02479224,Sulfur Dioxide,TON
+37105,0.8975685,Volatile Organic Compounds,TON
+37103,6.824028e-05,Methane,TON
+37103,0.3582766,Toluene,LB
+37103,0.0002061772,Pyrene,LB
+37103,0.04079876,Formaldehyde,LB
+37097,51.12736,Styrene,LB
+37097,7142.158,Toluene,LB
+37097,42.4182,Propionaldehyde,LB
+37097,1.0040222,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,666.6796,Formaldehyde,LB
+37097,1.0037236,Benzo[a]Pyrene,LB
+37097,1.652858,Methane,TON
+37097,46775.23,Carbon Dioxide,TON
+37097,1.318732,Nitrous Oxide,TON
+37093,13.45979,Toluene,LB
+37093,0.19285168,Benzo[a]Pyrene,LB
+37093,3.820238e-05,Mercury,LB
+37093,0.02919802,Nickel,LB
+37093,0.00798785,Arsenic,LB
+37093,0.725612,Acenaphthene,LB
+37093,3124.355,Carbon Dioxide,TON
+37093,0.5824072,Elemental Carbon portion of PM2.5-PRI,TON
+37093,0.2718081,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.13726246,Anthracene,LB
+37093,0.04424776,Benzo[k]Fluoranthene,LB
+37093,0.7314316,Acenaphthylene,LB
+37093,1.931636,Nitrogen Oxides,TON
+37093,0.001774474,Sulfate Portion of PM2.5-PRI,TON
+37087,0.2669672,Hexane,LB
+37087,10.619306,Formaldehyde,LB
+37087,2.145298e-06,Mercury,LB
+37087,1.1730028,Naphthalene,LB
+37087,0.0001958404,Nitrous Oxide,TON
+37087,0.002109928,Ammonia,TON
+37085,2.456406,PM25-Primary from certain diesel engines,TON
+37085,44.17046,Acrolein,LB
+37085,36.84994,Toluene,LB
+37085,0.13545556,Benzo[b]Fluoranthene,LB
+37085,1.4752636,Benz[a]Anthracene,LB
+37081,12.809242,Styrene,LB
+37081,61.66482,Xylenes (Mixed Isomers),LB
+37081,1.747733,PM25-Primary from certain diesel engines,TON
+37077,0.08171934,Phenanthrene,LB
+37077,0.767342,Naphthalene,LB
+37077,0.01035075,Methane,TON
+37077,6.602196,Carbon Monoxide,TON
+37077,172.2575,Carbon Dioxide,TON
+37077,0.003766978,Nitrous Oxide,TON
+37077,0.02741731,PM10 Primary (Filt + Cond),TON
+37077,0.01650308,PM2.5 Primary (Filt + Cond),TON
+37077,0.004464074,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.3111845,Volatile Organic Compounds,TON
+37077,16.012772,Hexane,LB
+37077,0.3017786,Propionaldehyde,LB
+37077,37.63342,Xylenes (Mixed Isomers),LB
+37067,0.2570112,Benzo[a]Pyrene,LB
+37067,62.02284,Benzene,LB
+37067,0.02016531,Nitrous Oxide,TON
+37065,1.090329,Pyrene,LB
+37065,2.193164e-05,Chromium (VI),LB
+37065,0.5708166,Acenaphthylene,LB
+37065,0.1562099,Chrysene,LB
+37065,9.716448,Benzene,LB
+37065,1.7253446e-05,Mercury,LB
+37065,0.03828386,Methane,TON
+37065,0.1140092,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.3678306,Benzo[a]Pyrene,LB
+37065,699.1566,"2,2,4-Trimethylpentane",LB
+37065,0.2877204,Manganese,LB
+37065,0.007740438,Mercury,LB
+37065,0.1479906,Arsenic,LB
+37065,0.9666062,Acenaphthene,LB
+37065,0.3080009,Sulfur Dioxide,TON
+37065,16.55406,Volatile Organic Compounds,TON
+37065,134.3849,"1,3-Butadiene",LB
+37061,0.2428636,Ethyl Benzene,LB
+37061,0.045855,"1,3-Butadiene",LB
+37061,1.3720338,Toluene,LB
+37061,0.000856445,Fluorene,LB
+37061,5.684161e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.000234808,Ammonia,TON
+37057,0.01534473,Benzo[k]Fluoranthene,LB
+37057,29.14922,Fluorene,LB
+37057,3.168721,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.2642085,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.0011799732,Chromium (VI),LB
+37055,1.1307784,Acenaphthene,LB
+37055,2.290506,Fluorene,LB
+37055,31.47616,Nitrogen Oxides,TON
+37055,18.9222,Volatile Organic Compounds,TON
+37039,0.07540641,Carbon Monoxide,TON
+37039,0.000286877,Sulfur Dioxide,TON
+37039,0.0296096,Fluoranthene,LB
+37039,0.02130024,Acenaphthylene,LB
+37041,1.694172e-05,Chromium (VI),LB
+37041,0.0002170902,Benzo[k]Fluoranthene,LB
+37041,1.6757774,"2,2,4-Trimethylpentane",LB
+37041,0.04477156,Benz[a]Anthracene,LB
+37041,420.9194,Carbon Dioxide,TON
+37041,0.0145272,Ammonia,TON
+37041,1.32197,Nitrogen Oxides,TON
+37041,0.003873261,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,8.689594,"2,2,4-Trimethylpentane",LB
+37167,0.778297,"1,3-Butadiene",LB
+37167,5.453906,"2,2,4-Trimethylpentane",LB
+37167,0.3081618,Naphthalene,LB
+37165,0.00010016398,Benzo[b]Fluoranthene,LB
+37165,0.8817484,Carbon Monoxide,TON
+37165,0.0001164505,Nitrous Oxide,TON
+37165,8.411027e-06,Nitrate portion of PM2.5-PRI,TON
+37163,0.2112026,Toluene,LB
+37163,0.00013301432,Anthracene,LB
+37163,0.19419756,Xylenes (Mixed Isomers),LB
+37163,5.364074,Acetaldehyde,LB
+37163,0.000205251,Acenaphthene,LB
+37163,0.0011230434,Naphthalene,LB
+37163,0.4614485,Methane,TON
+37163,0.001980293,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.3450076,Manganese,LB
+37151,111.25084,Naphthalene,LB
+37151,25.31026,Carbon Monoxide,TON
+37151,0.01145453,Nitrate portion of PM2.5-PRI,TON
+37151,5.555999,Volatile Organic Compounds,TON
+37151,78.56146,Acrolein,LB
+37151,8.936364,Pyrene,LB
+37151,0.04866806,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.1424684,Acrolein,LB
+37137,22.78836,Xylenes (Mixed Isomers),LB
+37137,8.550674,"2,2,4-Trimethylpentane",LB
+37137,8.353594,Benzene,LB
+37137,0.002517724,Nitrous Oxide,TON
+37137,5.52807e-05,Sulfate Portion of PM2.5-PRI,TON
+37133,3.124654,Propionaldehyde,LB
+37133,0.465587,Fluoranthene,LB
+37133,2.71875e-05,Mercury,LB
+37133,0.012426154,Arsenic,LB
+37133,0.9929112,Acenaphthene,LB
+37133,34.25434,Naphthalene,LB
+37133,0.8214496,PM10-Primary from certain diesel engines,TON
+37133,0.2874518,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.05459172,Ammonia,TON
+37133,1.144679,PM10 Primary (Filt + Cond),TON
+37133,0.02267404,Sulfur Dioxide,TON
+37133,0.02407505,Sulfate Portion of PM2.5-PRI,TON
+37133,6.607536e-05,Chromium (VI),LB
+37133,2.392198,Fluoranthene,LB
+37133,8.107996,"2,2,4-Trimethylpentane",LB
+37131,6487.17,Toluene,LB
+37131,2906.458,Xylenes (Mixed Isomers),LB
+37115,6.910352e-05,Chrysene,LB
+37115,0.11646148,Benzene,LB
+37115,0.0006825242,Phenanthrene,LB
+37115,8.010027e-07,Nitrate portion of PM2.5-PRI,TON
+37115,0.004097272,PM2.5 Primary (Filt + Cond),TON
+37115,1.789914,Toluene,LB
+37115,1.8391806,Xylenes (Mixed Isomers),LB
+37115,0.0008541832,"Dibenzo[a,h]Anthracene",LB
+37115,0.02215687,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.1008121,PM10 Primary (Filt + Cond),TON
+37115,0.002212234,Sulfur Dioxide,TON
+37115,0.05118426,Fluoranthene,LB
+37115,10.69395,Formaldehyde,LB
+37115,0.0004480736,"Dibenzo[a,h]Anthracene",LB
+37115,0.002105246,Arsenic,LB
+37115,0.18773108,Phenanthrene,LB
+37115,0.8092768,Styrene,LB
+37115,14.49564,Carbon Monoxide,TON
+37115,0.04599207,PM10 Primary (Filt + Cond),TON
+37115,0.005983389,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.0832563,Styrene,LB
+37103,2.255182e-06,Chromium (VI),LB
+37103,0.0004541516,Arsenic,LB
+37103,2.614898,Acetaldehyde,LB
+37103,0.0030362,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.001416745,Sulfur Dioxide,TON
+37099,4.081256,Acrolein,LB
+37099,3.432016,Propionaldehyde,LB
+37099,0.08850382,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.002030546,"Dibenzo[a,h]Anthracene",LB
+37099,46.96988,Acetaldehyde,LB
+37099,55.18288,Carbon Monoxide,TON
+37099,0.0488961,Organic Carbon portion of PM2.5-PRI,TON
+37099,6.387219,Volatile Organic Compounds,TON
+37095,0.03144958,Xylenes (Mixed Isomers),LB
+37095,8.105652,Formaldehyde,LB
+37095,8.419353e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.003094815,Nitrous Oxide,TON
+37077,1.2702352,Pyrene,LB
+37077,0.180035,Chrysene,LB
+37077,0.307133,Benz[a]Anthracene,LB
+37077,0.001655532,Nitrate portion of PM2.5-PRI,TON
+37077,5.359928,Nitrogen Oxides,TON
+37075,0.0294699,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,5.919796,Acrolein,LB
+37075,14.871818,Styrene,LB
+37075,13.568042,Acrolein,LB
+37075,0.006812218,"Dibenzo[a,h]Anthracene",LB
+37075,0.006621596,Mercury,LB
+37075,0.1265974,Arsenic,LB
+37075,1.2933942,Fluorene,LB
+37075,33.16254,Naphthalene,LB
+37065,0.5413106,Anthracene,LB
+37065,0.6407018,Acenaphthene,LB
+37065,0.0469896,Ammonia,TON
+37065,5.686844e-05,Phenanthrene,LB
+37065,0.0001744823,Volatile Organic Compounds,TON
+37065,1.7912728e-05,Pyrene,LB
+37065,2.107658e-05,"Benzo[g,h,i,]Perylene",LB
+37061,1.3208598,Acrolein,LB
+37061,0.02821092,Benzo[b]Fluoranthene,LB
+37061,0.04432348,Benzo[a]Pyrene,LB
+37061,0.0010225194,"Dibenzo[a,h]Anthracene",LB
+37061,60.76464,"2,2,4-Trimethylpentane",LB
+37061,0.1084603,PM10 Primary (Filt + Cond),TON
+37053,315.593,Hexane,LB
+37053,893.811,Xylenes (Mixed Isomers),LB
+37053,0.11067674,Benzo[b]Fluoranthene,LB
+37053,0.14351896,Benzo[a]Pyrene,LB
+37053,0.003277546,"Dibenzo[a,h]Anthracene",LB
+37053,0.10307612,Manganese,LB
+37053,0.04384576,Nickel,LB
+37053,12.31713,Nitrogen Oxides,TON
+37053,0.4983109,PM10 Primary (Filt + Cond),TON
+37053,0.05570303,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.1329686,Sulfur Dioxide,TON
+37051,0.4865278,Anthracene,LB
+37051,157.83214,Formaldehyde,LB
+37049,1.430912e-05,Organic Carbon portion of PM2.5-PRI,TON
+37049,8.835444e-07,Sulfate Portion of PM2.5-PRI,TON
+37049,4.341974e-05,Pyrene,LB
+37049,0.04317318,Xylenes (Mixed Isomers),LB
+37049,0.3407182,Anthracene,LB
+37049,0.4410626,"Benzo[g,h,i,]Perylene",LB
+37049,0.1193549,Benzo[k]Fluoranthene,LB
+37049,149.75652,Formaldehyde,LB
+37049,0.003801902,"Dibenzo[a,h]Anthracene",LB
+37049,0.020394,Nickel,LB
+37049,0.8055288,Fluorene,LB
+37173,0.6575118,Arsenic,LB
+37173,5.956304,Acenaphthene,LB
+37173,0.4935919,Elemental Carbon portion of PM2.5-PRI,TON
+37173,809.7346,"1,3-Butadiene",LB
+37173,4002.626,Hexane,LB
+37173,27.12336,Acenaphthylene,LB
+37173,1879.3772,Formaldehyde,LB
+37169,18.720312,Hexane,LB
+37169,0.02039948,Pyrene,LB
+37169,0.004412978,Benzo[b]Fluoranthene,LB
+37169,0.017895944,Fluoranthene,LB
+37169,0.000411408,Arsenic,LB
+37169,4.01196,Acetaldehyde,LB
+37169,1.963859e-05,Nitrate portion of PM2.5-PRI,TON
+37169,0.001924629,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.3246551,Volatile Organic Compounds,TON
+37161,60.82202,Acrolein,LB
+37161,0.02202886,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,958.481,Formaldehyde,LB
+37161,28.86156,"2,2,4-Trimethylpentane",LB
+37161,74.55212,Benzene,LB
+37155,100.64546,Toluene,LB
+37155,66.29562,Propionaldehyde,LB
+37155,0.06994438,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.7936304,Methane,TON
+37155,29.74834,Carbon Monoxide,TON
+37155,21931.45,Carbon Dioxide,TON
+37155,3.495673,PM25-Primary from certain diesel engines,TON
+37155,1.318843,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.1704945,Sulfate Portion of PM2.5-PRI,TON
+37163,17.857772,Ethyl Benzene,LB
+37163,4.057944,"1,3-Butadiene",LB
+37163,0.02963518,Anthracene,LB
+37163,0.5709804,Propionaldehyde,LB
+37163,0.05069888,Fluoranthene,LB
+37163,18.291486,"2,2,4-Trimethylpentane",LB
+37163,0.07006584,Fluorene,LB
+37161,10.431664,Acenaphthylene,LB
+37161,0.2066268,Manganese,LB
+37161,0.2323464,Nickel,LB
+37161,5.117038,Anthracene,LB
+37161,16.169472,Phenanthrene,LB
+37161,1.050183,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.07978064,Sulfur Dioxide,TON
+37155,0.5765256,Anthracene,LB
+37155,908.5768,Benzene,LB
+37155,179.6586,Carbon Monoxide,TON
+37153,3.297875,Carbon Monoxide,TON
+37153,697.5873,Carbon Dioxide,TON
+37153,0.002981898,Nitrous Oxide,TON
+37151,20.56059,Carbon Monoxide,TON
+37151,0.07578347,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.6002745,PM10 Primary (Filt + Cond),TON
+37151,1.166368,Anthracene,LB
+37151,2.356936,Pyrene,LB
+37151,0.16055832,Chrysene,LB
+37151,11.135784,"2,2,4-Trimethylpentane",LB
+37151,0.05939056,Manganese,LB
+37135,260.0522,Acrolein,LB
+37135,15.81205,Pyrene,LB
+37135,0.062883,"Benzo[g,h,i,]Perylene",LB
+37135,0.0384018,Benzo[k]Fluoranthene,LB
+37135,3.25479,Benz[a]Anthracene,LB
+37135,14.420304,Fluorene,LB
+37135,0.08347235,Nitrous Oxide,TON
+37117,6.162442,Acrolein,LB
+37117,0.009304724,Nickel,LB
+37117,0.2081183,PM2.5 Primary (Filt + Cond),TON
+37117,0.004167515,Sulfur Dioxide,TON
+37117,0.4542995,Volatile Organic Compounds,TON
+37019,0.4232376,Anthracene,LB
+37019,0.0003362814,"Dibenzo[a,h]Anthracene",LB
+37019,0.03011332,PM25-Primary from certain diesel engines,TON
+37019,0.007428746,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.00226215,Nitrous Oxide,TON
+37019,0.01258801,Sulfur Dioxide,TON
+37003,46.66178,Carbon Dioxide,TON
+37003,0.1560453,Nitrogen Oxides,TON
+37003,4.742588,Hexane,LB
+37003,0.007652024,Pyrene,LB
+37003,0.0010696766,Benzo[k]Fluoranthene,LB
+37003,0.00127276,Benzo[a]Pyrene,LB
+37003,0.0011133246,Manganese,LB
+37001,93.95432,Xylenes (Mixed Isomers),LB
+37001,1.9993968,Benz[a]Anthracene,LB
+37015,0.003930992,Sulfur Dioxide,TON
+37015,2.253398,Benzene,LB
+37015,9.7493e-05,Mercury,LB
+37003,0.00662378,Manganese,LB
+37003,0.003291108,Arsenic,LB
+37003,0.248981,Naphthalene,LB
+37003,0.4116245,Nitrogen Oxides,TON
+37003,0.00349049,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.02925586,PM10 Primary (Filt + Cond),TON
+37003,0.4924214,Acrolein,LB
+37005,0.01388795,Volatile Organic Compounds,TON
+37143,8.045664e-05,Anthracene,LB
+37143,7.614334e-07,Chromium (VI),LB
+37143,7.114176e-05,Chrysene,LB
+37143,0.00017621132,Fluorene,LB
+37143,8.067092e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.0007321771,Sulfate Portion of PM2.5-PRI,TON
+37125,8.847262,Hexane,LB
+37125,0.04606618,"Benzo[g,h,i,]Perylene",LB
+37125,0.017307502,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.017091216,Benzo[a]Pyrene,LB
+37125,0.0183508,Fluorene,LB
+37109,0.0003670522,Acenaphthene,LB
+37109,0.00395739,PM10 Primary (Filt + Cond),TON
+37109,0.001155473,PM2.5 Primary (Filt + Cond),TON
+37109,0.01061733,Styrene,LB
+37109,0.7157664,Formaldehyde,LB
+37099,0.8549308,Formaldehyde,LB
+37099,7.184646e-05,Mercury,LB
+37099,0.0008958464,Nickel,LB
+37099,0.05090145,Nitrogen Oxides,TON
+37099,0.01534139,Styrene,LB
+37099,1.1432138,Xylenes (Mixed Isomers),LB
+37099,0.002457966,Acenaphthylene,LB
+37013,9.183208,"1,3-Butadiene",LB
+37013,23.92544,Acrolein,LB
+37013,0.00012036468,Chromium (VI),LB
+37007,4.18432e-06,Chromium (VI),LB
+37007,0.00010332952,Benzo[b]Fluoranthene,LB
+37007,0.0002897088,Elemental Carbon portion of PM2.5-PRI,TON
+37007,8.91249e-05,Nitrous Oxide,TON
+37007,0.001361987,Ammonia,TON
+37007,0.04024077,Volatile Organic Compounds,TON
+37009,0.0019597764,Benzo[k]Fluoranthene,LB
+37009,0.4468652,Acenaphthylene,LB
+37009,2.263708,"2,2,4-Trimethylpentane",LB
+37009,0.012395386,Manganese,LB
+37009,0.0019200596,Arsenic,LB
+37009,3.604562,Carbon Monoxide,TON
+37003,0.0006914554,Benzo[k]Fluoranthene,LB
+37003,0.0006897734,"Dibenzo[a,h]Anthracene",LB
+37003,0.484598,Phenanthrene,LB
+37003,5.18178,Naphthalene,LB
+37003,0.08956417,PM25-Primary from certain diesel engines,TON
+37003,0.05411684,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.007001774,Ammonia,TON
+37003,3.236271,Nitrogen Oxides,TON
+37001,0.02568614,Chrysene,LB
+37001,0.410168,"2,2,4-Trimethylpentane",LB
+37001,0.003194965,Ammonia,TON
+37001,0.001322993,Sulfur Dioxide,TON
+37057,0.04022636,Fluorene,LB
+37057,0.0001372827,Nitrate portion of PM2.5-PRI,TON
+37057,2.463165,Nitrogen Oxides,TON
+37057,1.28761,Volatile Organic Compounds,TON
+37041,0.0636049,"1,3-Butadiene",LB
+37041,0.0003779532,Anthracene,LB
+37041,0.0007769262,Pyrene,LB
+37041,0.00070238,Manganese,LB
+37041,3.456922e-05,Mercury,LB
+37041,0.000431058,Nickel,LB
+37007,0.0012208592,Pyrene,LB
+37007,0.0007254814,Benzo[b]Fluoranthene,LB
+37007,0.00230171,Manganese,LB
+37007,8.367048e-05,Mercury,LB
+37007,0.0012557742,Fluorene,LB
+37007,0.03235006,Naphthalene,LB
+37007,0.0009724319,Organic Carbon portion of PM2.5-PRI,TON
+37003,3.34216,Propionaldehyde,LB
+37003,0.05628483,PM10-Primary from certain diesel engines,TON
+37003,0.05178185,PM25-Primary from certain diesel engines,TON
+37003,0.2787576,Fluoranthene,LB
+37003,1.608918,"2,2,4-Trimethylpentane",LB
+37007,423.961,"1,3-Butadiene",LB
+37007,57.8521,Acrolein,LB
+37007,12381.532,Toluene,LB
+37007,3.715626,"Benzo[g,h,i,]Perylene",LB
+37007,2712.04,"2,2,4-Trimethylpentane",LB
+37007,1.0762224,Manganese,LB
+37007,15.383946,Phenanthrene,LB
+37007,54879.59,Carbon Dioxide,TON
+37007,39.22988,Hexane,LB
+37007,0.010262668,Benzo[b]Fluoranthene,LB
+37007,0.0002988284,"Dibenzo[a,h]Anthracene",LB
+37007,0.012060092,Manganese,LB
+37007,0.2174364,Phenanthrene,LB
+37007,0.02669944,Ammonia,TON
+37007,1.662295,Nitrogen Oxides,TON
+37007,0.0181091,PM2.5 Primary (Filt + Cond),TON
+37019,1.0445406,Acenaphthylene,LB
+37019,0.07422528,Benzo[a]Pyrene,LB
+37019,0.0030396,"Dibenzo[a,h]Anthracene",LB
+37019,0.05636629,Methane,TON
+37019,2384.486,Carbon Dioxide,TON
+37019,0.4202699,PM10-Primary from certain diesel engines,TON
+37019,0.1090641,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.6586922,PM10 Primary (Filt + Cond),TON
+37013,0.04044386,Phenanthrene,LB
+37013,4.511082,Carbon Monoxide,TON
+37013,0.2472047,Nitrogen Oxides,TON
+37013,0.01472032,PM10 Primary (Filt + Cond),TON
+37013,0.003750883,PM2.5 Primary (Filt + Cond),TON
+37013,3.868912,Ethyl Benzene,LB
+37013,0.12346088,Propionaldehyde,LB
+37013,14.184768,Xylenes (Mixed Isomers),LB
+37013,0.03395486,Acenaphthylene,LB
+37013,0.0018980782,Chrysene,LB
+37013,5.30877e-05,"Dibenzo[a,h]Anthracene",LB
+37005,0.6650916,"1,3-Butadiene",LB
+37005,0.0793036,Acrolein,LB
+37005,1.1097408e-07,Chromium (VI),LB
+37005,3.8628e-05,"Dibenzo[a,h]Anthracene",LB
+37005,1.3871556e-05,Nickel,LB
+37005,0.004845652,Acenaphthene,LB
+37005,4.48199e-06,Nitrate portion of PM2.5-PRI,TON
+37005,0.0007686523,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.000109871,Sulfur Dioxide,TON
+37199,4.633318e-07,Mercury,LB
+37199,0.02948388,Phenanthrene,LB
+37199,5.44472e-05,Nitrous Oxide,TON
+37199,0.03446014,Styrene,LB
+37199,0.07833454,"1,3-Butadiene",LB
+37199,0.008512874,Anthracene,LB
+37191,0.003169076,Acenaphthylene,LB
+37191,387.1864,Formaldehyde,LB
+37191,0.0003874572,Benz[a]Anthracene,LB
+37191,0.05968593,PM10 Primary (Filt + Cond),TON
+37189,0.402265,Acrolein,LB
+37189,0.03764726,Fluoranthene,LB
+37189,0.007886498,Chrysene,LB
+37189,21.15312,"2,2,4-Trimethylpentane",LB
+37189,0.5126743,Nitrogen Oxides,TON
+37189,0.002397761,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.0002062542,Sulfate Portion of PM2.5-PRI,TON
+37137,0.0584506,Styrene,LB
+37137,0.01133152,Acenaphthylene,LB
+37137,0.0007225692,Benzo[a]Pyrene,LB
+37137,3.4084,"2,2,4-Trimethylpentane",LB
+37127,5.038048,Manganese,LB
+37127,4.317036,Nitrous Oxide,TON
+37127,0.0194069,Nitrate portion of PM2.5-PRI,TON
+37127,177.24798,Acrolein,LB
+37127,12.514942,Fluoranthene,LB
+37111,0.0006121638,Benzo[k]Fluoranthene,LB
+37111,0.009283584,Ammonia,TON
+37111,0.1554542,PM10 Primary (Filt + Cond),TON
+37111,0.005594674,Sulfur Dioxide,TON
+37111,20.03292,Xylenes (Mixed Isomers),LB
+37111,337.9518,Formaldehyde,LB
+37111,0.2735782,Benzo[a]Pyrene,LB
+37111,0.8990582,Benz[a]Anthracene,LB
+37111,1.1826538,Acenaphthene,LB
+37111,38.42762,Nitrogen Oxides,TON
+37111,2.040837,Volatile Organic Compounds,TON
+37119,410.5412,Toluene,LB
+37119,0.07630528,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.0006368634,Mercury,LB
+37119,0.007940974,Nickel,LB
+37119,0.9698478,Phenanthrene,LB
+37119,0.05806756,Methane,TON
+37113,3262.251,Carbon Dioxide,TON
+37113,1.392105,PM10 Primary (Filt + Cond),TON
+37113,0.02047653,Sulfate Portion of PM2.5-PRI,TON
+37113,12.431362,Propionaldehyde,LB
+37113,1.902931,Fluoranthene,LB
+37113,1.306458,Acenaphthylene,LB
+37113,0.618121,Benz[a]Anthracene,LB
+37113,4.249812e-05,Mercury,LB
+37113,0.03417064,Nickel,LB
+37113,0.05591649,Methane,TON
+37109,7.90532,Anthracene,LB
+37109,15.562644,Pyrene,LB
+37109,0.00994991,"Dibenzo[a,h]Anthracene",LB
+37109,266.1632,Benzene,LB
+37107,0.00015710472,Chromium (VI),LB
+37107,0.07005362,Benzo[b]Fluoranthene,LB
+37107,0.00018350344,Mercury,LB
+37107,1.1167588,Acenaphthene,LB
+37107,1.661449,PM2.5 Primary (Filt + Cond),TON
+37103,366.4353,Carbon Dioxide,TON
+37103,0.002132639,Elemental Carbon portion of PM2.5-PRI,TON
+37103,3.186568e-05,Nitrate portion of PM2.5-PRI,TON
+37103,12.122294,Ethyl Benzene,LB
+37103,0.4322274,Styrene,LB
+37103,44.89418,Xylenes (Mixed Isomers),LB
+37103,9.977452e-06,Chromium (VI),LB
+37103,0.02736166,Fluoranthene,LB
+37103,5.901968,Formaldehyde,LB
+37103,299.4906,Xylenes (Mixed Isomers),LB
+37103,0.03324438,Benzo[a]Pyrene,LB
+37103,17.553984,Acetaldehyde,LB
+37103,21.6328,Carbon Monoxide,TON
+37103,0.0325087,PM2.5 Primary (Filt + Cond),TON
+37095,5.02304e-05,Chromium (VI),LB
+37095,0.872884,Fluoranthene,LB
+37095,0.6741588,Acenaphthene,LB
+37095,0.1288205,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.04097255,Ammonia,TON
+37095,1.167783,Volatile Organic Compounds,TON
+37083,17.079888,Hexane,LB
+37083,0.0003279634,Mercury,LB
+37083,0.4139251,Methane,TON
+37083,2.14978,Elemental Carbon portion of PM2.5-PRI,TON
+37083,3.678743,Volatile Organic Compounds,TON
+37083,8.662838,Styrene,LB
+37083,9.17964,Styrene,LB
+37083,17.096568,Hexane,LB
+37083,2.309358,Anthracene,LB
+37083,49.78648,Xylenes (Mixed Isomers),LB
+37083,17.434118,"2,2,4-Trimethylpentane",LB
+37083,291.315,Acetaldehyde,LB
+37083,2.116024,Acenaphthene,LB
+37083,1.844094,PM25-Primary from certain diesel engines,TON
+37087,2.870326,Styrene,LB
+37087,0.2176078,Pyrene,LB
+37087,0.0721733,Benzo[k]Fluoranthene,LB
+37087,40.53852,Formaldehyde,LB
+37087,0.002865076,"Dibenzo[a,h]Anthracene",LB
+37087,90.74192,"2,2,4-Trimethylpentane",LB
+37087,0.2490088,Fluorene,LB
+37087,6.082071,Nitrogen Oxides,TON
+37087,0.03996846,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.000588744,Chromium (VI),LB
+37083,0.14381794,Manganese,LB
+37083,0.07359238,Nickel,LB
+37083,24.46379,Nitrogen Oxides,TON
+37071,0.3520644,Methane,TON
+37071,4.079868,Elemental Carbon portion of PM2.5-PRI,TON
+37071,1.693875,Organic Carbon portion of PM2.5-PRI,TON
+37071,9.363553,PM10 Primary (Filt + Cond),TON
+37071,7.954808,Volatile Organic Compounds,TON
+37071,5.218002,Anthracene,LB
+37071,15.440738,Pyrene,LB
+37069,17.015258,Toluene,LB
+37069,0.007119112,Pyrene,LB
+37069,0.0019720826,Manganese,LB
+37069,1.3809138,Acetaldehyde,LB
+37069,0.2219392,Naphthalene,LB
+37069,98.38915,Carbon Dioxide,TON
+37069,0.000986005,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.926096,Ethyl Benzene,LB
+37055,2.104408,Toluene,LB
+37055,1.3915262,Propionaldehyde,LB
+37055,0.006827318,Benzo[b]Fluoranthene,LB
+37055,0.0729245,Benz[a]Anthracene,LB
+37055,0.07676645,PM10-Primary from certain diesel engines,TON
+37051,0.4545958,Nitrogen Oxides,TON
+37051,0.00354864,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.00772101,PM2.5 Primary (Filt + Cond),TON
+37051,9.973158,Toluene,LB
+37051,0.003712596,Anthracene,LB
+37051,0.0588451,Propionaldehyde,LB
+37051,0.00666985,Fluoranthene,LB
+37051,0.002834744,Benz[a]Anthracene,LB
+37051,0.8580674,Acetaldehyde,LB
+37051,0.02306392,Phenanthrene,LB
+37039,0.002312274,"Dibenzo[a,h]Anthracene",LB
+37039,0.948764,Phenanthrene,LB
+37039,0.2095844,PM10-Primary from certain diesel engines,TON
+37041,202.7687,Carbon Dioxide,TON
+37041,0.2574806,Styrene,LB
+37041,0.10012658,Fluoranthene,LB
+37041,7.720144,Acetaldehyde,LB
+37041,1.9500768,Naphthalene,LB
+37037,0.13277316,Styrene,LB
+37037,5.431836,Hexane,LB
+37037,0.002515402,Chrysene,LB
+37037,0.00011359042,"Dibenzo[a,h]Anthracene",LB
+37037,6.260992,Benzene,LB
+37037,0.001999015,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,10807,Carbon Dioxide,TON
+37037,0.3123868,PM2.5 Primary (Filt + Cond),TON
+37037,0.15357486,Manganese,LB
+37037,0.11652854,Arsenic,LB
+37031,5.218144,Ethyl Benzene,LB
+37031,0.04803732,Acenaphthylene,LB
+37031,0.0007364124,Arsenic,LB
+37031,0.05721196,Phenanthrene,LB
+37031,0.5479372,Naphthalene,LB
+37031,0.00555989,Ammonia,TON
+37031,0.002356038,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.1540675,Volatile Organic Compounds,TON
+37029,0.002130463,Methane,TON
+37029,0.00010269738,Benzo[k]Fluoranthene,LB
+37029,0.004776298,Chrysene,LB
+37029,64.62644,Ethyl Benzene,LB
+37029,8.881816e-05,Chromium (VI),LB
+37029,76.45942,"2,2,4-Trimethylpentane",LB
+37029,1593.328,Carbon Dioxide,TON
+37029,0.02156295,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.04539732,PM2.5 Primary (Filt + Cond),TON
+37025,0.2479228,Nickel,LB
+37025,10.286336,Phenanthrene,LB
+37025,2.17147,Ammonia,TON
+37025,0.4539893,Organic Carbon portion of PM2.5-PRI,TON
+37025,3.647137,PM10 Primary (Filt + Cond),TON
+37025,273.6014,"1,3-Butadiene",LB
+37025,0.5478208,Benz[a]Anthracene,LB
+37025,0.019884104,Mercury,LB
+37023,2.042634,Ethyl Benzene,LB
+37023,26.35606,Acetaldehyde,LB
+37023,0.18563,Acenaphthene,LB
+37169,0.0006423442,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.3843296,Ethyl Benzene,LB
+37169,0.07135734,Acrolein,LB
+37169,0.0004727156,Chrysene,LB
+37169,0.0006578118,Nickel,LB
+37169,0.03325838,Naphthalene,LB
+37107,0.0004845232,Anthracene,LB
+37107,0.12353634,Propionaldehyde,LB
+37107,0.0005009694,Chrysene,LB
+37107,2.92853e-05,"Dibenzo[a,h]Anthracene",LB
+37107,0.002099284,Manganese,LB
+37107,0.0005124852,Acenaphthene,LB
+37107,0.0003376628,Elemental Carbon portion of PM2.5-PRI,TON
+37107,5.005587e-06,Nitrate portion of PM2.5-PRI,TON
+37107,6.253475e-05,Sulfate Portion of PM2.5-PRI,TON
+37175,1.5629672e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,3.58979e-07,"Dibenzo[a,h]Anthracene",LB
+37175,0.0466015,Benzene,LB
+37175,1.620516e-05,PM2.5 Primary (Filt + Cond),TON
+37171,0.18711606,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.13283428,Benzo[k]Fluoranthene,LB
+37171,1.9582724,Acenaphthylene,LB
+37171,0.13167408,Benz[a]Anthracene,LB
+37171,0.03282382,Arsenic,LB
+37171,96.9279,Acetaldehyde,LB
+37171,0.273061,PM10 Primary (Filt + Cond),TON
+37161,0.45881,Chrysene,LB
+37161,4.584756,Phenanthrene,LB
+37159,18.810868,"1,3-Butadiene",LB
+37159,0.12439956,Anthracene,LB
+37159,0.04653352,Benzo[k]Fluoranthene,LB
+37159,152.37486,Benzene,LB
+37159,0.005512708,Nickel,LB
+37159,7.523992,Naphthalene,LB
+37159,60.00469,Carbon Monoxide,TON
+37159,0.0698877,Ammonia,TON
+37159,0.0002085311,Nitrate portion of PM2.5-PRI,TON
+37161,117.28056,Acrolein,LB
+37161,109.40444,Propionaldehyde,LB
+37161,0.06827616,"Dibenzo[a,h]Anthracene",LB
+37161,5709.788,"2,2,4-Trimethylpentane",LB
+37161,1.933137,Benz[a]Anthracene,LB
+37161,1276.959,Carbon Monoxide,TON
+37161,0.009629768,Nitrate portion of PM2.5-PRI,TON
+37155,47.48392,Fluoranthene,LB
+37155,14.95109,PM2.5 Primary (Filt + Cond),TON
+37153,0.003559002,Benzo[k]Fluoranthene,LB
+37153,0.003486682,Benz[a]Anthracene,LB
+37153,5.3194,Ethyl Benzene,LB
+37153,19.471284,Xylenes (Mixed Isomers),LB
+37153,0.00517607,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.0107391,Acenaphthene,LB
+37153,0.05849804,Phenanthrene,LB
+37153,0.5577852,Naphthalene,LB
+37153,5.436258,Carbon Monoxide,TON
+37153,0.1551728,Volatile Organic Compounds,TON
+37151,98.85704,Hexane,LB
+37151,37.6682,Benzene,LB
+37151,55.68432,Xylenes (Mixed Isomers),LB
+37151,0.00872314,Benzo[k]Fluoranthene,LB
+37151,8.76682,Formaldehyde,LB
+37151,8.74442e-05,Mercury,LB
+37151,0.007410076,Organic Carbon portion of PM2.5-PRI,TON
+37007,5.06349,Phenanthrene,LB
+37007,0.6593225,PM10 Primary (Filt + Cond),TON
+37007,3.347258,Volatile Organic Compounds,TON
+37007,0.015496958,Benzo[b]Fluoranthene,LB
+37007,2.570868,Fluoranthene,LB
+37007,0.05195128,Benzo[a]Pyrene,LB
+37007,0.02398986,Arsenic,LB
+37019,21.52116,Toluene,LB
+37019,0.08005796,Benzo[b]Fluoranthene,LB
+37019,1.8175388,Acenaphthylene,LB
+37019,1.0810678,Acenaphthene,LB
+37019,0.8561951,PM25-Primary from certain diesel engines,TON
+37011,8.227236,Toluene,LB
+37011,0.003871338,Pyrene,LB
+37011,0.0006914068,Benzo[b]Fluoranthene,LB
+37011,0.0009587678,Benzo[a]Pyrene,LB
+37011,1.6460026e-05,Arsenic,LB
+37011,0.0009801477,Nitrous Oxide,TON
+37009,0.07939301,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,9.178222,Propionaldehyde,LB
+37009,0.007893086,"Benzo[g,h,i,]Perylene",LB
+37009,0.005262002,"Dibenzo[a,h]Anthracene",LB
+37009,0.0069083,Arsenic,LB
+37009,0.7669494,PM2.5 Primary (Filt + Cond),TON
+37003,27.54824,Xylenes (Mixed Isomers),LB
+37003,0.0004799049,Ammonia,TON
+37003,1.104268e-05,Nitrate portion of PM2.5-PRI,TON
+37003,0.0007501487,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.0009105316,Nickel,LB
+37085,9.544426,Acetaldehyde,LB
+37085,1.8977096,Toluene,LB
+37085,0.0007267242,Anthracene,LB
+37085,0.001355392,Fluoranthene,LB
+37061,7.864138e-05,"Dibenzo[a,h]Anthracene",LB
+37061,0.0015443316,Benz[a]Anthracene,LB
+37061,0.003768754,Arsenic,LB
+37061,16.55001,Acetaldehyde,LB
+37061,0.002980408,Fluorene,LB
+37061,1.183921e-05,Nitrate portion of PM2.5-PRI,TON
+37061,0.0001378363,Sulfate Portion of PM2.5-PRI,TON
+37013,14.319666,Toluene,LB
+37199,0.05940352,Pyrene,LB
+37199,0.03269522,Acenaphthylene,LB
+37199,6.350422,Formaldehyde,LB
+37199,0.004266644,Benzo[a]Pyrene,LB
+37199,2.706784,Acetaldehyde,LB
+37199,0.003365064,Methane,TON
+37199,0.2163779,Carbon Monoxide,TON
+37199,0.0288057,PM10-Primary from certain diesel engines,TON
+37199,0.01722722,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.03923369,PM10 Primary (Filt + Cond),TON
+37199,4.17787e-06,Acenaphthene,LB
+37199,6.563992e-09,Nitrate portion of PM2.5-PRI,TON
+37199,0.0001432808,Nitrogen Oxides,TON
+37199,0.003221876,"2,2,4-Trimethylpentane",LB
+37199,1.4739348e-06,Benz[a]Anthracene,LB
+37199,7.886072e-05,Acrolein,LB
+37199,6.155986e-06,"Benzo[g,h,i,]Perylene",LB
+37199,1.5279712e-06,Benzo[b]Fluoranthene,LB
+37199,0.0013047376,Formaldehyde,LB
+37193,0.07636424,Propionaldehyde,LB
+37193,0.0015696168,"Benzo[g,h,i,]Perylene",LB
+37193,0.0005335808,Fluoranthene,LB
+37193,0.0005824194,Benzo[a]Pyrene,LB
+37193,0.000281448,Nickel,LB
+37193,0.0003168006,Acenaphthene,LB
+37193,0.002505092,Methane,TON
+37193,0.0007851247,Nitrous Oxide,TON
+37193,37.33792,Pyrene,LB
+37193,32.71388,Fluoranthene,LB
+37193,5.84212,Benz[a]Anthracene,LB
+37193,1.1332938,Nickel,LB
+37185,0.12286562,Ethyl Benzene,LB
+37185,0.0001622312,Ammonia,TON
+37187,1.1648322,Ethyl Benzene,LB
+37187,2.764298,Acrolein,LB
+37187,0.09421088,Anthracene,LB
+37187,0.003029448,Benzo[a]Pyrene,LB
+37187,0.01373637,Methane,TON
+37187,0.002132921,Sulfur Dioxide,TON
+37187,0.0009259332,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.0006485834,Benzo[b]Fluoranthene,LB
+37187,0.0007353966,Manganese,LB
+37187,0.001136151,Nitrous Oxide,TON
+37187,3.196228e-06,Nitrate portion of PM2.5-PRI,TON
+37187,0.244774,"1,3-Butadiene",LB
+37179,0.271279,Acrolein,LB
+37179,3.148464e-05,Chromium (VI),LB
+37179,3.263886,"2,2,4-Trimethylpentane",LB
+37177,0.005601306,Xylenes (Mixed Isomers),LB
+37177,9.977936e-07,Benzo[k]Fluoranthene,LB
+37177,0.0007832026,Formaldehyde,LB
+37177,9.486358e-07,Benz[a]Anthracene,LB
+37177,3.246712e-09,Mercury,LB
+37177,1.3498432e-05,Phenanthrene,LB
+37177,0.008715888,Toluene,LB
+37177,0.0212177,Carbon Dioxide,TON
+37177,1.271905e-06,Nitrous Oxide,TON
+37177,4.490275e-09,Nitrate portion of PM2.5-PRI,TON
+37177,3.891988e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,4.44931e-07,Sulfur Dioxide,TON
+37197,1.2110576,Ethyl Benzene,LB
+37197,1.1277214,Hexane,LB
+37197,1.009208,Benzene,LB
+37187,0.02673026,Benzo[b]Fluoranthene,LB
+37187,0.1401837,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.1274581,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.337778,PM2.5 Primary (Filt + Cond),TON
+37187,0.7175663,Volatile Organic Compounds,TON
+37183,0.394525,Styrene,LB
+37183,0.03172074,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.01259195,Chrysene,LB
+37183,20.83196,Formaldehyde,LB
+37183,160.39896,Acetaldehyde,LB
+37183,0.07805142,Phenanthrene,LB
+37183,0.02762784,Fluorene,LB
+37177,0.03037392,Ethyl Benzene,LB
+37177,0.04864332,Propionaldehyde,LB
+37177,2.60266e-05,"Dibenzo[a,h]Anthracene",LB
+37177,1.9820746e-07,Mercury,LB
+37177,0.0003391375,Methane,TON
+37177,0.01861338,Carbon Monoxide,TON
+37177,0.0009878617,Elemental Carbon portion of PM2.5-PRI,TON
+37193,7227.332,Xylenes (Mixed Isomers),LB
+37181,3.922494,"2,2,4-Trimethylpentane",LB
+37023,0.04467414,Benzo[a]Pyrene,LB
+37023,0.3902228,Acenaphthene,LB
+37023,0.1515623,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.0008138162,Nitrate portion of PM2.5-PRI,TON
+37023,0.6833922,Volatile Organic Compounds,TON
+37173,5.289068,"1,3-Butadiene",LB
+37173,13.88025,Toluene,LB
+37173,0.006242028,"Benzo[g,h,i,]Perylene",LB
+37173,1.1351888,Fluoranthene,LB
+37173,0.533751,Acenaphthene,LB
+37173,0.001699471,Nitrate portion of PM2.5-PRI,TON
+37167,0.00015885532,Chromium (VI),LB
+37167,0.2194184,Benzo[a]Pyrene,LB
+37167,0.00907529,"Dibenzo[a,h]Anthracene",LB
+37167,0.06832992,Nickel,LB
+37167,2.330116,PM10 Primary (Filt + Cond),TON
+37139,5.798428,Ethyl Benzene,LB
+37139,0.13761462,Acrolein,LB
+37139,35.36204,Toluene,LB
+37139,0.014554996,Pyrene,LB
+37139,0.002430304,Chrysene,LB
+37139,0.00873428,Acenaphthene,LB
+37139,0.00337134,PM2.5 Primary (Filt + Cond),TON
+37131,0.2090364,Styrene,LB
+37131,0.01601414,Pyrene,LB
+37131,0.005032556,Benzo[a]Pyrene,LB
+37131,0.004959371,Nitrous Oxide,TON
+37125,0.03884316,Manganese,LB
+37125,11.018016,Propionaldehyde,LB
+37125,1.7971924,Pyrene,LB
+37125,0.004797484,Benzo[k]Fluoranthene,LB
+37113,21.59926,Toluene,LB
+37113,2.051106,Fluoranthene,LB
+37113,0.1974424,Benzo[a]Pyrene,LB
+37113,26.46044,Benzene,LB
+37113,7.193608e-05,Mercury,LB
+37113,0.03606044,Nickel,LB
+37113,0.015040298,Arsenic,LB
+37113,0.7067305,PM10-Primary from certain diesel engines,TON
+37113,0.6861749,PM2.5 Primary (Filt + Cond),TON
+37109,0.0547239,Benz[a]Anthracene,LB
+37109,0.7477764,Ethyl Benzene,LB
+37109,0.1071935,PM25-Primary from certain diesel engines,TON
+37109,0.01562641,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.02025348,Chrysene,LB
+37105,0.457275,"1,3-Butadiene",LB
+37105,1.2052494,Acrolein,LB
+37105,5.941854e-06,Chromium (VI),LB
+37105,6.79126,Acetaldehyde,LB
+37105,0.007410797,Ammonia,TON
+37105,0.0001870451,Nitrate portion of PM2.5-PRI,TON
+37105,0.08578772,Volatile Organic Compounds,TON
+37097,0.9184996,Hexane,LB
+37097,0.6668777,Carbon Monoxide,TON
+37095,0.00912419,Acenaphthylene,LB
+37095,0.002362488,Chrysene,LB
+37095,0.0012253076,Benzo[a]Pyrene,LB
+37095,0.04501548,"2,2,4-Trimethylpentane",LB
+37095,0.000304734,Nickel,LB
+37095,0.74974,Acetaldehyde,LB
+37095,0.011267,PM10 Primary (Filt + Cond),TON
+37095,0.008005628,PM2.5 Primary (Filt + Cond),TON
+37089,628.3638,Ethyl Benzene,LB
+37089,4598.352,Toluene,LB
+37089,0.14520228,Chrysene,LB
+37089,1023.9108,"2,2,4-Trimethylpentane",LB
+37089,0.001867553,Mercury,LB
+37089,0.03570468,Arsenic,LB
+37089,2980.474,Carbon Dioxide,TON
+37079,0.13601074,Benz[a]Anthracene,LB
+37079,0.010657436,Manganese,LB
+37079,2.029721,Carbon Monoxide,TON
+37079,0.002825486,Sulfate Portion of PM2.5-PRI,TON
+37079,3.597668,Xylenes (Mixed Isomers),LB
+37079,0.4309252,Fluoranthene,LB
+37079,0.001673964,Benzo[k]Fluoranthene,LB
+37079,0.3102904,Acenaphthylene,LB
+37075,0.07873706,Fluorene,LB
+37075,46.82234,Ethyl Benzene,LB
+37075,81.99308,Hexane,LB
+37075,174.90336,Xylenes (Mixed Isomers),LB
+37059,1.687977,Anthracene,LB
+37059,0.02642362,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,13.161542,"2,2,4-Trimethylpentane",LB
+37059,3.389136,Fluorene,LB
+37059,0.5616126,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.3564398,Hexane,LB
+37059,0.003977442,Mercury,LB
+37059,0.0006919582,Nitrate portion of PM2.5-PRI,TON
+37059,10.40916,Volatile Organic Compounds,TON
+37059,11.950744,Acrolein,LB
+37059,431.955,"2,2,4-Trimethylpentane",LB
+37057,789.82,Acrolein,LB
+37057,36.88866,Anthracene,LB
+37057,43.57012,"Benzo[g,h,i,]Perylene",LB
+37057,4.572466,Arsenic,LB
+37057,35.52123,PM10 Primary (Filt + Cond),TON
+37055,7.871274,Toluene,LB
+37055,0.43144,Anthracene,LB
+37055,6.290416,Propionaldehyde,LB
+37055,7.769782,Xylenes (Mixed Isomers),LB
+37055,1.7383598e-05,Mercury,LB
+37055,0.002991696,Anthracene,LB
+37055,2.413204e-06,Chromium (VI),LB
+37055,0.015961074,Acenaphthylene,LB
+37055,3.830224,Benzene,LB
+37055,0.00077685,Organic Carbon portion of PM2.5-PRI,TON
+37043,77.21736,Propionaldehyde,LB
+37043,5.452322,Fluoranthene,LB
+37043,0.9374782,Chrysene,LB
+37043,1174.6256,Formaldehyde,LB
+37043,0.2158866,Nickel,LB
+37043,719.2535,Carbon Monoxide,TON
+37033,0.1550076,Styrene,LB
+37033,0.01108697,Pyrene,LB
+37033,1.3534288e-06,Chromium (VI),LB
+37033,7.349724,"2,2,4-Trimethylpentane",LB
+37033,1.3567862e-05,Mercury,LB
+37033,2.108942,Acetaldehyde,LB
+37033,54.88846,Carbon Dioxide,TON
+37033,0.001190689,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,29.77222,Hexane,LB
+37025,29.456,"2,2,4-Trimethylpentane",LB
+37025,3.544553,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.2606781,Ammonia,TON
+37025,106.5978,Nitrogen Oxides,TON
+37025,1.493118,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.1781893,Sulfur Dioxide,TON
+37027,3.406534,Methane,TON
+37027,173.38818,Styrene,LB
+37027,6.377192,Anthracene,LB
+37027,9.559498,"Benzo[g,h,i,]Perylene",LB
+37027,2.466292,Benzo[b]Fluoranthene,LB
+37027,10.949502,Fluoranthene,LB
+37027,0.01262024,Nitrate portion of PM2.5-PRI,TON
+37027,1.921963,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,162.9492,Volatile Organic Compounds,TON
+37023,56.63236,Toluene,LB
+37023,0.0002629968,Chromium (VI),LB
+37023,19.044548,"2,2,4-Trimethylpentane",LB
+37023,62.1757,Benzene,LB
+37023,3.044732,PM2.5 Primary (Filt + Cond),TON
+37023,0.1904833,Sulfate Portion of PM2.5-PRI,TON
+37179,0.03044596,Chrysene,LB
+37179,0.0007860108,"Dibenzo[a,h]Anthracene",LB
+37179,91.83142,Hexane,LB
+37179,2.007782,Propionaldehyde,LB
+37179,0.03625191,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,5.271635,PM10 Primary (Filt + Cond),TON
+37171,0.2954662,Sulfur Dioxide,TON
+37171,0.239957,Sulfate Portion of PM2.5-PRI,TON
+37171,82.78876,Benzene,LB
+37171,0.0004559352,Mercury,LB
+37171,0.7234151,Methane,TON
+37171,34734.9,Carbon Dioxide,TON
+37171,3.911457,PM10-Primary from certain diesel engines,TON
+37171,101.6874,Nitrogen Oxides,TON
+37149,0.3880614,Hexane,LB
+37149,0.0006572948,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,15.448042,Formaldehyde,LB
+37149,0.0003562636,"Dibenzo[a,h]Anthracene",LB
+37149,0.01298811,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.003218017,Sulfate Portion of PM2.5-PRI,TON
+37161,4.74203,Toluene,LB
+37161,0.002533684,Pyrene,LB
+37161,0.0008000222,Benz[a]Anthracene,LB
+37161,0.02409507,Volatile Organic Compounds,TON
+37147,0.002295568,Acenaphthene,LB
+37147,0.0001668629,Ammonia,TON
+37147,0.04523042,Nitrogen Oxides,TON
+37147,1.8854754,Hexane,LB
+37147,0.000868837,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.0006469196,Benzo[b]Fluoranthene,LB
+37147,0.003351596,Fluoranthene,LB
+37147,1.866691,"2,2,4-Trimethylpentane",LB
+37147,0.6283998,Styrene,LB
+37147,0.6506358,Acrolein,LB
+37147,0.0246357,Anthracene,LB
+37147,52.4986,Xylenes (Mixed Isomers),LB
+37147,1.12271e-05,Chromium (VI),LB
+37147,0.010747594,Benzo[a]Pyrene,LB
+37147,14.072084,"2,2,4-Trimethylpentane",LB
+37147,0.002151946,Arsenic,LB
+37147,0.02881916,Acenaphthene,LB
+37147,14.45111,Carbon Monoxide,TON
+37147,0.002362532,Elemental Carbon portion of PM2.5-PRI,TON
+37147,4.507637e-05,Nitrate portion of PM2.5-PRI,TON
+37147,0.08691624,PM10 Primary (Filt + Cond),TON
+37147,0.01972518,PM2.5 Primary (Filt + Cond),TON
+37143,0.2162104,Hexane,LB
+37143,2.413942e-07,Mercury,LB
+37143,0.012232904,Naphthalene,LB
+37143,3.529555e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37143,5.2435e-05,Nitrous Oxide,TON
+37143,0.004540488,Volatile Organic Compounds,TON
+37131,1.2378256,Propionaldehyde,LB
+37131,1.7649702,Xylenes (Mixed Isomers),LB
+37131,0.0008036812,"Dibenzo[a,h]Anthracene",LB
+37131,0.17104016,Fluorene,LB
+37131,2.615008,Naphthalene,LB
+37131,0.5348168,Carbon Monoxide,TON
+37131,0.06871301,PM25-Primary from certain diesel engines,TON
+37131,0.7999394,Ethyl Benzene,LB
+37111,0.13196814,Pyrene,LB
+37111,3.965778e-05,Chromium (VI),LB
+37111,0.06848356,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.11597424,Fluoranthene,LB
+37111,0.0015716378,"Dibenzo[a,h]Anthracene",LB
+37111,23.75738,Acetaldehyde,LB
+37111,0.01255992,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.05121401,Nitrous Oxide,TON
+37111,0.07436717,PM2.5 Primary (Filt + Cond),TON
+37119,29.23236,Ethyl Benzene,LB
+37119,157.08446,Toluene,LB
+37119,0.09561036,Pyrene,LB
+37119,19.25359,Formaldehyde,LB
+37119,2.864042,Naphthalene,LB
+37119,0.008284193,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.09401573,Ammonia,TON
+37119,0.04828803,Sulfur Dioxide,TON
+37109,0.00017388522,Acenaphthene,LB
+37109,0.2948616,Nitrogen Oxides,TON
+37109,0.003256086,Manganese,LB
+37109,0.18460734,Acrolein,LB
+37109,0.002457178,"Benzo[g,h,i,]Perylene",LB
+37109,0.8778566,Fluoranthene,LB
+37109,0.1218228,Methane,TON
+37109,0.03773222,PM10-Primary from certain diesel engines,TON
+37109,8.870592,Acrolein,LB
+37109,2.109434,Acenaphthylene,LB
+37109,0.13051782,Chrysene,LB
+37109,0.03568304,Manganese,LB
+37109,2916.279,Carbon Dioxide,TON
+37107,0.0008081824,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.0032775,Ammonia,TON
+37107,0.3324715,Volatile Organic Compounds,TON
+37107,0.00946511,"Benzo[g,h,i,]Perylene",LB
+37107,0.00290172,Benzo[k]Fluoranthene,LB
+37107,3.768764,Formaldehyde,LB
+37097,4.827036,Anthracene,LB
+37097,14.18483,Pyrene,LB
+37097,0.0002807014,Mercury,LB
+37097,0.05868926,Arsenic,LB
+37097,0.4555507,Methane,TON
+37097,6.535863,PM2.5 Primary (Filt + Cond),TON
+37099,12.317746,"1,3-Butadiene",LB
+37099,47.58208,Toluene,LB
+37099,529.5126,Formaldehyde,LB
+37099,0.02388107,Nitrous Oxide,TON
+37099,0.2347972,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.1965689,Sulfur Dioxide,TON
+37099,0.194119,Sulfate Portion of PM2.5-PRI,TON
+37089,0.4836931,Nitrogen Oxides,TON
+37089,0.02957732,PM10 Primary (Filt + Cond),TON
+37089,0.004935702,Sulfur Dioxide,TON
+37089,0.234276,Styrene,LB
+37089,0.2034494,Acrolein,LB
+37089,35.0092,Toluene,LB
+37089,0.18755028,Propionaldehyde,LB
+37137,41.2086,Acetaldehyde,LB
+37137,0.005001148,Nitrous Oxide,TON
+37137,0.0008654005,Nitrate portion of PM2.5-PRI,TON
+37137,0.04219353,Sulfur Dioxide,TON
+37137,0.03969504,Sulfate Portion of PM2.5-PRI,TON
+37137,0.014511752,Benzo[b]Fluoranthene,LB
+37137,0.05160518,Manganese,LB
+37137,2.490696,"1,3-Butadiene",LB
+37123,0.03216826,Arsenic,LB
+37123,0.04663128,Benzo[a]Pyrene,LB
+37123,0.03356121,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.03908267,Sulfur Dioxide,TON
+37123,25.1521,"1,3-Butadiene",LB
+37123,45.36314,Xylenes (Mixed Isomers),LB
+37123,0.009414328,"Benzo[g,h,i,]Perylene",LB
+37123,0.01391372,Benzo[b]Fluoranthene,LB
+37123,3.286278,Fluoranthene,LB
+37123,2.040166,Toluene,LB
+37123,2.176822,Xylenes (Mixed Isomers),LB
+37123,0.0932512,Fluoranthene,LB
+37123,26.00598,Formaldehyde,LB
+37123,5.311144e-05,"Dibenzo[a,h]Anthracene",LB
+37123,0.0007792138,Sulfate Portion of PM2.5-PRI,TON
+37115,17.753324,Acrolein,LB
+37115,0.7733799,PM10 Primary (Filt + Cond),TON
+37113,0.0001226229,PM2.5 Primary (Filt + Cond),TON
+37113,0.6844928,Toluene,LB
+37113,0.00018467378,Anthracene,LB
+37113,0.1454337,"2,2,4-Trimethylpentane",LB
+37113,7.42862e-05,Benz[a]Anthracene,LB
+37107,20.72598,Xylenes (Mixed Isomers),LB
+37107,0.012061062,Benzo[b]Fluoranthene,LB
+37107,0.1215898,Chrysene,LB
+37107,297.1902,Formaldehyde,LB
+37107,0.015654478,Arsenic,LB
+37107,6.455925,Nitrogen Oxides,TON
+37105,0.2177143,PM10 Primary (Filt + Cond),TON
+37105,5.206496,Acrolein,LB
+37105,4.584376,Toluene,LB
+37105,1.5575452e-05,Chromium (VI),LB
+37105,0.0009153368,Benzo[k]Fluoranthene,LB
+37105,0.0009111128,"Dibenzo[a,h]Anthracene",LB
+37105,6.214566,Benzene,LB
+37105,7.246684,Naphthalene,LB
+37105,0.1371596,PM10-Primary from certain diesel engines,TON
+37097,14.427358,"1,3-Butadiene",LB
+37097,2.451688,Acenaphthylene,LB
+37097,43.87874,Benzene,LB
+37097,0.1411051,Manganese,LB
+37097,0.016563468,Arsenic,LB
+37097,204.2742,Acetaldehyde,LB
+37097,3.172612,Fluorene,LB
+37097,16.88114,Carbon Monoxide,TON
+37101,125.4519,Volatile Organic Compounds,TON
+37099,463.889,"1,3-Butadiene",LB
+37099,4.51626,"Benzo[g,h,i,]Perylene",LB
+37099,0.03895282,"Dibenzo[a,h]Anthracene",LB
+37099,3.001772,Acenaphthene,LB
+37099,0.4089675,Elemental Carbon portion of PM2.5-PRI,TON
+37099,5.560716,Ammonia,TON
+37099,0.06075227,Sulfate Portion of PM2.5-PRI,TON
+37093,0.6020586,Acenaphthene,LB
+37093,2.427298,Phenanthrene,LB
+37093,6.452972,Carbon Monoxide,TON
+37091,0.6698645,Volatile Organic Compounds,TON
+37085,1.415244,Acrolein,LB
+37085,2.595222e-05,Mercury,LB
+37085,0.0004961544,Arsenic,LB
+37085,18.349826,Acetaldehyde,LB
+37079,0.000398574,Pyrene,LB
+37079,0.0007352734,Naphthalene,LB
+37079,0.29954,Methane,TON
+37079,0.0003419159,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.003792699,PM2.5 Primary (Filt + Cond),TON
+37081,8.759184,Anthracene,LB
+37081,23.9573,Pyrene,LB
+37081,0.10329726,"Benzo[g,h,i,]Perylene",LB
+37081,18.328244,Fluoranthene,LB
+37081,1.6357948,Manganese,LB
+37081,1327.7224,Acetaldehyde,LB
+37081,8.35047,Acenaphthene,LB
+37081,330.9522,Naphthalene,LB
+37081,12.91761,PM2.5 Primary (Filt + Cond),TON
+37081,23.75528,"2,2,4-Trimethylpentane",LB
+37081,0.006148295,Elemental Carbon portion of PM2.5-PRI,TON
+37079,5.114084,Anthracene,LB
+37079,123.22914,Propionaldehyde,LB
+37079,0.00334664,Chromium (VI),LB
+37079,8.699984,Fluoranthene,LB
+37079,27.31244,Acenaphthylene,LB
+37079,1.5288508,Chrysene,LB
+37079,0.7185478,Manganese,LB
+37079,1994.435,Acetaldehyde,LB
+37079,6.000668,Acenaphthene,LB
+37079,3.299951,Methane,TON
+37079,2.04605,PM2.5 Primary (Filt + Cond),TON
+37077,11.39953,Carbon Dioxide,TON
+37077,0.001884253,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.0001033141,Sulfate Portion of PM2.5-PRI,TON
+37077,0.2970936,"1,3-Butadiene",LB
+37077,1.2825956,Hexane,LB
+37077,0.003458354,Benzo[a]Pyrene,LB
+37069,13.65506,"2,2,4-Trimethylpentane",LB
+37069,194.608,Acetaldehyde,LB
+37069,48.36248,Naphthalene,LB
+37069,22064.15,Carbon Dioxide,TON
+37069,0.2474827,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.3571168,Phenanthrene,LB
+37061,34.29724,Acrolein,LB
+37061,0.09680586,Benzo[b]Fluoranthene,LB
+37061,3.429144,Fluoranthene,LB
+37061,0.013262104,Benzo[k]Fluoranthene,LB
+37061,2.482998,Acenaphthylene,LB
+37061,186.75502,Acetaldehyde,LB
+37055,5.797336e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.004133052,Formaldehyde,LB
+37055,0.007374248,Ethyl Benzene,LB
+37055,0.0002558036,Propionaldehyde,LB
+37055,2.132646e-05,Pyrene,LB
+37055,1.92334e-07,Sulfate Portion of PM2.5-PRI,TON
+37055,0.3040376,Hexane,LB
+37055,0.0006788434,Pyrene,LB
+37055,0.3649558,Benzene,LB
+37055,0.02047974,Naphthalene,LB
+37055,6.816609e-05,Nitrous Oxide,TON
+37049,5.81208e-05,Styrene,LB
+37049,0.0002530426,"1,3-Butadiene",LB
+37049,1.3016842e-06,Benzo[b]Fluoranthene,LB
+37049,4.494688e-07,Manganese,LB
+37049,6.545949e-09,Nitrate portion of PM2.5-PRI,TON
+37049,4.313184e-06,PM10 Primary (Filt + Cond),TON
+37049,3.667145e-05,Volatile Organic Compounds,TON
+37045,0.0005076942,Chromium (VI),LB
+37045,0.516715,Benzo[a]Pyrene,LB
+37045,0.603664,Manganese,LB
+37045,162.88812,Naphthalene,LB
+37045,2.383372,Methane,TON
+37039,6.56267,"1,3-Butadiene",LB
+37039,0.298503,Chrysene,LB
+37039,4.636814,"2,2,4-Trimethylpentane",LB
+37039,0.04343134,Ammonia,TON
+37039,1.169014,PM10 Primary (Filt + Cond),TON
+37045,1.9531194,Fluoranthene,LB
+37045,0.007856854,Benzo[k]Fluoranthene,LB
+37045,1.3589974,Acenaphthylene,LB
+37045,246.9354,Formaldehyde,LB
+37033,0.02011472,Benz[a]Anthracene,LB
+37033,0.0005447238,Arsenic,LB
+37033,0.06053876,Fluorene,LB
+37033,0.0018005596,Benzo[b]Fluoranthene,LB
+37033,0.04224589,PM2.5 Primary (Filt + Cond),TON
+37033,11.632396,Styrene,LB
+37033,0.001916049,Benzo[k]Fluoranthene,LB
+37031,0.0003053392,Acrolein,LB
+37031,7.325762e-05,Acenaphthylene,LB
+37031,6.431948e-06,Benzo[a]Pyrene,LB
+37031,2.607044e-06,Manganese,LB
+37031,2.224814e-07,Nickel,LB
+37031,3.6081e-06,Organic Carbon portion of PM2.5-PRI,TON
+37031,2.32084e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,2.134046e-07,Sulfate Portion of PM2.5-PRI,TON
+37195,1.6638122,Hexane,LB
+37195,0.2145646,Anthracene,LB
+37195,0.019313722,"Benzo[g,h,i,]Perylene",LB
+37195,2.344748,Acenaphthylene,LB
+37195,0.012911272,"Dibenzo[a,h]Anthracene",LB
+37195,1.3946358,Acenaphthene,LB
+37195,5.209852,Phenanthrene,LB
+37195,1.892439,PM25-Primary from certain diesel engines,TON
+37195,0.01029254,Nitrous Oxide,TON
+37195,0.0514004,Sulfate Portion of PM2.5-PRI,TON
+37189,0.5203354,Toluene,LB
+37189,0.07594286,Pyrene,LB
+37189,0.010290284,Chrysene,LB
+37189,0.005255308,Benzo[a]Pyrene,LB
+37189,1.091732e-06,Mercury,LB
+37189,0.02213422,PM10 Primary (Filt + Cond),TON
+37189,0.0004390856,Sulfur Dioxide,TON
+37183,738.531,Acetaldehyde,LB
+37183,7.179054,Fluorene,LB
+37183,0.2120254,Elemental Carbon portion of PM2.5-PRI,TON
+37183,2.644478,Ammonia,TON
+37183,0.4414524,Sulfur Dioxide,TON
+37183,68.16098,Acrolein,LB
+37183,1.0546284,Benzo[b]Fluoranthene,LB
+37183,5.192128,Fluoranthene,LB
+37183,1.0524592,Benz[a]Anthracene,LB
+37021,56.00496,Hexane,LB
+37021,6.315456,Anthracene,LB
+37021,1.9211014,Manganese,LB
+37021,0.17260826,Arsenic,LB
+37021,0.1100393,Nitrous Oxide,TON
+37021,0.02552017,Nitrate portion of PM2.5-PRI,TON
+37021,15.8305,PM10 Primary (Filt + Cond),TON
+37017,68.6498,Benzene,LB
+37017,6.401776,Phenanthrene,LB
+37017,4622.679,Carbon Dioxide,TON
+37017,23.86344,Ethyl Benzene,LB
+37017,17.93536,Hexane,LB
+37017,713.0932,Formaldehyde,LB
+37015,0.4950328,Hexane,LB
+37015,0.0006729208,Benzo[k]Fluoranthene,LB
+37015,0.1031366,Acenaphthylene,LB
+37015,0.002148575,Sulfate Portion of PM2.5-PRI,TON
+37015,0.3432726,Acenaphthylene,LB
+37015,56.17298,Formaldehyde,LB
+37015,0.012268896,Manganese,LB
+37015,8.50736e-06,Mercury,LB
+37015,6.385364,Naphthalene,LB
+37015,0.007485236,Methane,TON
+37015,0.0004060566,Nitrate portion of PM2.5-PRI,TON
+37015,4.847475,Nitrogen Oxides,TON
+37013,215.6456,Ethyl Benzene,LB
+37013,373.176,Hexane,LB
+37013,0.0751295,Benzo[a]Pyrene,LB
+37013,49.64556,Carbon Monoxide,TON
+37013,1225.89,Carbon Dioxide,TON
+37013,0.01131404,Nitrous Oxide,TON
+37003,0.010160022,Acrolein,LB
+37003,1.4525806,Xylenes (Mixed Isomers),LB
+37003,5.117162e-08,Chromium (VI),LB
+37003,0.0003038498,Benzo[a]Pyrene,LB
+37003,0.0005410797,Methane,TON
+37003,3.489548,Carbon Dioxide,TON
+37003,0.0003446609,Nitrous Oxide,TON
+37067,0.010569502,Pyrene,LB
+37067,0.014420016,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,6.545698,"2,2,4-Trimethylpentane",LB
+37067,0.02531544,Manganese,LB
+37067,59.12004,Acetaldehyde,LB
+37067,0.0051185,Acenaphthene,LB
+37067,0.01006416,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,8.88589e-05,Mercury,LB
+37027,8.118622e-06,Nitrate portion of PM2.5-PRI,TON
+37027,2.36187,Toluene,LB
+37027,0.00483692,"Benzo[g,h,i,]Perylene",LB
+37027,0.0017938452,Benzo[a]Pyrene,LB
+37027,1.1088614,"2,2,4-Trimethylpentane",LB
+37027,0.0008289914,Benz[a]Anthracene,LB
+37177,1.995997,Toluene,LB
+37177,0.8480364,Xylenes (Mixed Isomers),LB
+37133,0.017172824,Acenaphthene,LB
+37133,0.03478724,Fluorene,LB
+37133,0.4967528,Styrene,LB
+37069,1.7195254e-05,Benz[a]Anthracene,LB
+37069,0.02006176,Ethyl Benzene,LB
+37069,9.992042e-06,Mercury,LB
+37069,0.3296804,Carbon Monoxide,TON
+37069,0.001036969,Ammonia,TON
+37069,0.1428005,Nitrogen Oxides,TON
+37053,4.334238,Acrolein,LB
+37053,25.01,Acetaldehyde,LB
+37053,0.4525168,Phenanthrene,LB
+37053,5.573941,Carbon Monoxide,TON
+37053,0.002265687,Elemental Carbon portion of PM2.5-PRI,TON
+37053,5.639288e-05,Nitrate portion of PM2.5-PRI,TON
+37053,0.5018996,Nitrogen Oxides,TON
+37053,23465.02,Toluene,LB
+37053,5359.378,Hexane,LB
+37053,15799.874,Xylenes (Mixed Isomers),LB
+37053,1.9051094,Chrysene,LB
+37053,100793.3,Carbon Dioxide,TON
+37053,219.9131,Nitrogen Oxides,TON
+37053,0.07682847,Sulfate Portion of PM2.5-PRI,TON
+37051,504.8884,Formaldehyde,LB
+37051,307.1051,Carbon Monoxide,TON
+37051,1.030832,Ammonia,TON
+37051,14.84194,Nitrogen Oxides,TON
+37047,0.0007549646,"Dibenzo[a,h]Anthracene",LB
+37047,0.012081084,Manganese,LB
+37047,0.005238246,Nickel,LB
+37047,0.002030162,Arsenic,LB
+37047,2.922058,Naphthalene,LB
+37047,0.01333066,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.8794404,Styrene,LB
+37041,0.3384014,Acenaphthylene,LB
+37041,0.04406184,Benzo[a]Pyrene,LB
+37041,6.18375,Nitrogen Oxides,TON
+37031,3.190628,Ethyl Benzene,LB
+37031,0.0011912634,Benzo[k]Fluoranthene,LB
+37031,0.0014464862,Benzo[a]Pyrene,LB
+37031,2.320257,Carbon Monoxide,TON
+37031,0.0003905209,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.01734468,Nickel,LB
+37017,805.5517,Carbon Dioxide,TON
+37017,0.50652,Fluoranthene,LB
+37017,0.03944678,Chrysene,LB
+37019,0.00290016,"Benzo[g,h,i,]Perylene",LB
+37019,0.002186448,Nitrous Oxide,TON
+37019,0.0008489182,Nitrate portion of PM2.5-PRI,TON
+37019,0.06999306,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.3392899,Volatile Organic Compounds,TON
+37015,0.006810916,Nickel,LB
+37015,0.2588448,Fluorene,LB
+37015,0.007724724,Elemental Carbon portion of PM2.5-PRI,TON
+37015,3.440574,Volatile Organic Compounds,TON
+37015,4.494652,"1,3-Butadiene",LB
+37015,5.448902e-05,Chromium (VI),LB
+37015,0.14417152,"Benzo[g,h,i,]Perylene",LB
+37015,0.18745926,Fluoranthene,LB
+37167,0.2498112,Toluene,LB
+37167,44.96228,Formaldehyde,LB
+37167,0.0003741189,Elemental Carbon portion of PM2.5-PRI,TON
+37167,0.00140249,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.004452712,PM2.5 Primary (Filt + Cond),TON
+37167,6.163548e-05,Sulfate Portion of PM2.5-PRI,TON
+37021,0.420237,Benz[a]Anthracene,LB
+37021,4.995488,"1,3-Butadiene",LB
+37021,0.03912562,Benzo[b]Fluoranthene,LB
+37021,181.95162,Formaldehyde,LB
+37021,0.002300627,Nitrate portion of PM2.5-PRI,TON
+37021,0.1894625,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.02493148,Sulfate Portion of PM2.5-PRI,TON
+37017,3.632,Toluene,LB
+37017,1.1693968,Hexane,LB
+37017,0.2219188,Acenaphthylene,LB
+37017,0.0019338358,Benzo[a]Pyrene,LB
+37017,0.002935514,Sulfur Dioxide,TON
+37021,1.8130932,Styrene,LB
+37021,60.39888,Hexane,LB
+37021,0.12170096,Fluoranthene,LB
+37021,0.3774958,Acenaphthylene,LB
+37021,27.49618,Formaldehyde,LB
+37021,0.16781164,Fluorene,LB
+37021,4.302242,Naphthalene,LB
+37021,0.03976026,Ammonia,TON
+37021,1.176255,Volatile Organic Compounds,TON
+37011,0.009316958,Manganese,LB
+37011,6.901832e-06,Mercury,LB
+37011,0.002294676,"Benzo[g,h,i,]Perylene",LB
+37011,0.0014698248,Benzo[k]Fluoranthene,LB
+37011,0.3205752,Acenaphthylene,LB
+37011,61.73824,Formaldehyde,LB
+37011,0.00252241,Sulfate Portion of PM2.5-PRI,TON
+37081,0.2127994,Styrene,LB
+37081,1.0563824,"1,3-Butadiene",LB
+37081,0.8019164,Acrolein,LB
+37081,0.007071076,Anthracene,LB
+37081,0.02102628,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.014830902,Nickel,LB
+37081,0.09903976,Ammonia,TON
+37081,0.03729608,PM2.5 Primary (Filt + Cond),TON
+37071,6.784082,Ethyl Benzene,LB
+37071,6.31743,Hexane,LB
+37071,20.31092,"2,2,4-Trimethylpentane",LB
+37051,28.4224,"2,2,4-Trimethylpentane",LB
+37043,0.001597918,Anthracene,LB
+37043,0.007125304,"Benzo[g,h,i,]Perylene",LB
+37043,0.002677096,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,3.686276,Formaldehyde,LB
+37043,0.002076386,Manganese,LB
+37043,0.001166908,Nickel,LB
+37043,0.003581562,Fluorene,LB
+37043,163.7932,Carbon Dioxide,TON
+37043,0.003379077,PM2.5 Primary (Filt + Cond),TON
+37041,0.4045792,Ethyl Benzene,LB
+37041,1.2112774,"2,2,4-Trimethylpentane",LB
+37031,0.5578556,Ethyl Benzene,LB
+37031,0.09801126,Acrolein,LB
+37031,1.33702,Carbon Monoxide,TON
+37031,0.0006195263,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.002768883,Nitrous Oxide,TON
+37037,1.1033722,Hexane,LB
+37037,0.0017375272,Pyrene,LB
+37037,1.270417,Carbon Monoxide,TON
+37037,0.002313177,Nitrous Oxide,TON
+37037,0.07050838,Volatile Organic Compounds,TON
+37135,89.00636,Acetaldehyde,LB
+37135,0.015355038,Fluorene,LB
+37135,0.0393185,Sulfur Dioxide,TON
+37135,0.01061879,Benzo[b]Fluoranthene,LB
+37103,0.002084754,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.003510962,Arsenic,LB
+37103,0.5462696,Propionaldehyde,LB
+37103,0.002266326,Acenaphthene,LB
+37103,3.363591,Carbon Monoxide,TON
+37103,0.0192303,PM10 Primary (Filt + Cond),TON
+37103,0.006198721,PM2.5 Primary (Filt + Cond),TON
+37175,3.017204,Acenaphthene,LB
+37175,156.67614,Naphthalene,LB
+37175,3.36588,Ammonia,TON
+37175,0.00410229,Nitrate portion of PM2.5-PRI,TON
+37175,4.860501,PM10 Primary (Filt + Cond),TON
+37175,0.8313684,Sulfur Dioxide,TON
+37175,0.04154194,Sulfate Portion of PM2.5-PRI,TON
+37175,60.33764,Volatile Organic Compounds,TON
+37175,2043.518,Ethyl Benzene,LB
+37175,64.04622,Acrolein,LB
+37175,2959.026,Hexane,LB
+37167,0.006760654,Chromium (VI),LB
+37167,1.837633,Benzo[b]Fluoranthene,LB
+37167,2.021633,Sulfur Dioxide,TON
+37167,118.6441,Volatile Organic Compounds,TON
+37155,2.766916,Acrolein,LB
+37155,0.366384,"Benzo[g,h,i,]Perylene",LB
+37149,5.482158,Ethyl Benzene,LB
+37149,4.114142,Hexane,LB
+37149,2.00391,Phenanthrene,LB
+37149,0.01468293,Sulfate Portion of PM2.5-PRI,TON
+37149,0.988661,Volatile Organic Compounds,TON
+37149,0.96386,Acenaphthylene,LB
+37153,19.000078,Hexane,LB
+37153,0.276101,Chrysene,LB
+37153,18.3851,"2,2,4-Trimethylpentane",LB
+37153,0.09560494,Manganese,LB
+37153,6.88634,Phenanthrene,LB
+37153,4.475786,Fluorene,LB
+37143,0.02480454,PM10-Primary from certain diesel engines,TON
+37143,0.02282042,PM25-Primary from certain diesel engines,TON
+37137,5.781946,Acrolein,LB
+37137,78.85708,Formaldehyde,LB
+37137,0.1426214,Benz[a]Anthracene,LB
+37137,0.003238234,Nitrous Oxide,TON
+37137,0.02381726,Sulfur Dioxide,TON
+37131,0.1848281,Nitrogen Oxides,TON
+37131,0.0006592291,Sulfate Portion of PM2.5-PRI,TON
+37131,1.6530396,Benzene,LB
+37131,0.05263898,Acenaphthene,LB
+37131,0.00389304,PM10-Primary from certain diesel engines,TON
+37131,0.0001992379,Nitrous Oxide,TON
+37131,2.417674e-05,Nitrate portion of PM2.5-PRI,TON
+37119,114.86428,Xylenes (Mixed Isomers),LB
+37119,0.000527796,Chromium (VI),LB
+37119,3.61066,Fluoranthene,LB
+37119,4.776362,Acenaphthylene,LB
+37119,1176.3444,Formaldehyde,LB
+37119,1.164459,Methane,TON
+37119,11652.85,Carbon Dioxide,TON
+37119,0.005002308,"1,3-Butadiene",LB
+37119,0.3305244,Toluene,LB
+37119,0.000203754,Fluoranthene,LB
+37119,3.714104e-05,Arsenic,LB
+37119,0.02868802,Acetaldehyde,LB
+37119,0.006551144,Naphthalene,LB
+37119,3.166921e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37119,7.490002e-05,Nitrous Oxide,TON
+37119,0.0003249454,Ammonia,TON
+37107,3.265644,Acetaldehyde,LB
+37107,0.0001626319,Nitrous Oxide,TON
+37107,0.003227899,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.04365603,Volatile Organic Compounds,TON
+37107,0.018123354,Benz[a]Anthracene,LB
+37103,0.0427323,Styrene,LB
+37103,0.010559328,Anthracene,LB
+37103,0.02975886,Pyrene,LB
+37103,8.666228e-05,Benzo[k]Fluoranthene,LB
+37103,0.016472514,Acenaphthylene,LB
+37103,0.007632856,PM2.5 Primary (Filt + Cond),TON
+37099,5.230776,Xylenes (Mixed Isomers),LB
+37099,0.0013247494,Benzo[k]Fluoranthene,LB
+37099,0.4805216,Acenaphthylene,LB
+37099,0.07047616,Chrysene,LB
+37099,0.0013213746,"Dibenzo[a,h]Anthracene",LB
+37099,0.12736848,Benz[a]Anthracene,LB
+37099,0.02411666,Manganese,LB
+37099,0.02413795,Methane,TON
+37097,0.9240822,Anthracene,LB
+37097,1.8042226,Pyrene,LB
+37097,0.3279168,Benzo[k]Fluoranthene,LB
+37097,0.3154736,Chrysene,LB
+37097,0.3259724,Benz[a]Anthracene,LB
+37097,1453.9028,Benzene,LB
+37097,0.10038294,Manganese,LB
+37097,0.05346086,Nickel,LB
+37097,0.0819738,Arsenic,LB
+37097,1.0780986,Acenaphthene,LB
+37097,55.98504,Naphthalene,LB
+37097,264.7446,Carbon Monoxide,TON
+37097,0.459592,PM2.5 Primary (Filt + Cond),TON
+37095,1.624621,Ethyl Benzene,LB
+37095,2.139988,Propionaldehyde,LB
+37095,0.3460148,Pyrene,LB
+37095,0.0009875816,Benzo[k]Fluoranthene,LB
+37095,0.002506982,Nitrous Oxide,TON
+37095,0.208409,PM2.5 Primary (Filt + Cond),TON
+37095,0.4894924,Benzo[a]Pyrene,LB
+37095,0.1157665,Elemental Carbon portion of PM2.5-PRI,TON
+37095,1.398247,Ammonia,TON
+37095,0.2681333,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.14383048,Propionaldehyde,LB
+37085,0.011630186,Fluoranthene,LB
+37085,0.001027468,Elemental Carbon portion of PM2.5-PRI,TON
+37083,1918.9372,Toluene,LB
+37083,1003.1946,Xylenes (Mixed Isomers),LB
+37083,1.1630682,Acenaphthylene,LB
+37083,0.07733908,Chrysene,LB
+37083,0.012953304,Nickel,LB
+37083,1715.168,Carbon Dioxide,TON
+37083,0.2188254,Ammonia,TON
+37083,0.03527356,Sulfur Dioxide,TON
+37081,159.88782,Styrene,LB
+37081,5380.724,Hexane,LB
+37081,31.19454,Acenaphthylene,LB
+37081,2.087342,Chrysene,LB
+37081,355.4516,Naphthalene,LB
+37081,0.01061961,Nitrate portion of PM2.5-PRI,TON
+37077,197.43832,Toluene,LB
+37077,2.748382,Anthracene,LB
+37077,0.01492897,"Dibenzo[a,h]Anthracene",LB
+37077,41809.63,Carbon Dioxide,TON
+37077,3.688971,PM10-Primary from certain diesel engines,TON
+37077,0.6626779,Organic Carbon portion of PM2.5-PRI,TON
+37077,1.0364494,Benz[a]Anthracene,LB
+37077,0.0002801962,Mercury,LB
+37077,92.55609,Carbon Monoxide,TON
+37077,8353.161,Carbon Dioxide,TON
+37077,0.1748247,Organic Carbon portion of PM2.5-PRI,TON
+37071,1.4077888e-06,Mercury,LB
+37071,0.04549527,Volatile Organic Compounds,TON
+37071,0.3582138,"1,3-Butadiene",LB
+37071,0.002225206,Anthracene,LB
+37071,1.40434e-07,Chromium (VI),LB
+37071,0.0007688224,Benzo[k]Fluoranthene,LB
+37071,0.0007679992,Benz[a]Anthracene,LB
+37071,0.683103,Ammonia,TON
+37071,10.9618,Nitrogen Oxides,TON
+37071,0.1193088,Sulfur Dioxide,TON
+37071,22.93152,Styrene,LB
+37071,2.106444,Fluorene,LB
+37069,0.10961524,Pyrene,LB
+37069,2.104272e-05,Chromium (VI),LB
+37069,0.015899304,Benzo[b]Fluoranthene,LB
+37069,0.0004425986,"Dibenzo[a,h]Anthracene",LB
+37069,69.82998,Benzene,LB
+37069,22.03012,Acetaldehyde,LB
+37069,0.005903485,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.05370521,Nitrous Oxide,TON
+37069,0.03472072,Ammonia,TON
+37069,6.447526e-05,Nitrate portion of PM2.5-PRI,TON
+37069,0.08449495,PM10 Primary (Filt + Cond),TON
+37067,14.75364,Fluoranthene,LB
+37067,200.9414,Benzene,LB
+37067,0.02516724,Nitrate portion of PM2.5-PRI,TON
+37067,1.009431,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,11.79426,Volatile Organic Compounds,TON
+37065,31.12762,Hexane,LB
+37061,0.8951718,Fluorene,LB
+37061,4.433854,Ethyl Benzene,LB
+37061,0.8229644,Fluoranthene,LB
+37061,0.8039602,Acenaphthylene,LB
+37061,58.94298,Acetaldehyde,LB
+37061,1.4221722,Phenanthrene,LB
+37043,3.119448e-05,Fluoranthene,LB
+37043,6.194478e-06,Chrysene,LB
+37043,0.02135212,Benzene,LB
+37043,0.0006015877,Nitrogen Oxides,TON
+37043,2.311115e-06,Sulfur Dioxide,TON
+37081,0.9836135,Volatile Organic Compounds,TON
+37065,0.13248042,Acrolein,LB
+37065,0.002215124,Fluoranthene,LB
+37065,0.1184186,Nitrogen Oxides,TON
+37065,0.002484172,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,2.842086,Benzene,LB
+37111,0.00282571,Manganese,LB
+37111,0.00011094986,Mercury,LB
+37111,0.0008941022,Acenaphthene,LB
+37111,0.5315666,Ethyl Benzene,LB
+37111,0.1217738,"1,3-Butadiene",LB
+37111,0.001105764,Benzo[b]Fluoranthene,LB
+37111,0.0015748566,Fluoranthene,LB
+37111,0.004693429,Sulfur Dioxide,TON
+37169,500.928,Hexane,LB
+37169,1028.5642,Xylenes (Mixed Isomers),LB
+37169,0.05310322,Benzo[k]Fluoranthene,LB
+37169,0.8531196,Acenaphthylene,LB
+37169,0.05346526,Benz[a]Anthracene,LB
+37169,269.2376,Benzene,LB
+37169,0.008415882,Nickel,LB
+37169,0.08712926,Methane,TON
+37169,0.01851037,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,274.36,Ethyl Benzene,LB
+37163,2.914101,PM2.5 Primary (Filt + Cond),TON
+37163,3.613439,Volatile Organic Compounds,TON
+37149,0.8755616,Hexane,LB
+37149,34.85616,Formaldehyde,LB
+37149,0.02793176,Benzo[a]Pyrene,LB
+37149,3.22487,Benzene,LB
+37149,0.7635581,Carbon Monoxide,TON
+37149,478.9436,Carbon Dioxide,TON
+37149,0.004133934,Sulfate Portion of PM2.5-PRI,TON
+37149,0.1997764,PM10-Primary from certain diesel engines,TON
+37149,3.659202,Propionaldehyde,LB
+37149,1.462354e-05,Chromium (VI),LB
+37149,0.013330618,Benzo[b]Fluoranthene,LB
+37149,0.0018219716,Benzo[k]Fluoranthene,LB
+37149,0.04471414,Benzo[a]Pyrene,LB
+37145,0.001159739,Nitrate portion of PM2.5-PRI,TON
+37145,0.2913218,Acenaphthene,LB
+37145,0.6277638,Fluorene,LB
+37145,445.6387,Carbon Dioxide,TON
+37199,91.20288,Naphthalene,LB
+37199,1.929004,Ammonia,TON
+37199,0.002325798,Nitrate portion of PM2.5-PRI,TON
+37199,2.945026,Pyrene,LB
+37199,0.5517276,Benzo[b]Fluoranthene,LB
+37199,0.3276794,Manganese,LB
+37199,652.6418,Acetaldehyde,LB
+37187,0.003574652,Nickel,LB
+37187,0.003503535,Ammonia,TON
+37187,0.0001716651,Nitrate portion of PM2.5-PRI,TON
+37187,0.8908056,"1,3-Butadiene",LB
+37187,2.07029,Acrolein,LB
+37187,0.0003829954,Benzo[k]Fluoranthene,LB
+37187,0.03816832,Benz[a]Anthracene,LB
+37181,0.16731162,"1,3-Butadiene",LB
+37181,0.3498078,Toluene,LB
+37181,0.05117796,Pyrene,LB
+37181,0.02853722,Acenaphthylene,LB
+37181,0.00014793328,"Dibenzo[a,h]Anthracene",LB
+37181,0.12940762,"2,2,4-Trimethylpentane",LB
+37181,0.4871812,Benzene,LB
+37181,0.0011513314,Manganese,LB
+37181,0.005600888,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.001064842,Ammonia,TON
+37181,0.01725171,PM10 Primary (Filt + Cond),TON
+37181,0.00213123,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,7.796522,"1,3-Butadiene",LB
+37181,0.02666364,Chrysene,LB
+37181,0.006307454,Arsenic,LB
+37181,0.05679559,PM2.5 Primary (Filt + Cond),TON
+37181,0.01743321,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.1147434,Acrolein,LB
+37169,0.003178994,PM2.5 Primary (Filt + Cond),TON
+37169,0.08967946,Pyrene,LB
+37169,0.009594032,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.05479797,Volatile Organic Compounds,TON
+37169,6.784996,Nitrous Oxide,TON
+37169,7923.766,Ethyl Benzene,LB
+37169,1875.9722,"1,3-Butadiene",LB
+37169,11.218706,Anthracene,LB
+37169,21.77212,Pyrene,LB
+37169,0.005203872,Chromium (VI),LB
+37165,0.002209403,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,7.223716e-05,Anthracene,LB
+37165,1.2651016e-05,"Benzo[g,h,i,]Perylene",LB
+37165,0.001823708,Ammonia,TON
+37165,887.9838,"1,3-Butadiene",LB
+37165,124.17754,Acrolein,LB
+37165,1.7655718,Benzo[b]Fluoranthene,LB
+37165,208.839,Nitrogen Oxides,TON
+37165,1.7655718,Benzo[k]Fluoranthene,LB
+37165,2.305266,Benzo[a]Pyrene,LB
+37165,0.0526568,"Dibenzo[a,h]Anthracene",LB
+37165,1.7991614,Benz[a]Anthracene,LB
+37155,0.2918472,PM25-Primary from certain diesel engines,TON
+37155,0.005530293,Nitrous Oxide,TON
+37155,0.04333967,Organic Carbon portion of PM2.5-PRI,TON
+37155,1.440027,Volatile Organic Compounds,TON
+37155,7.990392,"1,3-Butadiene",LB
+37155,17.569152,Xylenes (Mixed Isomers),LB
+37161,320.3342,Acrolein,LB
+37161,4.504082,Benzo[b]Fluoranthene,LB
+37161,35.83992,Fluorene,LB
+37161,918.5736,Naphthalene,LB
+37161,8.770792,Nitrous Oxide,TON
+37143,1.3123898e-06,Manganese,LB
+37143,0.1045351,Toluene,LB
+37143,2.41592e-05,Anthracene,LB
+37143,4.69744e-05,Pyrene,LB
+37143,0.06590518,Xylenes (Mixed Isomers),LB
+37143,2.561856e-05,"Benzo[g,h,i,]Perylene",LB
+37143,0.008574776,Formaldehyde,LB
+37143,9.842673e-06,PM2.5 Primary (Filt + Cond),TON
+37141,646.6108,Formaldehyde,LB
+37141,58.69886,Benzene,LB
+37141,48.98934,Acrolein,LB
+37141,0.07635032,Sulfate Portion of PM2.5-PRI,TON
+37139,5.873438,"1,3-Butadiene",LB
+37139,0.9316764,Acrolein,LB
+37139,0.04806738,"Benzo[g,h,i,]Perylene",LB
+37139,0.207138,Acenaphthylene,LB
+37139,0.003481602,Arsenic,LB
+37139,15.078338,Acetaldehyde,LB
+37139,20.64656,Carbon Monoxide,TON
+37139,0.02859122,Ammonia,TON
+37137,1.0418652e-06,Mercury,LB
+37137,0.0001088076,Nitrous Oxide,TON
+37137,0.002913953,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.001496162,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,6.304872,Chrysene,LB
+37133,7.957112,Manganese,LB
+37133,0.02803939,Nitrate portion of PM2.5-PRI,TON
+37133,4.967165,Organic Carbon portion of PM2.5-PRI,TON
+37133,3.928565,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,8.882163,Sulfur Dioxide,TON
+37133,19481.292,Hexane,LB
+37129,18.621748,"2,2,4-Trimethylpentane",LB
+37129,53.32758,Benzene,LB
+37129,0.016615,Methane,TON
+37129,0.02941636,PM2.5 Primary (Filt + Cond),TON
+37129,0.01571175,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.01788402,Sulfur Dioxide,TON
+37127,28.25638,"1,3-Butadiene",LB
+37127,78.85524,Toluene,LB
+37127,4.783746,Acenaphthylene,LB
+37127,1008.641,Formaldehyde,LB
+37127,89.65742,Benzene,LB
+37127,105.34732,Naphthalene,LB
+37127,0.3460898,Ammonia,TON
+37127,0.01207699,Nitrate portion of PM2.5-PRI,TON
+37127,2.494067,PM2.5 Primary (Filt + Cond),TON
+37127,5.307148,Volatile Organic Compounds,TON
+37125,11.0698,Acenaphthylene,LB
+37125,0.2746392,Organic Carbon portion of PM2.5-PRI,TON
+37125,2.117373,PM10 Primary (Filt + Cond),TON
+37007,0.7217246,Phenanthrene,LB
+37007,0.06076807,Methane,TON
+37077,0.007627082,Benz[a]Anthracene,LB
+37077,0.007510344,Acenaphthene,LB
+37077,5.45251e-05,Nitrate portion of PM2.5-PRI,TON
+37077,0.006494828,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,1.810361,Propionaldehyde,LB
+37077,0.008823184,Benzo[b]Fluoranthene,LB
+37053,0.5072938,"1,3-Butadiene",LB
+37053,0.008909272,Fluorene,LB
+37053,0.002086442,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.02659504,"1,3-Butadiene",LB
+37029,0.0003671452,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,8.427924e-06,"Dibenzo[a,h]Anthracene",LB
+37029,0.2650649,Carbon Monoxide,TON
+37029,0.001841344,Ammonia,TON
+37015,3.453556,"2,2,4-Trimethylpentane",LB
+37141,1.3516054,Hexane,LB
+37141,0.005010492,Acenaphthylene,LB
+37141,1.3867556,"2,2,4-Trimethylpentane",LB
+37141,9.306866e-06,Nitrate portion of PM2.5-PRI,TON
+37141,0.003899385,PM2.5 Primary (Filt + Cond),TON
+37141,0.0001144678,Sulfate Portion of PM2.5-PRI,TON
+37117,4.107688,Xylenes (Mixed Isomers),LB
+37093,0.011422076,Manganese,LB
+37093,0.000345654,Mercury,LB
+37093,0.00430969,Nickel,LB
+37093,0.3070386,Naphthalene,LB
+37093,5.519244,Hexane,LB
+37091,0.0001941036,Benzo[k]Fluoranthene,LB
+37091,0.3472078,Formaldehyde,LB
+37091,1.580006e-05,Mercury,LB
+37091,0.0001969966,Nickel,LB
+37091,0.02053735,Nitrogen Oxides,TON
+37085,0.0986413,"Dibenzo[a,h]Anthracene",LB
+37085,1.5613058,Nickel,LB
+37085,8.1923,Acenaphthene,LB
+37085,4.481155,Methane,TON
+37085,2037.822,Carbon Monoxide,TON
+37085,14.31168,Ammonia,TON
+37085,2.586991,Organic Carbon portion of PM2.5-PRI,TON
+37085,17.67992,PM10 Primary (Filt + Cond),TON
+37085,0.1562491,Sulfate Portion of PM2.5-PRI,TON
+37077,0.61726,Styrene,LB
+37077,3.605638,Acrolein,LB
+37077,0.01098808,Benzo[b]Fluoranthene,LB
+37077,0.3590776,Fluoranthene,LB
+37077,0.03037096,Chrysene,LB
+37077,0.0003675496,Mercury,LB
+37077,30.97847,Carbon Monoxide,TON
+37077,0.03403088,Organic Carbon portion of PM2.5-PRI,TON
+37077,41.41082,Ethyl Benzene,LB
+37077,242.186,Toluene,LB
+37077,0.05790526,Anthracene,LB
+37059,2.150046,Anthracene,LB
+37059,5.355438,Pyrene,LB
+37059,181.43874,Xylenes (Mixed Isomers),LB
+37059,1.705744,Elemental Carbon portion of PM2.5-PRI,TON
+37059,1.6081472,Styrene,LB
+37059,0.003037658,"Dibenzo[a,h]Anthracene",LB
+37059,0.2517764,Benz[a]Anthracene,LB
+37059,0.2722124,PM25-Primary from certain diesel engines,TON
+37059,0.04309963,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.7947834,Ethyl Benzene,LB
+37057,2.963674,Xylenes (Mixed Isomers),LB
+37057,0.0012396192,"Benzo[g,h,i,]Perylene",LB
+37057,4.198052e-06,Nickel,LB
+37057,0.3405692,Acetaldehyde,LB
+37055,0.11286906,Styrene,LB
+37055,1.264112e-06,Chromium (VI),LB
+37055,0.0003459368,"Benzo[g,h,i,]Perylene",LB
+37055,0.04341844,Acenaphthylene,LB
+37055,0.0004493858,Sulfate Portion of PM2.5-PRI,TON
+37051,0.10414488,Benzo[b]Fluoranthene,LB
+37051,0.10022724,Benz[a]Anthracene,LB
+37051,0.2803908,Acenaphthene,LB
+37051,7720.885,Carbon Dioxide,TON
+37043,0.002308602,Anthracene,LB
+37043,0.002511346,"Benzo[g,h,i,]Perylene",LB
+37043,0.0007237234,Benzo[k]Fluoranthene,LB
+37043,0.0007366854,Benz[a]Anthracene,LB
+37043,0.9027352,Acetaldehyde,LB
+37043,0.0645428,Styrene,LB
+37043,0.09585219,Nitrogen Oxides,TON
+37043,0.002419742,PM10 Primary (Filt + Cond),TON
+37043,0.06920744,Volatile Organic Compounds,TON
+37039,242.8734,Formaldehyde,LB
+37039,0.13438952,Benzo[a]Pyrene,LB
+37039,25.62492,Naphthalene,LB
+37039,1.050027,PM10-Primary from certain diesel engines,TON
+37039,0.6528858,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.2328876,Acenaphthene,LB
+37039,3.83842,Toluene,LB
+37039,0.1964215,PM10 Primary (Filt + Cond),TON
+37025,0.02340654,Ethyl Benzene,LB
+37025,0.0009714882,Styrene,LB
+37025,0.0008247824,Acrolein,LB
+37025,3.957036e-06,Arsenic,LB
+37025,0.013669796,Acetaldehyde,LB
+37025,1.51056,Carbon Dioxide,TON
+37025,5.001108e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37025,3.38515e-05,Ammonia,TON
+37025,7.626619e-08,Nitrate portion of PM2.5-PRI,TON
+37025,3.166849e-05,Sulfur Dioxide,TON
+37171,2.019328,Propionaldehyde,LB
+37171,0.000480186,Fluoranthene,LB
+37167,1907.5418,Xylenes (Mixed Isomers),LB
+37167,0.224241,Benzo[b]Fluoranthene,LB
+37167,0.287686,Benzo[a]Pyrene,LB
+37167,859.4022,Benzene,LB
+37167,0.1065266,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,4.513405e-07,PM2.5 Primary (Filt + Cond),TON
+37161,0.0002752732,Ethyl Benzene,LB
+37161,8.814984e-06,Acrolein,LB
+37161,2.596208e-07,Benzo[b]Fluoranthene,LB
+37161,2.256136e-06,Acenaphthylene,LB
+37161,1.7947264e-08,Arsenic,LB
+37161,1.767724e-07,Nitrous Oxide,TON
+37141,1.7553938,Benz[a]Anthracene,LB
+37141,2.067138,Manganese,LB
+37141,1.6126116,Arsenic,LB
+37141,10.43801,Fluorene,LB
+37141,3.059492,Methane,TON
+37141,8.706044,Pyrene,LB
+37129,125.99506,Toluene,LB
+37129,36.40464,Benzene,LB
+37127,4.560968,Fluoranthene,LB
+37127,0.018684896,"Dibenzo[a,h]Anthracene",LB
+37127,1.4842234,Benz[a]Anthracene,LB
+37127,0.1936828,Methane,TON
+37121,3.138988,Acrolein,LB
+37121,2.906618,Toluene,LB
+37121,0.1324048,Anthracene,LB
+37121,0.0018577302,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,3.753158,Benzene,LB
+37121,4.684236e-06,Mercury,LB
+37121,0.1267158,Acenaphthene,LB
+37121,0.0909542,PM10-Primary from certain diesel engines,TON
+37111,0.0004780726,Benzo[a]Pyrene,LB
+37111,1.1079836e-05,"Dibenzo[a,h]Anthracene",LB
+37111,0.4408928,Benzene,LB
+37111,0.00041687,Acenaphthene,LB
+37111,0.0001572406,Nitrous Oxide,TON
+37111,0.007654646,Acrolein,LB
+37111,1.7477824e-07,Chromium (VI),LB
+37113,0.0003328436,Arsenic,LB
+37113,0.001198459,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.001203883,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,4.45078,Ethyl Benzene,LB
+37101,10.763086,Toluene,LB
+37101,0.003929316,"Dibenzo[a,h]Anthracene",LB
+37101,0.0599936,Ammonia,TON
+37101,0.3641576,PM2.5 Primary (Filt + Cond),TON
+37101,126.46824,Toluene,LB
+37101,135.92866,Xylenes (Mixed Isomers),LB
+37101,0.06014518,"Benzo[g,h,i,]Perylene",LB
+37101,656.8742,Acetaldehyde,LB
+37101,17.288308,Phenanthrene,LB
+37101,35.73899,Carbon Monoxide,TON
+37101,0.05979766,Nitrous Oxide,TON
+37101,0.01443525,Nitrous Oxide,TON
+37101,0.1724041,Ammonia,TON
+37101,0.00108432,Nitrate portion of PM2.5-PRI,TON
+37101,0.00017549708,Chromium (VI),LB
+37101,0.007245294,"Benzo[g,h,i,]Perylene",LB
+37101,558.6414,Formaldehyde,LB
+37101,4.676656,Phenanthrene,LB
+37101,10.499758,Naphthalene,LB
+37101,0.0005287847,Nitrate portion of PM2.5-PRI,TON
+37101,0.06330137,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,3.542293,Volatile Organic Compounds,TON
+37101,0.1671302,Benzo[a]Pyrene,LB
+37099,1.6436396,Propionaldehyde,LB
+37099,1.0618028e-05,Chromium (VI),LB
+37099,0.08254928,Benz[a]Anthracene,LB
+37099,0.02039482,Methane,TON
+37015,1.617145e-05,Sulfate Portion of PM2.5-PRI,TON
+37015,1.8716324e-05,Mercury,LB
+37015,0.000943064,Phenanthrene,LB
+37015,0.004758472,Styrene,LB
+37015,0.019163436,"1,3-Butadiene",LB
+37015,0.016746366,Acrolein,LB
+37163,0.0005821136,Benz[a]Anthracene,LB
+37163,0.0006952284,Nickel,LB
+37163,0.0005716948,Acenaphthene,LB
+37163,94.73484,Carbon Dioxide,TON
+37163,0.001369158,Nitrous Oxide,TON
+37163,0.001831485,PM2.5 Primary (Filt + Cond),TON
+37163,0.3320838,Ethyl Benzene,LB
+37163,0.0012856068,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.0009964028,Fluoranthene,LB
+37163,0.001568001,Anthracene,LB
+37163,3.746946,Xylenes (Mixed Isomers),LB
+37163,0.003592826,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.001891061,Benzo[b]Fluoranthene,LB
+37163,0.003546558,Benzo[a]Pyrene,LB
+37163,0.001638742,Benz[a]Anthracene,LB
+37163,5.44463,Benzene,LB
+37163,0.0016858102,Acenaphthene,LB
+37163,1.305438e-05,Nitrate portion of PM2.5-PRI,TON
+37163,0.1655199,Nitrogen Oxides,TON
+37163,0.005406895,PM2.5 Primary (Filt + Cond),TON
+37163,0.0001563824,Sulfate Portion of PM2.5-PRI,TON
+37151,11.821894,"2,2,4-Trimethylpentane",LB
+37149,0.05196458,Ethyl Benzene,LB
+37149,0.002629558,Styrene,LB
+37149,0.0002659738,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.00019540036,Manganese,LB
+37149,1.0577926e-05,Mercury,LB
+37149,0.00013189688,Nickel,LB
+37149,0.001034427,Methane,TON
+37149,0.1702662,Carbon Monoxide,TON
+37149,0.0003240477,PM2.5 Primary (Filt + Cond),TON
+37149,0.0005295083,Sulfur Dioxide,TON
+37105,3.58998,Ethyl Benzene,LB
+37105,0.03843826,"Benzo[g,h,i,]Perylene",LB
+37105,0.02868742,Acenaphthylene,LB
+37105,0.0003314906,"Dibenzo[a,h]Anthracene",LB
+37105,0.006507614,Benz[a]Anthracene,LB
+37105,17.379692,Benzene,LB
+37105,960.427,Carbon Dioxide,TON
+37105,0.8057328,Nitrogen Oxides,TON
+37105,0.02918358,Sulfur Dioxide,TON
+37017,0.001839748,Arsenic,LB
+37017,0.19178042,Fluorene,LB
+37017,2.915252,Naphthalene,LB
+37007,0.2521024,Acenaphthylene,LB
+37007,0.0676728,Benz[a]Anthracene,LB
+37007,4.057332,Benzene,LB
+37007,0.005660636,Nickel,LB
+37007,18.517548,Acetaldehyde,LB
+37007,0.0003126108,Nitrate portion of PM2.5-PRI,TON
+37007,0.01141555,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.2557294,Volatile Organic Compounds,TON
+37017,0.5539012,Xylenes (Mixed Isomers),LB
+37017,0.0786842,Acetaldehyde,LB
+37017,0.0005293786,Fluorene,LB
+37017,2.598572e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.0001321447,Nitrous Oxide,TON
+37003,2.395586,Phenanthrene,LB
+37003,0.002620706,Sulfate Portion of PM2.5-PRI,TON
+37003,137.34724,Formaldehyde,LB
+37059,0.18546664,Styrene,LB
+37059,5.20538,Hexane,LB
+37059,6.397246,"2,2,4-Trimethylpentane",LB
+37059,0.334182,Naphthalene,LB
+37059,0.02024989,Sulfur Dioxide,TON
+37047,5.88035,Ethyl Benzene,LB
+37047,0.05363014,"Benzo[g,h,i,]Perylene",LB
+37047,0.010694064,Benzo[b]Fluoranthene,LB
+37047,0.019895806,Benzo[a]Pyrene,LB
+37047,27.76878,Benzene,LB
+37047,0.0007690708,Mercury,LB
+37047,1382.639,Carbon Dioxide,TON
+37047,0.04200854,Sulfur Dioxide,TON
+37125,0.0007409082,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.09969333,Nitrogen Oxides,TON
+37125,1.6847492,"2,2,4-Trimethylpentane",LB
+37125,4.17624,Benzene,LB
+37125,0.0017877768,Nickel,LB
+37125,0.03665328,Styrene,LB
+37125,0.00245828,Pyrene,LB
+37199,128.28642,Acrolein,LB
+37199,5.536104,"Benzo[g,h,i,]Perylene",LB
+37199,2.080016,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,1.098821,Sulfur Dioxide,TON
+37199,6627.204,Benzene,LB
+37199,0.0278214,Mercury,LB
+37199,6.846396,Acenaphthene,LB
+37199,1.089291,Organic Carbon portion of PM2.5-PRI,TON
+37197,140.58186,Acrolein,LB
+37197,10.073014,Acenaphthylene,LB
+37197,0.534953,Chrysene,LB
+37197,0.4732046,Methane,TON
+37197,2.450961,Volatile Organic Compounds,TON
+37195,7.792866,Xylenes (Mixed Isomers),LB
+37195,2.402556,"2,2,4-Trimethylpentane",LB
+37195,0.2385854,Acenaphthene,LB
+37195,0.4135982,Fluorene,LB
+37195,679.2099,Carbon Dioxide,TON
+37195,0.00361232,Elemental Carbon portion of PM2.5-PRI,TON
+37195,0.005958729,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.3263638,"Benzo[g,h,i,]Perylene",LB
+37193,0.08954484,Benzo[b]Fluoranthene,LB
+37193,0.12286926,Benzo[a]Pyrene,LB
+37193,5.103568,Propionaldehyde,LB
+37193,3.88717,Nitrogen Oxides,TON
+37193,0.06764028,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.03179355,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.02319442,Pyrene,LB
+37187,0.00447612,Chrysene,LB
+37187,0.002777046,Manganese,LB
+37187,0.07484576,Phenanthrene,LB
+37181,0.13216058,Hexane,LB
+37181,0.00013404186,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,8.106754e-05,Benzo[k]Fluoranthene,LB
+37181,6.987794e-05,Chrysene,LB
+37181,0.0001070353,Methane,TON
+37181,0.0001369404,PM2.5 Primary (Filt + Cond),TON
+37181,4.027573e-06,Sulfate Portion of PM2.5-PRI,TON
+37181,0.002760052,Volatile Organic Compounds,TON
+37181,0.04999248,Acetaldehyde,LB
+37189,167.80136,Acetaldehyde,LB
+37189,0.8750962,PM10-Primary from certain diesel engines,TON
+37189,0.8591995,PM2.5 Primary (Filt + Cond),TON
+37189,19.014458,Propionaldehyde,LB
+37189,0.010102338,"Dibenzo[a,h]Anthracene",LB
+37185,1.930142,Acrolein,LB
+37185,140.14814,"2,2,4-Trimethylpentane",LB
+37185,0.03245082,Benz[a]Anthracene,LB
+37185,0.1023339,Acenaphthene,LB
+37185,726.9984,Carbon Dioxide,TON
+37185,0.06287595,PM10 Primary (Filt + Cond),TON
+37179,55.3279,Fluoranthene,LB
+37179,9.667614,Benzo[k]Fluoranthene,LB
+37179,11.364762,Manganese,LB
+37179,3.50604,Nickel,LB
+37179,539804,Carbon Dioxide,TON
+37179,5428.294,"1,3-Butadiene",LB
+37193,1.6503192e-05,Mercury,LB
+37193,0.02807083,Methane,TON
+37193,1042.949,Carbon Dioxide,TON
+37193,0.2272022,PM25-Primary from certain diesel engines,TON
+37193,0.002711852,Nitrous Oxide,TON
+37183,3.962206,Styrene,LB
+37183,0.15527764,Anthracene,LB
+37183,0.07081093,Ammonia,TON
+37085,0.2111282,PM2.5 Primary (Filt + Cond),TON
+37085,0.008257562,Sulfate Portion of PM2.5-PRI,TON
+37085,0.0006544068,Nitrate portion of PM2.5-PRI,TON
+37085,0.002714726,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.07826032,Chrysene,LB
+37085,56.1678,Hexane,LB
+37085,0.208994,Benzo[a]Pyrene,LB
+37067,1.5593716,Pyrene,LB
+37067,4.606058,"2,2,4-Trimethylpentane",LB
+37067,0.3833608,Benz[a]Anthracene,LB
+37067,1.1775404,Fluoranthene,LB
+37067,0.1714182,Organic Carbon portion of PM2.5-PRI,TON
+37067,2660.146,Carbon Dioxide,TON
+37063,0.0008124204,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.000565648,Fluoranthene,LB
+37063,0.0009553151,Sulfur Dioxide,TON
+37063,0.5647014,Toluene,LB
+37053,0.5364551,Elemental Carbon portion of PM2.5-PRI,TON
+37053,4.53265,Hexane,LB
+37053,0.6849822,Anthracene,LB
+37053,4.399402,"2,2,4-Trimethylpentane",LB
+37053,5.006062e-05,Chromium (VI),LB
+37053,1.490295,Fluoranthene,LB
+37053,6.026058,Ethyl Benzene,LB
+37053,0.0181147,Sulfate Portion of PM2.5-PRI,TON
+37053,6.299968,"2,2,4-Trimethylpentane",LB
+37053,5.952722,Benzene,LB
+37053,0.2866798,Naphthalene,LB
+37053,53.57044,Carbon Dioxide,TON
+37053,0.0007396575,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.10442932,Acrolein,LB
+37053,0.009152006,Pyrene,LB
+37053,0.12970804,Styrene,LB
+37045,0.3749788,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,350.138,Acetaldehyde,LB
+37045,11206.21,Carbon Dioxide,TON
+37045,2.655792,Anthracene,LB
+37045,7.616816,Pyrene,LB
+37047,0.1703141,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.01712535,"Dibenzo[a,h]Anthracene",LB
+37047,0.2123144,Nickel,LB
+37047,11.194496,Phenanthrene,LB
+37045,0.16824606,Fluoranthene,LB
+37045,2.66075,Styrene,LB
+37045,2.193292,Acrolein,LB
+37045,0.15991956,"Benzo[g,h,i,]Perylene",LB
+37045,0.0600853,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,36.40146,Formaldehyde,LB
+37045,48.94365,Carbon Monoxide,TON
+37033,0.0011394944,Benzo[k]Fluoranthene,LB
+37033,0.011752416,Acenaphthylene,LB
+37033,1.676078,Ethyl Benzene,LB
+37033,0.00521115,Fluorene,LB
+37033,0.0003560034,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.004779543,PM10 Primary (Filt + Cond),TON
+37025,1.5449872e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,8.79786e-07,Benzo[k]Fluoranthene,LB
+37025,3.545528e-08,"Dibenzo[a,h]Anthracene",LB
+37025,7.121572e-09,Nitrate portion of PM2.5-PRI,TON
+37025,0.0007335914,Ethyl Benzene,LB
+37029,0.5022336,Carbon Monoxide,TON
+37029,0.1139135,"1,3-Butadiene",LB
+37029,0.02302144,Acrolein,LB
+37029,0.6328002,Hexane,LB
+37029,1.8024272,Xylenes (Mixed Isomers),LB
+37029,3.315816e-07,Chromium (VI),LB
+37029,0.0008830708,"Benzo[g,h,i,]Perylene",LB
+37029,0.0002562848,Benz[a]Anthracene,LB
+37175,0.005258218,Styrene,LB
+37175,0.01938596,Acrolein,LB
+37175,0.00016667146,Anthracene,LB
+37155,0.002664886,Anthracene,LB
+37155,0.6599666,Propionaldehyde,LB
+37155,0.005799162,Pyrene,LB
+37155,0.04482665,PM10 Primary (Filt + Cond),TON
+37177,0.0002441226,"Dibenzo[a,h]Anthracene",LB
+37177,0.8740078,"1,3-Butadiene",LB
+37169,0.0018506264,Styrene,LB
+37169,3.398358e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,2.40596e-05,Benzo[b]Fluoranthene,LB
+37169,5.29279e-08,Mercury,LB
+37169,9.491583e-08,Nitrate portion of PM2.5-PRI,TON
+37169,0.002002331,Nitrogen Oxides,TON
+37169,0.001456707,Volatile Organic Compounds,TON
+37165,1.3765112,Hexane,LB
+37165,0.0865536,Benz[a]Anthracene,LB
+37165,664.5811,Carbon Dioxide,TON
+37163,0.6234832,PM10 Primary (Filt + Cond),TON
+37163,0.009523616,Sulfate Portion of PM2.5-PRI,TON
+37163,12.708834,Toluene,LB
+37163,0.1371798,Benzo[a]Pyrene,LB
+37163,1.3516988,Fluorene,LB
+37161,10.596718,Xylenes (Mixed Isomers),LB
+37161,0.0021442,"Benzo[g,h,i,]Perylene",LB
+37161,0.6451046,Fluoranthene,LB
+37161,0.7877766,Acenaphthylene,LB
+37161,0.000702554,"Dibenzo[a,h]Anthracene",LB
+37161,0.4686362,Acenaphthene,LB
+37161,0.81655,Fluorene,LB
+37161,0.06881174,Methane,TON
+37161,0.2053597,PM10 Primary (Filt + Cond),TON
+37161,0.09451983,PM10 Primary (Filt + Cond),TON
+37161,0.01558704,Sulfur Dioxide,TON
+37161,22.67474,Ethyl Benzene,LB
+37161,0.9793234,Styrene,LB
+37161,0.19890364,Acenaphthylene,LB
+37161,0.0017126226,Nickel,LB
+37161,2.26784,Naphthalene,LB
+37159,0.1727144,Organic Carbon portion of PM2.5-PRI,TON
+37151,5.833486,PM25-Primary from certain diesel engines,TON
+37151,3.763459,Elemental Carbon portion of PM2.5-PRI,TON
+37151,1.056577,Ammonia,TON
+37151,1.218748,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.04671888,"Benzo[g,h,i,]Perylene",LB
+37151,0.0289395,Benzo[k]Fluoranthene,LB
+37151,0.0008623434,Mercury,LB
+37151,1089.2724,Acetaldehyde,LB
+37151,10.345908,Fluorene,LB
+37151,1.1143232,Ethyl Benzene,LB
+37151,0.0011143416,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.000253137,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,2.18322,Pyrene,LB
+37139,0.010025054,"Benzo[g,h,i,]Perylene",LB
+37139,0.5415894,Benz[a]Anthracene,LB
+37139,6.371272,Ethyl Benzene,LB
+37139,12.228276,Toluene,LB
+37139,0.6537772,Acenaphthene,LB
+37139,0.5367491,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.011956494,Benz[a]Anthracene,LB
+37191,0.0009714196,Mercury,LB
+37191,0.0251207,Fluorene,LB
+37191,12.16032,Hexane,LB
+37191,0.02417488,Pyrene,LB
+37191,0.013790418,Benzo[k]Fluoranthene,LB
+37191,1.432112,Nitrogen Oxides,TON
+37159,843.5818,Styrene,LB
+37159,71.53572,Fluorene,LB
+37159,7949.006,Carbon Monoxide,TON
+37159,31.98606,Ammonia,TON
+37159,40.84163,PM10 Primary (Filt + Cond),TON
+37153,0.9050264,Ethyl Benzene,LB
+37153,0.13561484,Fluorene,LB
+37153,2.671419,Carbon Monoxide,TON
+37153,0.01925587,PM10 Primary (Filt + Cond),TON
+37147,0.19365126,Benzo[b]Fluoranthene,LB
+37147,6.499564,Fluoranthene,LB
+37147,4.47529,Acenaphthylene,LB
+37147,0.0552549,Arsenic,LB
+37147,0.1062524,Sulfur Dioxide,TON
+37145,33.29792,Ethyl Benzene,LB
+37145,2.792536,Anthracene,LB
+37145,0.003097422,Benzo[k]Fluoranthene,LB
+37145,0.07498648,Benzo[a]Pyrene,LB
+37145,4789.368,Carbon Dioxide,TON
+37145,0.118443,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.05587245,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.02275532,Sulfate Portion of PM2.5-PRI,TON
+37145,0.05901172,Acenaphthene,LB
+37145,0.02469388,Ammonia,TON
+37145,0.002552502,Benzo[a]Pyrene,LB
+37145,5.799008e-05,"Dibenzo[a,h]Anthracene",LB
+37145,7.81029,"2,2,4-Trimethylpentane",LB
+37145,0.009592914,Acenaphthene,LB
+37145,0.0005310842,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,7.841292,Hexane,LB
+37141,0.03525218,"1,3-Butadiene",LB
+37141,2.343428,Propionaldehyde,LB
+37141,0.2088896,Xylenes (Mixed Isomers),LB
+37141,0.0005220232,Fluoranthene,LB
+37141,3.695902e-05,Mercury,LB
+37141,2.997445e-06,Nitrate portion of PM2.5-PRI,TON
+37135,0.2155685,PM2.5 Primary (Filt + Cond),TON
+37135,3.231692,Acrolein,LB
+37135,0.0012350956,Benzo[k]Fluoranthene,LB
+37135,0.2107596,Acenaphthylene,LB
+37135,0.02974004,Benzo[a]Pyrene,LB
+37135,0.5008346,Phenanthrene,LB
+37135,0.1941732,"1,3-Butadiene",LB
+37135,0.0004743354,Chrysene,LB
+37135,0.0004973768,Benz[a]Anthracene,LB
+37135,0.00011452806,Manganese,LB
+37135,9.783638e-07,Mercury,LB
+37135,0.001477618,Methane,TON
+37135,0.0001518929,Elemental Carbon portion of PM2.5-PRI,TON
+37135,2.18775e-06,Nitrate portion of PM2.5-PRI,TON
+37135,0.03459502,Nitrogen Oxides,TON
+37135,0.02492738,Volatile Organic Compounds,TON
+37093,1425.3674,"2,2,4-Trimethylpentane",LB
+37093,162.39808,Benzene,LB
+37091,0.011353756,Benzene,LB
+37091,1.354248e-08,Mercury,LB
+37091,1.1314416e-05,Acenaphthene,LB
+37091,1.843214e-06,Sulfur Dioxide,TON
+37083,0.013037798,Arsenic,LB
+37083,0.248821,PM25-Primary from certain diesel engines,TON
+37083,0.004453507,Nitrous Oxide,TON
+37083,0.01668335,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,18.747064,Acrolein,LB
+37083,12.57833,Propionaldehyde,LB
+37083,16.178134,Xylenes (Mixed Isomers),LB
+37081,31163.48,Ethyl Benzene,LB
+37081,18.554348,Benzo[k]Fluoranthene,LB
+37081,0.6750102,"Dibenzo[a,h]Anthracene",LB
+37081,1.122596,Sulfate Portion of PM2.5-PRI,TON
+37079,0.0001289002,Nitrate portion of PM2.5-PRI,TON
+37077,1.1855984,Anthracene,LB
+37077,19.606816,Xylenes (Mixed Isomers),LB
+37077,0.4913488,Chrysene,LB
+37077,0.11407572,Manganese,LB
+37077,0.9966686,Elemental Carbon portion of PM2.5-PRI,TON
+37077,1.859856,Volatile Organic Compounds,TON
+37073,842.8092,Ethyl Benzene,LB
+37073,0.01340356,Mercury,LB
+37073,443.8086,Acetaldehyde,LB
+37073,6.633696,Phenanthrene,LB
+37069,0.02264972,Anthracene,LB
+37069,0.3228572,Propionaldehyde,LB
+37069,0.0003084814,"Benzo[g,h,i,]Perylene",LB
+37069,0.5717876,Benzene,LB
+37069,0.0002371386,Arsenic,LB
+37069,0.0004251588,Sulfate Portion of PM2.5-PRI,TON
+37059,1.4122778e-06,Nickel,LB
+37059,1.295856e-06,Nitrate portion of PM2.5-PRI,TON
+37059,0.0129502,PM10 Primary (Filt + Cond),TON
+37059,0.06040453,Volatile Organic Compounds,TON
+37061,3098.582,Hexane,LB
+37061,466.3178,Benzene,LB
+37049,0.003828022,"Benzo[g,h,i,]Perylene",LB
+37047,3.700477e-06,PM2.5 Primary (Filt + Cond),TON
+37047,4.662821e-05,Volatile Organic Compounds,TON
+37047,1.068996e-08,Nitrate portion of PM2.5-PRI,TON
+37047,0.0002108861,Nitrogen Oxides,TON
+37047,6.08087e-06,PM10 Primary (Filt + Cond),TON
+37047,0.0003358138,"1,3-Butadiene",LB
+37043,4.588136,Toluene,LB
+37043,0.0004401544,Benzo[a]Pyrene,LB
+37043,1.0025636,"2,2,4-Trimethylpentane",LB
+37043,0.0003296888,Manganese,LB
+37043,0.0009240383,Ammonia,TON
+37047,0.9671,Acetaldehyde,LB
+37047,0.003287188,"Benzo[g,h,i,]Perylene",LB
+37047,0.013501006,Acenaphthylene,LB
+37047,54225.08,Toluene,LB
+37047,12078.358,Hexane,LB
+37047,5.601966,Benzo[a]Pyrene,LB
+37047,0.10610616,Mercury,LB
+37047,1.3230262,Nickel,LB
+37047,4415.367,Carbon Monoxide,TON
+37047,1.194559,Elemental Carbon portion of PM2.5-PRI,TON
+37047,14.07243,PM10 Primary (Filt + Cond),TON
+37041,1.9278078e-05,"Dibenzo[a,h]Anthracene",LB
+37041,1.6688388,"2,2,4-Trimethylpentane",LB
+37041,0.0001269479,Arsenic,LB
+37041,0.4343978,"1,3-Butadiene",LB
+37041,8.039242,Toluene,LB
+37041,0.002235372,"Benzo[g,h,i,]Perylene",LB
+37041,0.004078618,Fluoranthene,LB
+37037,6036.456,Xylenes (Mixed Isomers),LB
+37033,1.2612832,Toluene,LB
+37033,0.0003451908,Anthracene,LB
+37033,0.0006897038,Pyrene,LB
+37033,5.898424e-08,Chromium (VI),LB
+37033,0.00019599148,Benz[a]Anthracene,LB
+37033,0.0001951378,Organic Carbon portion of PM2.5-PRI,TON
+37033,7.991422e-05,Sulfur Dioxide,TON
+37141,1.816108,"1,3-Butadiene",LB
+37141,19.32692,Hexane,LB
+37141,0.02756088,"Benzo[g,h,i,]Perylene",LB
+37141,0.002768468,Manganese,LB
+37141,5.49741e-05,Mercury,LB
+37141,0.012825674,Fluorene,LB
+37141,3.232399,Carbon Monoxide,TON
+37141,0.003390701,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.002367357,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.004174692,Sulfur Dioxide,TON
+37137,2.395888,Ethyl Benzene,LB
+37125,5.657912,Ethyl Benzene,LB
+37125,0.00421476,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,1.6893718,Phenanthrene,LB
+37125,0.08163637,Methane,TON
+37125,0.02825934,Ammonia,TON
+37107,19.713108,Propionaldehyde,LB
+37107,4.078074,Pyrene,LB
+37107,4.739764,Phenanthrene,LB
+37107,1.690998,PM2.5 Primary (Filt + Cond),TON
+37107,0.4881258,Propionaldehyde,LB
+37107,9.370468e-06,Chromium (VI),LB
+37107,0.001171303,Nickel,LB
+37107,0.05766462,Fluorene,LB
+37087,60.68386,Acrolein,LB
+37087,65.04298,Xylenes (Mixed Isomers),LB
+37087,21.33686,"2,2,4-Trimethylpentane",LB
+37087,1.8085108,Benz[a]Anthracene,LB
+37087,0.09437269,Sulfate Portion of PM2.5-PRI,TON
+37073,0.05606444,Benzo[a]Pyrene,LB
+37073,0.0325893,Manganese,LB
+37073,0.01815412,Nickel,LB
+37073,1.0707302,Phenanthrene,LB
+37073,10.304576,Naphthalene,LB
+37073,3.070684,Carbon Monoxide,TON
+37073,0.4128625,PM10-Primary from certain diesel engines,TON
+37073,2.81747,"1,3-Butadiene",LB
+37073,0.8207676,Pyrene,LB
+37073,0.016728614,Benzo[b]Fluoranthene,LB
+37073,0.4777578,Acenaphthylene,LB
+37081,41.92212,"1,3-Butadiene",LB
+37081,1227.2852,Toluene,LB
+37081,397.054,Benzene,LB
+37081,0.15201922,Manganese,LB
+37081,0.7363236,Fluorene,LB
+37081,0.1726955,Sulfur Dioxide,TON
+37081,0.008937669,Sulfate Portion of PM2.5-PRI,TON
+37053,331.9886,Formaldehyde,LB
+37053,27.97118,Benzene,LB
+37053,33.14712,Naphthalene,LB
+37053,0.2334033,Ammonia,TON
+37053,0.003038978,Nitrate portion of PM2.5-PRI,TON
+37053,1.592522,Volatile Organic Compounds,TON
+37053,8.03271,"1,3-Butadiene",LB
+37053,29.06968,Toluene,LB
+37053,0.000153793,Chromium (VI),LB
+37053,0.05098318,Benzo[b]Fluoranthene,LB
+37067,30.7312,"1,3-Butadiene",LB
+37067,902.2428,Toluene,LB
+37067,0.502029,"Benzo[g,h,i,]Perylene",LB
+37067,0.1174705,Benzo[b]Fluoranthene,LB
+37067,86.94504,Formaldehyde,LB
+37067,0.020711,Nickel,LB
+37067,0.269616,Acenaphthene,LB
+37061,0.05894706,Benz[a]Anthracene,LB
+37061,1.0125268e-05,Mercury,LB
+37061,0.0128741,Methane,TON
+37061,3.17455,Nitrogen Oxides,TON
+37061,1.9304196,Toluene,LB
+37061,0.14465394,Acenaphthylene,LB
+37061,0.03427388,Chrysene,LB
+37043,0.2384494,Anthracene,LB
+37043,0.3856608,Acenaphthylene,LB
+37043,2.66537,"2,2,4-Trimethylpentane",LB
+37043,0.09246598,Methane,TON
+37039,15.641756,Acetaldehyde,LB
+37039,0.1792374,Fluorene,LB
+37039,258.6747,Carbon Dioxide,TON
+37039,0.005342188,PM25-Primary from certain diesel engines,TON
+37039,3.774402e-05,Nitrate portion of PM2.5-PRI,TON
+37039,0.0003663692,"Benzo[g,h,i,]Perylene",LB
+37039,6.205512e-05,"Dibenzo[a,h]Anthracene",LB
+37039,1.03829,"1,3-Butadiene",LB
+37047,6.420578,Hexane,LB
+37047,0.006131356,Anthracene,LB
+37047,0.00364308,Benzo[b]Fluoranthene,LB
+37047,0.00364308,Benzo[k]Fluoranthene,LB
+37047,0.003096226,Chrysene,LB
+37047,0.006087372,Benzo[a]Pyrene,LB
+37047,0.003010488,Manganese,LB
+37047,3.449648,Carbon Monoxide,TON
+37047,0.003528548,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.0002164834,Sulfate Portion of PM2.5-PRI,TON
+37047,0.129731,Volatile Organic Compounds,TON
+37039,0.005094626,Pyrene,LB
+37039,0.0012169166,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.001199299,Nitrous Oxide,TON
+37039,3.397535e-06,Nitrate portion of PM2.5-PRI,TON
+37039,0.001901165,PM10 Primary (Filt + Cond),TON
+37039,0.3169658,Anthracene,LB
+37039,0.0296416,Nickel,LB
+37039,0.2367723,Methane,TON
+37039,77.21034,Carbon Monoxide,TON
+37037,10.563072,Ethyl Benzene,LB
+37037,0.00529901,Benzo[k]Fluoranthene,LB
+37037,13.910036,"2,2,4-Trimethylpentane",LB
+37037,0.000827912,Manganese,LB
+37037,0.001801702,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.0001746447,Sulfate Portion of PM2.5-PRI,TON
+37035,0.0011497056,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,9.371222,Acetaldehyde,LB
+37035,2.366,Naphthalene,LB
+37035,0.4206247,Carbon Monoxide,TON
+37035,0.003702268,Ammonia,TON
+37035,0.000264649,Nitrate portion of PM2.5-PRI,TON
+37035,0.06799962,PM10 Primary (Filt + Cond),TON
+37035,0.001422496,Sulfate Portion of PM2.5-PRI,TON
+37031,0.222978,Acrolein,LB
+37031,0.011558786,Acenaphthene,LB
+37031,0.001407284,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.0015709736,"Dibenzo[a,h]Anthracene",LB
+37025,0.3387128,Fluorene,LB
+37025,4.99304,Nitrogen Oxides,TON
+37025,0.2786312,Volatile Organic Compounds,TON
+37025,1.7364758,Ethyl Benzene,LB
+37025,0.2498006,Acenaphthylene,LB
+37025,942.5416,Benzene,LB
+37199,0.03457882,Manganese,LB
+37199,3.430835,Carbon Monoxide,TON
+37199,1699.663,Carbon Dioxide,TON
+37199,0.6807634,Volatile Organic Compounds,TON
+37193,0.6082042,Carbon Monoxide,TON
+37193,0.0006797302,PM2.5 Primary (Filt + Cond),TON
+37193,6.272424,Toluene,LB
+37193,7.614446e-07,Mercury,LB
+37193,9.494298e-06,Nickel,LB
+37195,0.12120322,Chrysene,LB
+37195,1.0622196,Acenaphthene,LB
+37195,1.7841246,Pyrene,LB
+37195,0.3551964,PM25-Primary from certain diesel engines,TON
+37195,184.86012,Xylenes (Mixed Isomers),LB
+37195,0.006138556,Nickel,LB
+37195,0.01238413,Elemental Carbon portion of PM2.5-PRI,TON
+37195,4.110553,Nitrogen Oxides,TON
+37195,0.1736463,PM10 Primary (Filt + Cond),TON
+37189,1.5236046e-07,"Dibenzo[a,h]Anthracene",LB
+37019,725.1016,Ethyl Benzene,LB
+37019,0.9107932,Fluoranthene,LB
+37019,2.836618,Acenaphthylene,LB
+37019,0.2463678,Benzo[a]Pyrene,LB
+37019,856.9256,Benzene,LB
+37019,0.0480429,Arsenic,LB
+37015,2.302298,Phenanthrene,LB
+37015,0.04022222,Methane,TON
+37015,5.139801,Carbon Monoxide,TON
+37015,0.003403334,Nitrous Oxide,TON
+37015,0.02444566,Sulfur Dioxide,TON
+37015,4.283734,"2,2,4-Trimethylpentane",LB
+37003,0.3265336,Chrysene,LB
+37003,3.210412e-05,Mercury,LB
+37003,87.1995,Acetaldehyde,LB
+37003,0.6934354,Acenaphthene,LB
+37003,0.03643348,Ammonia,TON
+37023,95.66102,Ethyl Benzene,LB
+37023,16.810844,Pyrene,LB
+37023,0.09875382,Benzo[b]Fluoranthene,LB
+37023,13.654332,Fluoranthene,LB
+37023,68.91112,"2,2,4-Trimethylpentane",LB
+37023,0.0463843,Nitrous Oxide,TON
+37003,3.05449,Acetaldehyde,LB
+37003,0.00320454,Nitrous Oxide,TON
+37003,7.300164e-06,Nitrate portion of PM2.5-PRI,TON
+37003,0.00206213,Benzo[b]Fluoranthene,LB
+37003,0.00206213,Benzo[k]Fluoranthene,LB
+37003,0.04126912,Acenaphthylene,LB
+37001,29.01916,Ethyl Benzene,LB
+37039,0.0007897676,"Benzo[g,h,i,]Perylene",LB
+37039,0.000156105,Nickel,LB
+37039,7.87292e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.2480694,Propionaldehyde,LB
+37035,1.9829908,Formaldehyde,LB
+37035,1.1379074,"2,2,4-Trimethylpentane",LB
+37035,12.299804,Acetaldehyde,LB
+37037,0.003380148,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.18209258,Styrene,LB
+37037,0.7527796,"1,3-Butadiene",LB
+37037,1.5174012,Propionaldehyde,LB
+37037,0.0003180158,"Dibenzo[a,h]Anthracene",LB
+37037,0.006291068,Benz[a]Anthracene,LB
+37165,0.0284554,"1,3-Butadiene",LB
+37165,0.241001,Hexane,LB
+37165,0.0003299366,Benzo[b]Fluoranthene,LB
+37165,0.0003299366,Benzo[k]Fluoranthene,LB
+37165,0.7292656,Benzene,LB
+37165,0.0005302906,Arsenic,LB
+37165,0.0014315032,Phenanthrene,LB
+37165,0.002392003,Ammonia,TON
+37165,2.342298e-06,Nitrate portion of PM2.5-PRI,TON
+37165,0.003521216,PM10 Primary (Filt + Cond),TON
+37147,0.03056752,Pyrene,LB
+37147,0.00012675876,Chromium (VI),LB
+37147,0.08920596,"Benzo[g,h,i,]Perylene",LB
+37147,37.78578,Toluene,LB
+37147,0.07236292,Acenaphthylene,LB
+37147,0.0007693828,"Dibenzo[a,h]Anthracene",LB
+37147,0.015275084,Benz[a]Anthracene,LB
+37147,0.015638392,Acenaphthene,LB
+37137,0.02969125,Volatile Organic Compounds,TON
+37119,15.713232,Propionaldehyde,LB
+37119,139.2958,Xylenes (Mixed Isomers),LB
+37119,0.07286128,Chrysene,LB
+37119,127.87702,Formaldehyde,LB
+37119,0.007326016,Mercury,LB
+37119,0.1320433,Fluorene,LB
+37119,106.6709,Carbon Monoxide,TON
+37119,0.1321463,Organic Carbon portion of PM2.5-PRI,TON
+37091,2.641092e-05,"Dibenzo[a,h]Anthracene",LB
+37091,0.000630032,Acenaphthene,LB
+37091,0.005481408,PM10 Primary (Filt + Cond),TON
+37091,6.50846e-06,Chromium (VI),LB
+37173,1.4516808,Pyrene,LB
+37173,3.757072e-05,Chromium (VI),LB
+37173,0.0314213,Benzo[b]Fluoranthene,LB
+37173,0.7864032,Acenaphthylene,LB
+37173,0.3480504,Benz[a]Anthracene,LB
+37173,12.941626,Benzene,LB
+37173,0.02289018,Nickel,LB
+37173,59.33358,Acetaldehyde,LB
+37173,0.03195256,Methane,TON
+37193,89.92558,Toluene,LB
+37193,0.0214674,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,2.861676,Acenaphthylene,LB
+37193,0.0747349,Arsenic,LB
+37193,344.05,Acetaldehyde,LB
+37193,27924.75,Carbon Dioxide,TON
+37193,2.341984,PM25-Primary from certain diesel engines,TON
+37185,39.86128,Acrolein,LB
+37185,20.94304,Propionaldehyde,LB
+37185,1.7922346,Acenaphthylene,LB
+37185,0.005571258,"Dibenzo[a,h]Anthracene",LB
+37185,2.258484,Fluorene,LB
+37185,1.383213,PM10-Primary from certain diesel engines,TON
+37185,0.01346456,Nitrous Oxide,TON
+37185,0.2469095,Ammonia,TON
+37185,43.85948,Nitrogen Oxides,TON
+37185,1.931433,PM10 Primary (Filt + Cond),TON
+37195,0.03996878,"2,2,4-Trimethylpentane",LB
+37195,0.10781292,Benzene,LB
+37195,0.04149502,Ethyl Benzene,LB
+37195,7.934706e-05,Anthracene,LB
+37195,0.15263858,Xylenes (Mixed Isomers),LB
+37195,7546.71,Xylenes (Mixed Isomers),LB
+37195,58.7477,Volatile Organic Compounds,TON
+37189,0.09544486,Anthracene,LB
+37189,0.0012752094,"Benzo[g,h,i,]Perylene",LB
+37189,0.009724478,Manganese,LB
+37189,0.0018799964,Arsenic,LB
+37189,0.02408161,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.01381286,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.0001480251,Ammonia,TON
+37187,0.04646403,Nitrogen Oxides,TON
+37187,0.0004361606,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.0008737838,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.01032404,Acenaphthylene,LB
+37187,2.076914e-05,Arsenic,LB
+37187,0.11769654,Naphthalene,LB
+37179,36.3588,"1,3-Butadiene",LB
+37179,4.009636,Anthracene,LB
+37179,17063.51,Carbon Dioxide,TON
+37179,2.715804,PM25-Primary from certain diesel engines,TON
+37179,1.239205,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.145194,Sulfur Dioxide,TON
+37023,0.0595347,Benzo[b]Fluoranthene,LB
+37023,0.6590112,Acenaphthylene,LB
+37023,3.382604,Styrene,LB
+37023,0.04736326,Sulfur Dioxide,TON
+37199,0.008979682,Benzo[a]Pyrene,LB
+37199,0.004217154,Manganese,LB
+37199,0.002873964,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.2828958,Benzo[a]Pyrene,LB
+37197,0.0002697166,Mercury,LB
+37197,0.11614528,Nickel,LB
+37197,20646.33,Carbon Dioxide,TON
+37197,0.1762856,Sulfur Dioxide,TON
+37197,3.028221,Volatile Organic Compounds,TON
+37195,0.0007156646,"Dibenzo[a,h]Anthracene",LB
+37195,0.02664732,Organic Carbon portion of PM2.5-PRI,TON
+37195,0.008797379,Sulfur Dioxide,TON
+37193,0.012327952,Manganese,LB
+37193,4.075048,Ethyl Benzene,LB
+37193,0.7275054,Acrolein,LB
+37193,3.839976e-05,Chromium (VI),LB
+37193,0.012017494,Benzo[a]Pyrene,LB
+37193,0.0003849492,Mercury,LB
+37193,0.00714519,Acenaphthene,LB
+37193,0.7442667,Nitrogen Oxides,TON
+37185,92.97316,Toluene,LB
+37185,0.491337,Propionaldehyde,LB
+37185,26.3561,Benzene,LB
+37185,0.00761633,Manganese,LB
+37185,0.00015058552,Mercury,LB
+37185,0.05099154,Fluorene,LB
+37185,0.4655219,Volatile Organic Compounds,TON
+37197,0.2454046,Styrene,LB
+37197,5.94386,"2,2,4-Trimethylpentane",LB
+37197,12.75096,Benzene,LB
+37197,0.003105756,Manganese,LB
+37197,0.0002204827,Sulfate Portion of PM2.5-PRI,TON
+37183,2.261074e-05,Chromium (VI),LB
+37183,0.07716682,Acenaphthene,LB
+37183,0.02105417,Sulfur Dioxide,TON
+37183,1.7807166,Styrene,LB
+37017,0.1386488,Styrene,LB
+37017,2.694466e-06,Chromium (VI),LB
+37017,0.02861208,Acenaphthylene,LB
+37017,0.002495714,Benzo[a]Pyrene,LB
+37017,7.305818,Benzene,LB
+37017,1.9873124,Acetaldehyde,LB
+37017,0.001553391,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,0.0002458188,"Dibenzo[a,h]Anthracene",LB
+37015,0.008251146,Benz[a]Anthracene,LB
+37015,0.00171561,Nickel,LB
+37003,0.006611711,Sulfur Dioxide,TON
+37003,1.235954,Volatile Organic Compounds,TON
+37003,41.62022,Ethyl Benzene,LB
+37003,258.7854,Toluene,LB
+37003,0.006618714,Manganese,LB
+37003,37.83726,Toluene,LB
+37003,0.02327016,Pyrene,LB
+37003,0.001628934,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.003848823,PM2.5 Primary (Filt + Cond),TON
+37057,4.013782e-05,"Dibenzo[a,h]Anthracene",LB
+37057,6.535634e-05,Mercury,LB
+37057,0.6812776,Hexane,LB
+37057,0.0009114034,Benzo[b]Fluoranthene,LB
+37007,0.00014619756,Nickel,LB
+37007,0.001037302,Methane,TON
+37007,9.25993e-07,Nitrate portion of PM2.5-PRI,TON
+37007,0.000149068,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.2499878,Toluene,LB
+37007,0.2192096,Xylenes (Mixed Isomers),LB
+37007,0.00018416166,Fluoranthene,LB
+37007,0.0001111727,Benz[a]Anthracene,LB
+37165,0.589827,Ethyl Benzene,LB
+37165,0.02805804,Styrene,LB
+37165,0.006368796,"Benzo[g,h,i,]Perylene",LB
+37165,0.0009409606,Chrysene,LB
+37165,0.002628242,Arsenic,LB
+37165,0.005571244,Phenanthrene,LB
+37165,0.0006084094,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.01185173,Ammonia,TON
+37165,9.328031e-06,Nitrate portion of PM2.5-PRI,TON
+37159,2.376488,Toluene,LB
+37159,0.0013055168,Benzo[k]Fluoranthene,LB
+37159,0.00248183,Benzo[a]Pyrene,LB
+37159,0.0011223984,Benz[a]Anthracene,LB
+37159,0.00201699,Fluorene,LB
+37139,0.1516556,Ethyl Benzene,LB
+37139,0.0002391724,Anthracene,LB
+37139,0.0004971584,Pyrene,LB
+37139,0.0002597166,Benzo[b]Fluoranthene,LB
+37139,0.0012012144,Acenaphthylene,LB
+37139,0.2872808,"2,2,4-Trimethylpentane",LB
+37139,0.013566086,Naphthalene,LB
+37175,1.4393388,Ethyl Benzene,LB
+37175,0.0007997392,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.8700816,Formaldehyde,LB
+37175,0.001249394,Manganese,LB
+37175,0.00014595362,Arsenic,LB
+37175,0.0005266276,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.000638894,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,4.146512e-05,Sulfate Portion of PM2.5-PRI,TON
+37173,5.473608e-05,Chrysene,LB
+37173,0.0007296276,Phenanthrene,LB
+37173,3.022717e-07,Nitrate portion of PM2.5-PRI,TON
+37171,0.17108164,Styrene,LB
+37171,0.0004613084,"Benzo[g,h,i,]Perylene",LB
+37171,0.002145786,Benzo[b]Fluoranthene,LB
+37171,0.0661825,Acenaphthylene,LB
+37171,12.406758,Formaldehyde,LB
+37171,1.3453276,Naphthalene,LB
+37171,0.0002875695,Nitrous Oxide,TON
+37171,0.01016458,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.03571395,PM10 Primary (Filt + Cond),TON
+37171,0.02810328,PM2.5 Primary (Filt + Cond),TON
+37171,0.000781611,Sulfate Portion of PM2.5-PRI,TON
+37159,1.4878328,Benzene,LB
+37159,3.011296e-06,Mercury,LB
+37159,0.3261924,Carbon Monoxide,TON
+37159,0.0557473,PM10 Primary (Filt + Cond),TON
+37159,0.05765198,Anthracene,LB
+37159,0.12644006,Fluoranthene,LB
+37159,0.0241096,Chrysene,LB
+37151,0.000474202,Ammonia,TON
+37151,0.1321109,Volatile Organic Compounds,TON
+37151,0.002135768,Benz[a]Anthracene,LB
+37151,0.037098,Phenanthrene,LB
+37143,1.4740446,Styrene,LB
+37143,9.966948,Acrolein,LB
+37143,7.0407e-05,Chromium (VI),LB
+37143,0.7518418,Fluoranthene,LB
+37143,14.28914,Naphthalene,LB
+37143,0.08948486,Acenaphthene,LB
+37143,0.0598987,PM10-Primary from certain diesel engines,TON
+37143,0.0350538,Elemental Carbon portion of PM2.5-PRI,TON
+37143,0.00456872,Ammonia,TON
+37143,0.8787182,Ethyl Benzene,LB
+37143,0.3909734,Styrene,LB
+37143,1.707219,Toluene,LB
+37143,0.0007150652,"Benzo[g,h,i,]Perylene",LB
+37143,0.6471798,"2,2,4-Trimethylpentane",LB
+37143,2.51424,Benzene,LB
+37143,0.00103714,Arsenic,LB
+37143,0.8604256,Anthracene,LB
+37143,0.0949548,Chrysene,LB
+37143,2.753,Phenanthrene,LB
+37143,0.277944,PM10-Primary from certain diesel engines,TON
+37143,0.06942436,Ammonia,TON
+37143,0.0172181,Sulfur Dioxide,TON
+37141,58.29272,Benzene,LB
+37141,0.0003269726,Mercury,LB
+37141,24992.41,Carbon Dioxide,TON
+37141,0.02540947,Nitrous Oxide,TON
+37141,7.903368,Styrene,LB
+37141,0.0150792,Benzo[k]Fluoranthene,LB
+37141,3.090764,Acenaphthylene,LB
+37139,0.00015465308,Chromium (VI),LB
+37139,0.00563088,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.08875112,Nickel,LB
+37139,317.8782,Acetaldehyde,LB
+37139,6.53475,Phenanthrene,LB
+37139,0.5708752,PM25-Primary from certain diesel engines,TON
+37139,0.01364105,Nitrous Oxide,TON
+37139,0.114367,Organic Carbon portion of PM2.5-PRI,TON
+37135,16.306964,Hexane,LB
+37135,1.0384698,Chrysene,LB
+37135,12151.46,Carbon Dioxide,TON
+37135,4.474001,PM10 Primary (Filt + Cond),TON
+37143,78.06534,Styrene,LB
+37143,1019.6366,Formaldehyde,LB
+37143,3268.618,Benzene,LB
+37143,6.672134,Fluorene,LB
+37143,2.80401,Ammonia,TON
+37143,0.5374235,Organic Carbon portion of PM2.5-PRI,TON
+37117,13.142816,"2,2,4-Trimethylpentane",LB
+37117,0.3893438,Benz[a]Anthracene,LB
+37117,51.88152,Benzene,LB
+37117,0.02388856,Arsenic,LB
+37117,238.0574,Acetaldehyde,LB
+37117,4.860448,Phenanthrene,LB
+37117,3.168206,Fluorene,LB
+37117,0.5073274,PM10-Primary from certain diesel engines,TON
+37117,0.619429,PM10 Primary (Filt + Cond),TON
+37117,0.032547,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,3.232188,Volatile Organic Compounds,TON
+37117,2.646508e-09,Chromium (VI),LB
+37117,2.738114e-05,"Benzo[g,h,i,]Perylene",LB
+37117,0.01230217,"2,2,4-Trimethylpentane",LB
+37117,0.0170354,Benzene,LB
+37117,0.002143034,"1,3-Butadiene",LB
+37117,3.44583e-05,Fluorene,LB
+37117,1.117791e-05,Methane,TON
+37117,0.1718949,Carbon Dioxide,TON
+37117,0.0007571795,Nitrogen Oxides,TON
+37117,1.063958e-05,PM2.5 Primary (Filt + Cond),TON
+37119,5.47441,Hexane,LB
+37119,0.6104136,Anthracene,LB
+37119,21.03886,Xylenes (Mixed Isomers),LB
+37119,0.0418803,Benzo[b]Fluoranthene,LB
+37119,0.447397,Benz[a]Anthracene,LB
+37119,0.5594568,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.01078251,Nitrous Oxide,TON
+37113,0.3211558,Anthracene,LB
+37113,0.003956254,"Benzo[g,h,i,]Perylene",LB
+37113,0.12431164,Chrysene,LB
+37113,92.75916,Formaldehyde,LB
+37113,0.009386848,Nickel,LB
+37113,0.08619697,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.08954024,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.2182924,PM2.5 Primary (Filt + Cond),TON
+37113,0.004328637,Sulfate Portion of PM2.5-PRI,TON
+37105,3.287966e-08,Chromium (VI),LB
+37105,4.695942e-05,Benz[a]Anthracene,LB
+37105,0.0004252104,Fluorene,LB
+37105,102.5398,Carbon Dioxide,TON
+37105,0.0004046036,"Benzo[g,h,i,]Perylene",LB
+37105,1.4076548e-06,Mercury,LB
+37105,71.27967,Carbon Dioxide,TON
+37105,0.02885232,PM10 Primary (Filt + Cond),TON
+37105,0.0005260063,Sulfate Portion of PM2.5-PRI,TON
+37105,0.3645048,Styrene,LB
+37105,0.033687,Fluorene,LB
+37105,0.007419122,Nitrous Oxide,TON
+37105,0.2411391,Volatile Organic Compounds,TON
+37093,0.008485218,Benz[a]Anthracene,LB
+37093,0.00104929,Methane,TON
+37093,23.92327,Carbon Dioxide,TON
+37093,0.2219128,Xylenes (Mixed Isomers),LB
+37093,6.034474e-07,Chromium (VI),LB
+37093,0.0002073877,Sulfate Portion of PM2.5-PRI,TON
+37089,0.00012606192,Benzo[b]Fluoranthene,LB
+37089,0.00012606192,Benzo[k]Fluoranthene,LB
+37089,0.13387772,Formaldehyde,LB
+37089,0.000413013,Acenaphthene,LB
+37089,0.002246304,Phenanthrene,LB
+37089,18.759844,Ethyl Benzene,LB
+37089,3.44139,"1,3-Butadiene",LB
+37089,95.45848,Toluene,LB
+37089,0.5955442,Propionaldehyde,LB
+37089,0.06255392,Pyrene,LB
+37089,0.003137662,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.1070647,PM10 Primary (Filt + Cond),TON
+37073,0.005655818,Nitrous Oxide,TON
+37073,7.062458,Nitrogen Oxides,TON
+37073,2.003808,Pyrene,LB
+37073,0.050146,Nickel,LB
+37085,0.780946,Anthracene,LB
+37085,97.55808,Acetaldehyde,LB
+37085,1.5619014,Fluorene,LB
+37085,24.57068,Naphthalene,LB
+37085,8.157605,Carbon Monoxide,TON
+37085,0.5611163,PM2.5 Primary (Filt + Cond),TON
+37079,0.0002256582,Acenaphthene,LB
+37079,0.01171674,Naphthalene,LB
+37079,0.0002677819,Methane,TON
+37079,4.320617e-05,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.0001327063,PM10 Primary (Filt + Cond),TON
+37079,1.936341e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.0003760092,Pyrene,LB
+37079,8.626808e-05,Benzo[a]Pyrene,LB
+37079,1.975253e-06,"Dibenzo[a,h]Anthracene",LB
+37079,6.433442e-05,Benz[a]Anthracene,LB
+37079,1.2238694e-07,Mercury,LB
+37067,5.54707e-05,Anthracene,LB
+37067,5.600194e-06,"Benzo[g,h,i,]Perylene",LB
+37067,2.761028,Acetaldehyde,LB
+37067,0.00017227534,Fluorene,LB
+37067,0.0004644056,Naphthalene,LB
+37063,2.425096,Acenaphthylene,LB
+37063,0.13848922,Manganese,LB
+37063,0.05307704,Nickel,LB
+37063,1.4424954,Acenaphthene,LB
+37063,48.75574,Naphthalene,LB
+37063,138.51508,Acrolein,LB
+37063,0.02503646,"Benzo[g,h,i,]Perylene",LB
+37063,9.87686,Acenaphthylene,LB
+37063,0.0757384,Arsenic,LB
+37063,1.522867,PM25-Primary from certain diesel engines,TON
+37063,0.09640677,Sulfur Dioxide,TON
+37063,8.484674e-06,Chromium (VI),LB
+37063,0.04069846,Fluoranthene,LB
+37063,0.02457748,Benzo[a]Pyrene,LB
+37063,8.505812e-05,Mercury,LB
+37063,0.0016262254,Arsenic,LB
+37063,0.003886221,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.05659243,PM10 Primary (Filt + Cond),TON
+37067,1.2861358e-05,Chromium (VI),LB
+37067,0.01417492,Manganese,LB
+37067,0.0449553,Acenaphthene,LB
+37067,0.2459358,Phenanthrene,LB
+37067,0.0290399,Methane,TON
+37067,19.82354,Carbon Monoxide,TON
+37067,0.01417061,Nitrous Oxide,TON
+37067,0.01132539,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.01239381,Sulfur Dioxide,TON
+37065,0.007581414,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.3298564,Chrysene,LB
+37065,810.8274,Formaldehyde,LB
+37065,0.10958246,Manganese,LB
+37065,0.1147224,Nickel,LB
+37065,0.03059632,Arsenic,LB
+37065,0.01360131,Nitrous Oxide,TON
+37063,64.74226,Styrene,LB
+37063,0.0285583,"Dibenzo[a,h]Anthracene",LB
+37059,1306.0824,Ethyl Benzene,LB
+37047,0.4473278,"1,3-Butadiene",LB
+37047,0.04869444,Anthracene,LB
+37047,0.7330732,Propionaldehyde,LB
+37047,0.0003942122,Benzo[k]Fluoranthene,LB
+37047,0.0019941012,Nickel,LB
+37047,0.03775669,PM10-Primary from certain diesel engines,TON
+37047,0.01552491,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.01348821,Organic Carbon portion of PM2.5-PRI,TON
+37199,1.5721848,Pyrene,LB
+37199,16.137146,Benzene,LB
+37199,4.124665,Carbon Monoxide,TON
+37199,0.9652148,Volatile Organic Compounds,TON
+37195,19.575732,Hexane,LB
+37195,0.06815528,Acenaphthylene,LB
+37195,0.007332214,Benz[a]Anthracene,LB
+37195,0.002670732,Manganese,LB
+37195,4.215164e-05,Mercury,LB
+37195,0.0008058668,Arsenic,LB
+37195,0.03016684,Fluorene,LB
+37195,0.003846556,Sulfur Dioxide,TON
+37183,480.4908,Acrolein,LB
+37183,156.48184,Hexane,LB
+37183,0.08614448,"Benzo[g,h,i,]Perylene",LB
+37183,0.19474492,Benzo[b]Fluoranthene,LB
+37183,26.41632,Fluoranthene,LB
+37183,0.318167,Arsenic,LB
+37183,1.515424,Ammonia,TON
+37183,0.01292631,Nitrate portion of PM2.5-PRI,TON
+37183,0.409615,Sulfur Dioxide,TON
+37181,0.0007877172,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,4.458556,Ethyl Benzene,LB
+37181,25.5599,Toluene,LB
+37181,0.010643776,Fluoranthene,LB
+37181,2.324484,Formaldehyde,LB
+37181,0.003356204,Benzo[a]Pyrene,LB
+37181,4.038528e-06,Mercury,LB
+37181,2.359384,Acetaldehyde,LB
+37181,0.007225312,Acenaphthene,LB
+37181,0.014635956,Fluorene,LB
+37179,22.3237,Acrolein,LB
+37179,1.2779734,Pyrene,LB
+37179,0.010668638,Benzo[a]Pyrene,LB
+37179,1875.442,Carbon Dioxide,TON
+37179,0.01076019,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.08879524,Arsenic,LB
+37019,0.000351261,Chromium (VI),LB
+37019,81.4884,Naphthalene,LB
+37019,0.4794745,Ammonia,TON
+37019,0.3430767,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.247996,Benzo[a]Pyrene,LB
+37013,2.38489,Fluorene,LB
+37013,9.001045,Carbon Monoxide,TON
+37013,0.887657,PM10-Primary from certain diesel engines,TON
+37013,0.311778,Elemental Carbon portion of PM2.5-PRI,TON
+37019,22.13764,Anthracene,LB
+37019,58233,Xylenes (Mixed Isomers),LB
+37019,22.66684,"Benzo[g,h,i,]Perylene",LB
+37019,13.93641,Nitrous Oxide,TON
+37019,0.02834617,Nitrate portion of PM2.5-PRI,TON
+37019,8.391033,Sulfur Dioxide,TON
+37019,456.5373,Volatile Organic Compounds,TON
+37015,21.41572,Volatile Organic Compounds,TON
+37011,2.857766,Acetaldehyde,LB
+37011,0.003592839,Methane,TON
+37011,0.0002188053,Nitrous Oxide,TON
+37011,0.04104614,PM10 Primary (Filt + Cond),TON
+37011,0.003260691,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.001195776,Sulfate Portion of PM2.5-PRI,TON
+37011,29.50138,Toluene,LB
+37011,0.009308084,Pyrene,LB
+37011,0.001569388,Benzo[k]Fluoranthene,LB
+37011,4.830416e-05,"Dibenzo[a,h]Anthracene",LB
+37011,8.714754e-06,Mercury,LB
+37011,0.0303523,Phenanthrene,LB
+37011,0.0005134456,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.001859069,Nitrous Oxide,TON
+37011,0.001104951,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.0006238176,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,2.779044,"2,2,4-Trimethylpentane",LB
+37019,0.011406744,Phenanthrene,LB
+37019,2.048987e-05,Nitrate portion of PM2.5-PRI,TON
+37019,0.1812422,Nitrogen Oxides,TON
+37019,0.004941926,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.003531522,Fluoranthene,LB
+37019,0.0002674024,Sulfate Portion of PM2.5-PRI,TON
+37151,0.05989572,Styrene,LB
+37151,0.4991406,Propionaldehyde,LB
+37151,0.012449314,"Benzo[g,h,i,]Perylene",LB
+37151,0.002449446,Benzo[b]Fluoranthene,LB
+37151,0.002116626,Benz[a]Anthracene,LB
+37151,6.739106,Benzene,LB
+37151,0.006860888,Manganese,LB
+37151,0.007412358,PM2.5 Primary (Filt + Cond),TON
+37151,0.01020856,Sulfur Dioxide,TON
+37135,0.006719666,Phenanthrene,LB
+37135,2.091576,Carbon Monoxide,TON
+37135,1.298404e-05,Nitrate portion of PM2.5-PRI,TON
+37135,0.03346218,Styrene,LB
+37135,0.16284776,"1,3-Butadiene",LB
+37135,0.2788584,Propionaldehyde,LB
+37159,3.174898,Naphthalene,LB
+37159,1.971672,Nitrogen Oxides,TON
+37159,0.03841195,PM2.5 Primary (Filt + Cond),TON
+37159,0.001157234,Sulfate Portion of PM2.5-PRI,TON
+37141,84.11712,Phenanthrene,LB
+37141,217921.4,Carbon Dioxide,TON
+37141,1.153439,Elemental Carbon portion of PM2.5-PRI,TON
+37141,482.2696,Nitrogen Oxides,TON
+37141,0.1662934,Sulfate Portion of PM2.5-PRI,TON
+37141,50011.1,Toluene,LB
+37141,313.3338,Propionaldehyde,LB
+37141,0.011632768,Chromium (VI),LB
+37137,0.004091224,Ethyl Benzene,LB
+37137,0.00489231,"1,3-Butadiene",LB
+37137,0.02901468,Toluene,LB
+37137,0.3252204,Propionaldehyde,LB
+37137,0.02900672,Xylenes (Mixed Isomers),LB
+37137,7.208774e-05,Fluoranthene,LB
+37137,1.2806834e-05,Benz[a]Anthracene,LB
+37123,0.05908632,Styrene,LB
+37123,0.103865,Hexane,LB
+37123,0.2194706,Propionaldehyde,LB
+37123,0.005361702,Chrysene,LB
+37123,0.002735676,Benzo[a]Pyrene,LB
+37123,0.3890474,Benzene,LB
+37123,0.01040875,PM25-Primary from certain diesel engines,TON
+37121,0.05487266,Benzene,LB
+37121,0.0003190558,Phenanthrene,LB
+37121,0.0003619218,Naphthalene,LB
+37121,0.1237768,Nitrogen Oxides,TON
+37121,0.0006299186,Organic Carbon portion of PM2.5-PRI,TON
+37121,1.880009e-05,Sulfate Portion of PM2.5-PRI,TON
+37121,0.4467674,Propionaldehyde,LB
+37121,0.00019453038,Pyrene,LB
+37121,0.00010201056,Fluoranthene,LB
+37199,0.000289206,Pyrene,LB
+37199,0.000253674,Fluoranthene,LB
+37199,5.836544e-05,Benz[a]Anthracene,LB
+37199,0.17762782,Benzene,LB
+37199,4.768812e-06,Nickel,LB
+37199,0.0003467352,Fluorene,LB
+37199,4.742199e-05,Organic Carbon portion of PM2.5-PRI,TON
+37193,38.55816,"2,2,4-Trimethylpentane",LB
+37191,0.00844532,Benzo[b]Fluoranthene,LB
+37191,25.27534,Benzene,LB
+37191,0.2766226,PM10-Primary from certain diesel engines,TON
+37191,0.2545005,PM25-Primary from certain diesel engines,TON
+37187,3.203738,Ethyl Benzene,LB
+37187,10.639416,Hexane,LB
+37187,4.054108,Benzene,LB
+37181,27.0045,Ethyl Benzene,LB
+37181,53.56932,Acrolein,LB
+37181,0.4125176,Chrysene,LB
+37181,0.7246986,Benz[a]Anthracene,LB
+37181,21325.22,Carbon Dioxide,TON
+37181,1.905843,PM2.5 Primary (Filt + Cond),TON
+37181,0.1803523,Sulfur Dioxide,TON
+37161,0.002096908,Manganese,LB
+37161,0.002392141,Ammonia,TON
+37157,542.4716,Ethyl Benzene,LB
+37157,21.76742,Styrene,LB
+37157,0.7855708,Anthracene,LB
+37157,1998.7712,Xylenes (Mixed Isomers),LB
+37157,0.2419346,Chrysene,LB
+37157,0.005908424,Mercury,LB
+37157,0.9206376,Acenaphthene,LB
+37157,10896.13,Carbon Dioxide,TON
+37157,0.74693,Ammonia,TON
+37151,6.837462e-05,Mercury,LB
+37151,0.1867632,Phenanthrene,LB
+37151,296.8759,Carbon Dioxide,TON
+37151,0.004300538,Elemental Carbon portion of PM2.5-PRI,TON
+37149,1058.222,"1,3-Butadiene",LB
+37149,146.45554,Acrolein,LB
+37149,2595.47,Formaldehyde,LB
+37149,0.9768598,Arsenic,LB
+37149,96922.54,Carbon Dioxide,TON
+37149,2.977383,Nitrous Oxide,TON
+37149,8.145917,Ammonia,TON
+37149,2.03343,Sulfur Dioxide,TON
+37145,8.243964,"1,3-Butadiene",LB
+37145,3.358978,Acrolein,LB
+37145,406.6836,Hexane,LB
+37145,0.04871774,Benzo[b]Fluoranthene,LB
+37145,0.0479697,Chrysene,LB
+37145,0.04914186,Benz[a]Anthracene,LB
+37145,40.59358,Acetaldehyde,LB
+37145,0.17359602,Acenaphthene,LB
+37145,0.3516384,Fluorene,LB
+37145,0.07916865,Methane,TON
+37145,43.28201,Carbon Monoxide,TON
+37135,24.31118,Hexane,LB
+37135,0.04458752,Pyrene,LB
+37135,0.013012892,Chrysene,LB
+37135,0.01565113,Methane,TON
+37135,10.98755,Carbon Monoxide,TON
+37135,0.004210333,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.007127825,Sulfur Dioxide,TON
+37133,11791.548,Hexane,LB
+37133,9997.362,"2,2,4-Trimethylpentane",LB
+37133,19.46768,Ammonia,TON
+37133,3.293794,Organic Carbon portion of PM2.5-PRI,TON
+37125,4.280564,Pyrene,LB
+37125,3.254088,Fluorene,LB
+37125,1.252068,Elemental Carbon portion of PM2.5-PRI,TON
+37125,6.464978,Styrene,LB
+37117,6.503244,Xylenes (Mixed Isomers),LB
+37117,0.0007865392,Benzo[k]Fluoranthene,LB
+37117,2.829954,Benzene,LB
+37117,4.146937e-05,Sulfate Portion of PM2.5-PRI,TON
+37123,3.228236,Nitrogen Oxides,TON
+37123,0.003478796,Sulfate Portion of PM2.5-PRI,TON
+37123,4.683002,Toluene,LB
+37123,0.014688128,Benzo[b]Fluoranthene,LB
+37123,0.002006842,Benzo[k]Fluoranthene,LB
+37123,0.12609672,Propionaldehyde,LB
+37123,0.0058487,Acenaphthene,LB
+37123,0.3037256,Naphthalene,LB
+37123,18603.102,Xylenes (Mixed Isomers),LB
+37123,2891.688,Acetaldehyde,LB
+37123,259.6119,Nitrogen Oxides,TON
+37123,2.958597,PM2.5 Primary (Filt + Cond),TON
+37123,0.07627499,Sulfate Portion of PM2.5-PRI,TON
+37115,639.8818,Formaldehyde,LB
+37115,1892.4546,"2,2,4-Trimethylpentane",LB
+37115,0.4160488,Arsenic,LB
+37115,811.4678,Acetaldehyde,LB
+37115,1.051703,Methane,TON
+37115,449.5252,Carbon Monoxide,TON
+37115,0.9046737,Nitrous Oxide,TON
+37115,2.771106,Ammonia,TON
+37115,0.6361939,Sulfur Dioxide,TON
+37115,42.95842,Volatile Organic Compounds,TON
+37115,347.2326,"1,3-Butadiene",LB
+37099,0.02476873,PM10 Primary (Filt + Cond),TON
+37099,0.2047976,Propionaldehyde,LB
+37099,0.003106892,Chrysene,LB
+37099,0.00490083,Manganese,LB
+37099,0.06106274,Phenanthrene,LB
+37099,0.000916057,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.005487583,Ammonia,TON
+37095,1.263147,"1,3-Butadiene",LB
+37095,3.345042,Toluene,LB
+37095,0.13242328,Anthracene,LB
+37095,1427.788,Carbon Dioxide,TON
+37095,0.18714,PM10-Primary from certain diesel engines,TON
+37095,0.006457991,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.03456661,PM10 Primary (Filt + Cond),TON
+37095,0.3931888,Ethyl Benzene,LB
+37095,0.2941048,Hexane,LB
+37095,0.07062988,Acenaphthylene,LB
+37095,0.00018214512,"Dibenzo[a,h]Anthracene",LB
+37095,0.0003476374,Arsenic,LB
+37095,5.21787,Acetaldehyde,LB
+37091,27.4774,Acrolein,LB
+37091,1.512064,Fluoranthene,LB
+37091,0.104088,Chrysene,LB
+37091,0.02242834,Benzo[a]Pyrene,LB
+37091,1953.483,Carbon Dioxide,TON
+37091,0.2899701,PM10-Primary from certain diesel engines,TON
+37091,0.2667722,PM25-Primary from certain diesel engines,TON
+37091,0.01640995,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.01698844,Sulfur Dioxide,TON
+37091,0.008494497,Sulfate Portion of PM2.5-PRI,TON
+37091,0.125789,Styrene,LB
+37091,0.8801594,Xylenes (Mixed Isomers),LB
+37091,4.625844e-06,Mercury,LB
+37091,0.002588692,Nickel,LB
+37091,0.0008112213,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.6726824,Propionaldehyde,LB
+37089,0.02899508,Benz[a]Anthracene,LB
+37089,0.0004033352,Arsenic,LB
+37089,0.0415984,Acenaphthene,LB
+37089,0.0008210112,Sulfate Portion of PM2.5-PRI,TON
+37089,1485.168,Carbon Dioxide,TON
+37089,1.52897,Nitrogen Oxides,TON
+37089,5.818356,"1,3-Butadiene",LB
+37089,0.7352688,Fluoranthene,LB
+37089,0.0003558392,Benzo[k]Fluoranthene,LB
+37089,219.8088,Formaldehyde,LB
+37087,0.005805508,"Dibenzo[a,h]Anthracene",LB
+37087,89.01478,Acetaldehyde,LB
+37073,1.3496326,Benzene,LB
+37073,9.0334e-05,Nickel,LB
+37073,24.05004,Carbon Dioxide,TON
+37073,0.06718786,Nitrogen Oxides,TON
+37073,0.0005041003,Sulfur Dioxide,TON
+37073,0.0003615684,Benzo[b]Fluoranthene,LB
+37081,16190.52,Hexane,LB
+37081,41006,Xylenes (Mixed Isomers),LB
+37065,0.0003475303,Nitrate portion of PM2.5-PRI,TON
+37065,1.095272,Nitrogen Oxides,TON
+37065,2.01064,Xylenes (Mixed Isomers),LB
+37065,0.0008190382,"Dibenzo[a,h]Anthracene",LB
+37065,0.002038788,Arsenic,LB
+37065,0.07729028,Acenaphthene,LB
+37063,1.9992922,Ethyl Benzene,LB
+37063,1.5394944,Hexane,LB
+37063,2.907868,Propionaldehyde,LB
+37063,2.204806e-05,Chromium (VI),LB
+37063,0.0018235248,"Dibenzo[a,h]Anthracene",LB
+37063,0.3251971,PM10-Primary from certain diesel engines,TON
+37063,0.3225125,PM2.5 Primary (Filt + Cond),TON
+37063,0.3236762,Volatile Organic Compounds,TON
+37059,0.0225771,Chrysene,LB
+37059,96.83234,Formaldehyde,LB
+37059,0.00018453232,"Dibenzo[a,h]Anthracene",LB
+37059,7.139724,Acrolein,LB
+37059,0.01537633,PM25-Primary from certain diesel engines,TON
+37059,0.002822113,Sulfate Portion of PM2.5-PRI,TON
+37053,5.291508,"1,3-Butadiene",LB
+37053,0.9054186,Pyrene,LB
+37053,164.32468,Formaldehyde,LB
+37053,0.000771713,"Dibenzo[a,h]Anthracene",LB
+37053,4.107272e-05,Mercury,LB
+37053,0.00858791,Arsenic,LB
+37053,0.930291,Fluorene,LB
+37053,0.06390029,Methane,TON
+37053,3.484603,Nitrogen Oxides,TON
+37041,5.50511e-06,"Benzo[g,h,i,]Perylene",LB
+37041,0.0005437405,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.001583369,PM2.5 Primary (Filt + Cond),TON
+37041,0.0001409217,Sulfur Dioxide,TON
+37041,0.08279834,Pyrene,LB
+37041,0.02251194,Benzo[a]Pyrene,LB
+37035,4.004952,Acrolein,LB
+37035,4.165406,Xylenes (Mixed Isomers),LB
+37035,0.002293438,"Benzo[g,h,i,]Perylene",LB
+37035,0.15703908,Acenaphthene,LB
+37035,0.1474801,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.01204733,Sulfate Portion of PM2.5-PRI,TON
+37035,0.2875892,Volatile Organic Compounds,TON
+37033,0.3308182,Acrolein,LB
+37033,0.015960628,Anthracene,LB
+37033,0.04633962,Pyrene,LB
+37033,0.0349572,Fluoranthene,LB
+37033,0.006653252,Chrysene,LB
+37033,0.09715042,"2,2,4-Trimethylpentane",LB
+37033,1.797529,Acetaldehyde,LB
+37033,0.004794211,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.01471071,PM10 Primary (Filt + Cond),TON
+37033,0.002499196,Sulfate Portion of PM2.5-PRI,TON
+37033,1.9334632,"1,3-Butadiene",LB
+37033,4.617204,Acrolein,LB
+37033,0.447443,Fluoranthene,LB
+37033,0.04151884,Benzo[a]Pyrene,LB
+37033,0.010022104,Manganese,LB
+37029,0.0002546761,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.002064287,PM10 Primary (Filt + Cond),TON
+37125,0.9092085,Elemental Carbon portion of PM2.5-PRI,TON
+37121,3.941548,Benzene,LB
+37121,2.687854,Ethyl Benzene,LB
+37121,0.0017071828,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.0012510332,Benzo[b]Fluoranthene,LB
+37101,2082.524,Carbon Dioxide,TON
+37101,0.07075408,PM2.5 Primary (Filt + Cond),TON
+37101,3.71026,Styrene,LB
+37101,0.003247982,"Benzo[g,h,i,]Perylene",LB
+37101,0.001275041,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.005003516,Benzo[b]Fluoranthene,LB
+37101,313.1538,Formaldehyde,LB
+37101,8.411894,"2,2,4-Trimethylpentane",LB
+37101,27.61414,Benzene,LB
+37103,0.1101934,Ethyl Benzene,LB
+37103,0.00018815392,Anthracene,LB
+37103,0.0713851,Formaldehyde,LB
+37103,1.3593438e-05,Nickel,LB
+37103,2.084256e-05,Arsenic,LB
+37103,0.0011916724,Phenanthrene,LB
+37101,0.04463226,Benzo[a]Pyrene,LB
+37101,0.04403484,Manganese,LB
+37101,0.5081238,Phenanthrene,LB
+37101,47.51907,Carbon Monoxide,TON
+37101,1781.07,Carbon Dioxide,TON
+37101,0.230497,PM10 Primary (Filt + Cond),TON
+37101,0.0262605,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.0002756974,Benz[a]Anthracene,LB
+37099,0.0005045647,PM2.5 Primary (Filt + Cond),TON
+37095,0.0493222,Hexane,LB
+37095,4.346064e-05,Anthracene,LB
+37095,3.698238e-05,PM10 Primary (Filt + Cond),TON
+37095,5.12053e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,881.713,Acetaldehyde,LB
+37091,2.426172,Acenaphthene,LB
+37091,4.914436,Fluorene,LB
+37091,532.3005,Carbon Monoxide,TON
+37075,0.3113586,PM10 Primary (Filt + Cond),TON
+37075,1.8026892,"1,3-Butadiene",LB
+37075,4.306474,Acrolein,LB
+37075,0.19974304,Anthracene,LB
+37071,4.068312,Acrolein,LB
+37071,0.3450292,Pyrene,LB
+37071,0.07857756,Benzo[b]Fluoranthene,LB
+37071,0.07857756,Benzo[k]Fluoranthene,LB
+37071,89.86084,Carbon Monoxide,TON
+37071,0.1109628,Sulfur Dioxide,TON
+37059,6.790148,Acrolein,LB
+37059,4.93648,Toluene,LB
+37059,0.5089504,Fluoranthene,LB
+37059,0.001228332,"Dibenzo[a,h]Anthracene",LB
+37059,0.2969656,Acenaphthene,LB
+37059,0.8831084,Phenanthrene,LB
+37059,0.5553876,Fluorene,LB
+37059,0.2044361,PM10-Primary from certain diesel engines,TON
+37059,7.279135,Nitrogen Oxides,TON
+37059,0.006821218,Sulfur Dioxide,TON
+37055,39.81288,Hexane,LB
+37055,0.03725286,Anthracene,LB
+37055,0.003860354,Arsenic,LB
+37055,13.660772,Acetaldehyde,LB
+37055,0.0005840877,Sulfate Portion of PM2.5-PRI,TON
+37051,1.0570648e-05,Chrysene,LB
+37051,6.938382e-05,Fluorene,LB
+37051,3.240269e-06,Nitrate portion of PM2.5-PRI,TON
+37039,131.91336,Toluene,LB
+37039,0.008823248,Chrysene,LB
+37039,0.00794245,Manganese,LB
+37039,0.002448582,Arsenic,LB
+37039,0.0003523636,Sulfate Portion of PM2.5-PRI,TON
+37039,0.643974,Volatile Organic Compounds,TON
+37037,0.6858562,"1,3-Butadiene",LB
+37037,0.0043606,Nickel,LB
+37037,0.002111702,Arsenic,LB
+37037,2.517422,Naphthalene,LB
+37037,0.02296157,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.006081683,Sulfate Portion of PM2.5-PRI,TON
+37029,0.7973412,Ethyl Benzene,LB
+37029,0.2537074,Styrene,LB
+37029,2.18934,Toluene,LB
+37029,0.6243214,Hexane,LB
+37029,2.44434,Xylenes (Mixed Isomers),LB
+37029,0.004731678,Chrysene,LB
+37029,24.92514,Formaldehyde,LB
+37029,0.0008517056,Benzo[a]Pyrene,LB
+37029,1.461577e-05,Mercury,LB
+37029,0.0008805988,Elemental Carbon portion of PM2.5-PRI,TON
+37057,4258.738,Ethyl Benzene,LB
+37057,8299.768,"2,2,4-Trimethylpentane",LB
+37053,0.0002833536,Mercury,LB
+37053,551.4936,Acetaldehyde,LB
+37053,11.273152,Phenanthrene,LB
+37053,1.219204,PM10-Primary from certain diesel engines,TON
+37053,0.8556702,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.0727852,Sulfur Dioxide,TON
+37053,7.441387,Volatile Organic Compounds,TON
+37053,0.0003377738,Chromium (VI),LB
+37053,0.004728668,"Dibenzo[a,h]Anthracene",LB
+37045,62.00722,Toluene,LB
+37045,19.544258,Hexane,LB
+37045,0.4232192,Benzo[a]Pyrene,LB
+37045,20.92414,"2,2,4-Trimethylpentane",LB
+37045,8.277036,Phenanthrene,LB
+37045,0.5742299,Methane,TON
+37045,0.4289334,Ammonia,TON
+37043,0.00014181734,"Benzo[g,h,i,]Perylene",LB
+37043,0.0241911,Fluoranthene,LB
+37043,0.0015132202,Manganese,LB
+37043,0.3593516,Naphthalene,LB
+37043,0.01561969,PM10-Primary from certain diesel engines,TON
+37043,0.3382304,Nitrogen Oxides,TON
+37039,0.0494628,Mercury,LB
+37039,19.9379,Fluorene,LB
+37039,1991.927,Carbon Monoxide,TON
+37039,0.008781058,Nitrate portion of PM2.5-PRI,TON
+37039,3.251765,PM2.5 Primary (Filt + Cond),TON
+37039,160.7089,Volatile Organic Compounds,TON
+37039,1365.8234,"1,3-Butadiene",LB
+37039,2.4133,Benzo[k]Fluoranthene,LB
+37027,41.45708,Acrolein,LB
+37027,0.02634264,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,2.37094,Acenaphthylene,LB
+37027,602.856,Formaldehyde,LB
+37027,0.06528302,Arsenic,LB
+37011,3.57951,Acenaphthylene,LB
+37011,0.1881896,Chrysene,LB
+37011,274.9676,Acetaldehyde,LB
+37011,0.1857628,Methane,TON
+37011,0.5209604,PM10-Primary from certain diesel engines,TON
+37005,7.658698,Styrene,LB
+37005,12.99726,Hexane,LB
+37005,1.417128,Anthracene,LB
+37005,2.70741,Pyrene,LB
+37005,0.008120232,Benzo[b]Fluoranthene,LB
+37005,0.0580422,Nickel,LB
+37005,0.01676836,Arsenic,LB
+37005,2.0613e-05,Benzo[k]Fluoranthene,LB
+37005,0.5836602,Ethyl Benzene,LB
+37005,0.4825694,"1,3-Butadiene",LB
+37005,1.584734,Xylenes (Mixed Isomers),LB
+37005,0.00016028,"Benzo[g,h,i,]Perylene",LB
+37005,0.0001301064,Nitrous Oxide,TON
+37005,0.00181035,Ammonia,TON
+37005,0.1127743,Nitrogen Oxides,TON
+37003,0.00010201892,Anthracene,LB
+37003,1.4051014e-05,"Benzo[g,h,i,]Perylene",LB
+37003,0.0003567614,Acenaphthylene,LB
+37003,0.12453992,Benzene,LB
+37003,6.562098e-07,Nickel,LB
+37003,0.007904164,PM10 Primary (Filt + Cond),TON
+37003,0.003965918,PM2.5 Primary (Filt + Cond),TON
+37003,0.7418153,Volatile Organic Compounds,TON
+37001,315.7952,Formaldehyde,LB
+37001,0.2246546,Benzo[a]Pyrene,LB
+37001,0.07315342,Manganese,LB
+37001,0.009323358,Arsenic,LB
+37001,0.8084312,PM10-Primary from certain diesel engines,TON
+37001,0.7437603,PM25-Primary from certain diesel engines,TON
+37001,0.003992103,Nitrate portion of PM2.5-PRI,TON
+37001,12.37933,Nitrogen Oxides,TON
+37001,1.6797896,Acenaphthylene,LB
+37177,0.5547706,Pyrene,LB
+37177,1.490678,"2,2,4-Trimethylpentane",LB
+37177,0.008825098,Nickel,LB
+37177,0.01752717,Ammonia,TON
+37193,0.694969,Ethyl Benzene,LB
+37193,0.07390666,Anthracene,LB
+37193,6.49171e-06,Chromium (VI),LB
+37193,0.11332596,Acenaphthylene,LB
+37193,1.9593842,Benzene,LB
+37193,452.1913,Carbon Dioxide,TON
+37185,0.6204222,Hexane,LB
+37185,0.003288128,"Benzo[g,h,i,]Perylene",LB
+37185,0.0012806104,Manganese,LB
+37185,0.0012779102,Arsenic,LB
+37185,4.719784e-05,Sulfate Portion of PM2.5-PRI,TON
+37185,0.10375084,Acenaphthene,LB
+37185,0.17804854,Fluorene,LB
+37185,0.00149976,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.1949875,Volatile Organic Compounds,TON
+37185,0.1581541,Pyrene,LB
+37185,0.000448187,Benzo[b]Fluoranthene,LB
+37185,1.0077154,"2,2,4-Trimethylpentane",LB
+37185,6.969334,Benzene,LB
+37185,0.0002366248,Nickel,LB
+37185,3.20751,Carbon Monoxide,TON
+37185,0.3574816,Nitrogen Oxides,TON
+37185,0.002020626,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.00164853,Sulfur Dioxide,TON
+37191,4.304224,Fluoranthene,LB
+37191,7.79647,Styrene,LB
+37191,18.04026,"1,3-Butadiene",LB
+37191,1.9856076,Anthracene,LB
+37191,0.04367102,Arsenic,LB
+37191,4.021072,Fluorene,LB
+37191,0.007438836,Nitrate portion of PM2.5-PRI,TON
+37191,26.17618,Nitrogen Oxides,TON
+37187,0.336307,Ethyl Benzene,LB
+37187,0.3131134,"1,3-Butadiene",LB
+37187,0.7305824,Toluene,LB
+37187,0.03592906,Anthracene,LB
+37187,3.40915e-06,Chromium (VI),LB
+37187,10.20316,Formaldehyde,LB
+37187,0.01158359,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.4444903,Nitrogen Oxides,TON
+37187,0.0294357,PM2.5 Primary (Filt + Cond),TON
+37187,0.001043645,Sulfur Dioxide,TON
+37179,1.705184e-05,Chrysene,LB
+37179,0.0467059,Hexane,LB
+37179,1.449428e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,4.226397e-05,Sulfur Dioxide,TON
+37019,0.4582594,Styrene,LB
+37019,0.3834938,Propionaldehyde,LB
+37019,0.003131703,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.000248876,Sulfate Portion of PM2.5-PRI,TON
+37015,1.0423334,Propionaldehyde,LB
+37015,0.6190336,"1,3-Butadiene",LB
+37015,0.00701942,Nickel,LB
+37015,0.1745834,Phenanthrene,LB
+37009,0.007332973,PM25-Primary from certain diesel engines,TON
+37009,0.002865684,Elemental Carbon portion of PM2.5-PRI,TON
+37009,3.97902e-05,Nitrate portion of PM2.5-PRI,TON
+37009,0.2575034,Toluene,LB
+37009,0.2652916,Xylenes (Mixed Isomers),LB
+37009,0.000401602,Nickel,LB
+37001,15.2192,Ethyl Benzene,LB
+37001,1.2438756,Anthracene,LB
+37001,2.56255,Pyrene,LB
+37001,0.002530008,"Dibenzo[a,h]Anthracene",LB
+37001,42.90508,Benzene,LB
+37001,0.02294652,Arsenic,LB
+37001,1.475948,Acenaphthene,LB
+37001,2.585474,Fluorene,LB
+37001,0.3486713,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.01053792,Nitrous Oxide,TON
+37063,0.01360468,Ammonia,TON
+37063,1.414959e-05,Nitrate portion of PM2.5-PRI,TON
+37063,0.02189568,PM10 Primary (Filt + Cond),TON
+37063,3.122974,Toluene,LB
+37063,0.00121623,Anthracene,LB
+37063,2.686402,Xylenes (Mixed Isomers),LB
+37063,0.010135184,"Benzo[g,h,i,]Perylene",LB
+37025,2880.038,Carbon Dioxide,TON
+37025,0.142995,Ammonia,TON
+37025,2.178562,Nitrogen Oxides,TON
+37025,0.9567128,Naphthalene,LB
+37025,0.150255,Methane,TON
+37025,4.419216,Propionaldehyde,LB
+37017,8.553188,Hexane,LB
+37017,3.33185,Pyrene,LB
+37017,1.7539272,Acenaphthylene,LB
+37017,0.2485866,Benzo[a]Pyrene,LB
+37017,0.3265587,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.3526653,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.1547838,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,694.0696,Hexane,LB
+37011,1757.9032,Xylenes (Mixed Isomers),LB
+37011,103.67068,Benzene,LB
+37009,0.0003314602,"Benzo[g,h,i,]Perylene",LB
+37009,4.709458e-05,Benzo[k]Fluoranthene,LB
+37009,0.99275,"2,2,4-Trimethylpentane",LB
+37009,1.2150156e-05,Mercury,LB
+37009,0.002540392,Arsenic,LB
+37009,0.001062226,Elemental Carbon portion of PM2.5-PRI,TON
+37009,3.066106e-05,Nitrate portion of PM2.5-PRI,TON
+37005,2.534918,Acrolein,LB
+37005,0.0985796,Anthracene,LB
+37005,0.0321024,Chrysene,LB
+37005,3.040822,Benzene,LB
+37005,0.02265829,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.07115605,PM10 Primary (Filt + Cond),TON
+37059,0.018000576,Styrene,LB
+37059,1.6084514,Toluene,LB
+37059,0.001270539,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.002877012,Acenaphthylene,LB
+37059,1.0147518,Formaldehyde,LB
+37059,0.0007893218,Nickel,LB
+37059,0.00126058,Fluorene,LB
+37059,0.03245696,Naphthalene,LB
+37059,0.001305963,Nitrous Oxide,TON
+37013,1.3600922,"2,2,4-Trimethylpentane",LB
+37013,0.002928248,Manganese,LB
+37013,0.0005111204,Elemental Carbon portion of PM2.5-PRI,TON
+37013,0.00831901,Ammonia,TON
+37013,0.08361474,Nitrogen Oxides,TON
+37169,0.004010676,Styrene,LB
+37169,0.014843106,Acrolein,LB
+37169,0.13317562,Hexane,LB
+37169,0.0002667308,Pyrene,LB
+37169,0.00014376632,Benzo[b]Fluoranthene,LB
+37169,0.01217342,Nitrogen Oxides,TON
+37169,0.0001423082,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,1.0583e-05,Sulfate Portion of PM2.5-PRI,TON
+37115,0.00015818292,Mercury,LB
+37115,0.15842562,Naphthalene,LB
+37115,2.359464,Hexane,LB
+37115,6.02072,Xylenes (Mixed Isomers),LB
+37115,0.005180092,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.00278776,Benzo[k]Fluoranthene,LB
+37177,0.07903308,Methane,TON
+37177,2.305064e-05,Anthracene,LB
+37177,0.03279748,Xylenes (Mixed Isomers),LB
+37177,2.869788e-06,Mercury,LB
+37177,0.0004065967,Ammonia,TON
+37177,1.988613e-07,Nitrate portion of PM2.5-PRI,TON
+37195,21.39428,"1,3-Butadiene",LB
+37195,0.7811666,Chrysene,LB
+37195,21.93992,"2,2,4-Trimethylpentane",LB
+37195,1.3510478,Benz[a]Anthracene,LB
+37195,3.51225,PM10-Primary from certain diesel engines,TON
+37189,0.7431328,Xylenes (Mixed Isomers),LB
+37189,1.5400438e-05,"Dibenzo[a,h]Anthracene",LB
+37189,0.018218162,Naphthalene,LB
+37189,0.4131546,Carbon Monoxide,TON
+37189,49.14646,Carbon Dioxide,TON
+37189,3.213134e-05,Sulfate Portion of PM2.5-PRI,TON
+37185,0.0002816565,Sulfur Dioxide,TON
+37185,1.7323662e-08,Chromium (VI),LB
+37185,9.923514e-06,Mercury,LB
+37191,0.002932902,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.07322866,Chrysene,LB
+37191,0.12400984,Benz[a]Anthracene,LB
+37191,4.696576,Benzene,LB
+37191,0.05544662,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.02562308,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.006950469,Sulfate Portion of PM2.5-PRI,TON
+37181,3.178304,Pyrene,LB
+37181,329.4428,Formaldehyde,LB
+37181,0.2339964,Benzo[a]Pyrene,LB
+37181,8.483214,"2,2,4-Trimethylpentane",LB
+37181,35.33896,Naphthalene,LB
+37181,0.1719791,Methane,TON
+37181,15.2592,Nitrogen Oxides,TON
+37181,0.03545624,Sulfur Dioxide,TON
+37057,5.057638,Ethyl Benzene,LB
+37039,0.8817546,Hexane,LB
+37157,2.975886e-06,Chromium (VI),LB
+37157,2.983262e-05,Mercury,LB
+37157,0.002963821,Methane,TON
+37157,0.03559394,Nitrogen Oxides,TON
+37153,13.631526,Toluene,LB
+37153,0.1306185,Volatile Organic Compounds,TON
+37145,0.10418592,Acrolein,LB
+37145,0.0007788044,Benzo[k]Fluoranthene,LB
+37145,0.004291834,Acenaphthylene,LB
+37145,0.0013710992,Arsenic,LB
+37125,18.788842,Toluene,LB
+37177,0.03547924,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.092044,Acenaphthene,LB
+37177,12.430942,"1,3-Butadiene",LB
+37177,290.7756,Toluene,LB
+37175,5.214826,Ethyl Benzene,LB
+37175,0.005778358,Anthracene,LB
+37175,0.139201,Propionaldehyde,LB
+37175,19.542484,Xylenes (Mixed Isomers),LB
+37175,9.3129e-07,Chromium (VI),LB
+37175,8.025034,"2,2,4-Trimethylpentane",LB
+37175,0.0001164116,Nickel,LB
+37175,0.00231318,PM2.5 Primary (Filt + Cond),TON
+37163,2.17382,Acenaphthene,LB
+37163,0.3808439,Methane,TON
+37163,0.07375409,Sulfur Dioxide,TON
+37163,1.434617,Elemental Carbon portion of PM2.5-PRI,TON
+37163,45.793,Ethyl Benzene,LB
+37163,6.229764,Fluoranthene,LB
+37163,7.970318,Acenaphthylene,LB
+37163,1368.5108,Formaldehyde,LB
+37163,1.209053,PM25-Primary from certain diesel engines,TON
+37163,0.02169764,Nitrous Oxide,TON
+37163,0.07639958,Sulfur Dioxide,TON
+37163,8.208084,Volatile Organic Compounds,TON
+37173,0.8627052,Styrene,LB
+37173,0.4349628,Pyrene,LB
+37173,0.0015558792,"Benzo[g,h,i,]Perylene",LB
+37173,54.29104,Formaldehyde,LB
+37173,0.02066098,Benzo[a]Pyrene,LB
+37173,5.321594,Benzene,LB
+37185,142.83974,Styrene,LB
+37185,109.51252,Acrolein,LB
+37185,5.606278,"Benzo[g,h,i,]Perylene",LB
+37185,1.61092,Benzo[b]Fluoranthene,LB
+37185,2.116008,Benzo[a]Pyrene,LB
+37185,0.6257262,Arsenic,LB
+37185,0.4690222,Elemental Carbon portion of PM2.5-PRI,TON
+37185,2.231035,PM2.5 Primary (Filt + Cond),TON
+37181,4.084936,Styrene,LB
+37181,3.062684,Propionaldehyde,LB
+37181,0.009063318,Nickel,LB
+37001,0.01330876,Nickel,LB
+37001,19.30228,Carbon Monoxide,TON
+37001,0.1673732,PM10 Primary (Filt + Cond),TON
+37127,0.4287216,Ethyl Benzene,LB
+37127,1.4349846,Formaldehyde,LB
+37127,0.8208526,"2,2,4-Trimethylpentane",LB
+37127,0.007115587,Methane,TON
+37127,0.002086379,Nitrous Oxide,TON
+37127,0.003539372,PM2.5 Primary (Filt + Cond),TON
+37101,0.3482772,Acrolein,LB
+37101,8.71102,Toluene,LB
+37101,0.0217876,"Benzo[g,h,i,]Perylene",LB
+37101,36.84736,Acetaldehyde,LB
+37101,0.018343364,Phenanthrene,LB
+37101,0.008362774,Nitrous Oxide,TON
+37101,0.0121946,PM2.5 Primary (Filt + Cond),TON
+37177,0.006279182,"1,3-Butadiene",LB
+37177,9.087564e-05,Fluoranthene,LB
+37177,2.699042e-05,Benzo[k]Fluoranthene,LB
+37177,0.0002744182,Acenaphthylene,LB
+37177,0.02017264,Formaldehyde,LB
+37177,1.30347,Carbon Dioxide,TON
+37177,3.449544e-05,Ammonia,TON
+37177,1.279088e-07,Nitrate portion of PM2.5-PRI,TON
+37177,0.003105113,Nitrogen Oxides,TON
+37161,0.0009978874,Manganese,LB
+37161,6.098008,Acetaldehyde,LB
+37161,0.00490341,Nitrous Oxide,TON
+37161,0.01229388,PM10 Primary (Filt + Cond),TON
+37161,0.2983976,Acrolein,LB
+37161,16.61258,Hexane,LB
+37161,0.00018102692,"Dibenzo[a,h]Anthracene",LB
+37161,17.230988,Benzene,LB
+37151,1.208023,Acrolein,LB
+37151,0.0008877082,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.11989602,Fluoranthene,LB
+37151,0.08444408,Acenaphthylene,LB
+37151,0.003263358,Manganese,LB
+37151,0.7613183,Nitrogen Oxides,TON
+37151,0.01631322,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.0424583,PM2.5 Primary (Filt + Cond),TON
+37151,0.001283194,Sulfur Dioxide,TON
+37139,0.001052619,Elemental Carbon portion of PM2.5-PRI,TON
+37139,2.600908e-05,Nitrate portion of PM2.5-PRI,TON
+37139,0.002103081,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.002054571,Sulfur Dioxide,TON
+37139,0.7956864,"1,3-Butadiene",LB
+37139,2.925208,Toluene,LB
+37139,0.0002576028,Benzo[b]Fluoranthene,LB
+37139,0.002948486,Arsenic,LB
+37139,13.302488,Acetaldehyde,LB
+37139,0.03368366,Methane,TON
+37141,0.01411705,Benzo[b]Fluoranthene,LB
+37141,12.042508,Benzene,LB
+37141,13.98199,Naphthalene,LB
+37141,0.2816626,PM25-Primary from certain diesel engines,TON
+37141,0.02299228,Ammonia,TON
+37141,0.2953424,PM2.5 Primary (Filt + Cond),TON
+37141,0.008831582,Sulfate Portion of PM2.5-PRI,TON
+37131,2.61864,Styrene,LB
+37131,1.9634956,Propionaldehyde,LB
+37131,4.91152e-05,Chromium (VI),LB
+37131,0.0532786,Benzo[a]Pyrene,LB
+37131,0.0012223312,"Dibenzo[a,h]Anthracene",LB
+37131,0.006139542,Nickel,LB
+37131,809.4086,Carbon Dioxide,TON
+37131,0.1043111,Ammonia,TON
+37125,0.01776265,Ammonia,TON
+37125,1.7403242,Ethyl Benzene,LB
+37125,0.002646166,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.0014284118,Benzo[k]Fluoranthene,LB
+37125,0.2449908,Acenaphthylene,LB
+37125,0.006712898,Nickel,LB
+37121,0.00274158,Pyrene,LB
+37121,0.0006660466,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.7421061,Carbon Monoxide,TON
+37111,4.623216,Acenaphthylene,LB
+37111,1749.204,Formaldehyde,LB
+37111,0.000368272,Chromium (VI),LB
+37111,0.02438402,"Benzo[g,h,i,]Perylene",LB
+37111,0.3585358,Manganese,LB
+37111,0.008485276,Nitrate portion of PM2.5-PRI,TON
+37157,1.4775774,"1,3-Butadiene",LB
+37157,0.2503688,Acenaphthylene,LB
+37157,0.07286934,Chrysene,LB
+37157,0.004017748,Arsenic,LB
+37157,5.451754,Naphthalene,LB
+37157,0.0012132504,"Benzo[g,h,i,]Perylene",LB
+37157,0.0001370612,Nitrate portion of PM2.5-PRI,TON
+37157,5.207124e-05,"Dibenzo[a,h]Anthracene",LB
+37157,0.006033574,"Benzo[g,h,i,]Perylene",LB
+37157,0.002266834,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.0016227002,Benzo[k]Fluoranthene,LB
+37157,3.354938e-06,Mercury,LB
+37157,4.183274e-05,Nickel,LB
+37157,0.010817384,Fluorene,LB
+37153,20.55106,Propionaldehyde,LB
+37153,4.024016,Pyrene,LB
+37153,404.6934,Formaldehyde,LB
+37153,2.779074,Fluorene,LB
+37153,0.8536292,Propionaldehyde,LB
+37153,0.2002166,Phenanthrene,LB
+37153,0.5238421,Carbon Monoxide,TON
+37153,0.08598716,PM10-Primary from certain diesel engines,TON
+37153,1.842075,Nitrogen Oxides,TON
+37151,0.9925404,Volatile Organic Compounds,TON
+37151,0.12072592,Chrysene,LB
+37151,178.74124,Formaldehyde,LB
+37151,13.71382,Acrolein,LB
+37151,9.023618,Propionaldehyde,LB
+37149,0.04303102,Styrene,LB
+37149,0.2405728,"1,3-Butadiene",LB
+37149,1.3992378,Hexane,LB
+37149,0.008075298,Acenaphthylene,LB
+37149,0.0017696218,Acenaphthene,LB
+37149,0.0002200377,Elemental Carbon portion of PM2.5-PRI,TON
+37149,0.001379129,PM10 Primary (Filt + Cond),TON
+37149,2.622872e-05,Sulfate Portion of PM2.5-PRI,TON
+37147,45.13228,Hexane,LB
+37147,10.197046,Pyrene,LB
+37147,0.008801518,Benzo[k]Fluoranthene,LB
+37147,10.55069,Volatile Organic Compounds,TON
+37147,11.004866,Acenaphthene,LB
+37147,264725.6,Carbon Dioxide,TON
+37147,3169.846,Formaldehyde,LB
+37147,51186.12,Toluene,LB
+37139,0.003690912,Anthracene,LB
+37139,8.358236,Xylenes (Mixed Isomers),LB
+37139,0.0013473858,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,2.159884,Carbon Monoxide,TON
+37139,0.1354956,Nitrogen Oxides,TON
+37139,0.008809098,PM10 Primary (Filt + Cond),TON
+37139,0.002210679,PM2.5 Primary (Filt + Cond),TON
+37139,0.001357408,Sulfur Dioxide,TON
+37139,6.684744e-05,Sulfate Portion of PM2.5-PRI,TON
+37135,30.72842,Acrolein,LB
+37135,30.86132,Propionaldehyde,LB
+37135,0.0016164766,Chromium (VI),LB
+37135,1.9262344,"Benzo[g,h,i,]Perylene",LB
+37135,0.7234498,Benzo[a]Pyrene,LB
+37135,0.4988752,Manganese,LB
+37135,0.1693546,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.2825762,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.15104352,"1,3-Butadiene",LB
+37131,0.3114452,Toluene,LB
+37131,0.00019734422,"Benzo[g,h,i,]Perylene",LB
+37131,0.0002404056,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,4.643018,Formaldehyde,LB
+37131,0.11572424,"2,2,4-Trimethylpentane",LB
+37131,0.4381974,Benzene,LB
+37131,1.0411448e-06,Mercury,LB
+37131,0.0002176958,Arsenic,LB
+37131,2.021226,Acetaldehyde,LB
+37131,0.015328652,Acenaphthene,LB
+37131,0.01178315,PM25-Primary from certain diesel engines,TON
+37131,5.472157e-05,Nitrate portion of PM2.5-PRI,TON
+37131,0.01214004,PM2.5 Primary (Filt + Cond),TON
+37131,0.001841702,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.02698319,Volatile Organic Compounds,TON
+37131,0.0003191486,Fluoranthene,LB
+37131,0.00010107604,Benz[a]Anthracene,LB
+37131,0.0215634,"1,3-Butadiene",LB
+37131,0.00388578,Acrolein,LB
+37131,0.003956294,Propionaldehyde,LB
+37131,0.0001873194,PM2.5 Primary (Filt + Cond),TON
+37131,5.566312e-06,Sulfate Portion of PM2.5-PRI,TON
+37123,6.444162,Ethyl Benzene,LB
+37123,0.1530506,Acrolein,LB
+37123,0.007382702,Anthracene,LB
+37123,0.001163764,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.007219141,PM2.5 Primary (Filt + Cond),TON
+37115,0.006491196,Anthracene,LB
+37115,0.03448836,Acenaphthylene,LB
+37115,0.002243388,Chrysene,LB
+37115,6.928202,Benzene,LB
+37115,0.00756879,Acenaphthene,LB
+37115,0.0411749,Phenanthrene,LB
+37115,0.000899662,Elemental Carbon portion of PM2.5-PRI,TON
+37115,148.75334,Acrolein,LB
+37115,16940.382,Xylenes (Mixed Isomers),LB
+37115,2.1034,Chrysene,LB
+37113,0.01160559,PM10-Primary from certain diesel engines,TON
+37113,0.01067755,PM25-Primary from certain diesel engines,TON
+37113,0.619092,Nitrogen Oxides,TON
+37113,3.032328e-05,Mercury,LB
+37113,0.016969358,Nickel,LB
+37109,7.345566,"1,3-Butadiene",LB
+37109,18.170188,Acrolein,LB
+37109,5.890344,"2,2,4-Trimethylpentane",LB
+37109,5.802688e-05,Mercury,LB
+37109,0.7444054,Acenaphthene,LB
+37109,2.037756,Phenanthrene,LB
+37109,1.2886978,Fluorene,LB
+37109,0.1016883,Methane,TON
+37109,0.01813927,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.008199341,Sulfate Portion of PM2.5-PRI,TON
+37109,13392.904,Ethyl Benzene,LB
+37109,16962.028,Hexane,LB
+37109,18.926648,Anthracene,LB
+37109,7.196402,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,101.02506,Acenaphthylene,LB
+37109,22.19274,Acenaphthene,LB
+37109,237764.6,Carbon Dioxide,TON
+37109,11.10503,Nitrous Oxide,TON
+37109,3.999825,Organic Carbon portion of PM2.5-PRI,TON
+37109,382.7524,Volatile Organic Compounds,TON
+37099,3742.13,Acetaldehyde,LB
+37099,6361.758,Ethyl Benzene,LB
+37099,16.23914,Fluoranthene,LB
+37099,2533.445,Carbon Monoxide,TON
+37099,3.355105,Sulfur Dioxide,TON
+37099,0.1335181,Sulfate Portion of PM2.5-PRI,TON
+37089,2.395024,Xylenes (Mixed Isomers),LB
+37089,28.93008,Formaldehyde,LB
+37089,0.0008389972,"Dibenzo[a,h]Anthracene",LB
+37089,0.1329319,PM10-Primary from certain diesel engines,TON
+37089,0.07611409,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.1323721,PM2.5 Primary (Filt + Cond),TON
+37089,0.1526857,Volatile Organic Compounds,TON
+37081,0.13493788,"Benzo[g,h,i,]Perylene",LB
+37081,16.174916,Acenaphthylene,LB
+37081,3535.816,Formaldehyde,LB
+37081,1.3582732,Manganese,LB
+37081,150.5987,Nitrogen Oxides,TON
+37081,0.4530153,Sulfur Dioxide,TON
+37077,55.54776,Hexane,LB
+37077,642.4972,Benzene,LB
+37077,0.0008198694,Nitrate portion of PM2.5-PRI,TON
+37077,15.338336,Styrene,LB
+37077,12.97476,Propionaldehyde,LB
+37077,2.95732,Acenaphthylene,LB
+37069,3.271412,"1,3-Butadiene",LB
+37069,8.276552,Acrolein,LB
+37069,7.855726,Toluene,LB
+37069,0.005686838,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,2.787824,"2,2,4-Trimethylpentane",LB
+37069,1.2622462,Phenanthrene,LB
+37069,0.7229372,Fluorene,LB
+37069,0.05768948,Methane,TON
+37069,4.406047,Carbon Monoxide,TON
+37069,648.6453,Carbon Dioxide,TON
+37069,0.598397,Volatile Organic Compounds,TON
+37065,0.02668134,"1,3-Butadiene",LB
+37065,0.0007442038,Pyrene,LB
+37065,0.0004707066,Arsenic,LB
+37065,0.0015101678,Naphthalene,LB
+37065,0.001957264,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.2817482,"1,3-Butadiene",LB
+37067,1.7866848e-05,Nickel,LB
+37067,0.0005078226,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.6893742,Acrolein,LB
+37051,1.0828136e-05,Chromium (VI),LB
+37051,0.0013535104,Nickel,LB
+37051,0.002075394,Arsenic,LB
+37051,0.07452424,Fluorene,LB
+37051,0.003799382,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.0008078537,Sulfate Portion of PM2.5-PRI,TON
+37143,1121.5288,Xylenes (Mixed Isomers),LB
+37117,3.111086,Ethyl Benzene,LB
+37117,1.3374938,Styrene,LB
+37117,3.025916,"1,3-Butadiene",LB
+37117,0.2545328,Anthracene,LB
+37117,0.5160834,Acenaphthylene,LB
+37117,93.70718,Formaldehyde,LB
+37117,40.70098,Acetaldehyde,LB
+37117,643.8351,Carbon Dioxide,TON
+37117,0.001827916,Nitrous Oxide,TON
+37117,0.01510722,Organic Carbon portion of PM2.5-PRI,TON
+37111,16.485584,Benzene,LB
+37111,4.170418e-05,Mercury,LB
+37111,7.419679,Carbon Monoxide,TON
+37111,0.8109858,Nitrogen Oxides,TON
+37111,0.0005918337,Sulfate Portion of PM2.5-PRI,TON
+37111,0.3899758,Styrene,LB
+37111,2.0202,"1,3-Butadiene",LB
+37111,0.2868528,Acrolein,LB
+37111,16.35636,Hexane,LB
+37111,0.019166188,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.008831492,Chrysene,LB
+37121,1.27806,Benzo[b]Fluoranthene,LB
+37121,5157.374,Benzene,LB
+37121,0.03619999,Sulfate Portion of PM2.5-PRI,TON
+37115,1.8862636,"1,3-Butadiene",LB
+37115,0.05202533,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.12577622,Benz[a]Anthracene,LB
+37115,4.45091,"1,3-Butadiene",LB
+37115,0.4919728,Anthracene,LB
+37115,0.19526732,Chrysene,LB
+37115,0.005618892,Arsenic,LB
+37115,0.4525754,Acenaphthene,LB
+37115,0.03390027,Methane,TON
+37115,14.54656,Nitrogen Oxides,TON
+37115,0.0116248,Sulfate Portion of PM2.5-PRI,TON
+37113,1.2127834,Propionaldehyde,LB
+37113,1.5970698e-05,"Benzo[g,h,i,]Perylene",LB
+37113,0.0008736544,Phenanthrene,LB
+37113,0.0009915922,Naphthalene,LB
+37113,0.4175103,Methane,TON
+37113,0.04870782,Volatile Organic Compounds,TON
+37099,0.09329498,Styrene,LB
+37099,9.200596,Xylenes (Mixed Isomers),LB
+37099,0.005299084,"Benzo[g,h,i,]Perylene",LB
+37099,4.570332e-05,"Dibenzo[a,h]Anthracene",LB
+37099,3.070148,"2,2,4-Trimethylpentane",LB
+37099,0.0003927336,Nickel,LB
+37099,0.009694473,PM10 Primary (Filt + Cond),TON
+37099,0.002200859,Sulfur Dioxide,TON
+37095,1.141438e-05,Chromium (VI),LB
+37095,0.02993706,"Benzo[g,h,i,]Perylene",LB
+37095,0.0080555,Benzo[k]Fluoranthene,LB
+37095,33.83382,Benzene,LB
+37095,0.002187614,Arsenic,LB
+37095,0.001109872,Nitrous Oxide,TON
+37095,0.67196,Volatile Organic Compounds,TON
+37079,0.004465004,Anthracene,LB
+37079,1.1499062e-06,Chromium (VI),LB
+37079,0.007696512,Fluoranthene,LB
+37079,1.649423,Formaldehyde,LB
+37079,0.0018359214,Benz[a]Anthracene,LB
+37079,5.493958,Benzene,LB
+37079,0.000143733,Nickel,LB
+37079,0.0002203986,Arsenic,LB
+37079,0.00397039,Methane,TON
+37079,0.001542717,Nitrous Oxide,TON
+37081,82.07916,Toluene,LB
+37081,0.2448298,Benzo[b]Fluoranthene,LB
+37081,2.701306,Benz[a]Anthracene,LB
+37081,2.788267,PM2.5 Primary (Filt + Cond),TON
+37057,1.1330556,Styrene,LB
+37057,0.04967982,"Benzo[g,h,i,]Perylene",LB
+37057,0.013271374,Chrysene,LB
+37057,42.6787,"2,2,4-Trimethylpentane",LB
+37055,1.0899742,Phenanthrene,LB
+37055,0.2355527,PM10-Primary from certain diesel engines,TON
+37055,0.1261167,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.06392236,Organic Carbon portion of PM2.5-PRI,TON
+37053,24.64896,Hexane,LB
+37049,0.004662098,Manganese,LB
+37049,0.0006502902,Arsenic,LB
+37049,0.06489924,Ethyl Benzene,LB
+37049,4.256088,Fluoranthene,LB
+37049,2.873936,Acenaphthylene,LB
+37049,511.0286,Formaldehyde,LB
+37049,12.656556,"2,2,4-Trimethylpentane",LB
+37049,0.02352434,Arsenic,LB
+37049,223.2932,Acetaldehyde,LB
+37049,6.612514,Phenanthrene,LB
+37049,0.1718403,Methane,TON
+37049,0.6146908,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.04408082,"Benzo[g,h,i,]Perylene",LB
+37035,111.55678,Benzene,LB
+37035,0.2170876,Nickel,LB
+37035,13.50628,Phenanthrene,LB
+37035,3.310454,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.6575709,Ammonia,TON
+37035,5.338367,PM2.5 Primary (Filt + Cond),TON
+37035,0.3850031,Sulfur Dioxide,TON
+37029,276.7108,Ethyl Benzene,LB
+37013,34.70836,Benzene,LB
+37013,0.9358384,Acenaphthene,LB
+37013,0.01824949,Nitrous Oxide,TON
+37013,0.013712724,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,21.19196,Acrolein,LB
+37013,15.728508,Xylenes (Mixed Isomers),LB
+37013,0.2268274,Benzo[a]Pyrene,LB
+37013,6.35432,"2,2,4-Trimethylpentane",LB
+37013,0.734891,Benz[a]Anthracene,LB
+37013,7.772065,Carbon Monoxide,TON
+37013,0.7673189,Elemental Carbon portion of PM2.5-PRI,TON
+37021,24.10094,Acrolein,LB
+37021,5.713262,Acenaphthylene,LB
+37021,281.2172,Acetaldehyde,LB
+37021,0.9171529,PM10 Primary (Filt + Cond),TON
+37005,0.016929428,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.0610714,Fluoranthene,LB
+37005,0.0003884272,"Dibenzo[a,h]Anthracene",LB
+37005,0.03428553,Ammonia,TON
+37005,0.005512051,Sulfur Dioxide,TON
+37005,366.6718,Toluene,LB
+37049,22.40338,Formaldehyde,LB
+37049,0.02314434,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.02650578,Manganese,LB
+37049,14.34601,Carbon Monoxide,TON
+37049,0.0831237,Ammonia,TON
+37049,0.7700471,Volatile Organic Compounds,TON
+37113,0.18014542,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.04928285,Elemental Carbon portion of PM2.5-PRI,TON
+37113,0.005044702,Sulfate Portion of PM2.5-PRI,TON
+37113,9.195801,Volatile Organic Compounds,TON
+37099,0.00015695422,Chromium (VI),LB
+37099,34.46332,Benzene,LB
+37099,0.00017930434,Mercury,LB
+37099,162.0996,Acetaldehyde,LB
+37099,0.1686473,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,38.0831,Formaldehyde,LB
+37095,0.003534664,Benzo[a]Pyrene,LB
+37095,16.54828,Acetaldehyde,LB
+37095,0.214553,Fluorene,LB
+37095,7.231948e-05,Nitrate portion of PM2.5-PRI,TON
+37095,2.5724,Toluene,LB
+37083,8.680062e-05,Acenaphthylene,LB
+37083,5.476866e-07,"Dibenzo[a,h]Anthracene",LB
+37083,2.387014e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,1.3337656e-05,Benzo[b]Fluoranthene,LB
+37083,3.64834e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37083,6.841771e-08,Nitrate portion of PM2.5-PRI,TON
+37083,0.0010596,Nitrogen Oxides,TON
+37083,1.307459e-05,Organic Carbon portion of PM2.5-PRI,TON
+37083,5.268372e-06,Sulfur Dioxide,TON
+37073,2.660008,Benzene,LB
+37073,12.14376,Acetaldehyde,LB
+37073,0.1850511,Fluorene,LB
+37073,0.004021808,Methane,TON
+37073,0.06299581,PM2.5 Primary (Filt + Cond),TON
+37073,0.1675359,Volatile Organic Compounds,TON
+37073,0.0008076408,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.16498712,Acenaphthylene,LB
+37065,9.831958,Anthracene,LB
+37065,0.006685228,Chromium (VI),LB
+37065,11.042018,"Benzo[g,h,i,]Perylene",LB
+37065,3.120766,Chrysene,LB
+37065,1559.418,"1,3-Butadiene",LB
+37065,39104.04,Toluene,LB
+37065,11152.728,Benzene,LB
+37065,0.9519317,Elemental Carbon portion of PM2.5-PRI,TON
+37065,5.034981,PM2.5 Primary (Filt + Cond),TON
+37061,0.8057452,Acrolein,LB
+37061,0.6763558,Xylenes (Mixed Isomers),LB
+37061,0.0004294854,"Benzo[g,h,i,]Perylene",LB
+37061,0.0002805232,"Dibenzo[a,h]Anthracene",LB
+37061,0.9606074,Benzene,LB
+37061,0.002150258,Manganese,LB
+37061,0.07129612,Fluorene,LB
+37061,0.0002069948,Nitrous Oxide,TON
+37061,0.0009411055,Sulfur Dioxide,TON
+37051,4.915958,Acenaphthene,LB
+37051,199.54232,Naphthalene,LB
+37051,4.449172,Elemental Carbon portion of PM2.5-PRI,TON
+37051,189.7404,Nitrogen Oxides,TON
+37051,139.40346,Acrolein,LB
+37051,49.74246,Hexane,LB
+37051,85.00278,Propionaldehyde,LB
+37049,10832.768,Ethyl Benzene,LB
+37049,29.792,Pyrene,LB
+37049,0.13353334,Mercury,LB
+37049,1.6649882,Nickel,LB
+37049,2.553012,Arsenic,LB
+37049,6095.406,Acetaldehyde,LB
+37049,36.36676,Fluorene,LB
+37049,500.6831,Nitrogen Oxides,TON
+37049,2.255374,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,313.3912,Volatile Organic Compounds,TON
+37035,0.4134791,Methane,TON
+37035,0.3490078,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.2563666,Benzo[b]Fluoranthene,LB
+37035,0.3498406,Benzo[a]Pyrene,LB
+37035,1651.9994,"2,2,4-Trimethylpentane",LB
+37027,0.005080748,Ammonia,TON
+37027,17.602698,Xylenes (Mixed Isomers),LB
+37027,6.283568,"2,2,4-Trimethylpentane",LB
+37027,0.0001699746,Nitrous Oxide,TON
+37027,2.47537e-06,Nitrate portion of PM2.5-PRI,TON
+37027,0.0004623278,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.9095966,Hexane,LB
+37027,7.973577e-05,Sulfur Dioxide,TON
+37047,2236.212,Ethyl Benzene,LB
+37045,0.319804,Pyrene,LB
+37045,0.078043,Benz[a]Anthracene,LB
+37045,0.3950078,Phenanthrene,LB
+37045,3.538428,Naphthalene,LB
+37045,0.01978315,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,0.181237,Volatile Organic Compounds,TON
+37043,530.633,"2,2,4-Trimethylpentane",LB
+37041,241.8398,Ethyl Benzene,LB
+37041,7.026187,Volatile Organic Compounds,TON
+37039,0.077093,Styrene,LB
+37039,1.0785032,Formaldehyde,LB
+37039,3.113162e-05,"Dibenzo[a,h]Anthracene",LB
+37039,0.001005143,Benz[a]Anthracene,LB
+37039,0.001868835,Methane,TON
+37039,0.05188727,Volatile Organic Compounds,TON
+37027,0.004209528,Sulfate Portion of PM2.5-PRI,TON
+37027,15.64289,Volatile Organic Compounds,TON
+37027,8.97033,Styrene,LB
+37027,0.00012934416,Chromium (VI),LB
+37027,0.8207488,Fluorene,LB
+37027,0.188704,Methane,TON
+37027,85.12195,Carbon Monoxide,TON
+37007,0.11911356,Acrolein,LB
+37007,0.0001735989,Fluoranthene,LB
+37007,8.883084e-06,Mercury,LB
+37007,0.00011198768,Acenaphthene,LB
+37007,7.939646e-07,Nitrate portion of PM2.5-PRI,TON
+37007,0.003002189,PM2.5 Primary (Filt + Cond),TON
+37007,0.00175152,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.0002903175,Sulfate Portion of PM2.5-PRI,TON
+37007,0.02306124,Volatile Organic Compounds,TON
+37007,7.239044,Xylenes (Mixed Isomers),LB
+37007,1.8701904e-06,Chromium (VI),LB
+37007,0.00304173,"Benzo[g,h,i,]Perylene",LB
+37007,0.0008455896,Benzo[b]Fluoranthene,LB
+37007,0.0011459484,Benzo[a]Pyrene,LB
+37007,4.017955e-06,Nitrate portion of PM2.5-PRI,TON
+37007,0.001640105,PM2.5 Primary (Filt + Cond),TON
+37019,0.04779128,Nickel,LB
+37019,0.3667689,PM10-Primary from certain diesel engines,TON
+37019,0.0007777677,Nitrate portion of PM2.5-PRI,TON
+37019,10.849116,Ethyl Benzene,LB
+37019,25.3622,Acrolein,LB
+37011,0.1091526,Benzo[a]Pyrene,LB
+37011,4.717372,"2,2,4-Trimethylpentane",LB
+37011,4.296372e-05,Mercury,LB
+37011,0.001953642,Nitrate portion of PM2.5-PRI,TON
+37011,0.06819637,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,19.82373,Toluene,LB
+37009,9.26582,Propionaldehyde,LB
+37009,22.2117,Xylenes (Mixed Isomers),LB
+37009,0.19184512,Chrysene,LB
+37009,1.138761,Fluorene,LB
+37009,0.8737662,PM2.5 Primary (Filt + Cond),TON
+37009,0.08183587,Sulfate Portion of PM2.5-PRI,TON
+37009,1.059932,Volatile Organic Compounds,TON
+37009,1.183574e-06,Chromium (VI),LB
+37009,0.00242372,Benzo[b]Fluoranthene,LB
+37009,1.1865278e-05,Mercury,LB
+37009,3.662334,Carbon Monoxide,TON
+37009,0.001860272,Ammonia,TON
+37009,0.0008816074,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.0009943452,Sulfur Dioxide,TON
+37009,0.2378329,Volatile Organic Compounds,TON
+37005,0.002636976,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,2.31339,"2,2,4-Trimethylpentane",LB
+37005,0.11828098,Benz[a]Anthracene,LB
+37005,0.03478738,Manganese,LB
+37005,0.19099478,Acenaphthene,LB
+37005,0.7717938,Phenanthrene,LB
+37005,0.05581341,Ammonia,TON
+37005,0.03097882,Sulfur Dioxide,TON
+37005,188.37486,Benzene,LB
+37005,0.1917106,Acenaphthene,LB
+37005,3.7708,Acrolein,LB
+37005,137.25088,Hexane,LB
+37005,8.315938e-05,Chromium (VI),LB
+37005,0.04716832,Benzo[b]Fluoranthene,LB
+37003,0.0007420828,Toluene,LB
+37003,0.00013916722,Hexane,LB
+37003,8.707642e-08,Benzo[b]Fluoranthene,LB
+37003,6.020658e-09,Nickel,LB
+37003,5.44692e-08,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,865.821,Styrene,LB
+37001,80315.84,Xylenes (Mixed Isomers),LB
+37001,10.111876,Benzo[k]Fluoranthene,LB
+37001,11400.518,Formaldehyde,LB
+37001,401090.6,Carbon Dioxide,TON
+37001,15.89352,PM2.5 Primary (Filt + Cond),TON
+37185,9.749806e-06,Sulfate Portion of PM2.5-PRI,TON
+37185,0.2545568,Toluene,LB
+37185,0.000713738,"Benzo[g,h,i,]Perylene",LB
+37185,0.00010591282,Chrysene,LB
+37185,0.01464035,Nitrogen Oxides,TON
+37185,0.0001655571,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.04675276,Volatile Organic Compounds,TON
+37055,0.0012981988,Pyrene,LB
+37055,0.0007824292,Benzo[k]Fluoranthene,LB
+37055,1.2707798,Formaldehyde,LB
+37055,3.431938e-05,"Dibenzo[a,h]Anthracene",LB
+37055,1.9275092,Benzene,LB
+37055,6.89286e-05,Mercury,LB
+37055,0.9340933,Carbon Monoxide,TON
+37043,0.0003659464,Phenanthrene,LB
+37043,8.490793,Carbon Dioxide,TON
+37043,0.0003304372,"Benzo[g,h,i,]Perylene",LB
+37043,0.1197788,Formaldehyde,LB
+37167,0.7281868,Xylenes (Mixed Isomers),LB
+37167,0.000602308,Fluoranthene,LB
+37167,0.0010440584,Manganese,LB
+37167,0.0004115974,Nickel,LB
+37167,0.001196057,PM2.5 Primary (Filt + Cond),TON
+37167,0.009642066,Arsenic,LB
+37167,0.00763026,Acenaphthene,LB
+37167,8.395586,Carbon Monoxide,TON
+37167,0.0005514953,Sulfate Portion of PM2.5-PRI,TON
+37167,0.7775628,Acrolein,LB
+37167,0.007335518,Benzo[k]Fluoranthene,LB
+37167,0.03519818,Acenaphthylene,LB
+37167,8.04602,"2,2,4-Trimethylpentane",LB
+37175,0.3987659,Methane,TON
+37175,0.2605621,Nitrogen Oxides,TON
+37175,0.001261217,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.16877854,Acrolein,LB
+37175,1.0981054,Propionaldehyde,LB
+37175,0.17788076,Xylenes (Mixed Isomers),LB
+37175,0.0002204862,Arsenic,LB
+37173,750.3316,Toluene,LB
+37173,0.04227244,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,166.31788,"2,2,4-Trimethylpentane",LB
+37173,3.232543,Volatile Organic Compounds,TON
+37165,2.1165e-05,Mercury,LB
+37165,0.004592948,Fluorene,LB
+37165,0.11790288,Naphthalene,LB
+37165,0.003324145,Ammonia,TON
+37165,0.05204422,Styrene,LB
+37165,0.005512646,"Benzo[g,h,i,]Perylene",LB
+37027,6.264452,"2,2,4-Trimethylpentane",LB
+37027,0.1599695,Volatile Organic Compounds,TON
+37173,2.473422,Acetaldehyde,LB
+37173,0.0012173116,Phenanthrene,LB
+37173,0.01109865,Naphthalene,LB
+37173,0.00019969092,Anthracene,LB
+37173,0.0003735942,Fluoranthene,LB
+37173,0.0002599778,Benzo[k]Fluoranthene,LB
+37173,2.083188e-05,Mercury,LB
+37173,0.0002597314,Nickel,LB
+37153,0.0002373304,Benz[a]Anthracene,LB
+37153,0.0002772064,Nickel,LB
+37153,0.0002323946,Acenaphthene,LB
+37153,0.002229999,Methane,TON
+37153,2.366822e-05,Sulfate Portion of PM2.5-PRI,TON
+37123,0.00018724966,Anthracene,LB
+37123,0.4128344,Xylenes (Mixed Isomers),LB
+37123,1.8605214e-06,Chromium (VI),LB
+37123,0.0003565902,Arsenic,LB
+37123,0.2936304,Carbon Monoxide,TON
+37123,1.645651e-05,Sulfate Portion of PM2.5-PRI,TON
+37109,0.07830709,Methane,TON
+37109,1309.323,Carbon Dioxide,TON
+37109,0.04824208,Acenaphthylene,LB
+37175,2.982648,Benzene,LB
+37175,0.000916135,Manganese,LB
+37175,0.015245908,Phenanthrene,LB
+37175,0.1459154,Naphthalene,LB
+37175,0.001920272,Nitrous Oxide,TON
+37175,0.0004905756,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,0.0008592661,Sulfur Dioxide,TON
+37175,0.885247,Formaldehyde,LB
+37175,2.144876e-05,"Dibenzo[a,h]Anthracene",LB
+37175,1471.6212,"1,3-Butadiene",LB
+37175,2.374264,Benzo[b]Fluoranthene,LB
+37175,3232.224,Formaldehyde,LB
+37175,6.202874,Ammonia,TON
+37167,3.777278,Naphthalene,LB
+37167,0.09158676,PM2.5 Primary (Filt + Cond),TON
+37167,0.1924099,Volatile Organic Compounds,TON
+37167,2.685764,Acrolein,LB
+37167,0.8976576,Hexane,LB
+37167,0.05644076,Anthracene,LB
+37167,17.119068,Formaldehyde,LB
+37167,0.01905781,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.004090047,Sulfate Portion of PM2.5-PRI,TON
+37159,31.0741,Hexane,LB
+37159,0.04751768,"Benzo[g,h,i,]Perylene",LB
+37159,8.044474,Fluoranthene,LB
+37159,128.4437,Naphthalene,LB
+37159,4.423382,PM10 Primary (Filt + Cond),TON
+37159,0.5419814,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,6.422455,Volatile Organic Compounds,TON
+37149,11.542836,"1,3-Butadiene",LB
+37149,0.015075474,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.0001969885,Mercury,LB
+37149,4.209408,Phenanthrene,LB
+37149,0.1396747,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,248.0246,Xylenes (Mixed Isomers),LB
+37151,0.015867738,Benzo[k]Fluoranthene,LB
+37151,21730.71,Carbon Dioxide,TON
+37151,2.479101,Elemental Carbon portion of PM2.5-PRI,TON
+37151,4.487844,PM10 Primary (Filt + Cond),TON
+37151,3.451453,PM2.5 Primary (Filt + Cond),TON
+37151,0.1895176,Sulfur Dioxide,TON
+37151,0.09867742,Sulfate Portion of PM2.5-PRI,TON
+37151,0.15399338,Benz[a]Anthracene,LB
+37151,24.24556,Benzene,LB
+37151,0.04834444,PM10-Primary from certain diesel engines,TON
+37151,0.02711208,Ammonia,TON
+37151,0.01484902,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,109.41734,Toluene,LB
+37147,3.855411,Volatile Organic Compounds,TON
+37139,2.400342,Ethyl Benzene,LB
+37139,3.7159,Propionaldehyde,LB
+37139,0.3818196,Acenaphthylene,LB
+37139,0.16152796,Benz[a]Anthracene,LB
+37139,0.016372064,Manganese,LB
+37199,0.005963974,Propionaldehyde,LB
+37199,0.0016322088,Acenaphthylene,LB
+37199,2.062516e-05,Arsenic,LB
+37199,0.1260042,Acetaldehyde,LB
+37195,0.02095558,Styrene,LB
+37195,8.320714e-06,Chromium (VI),LB
+37195,0.0010499674,Benzo[b]Fluoranthene,LB
+37195,0.001467494,Fluorene,LB
+37195,0.03786006,Naphthalene,LB
+37195,0.09191436,Nitrogen Oxides,TON
+37197,90.66326,Benzene,LB
+37197,0.02071056,Manganese,LB
+37197,0.005289912,Nickel,LB
+37197,4.51083,Naphthalene,LB
+37197,0.06224051,Ammonia,TON
+37197,0.002437909,Sulfate Portion of PM2.5-PRI,TON
+37197,0.2649176,Acrolein,LB
+37197,0.01070018,PM10 Primary (Filt + Cond),TON
+37189,0.17115612,Styrene,LB
+37189,0.3932482,"1,3-Butadiene",LB
+37189,1.2247966,Benzene,LB
+37189,0.00776436,Manganese,LB
+37189,0.004902452,Ammonia,TON
+37189,0.002885281,Sulfate Portion of PM2.5-PRI,TON
+37189,0.07308498,Volatile Organic Compounds,TON
+37187,8.112412,"1,3-Butadiene",LB
+37187,13.21149,Propionaldehyde,LB
+37187,0.07297966,Chrysene,LB
+37187,0.010517416,Arsenic,LB
+37187,15.06926,Carbon Monoxide,TON
+37187,1467.806,Carbon Dioxide,TON
+37187,0.02522825,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.2525313,PM10 Primary (Filt + Cond),TON
+37187,0.006277218,Sulfate Portion of PM2.5-PRI,TON
+37179,0.0771116,PM10-Primary from certain diesel engines,TON
+37179,1.123646,Nitrogen Oxides,TON
+37179,32.01728,Formaldehyde,LB
+37177,0.0007843062,Arsenic,LB
+37177,0.04737796,Phenanthrene,LB
+37177,0.02910072,Fluorene,LB
+37177,0.004072396,Methane,TON
+37177,0.001531529,PM2.5 Primary (Filt + Cond),TON
+37177,0.0002218953,Sulfate Portion of PM2.5-PRI,TON
+37177,0.14767726,Hexane,LB
+37177,0.2813214,Propionaldehyde,LB
+37173,4.76162,Hexane,LB
+37173,5.61278e-05,Chromium (VI),LB
+37173,0.02820366,Nickel,LB
+37173,0.4598025,PM25-Primary from certain diesel engines,TON
+37173,0.005721401,Nitrous Oxide,TON
+37173,0.480994,PM2.5 Primary (Filt + Cond),TON
+37173,1.4526428,"2,2,4-Trimethylpentane",LB
+37173,1.5241164e-05,Mercury,LB
+37173,1.231472,Nitrogen Oxides,TON
+37173,0.003789014,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.002080593,Sulfate Portion of PM2.5-PRI,TON
+37041,5.39463,Hexane,LB
+37041,11.657118,Propionaldehyde,LB
+37041,13.65299,Xylenes (Mixed Isomers),LB
+37041,0.0004996468,"Dibenzo[a,h]Anthracene",LB
+37041,20.43446,Benzene,LB
+37041,23.76312,Naphthalene,LB
+37041,0.01049321,Sulfur Dioxide,TON
+37033,0.2008356,Fluorene,LB
+37033,5.148926,Naphthalene,LB
+37033,0.04229936,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.603531,Chrysene,LB
+37031,0.013241554,"Dibenzo[a,h]Anthracene",LB
+37031,1.305625,Acenaphthene,LB
+37025,4826.75,"1,3-Butadiene",LB
+37025,57.40642,Pyrene,LB
+37025,9.442796,Chrysene,LB
+37025,5.225342,Arsenic,LB
+37025,0.04282774,Nitrate portion of PM2.5-PRI,TON
+37025,13.9616,Anthracene,LB
+37025,5.97432,Benzo[k]Fluoranthene,LB
+37025,389132.4,Carbon Dioxide,TON
+37025,8.836719,Nitrous Oxide,TON
+37173,0.08490182,Acenaphthylene,LB
+37173,16.296598,Formaldehyde,LB
+37173,0.013102672,Benzo[a]Pyrene,LB
+37173,1.5003164,Benzene,LB
+37173,1.7535682,Naphthalene,LB
+37173,0.0480886,PM10-Primary from certain diesel engines,TON
+37173,0.005490227,Ammonia,TON
+37173,0.001582244,Sulfur Dioxide,TON
+37173,0.001778968,Sulfate Portion of PM2.5-PRI,TON
+37097,0.01140334,Methane,TON
+37097,0.02314462,Ammonia,TON
+37097,0.02010953,PM2.5 Primary (Filt + Cond),TON
+37097,0.0006123399,Sulfate Portion of PM2.5-PRI,TON
+37097,0.3295223,Volatile Organic Compounds,TON
+37097,1.3969054e-05,Chromium (VI),LB
+37097,0.009144462,Benzo[k]Fluoranthene,LB
+37097,0.002677404,Arsenic,LB
+37097,0.019242302,Acenaphthene,LB
+37081,27.55066,Acenaphthylene,LB
+37081,10118.964,Formaldehyde,LB
+37081,0.002864376,Mercury,LB
+37081,0.7883976,Nickel,LB
+37081,3758.35,Acetaldehyde,LB
+37081,15.41747,Methane,TON
+37081,21.14144,PM10-Primary from certain diesel engines,TON
+37081,1.619508,Hexane,LB
+37081,0.02510278,Propionaldehyde,LB
+37081,3.19708,Xylenes (Mixed Isomers),LB
+37081,6.68065e-06,Chromium (VI),LB
+37081,0.002529456,Benzo[b]Fluoranthene,LB
+37081,0.8061834,"2,2,4-Trimethylpentane",LB
+37081,2.308396,Benzene,LB
+37081,0.00560876,Manganese,LB
+37081,0.0008350992,Nickel,LB
+37081,0.3777938,Acetaldehyde,LB
+37081,0.01132307,Ammonia,TON
+37081,0.03012986,PM10 Primary (Filt + Cond),TON
+37081,0.008893967,Sulfur Dioxide,TON
+37077,0.10326728,Acrolein,LB
+37077,0.004861972,Anthracene,LB
+37077,0.006997228,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.008687596,Fluoranthene,LB
+37077,0.00389943,Benzo[k]Fluoranthene,LB
+37077,2.776675,Carbon Monoxide,TON
+37077,0.002972919,Nitrous Oxide,TON
+37075,1.316847,Propionaldehyde,LB
+37075,0.000931614,"Benzo[g,h,i,]Perylene",LB
+37075,0.0005907806,Benzo[k]Fluoranthene,LB
+37075,0.0005776568,Arsenic,LB
+37075,0.0002742078,Nitrate portion of PM2.5-PRI,TON
+37071,0.04309442,"Dibenzo[a,h]Anthracene",LB
+37071,135.73594,Benzene,LB
+37071,0.18529248,Nickel,LB
+37071,0.4335336,Ammonia,TON
+37071,61.80039,Nitrogen Oxides,TON
+37071,0.00743284,Acenaphthylene,LB
+37071,0.0008939694,Benz[a]Anthracene,LB
+37071,6.0568e-05,Sulfate Portion of PM2.5-PRI,TON
+37071,0.03146914,Propionaldehyde,LB
+37063,1.3234056,Ethyl Benzene,LB
+37063,0.6063352,Styrene,LB
+37063,2.210388,Propionaldehyde,LB
+37063,0.01692845,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,28.76276,Hexane,LB
+37057,2.975056,Anthracene,LB
+37057,1147.5008,Formaldehyde,LB
+37057,0.02006426,"Dibenzo[a,h]Anthracene",LB
+37057,31.55572,"2,2,4-Trimethylpentane",LB
+37057,1.6965618,Benz[a]Anthracene,LB
+37057,0.000570025,Mercury,LB
+37057,2.962924,Acenaphthene,LB
+37057,0.05275237,Nitrous Oxide,TON
+37057,5.851592,PM10 Primary (Filt + Cond),TON
+37057,9.064048,Hexane,LB
+37057,1.7274404,Pyrene,LB
+37057,0.0016243904,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.02138448,Benzo[a]Pyrene,LB
+37057,0.0008810346,"Dibenzo[a,h]Anthracene",LB
+37057,0.0522499,Manganese,LB
+37057,0.01455496,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.01885443,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.9020162,Arsenic,LB
+37055,70183.22,Carbon Dioxide,TON
+37055,8.394817,PM10 Primary (Filt + Cond),TON
+37055,2.544696,Anthracene,LB
+37055,3.926074,"Benzo[g,h,i,]Perylene",LB
+37053,295.5862,Hexane,LB
+37053,6.40771e-05,Chromium (VI),LB
+37053,0.7026116,Acenaphthylene,LB
+37053,58.2618,Formaldehyde,LB
+37053,0.008008964,Nickel,LB
+37053,0.838449,Phenanthrene,LB
+37053,0.001915071,Sulfate Portion of PM2.5-PRI,TON
+37047,7.25622,Propionaldehyde,LB
+37047,2.80739e-05,Chromium (VI),LB
+37047,0.00203397,"Dibenzo[a,h]Anthracene",LB
+37047,11.15832,Nitrogen Oxides,TON
+37039,0.014638038,Chrysene,LB
+37039,0.0003120752,"Dibenzo[a,h]Anthracene",LB
+37039,1.1491122,Naphthalene,LB
+37039,1.109403,Nitrogen Oxides,TON
+37039,0.05966955,Volatile Organic Compounds,TON
+37037,0.3343372,Styrene,LB
+37037,4.55332,Formaldehyde,LB
+37037,0.005000514,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.002920788,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.03045118,Xylenes (Mixed Isomers),LB
+37029,0.00010252698,Acenaphthylene,LB
+37029,0.943946,Acetaldehyde,LB
+37029,0.0002226688,Phenanthrene,LB
+37029,0.00010487214,Fluorene,LB
+37029,0.08203314,Nitrogen Oxides,TON
+37029,0.0009012293,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.01211971,Volatile Organic Compounds,TON
+37027,11.382002,Hexane,LB
+37027,0.0364472,Arsenic,LB
+37027,1.690093,PM25-Primary from certain diesel engines,TON
+37027,0.005135233,Nitrate portion of PM2.5-PRI,TON
+37027,0.439847,Organic Carbon portion of PM2.5-PRI,TON
+37027,1.835179,PM2.5 Primary (Filt + Cond),TON
+37173,0.15776782,Ethyl Benzene,LB
+37173,0.0002701128,Anthracene,LB
+37173,0.00015752904,Benzo[a]Pyrene,LB
+37173,0.0002005912,Ammonia,TON
+37171,0.0141204,Chromium (VI),LB
+37171,9.671322,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,1.765075,Nickel,LB
+37171,2.706496,Arsenic,LB
+37171,1238.1144,Naphthalene,LB
+37171,2.162675,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.02903864,Nitrate portion of PM2.5-PRI,TON
+37169,25.13552,Hexane,LB
+37165,0.7812546,Acenaphthene,LB
+37165,2.967912,Phenanthrene,LB
+37165,0.2727744,Organic Carbon portion of PM2.5-PRI,TON
+37165,1.467671,PM10 Primary (Filt + Cond),TON
+37165,0.02355203,Sulfate Portion of PM2.5-PRI,TON
+37165,7.682406,"1,3-Butadiene",LB
+37165,225.3008,Formaldehyde,LB
+37163,2221.5,Ethyl Benzene,LB
+37163,8291.086,Xylenes (Mixed Isomers),LB
+37163,493.133,Benzene,LB
+37157,17.997724,Ethyl Benzene,LB
+37157,78.8242,Toluene,LB
+37157,67.881,Xylenes (Mixed Isomers),LB
+37157,4.244621,Methane,TON
+37157,5.592324,PM2.5 Primary (Filt + Cond),TON
+37157,23465.96,Xylenes (Mixed Isomers),LB
+37157,12.340536,"Benzo[g,h,i,]Perylene",LB
+37147,46.97478,Xylenes (Mixed Isomers),LB
+37147,0.0475124,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,6.081958,Fluoranthene,LB
+37147,17.890724,"2,2,4-Trimethylpentane",LB
+37147,68.353,Benzene,LB
+37145,0.016253948,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,2.21788,Fluoranthene,LB
+37145,7.107524e-05,Mercury,LB
+37145,0.9406806,Acenaphthene,LB
+37145,3.637746,Phenanthrene,LB
+37145,2.064082,Fluorene,LB
+37145,2950.508,Carbon Dioxide,TON
+37145,0.679554,PM25-Primary from certain diesel engines,TON
+37145,0.07703255,Ammonia,TON
+37145,0.3046929,Organic Carbon portion of PM2.5-PRI,TON
+37145,92.91975,Nitrogen Oxides,TON
+37145,0.5958417,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,11073.666,Xylenes (Mixed Isomers),LB
+37145,6.355324,Fluoranthene,LB
+37145,1249.0302,Formaldehyde,LB
+37145,8.801338,Fluorene,LB
+37129,6.984607,PM10-Primary from certain diesel engines,TON
+37129,6.425562,PM25-Primary from certain diesel engines,TON
+37129,14.85817,PM10 Primary (Filt + Cond),TON
+37129,8.866978,Volatile Organic Compounds,TON
+37129,0.4680552,"2,2,4-Trimethylpentane",LB
+37129,1.7217754,Benzene,LB
+37129,0.000592038,Arsenic,LB
+37129,0.04160423,PM10-Primary from certain diesel engines,TON
+37129,0.1051403,Volatile Organic Compounds,TON
+37141,23.15898,Formaldehyde,LB
+37141,9.197146e-06,Mercury,LB
+37141,9.834416,Acetaldehyde,LB
+37141,0.01293287,Methane,TON
+37141,0.02269041,Organic Carbon portion of PM2.5-PRI,TON
+37141,1.76316,Acrolein,LB
+37141,0.07530248,Anthracene,LB
+37137,0.9116848,Acetaldehyde,LB
+37137,0.2304258,Naphthalene,LB
+37137,15.05845,Carbon Dioxide,TON
+37137,0.005018592,PM10-Primary from certain diesel engines,TON
+37137,0.00180048,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.003509686,PM2.5 Primary (Filt + Cond),TON
+37137,0.09985201,Volatile Organic Compounds,TON
+37137,0.03989564,Anthracene,LB
+37137,8.16556e-06,Chromium (VI),LB
+37137,0.003650214,Chrysene,LB
+37137,9.03514e-06,Mercury,LB
+37137,2.082986,Naphthalene,LB
+37137,142.8156,Carbon Dioxide,TON
+37131,0.001877678,Benzo[k]Fluoranthene,LB
+37131,64.5057,Formaldehyde,LB
+37131,0.2142046,Acenaphthene,LB
+37131,0.7843942,Phenanthrene,LB
+37131,0.2147406,PM10 Primary (Filt + Cond),TON
+37131,0.003718716,Sulfur Dioxide,TON
+37131,0.06180182,Manganese,LB
+37131,53.76932,Naphthalene,LB
+37131,16.111012,Ethyl Benzene,LB
+37131,7.278398,Styrene,LB
+37131,12.114086,Hexane,LB
+37131,1.3642832,Anthracene,LB
+37131,26.6447,Propionaldehyde,LB
+37131,2.797516,Acenaphthylene,LB
+37131,0.3474254,Benz[a]Anthracene,LB
+37113,1.7948834,Acrolein,LB
+37113,1.179123,Propionaldehyde,LB
+37113,0.03529406,Chrysene,LB
+37113,2.511878,Naphthalene,LB
+37113,0.9235319,Nitrogen Oxides,TON
+37109,3181.88,Toluene,LB
+37109,0.2521896,Benzo[b]Fluoranthene,LB
+37109,0.007453076,"Dibenzo[a,h]Anthracene",LB
+37109,687.3002,"2,2,4-Trimethylpentane",LB
+37109,0.19526194,Manganese,LB
+37109,0.13162424,Arsenic,LB
+37109,0.962342,Acenaphthene,LB
+37109,1.9493804,Fluorene,LB
+37097,11.145906,"1,3-Butadiene",LB
+37097,29.55522,Acrolein,LB
+37097,0.0016297768,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.09861768,Chrysene,LB
+37097,400.8176,Formaldehyde,LB
+37097,0.0008914266,"Dibenzo[a,h]Anthracene",LB
+37097,166.83046,Acetaldehyde,LB
+37097,0.04070197,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.2947174,PM10 Primary (Filt + Cond),TON
+37091,0.002357784,Nitrate portion of PM2.5-PRI,TON
+37091,1.063955,Volatile Organic Compounds,TON
+37091,0.13269456,Benzo[a]Pyrene,LB
+37105,0.00508603,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,0.005056628,Benzo[a]Pyrene,LB
+37105,0.00011670602,"Dibenzo[a,h]Anthracene",LB
+37105,0.03993604,Phenanthrene,LB
+37105,0.003617459,Ammonia,TON
+37105,0.3178017,Nitrogen Oxides,TON
+37101,0.072343,Ethyl Benzene,LB
+37101,0.002652788,Acrolein,LB
+37101,0.3893408,Toluene,LB
+37101,0.000216542,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.00011776074,Benzo[k]Fluoranthene,LB
+37101,0.0006412792,Acenaphthylene,LB
+37101,0.0002822062,Fluorene,LB
+37101,0.0003813742,Ammonia,TON
+37099,0.1098853,Organic Carbon portion of PM2.5-PRI,TON
+37099,8.507668,Xylenes (Mixed Isomers),LB
+37167,1.6923604,Benzene,LB
+37129,0.1233589,Ammonia,TON
+37129,0.07032389,PM2.5 Primary (Filt + Cond),TON
+37129,2.028358,"1,3-Butadiene",LB
+37129,0.00014121346,Chromium (VI),LB
+37129,0.09320822,"Benzo[g,h,i,]Perylene",LB
+37129,19.231178,"2,2,4-Trimethylpentane",LB
+37129,0.07835948,Manganese,LB
+37129,192.7897,Acetaldehyde,LB
+37131,0.3856058,Ethyl Benzene,LB
+37131,0.001298462,Pyrene,LB
+37131,0.002999588,Acenaphthylene,LB
+37131,0.0007155112,Benz[a]Anthracene,LB
+37131,5.678459e-06,Nitrate portion of PM2.5-PRI,TON
+37177,24.0561,Acrolein,LB
+37177,6.090498,Acenaphthylene,LB
+37177,428.298,Formaldehyde,LB
+37177,0.011003012,"Dibenzo[a,h]Anthracene",LB
+37177,1.337543,Acenaphthene,LB
+37177,7.260868,Phenanthrene,LB
+37177,0.7463288,Methane,TON
+37177,0.5132104,Nitrous Oxide,TON
+37177,46.97494,Nitrogen Oxides,TON
+37175,0.11269688,Anthracene,LB
+37175,0.005569696,Nickel,LB
+37175,0.008540294,Arsenic,LB
+37175,1.453242,Nitrogen Oxides,TON
+37169,0.6681074,Styrene,LB
+37169,3.239746,Toluene,LB
+37169,5.16998,Naphthalene,LB
+37169,0.01196234,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.004852039,Sulfur Dioxide,TON
+37169,0.07624744,Propionaldehyde,LB
+37169,0.006691936,Pyrene,LB
+37169,0.001482439,Benz[a]Anthracene,LB
+37169,4.191958,Benzene,LB
+37169,0.0008275564,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.001481355,Sulfur Dioxide,TON
+37167,15.328732,Benzene,LB
+37153,29.95148,Acrolein,LB
+37153,3.393952,Pyrene,LB
+37153,0.01408514,Nitrous Oxide,TON
+37153,0.004079647,Nitrate portion of PM2.5-PRI,TON
+37153,1.791258,PM2.5 Primary (Filt + Cond),TON
+37135,103.27622,Hexane,LB
+37135,0.1113879,Anthracene,LB
+37135,0.19710006,Fluoranthene,LB
+37135,0.06327098,Manganese,LB
+37135,0.012496766,Nickel,LB
+37135,0.3784473,PM10 Primary (Filt + Cond),TON
+37135,0.08406864,Sulfur Dioxide,TON
+37137,0.0004831142,Nitrate portion of PM2.5-PRI,TON
+37137,0.0017025648,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,1.398676,Fluoranthene,LB
+37137,1.811878,Acenaphthylene,LB
+37137,0.1826725,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.005412184,Benzo[a]Pyrene,LB
+37129,0.006283598,Ammonia,TON
+37065,5.007436,Hexane,LB
+37065,11.829056,Formaldehyde,LB
+37065,0.005496772,Benz[a]Anthracene,LB
+37065,0.007943986,Arsenic,LB
+37065,0.01842964,PM2.5 Primary (Filt + Cond),TON
+37137,0.5442362,Xylenes (Mixed Isomers),LB
+37137,0.000571888,Manganese,LB
+37137,0.012610174,Naphthalene,LB
+37175,0.2008988,Phenanthrene,LB
+37175,0.09053684,Volatile Organic Compounds,TON
+37175,0.4118952,Hexane,LB
+37175,0.05684486,Anthracene,LB
+37175,4.25762e-06,Chromium (VI),LB
+37175,0.005441102,Manganese,LB
+37175,0.003797908,Acrolein,LB
+37175,0.4258698,Xylenes (Mixed Isomers),LB
+37175,6.09232e-05,Benzo[k]Fluoranthene,LB
+37175,7.009418e-06,Arsenic,LB
+37175,0.0004015378,Fluorene,LB
+37175,1.862759e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37165,3.51867,Ethyl Benzene,LB
+37165,5.897374,Hexane,LB
+37165,1.7111262,Formaldehyde,LB
+37165,8.201492e-05,"Dibenzo[a,h]Anthracene",LB
+37165,0.002108578,Benz[a]Anthracene,LB
+37165,5.435244,Benzene,LB
+37165,0.0001885252,Nickel,LB
+37165,0.0002890676,Arsenic,LB
+37165,0.01054834,Fluorene,LB
+37165,1.090836e-05,Nitrate portion of PM2.5-PRI,TON
+37159,0.2914795,Volatile Organic Compounds,TON
+37159,1.7709562,"1,3-Butadiene",LB
+37159,0.006235162,Benzo[b]Fluoranthene,LB
+37159,4.828554,Acetaldehyde,LB
+37159,6.956904,Carbon Monoxide,TON
+37155,0.016247526,Benz[a]Anthracene,LB
+37155,8.975636,Acetaldehyde,LB
+37155,0.01959027,Methane,TON
+37155,0.0047394,Elemental Carbon portion of PM2.5-PRI,TON
+37155,1.447464,Nitrogen Oxides,TON
+37147,6.184334,Styrene,LB
+37147,0.001340524,Nitrate portion of PM2.5-PRI,TON
+37147,9.914601,Nitrogen Oxides,TON
+37147,0.0053637,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,42.44562,Benzene,LB
+37143,9.402964,Xylenes (Mixed Isomers),LB
+37143,0.6560976,Fluoranthene,LB
+37143,0.05707276,Benzo[a]Pyrene,LB
+37143,0.002362996,"Dibenzo[a,h]Anthracene",LB
+37143,0.06000839,Ammonia,TON
+37143,0.0883129,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.003184962,"Benzo[g,h,i,]Perylene",LB
+37141,1.3413148,"2,2,4-Trimethylpentane",LB
+37141,5.318624e-05,Sulfate Portion of PM2.5-PRI,TON
+37127,0.05856828,Phenanthrene,LB
+37127,0.1852819,Volatile Organic Compounds,TON
+37111,0.2473026,PM25-Primary from certain diesel engines,TON
+37111,0.0145735,Ammonia,TON
+37111,0.000722448,Nitrate portion of PM2.5-PRI,TON
+37111,0.004321054,Sulfate Portion of PM2.5-PRI,TON
+37111,3.538872,Ethyl Benzene,LB
+37111,3.744052,"1,3-Butadiene",LB
+37111,6.240572,Toluene,LB
+37111,2.643344,Hexane,LB
+37111,6.04813,Propionaldehyde,LB
+37111,0.0016460542,Benzo[k]Fluoranthene,LB
+37111,10.30974,Benzene,LB
+37111,5.3594,Toluene,LB
+37111,0.00015608452,Benzo[k]Fluoranthene,LB
+37111,0.016986444,Chrysene,LB
+37111,0.00015447596,"Dibenzo[a,h]Anthracene",LB
+37111,0.19257174,Acenaphthene,LB
+37111,573.6212,Carbon Dioxide,TON
+37111,0.002311173,Sulfate Portion of PM2.5-PRI,TON
+37111,0.3593679,Volatile Organic Compounds,TON
+37177,0.0008885726,Benzo[b]Fluoranthene,LB
+37177,3.854322e-05,"Dibenzo[a,h]Anthracene",LB
+37177,0.8270538,"2,2,4-Trimethylpentane",LB
+37177,0.004734302,Phenanthrene,LB
+37177,0.003464708,Sulfur Dioxide,TON
+37079,0.0003651792,Benz[a]Anthracene,LB
+37079,1.2264556,Benzene,LB
+37079,0.0009619332,Manganese,LB
+37079,0.004005248,Ammonia,TON
+37079,0.03751496,Nitrogen Oxides,TON
+37079,0.000375086,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.0006562132,Fluoranthene,LB
+37171,1.215633,Styrene,LB
+37171,0.014401906,Benz[a]Anthracene,LB
+37171,0.0538923,Acenaphthene,LB
+37167,14184.402,Toluene,LB
+37165,468.7178,Carbon Dioxide,TON
+37165,0.01225998,Organic Carbon portion of PM2.5-PRI,TON
+37165,2.184714,"1,3-Butadiene",LB
+37165,4.561118,Xylenes (Mixed Isomers),LB
+37165,0.009976174,Nickel,LB
+37161,0.2363548,Acrolein,LB
+37161,0.004048194,Nitrous Oxide,TON
+37161,0.0002243679,Sulfate Portion of PM2.5-PRI,TON
+37149,0.2022052,"1,3-Butadiene",LB
+37149,0.0291931,Propionaldehyde,LB
+37149,3.327854,Xylenes (Mixed Isomers),LB
+37149,0.5524996,Formaldehyde,LB
+37149,0.0005696602,Manganese,LB
+37149,8.47441e-06,Mercury,LB
+37149,0.092168,Naphthalene,LB
+37149,4.259737e-06,Nitrate portion of PM2.5-PRI,TON
+37149,0.0007914142,Organic Carbon portion of PM2.5-PRI,TON
+37019,9.752104e-08,Chromium (VI),LB
+37019,5.423132e-05,Chrysene,LB
+37019,0.04335202,Formaldehyde,LB
+37019,0.00010887012,Benzo[a]Pyrene,LB
+37019,1.2189864e-05,Nickel,LB
+37019,0.0003621506,PM10 Primary (Filt + Cond),TON
+37015,0.0711508,Manganese,LB
+37015,0.1279623,Methane,TON
+37015,0.600186,PM25-Primary from certain diesel engines,TON
+37015,2.40381,Pyrene,LB
+37015,1.2623442,Acenaphthylene,LB
+37007,0.1269709,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,122.95792,Formaldehyde,LB
+37007,278.3272,"2,2,4-Trimethylpentane",LB
+37007,0.03143476,Elemental Carbon portion of PM2.5-PRI,TON
+37007,11.58007,Nitrogen Oxides,TON
+37003,22.60534,Benzene,LB
+37003,105.07818,Acetaldehyde,LB
+37003,0.003173973,Nitrate portion of PM2.5-PRI,TON
+37003,1.367492,Volatile Organic Compounds,TON
+37003,17.796426,Toluene,LB
+37003,1.8260412,Fluoranthene,LB
+37003,0.007397058,Benzo[k]Fluoranthene,LB
+37003,246.229,Formaldehyde,LB
+37001,0.0457903,Anthracene,LB
+37001,0.8390942,Propionaldehyde,LB
+37001,0.0896268,Pyrene,LB
+37001,0.02544044,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.01659745,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,353.0272,"1,3-Butadiene",LB
+37001,0.02144004,"Dibenzo[a,h]Anthracene",LB
+37001,1766.3822,"2,2,4-Trimethylpentane",LB
+37001,2.487032,Acenaphthene,LB
+37001,0.5328031,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.00013814068,Anthracene,LB
+37041,1.0160996e-06,Chromium (VI),LB
+37041,0.0002521956,Fluoranthene,LB
+37041,0.00012702178,Nickel,LB
+37041,0.00019475552,Arsenic,LB
+37041,0.1729997,Carbon Monoxide,TON
+37041,0.0001603441,Organic Carbon portion of PM2.5-PRI,TON
+37149,6.9084,Toluene,LB
+37149,0.7888934,Propionaldehyde,LB
+37149,0.00016972592,"Dibenzo[a,h]Anthracene",LB
+37149,0.00327263,Acenaphthene,LB
+37149,0.01865665,PM10 Primary (Filt + Cond),TON
+37173,0.05700722,Fluoranthene,LB
+37173,2.791842e-06,Mercury,LB
+37173,3.42727,Acetaldehyde,LB
+37173,0.09370864,Phenanthrene,LB
+37173,0.03946633,PM10-Primary from certain diesel engines,TON
+37173,0.03630834,PM25-Primary from certain diesel engines,TON
+37173,0.003101045,Ammonia,TON
+37173,0.007853416,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.740332,Chrysene,LB
+37193,7.604174e-05,Mercury,LB
+37193,49.39244,Naphthalene,LB
+37193,12.90131,Carbon Monoxide,TON
+37193,0.00669666,Nitrate portion of PM2.5-PRI,TON
+37193,45.68625,Nitrogen Oxides,TON
+37193,0.05248143,Sulfur Dioxide,TON
+37191,0.2954756,Phenanthrene,LB
+37191,0.6789992,"2,2,4-Trimethylpentane",LB
+37191,0.01667895,Manganese,LB
+37191,0.07318658,Acenaphthene,LB
+37191,1.2214202,Propionaldehyde,LB
+37189,0.014178578,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,343.7578,Formaldehyde,LB
+37189,35.50862,Naphthalene,LB
+37189,33.82569,Nitrogen Oxides,TON
+37189,0.1498207,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.08320167,Sulfate Portion of PM2.5-PRI,TON
+37187,0.03436918,Styrene,LB
+37187,1.4420642,Hexane,LB
+37187,0.006726228,Acenaphthylene,LB
+37187,0.0006523766,Benz[a]Anthracene,LB
+37187,1.5628426,Benzene,LB
+37187,33.43045,Carbon Dioxide,TON
+37187,0.001319779,PM2.5 Primary (Filt + Cond),TON
+37187,0.0004083242,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,39.80486,Ethyl Benzene,LB
+37183,13.79471,Styrene,LB
+37183,5.427406,Acenaphthylene,LB
+37183,0.01285212,Nitrate portion of PM2.5-PRI,TON
+37183,2.512398,PM2.5 Primary (Filt + Cond),TON
+37183,0.09552988,Sulfur Dioxide,TON
+37183,0.005128154,Benzo[b]Fluoranthene,LB
+37183,0.02729606,Fluoranthene,LB
+37183,0.0001555992,"Dibenzo[a,h]Anthracene",LB
+37183,0.03793236,Fluorene,LB
+37183,134.9254,Carbon Dioxide,TON
+37183,0.00376223,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.005376452,Acenaphthylene,LB
+37181,0.0015097426,Nickel,LB
+37181,0.0606513,Naphthalene,LB
+37181,0.01067223,Ammonia,TON
+37181,0.1037594,Nitrogen Oxides,TON
+37181,0.001586653,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.0001062617,Sulfate Portion of PM2.5-PRI,TON
+37181,0.12663486,Acrolein,LB
+37181,1.2077746e-05,Chromium (VI),LB
+37059,0.04410668,"1,3-Butadiene",LB
+37059,1.289392,Toluene,LB
+37059,0.000715592,Pyrene,LB
+37059,0.0018671946,Acenaphthylene,LB
+37059,0.0002708575,Methane,TON
+37059,0.0002175048,Ammonia,TON
+37059,0.0003731934,PM2.5 Primary (Filt + Cond),TON
+37059,0.02143072,Propionaldehyde,LB
+37059,0.0004415586,Benzo[a]Pyrene,LB
+37059,3.639608,Toluene,LB
+37059,4.229708e-07,Mercury,LB
+37059,0.01962411,Nitrogen Oxides,TON
+37059,9.37119e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.01810423,Volatile Organic Compounds,TON
+37057,4.384556,Toluene,LB
+37057,0.16707922,Anthracene,LB
+37057,0.009898956,Benzo[b]Fluoranthene,LB
+37057,0.2618716,Acenaphthylene,LB
+37057,55.6893,Formaldehyde,LB
+37057,1.488185,"2,2,4-Trimethylpentane",LB
+37057,0.008484136,Nickel,LB
+37057,0.3391166,Fluorene,LB
+37057,0.2369602,PM2.5 Primary (Filt + Cond),TON
+37057,1277.0336,Hexane,LB
+37057,0.01172835,Mercury,LB
+37057,9.098386,Phenanthrene,LB
+37057,1.087974,Methane,TON
+37057,1.532081,Ammonia,TON
+37051,84.68124,Propionaldehyde,LB
+37051,0.0005233102,Chromium (VI),LB
+37051,2.306802,Chrysene,LB
+37051,0.04949192,"Dibenzo[a,h]Anthracene",LB
+37051,1.495018,Methane,TON
+37051,49.6856,"1,3-Butadiene",LB
+37049,1.6197896,Toluene,LB
+37049,0.0006160544,Benzo[k]Fluoranthene,LB
+37049,0.003375114,Nickel,LB
+37049,0.0002639192,Nitrate portion of PM2.5-PRI,TON
+37047,3.9484e-06,Chromium (VI),LB
+37047,0.00739455,Benzo[b]Fluoranthene,LB
+37047,5.215068,Formaldehyde,LB
+37047,17.624616,"2,2,4-Trimethylpentane",LB
+37047,0.016128354,Acenaphthene,LB
+37047,0.8382734,Naphthalene,LB
+37045,0.003982456,Benzo[b]Fluoranthene,LB
+37045,2.86036,Formaldehyde,LB
+37045,6.994904,"2,2,4-Trimethylpentane",LB
+37045,9.36131,Benzene,LB
+37045,4.204206,Carbon Monoxide,TON
+37045,0.01051069,Ammonia,TON
+37045,2.109028e-05,Nitrate portion of PM2.5-PRI,TON
+37025,210.5154,Propionaldehyde,LB
+37025,0.0008818364,Chromium (VI),LB
+37025,0.0007397438,Mercury,LB
+37025,76.86395,Nitrogen Oxides,TON
+37157,0.002181144,Propionaldehyde,LB
+37157,0.2497918,Xylenes (Mixed Isomers),LB
+37157,0.00015559352,Fluoranthene,LB
+37157,4.472894e-05,Benzo[a]Pyrene,LB
+37157,1.4245124e-06,Arsenic,LB
+37157,0.0005769346,Phenanthrene,LB
+37157,0.0002149122,Fluorene,LB
+37157,1.266401e-07,Nitrate portion of PM2.5-PRI,TON
+37157,0.002642643,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.14104872,Acrolein,LB
+37157,0.002879692,Benzo[k]Fluoranthene,LB
+37139,1.5168722,Xylenes (Mixed Isomers),LB
+37139,1.7225134,Benzene,LB
+37139,0.00273239,Nickel,LB
+37135,511.4358,Styrene,LB
+37135,7201.334,Acetaldehyde,LB
+37135,0.03056441,Nitrate portion of PM2.5-PRI,TON
+37135,689.4618,Nitrogen Oxides,TON
+37133,0.0009482426,Nickel,LB
+37133,0.0008329788,Elemental Carbon portion of PM2.5-PRI,TON
+37133,1.431273e-05,Nitrate portion of PM2.5-PRI,TON
+37133,0.006867854,Anthracene,LB
+37133,4302.2,Hexane,LB
+37133,5689.806,"2,2,4-Trimethylpentane",LB
+37133,647.2304,Benzene,LB
+37127,100.69574,Xylenes (Mixed Isomers),LB
+37125,0.03101492,Acenaphthylene,LB
+37125,0.0016450776,Benzo[a]Pyrene,LB
+37125,2.519442,Acetaldehyde,LB
+37125,0.03689318,Phenanthrene,LB
+37125,78.47024,Carbon Dioxide,TON
+37125,0.002004798,Ammonia,TON
+37125,855.6362,Hexane,LB
+37125,0.907959,"Benzo[g,h,i,]Perylene",LB
+37125,0.2683922,Benzo[b]Fluoranthene,LB
+37125,0.2683922,Benzo[k]Fluoranthene,LB
+37125,0.2715154,Chrysene,LB
+37125,0.09789236,Nickel,LB
+37125,2.116014,Fluorene,LB
+37125,54.23232,Naphthalene,LB
+37125,20.22908,Naphthalene,LB
+37125,0.08469133,Organic Carbon portion of PM2.5-PRI,TON
+37125,1.7744296,Acenaphthylene,LB
+37121,5724.636,Toluene,LB
+37121,28.26386,Propionaldehyde,LB
+37121,8.034406,Phenanthrene,LB
+37121,2.99242,Fluorene,LB
+37121,255.0234,Carbon Monoxide,TON
+37121,0.014400158,"Dibenzo[a,h]Anthracene",LB
+37121,0.1490694,Nickel,LB
+37121,0.2285842,Arsenic,LB
+37121,1.4773104,Acenaphthene,LB
+37119,16330.504,Ethyl Benzene,LB
+37115,29.87688,Ethyl Benzene,LB
+37115,49.04882,Propionaldehyde,LB
+37115,0.002746102,Benzo[k]Fluoranthene,LB
+37115,0.676938,PM25-Primary from certain diesel engines,TON
+37115,0.5217557,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.8978444,PM10 Primary (Filt + Cond),TON
+37113,1.3494492e-06,Chromium (VI),LB
+37113,9.370308,"2,2,4-Trimethylpentane",LB
+37113,8.461264,Benzene,LB
+37113,2.654498,Acetaldehyde,LB
+37113,3.150611,Carbon Monoxide,TON
+37113,0.002157096,Ammonia,TON
+37109,0.02083431,Nitrous Oxide,TON
+37109,1.869246,PM2.5 Primary (Filt + Cond),TON
+37109,15.69409,Ethyl Benzene,LB
+37109,12.172592,Hexane,LB
+37109,21.84986,Propionaldehyde,LB
+37109,0.014617016,"Benzo[g,h,i,]Perylene",LB
+37109,0.2252938,Benzo[a]Pyrene,LB
+37109,42.18476,Benzene,LB
+37109,0.0002617862,Mercury,LB
+37109,0.08868688,Nickel,LB
+37109,2.56091e-06,Chromium (VI),LB
+37109,0.11359606,Fluoranthene,LB
+37109,1.2749306,Benzene,LB
+37109,108.783,Carbon Dioxide,TON
+37109,0.03615135,PM2.5 Primary (Filt + Cond),TON
+37109,0.000940661,Sulfate Portion of PM2.5-PRI,TON
+37089,0.00018952048,Anthracene,LB
+37089,4.880878e-06,"Dibenzo[a,h]Anthracene",LB
+37089,0.00011263196,Benz[a]Anthracene,LB
+37089,0.000153607,Methane,TON
+37089,7.710086e-05,Nitrous Oxide,TON
+37089,0.0001218596,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.0002241098,Sulfur Dioxide,TON
+37087,0.5169286,Nickel,LB
+37087,0.08633463,Sulfate Portion of PM2.5-PRI,TON
+37083,0.018038644,Manganese,LB
+37083,0.004340958,Arsenic,LB
+37083,0.416496,Fluorene,LB
+37083,0.07588711,Elemental Carbon portion of PM2.5-PRI,TON
+37081,335.6754,Hexane,LB
+37049,0.0248672,Nickel,LB
+37049,0.01870496,Ammonia,TON
+37049,0.007640488,Sulfur Dioxide,TON
+37043,68.0413,Benzene,LB
+37043,0.00019901808,Mercury,LB
+37043,0.08367664,Pyrene,LB
+37043,0.014837596,Benzo[b]Fluoranthene,LB
+37043,0.01987181,PM2.5 Primary (Filt + Cond),TON
+37035,99.9754,Propionaldehyde,LB
+37035,0.0007510306,Chromium (VI),LB
+37035,0.2472668,Benzo[b]Fluoranthene,LB
+37035,2.895242,Benz[a]Anthracene,LB
+37035,1.0732034,Manganese,LB
+37035,11.335466,Fluorene,LB
+37035,6.868494,PM25-Primary from certain diesel engines,TON
+37025,4.054412,Pyrene,LB
+37025,0.012106766,"Dibenzo[a,h]Anthracene",LB
+37025,4.979764,Phenanthrene,LB
+37025,2.845298,Fluorene,LB
+37167,22.84336,"2,2,4-Trimethylpentane",LB
+37167,0.0005344494,Arsenic,LB
+37167,0.01443978,Methane,TON
+37167,0.011230476,"Benzo[g,h,i,]Perylene",LB
+37167,0.00373588,Benzo[k]Fluoranthene,LB
+37163,0.02904744,PM10 Primary (Filt + Cond),TON
+37163,0.11414176,Anthracene,LB
+37163,0.00018217634,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,28.71544,Xylenes (Mixed Isomers),LB
+37157,2.336312,Acenaphthylene,LB
+37157,39.97296,Benzene,LB
+37157,0.0638621,Nickel,LB
+37157,46.57436,Naphthalene,LB
+37157,12.19451,Carbon Monoxide,TON
+37157,1.150745,Elemental Carbon portion of PM2.5-PRI,TON
+37157,1.906375,PM2.5 Primary (Filt + Cond),TON
+37139,18.39561,Xylenes (Mixed Isomers),LB
+37139,0.002638832,Benzo[a]Pyrene,LB
+37139,7.828766,"2,2,4-Trimethylpentane",LB
+37139,0.0010851116,Manganese,LB
+37139,2.711129,Carbon Monoxide,TON
+37139,0.00204751,Nitrous Oxide,TON
+37139,0.1637212,Volatile Organic Compounds,TON
+37135,172.7478,Benzene,LB
+37135,0.08825482,Arsenic,LB
+37135,10.452934,Fluorene,LB
+37135,200.9978,Naphthalene,LB
+37135,111.139,Carbon Monoxide,TON
+37135,12819.23,Carbon Dioxide,TON
+37135,0.06733469,Sulfate Portion of PM2.5-PRI,TON
+37135,0.007379256,"Dibenzo[a,h]Anthracene",LB
+37135,60.62998,Ethyl Benzene,LB
+37135,59.97328,"1,3-Butadiene",LB
+37135,45.77774,Hexane,LB
+37135,5.035422,Anthracene,LB
+37135,10.028346,Pyrene,LB
+37135,117.98592,Xylenes (Mixed Isomers),LB
+37135,0.02574898,"Benzo[g,h,i,]Perylene",LB
+37135,1821.0086,Formaldehyde,LB
+37133,0.0009145756,Propionaldehyde,LB
+37133,0.0001072706,Pyrene,LB
+37133,0.00014788166,"Benzo[g,h,i,]Perylene",LB
+37133,0.0216951,Formaldehyde,LB
+37133,3.010334e-05,Benz[a]Anthracene,LB
+37133,0.015919682,Acetaldehyde,LB
+37133,1.085094e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.1064593,PM10-Primary from certain diesel engines,TON
+37131,0.1010015,PM2.5 Primary (Filt + Cond),TON
+37131,2.46297e-05,Mercury,LB
+37131,2.665428e-05,Chromium (VI),LB
+37127,0.05372442,Ethyl Benzene,LB
+37127,1.5781678,Acrolein,LB
+37127,0.00013229268,"Benzo[g,h,i,]Perylene",LB
+37127,0.003418922,Manganese,LB
+37127,2.713784,Carbon Monoxide,TON
+37127,0.003114251,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.01641753,Nitrous Oxide,TON
+37127,0.01233043,Organic Carbon portion of PM2.5-PRI,TON
+37125,0.314177,"1,3-Butadiene",LB
+37125,3.209938,Acrolein,LB
+37125,0.9425298,Toluene,LB
+37125,1.1201172,Xylenes (Mixed Isomers),LB
+37125,0.000286642,"Benzo[g,h,i,]Perylene",LB
+37125,0.004145918,Fluoranthene,LB
+37125,0.00132876,Chrysene,LB
+37125,0.005804328,Fluorene,LB
+37125,0.01414507,Naphthalene,LB
+37125,6.229691,Carbon Monoxide,TON
+37125,0.006736966,Elemental Carbon portion of PM2.5-PRI,TON
+37125,0.008407174,Ammonia,TON
+37125,0.1094755,PM10 Primary (Filt + Cond),TON
+37125,0.0742821,PM2.5 Primary (Filt + Cond),TON
+37125,0.6830059,Volatile Organic Compounds,TON
+37115,7.392826,Benzene,LB
+37105,0.259797,PM25-Primary from certain diesel engines,TON
+37105,0.6379638,Volatile Organic Compounds,TON
+37105,0.07663584,Benzo[a]Pyrene,LB
+37073,3.46872e-06,Sulfate Portion of PM2.5-PRI,TON
+37073,0.0002332934,"Benzo[g,h,i,]Perylene",LB
+37073,0.0805844,Formaldehyde,LB
+37121,0.0001432136,Arsenic,LB
+37121,0.006660092,Naphthalene,LB
+37121,0.119984,Carbon Monoxide,TON
+37121,12.67756,Carbon Dioxide,TON
+37121,6.98548e-07,Nitrate portion of PM2.5-PRI,TON
+37121,0.01098219,Nitrogen Oxides,TON
+37121,0.030812,Propionaldehyde,LB
+37121,0.0002400252,Pyrene,LB
+37121,0.0002116628,Fluoranthene,LB
+37095,0.0002258724,Pyrene,LB
+37095,0.3413736,Benzene,LB
+37095,0.0001329718,Nickel,LB
+37095,0.0006628398,Phenanthrene,LB
+37095,0.006089124,Naphthalene,LB
+37095,6.06832e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37095,8.186616e-07,Nitrate portion of PM2.5-PRI,TON
+37095,0.03490012,Styrene,LB
+37095,0.121549,Acrolein,LB
+37095,0.001091749,Anthracene,LB
+37095,0.001376072,Arsenic,LB
+37095,14.919884,Acetaldehyde,LB
+37095,0.00244392,Fluorene,LB
+37095,0.007091495,Ammonia,TON
+37095,6.680506e-05,Sulfate Portion of PM2.5-PRI,TON
+37083,0.6959328,Xylenes (Mixed Isomers),LB
+37083,3.437872e-06,Chromium (VI),LB
+37083,1.9966136e-05,"Dibenzo[a,h]Anthracene",LB
+37083,2.941268e-06,Nitrate portion of PM2.5-PRI,TON
+37021,0.0006611846,Benzo[a]Pyrene,LB
+37021,8.532844e-06,Nickel,LB
+37021,0.007133482,Phenanthrene,LB
+37021,4.55968,Toluene,LB
+37021,0.9795854,Hexane,LB
+37021,0.02288011,Volatile Organic Compounds,TON
+37021,14782.612,Ethyl Benzene,LB
+37021,13.761388,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,7.800788,Chrysene,LB
+37021,22563.04,Benzene,LB
+37021,4.187876,Nickel,LB
+37021,11.74235,Methane,TON
+37017,0.011912378,Pyrene,LB
+37017,16.84585,Xylenes (Mixed Isomers),LB
+37017,0.0018872674,Chrysene,LB
+37015,1.9198126,Pyrene,LB
+37015,0.008210856,"Benzo[g,h,i,]Perylene",LB
+37015,0.0443806,Nickel,LB
+37015,1.4266746,Fluorene,LB
+37015,7718.542,Carbon Dioxide,TON
+37015,0.008084426,Nitrous Oxide,TON
+37015,0.1162793,Ammonia,TON
+37011,323.862,Ethyl Benzene,LB
+37011,0.9563376,Pyrene,LB
+37011,0.1571522,Benzo[b]Fluoranthene,LB
+37011,0.8381124,Fluoranthene,LB
+37011,174.98818,Formaldehyde,LB
+37011,0.57509,Acenaphthene,LB
+37011,1.1648954,Fluorene,LB
+37011,29.85858,Naphthalene,LB
+37011,0.3665912,Methane,TON
+37011,6025.055,Carbon Dioxide,TON
+37011,0.1110857,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.1458603,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.7191144,PM2.5 Primary (Filt + Cond),TON
+37009,4.844208,Hexane,LB
+37009,9.179494,Propionaldehyde,LB
+37009,0.007293074,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,1.1464972,Fluoranthene,LB
+37009,0.003957004,"Dibenzo[a,h]Anthracene",LB
+37009,0.3330454,Benz[a]Anthracene,LB
+37009,0.1310618,Methane,TON
+37009,5610.878,Carbon Dioxide,TON
+37009,0.010073446,"Benzo[g,h,i,]Perylene",LB
+37009,7.669608,"2,2,4-Trimethylpentane",LB
+37189,0.0012674608,Chrysene,LB
+37189,3.617812,"2,2,4-Trimethylpentane",LB
+37177,3.485748,Ethyl Benzene,LB
+37177,2.133424,"1,3-Butadiene",LB
+37177,13.012834,Xylenes (Mixed Isomers),LB
+37177,3.505094e-05,Chromium (VI),LB
+37177,0.0093696,Benzo[b]Fluoranthene,LB
+37177,0.2825671,PM25-Primary from certain diesel engines,TON
+37177,0.05459382,Ammonia,TON
+37177,0.03029028,Sulfur Dioxide,TON
+37167,0.5306208,Xylenes (Mixed Isomers),LB
+37167,0.00026831,Arsenic,LB
+37167,0.0001039061,Nitrate portion of PM2.5-PRI,TON
+37195,0.0006476474,"Benzo[g,h,i,]Perylene",LB
+37195,0.09126574,Acenaphthylene,LB
+37195,3.294816e-06,Mercury,LB
+37195,1.7935574,Naphthalene,LB
+37195,0.005434328,Methane,TON
+37193,0.003423548,"1,3-Butadiene",LB
+37193,1.6434444e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.00828621,Formaldehyde,LB
+37193,0.02348202,Benzene,LB
+37193,2.556464e-05,Acenaphthene,LB
+37193,0.01605578,Carbon Monoxide,TON
+37053,0.000591929,Manganese,LB
+37053,0.001166179,Phenanthrene,LB
+37053,34.21956,Carbon Dioxide,TON
+37053,1.625574e-06,Nitrate portion of PM2.5-PRI,TON
+37045,0.06111134,"1,3-Butadiene",LB
+37045,0.0004922024,Acenaphthene,LB
+37045,0.0003198667,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.02572404,Manganese,LB
+37045,140.70008,Acetaldehyde,LB
+37045,0.06497884,Phenanthrene,LB
+37045,14.48345,Carbon Monoxide,TON
+37045,0.02407108,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,6.060849e-05,Sulfate Portion of PM2.5-PRI,TON
+37151,0.07000904,Acrolein,LB
+37151,1.5799226,Toluene,LB
+37151,0.0007852392,Benzo[b]Fluoranthene,LB
+37151,0.0011666198,Fluoranthene,LB
+37151,0.0014786068,Benzo[a]Pyrene,LB
+37151,0.0006788956,Benz[a]Anthracene,LB
+37151,1.8870744,Benzene,LB
+37147,0.002136204,Fluoranthene,LB
+37147,0.002457676,Fluorene,LB
+37147,0.00227578,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.006888009,Sulfur Dioxide,TON
+37147,0.08833268,Volatile Organic Compounds,TON
+37143,0.4132344,Hexane,LB
+37143,0.03392747,Volatile Organic Compounds,TON
+37107,0.04384264,Phenanthrene,LB
+37107,0.00949473,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,1.864567,Propionaldehyde,LB
+37107,0.0151515,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.03573482,Acenaphthylene,LB
+37107,0.006199828,Chrysene,LB
+37107,0.011066992,Arsenic,LB
+37107,0.88933,"1,3-Butadiene",LB
+37093,0.0005785606,Nitrous Oxide,TON
+37093,0.0001959326,Anthracene,LB
+37093,0.0004050706,Pyrene,LB
+37093,1.5797592e-06,Chromium (VI),LB
+37093,0.625252,Benzene,LB
+37013,1.309448,Volatile Organic Compounds,TON
+37017,1076.6524,Formaldehyde,LB
+37017,1.726798,Benzo[a]Pyrene,LB
+37017,1.584807,Nitrous Oxide,TON
+37017,1.006249,Organic Carbon portion of PM2.5-PRI,TON
+37009,46.10826,Acenaphthylene,LB
+37009,0.008998997,Nitrate portion of PM2.5-PRI,TON
+37001,33427.96,Toluene,LB
+37001,14976.882,Xylenes (Mixed Isomers),LB
+37197,12.938064,Ethyl Benzene,LB
+37197,2.29479,"1,3-Butadiene",LB
+37197,0.316819,Acrolein,LB
+37197,48.36562,Xylenes (Mixed Isomers),LB
+37197,0.02053196,Benzo[a]Pyrene,LB
+37197,19.320628,"2,2,4-Trimethylpentane",LB
+37197,5.703092,Acetaldehyde,LB
+37197,0.0973349,Phenanthrene,LB
+37197,0.03551332,Fluorene,LB
+37189,0.0004954298,"Dibenzo[a,h]Anthracene",LB
+37189,22.46158,Acetaldehyde,LB
+37189,0.3571236,Phenanthrene,LB
+37189,1.219639,Volatile Organic Compounds,TON
+37189,1.3677184,Acrolein,LB
+37189,0.10913644,Pyrene,LB
+37189,154.32322,Xylenes (Mixed Isomers),LB
+37183,531.352,Acrolein,LB
+37183,0.2631704,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,38.33934,Fluoranthene,LB
+37183,6.734076,Chrysene,LB
+37183,4.685458,Manganese,LB
+37183,0.004035794,Mercury,LB
+37183,0.8438822,Arsenic,LB
+37183,0.3360809,Nitrous Oxide,TON
+37183,4.672202,Ammonia,TON
+37183,0.06495254,Nitrate portion of PM2.5-PRI,TON
+37185,0.002800194,Fluorene,LB
+37185,2.86848e-06,Nitrate portion of PM2.5-PRI,TON
+37185,0.03045958,Styrene,LB
+37185,0.000490576,Chrysene,LB
+37185,1.9438026e-05,"Dibenzo[a,h]Anthracene",LB
+37185,1.6098368,Benzene,LB
+37191,0.5108394,Acenaphthylene,LB
+37191,120.8272,Benzene,LB
+37191,36.84348,Acetaldehyde,LB
+37191,0.08307567,Ammonia,TON
+37191,4.65644,Nitrogen Oxides,TON
+37191,0.1957346,PM10 Primary (Filt + Cond),TON
+37191,19154.214,Toluene,LB
+37191,4481.226,"2,2,4-Trimethylpentane",LB
+37179,66.7835,Formaldehyde,LB
+37179,0.1766404,Nitrous Oxide,TON
+37179,3.861313,Volatile Organic Compounds,TON
+37067,0.001459357,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.009802218,PM10 Primary (Filt + Cond),TON
+37067,3.938798,Toluene,LB
+37067,0.001312249,Benzo[b]Fluoranthene,LB
+37061,157.4479,"1,3-Butadiene",LB
+37061,5.21948,Acenaphthylene,LB
+37061,0.008969662,Mercury,LB
+37061,15893.42,Carbon Dioxide,TON
+37049,0.6849748,"1,3-Butadiene",LB
+37049,0.002237344,Chrysene,LB
+37049,9.168324e-05,"Dibenzo[a,h]Anthracene",LB
+37049,0.002383236,Benz[a]Anthracene,LB
+37049,0.000617136,Nickel,LB
+37049,175.6593,Carbon Dioxide,TON
+37049,0.0007868435,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.004059491,Nitrous Oxide,TON
+37049,0.1135303,Volatile Organic Compounds,TON
+37047,0.2941214,Toluene,LB
+37047,0.00212249,Manganese,LB
+37047,2.251054e-05,Mercury,LB
+37047,1.8711706e-06,Nickel,LB
+37047,7.49649,Acetaldehyde,LB
+37047,0.9143349,Carbon Monoxide,TON
+37047,0.002794259,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.01627918,PM10 Primary (Filt + Cond),TON
+37041,0.200178,"1,3-Butadiene",LB
+37041,6.061596,Toluene,LB
+37041,3.628944,Xylenes (Mixed Isomers),LB
+37041,0.000480125,Chrysene,LB
+37041,0.000778583,Benzo[a]Pyrene,LB
+37041,0.0004071404,Manganese,LB
+37041,7.57286e-06,Mercury,LB
+37041,0.4987306,Acetaldehyde,LB
+37041,0.0005506754,Sulfur Dioxide,TON
+37041,2.514789e-05,Sulfate Portion of PM2.5-PRI,TON
+37035,5.514498,Formaldehyde,LB
+37035,14.324984,"2,2,4-Trimethylpentane",LB
+37035,18.36999,Benzene,LB
+37035,0.03472334,Fluorene,LB
+37035,0.8908304,Naphthalene,LB
+37035,371.2948,Carbon Dioxide,TON
+37035,3.857746e-05,Nitrate portion of PM2.5-PRI,TON
+37035,0.398533,Styrene,LB
+37035,9783.816,"2,2,4-Trimethylpentane",LB
+37031,0.0011363136,Styrene,LB
+37031,0.003101604,"1,3-Butadiene",LB
+37031,9.355542e-05,Pyrene,LB
+37031,3.798044e-05,Methane,TON
+37027,92.5204,Ethyl Benzene,LB
+37027,1.1691282,Chrysene,LB
+37027,2759.062,Formaldehyde,LB
+37027,16.761028,Fluorene,LB
+37023,17.6724,Acrolein,LB
+37023,0.010317342,"Benzo[g,h,i,]Perylene",LB
+37023,224.0038,Formaldehyde,LB
+37023,0.0236639,Nickel,LB
+37023,0.733889,Acenaphthene,LB
+37023,24.55196,Naphthalene,LB
+37023,0.1209446,Phenanthrene,LB
+37023,0.01624687,Methane,TON
+37023,4.803916e-06,Chromium (VI),LB
+37023,0.04766386,"Benzo[g,h,i,]Perylene",LB
+37023,0.0335747,Fluoranthene,LB
+37023,0.009276666,Chrysene,LB
+37023,0.0382227,Pyrene,LB
+37023,0.014512552,Chromium (VI),LB
+37023,25.96142,"Benzo[g,h,i,]Perylene",LB
+37023,2.265886,Elemental Carbon portion of PM2.5-PRI,TON
+37119,2.032354,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,7.648042,Fluoranthene,LB
+37119,1.4673936,Chrysene,LB
+37119,0.607797,Manganese,LB
+37119,271.708,Naphthalene,LB
+37113,4.633316,Ethyl Benzene,LB
+37113,0.7459844,Pyrene,LB
+37113,0.017354154,Nickel,LB
+37113,0.4492214,Acenaphthene,LB
+37105,2.89618,Ethyl Benzene,LB
+37105,3.589216e-05,Chromium (VI),LB
+37105,0.3201404,Fluoranthene,LB
+37105,0.02175784,Chrysene,LB
+37105,0.019000046,Manganese,LB
+37105,3.78492e-05,Mercury,LB
+37105,0.4303022,Fluorene,LB
+37105,0.06253872,PM10 Primary (Filt + Cond),TON
+37105,0.006510995,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.2662272,Anthracene,LB
+37091,9.340426,Benzene,LB
+37091,0.011850708,Manganese,LB
+37091,0.005045126,Arsenic,LB
+37091,0.07477468,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.1264114,PM10 Primary (Filt + Cond),TON
+37089,487.6092,Propionaldehyde,LB
+37089,110.13722,Acenaphthylene,LB
+37089,6.690818,Chrysene,LB
+37089,131.34702,Phenanthrene,LB
+37089,0.3162313,Sulfate Portion of PM2.5-PRI,TON
+37087,12.427628,Propionaldehyde,LB
+37087,17.253464,Xylenes (Mixed Isomers),LB
+37087,0.00360005,"Benzo[g,h,i,]Perylene",LB
+37087,0.002288344,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,1.060462,Fluoranthene,LB
+37087,0.03010254,Benzo[a]Pyrene,LB
+37087,2.125776,Phenanthrene,LB
+37087,1845.145,Carbon Dioxide,TON
+37079,0.0107535,Nitrous Oxide,TON
+37079,0.002106214,Nitrate portion of PM2.5-PRI,TON
+37079,0.09544396,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.3667546,Benz[a]Anthracene,LB
+37079,0.03185876,Arsenic,LB
+37079,0.660357,Acenaphthene,LB
+37087,2.502276,Manganese,LB
+37087,11.391702,Fluorene,LB
+37087,125396.4,Carbon Dioxide,TON
+37087,9.737672,Pyrene,LB
+37087,2.482602,Benz[a]Anthracene,LB
+37087,3825.57,Ethyl Benzene,LB
+37087,23051.06,Toluene,LB
+37075,1.9823646,"1,3-Butadiene",LB
+37075,0.003561048,Chrysene,LB
+37075,4.788444,Acetaldehyde,LB
+37075,5.720741,Carbon Monoxide,TON
+37075,0.001429558,Elemental Carbon portion of PM2.5-PRI,TON
+37063,551.6922,Xylenes (Mixed Isomers),LB
+37063,1.4710932,Phenanthrene,LB
+37063,126.6821,Carbon Monoxide,TON
+37063,0.1452403,Organic Carbon portion of PM2.5-PRI,TON
+37059,24.21268,Acrolein,LB
+37059,0.002274048,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.0012319786,"Dibenzo[a,h]Anthracene",LB
+37059,7.79839,"2,2,4-Trimethylpentane",LB
+37059,0.1300845,Methane,TON
+37059,0.06094915,Ammonia,TON
+37059,0.2858548,PM2.5 Primary (Filt + Cond),TON
+37059,0.02222732,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,1.768542,Volatile Organic Compounds,TON
+37059,1.8808298,"1,3-Butadiene",LB
+37059,2.998852e-06,Chromium (VI),LB
+37059,0.0003265756,"Dibenzo[a,h]Anthracene",LB
+37059,0.007531838,Benz[a]Anthracene,LB
+37059,3.006228e-05,Mercury,LB
+37059,4.092693e-05,Nitrate portion of PM2.5-PRI,TON
+37059,0.02196664,PM10 Primary (Filt + Cond),TON
+37059,0.01413634,PM2.5 Primary (Filt + Cond),TON
+37057,0.8058399,PM25-Primary from certain diesel engines,TON
+37057,0.3323222,Elemental Carbon portion of PM2.5-PRI,TON
+37057,13.35055,Nitrogen Oxides,TON
+37057,0.02148145,Sulfur Dioxide,TON
+37057,3.60032,Pyrene,LB
+37057,0.0747546,Manganese,LB
+37057,4.795998e-05,Mercury,LB
+37057,2.746962,Fluorene,LB
+37057,49.06154,Naphthalene,LB
+37055,9.625112,Hexane,LB
+37055,0.00637815,Anthracene,LB
+37055,0.1472504,Propionaldehyde,LB
+37055,0.010817178,Fluoranthene,LB
+37055,0.03414446,Acenaphthylene,LB
+37055,2.419828,Formaldehyde,LB
+37055,0.015203062,Fluorene,LB
+37051,8.460712,Benzo[k]Fluoranthene,LB
+37051,98.92246,Acenaphthylene,LB
+37051,23517.58,Benzene,LB
+37051,43.90632,Fluorene,LB
+37051,1126.1656,Naphthalene,LB
+37051,582.1132,Nitrogen Oxides,TON
+37043,0.6878284,Hexane,LB
+37043,1.4269516,Propionaldehyde,LB
+37043,0.0011321246,"Benzo[g,h,i,]Perylene",LB
+37043,0.0007399248,"Dibenzo[a,h]Anthracene",LB
+37043,2.553236,Benzene,LB
+37043,0.02615639,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.0008970153,Nitrous Oxide,TON
+37045,0.004751762,"Benzo[g,h,i,]Perylene",LB
+37045,0.0627291,Manganese,LB
+37045,0.02339178,Nickel,LB
+37045,0.007569534,Arsenic,LB
+37045,70.77766,Acetaldehyde,LB
+37045,0.05404157,Methane,TON
+37045,0.004574821,Nitrous Oxide,TON
+37025,17.248608,Ethyl Benzene,LB
+37025,0.5360452,Styrene,LB
+37025,0.4379066,Propionaldehyde,LB
+37025,0.10545456,Acenaphthylene,LB
+37025,7.347576,Formaldehyde,LB
+37025,0.001070746,Arsenic,LB
+37025,7.433618,Acetaldehyde,LB
+37025,1.2017758,Naphthalene,LB
+37025,0.01633527,Methane,TON
+37025,3.30446e-05,Nitrate portion of PM2.5-PRI,TON
+37029,2.188112,"1,3-Butadiene",LB
+37029,0.0467652,Anthracene,LB
+37029,0.015955948,Chrysene,LB
+37029,20.47462,Formaldehyde,LB
+37029,0.016485386,Benz[a]Anthracene,LB
+37029,0.2967208,Phenanthrene,LB
+37029,2.833258,Naphthalene,LB
+37029,385.6897,Carbon Dioxide,TON
+37027,14.416562,Ethyl Benzene,LB
+37027,0.3689026,Propionaldehyde,LB
+37027,5.76548,Formaldehyde,LB
+37027,0.00257507,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.01819304,PM10 Primary (Filt + Cond),TON
+37147,0.0294059,Ethyl Benzene,LB
+37147,6.965772e-05,"Benzo[g,h,i,]Perylene",LB
+37147,92.15561,Carbon Dioxide,TON
+37147,0.001645646,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.002178062,Ammonia,TON
+37147,0.02830891,PM10 Primary (Filt + Cond),TON
+37145,11.144456,Benzene,LB
+37145,12.999526,Naphthalene,LB
+37145,0.011168058,Benzo[a]Pyrene,LB
+37139,0.07018304,Styrene,LB
+37139,0.001577145,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.001060523,Benzo[k]Fluoranthene,LB
+37139,0.0009831326,Chrysene,LB
+37139,0.001203062,Manganese,LB
+37139,0.0003304124,Arsenic,LB
+37139,0.002058693,PM2.5 Primary (Filt + Cond),TON
+37139,0.05851862,Volatile Organic Compounds,TON
+37135,0.1357578,Methane,TON
+37135,0.2753715,PM25-Primary from certain diesel engines,TON
+37135,0.04830031,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.2881152,PM2.5 Primary (Filt + Cond),TON
+37135,19.231344,Xylenes (Mixed Isomers),LB
+37135,7.80808e-05,Chromium (VI),LB
+37135,0.009107428,Benzo[b]Fluoranthene,LB
+37135,0.03052168,Benzo[a]Pyrene,LB
+37135,6.639456,"2,2,4-Trimethylpentane",LB
+37127,0.6907902,Acrolein,LB
+37127,0.0301269,Acenaphthene,LB
+37127,0.06102358,Fluorene,LB
+37127,0.01304899,Sulfur Dioxide,TON
+37123,0.17643674,Fluorene,LB
+37123,0.01233338,Methane,TON
+37123,0.07387566,PM2.5 Primary (Filt + Cond),TON
+37123,0.03832448,Chrysene,LB
+37123,0.0008245188,"Dibenzo[a,h]Anthracene",LB
+37123,0.00180543,Arsenic,LB
+37123,0.0781821,Acenaphthene,LB
+37121,0.015520222,Pyrene,LB
+37121,2.999878e-07,Mercury,LB
+37121,0.0001980208,Nickel,LB
+37121,0.7056048,Acetaldehyde,LB
+37121,0.1776794,Naphthalene,LB
+37121,0.0007755535,Methane,TON
+37121,0.0006424047,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.012913236,"Benzo[g,h,i,]Perylene",LB
+37115,42.15994,Benzene,LB
+37115,0.04314296,Nickel,LB
+37115,0.7647113,Methane,TON
+37113,2.442167e-08,Nitrate portion of PM2.5-PRI,TON
+37113,0.0003332646,Volatile Organic Compounds,TON
+37113,0.01158978,Ethyl Benzene,LB
+37113,0.0003501704,Acrolein,LB
+37113,0.06682174,Toluene,LB
+37113,0.04276332,Xylenes (Mixed Isomers),LB
+37113,0.018461148,Benzene,LB
+37107,2.932206,Acetaldehyde,LB
+37107,0.2428119,Methane,TON
+37105,20.11522,Toluene,LB
+37105,0.07179594,Benzo[b]Fluoranthene,LB
+37105,0.04448928,Nickel,LB
+37105,132.07336,Acetaldehyde,LB
+37105,2.217502,Fluorene,LB
+37105,0.1052742,Methane,TON
+37105,5467.798,Carbon Dioxide,TON
+37097,1.7592608,Styrene,LB
+37097,0.0315317,Benzo[b]Fluoranthene,LB
+37097,0.6885008,Acenaphthylene,LB
+37097,3.964804,"2,2,4-Trimethylpentane",LB
+37097,0.018469256,Nickel,LB
+37097,0.01830738,Sulfur Dioxide,TON
+37103,4.508274,Ethyl Benzene,LB
+37103,0.008715412,Pyrene,LB
+37103,0.003169732,Benzo[a]Pyrene,LB
+37103,0.003640861,Methane,TON
+37103,2.219494,Carbon Monoxide,TON
+37103,0.001414268,Nitrous Oxide,TON
+37103,0.001996807,Ammonia,TON
+37103,0.006738189,PM10 Primary (Filt + Cond),TON
+37103,0.1166875,Volatile Organic Compounds,TON
+37093,3.727716,Xylenes (Mixed Isomers),LB
+37093,0.3992472,Fluorene,LB
+37093,639.1971,Carbon Dioxide,TON
+37093,0.1369785,PM2.5 Primary (Filt + Cond),TON
+37083,1.155528,Carbon Monoxide,TON
+37083,152.5065,Carbon Dioxide,TON
+37083,0.003994757,Ammonia,TON
+37083,0.0008074426,Sulfur Dioxide,TON
+37073,0.02757858,PM25-Primary from certain diesel engines,TON
+37073,1.5920944,Propionaldehyde,LB
+37073,0.0001937568,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,2.389356,Ethyl Benzene,LB
+37075,0.002096052,"Benzo[g,h,i,]Perylene",LB
+37075,0.3789088,Fluoranthene,LB
+37075,0.2982296,Acenaphthylene,LB
+37075,0.06446832,Chrysene,LB
+37075,0.03264122,Benzo[a]Pyrene,LB
+37075,0.03286024,Manganese,LB
+37075,4.614082e-05,Mercury,LB
+37075,0.00964744,Arsenic,LB
+37075,0.05491943,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.02930961,Sulfur Dioxide,TON
+37067,2.604536,"1,3-Butadiene",LB
+37067,93.09738,Formaldehyde,LB
+37067,0.06506392,Methane,TON
+37067,0.2457383,Elemental Carbon portion of PM2.5-PRI,TON
+37067,0.02527509,Sulfate Portion of PM2.5-PRI,TON
+37063,13.269996,Ethyl Benzene,LB
+37063,48.49106,Xylenes (Mixed Isomers),LB
+37063,0.0013462512,Nickel,LB
+37063,7.060584,Acetaldehyde,LB
+37063,5.586218e-05,Nitrate portion of PM2.5-PRI,TON
+37063,32.05736,Anthracene,LB
+37063,751.061,Propionaldehyde,LB
+37063,42.50658,"Benzo[g,h,i,]Perylene",LB
+37063,11.4093,Benzo[b]Fluoranthene,LB
+37063,37275.28,Benzene,LB
+37063,3.884684,Nickel,LB
+37063,75.7493,Fluorene,LB
+37043,2.576256,Ethyl Benzene,LB
+37043,0.0017495982,"Dibenzo[a,h]Anthracene",LB
+37043,2.079664,"2,2,4-Trimethylpentane",LB
+37043,7.076156,Benzene,LB
+37043,0.05078595,Methane,TON
+37043,2.496381,Carbon Monoxide,TON
+37043,2494.208,Carbon Dioxide,TON
+37043,0.2059199,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.4216066,Volatile Organic Compounds,TON
+37043,0.6270609,Nitrogen Oxides,TON
+37043,1.042864,"1,3-Butadiene",LB
+37043,2.576734,Acrolein,LB
+37043,0.0867516,Anthracene,LB
+37043,2.30068,Xylenes (Mixed Isomers),LB
+37043,0.0004265724,"Benzo[g,h,i,]Perylene",LB
+37043,0.00011136394,Benzo[k]Fluoranthene,LB
+37043,0.002682146,Benzo[a]Pyrene,LB
+37043,0.0005999807,Nitrous Oxide,TON
+37033,0.005534864,Arsenic,LB
+37033,60.21216,Acetaldehyde,LB
+37033,3.730434e-05,Chromium (VI),LB
+37033,0.00802228,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.204902,Chrysene,LB
+37033,0.1056786,Benzo[a]Pyrene,LB
+37033,2002.627,Carbon Dioxide,TON
+37033,0.002413427,Nitrous Oxide,TON
+37033,0.1480944,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.8254016,Pyrene,LB
+37031,2.25156e-05,Chromium (VI),LB
+37031,0.09370318,Chrysene,LB
+37031,0.16756,Benz[a]Anthracene,LB
+37031,0.119666,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.01882165,Ammonia,TON
+37031,7.206628,Nitrogen Oxides,TON
+37031,0.2322248,PM2.5 Primary (Filt + Cond),TON
+37163,2.456724,Anthracene,LB
+37163,0.028333,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.015944302,Benzo[k]Fluoranthene,LB
+37163,524.444,Acetaldehyde,LB
+37159,1.8437132,Acenaphthylene,LB
+37159,0.239379,Benzo[a]Pyrene,LB
+37159,38.29686,Naphthalene,LB
+37159,0.1872231,Methane,TON
+37159,0.8605794,PM10-Primary from certain diesel engines,TON
+37155,0.0474351,Ammonia,TON
+37155,0.3257123,Organic Carbon portion of PM2.5-PRI,TON
+37155,3.210594,Pyrene,LB
+37155,0.009514286,Benzo[k]Fluoranthene,LB
+37155,0.4507662,Chrysene,LB
+37155,0.2334806,Benzo[a]Pyrene,LB
+37155,0.7705112,Benz[a]Anthracene,LB
+37151,0.0304787,Xylenes (Mixed Isomers),LB
+37151,2.510104e-06,"Benzo[g,h,i,]Perylene",LB
+37151,6.718338e-06,Benz[a]Anthracene,LB
+37151,0.0003224248,Manganese,LB
+37151,5.836084e-05,Fluorene,LB
+37151,0.05188319,Nitrogen Oxides,TON
+37147,5.199052,Toluene,LB
+37147,3.199514,Propionaldehyde,LB
+37147,0.003810236,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.3220914,Acenaphthylene,LB
+37147,0.005059828,Arsenic,LB
+37147,0.002388649,Nitrous Oxide,TON
+37147,0.0719776,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.1755077,PM2.5 Primary (Filt + Cond),TON
+37147,0.007738973,Sulfur Dioxide,TON
+37145,3.51855e-06,Benzo[a]Pyrene,LB
+37145,0.00790478,Benzene,LB
+37145,0.002610886,Acetaldehyde,LB
+37145,5.826396e-06,Methane,TON
+37133,0.00863879,Benzo[k]Fluoranthene,LB
+37133,10.728234,Formaldehyde,LB
+37133,0.011506594,Benzo[a]Pyrene,LB
+37133,0.6648022,Styrene,LB
+37133,0.7198626,Acrolein,LB
+37133,0.454111,Propionaldehyde,LB
+37133,0.01282487,Nitrous Oxide,TON
+37133,0.1009238,PM10 Primary (Filt + Cond),TON
+37121,19.115002,Toluene,LB
+37121,0.0009528936,Benzo[k]Fluoranthene,LB
+37121,0.0009465076,Chrysene,LB
+37121,6.8847e-05,Nickel,LB
+37121,0.0006634063,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.001387145,PM2.5 Primary (Filt + Cond),TON
+37121,0.0004561105,Sulfur Dioxide,TON
+37119,154.46096,Benzene,LB
+37119,0.0003844954,Mercury,LB
+37119,6.670291,PM10 Primary (Filt + Cond),TON
+37119,5.414542,Anthracene,LB
+37119,8.268036,Acenaphthylene,LB
+37111,3670.684,Ethyl Benzene,LB
+37111,2.107686,Benzo[b]Fluoranthene,LB
+37111,3.239676,Benzo[a]Pyrene,LB
+37111,1.8289062,Manganese,LB
+37111,1945.3902,Acetaldehyde,LB
+37111,0.7191838,Elemental Carbon portion of PM2.5-PRI,TON
+37111,2.123946,Sulfur Dioxide,TON
+37111,0.1055092,Sulfate Portion of PM2.5-PRI,TON
+37099,9.320294,Xylenes (Mixed Isomers),LB
+37099,5.435686e-05,Chromium (VI),LB
+37099,7.91434,Benzene,LB
+37099,6.014548e-05,Mercury,LB
+37099,0.3938664,Fluorene,LB
+37099,8.30714,Carbon Monoxide,TON
+37095,0.018348916,Styrene,LB
+37095,3.32873e-07,Chromium (VI),LB
+37095,0.003557004,Acenaphthylene,LB
+37095,0.0002004512,Benz[a]Anthracene,LB
+37095,0.8375832,Benzene,LB
+37095,0.0007815264,Acenaphthene,LB
+37095,0.013086372,Acrolein,LB
+37095,3.13278e-06,"Dibenzo[a,h]Anthracene",LB
+37095,0.0005219894,Acenaphthene,LB
+37095,6.902274,Carbon Dioxide,TON
+37095,4.857436e-07,Nitrate portion of PM2.5-PRI,TON
+37095,7.589141e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,98.84918,Acrolein,LB
+37091,1.544229,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,1.27985,Benzo[k]Fluoranthene,LB
+37091,0.5881178,Manganese,LB
+37091,279.0018,Naphthalene,LB
+37091,1114.324,Carbon Monoxide,TON
+37091,3.458585,PM10 Primary (Filt + Cond),TON
+37083,0.49877,Benz[a]Anthracene,LB
+37083,0.08531576,Manganese,LB
+37083,4.079312,Fluorene,LB
+37079,665.6146,Xylenes (Mixed Isomers),LB
+37079,0.2804428,"Benzo[g,h,i,]Perylene",LB
+37079,0.10536586,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,9.188954,Nitrogen Oxides,TON
+37071,0.8355236,Anthracene,LB
+37071,0.007688098,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.07722644,Methane,TON
+37071,0.5382337,PM25-Primary from certain diesel engines,TON
+37071,1417.2048,"2,2,4-Trimethylpentane",LB
+37071,0.226594,Nickel,LB
+37071,685.9532,Acetaldehyde,LB
+37071,3.274361,PM10 Primary (Filt + Cond),TON
+37061,181.46908,Toluene,LB
+37061,4.943052,Acenaphthylene,LB
+37061,0.16065274,Nickel,LB
+37061,0.12204242,Arsenic,LB
+37061,650.7818,Acetaldehyde,LB
+37061,12.773616,Phenanthrene,LB
+37061,0.3871274,Sulfur Dioxide,TON
+37061,10.54968,Ammonia,TON
+37061,5984.802,Hexane,LB
+37061,1.025504,Nickel,LB
+37061,1.5723672,Arsenic,LB
+37061,3.213884,Methane,TON
+37061,111812,Carbon Dioxide,TON
+37047,0.0413594,Benzo[b]Fluoranthene,LB
+37047,0.2669868,Chrysene,LB
+37047,0.13872756,Benzo[a]Pyrene,LB
+37047,77.04176,Acetaldehyde,LB
+37047,0.00244863,Nitrate portion of PM2.5-PRI,TON
+37047,0.6331546,PM10 Primary (Filt + Cond),TON
+37047,0.01058324,Sulfur Dioxide,TON
+37045,0.07023654,Volatile Organic Compounds,TON
+37045,0.05145208,Ethyl Benzene,LB
+37045,9.833558e-05,Chrysene,LB
+37045,2.277402e-05,Mercury,LB
+37043,0.00019112978,Pyrene,LB
+37043,0.00014164578,Fluorene,LB
+37043,0.0001610162,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.000737137,Ammonia,TON
+37043,0.1222022,Nitrogen Oxides,TON
+37043,1.845856e-05,Sulfate Portion of PM2.5-PRI,TON
+37043,0.0378992,Manganese,LB
+37043,0.06982281,Ammonia,TON
+37043,29.88046,Acrolein,LB
+37043,9.33453,Hexane,LB
+37043,1.989688,Pyrene,LB
+37043,0.0009643952,Benzo[k]Fluoranthene,LB
+37045,0.09826384,Nickel,LB
+37045,2.161754,Acenaphthene,LB
+37045,3.196129,PM2.5 Primary (Filt + Cond),TON
+37045,3.766635,Volatile Organic Compounds,TON
+37045,51.00956,Acrolein,LB
+37045,60.7141,Benzene,LB
+37045,3.394062,Benz[a]Anthracene,LB
+37045,9759.492,Benzene,LB
+37045,3.813028,Manganese,LB
+37045,1.278898,Elemental Carbon portion of PM2.5-PRI,TON
+37045,3.185451,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.1846146,Sulfate Portion of PM2.5-PRI,TON
+37039,3.08206,Styrene,LB
+37039,0.0567381,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,32.12772,Acetaldehyde,LB
+37039,37.48338,Carbon Monoxide,TON
+37039,0.008636344,Nitrous Oxide,TON
+37039,0.07814749,PM10 Primary (Filt + Cond),TON
+37039,0.01382914,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.001679498,Sulfate Portion of PM2.5-PRI,TON
+37039,5.108923,Volatile Organic Compounds,TON
+37027,0.02035936,"Benzo[g,h,i,]Perylene",LB
+37027,3.210258,Fluorene,LB
+37027,5489.336,Carbon Dioxide,TON
+37027,0.1327235,Ammonia,TON
+37027,0.4794213,Organic Carbon portion of PM2.5-PRI,TON
+37175,0.009920344,Ammonia,TON
+37175,0.5656876,Nitrogen Oxides,TON
+37175,0.9917694,Styrene,LB
+37175,2.09331,Hexane,LB
+37175,0.3459472,Pyrene,LB
+37175,2.239416,"2,2,4-Trimethylpentane",LB
+37175,0.006028482,Arsenic,LB
+37159,0.004454674,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.9537386,Fluoranthene,LB
+37159,1.746685,Phenanthrene,LB
+37159,19.071024,Naphthalene,LB
+37159,2491.277,Carbon Dioxide,TON
+37159,0.3447521,PM25-Primary from certain diesel engines,TON
+37153,0.02756976,Ethyl Benzene,LB
+37153,0.016563834,"1,3-Butadiene",LB
+37153,0.0001598254,Acenaphthene,LB
+37153,0.000352195,Fluorene,LB
+37153,0.0003760387,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.07153332,Organic Carbon portion of PM2.5-PRI,TON
+37137,2.132364,Ethyl Benzene,LB
+37137,0.2408348,Anthracene,LB
+37137,3.91355,Xylenes (Mixed Isomers),LB
+37137,0.002069082,Benzo[k]Fluoranthene,LB
+37137,0.0008745489,Nitrate portion of PM2.5-PRI,TON
+37131,0.18397116,Styrene,LB
+37131,0.006774492,Anthracene,LB
+37131,0.03523962,Acenaphthylene,LB
+37131,0.00017013738,"Dibenzo[a,h]Anthracene",LB
+37131,0.007696856,Acenaphthene,LB
+37131,0.012254,PM10 Primary (Filt + Cond),TON
+37127,194.06592,Benzene,LB
+37127,3.726732,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.6020196,Sulfate Portion of PM2.5-PRI,TON
+37127,84.24686,Propionaldehyde,LB
+37127,9.023354,Fluoranthene,LB
+37127,77.95102,"2,2,4-Trimethylpentane",LB
+37121,6.966378,Acrolein,LB
+37121,2.169078,Hexane,LB
+37121,0.325355,Anthracene,LB
+37121,0.5002314,Acenaphthylene,LB
+37121,9.258801,Nitrogen Oxides,TON
+37111,1.58868,PM2.5 Primary (Filt + Cond),TON
+37111,0.2545402,Remaining PMFINE portion of PM2.5-PRI,TON
+37111,0.02492502,"Benzo[g,h,i,]Perylene",LB
+37117,0.8155088,Manganese,LB
+37117,0.03354396,Mercury,LB
+37117,133.24018,Naphthalene,LB
+37117,72.18484,Nitrogen Oxides,TON
+37117,53.10401,Volatile Organic Compounds,TON
+37117,2658.508,Hexane,LB
+37117,0.8602592,Benzo[k]Fluoranthene,LB
+37117,2403.21,"2,2,4-Trimethylpentane",LB
+37107,0.002324556,Ethyl Benzene,LB
+37107,0.003241216,Hexane,LB
+37107,7.446336e-05,Propionaldehyde,LB
+37107,4.293218e-08,Arsenic,LB
+37107,0.0012438726,Acetaldehyde,LB
+37107,0.004879076,Acrolein,LB
+37107,0.2830978,Benzene,LB
+37107,0.001680212,Phenanthrene,LB
+37103,0.491311,Manganese,LB
+37103,367.7596,Carbon Monoxide,TON
+37103,28335.68,Carbon Dioxide,TON
+37103,0.268785,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.5941785,Sulfur Dioxide,TON
+37103,0.02535365,Sulfate Portion of PM2.5-PRI,TON
+37097,865.5946,Styrene,LB
+37097,61.22732,Pyrene,LB
+37097,80231.04,Xylenes (Mixed Isomers),LB
+37097,0.0327047,Chromium (VI),LB
+37097,15.92648,Benzo[a]Pyrene,LB
+37097,3.642739,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.07452882,Anthracene,LB
+37053,21.96508,Formaldehyde,LB
+37053,0.0007111396,"Dibenzo[a,h]Anthracene",LB
+37053,1.9884912,Benzene,LB
+37053,7.321048e-06,Mercury,LB
+37053,0.001530717,Arsenic,LB
+37053,0.02475472,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.1191778,Volatile Organic Compounds,TON
+37015,0.6438368,Anthracene,LB
+37015,1.2802442,Pyrene,LB
+37015,5.953398,"2,2,4-Trimethylpentane",LB
+37015,0.172735,Benz[a]Anthracene,LB
+37015,5.133652,Nitrogen Oxides,TON
+37011,0.02556656,Chrysene,LB
+37011,0.005721846,Manganese,LB
+37011,4.562078,Naphthalene,LB
+37011,1.242012,Nitrogen Oxides,TON
+37011,0.02024192,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.07338942,Acrolein,LB
+37009,0.04683208,Anthracene,LB
+37009,19.23167,Acetaldehyde,LB
+37009,0.2977562,Phenanthrene,LB
+37009,0.04491046,PM10 Primary (Filt + Cond),TON
+37001,724.7616,Toluene,LB
+37001,3.7702,Propionaldehyde,LB
+37001,0.3376304,"Benzo[g,h,i,]Perylene",LB
+37001,0.0003974221,Nitrate portion of PM2.5-PRI,TON
+37001,3.620145,Volatile Organic Compounds,TON
+37007,4148.024,Ethyl Benzene,LB
+37007,167.58862,Styrene,LB
+37007,144.41926,Propionaldehyde,LB
+37007,0.004063578,Chromium (VI),LB
+37007,1.6938712,Benzo[k]Fluoranthene,LB
+37007,6837.938,Benzene,LB
+37007,2320.182,Acetaldehyde,LB
+37007,214.7638,Nitrogen Oxides,TON
+37007,0.7279741,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.3685528,"1,3-Butadiene",LB
+37057,0.003795658,Nickel,LB
+37057,0.005819886,Arsenic,LB
+37057,0.002512044,Acenaphthene,LB
+37057,3.750201,Carbon Monoxide,TON
+37057,0.1961226,Volatile Organic Compounds,TON
+37057,0.002361932,Anthracene,LB
+37057,5.580736,Xylenes (Mixed Isomers),LB
+37057,3.036776e-05,Chromium (VI),LB
+37013,0.2804432,Ethyl Benzene,LB
+37013,1.1525014,Toluene,LB
+37013,1.0088054,Xylenes (Mixed Isomers),LB
+37013,3.511552e-06,Chromium (VI),LB
+37013,0.000463737,Benzo[k]Fluoranthene,LB
+37013,1.9905424e-05,"Dibenzo[a,h]Anthracene",LB
+37013,0.001230089,Nitrous Oxide,TON
+37123,0.0005895658,Benzo[b]Fluoranthene,LB
+37123,0.001101572,Benzo[a]Pyrene,LB
+37123,0.000512027,Benz[a]Anthracene,LB
+37123,0.0011777042,Manganese,LB
+37123,0.0005463246,Acenaphthene,LB
+37123,0.05227544,Nitrogen Oxides,TON
+37123,0.0414844,Volatile Organic Compounds,TON
+37017,0.006011622,Pyrene,LB
+37017,0.003870422,"Benzo[g,h,i,]Perylene",LB
+37017,0.01956598,Phenanthrene,LB
+37017,0.002468159,Nitrous Oxide,TON
+37017,5.014994e-06,Nitrate portion of PM2.5-PRI,TON
+37073,0.0016130604,"Benzo[g,h,i,]Perylene",LB
+37073,0.0015617202,Acenaphthylene,LB
+37073,0.4157304,"2,2,4-Trimethylpentane",LB
+37073,3.403842e-05,Mercury,LB
+37073,0.0003385664,Acenaphthene,LB
+37073,0.002882506,Ammonia,TON
+37073,0.0003322525,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.0016377486,Pyrene,LB
+37071,1.6915674,Xylenes (Mixed Isomers),LB
+37071,9.747094e-06,Chromium (VI),LB
+37071,0.0036802,Acenaphthylene,LB
+37071,9.77154e-05,Mercury,LB
+37071,0.0016008252,Fluorene,LB
+37071,0.0413047,Naphthalene,LB
+37071,1.181432,Carbon Monoxide,TON
+37071,170.0699,Carbon Dioxide,TON
+37045,0.004853538,Arsenic,LB
+37045,0.0018537438,Acenaphthene,LB
+37045,358.4044,Carbon Dioxide,TON
+37045,0.02222809,Ammonia,TON
+37045,1.775573e-05,Nitrate portion of PM2.5-PRI,TON
+37045,0.1770513,Nitrogen Oxides,TON
+37045,1.1277502,Ethyl Benzene,LB
+37045,0.00465492,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.4315376,Ethyl Benzene,LB
+37019,1.5693176,Xylenes (Mixed Isomers),LB
+37019,0.0009160932,Benzo[b]Fluoranthene,LB
+37019,0.004171444,Phenanthrene,LB
+37019,0.0004645925,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.002269788,Nitrous Oxide,TON
+37019,4.428152,Hexane,LB
+37019,16.120406,Xylenes (Mixed Isomers),LB
+37173,0.004397046,Manganese,LB
+37173,0.0002082592,Mercury,LB
+37173,0.003981528,Arsenic,LB
+37173,0.16348028,Naphthalene,LB
+37173,362.1106,Carbon Dioxide,TON
+37173,0.004842725,Nitrous Oxide,TON
+37173,0.02070461,Ammonia,TON
+37173,0.0002055496,Sulfate Portion of PM2.5-PRI,TON
+37173,2.077452e-05,Chromium (VI),LB
+37173,0.002443254,Chrysene,LB
+37065,0.2036524,Anthracene,LB
+37065,0.3479938,Fluoranthene,LB
+37065,0.06904172,Benz[a]Anthracene,LB
+37065,0.011019846,Nickel,LB
+37065,0.01297053,Nitrous Oxide,TON
+37065,0.09443593,PM2.5 Primary (Filt + Cond),TON
+37065,0.02567319,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.002908468,Sulfate Portion of PM2.5-PRI,TON
+37057,47.6387,Ethyl Benzene,LB
+37057,105.87708,Acrolein,LB
+37057,0.2225102,Benzo[b]Fluoranthene,LB
+37057,603.913,Acetaldehyde,LB
+37057,1.232675,Methane,TON
+37057,4.349876,PM10 Primary (Filt + Cond),TON
+37055,6.862304,Benzene,LB
+37055,0.1999048,Acenaphthene,LB
+37055,7.167158,Carbon Monoxide,TON
+37055,0.01245488,PM10-Primary from certain diesel engines,TON
+37055,0.001334126,Nitrous Oxide,TON
+37055,7.735506,Xylenes (Mixed Isomers),LB
+37055,80.84202,Formaldehyde,LB
+37055,0.00255955,Benzo[a]Pyrene,LB
+37055,0.00010927432,"Dibenzo[a,h]Anthracene",LB
+37045,0.10464428,Phenanthrene,LB
+37045,0.006456685,Ammonia,TON
+37045,0.006133602,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.003626406,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,2.420548,"1,3-Butadiene",LB
+37045,0.03254,Pyrene,LB
+37045,0.01103546,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,2.480328,Propionaldehyde,LB
+37043,0.03180148,Chrysene,LB
+37043,0.07845203,Methane,TON
+37043,24.39385,Carbon Monoxide,TON
+37043,0.09814347,PM10 Primary (Filt + Cond),TON
+37035,214.9988,Toluene,LB
+37035,56.44764,Hexane,LB
+37035,0.02200938,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.0005051206,"Dibenzo[a,h]Anthracene",LB
+37035,41.49392,Benzene,LB
+37035,12.68998,Acetaldehyde,LB
+37035,0.2118552,Phenanthrene,LB
+37035,0.03191595,Methane,TON
+37035,1.274111,Nitrogen Oxides,TON
+37031,1.251685,Fluoranthene,LB
+37031,0.005111524,"Dibenzo[a,h]Anthracene",LB
+37031,0.4073516,Benz[a]Anthracene,LB
+37031,68.14374,Acetaldehyde,LB
+37031,0.4168237,PM10-Primary from certain diesel engines,TON
+37031,0.3834726,PM25-Primary from certain diesel engines,TON
+37031,0.0090548,Sulfur Dioxide,TON
+37025,0.983368,"Benzo[g,h,i,]Perylene",LB
+37025,0.2729624,Benzo[k]Fluoranthene,LB
+37025,0.008476492,"Dibenzo[a,h]Anthracene",LB
+37025,0.2743974,Benz[a]Anthracene,LB
+37025,0.0452489,Nickel,LB
+37025,0.06938102,Arsenic,LB
+37025,0.05422175,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.1173543,Sulfur Dioxide,TON
+37171,14.064332,Propionaldehyde,LB
+37171,23.9548,Xylenes (Mixed Isomers),LB
+37171,1.7436178,Fluoranthene,LB
+37171,0.14449804,Benzo[a]Pyrene,LB
+37171,0.0064767,Arsenic,LB
+37171,123.07952,Acetaldehyde,LB
+37171,14.98432,Carbon Monoxide,TON
+37171,0.002785336,Nitrate portion of PM2.5-PRI,TON
+37169,8081.416,Toluene,LB
+37167,0.02174189,PM2.5 Primary (Filt + Cond),TON
+37167,0.009727288,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.0002900904,"Dibenzo[a,h]Anthracene",LB
+37157,43.16766,Xylenes (Mixed Isomers),LB
+37157,0.008175802,Benzo[a]Pyrene,LB
+37157,0.01537165,Acenaphthene,LB
+37157,0.08384816,Phenanthrene,LB
+37157,0.7984862,Naphthalene,LB
+37151,0.05575586,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.03327819,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.002990914,Sulfate Portion of PM2.5-PRI,TON
+37151,0.3232008,Pyrene,LB
+37151,0.00739408,Nickel,LB
+37151,9.91832,Naphthalene,LB
+37141,18.190142,Acrolein,LB
+37141,12.255186,Propionaldehyde,LB
+37141,0.03740086,Nickel,LB
+37141,0.7579322,Acenaphthene,LB
+37141,0.3431207,PM10 Primary (Filt + Cond),TON
+37129,66.9539,Xylenes (Mixed Isomers),LB
+37129,0.03689146,Benzo[k]Fluoranthene,LB
+37129,994.8328,Formaldehyde,LB
+37129,0.9014146,Benzo[a]Pyrene,LB
+37129,24.8952,"2,2,4-Trimethylpentane",LB
+37129,93.5662,Benzene,LB
+37129,13.10055,Phenanthrene,LB
+37129,0.01566027,Nitrate portion of PM2.5-PRI,TON
+37129,1.287785,Organic Carbon portion of PM2.5-PRI,TON
+37129,4.521752,PM2.5 Primary (Filt + Cond),TON
+37125,0.3590458,Benzo[a]Pyrene,LB
+37125,0.01504274,"Dibenzo[a,h]Anthracene",LB
+37125,0.11837658,Nickel,LB
+37125,3.058891,PM2.5 Primary (Filt + Cond),TON
+37121,0.004047132,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.6129346,Fluoranthene,LB
+37121,0.0022623,Benzo[k]Fluoranthene,LB
+37121,119.4587,Formaldehyde,LB
+37121,0.18063696,Benz[a]Anthracene,LB
+37121,0.2860694,Acenaphthene,LB
+37121,0.000945549,Nitrate portion of PM2.5-PRI,TON
+37121,13.9578,Nitrogen Oxides,TON
+37121,0.47742,PM2.5 Primary (Filt + Cond),TON
+37121,0.5698872,Volatile Organic Compounds,TON
+37111,0.00074227,Naphthalene,LB
+37111,0.00809334,Ethyl Benzene,LB
+37111,0.0003400806,Styrene,LB
+37111,0.000291957,Propionaldehyde,LB
+37111,0.02972352,Xylenes (Mixed Isomers),LB
+37111,4.972197e-07,Sulfate Portion of PM2.5-PRI,TON
+37111,0.0002262342,Volatile Organic Compounds,TON
+37017,7.459268,Acrolein,LB
+37017,0.02156064,Benzo[b]Fluoranthene,LB
+37017,93.42074,Formaldehyde,LB
+37017,40.8912,Acetaldehyde,LB
+37017,3.411558,Carbon Monoxide,TON
+37017,0.01244369,Ammonia,TON
+37017,0.00129038,Nitrate portion of PM2.5-PRI,TON
+37019,8.898096e-05,"Dibenzo[a,h]Anthracene",LB
+37019,6.877578e-05,Mercury,LB
+37019,0.4907273,Nitrogen Oxides,TON
+37019,0.005644207,PM2.5 Primary (Filt + Cond),TON
+37019,0.002373148,Chrysene,LB
+37019,0.003866486,Benzo[a]Pyrene,LB
+37017,24.88124,Xylenes (Mixed Isomers),LB
+37017,0.002695016,Benzo[a]Pyrene,LB
+37017,0.0013197886,Manganese,LB
+37017,3.388401,Carbon Monoxide,TON
+37017,0.001435816,Sulfur Dioxide,TON
+37013,9.219948,"1,3-Butadiene",LB
+37013,1.331278,Acrolein,LB
+37013,0.05751708,Anthracene,LB
+37013,20.90374,Formaldehyde,LB
+37013,71.08308,Benzene,LB
+37013,0.003421362,Arsenic,LB
+37013,22.79112,Acetaldehyde,LB
+37115,2.903966,"2,2,4-Trimethylpentane",LB
+37115,0.007692906,Fluorene,LB
+37115,0.001341129,Sulfur Dioxide,TON
+37115,0.06851522,Volatile Organic Compounds,TON
+37115,3.280044,Hexane,LB
+37115,0.12257026,Ethyl Benzene,LB
+37115,0.004047026,Acrolein,LB
+37115,0.00015844278,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.0003209266,Fluoranthene,LB
+37115,9.718716e-05,Benzo[k]Fluoranthene,LB
+37115,0.0002116944,Acenaphthene,LB
+37115,0.0004287886,Fluorene,LB
+37115,0.08960829,Carbon Monoxide,TON
+37115,3.553594,Carbon Dioxide,TON
+37115,7.453111e-05,Sulfur Dioxide,TON
+37101,2.335952e-06,Nitrate portion of PM2.5-PRI,TON
+37101,0.000711782,Pyrene,LB
+37101,0.0005842252,Acenaphthylene,LB
+37101,2.15081e-06,Nickel,LB
+37101,0.09171948,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.02919861,Nitrate portion of PM2.5-PRI,TON
+37101,1.089144,Sulfur Dioxide,TON
+37101,1.010012,Fluorene,LB
+37101,0.05059296,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,11.437792,Toluene,LB
+37087,17.173004,Styrene,LB
+37087,85.418,Propionaldehyde,LB
+37087,10.955728,Pyrene,LB
+37087,4.214908,Methane,TON
+37087,2.910345,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.8516557,Ammonia,TON
+37087,6.571952,"2,2,4-Trimethylpentane",LB
+37087,5.626168,Ethyl Benzene,LB
+37087,20.69616,Xylenes (Mixed Isomers),LB
+37087,6.577202e-05,Mercury,LB
+37087,0.01952212,Fluorene,LB
+37087,0.1621528,Volatile Organic Compounds,TON
+37081,0.002538236,"Benzo[g,h,i,]Perylene",LB
+37081,0.001661841,Benzo[k]Fluoranthene,LB
+37081,1.3795588,"2,2,4-Trimethylpentane",LB
+37081,0.19672212,Acenaphthene,LB
+37081,0.7034082,Phenanthrene,LB
+37081,76.33448,"1,3-Butadiene",LB
+37081,3.361522,Fluoranthene,LB
+37081,0.6780436,Chrysene,LB
+37081,3332.944,"2,2,4-Trimethylpentane",LB
+37081,0.7018712,Benz[a]Anthracene,LB
+37081,0.2251912,Manganese,LB
+37081,0.11545216,Nickel,LB
+37081,118.8521,Naphthalene,LB
+37081,0.002909759,Nitrate portion of PM2.5-PRI,TON
+37081,67.14319,Volatile Organic Compounds,TON
+37077,0.840897,Elemental Carbon portion of PM2.5-PRI,TON
+37077,2.124407,Organic Carbon portion of PM2.5-PRI,TON
+37077,885.1826,"1,3-Butadiene",LB
+37077,0.00833344,Chromium (VI),LB
+37077,3.716132,Benzo[a]Pyrene,LB
+37065,310.8174,Formaldehyde,LB
+37065,27.46774,Benzene,LB
+37065,0.0001618166,Mercury,LB
+37065,0.05959234,Nickel,LB
+37065,3.253532,Phenanthrene,LB
+37065,12180.76,Carbon Dioxide,TON
+37065,0.246848,Organic Carbon portion of PM2.5-PRI,TON
+37065,1.789468,PM10 Primary (Filt + Cond),TON
+37065,1.619356,Volatile Organic Compounds,TON
+37051,0.008990364,Nitrous Oxide,TON
+37051,9.94627,"1,3-Butadiene",LB
+37051,20.46198,Toluene,LB
+37051,6.880018e-05,Chromium (VI),LB
+37051,0.004784118,Benzo[k]Fluoranthene,LB
+37051,33.57712,Naphthalene,LB
+37051,0.5423876,Hexane,LB
+37051,0.0014174114,Pyrene,LB
+37051,8.051924e-07,Mercury,LB
+37051,0.0008623634,Acenaphthene,LB
+37051,6.607827e-07,Nitrate portion of PM2.5-PRI,TON
+37051,0.0002521946,PM2.5 Primary (Filt + Cond),TON
+37049,1.1258734,Acrolein,LB
+37049,0.05035044,Anthracene,LB
+37049,2.702378e-06,Chromium (VI),LB
+37049,0.0006129602,"Benzo[g,h,i,]Perylene",LB
+37049,2.325344e-06,Mercury,LB
+37049,6.182254,Acetaldehyde,LB
+37049,0.04716406,Acenaphthene,LB
+37049,0.03454725,PM10-Primary from certain diesel engines,TON
+37049,0.03178416,PM25-Primary from certain diesel engines,TON
+37049,0.03297771,PM2.5 Primary (Filt + Cond),TON
+37045,0.0009267007,Nitrate portion of PM2.5-PRI,TON
+37045,2.883698,Nitrogen Oxides,TON
+37045,0.03435355,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,2.009176,"1,3-Butadiene",LB
+37045,0.002187864,Benzo[k]Fluoranthene,LB
+37045,68.048,Formaldehyde,LB
+37045,0.4620062,Fluorene,LB
+37045,0.1941578,PM10-Primary from certain diesel engines,TON
+37047,0.02788736,Fluoranthene,LB
+37047,0.006651838,Benzo[k]Fluoranthene,LB
+37047,9.33581,"2,2,4-Trimethylpentane",LB
+37047,22.00454,Benzene,LB
+37047,0.9769396,Naphthalene,LB
+37041,0.00037031,Pyrene,LB
+37041,0.00011169792,Benzo[k]Fluoranthene,LB
+37041,0.0004286624,Fluorene,LB
+37041,4.933549e-06,Sulfate Portion of PM2.5-PRI,TON
+37031,0.0615387,Nitrous Oxide,TON
+37031,2.272193,Nitrogen Oxides,TON
+37031,0.009884805,Organic Carbon portion of PM2.5-PRI,TON
+37031,1.452297,Volatile Organic Compounds,TON
+37031,0.04276172,"Benzo[g,h,i,]Perylene",LB
+37031,0.015174984,Benzo[k]Fluoranthene,LB
+37031,80.7726,Benzene,LB
+37029,0.00553247,Manganese,LB
+37029,9.287644,Acetaldehyde,LB
+37029,0.0005142467,Nitrous Oxide,TON
+37029,0.04747968,PM2.5 Primary (Filt + Cond),TON
+37019,0.01212106,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.03390462,PM2.5 Primary (Filt + Cond),TON
+37007,0.6679092,"1,3-Butadiene",LB
+37007,1.107091,Propionaldehyde,LB
+37007,0.005433296,Benzo[b]Fluoranthene,LB
+37007,0.05791891,PM25-Primary from certain diesel engines,TON
+37007,0.0855564,PM10 Primary (Filt + Cond),TON
+37003,57.93754,Formaldehyde,LB
+37003,0.13422146,Anthracene,LB
+37003,2.639204,Propionaldehyde,LB
+37003,36.26841,Carbon Monoxide,TON
+37003,0.01811881,Sulfur Dioxide,TON
+37003,0.001674363,Sulfate Portion of PM2.5-PRI,TON
+37065,9.20242,Benzene,LB
+37065,0.0016200198,Manganese,LB
+37065,0.000368062,Arsenic,LB
+37065,0.006709297,Methane,TON
+37065,0.002913154,Ammonia,TON
+37065,0.328588,Nitrogen Oxides,TON
+37065,44.96576,Toluene,LB
+37065,0.1783154,Propionaldehyde,LB
+37061,0.420898,Acrolein,LB
+37061,47.66662,Toluene,LB
+37061,7.80544e-06,Chromium (VI),LB
+37061,0.00620802,Benzo[b]Fluoranthene,LB
+37061,0.01116825,Ammonia,TON
+37061,0.01240078,PM2.5 Primary (Filt + Cond),TON
+37061,0.004542315,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,11.07826,Carbon Monoxide,TON
+37057,24.11086,Hexane,LB
+37057,0.4357406,Propionaldehyde,LB
+37057,1.0479604e-05,Chromium (VI),LB
+37057,0.015434328,Benzo[a]Pyrene,LB
+37057,0.000356306,"Dibenzo[a,h]Anthracene",LB
+37057,21.21142,"2,2,4-Trimethylpentane",LB
+37055,4.876514,Styrene,LB
+37055,1.2653096,Anthracene,LB
+37055,0.2823546,Benzo[a]Pyrene,LB
+37055,0.04195629,Sulfate Portion of PM2.5-PRI,TON
+37051,68.98534,Ethyl Benzene,LB
+37051,0.04477694,Benzo[k]Fluoranthene,LB
+37051,182.46132,Benzene,LB
+37051,37.17004,Acetaldehyde,LB
+37051,0.3020092,Fluorene,LB
+37047,0.001724827,Sulfate Portion of PM2.5-PRI,TON
+37047,0.2298074,Acenaphthylene,LB
+37047,0.02684702,Benz[a]Anthracene,LB
+37047,0.01564329,Nickel,LB
+37047,0.10517304,Benzo[k]Fluoranthene,LB
+37047,0.0033813,"Dibenzo[a,h]Anthracene",LB
+37047,518.0944,"2,2,4-Trimethylpentane",LB
+37047,451.6368,Benzene,LB
+37047,0.02525144,Manganese,LB
+37047,0.02748016,Arsenic,LB
+37047,0.0004225374,Nitrate portion of PM2.5-PRI,TON
+37047,0.08120248,Organic Carbon portion of PM2.5-PRI,TON
+37047,0.004421069,Sulfate Portion of PM2.5-PRI,TON
+37033,1.0077598,Ethyl Benzene,LB
+37033,1.373912,Hexane,LB
+37033,0.002612912,Pyrene,LB
+37033,0.5014086,Formaldehyde,LB
+37033,0.5018178,Acetaldehyde,LB
+37033,0.008458326,Phenanthrene,LB
+37033,3.178832,Carbon Dioxide,TON
+37033,0.03617097,Nitrogen Oxides,TON
+37031,3.201408,Manganese,LB
+37031,0.07095816,Mercury,LB
+37031,0.884769,Nickel,LB
+37031,1669.6652,Acetaldehyde,LB
+37031,9.214434,Fluorene,LB
+37031,236.267,Naphthalene,LB
+37031,2.410738,Methane,TON
+37031,1127.548,Carbon Monoxide,TON
+37031,8.134099,Ammonia,TON
+37031,1.442961,Organic Carbon portion of PM2.5-PRI,TON
+37031,3.60112,PM2.5 Primary (Filt + Cond),TON
+37031,0.1015882,Sulfate Portion of PM2.5-PRI,TON
+37031,3.911636,Anthracene,LB
+37031,86.25124,Propionaldehyde,LB
+37031,7.660546,Pyrene,LB
+37031,2.225272,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,1.5232558,Benzo[b]Fluoranthene,LB
+37031,1.5232558,Benzo[k]Fluoranthene,LB
+37031,1312.0874,Formaldehyde,LB
+37069,0.10420694,Acrolein,LB
+37069,0.0018318692,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,9.91144e-05,Mercury,LB
+37069,0.0009299094,Acenaphthene,LB
+37069,0.007442403,Methane,TON
+37069,1.098321,Carbon Monoxide,TON
+37069,140.7127,Carbon Dioxide,TON
+37069,0.06902568,Nitrogen Oxides,TON
+37069,0.003157451,PM2.5 Primary (Filt + Cond),TON
+37069,0.004276896,Sulfur Dioxide,TON
+37047,0.002662396,Nickel,LB
+37047,0.004082604,Arsenic,LB
+37047,16.200506,Acetaldehyde,LB
+37047,0.01397757,Methane,TON
+37105,0.0002031216,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.000886287,Nitrous Oxide,TON
+37105,0.16501168,Ethyl Benzene,LB
+37105,0.03574948,"1,3-Butadiene",LB
+37105,0.698248,Toluene,LB
+37105,0.5988578,Xylenes (Mixed Isomers),LB
+37105,0.0007789078,Benzo[a]Pyrene,LB
+37105,3.433026e-05,Mercury,LB
+37105,0.0004280744,Nickel,LB
+37105,0.08453174,Acrolein,LB
+37105,0.002011474,Benzo[a]Pyrene,LB
+37105,0.0014027408,Nickel,LB
+37105,0.003533142,PM2.5 Primary (Filt + Cond),TON
+37197,577.9584,Benzene,LB
+37197,1.1856186,Fluorene,LB
+37197,9.587536,Volatile Organic Compounds,TON
+37191,0.1227781,Toluene,LB
+37191,4.256486e-08,Chromium (VI),LB
+37191,2.787694e-05,Benz[a]Anthracene,LB
+37191,2.636066e-05,Manganese,LB
+37191,4.267154e-07,Mercury,LB
+37191,5.320744e-06,Nickel,LB
+37191,0.01218946,Acetaldehyde,LB
+37191,9.032556e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37191,7.497671e-05,Ammonia,TON
+37191,1.693073e-07,Nitrate portion of PM2.5-PRI,TON
+37191,6.268734e-05,PM2.5 Primary (Filt + Cond),TON
+37191,6.858188,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,6276.02,Formaldehyde,LB
+37191,1.770105,Nickel,LB
+37191,20.25896,Acenaphthene,LB
+37191,25.57165,PM10 Primary (Filt + Cond),TON
+37191,353.8871,Volatile Organic Compounds,TON
+37189,6.90109,Xylenes (Mixed Isomers),LB
+37189,0.03103198,Manganese,LB
+37189,0.6912484,Fluorene,LB
+37189,0.2161485,PM25-Primary from certain diesel engines,TON
+37189,0.01700603,Ammonia,TON
+37189,0.0014667946,Fluorene,LB
+37189,0.3214641,Carbon Monoxide,TON
+37189,0.0001299643,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.0001572675,Nitrous Oxide,TON
+37189,1.911988e-06,Nitrate portion of PM2.5-PRI,TON
+37189,0.0006366844,Anthracene,LB
+37189,1.6945002,Xylenes (Mixed Isomers),LB
+37189,0.0011189236,Fluoranthene,LB
+37181,4.561504,Hexane,LB
+37181,0.02630112,"Benzo[g,h,i,]Perylene",LB
+37181,0.011303674,Fluorene,LB
+37181,0.04327857,Methane,TON
+37181,0.006052251,Organic Carbon portion of PM2.5-PRI,TON
+37081,21.6873,Ethyl Benzene,LB
+37081,4.26666,"1,3-Butadiene",LB
+37081,0.07622594,Pyrene,LB
+37081,77.50264,Xylenes (Mixed Isomers),LB
+37081,0.0003487274,Chromium (VI),LB
+37081,0.03814792,Chrysene,LB
+37081,0.00349594,Mercury,LB
+37081,0.3233159,Ammonia,TON
+37081,0.5237884,PM10 Primary (Filt + Cond),TON
+37081,0.1468517,PM2.5 Primary (Filt + Cond),TON
+37011,4.317388,Toluene,LB
+37011,1.8343692,Xylenes (Mixed Isomers),LB
+37009,0.6225048,Ethyl Benzene,LB
+37141,0.9964146,"1,3-Butadiene",LB
+37141,0.017769546,Pyrene,LB
+37141,0.009969972,Benzo[k]Fluoranthene,LB
+37141,0.007653844,Chrysene,LB
+37141,9.6608,"2,2,4-Trimethylpentane",LB
+37141,0.008654032,Benz[a]Anthracene,LB
+37141,25.70398,Benzene,LB
+37141,106.63274,Acetaldehyde,LB
+37141,0.4773204,Naphthalene,LB
+37141,1.258699,Nitrogen Oxides,TON
+37141,0.02609259,PM2.5 Primary (Filt + Cond),TON
+37141,0.008911296,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,0.04532464,Acrolein,LB
+37199,5.702648,Xylenes (Mixed Isomers),LB
+37199,0.010309204,Acenaphthylene,LB
+37199,35.08573,Carbon Dioxide,TON
+37199,0.00025975,Elemental Carbon portion of PM2.5-PRI,TON
+37197,5.760284,Ethyl Benzene,LB
+37197,13.60412,Acrolein,LB
+37197,0.000560889,Benzo[k]Fluoranthene,LB
+37197,0.013469922,Benzo[a]Pyrene,LB
+37197,4.3918,"2,2,4-Trimethylpentane",LB
+37197,0.11649286,Benz[a]Anthracene,LB
+37197,16.240208,Benzene,LB
+37197,0.019250792,Manganese,LB
+37197,0.5587806,Acenaphthene,LB
+37197,0.07416224,Methane,TON
+37197,0.02190551,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.1680576,PM2.5 Primary (Filt + Cond),TON
+37185,2.417428,Xylenes (Mixed Isomers),LB
+37185,0.5942966,Benzene,LB
+37185,0.05452151,Volatile Organic Compounds,TON
+37187,0.3311374,Toluene,LB
+37187,4.533464e-05,Benzo[b]Fluoranthene,LB
+37187,7.297028e-05,Benzo[a]Pyrene,LB
+37187,3.10483e-07,Mercury,LB
+37187,0.04554544,Carbon Monoxide,TON
+37187,0.004908285,Nitrogen Oxides,TON
+37187,4.185203e-05,Sulfur Dioxide,TON
+37183,0.03497062,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.02574076,Fluorene,LB
+37183,2594.7,Carbon Dioxide,TON
+37183,0.04445201,Nitrous Oxide,TON
+37183,1.7667146,"1,3-Butadiene",LB
+37183,3.06322,Propionaldehyde,LB
+37183,27.55478,Xylenes (Mixed Isomers),LB
+37183,0.02337359,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.05899453,PM2.5 Primary (Filt + Cond),TON
+37183,0.9459365,Volatile Organic Compounds,TON
+37181,4.309536,Benzene,LB
+37181,101.3359,Carbon Dioxide,TON
+37181,0.001429616,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.634106,Volatile Organic Compounds,TON
+37179,0.0213214,Anthracene,LB
+37179,7.902552,Formaldehyde,LB
+37179,5.179428e-05,Mercury,LB
+37179,0.0009902216,Arsenic,LB
+37179,0.02516192,Acenaphthene,LB
+37007,6.37067,Benzene,LB
+37007,0.0003919806,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.001852414,Nitrous Oxide,TON
+37007,0.001025502,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.0018316954,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.0014735984,Benzo[b]Fluoranthene,LB
+37007,14.883956,Xylenes (Mixed Isomers),LB
+37007,3.163608e-06,Mercury,LB
+37007,3.944646e-05,Nickel,LB
+37007,6.048316e-05,Arsenic,LB
+37007,0.0002662841,Sulfur Dioxide,TON
+37013,2016.274,"1,3-Butadiene",LB
+37013,47821.52,Toluene,LB
+37013,4507.146,Formaldehyde,LB
+37013,7.664233,Methane,TON
+37013,6.520508,Nitrous Oxide,TON
+37013,2.556353,Sulfur Dioxide,TON
+37003,17.411528,Acrolein,LB
+37003,6.355686,Hexane,LB
+37003,0.006004742,"Dibenzo[a,h]Anthracene",LB
+37003,0.1497786,Ammonia,TON
+37003,0.0866427,Sulfur Dioxide,TON
+37003,1.19111,Volatile Organic Compounds,TON
+37001,0.12312568,Anthracene,LB
+37001,0.2679096,Fluoranthene,LB
+37001,1.0245826,"2,2,4-Trimethylpentane",LB
+37001,0.08566334,Benz[a]Anthracene,LB
+37001,16.253598,Acetaldehyde,LB
+37171,0.6909844,Ethyl Benzene,LB
+37171,0.12493044,Acrolein,LB
+37171,0.002333762,Pyrene,LB
+37171,2.529488,Xylenes (Mixed Isomers),LB
+37171,0.007904454,"Benzo[g,h,i,]Perylene",LB
+37145,0.13169962,Ethyl Benzene,LB
+37145,0.006576752,Styrene,LB
+37145,0.03172354,"1,3-Butadiene",LB
+37145,0.0244338,Acrolein,LB
+37145,0.4714944,Xylenes (Mixed Isomers),LB
+37145,1.5013164e-06,Chromium (VI),LB
+37145,8.881242e-06,"Dibenzo[a,h]Anthracene",LB
+37145,0.0001826162,Benz[a]Anthracene,LB
+37145,0.0012798628,Phenanthrene,LB
+37145,0.0001130861,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.002050836,PM10 Primary (Filt + Cond),TON
+37141,0.8109474,Toluene,LB
+37141,0.0004206268,Benzo[k]Fluoranthene,LB
+37141,0.0003188736,Chrysene,LB
+37141,0.000796423,Benzo[a]Pyrene,LB
+37141,0.003073633,Ammonia,TON
+37141,0.04245588,Nitrogen Oxides,TON
+37141,0.004121407,PM10 Primary (Filt + Cond),TON
+37131,8.17831,Toluene,LB
+37099,1.2529418,Propionaldehyde,LB
+37099,0.004451616,Chrysene,LB
+37099,0.01358248,Manganese,LB
+37099,0.005197966,Acenaphthene,LB
+37099,0.0295883,Phenanthrene,LB
+37099,0.6974564,Nitrogen Oxides,TON
+37097,0.0012557854,"Dibenzo[a,h]Anthracene",LB
+37097,0.06717808,Manganese,LB
+37097,29.98674,Carbon Monoxide,TON
+37097,0.2879759,PM10 Primary (Filt + Cond),TON
+37171,0.3086292,Propionaldehyde,LB
+37171,0.02772376,Pyrene,LB
+37171,0.006707354,Chrysene,LB
+37171,7.969978e-05,Mercury,LB
+37171,5.322724,Acetaldehyde,LB
+37171,0.8299844,Naphthalene,LB
+37171,0.01099198,Nitrous Oxide,TON
+37169,0.03222648,Anthracene,LB
+37169,0.05521314,Fluoranthene,LB
+37169,0.011626606,Benz[a]Anthracene,LB
+37169,0.0013730874,Manganese,LB
+37169,0.00017182324,Nickel,LB
+37169,0.01646294,PM2.5 Primary (Filt + Cond),TON
+37149,157.0694,Toluene,LB
+37149,99.74694,Xylenes (Mixed Isomers),LB
+37149,45.23374,Benzene,LB
+37149,0.04025314,Ammonia,TON
+37149,0.05520358,PM2.5 Primary (Filt + Cond),TON
+37141,0.1195439,"1,3-Butadiene",LB
+37141,2.07516,Xylenes (Mixed Isomers),LB
+37141,0.0006368806,Benzo[b]Fluoranthene,LB
+37141,0.001121203,Benzo[a]Pyrene,LB
+37141,0.01619256,Volatile Organic Compounds,TON
+37137,0.2152212,Nickel,LB
+37137,1066.9596,Acetaldehyde,LB
+37137,161.4726,Naphthalene,LB
+37137,2.64414,Anthracene,LB
+37137,0.6975946,Benzo[k]Fluoranthene,LB
+37137,0.813481,Benzo[a]Pyrene,LB
+37133,36.06114,Benzene,LB
+37129,57.5072,Acrolein,LB
+37129,55.52724,Propionaldehyde,LB
+37129,0.0216668,"Dibenzo[a,h]Anthracene",LB
+37129,2926.2,Benzene,LB
+37129,680.081,Carbon Monoxide,TON
+37129,51837.47,Carbon Dioxide,TON
+37121,0.03759864,Pyrene,LB
+37121,4.897176e-06,Chromium (VI),LB
+37121,0.019708596,"Benzo[g,h,i,]Perylene",LB
+37121,0.007404926,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.03294444,Fluoranthene,LB
+37121,0.003044764,Manganese,LB
+37121,0.02268608,Acenaphthene,LB
+37121,0.04595338,Fluorene,LB
+37121,180.2567,Carbon Dioxide,TON
+37121,0.01963983,Nitrous Oxide,TON
+37121,0.007637697,Ammonia,TON
+37121,2.18391e-05,Nitrate portion of PM2.5-PRI,TON
+37121,0.003782549,Sulfur Dioxide,TON
+37117,0.3313558,"1,3-Butadiene",LB
+37117,0.9770858,Xylenes (Mixed Isomers),LB
+37117,3.973318e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.00015588268,Benzo[b]Fluoranthene,LB
+37117,0.0005220886,Benzo[a]Pyrene,LB
+37117,0.05723582,Fluorene,LB
+37117,1.2323792,Naphthalene,LB
+37117,0.008425957,Methane,TON
+37117,0.07082904,Styrene,LB
+37117,8.24222,Toluene,LB
+37117,0.05252652,Propionaldehyde,LB
+37117,5.93217,Xylenes (Mixed Isomers),LB
+37117,0.004707492,Fluoranthene,LB
+37117,3.005144e-05,"Dibenzo[a,h]Anthracene",LB
+37117,1.610113,"2,2,4-Trimethylpentane",LB
+37117,0.001510112,Methane,TON
+37117,0.0002810421,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.0008570319,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.007991329,PM10 Primary (Filt + Cond),TON
+37117,0.04724101,Volatile Organic Compounds,TON
+37117,179.84504,Styrene,LB
+37117,1.25886,Organic Carbon portion of PM2.5-PRI,TON
+37101,17.067548,Fluoranthene,LB
+37101,1683.2218,Acetaldehyde,LB
+37101,425.5998,Naphthalene,LB
+37101,3.606532,PM10-Primary from certain diesel engines,TON
+37101,0.06435286,Nitrous Oxide,TON
+37101,0.006098667,Nitrate portion of PM2.5-PRI,TON
+37091,68.57516,Acetaldehyde,LB
+37091,5278.955,Carbon Dioxide,TON
+37091,0.4308706,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.0352734,Sulfate Portion of PM2.5-PRI,TON
+37091,0.006748582,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.03478544,Styrene,LB
+37103,5.658716,Toluene,LB
+37103,0.1081665,Nitrogen Oxides,TON
+37103,0.000895591,Sulfur Dioxide,TON
+37095,0.001232817,Ammonia,TON
+37095,0.1481905,Nitrogen Oxides,TON
+37095,0.001862194,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.0395653,Pyrene,LB
+37095,0.2868528,Xylenes (Mixed Isomers),LB
+37095,0.00012494696,"Dibenzo[a,h]Anthracene",LB
+37095,0.011815632,Acenaphthene,LB
+37095,0.0472228,Phenanthrene,LB
+37093,23.9072,"1,3-Butadiene",LB
+37093,57.34974,Acrolein,LB
+37093,0.00259057,"Dibenzo[a,h]Anthracene",LB
+37093,0.001297466,Nitrate portion of PM2.5-PRI,TON
+37089,12.48028,Ethyl Benzene,LB
+37089,0.015872912,Benzo[b]Fluoranthene,LB
+37089,9.309478e-05,Mercury,LB
+37089,0.019465622,Arsenic,LB
+37089,2.04126,Fluorene,LB
+37089,2739.526,Carbon Dioxide,TON
+37089,0.04252469,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,1.8117158,Toluene,LB
+37083,1.0346448e-05,Chromium (VI),LB
+37083,0.002083488,Arsenic,LB
+37083,0.01183423,Methane,TON
+37083,0.006692807,Sulfur Dioxide,TON
+37083,8.614128e-05,Benzo[k]Fluoranthene,LB
+37083,0.002050696,Benzo[a]Pyrene,LB
+37083,0.003883208,Arsenic,LB
+37083,0.008708772,PM2.5 Primary (Filt + Cond),TON
+37083,0.0012326,Sulfate Portion of PM2.5-PRI,TON
+37077,0.3870804,Styrene,LB
+37077,0.0789681,Acenaphthylene,LB
+37077,0.001712903,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.13018826,Styrene,LB
+37053,0.2981026,"1,3-Butadiene",LB
+37053,0.0007613338,Arsenic,LB
+37053,0.005901508,Methane,TON
+37053,0.991039,Nitrogen Oxides,TON
+37053,0.05497431,Volatile Organic Compounds,TON
+37197,0.5859952,Benzene,LB
+37197,0.0001915114,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.02416336,"1,3-Butadiene",LB
+37193,136.0918,"1,3-Butadiene",LB
+37193,727.0684,Hexane,LB
+37193,0.2487214,Benzo[k]Fluoranthene,LB
+37193,0.2501198,Chrysene,LB
+37193,0.9498478,Acenaphthene,LB
+37193,5.153292,Phenanthrene,LB
+37193,0.6623524,Ammonia,TON
+37191,0.000668239,Anthracene,LB
+37191,0.0014119576,Pyrene,LB
+37191,7.045894e-05,Mercury,LB
+37187,24.98434,Propionaldehyde,LB
+37187,381.251,Formaldehyde,LB
+37187,1200.553,"2,2,4-Trimethylpentane",LB
+37187,465.4764,Acetaldehyde,LB
+37187,2.622122,Fluorene,LB
+37187,0.001948702,Nitrate portion of PM2.5-PRI,TON
+37187,0.7270387,PM2.5 Primary (Filt + Cond),TON
+37187,0.1923665,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.4462284,Sulfur Dioxide,TON
+37187,26.66636,Volatile Organic Compounds,TON
+37179,3.593134,Styrene,LB
+37179,0.007275574,"Benzo[g,h,i,]Perylene",LB
+37179,0.00772539,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.0005562544,Chromium (VI),LB
+37171,1.0835396,Chrysene,LB
+37171,1.9209056,Benz[a]Anthracene,LB
+37171,48.10257,Carbon Monoxide,TON
+37171,5.130455,PM2.5 Primary (Filt + Cond),TON
+37171,0.002098668,"Dibenzo[a,h]Anthracene",LB
+37171,4.270702,"2,2,4-Trimethylpentane",LB
+37171,1.0108796,Fluorene,LB
+37171,3.478594e-05,Chromium (VI),LB
+37171,0.003889604,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,5.770196,Propionaldehyde,LB
+37149,0.483537,Pyrene,LB
+37149,0.347427,"Benzo[g,h,i,]Perylene",LB
+37149,0.002431538,Mercury,LB
+37149,95.95996,Acetaldehyde,LB
+37149,0.3162789,Ammonia,TON
+37137,0.03483198,Benzo[k]Fluoranthene,LB
+37137,0.03639248,Benz[a]Anthracene,LB
+37137,0.01140135,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.08096182,Nitrous Oxide,TON
+37137,2.914626,Propionaldehyde,LB
+37137,319.7086,Xylenes (Mixed Isomers),LB
+37135,0.005811562,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.005847486,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,26.71556,Xylenes (Mixed Isomers),LB
+37135,0.005837926,Benzo[b]Fluoranthene,LB
+37135,4461.188,Hexane,LB
+37135,673.2962,Benzene,LB
+37133,0.712649,Methane,TON
+37133,0.7993094,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.3991884,Remaining PMFINE portion of PM2.5-PRI,TON
+37133,71.31726,Toluene,LB
+37129,0.0006086336,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.0223811,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.3362959,PM10 Primary (Filt + Cond),TON
+37129,3.017506,Styrene,LB
+37129,20.94298,Acrolein,LB
+37129,0.0299322,Arsenic,LB
+37129,121.37898,Acetaldehyde,LB
+37125,2.032878,Acrolein,LB
+37125,0.0003214654,Nitrate portion of PM2.5-PRI,TON
+37125,0.0013443162,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,0.0007322968,Benzo[k]Fluoranthene,LB
+37125,27.74224,Formaldehyde,LB
+37125,9.090388e-06,Mercury,LB
+37123,0.15223566,Styrene,LB
+37123,0.10204564,Pyrene,LB
+37123,0.0005324272,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.00028956,Benzo[k]Fluoranthene,LB
+37121,0.3628674,Acenaphthene,LB
+37121,0.2792641,PM10-Primary from certain diesel engines,TON
+37121,9.768856,Xylenes (Mixed Isomers),LB
+37121,0.01061358,Sulfate Portion of PM2.5-PRI,TON
+37121,0.6661036,Volatile Organic Compounds,TON
+37111,60.2464,Xylenes (Mixed Isomers),LB
+37123,0.3350264,Acenaphthylene,LB
+37123,0.02014056,Benzo[a]Pyrene,LB
+37123,0.0008211542,"Dibenzo[a,h]Anthracene",LB
+37123,0.1279939,PM25-Primary from certain diesel engines,TON
+37123,0.3397434,Volatile Organic Compounds,TON
+37119,0.03488088,Benzo[b]Fluoranthene,LB
+37119,0.0012378024,"Dibenzo[a,h]Anthracene",LB
+37119,0.08990936,Acenaphthene,LB
+37119,0.03197607,Nitrous Oxide,TON
+37119,0.1938396,PM10 Primary (Filt + Cond),TON
+37119,0.003578728,Nickel,LB
+37117,178.06928,Benzene,LB
+37113,1.395961,PM10 Primary (Filt + Cond),TON
+37113,7.448154,Pyrene,LB
+37113,0.04969188,Arsenic,LB
+37113,594.5076,Acetaldehyde,LB
+37113,1.025006,PM25-Primary from certain diesel engines,TON
+37105,2.77912,Xylenes (Mixed Isomers),LB
+37105,1.129808e-05,Chromium (VI),LB
+37105,0.004883294,Nickel,LB
+37105,0.02371798,Methane,TON
+37105,0.01351545,Ammonia,TON
+37091,0.7377012,Styrene,LB
+37091,2.588238,Xylenes (Mixed Isomers),LB
+37091,9.98298e-06,Chromium (VI),LB
+37091,0.0013503452,"Benzo[g,h,i,]Perylene",LB
+37091,0.0013715744,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.0007366666,"Dibenzo[a,h]Anthracene",LB
+37091,4.562366,Benzene,LB
+37091,6.75854e-06,Mercury,LB
+37091,0.0258746,Organic Carbon portion of PM2.5-PRI,TON
+37093,28530.62,Toluene,LB
+37093,0.557801,Nickel,LB
+37093,39.04958,Acenaphthylene,LB
+37093,2634.17,Formaldehyde,LB
+37079,15.11872,Ethyl Benzene,LB
+37079,11.366462,Hexane,LB
+37079,0.0095837,Benzo[b]Fluoranthene,LB
+37079,0.3123046,Benz[a]Anthracene,LB
+37079,4.043762,Phenanthrene,LB
+37073,1.9839234e-05,Benz[a]Anthracene,LB
+37073,5.239634e-07,Nickel,LB
+37073,0.001192609,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.0001726663,Sulfur Dioxide,TON
+37073,2.212409e-05,Sulfate Portion of PM2.5-PRI,TON
+37073,0.007937194,"1,3-Butadiene",LB
+37073,0.5276506,Propionaldehyde,LB
+37073,7.336516,Fluorene,LB
+37073,0.254227,Elemental Carbon portion of PM2.5-PRI,TON
+37073,2642.274,Hexane,LB
+37073,2.550502,PM10 Primary (Filt + Cond),TON
+37073,0.3073177,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,0.6931547,Sulfur Dioxide,TON
+37079,1233.8998,"2,2,4-Trimethylpentane",LB
+37079,18.39453,Volatile Organic Compounds,TON
+37067,0.1289825,PM2.5 Primary (Filt + Cond),TON
+37067,1.335728,Hexane,LB
+37067,0.19873858,Anthracene,LB
+37067,0.13198392,Benz[a]Anthracene,LB
+37067,7.010686e-06,Mercury,LB
+37067,0.0014658496,Arsenic,LB
+37067,1.8190054,"1,3-Butadiene",LB
+37067,3.33735,Toluene,LB
+37067,0.3947934,Fluorene,LB
+37067,0.0002066578,Mercury,LB
+37067,0.01271833,Methane,TON
+37067,734.8218,Carbon Dioxide,TON
+37067,0.03244021,Ammonia,TON
+37067,1.501969,Nitrogen Oxides,TON
+37067,0.010214416,Chrysene,LB
+37067,6.622554,Formaldehyde,LB
+37065,1.331462,PM10-Primary from certain diesel engines,TON
+37065,8.528162,"1,3-Butadiene",LB
+37065,16.446156,Toluene,LB
+37065,0.008917622,"Dibenzo[a,h]Anthracene",LB
+37059,7.819066,PM10 Primary (Filt + Cond),TON
+37059,7.189288,"Benzo[g,h,i,]Perylene",LB
+37059,10.501834,Fluorene,LB
+37059,0.6275436,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.06924496,Propionaldehyde,LB
+37043,0.09228834,Xylenes (Mixed Isomers),LB
+37043,0.007158566,Acenaphthylene,LB
+37043,0.04392516,Ethyl Benzene,LB
+37043,0.01852083,Styrene,LB
+37043,0.004108922,PM10 Primary (Filt + Cond),TON
+37043,9.351763e-05,Sulfate Portion of PM2.5-PRI,TON
+37043,0.007570603,Volatile Organic Compounds,TON
+37043,0.1238218,Benzene,LB
+37043,0.08421051,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.008184356,Sulfate Portion of PM2.5-PRI,TON
+37043,0.4867348,Volatile Organic Compounds,TON
+37043,2.326396e-05,Chromium (VI),LB
+37043,0.003635606,"Benzo[g,h,i,]Perylene",LB
+37037,17.12195,"1,3-Butadiene",LB
+37037,48.20202,Toluene,LB
+37037,0.016091184,"Dibenzo[a,h]Anthracene",LB
+37037,1.291169,Benz[a]Anthracene,LB
+37037,0.4319228,Methane,TON
+37035,13.311682,Pyrene,LB
+37035,0.0002717306,Chromium (VI),LB
+37035,0.06131962,"Benzo[g,h,i,]Perylene",LB
+37035,0.2601324,Ammonia,TON
+37035,7.674827,PM10 Primary (Filt + Cond),TON
+37027,0.0009082565,Nitrate portion of PM2.5-PRI,TON
+37027,3.922398,"1,3-Butadiene",LB
+37027,6.433188,Propionaldehyde,LB
+37027,0.9348758,Pyrene,LB
+37027,0.01471355,Benzo[b]Fluoranthene,LB
+37027,0.727619,Fluoranthene,LB
+37027,0.002023764,Benzo[k]Fluoranthene,LB
+37027,120.47694,Formaldehyde,LB
+37027,0.04933682,Benzo[a]Pyrene,LB
+37027,0.002018024,"Dibenzo[a,h]Anthracene",LB
+37027,2.088994,Anthracene,LB
+37027,17.833918,"1,3-Butadiene",LB
+37027,0.0201758,Benzo[k]Fluoranthene,LB
+37027,1.393707,Elemental Carbon portion of PM2.5-PRI,TON
+37027,46.80836,Nitrogen Oxides,TON
+37023,33.95024,Xylenes (Mixed Isomers),LB
+37023,0.00013273872,Chromium (VI),LB
+37023,0.13815002,Benzo[b]Fluoranthene,LB
+37023,3.085868,Acenaphthylene,LB
+37023,0.8821334,Chrysene,LB
+37023,1.537193,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.3132636,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.03659228,Ammonia,TON
+37159,2.617685,Nitrogen Oxides,TON
+37159,7.755552,Hexane,LB
+37159,0.00512943,Benzo[b]Fluoranthene,LB
+37159,0.0007141468,Benzo[k]Fluoranthene,LB
+37159,0.08301612,Chrysene,LB
+37159,0.06235914,Manganese,LB
+37149,6.813694,Acrolein,LB
+37149,2.176516,Hexane,LB
+37149,4.571386,Propionaldehyde,LB
+37149,2.74728e-05,Chromium (VI),LB
+37149,0.001117945,"Benzo[g,h,i,]Perylene",LB
+37149,0.00675116,Benzo[a]Pyrene,LB
+37149,0.010788394,Manganese,LB
+37149,0.014744588,Nickel,LB
+37149,0.000139329,Nitrate portion of PM2.5-PRI,TON
+37149,0.00579253,Sulfur Dioxide,TON
+37149,0.003372463,Sulfate Portion of PM2.5-PRI,TON
+37153,88.8746,"1,3-Butadiene",LB
+37153,0.0004141638,Chromium (VI),LB
+37153,2.8963,Acenaphthylene,LB
+37153,0.16385852,Chrysene,LB
+37153,0.004665552,"Dibenzo[a,h]Anthracene",LB
+37153,452.3904,"2,2,4-Trimethylpentane",LB
+37153,0.0505324,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.5284996,Ammonia,TON
+37153,10.78163,Volatile Organic Compounds,TON
+37147,0.03652104,Nitrous Oxide,TON
+37147,2.314288,Anthracene,LB
+37147,0.13815148,Nickel,LB
+37147,0.003994954,Benzo[b]Fluoranthene,LB
+37147,0.02606866,Chrysene,LB
+37147,0.0003801222,Nitrous Oxide,TON
+37015,1.920144e-06,Sulfate Portion of PM2.5-PRI,TON
+37015,0.002089454,Volatile Organic Compounds,TON
+37015,0.00010513746,Anthracene,LB
+37015,0.00234159,Propionaldehyde,LB
+37015,0.00017088684,"Benzo[g,h,i,]Perylene",LB
+37015,1.7522224e-05,Manganese,LB
+37199,0.00301658,Benzo[b]Fluoranthene,LB
+37199,0.10026896,Fluoranthene,LB
+37199,0.010116224,Benzo[a]Pyrene,LB
+37191,0.3685714,Benzo[b]Fluoranthene,LB
+37191,988.107,"2,2,4-Trimethylpentane",LB
+37191,0.3745628,Benz[a]Anthracene,LB
+37187,0.0003896384,Anthracene,LB
+37187,0.0008134234,Pyrene,LB
+37187,1.9202842e-05,"Dibenzo[a,h]Anthracene",LB
+37187,0.002392148,Phenanthrene,LB
+37187,0.0219946,Naphthalene,LB
+37187,0.5459195,PM10-Primary from certain diesel engines,TON
+37187,0.5022407,PM25-Primary from certain diesel engines,TON
+37187,0.004234216,Nitrous Oxide,TON
+37187,9.077996,Toluene,LB
+37187,0.3625454,Anthracene,LB
+37187,0.002656742,Benzo[k]Fluoranthene,LB
+37187,0.5910254,Acenaphthylene,LB
+37195,285.4478,Xylenes (Mixed Isomers),LB
+37195,0.15672408,Benzo[b]Fluoranthene,LB
+37195,7.263946,Fluoranthene,LB
+37195,0.02202896,"Dibenzo[a,h]Anthracene",LB
+37195,70.92734,"2,2,4-Trimethylpentane",LB
+37195,1.9099678,Benz[a]Anthracene,LB
+37195,5.340611,PM10-Primary from certain diesel engines,TON
+37195,5.245141,PM2.5 Primary (Filt + Cond),TON
+37187,0.0002894922,Acrolein,LB
+37187,0.05765886,Toluene,LB
+37187,2.555418e-05,Pyrene,LB
+37187,1.2564898e-09,Chromium (VI),LB
+37187,6.76536e-07,Manganese,LB
+37187,0.005181066,Acetaldehyde,LB
+37187,0.0007881056,Naphthalene,LB
+37187,3.902656e-06,Organic Carbon portion of PM2.5-PRI,TON
+37187,7.36968e-06,PM2.5 Primary (Filt + Cond),TON
+37187,1.769999e-06,Sulfur Dioxide,TON
+37187,5.085116e-06,Benzo[b]Fluoranthene,LB
+37183,1.173046,Acenaphthylene,LB
+37183,8.669662,"2,2,4-Trimethylpentane",LB
+37183,9.67962,Ethyl Benzene,LB
+37183,7.61213,Hexane,LB
+37183,7.027257,Carbon Monoxide,TON
+37181,3.00479e-05,Chromium (VI),LB
+37181,121.23928,Formaldehyde,LB
+37181,0.0005207128,"Dibenzo[a,h]Anthracene",LB
+37181,3.878348,"1,3-Butadiene",LB
+37181,0.09046688,Benz[a]Anthracene,LB
+37181,0.016126966,Nickel,LB
+37181,0.02602321,Ammonia,TON
+37181,2.465303,Nitrogen Oxides,TON
+37181,0.6965719,Volatile Organic Compounds,TON
+37179,0.002614268,Arsenic,LB
+37179,0.0008402853,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.02279712,PM10 Primary (Filt + Cond),TON
+37179,2.5961,Xylenes (Mixed Isomers),LB
+37179,0.005542728,Acenaphthylene,LB
+37179,2.125948,Formaldehyde,LB
+37181,11.910866,Acrolein,LB
+37181,1997.6122,Toluene,LB
+37181,1.0369866,Pyrene,LB
+37181,0.5785208,"Benzo[g,h,i,]Perylene",LB
+37181,0.9087156,Fluoranthene,LB
+37181,0.00499075,"Dibenzo[a,h]Anthracene",LB
+37181,32.4154,Naphthalene,LB
+37179,0.8148442,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.6264328,Chrysene,LB
+37179,705.1804,Formaldehyde,LB
+37179,0.8188168,Benzo[a]Pyrene,LB
+37179,1697.3604,"2,2,4-Trimethylpentane",LB
+37179,121.97782,Naphthalene,LB
+37179,2.454501,Ammonia,TON
+37179,0.002886223,Nitrate portion of PM2.5-PRI,TON
+37179,0.03159733,Sulfate Portion of PM2.5-PRI,TON
+37177,0.5397028,Carbon Monoxide,TON
+37177,0.635708,Nitrogen Oxides,TON
+37177,0.3624314,Hexane,LB
+37177,0.0008054144,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.0808629,Acenaphthylene,LB
+37177,0.0205529,Chrysene,LB
+37043,5.090648,Acrolein,LB
+37043,0.2391364,Anthracene,LB
+37043,3.489418,Propionaldehyde,LB
+37043,0.5179108,Fluoranthene,LB
+37043,0.2180656,Acenaphthene,LB
+37043,0.01404411,Ammonia,TON
+37043,6.795605,Nitrogen Oxides,TON
+37043,0.0012799188,Benzo[a]Pyrene,LB
+37043,2.929174e-05,"Dibenzo[a,h]Anthracene",LB
+37043,2.869034e-05,Arsenic,LB
+37043,1.1441438,Acetaldehyde,LB
+37043,0.00707306,Fluorene,LB
+37043,0.0006198982,Organic Carbon portion of PM2.5-PRI,TON
+37037,76.76884,Toluene,LB
+37037,0.4615508,Propionaldehyde,LB
+37037,1.2406734e-05,Chromium (VI),LB
+37037,0.04248634,Fluoranthene,LB
+37037,0.009291644,Benzo[k]Fluoranthene,LB
+37037,0.6313416,Styrene,LB
+37037,0.00012437954,Mercury,LB
+37037,1.498251,Naphthalene,LB
+37037,0.01409316,Sulfur Dioxide,TON
+37037,0.0005965085,Sulfate Portion of PM2.5-PRI,TON
+37037,615.4106,Hexane,LB
+37037,0.09859066,Benz[a]Anthracene,LB
+37037,70.41216,Acetaldehyde,LB
+37037,10.99853,Volatile Organic Compounds,TON
+37029,11.032978,Hexane,LB
+37029,1.2149972,Anthracene,LB
+37029,2.363844,Pyrene,LB
+37029,0.005712182,"Benzo[g,h,i,]Perylene",LB
+37029,2.50228,Acenaphthylene,LB
+37025,30.21543,Carbon Monoxide,TON
+37025,0.4292734,Ammonia,TON
+37025,0.01544702,Nitrate portion of PM2.5-PRI,TON
+37025,3.116975,PM2.5 Primary (Filt + Cond),TON
+37025,62.7438,Propionaldehyde,LB
+37025,0.0003454938,Chromium (VI),LB
+37025,1375.9262,Formaldehyde,LB
+37025,0.0355577,"Dibenzo[a,h]Anthracene",LB
+37069,4.73473,Acenaphthene,LB
+37069,0.2155184,Ammonia,TON
+37069,0.002615741,Nitrate portion of PM2.5-PRI,TON
+37069,0.03135679,Sulfate Portion of PM2.5-PRI,TON
+37069,45.4678,Ethyl Benzene,LB
+37067,15.060342,Pyrene,LB
+37067,9.095384,Acenaphthylene,LB
+37067,0.2529112,Arsenic,LB
+37067,8.308974,PM2.5 Primary (Filt + Cond),TON
+37067,0.764905,Sulfur Dioxide,TON
+37059,0.07881372,Phenanthrene,LB
+37059,0.04619094,Fluorene,LB
+37059,0.01831593,PM10-Primary from certain diesel engines,TON
+37059,0.002545545,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.03864108,Volatile Organic Compounds,TON
+37059,0.222273,Ethyl Benzene,LB
+37059,0.4529876,Xylenes (Mixed Isomers),LB
+37059,0.0003313036,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.16783768,"2,2,4-Trimethylpentane",LB
+37059,2.906234,Acetaldehyde,LB
+37065,5553.06,Hexane,LB
+37065,7.49716,Fluoranthene,LB
+37065,1.9686032,Benzo[k]Fluoranthene,LB
+37065,5256.786,Benzene,LB
+37065,0.9167732,Nickel,LB
+37065,0.1127638,Sulfate Portion of PM2.5-PRI,TON
+37049,0.000355857,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.0002623116,Benzo[b]Fluoranthene,LB
+37049,0.004161586,Acenaphthylene,LB
+37049,0.7482242,"2,2,4-Trimethylpentane",LB
+37049,0.2807331,Carbon Monoxide,TON
+37049,7.166635e-05,Ammonia,TON
+37049,0.1220165,"1,3-Butadiene",LB
+37049,3.365838,Toluene,LB
+37045,0.4853582,Styrene,LB
+37045,0.03179248,Fluoranthene,LB
+37045,0.0002013406,"Dibenzo[a,h]Anthracene",LB
+37045,10.935694,"2,2,4-Trimethylpentane",LB
+37045,0.02171754,Acenaphthene,LB
+37045,1.1277084,Naphthalene,LB
+37045,0.009088095,Methane,TON
+37045,0.0057287,Organic Carbon portion of PM2.5-PRI,TON
+37041,4.202622,Volatile Organic Compounds,TON
+37041,195.88106,Hexane,LB
+37041,0.3608812,Fluoranthene,LB
+37041,0.1641052,Methane,TON
+37041,6.106862,Nitrogen Oxides,TON
+37041,0.08398971,PM2.5 Primary (Filt + Cond),TON
+37029,17.96419,Volatile Organic Compounds,TON
+37029,915.3158,Hexane,LB
+37029,0.7584074,Anthracene,LB
+37029,16.652092,Propionaldehyde,LB
+37029,2214.764,Xylenes (Mixed Isomers),LB
+37029,0.292358,Benzo[k]Fluoranthene,LB
+37029,0.16076844,Nickel,LB
+37023,121.11272,Acrolein,LB
+37023,0.5459674,Benzo[a]Pyrene,LB
+37023,0.02278914,"Dibenzo[a,h]Anthracene",LB
+37023,0.7624348,Manganese,LB
+37023,735.0826,Acetaldehyde,LB
+37023,7.250784,Fluorene,LB
+37023,0.04952286,Nitrous Oxide,TON
+37023,0.4229019,Sulfate Portion of PM2.5-PRI,TON
+37023,1.873245,Acenaphthene,LB
+37023,0.007614918,Nitrate portion of PM2.5-PRI,TON
+37023,2.415166,PM10 Primary (Filt + Cond),TON
+37023,48.36994,Acrolein,LB
+37023,52.21092,Xylenes (Mixed Isomers),LB
+37133,0.15581376,Arsenic,LB
+37133,8.717594,Acenaphthene,LB
+37133,298.0812,Naphthalene,LB
+37133,22279.22,Carbon Dioxide,TON
+37133,0.2371648,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,0.002544129,Nitrate portion of PM2.5-PRI,TON
+37129,668.7368,Styrene,LB
+37129,7.146276,Benzo[b]Fluoranthene,LB
+37129,128.93658,Acenaphthylene,LB
+37129,7.271314,Chrysene,LB
+37129,21802.8,"2,2,4-Trimethylpentane",LB
+37129,0.2275762,Mercury,LB
+37129,0.4003157,Sulfate Portion of PM2.5-PRI,TON
+37127,0.5674826,"1,3-Butadiene",LB
+37127,1.1268334,Xylenes (Mixed Isomers),LB
+37127,0.1318825,Fluoranthene,LB
+37127,17.286556,Formaldehyde,LB
+37127,0.2105666,Phenanthrene,LB
+37127,0.03966704,PM25-Primary from certain diesel engines,TON
+37127,0.04091492,PM2.5 Primary (Filt + Cond),TON
+37113,0.005264426,Fluoranthene,LB
+37113,0.001582819,Benzo[a]Pyrene,LB
+37113,7562.436,Toluene,LB
+37113,1337.7686,Hexane,LB
+37107,3789.786,Ethyl Benzene,LB
+37107,1832.9138,Acetaldehyde,LB
+37107,2.282183,Sulfur Dioxide,TON
+37091,0.007142558,Manganese,LB
+37091,28.70093,Carbon Monoxide,TON
+37091,0.09246218,Ammonia,TON
+37091,0.0001235813,Nitrate portion of PM2.5-PRI,TON
+37091,0.02378691,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.11498536,"Benzo[g,h,i,]Perylene",LB
+37091,0.465516,Acenaphthylene,LB
+37071,0.05029814,Nitrate portion of PM2.5-PRI,TON
+37071,729.3284,Volatile Organic Compounds,TON
+37071,42.72434,Acenaphthene,LB
+37071,142739.82,Toluene,LB
+37071,41.13082,"Benzo[g,h,i,]Perylene",LB
+37071,15.453542,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.154109,Benz[a]Anthracene,LB
+37069,0.004448005,Nitrous Oxide,TON
+37069,0.0004659619,Nitrate portion of PM2.5-PRI,TON
+37069,0.01102495,Sulfur Dioxide,TON
+37069,1.7320122,Benzo[k]Fluoranthene,LB
+37069,5439.664,"2,2,4-Trimethylpentane",LB
+37069,1.8934436,Manganese,LB
+37069,2.753887,Nitrous Oxide,TON
+37069,102.6213,Propionaldehyde,LB
+37055,0.09002852,Benzo[a]Pyrene,LB
+37055,362.5208,"2,2,4-Trimethylpentane",LB
+37055,0.02484496,Manganese,LB
+37055,0.03052027,Sulfur Dioxide,TON
+37055,7.297329,Volatile Organic Compounds,TON
+37055,7.883712,"1,3-Butadiene",LB
+37055,0.4071844,Pyrene,LB
+37047,15.2944,Ethyl Benzene,LB
+37047,50.19701,Nitrogen Oxides,TON
+37045,0.04197198,Benz[a]Anthracene,LB
+37045,1.6308608,Benzene,LB
+37045,0.0006481452,Arsenic,LB
+37045,1.896868,Naphthalene,LB
+37045,0.04179614,PM2.5 Primary (Filt + Cond),TON
+37045,21.64488,Toluene,LB
+37045,0.4430582,PM10 Primary (Filt + Cond),TON
+37045,0.01282324,Sulfate Portion of PM2.5-PRI,TON
+37045,7.837356,"2,2,4-Trimethylpentane",LB
+37041,4.883178e-07,Manganese,LB
+37041,0.003334122,Acetaldehyde,LB
+37041,6.885063e-06,Methane,TON
+37041,1.229359e-06,Sulfur Dioxide,TON
+37041,6466.974,Xylenes (Mixed Isomers),LB
+37041,6.106288,Fluorene,LB
+37041,2.111003,Ammonia,TON
+37041,0.02187642,Sulfate Portion of PM2.5-PRI,TON
+37037,1.5857862,Ethyl Benzene,LB
+37037,1.3810552,"1,3-Butadiene",LB
+37037,0.0354265,Benzo[a]Pyrene,LB
+37037,0.01586617,Manganese,LB
+37037,5.099886,Naphthalene,LB
+37037,1.110618,Carbon Monoxide,TON
+37037,0.005957731,Sulfur Dioxide,TON
+37037,0.00292353,"Benzo[g,h,i,]Perylene",LB
+37037,21.03612,Benzene,LB
+37037,6.612254e-05,Mercury,LB
+37037,97.986,Acetaldehyde,LB
+37037,1.207411,Fluorene,LB
+37037,11.71986,Carbon Monoxide,TON
+37037,1803.778,Carbon Dioxide,TON
+37037,0.2175993,PM25-Primary from certain diesel engines,TON
+37037,0.1669968,Elemental Carbon portion of PM2.5-PRI,TON
+37037,0.0004128999,Nitrate portion of PM2.5-PRI,TON
+37037,0.01549211,Sulfur Dioxide,TON
+37171,0.2652036,Anthracene,LB
+37171,2.61441e-05,Chromium (VI),LB
+37171,0.0249776,Manganese,LB
+37171,0.2045501,PM25-Primary from certain diesel engines,TON
+37171,0.3059299,PM10 Primary (Filt + Cond),TON
+37161,1.3762456,Toluene,LB
+37161,0.0005155314,"Dibenzo[a,h]Anthracene",LB
+37161,1.6666248,Benzene,LB
+37161,0.08713623,PM10-Primary from certain diesel engines,TON
+37161,0.1263381,PM10 Primary (Filt + Cond),TON
+37161,0.08527914,PM2.5 Primary (Filt + Cond),TON
+37161,0.0100331,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.004351799,Sulfur Dioxide,TON
+37145,0.74685,Acenaphthene,LB
+37145,31.3441,Naphthalene,LB
+37145,1.211037,PM25-Primary from certain diesel engines,TON
+37145,10.0853,Ethyl Benzene,LB
+37145,3.153776,Styrene,LB
+37145,28.0429,Toluene,LB
+37145,31.43452,Xylenes (Mixed Isomers),LB
+37145,0.006967648,Benzo[k]Fluoranthene,LB
+37145,1.2542106,Acenaphthylene,LB
+37135,3.478386,Anthracene,LB
+37135,0.04512658,"Benzo[g,h,i,]Perylene",LB
+37135,0.05644812,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.03040982,"Dibenzo[a,h]Anthracene",LB
+37135,0.4025462,Manganese,LB
+37135,0.08733332,Arsenic,LB
+37135,460.1178,Acetaldehyde,LB
+37135,8.330264,Hexane,LB
+37135,0.009434098,Anthracene,LB
+37135,0.1905224,Propionaldehyde,LB
+37135,0.019203074,Pyrene,LB
+37143,0.05746536,Anthracene,LB
+37143,0.019847068,Chrysene,LB
+37143,0.0002952822,Mercury,LB
+37143,0.36453,Phenanthrene,LB
+37143,3.479754,Naphthalene,LB
+37143,0.0008688747,Sulfate Portion of PM2.5-PRI,TON
+37141,24.17464,Benzene,LB
+37141,0.0008991842,Fluorene,LB
+37141,0.0002078825,PM2.5 Primary (Filt + Cond),TON
+37141,0.4008548,Hexane,LB
+37133,60.45356,Toluene,LB
+37133,0.2224784,Benzo[b]Fluoranthene,LB
+37133,7.345186,Fluoranthene,LB
+37133,0.7460212,Benzo[a]Pyrene,LB
+37133,11.475076,Phenanthrene,LB
+37133,98.38334,Naphthalene,LB
+37133,4.050418,PM2.5 Primary (Filt + Cond),TON
+37133,1.1352172,Ethyl Benzene,LB
+37133,0.04777996,Styrene,LB
+37133,0.001041308,Methane,TON
+37133,8.803687e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.0001445644,Sulfur Dioxide,TON
+37129,4.041231e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.00391021,Volatile Organic Compounds,TON
+37129,0.00021376,Anthracene,LB
+37129,0.000569542,"Benzo[g,h,i,]Perylene",LB
+37129,0.00012703726,Benzo[b]Fluoranthene,LB
+37129,4.909866e-06,"Dibenzo[a,h]Anthracene",LB
+37129,0.00011703948,Benz[a]Anthracene,LB
+37117,0.03689634,Nickel,LB
+37117,3.154188,Phenanthrene,LB
+37117,0.6396425,PM25-Primary from certain diesel engines,TON
+37117,0.003394165,Nitrate portion of PM2.5-PRI,TON
+37117,13.324806,Propionaldehyde,LB
+37117,1.9568966,Fluoranthene,LB
+37117,0.6300548,Benz[a]Anthracene,LB
+37125,9.55189e-05,Arsenic,LB
+37125,0.02466532,Acenaphthene,LB
+37125,0.009829783,PM10 Primary (Filt + Cond),TON
+37125,0.4992863,Volatile Organic Compounds,TON
+37125,3.300174,"1,3-Butadiene",LB
+37125,0.3886304,Acrolein,LB
+37125,102.68872,Toluene,LB
+37125,0.02099394,Anthracene,LB
+37125,22.98126,"2,2,4-Trimethylpentane",LB
+37119,0.3262278,Styrene,LB
+37119,0.232712,Acrolein,LB
+37119,0.00544514,Benzo[a]Pyrene,LB
+37119,13.151706,Benzene,LB
+37107,6.28194,Acrolein,LB
+37107,1.9619492,"2,2,4-Trimethylpentane",LB
+37107,0.2663283,PM10 Primary (Filt + Cond),TON
+37107,0.4619366,Volatile Organic Compounds,TON
+37089,0.4975154,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.3698406,Benz[a]Anthracene,LB
+37089,0.010454782,Mercury,LB
+37089,0.13035988,Nickel,LB
+37089,2.609602,Fluorene,LB
+37089,0.7636208,Nitrous Oxide,TON
+37089,0.001683043,Nitrate portion of PM2.5-PRI,TON
+37089,0.236195,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.4185117,Sulfur Dioxide,TON
+37089,0.01778483,Sulfate Portion of PM2.5-PRI,TON
+37083,0.00418337,"Dibenzo[a,h]Anthracene",LB
+37083,2.149728e-05,Mercury,LB
+37083,61.1484,Acetaldehyde,LB
+37083,1.7255616,Phenanthrene,LB
+37083,0.4934114,PM10 Primary (Filt + Cond),TON
+37079,0.16454464,Acenaphthene,LB
+37079,0.06926054,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.0008589933,Nitrous Oxide,TON
+37079,0.1395497,PM10 Primary (Filt + Cond),TON
+37079,1.1416088,Hexane,LB
+37079,2.483262,Xylenes (Mixed Isomers),LB
+37079,0.0007194268,Benzo[k]Fluoranthene,LB
+37087,1.6806306,"2,2,4-Trimethylpentane",LB
+37087,0.005328764,Fluorene,LB
+37087,0.13711264,Naphthalene,LB
+37087,0.004995462,Pyrene,LB
+37087,1.913412e-07,Chromium (VI),LB
+37085,1.0063522e-05,Chromium (VI),LB
+37085,0.13537818,Acenaphthylene,LB
+37085,0.002277942,Arsenic,LB
+37085,851.2594,Carbon Dioxide,TON
+37085,0.1291488,PM2.5 Primary (Filt + Cond),TON
+37085,0.01572169,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.0011967472,"Benzo[g,h,i,]Perylene",LB
+37075,0.001765942,Fluoranthene,LB
+37075,1.0327872e-05,"Dibenzo[a,h]Anthracene",LB
+37075,0.0003404788,Benz[a]Anthracene,LB
+37075,6.28706e-05,Nickel,LB
+37075,0.4144002,Acetaldehyde,LB
+37075,0.06284458,Naphthalene,LB
+37075,0.5455158,Carbon Monoxide,TON
+37075,0.8421232,Ethyl Benzene,LB
+37075,0.1688204,"1,3-Butadiene",LB
+37071,0.0003491236,Anthracene,LB
+37071,5.600382e-08,Chromium (VI),LB
+37071,0.0008508447,Sulfur Dioxide,TON
+37067,14.884476,Styrene,LB
+37067,83.07736,Acrolein,LB
+37067,73.14154,Xylenes (Mixed Isomers),LB
+37067,13.117206,Phenanthrene,LB
+37067,7.55874,Fluorene,LB
+37067,0.03206198,Nitrous Oxide,TON
+37065,12400.916,Toluene,LB
+37065,331.2126,Benzene,LB
+37053,3.167846,Ethyl Benzene,LB
+37053,0.0217069,Acenaphthylene,LB
+37053,0.0013218484,Chrysene,LB
+37053,2.413092e-06,Mercury,LB
+37053,0.004766332,Acenaphthene,LB
+37053,0.008177705,Methane,TON
+37051,4.942566,Toluene,LB
+37051,1.6090574,Hexane,LB
+37051,0.3092608,Acenaphthylene,LB
+37051,0.08786972,Chrysene,LB
+37051,0.14899394,Benz[a]Anthracene,LB
+37051,0.04449556,Manganese,LB
+37051,2.247902e-05,Mercury,LB
+37051,0.7513314,Phenanthrene,LB
+37051,0.3069561,PM10-Primary from certain diesel engines,TON
+37051,81.69696,Ethyl Benzene,LB
+37051,0.03710292,"Benzo[g,h,i,]Perylene",LB
+37051,13.199768,Acenaphthylene,LB
+37051,21.8671,Phenanthrene,LB
+37051,136.8612,Carbon Monoxide,TON
+37051,57.13538,Nitrogen Oxides,TON
+37049,0.3369878,Styrene,LB
+37049,0.01324128,Anthracene,LB
+37049,0.006472478,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.004653828,Benzo[b]Fluoranthene,LB
+37049,0.07040502,Acenaphthylene,LB
+37049,0.00946351,Ammonia,TON
+37041,8.577382e-06,Sulfate Portion of PM2.5-PRI,TON
+37041,1.3869188,Hexane,LB
+37041,0.00200044,Fluoranthene,LB
+37041,0.0005496462,Benzo[a]Pyrene,LB
+37041,5.830921e-05,Ammonia,TON
+37041,0.0002564825,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.01949257,Ethyl Benzene,LB
+37033,2.91133e-05,Anthracene,LB
+37033,0.0007329276,Propionaldehyde,LB
+37033,6.886122e-05,Fluorene,LB
+37033,0.01373109,Carbon Monoxide,TON
+37033,6.299939e-06,Sulfur Dioxide,TON
+37033,4.279874e-07,Sulfate Portion of PM2.5-PRI,TON
+37111,6.456762,Xylenes (Mixed Isomers),LB
+37091,0.05399081,Volatile Organic Compounds,TON
+37083,0.1520858,Volatile Organic Compounds,TON
+37169,1.6616404,Toluene,LB
+37169,7.07779e-06,Chromium (VI),LB
+37169,0.0006254736,Benzo[k]Fluoranthene,LB
+37169,21.75396,Formaldehyde,LB
+37169,0.006118162,Manganese,LB
+37169,0.14082562,Fluorene,LB
+37169,0.0007376902,Nitrous Oxide,TON
+37169,0.1163846,Volatile Organic Compounds,TON
+37165,63.15554,Toluene,LB
+37165,18.717796,"2,2,4-Trimethylpentane",LB
+37165,0.1989625,Manganese,LB
+37165,0.0002142698,Mercury,LB
+37165,1.532506,PM2.5 Primary (Filt + Cond),TON
+37163,0.4368026,Hexane,LB
+37163,1.109265,Xylenes (Mixed Isomers),LB
+37163,1.5050046e-07,Chromium (VI),LB
+37163,0.3642156,"2,2,4-Trimethylpentane",LB
+37163,0.5459654,Benzene,LB
+37163,0.0003540355,Methane,TON
+37163,9.817001,Carbon Dioxide,TON
+37163,0.008908856,Volatile Organic Compounds,TON
+37157,50739.82,Xylenes (Mixed Isomers),LB
+37157,5.95851,Benzo[k]Fluoranthene,LB
+37157,6.007288,Chrysene,LB
+37157,16809.182,"2,2,4-Trimethylpentane",LB
+37157,0.1176495,Mercury,LB
+37157,4.162261,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.03658306,Manganese,LB
+37155,0.03092825,Methane,TON
+37155,3.817534,Nitrogen Oxides,TON
+37155,1.7093458,Acrolein,LB
+37153,4.997802e-05,Pyrene,LB
+37153,0.02402762,"2,2,4-Trimethylpentane",LB
+37153,2.651384e-08,Mercury,LB
+37153,3.305986e-07,Nickel,LB
+37153,1.4168622e-05,Nickel,LB
+37153,2.172512e-05,Arsenic,LB
+37153,0.0017888712,Phenanthrene,LB
+37153,0.9580974,Toluene,LB
+37153,8.354563e-06,Sulfate Portion of PM2.5-PRI,TON
+37175,92.37282,Acrolein,LB
+37175,6.483376,Pyrene,LB
+37175,0.03464882,Benzo[b]Fluoranthene,LB
+37175,0.3178028,Methane,TON
+37173,0.007535104,Acenaphthylene,LB
+37173,0.0005351548,Benz[a]Anthracene,LB
+37173,8.169726e-05,Manganese,LB
+37173,0.001653003,Acenaphthene,LB
+37173,0.08585076,Naphthalene,LB
+37173,3.778235,Carbon Dioxide,TON
+37173,0.000786466,PM2.5 Primary (Filt + Cond),TON
+37155,6.877814,Propionaldehyde,LB
+37155,0.09837462,Chrysene,LB
+37155,0.0018084694,"Dibenzo[a,h]Anthracene",LB
+37155,0.005730326,Arsenic,LB
+37155,0.4283084,Acenaphthene,LB
+37155,13.960192,Naphthalene,LB
+37155,0.02610762,Ammonia,TON
+37149,0.0210523,Benzo[a]Pyrene,LB
+37149,0.011057482,Manganese,LB
+37149,1.0092562e-05,Mercury,LB
+37149,6.495684,Nitrogen Oxides,TON
+37149,0.160468,PM2.5 Primary (Filt + Cond),TON
+37149,0.002516994,Sulfate Portion of PM2.5-PRI,TON
+37149,4.213423e-05,Nitrate portion of PM2.5-PRI,TON
+37149,0.01434288,PM2.5 Primary (Filt + Cond),TON
+37149,0.2049286,Volatile Organic Compounds,TON
+37149,0.00808834,Benzo[k]Fluoranthene,LB
+37157,0.0002899281,Nitrous Oxide,TON
+37157,0.04893285,PM10 Primary (Filt + Cond),TON
+37157,0.001065307,Sulfur Dioxide,TON
+37157,0.07994141,Volatile Organic Compounds,TON
+37157,0.05069826,Anthracene,LB
+37157,0.1475299,Pyrene,LB
+37157,3.071508e-06,Chromium (VI),LB
+37157,0.0008442094,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,1.2970558,Benzene,LB
+37155,9134.738,"2,2,4-Trimethylpentane",LB
+37153,6.9158,Ethyl Benzene,LB
+37153,0.01904137,"Benzo[g,h,i,]Perylene",LB
+37153,0.003831324,Chrysene,LB
+37153,2.167938e-05,Mercury,LB
+37153,3.056976,Acetaldehyde,LB
+37153,0.001149527,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.4111053,Nitrogen Oxides,TON
+37153,0.0002283867,Sulfate Portion of PM2.5-PRI,TON
+37147,9.830764,Propionaldehyde,LB
+37147,0.17182252,Benzo[b]Fluoranthene,LB
+37147,2.776344,Acenaphthylene,LB
+37147,0.2314978,Benzo[a]Pyrene,LB
+37147,0.17318186,Benz[a]Anthracene,LB
+37147,0.02890756,Nickel,LB
+37147,3715.808,Carbon Dioxide,TON
+37147,0.0006796785,Nitrate portion of PM2.5-PRI,TON
+37147,0.1287918,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.2366148,PM2.5 Primary (Filt + Cond),TON
+37147,0.0763988,Sulfur Dioxide,TON
+37147,0.007283375,Sulfate Portion of PM2.5-PRI,TON
+37129,0.004732984,Nickel,LB
+37129,0.1568113,PM25-Primary from certain diesel engines,TON
+37129,0.1720762,PM2.5 Primary (Filt + Cond),TON
+37129,0.00881537,Benzo[b]Fluoranthene,LB
+37129,0.05543432,Chrysene,LB
+37141,10.122318,"1,3-Butadiene",LB
+37141,0.12917326,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.09032314,Benz[a]Anthracene,LB
+37141,0.0242001,Arsenic,LB
+37141,0.1434421,Methane,TON
+37137,0.04048606,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.2956914,Anthracene,LB
+37137,0.00473227,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,93.324,Formaldehyde,LB
+37133,33.06762,"1,3-Butadiene",LB
+37133,99.40168,Acrolein,LB
+37133,9.726618,Pyrene,LB
+37133,0.05232798,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,1.3310134,Chrysene,LB
+37133,1469.6982,Formaldehyde,LB
+37133,140.7854,Nitrogen Oxides,TON
+37133,9.034869,PM10 Primary (Filt + Cond),TON
+37125,1.0966152e-05,Benz[a]Anthracene,LB
+37125,0.00010058862,Fluorene,LB
+37125,1.09917e-05,PM2.5 Primary (Filt + Cond),TON
+37125,2742.796,Hexane,LB
+37115,0.010140032,Chrysene,LB
+37115,0.2776615,Carbon Monoxide,TON
+37115,86.131,Acetaldehyde,LB
+37115,2531.229,Carbon Dioxide,TON
+37115,4.958136,Propionaldehyde,LB
+37115,0.3616918,Fluoranthene,LB
+37115,0.06715958,Benzo[k]Fluoranthene,LB
+37115,1.1307638,Acenaphthylene,LB
+37107,0.0009462548,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.01244991,Benzo[a]Pyrene,LB
+37107,0.07199573,PM25-Primary from certain diesel engines,TON
+37107,1.549365,Nitrogen Oxides,TON
+37107,0.01017081,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.01035736,Acrolein,LB
+37103,2.313922,Toluene,LB
+37103,4.505528e-07,Mercury,LB
+37103,0.0006394514,Acenaphthene,LB
+37103,0.0007078081,Methane,TON
+37099,1.427185,PM25-Primary from certain diesel engines,TON
+37099,0.02879845,Nitrous Oxide,TON
+37099,0.003028332,Nitrate portion of PM2.5-PRI,TON
+37099,0.09049972,Sulfur Dioxide,TON
+37099,50.50826,Ethyl Benzene,LB
+37099,121.21052,Acrolein,LB
+37099,0.02197766,"Benzo[g,h,i,]Perylene",LB
+37099,0.04693646,Benzo[b]Fluoranthene,LB
+37099,144.31824,Benzene,LB
+37099,0.07345358,Arsenic,LB
+37097,13.425226,Anthracene,LB
+37097,0.02893686,Chromium (VI),LB
+37097,10.20512,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,70.69174,Acenaphthylene,LB
+37097,0.290076,Mercury,LB
+37097,31.36188,Fluorene,LB
+37093,0.3203722,Phenanthrene,LB
+37093,0.1860688,Fluorene,LB
+37093,312.1876,Carbon Dioxide,TON
+37093,0.000522704,Nitrous Oxide,TON
+37093,3.325885e-05,Nitrate portion of PM2.5-PRI,TON
+37093,0.00768805,Chrysene,LB
+37085,20.97204,"1,3-Butadiene",LB
+37085,59.4278,Toluene,LB
+37085,18.933964,Hexane,LB
+37085,754.746,Formaldehyde,LB
+37085,1.59896,Benz[a]Anthracene,LB
+37085,0.0520299,Arsenic,LB
+37085,1.832084,PM10-Primary from certain diesel engines,TON
+37085,0.02958538,Nitrous Oxide,TON
+37079,0.008535582,"Benzo[g,h,i,]Perylene",LB
+37079,1.4401476,Fluoranthene,LB
+37079,0.2028629,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.0258347,Styrene,LB
+37073,0.7894102,Acetaldehyde,LB
+37073,0.012840228,Fluorene,LB
+37073,0.0007115566,Methane,TON
+37073,0.004671444,PM10-Primary from certain diesel engines,TON
+37073,0.0001318506,Sulfate Portion of PM2.5-PRI,TON
+37087,0.01372977,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.0007715759,Sulfate Portion of PM2.5-PRI,TON
+37087,0.012686212,Benz[a]Anthracene,LB
+37087,0.0417856,Fluorene,LB
+37087,13.76121,Ethyl Benzene,LB
+37087,0.4915796,Styrene,LB
+37085,0.13738336,Benz[a]Anthracene,LB
+37085,0.03990216,Manganese,LB
+37071,1.6250952,Propionaldehyde,LB
+37071,0.03494632,Ammonia,TON
+37059,0.0007159604,Acrolein,LB
+37059,1.9027096e-05,Benzo[k]Fluoranthene,LB
+37059,7.244732e-07,"Dibenzo[a,h]Anthracene",LB
+37059,3.171946e-05,PM2.5 Primary (Filt + Cond),TON
+37007,0.003506054,Acenaphthene,LB
+37007,0.003939751,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.008898323,PM2.5 Primary (Filt + Cond),TON
+37007,0.016165854,Acenaphthylene,LB
+37001,1.5775784,Ethyl Benzene,LB
+37001,0.3826052,"1,3-Butadiene",LB
+37001,7.069246,Toluene,LB
+37001,3.225038,Hexane,LB
+37001,0.002444444,Anthracene,LB
+37001,0.006330396,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,3.314156,"2,2,4-Trimethylpentane",LB
+37001,0.002836028,Benz[a]Anthracene,LB
+37001,0.006087094,Arsenic,LB
+37001,0.13527064,Naphthalene,LB
+37001,0.02778572,Ammonia,TON
+37113,0.0004774854,Pyrene,LB
+37113,0.000255011,Benzo[k]Fluoranthene,LB
+37113,0.4577468,Formaldehyde,LB
+37113,0.2593858,"2,2,4-Trimethylpentane",LB
+37113,0.02634036,Acrolein,LB
+37113,0.2767687,Carbon Monoxide,TON
+37113,1.709718e-06,Nitrate portion of PM2.5-PRI,TON
+37113,0.0009828653,Sulfur Dioxide,TON
+37097,0.03072326,Styrene,LB
+37097,0.0017329872,Benzo[b]Fluoranthene,LB
+37097,0.0008612308,Elemental Carbon portion of PM2.5-PRI,TON
+37021,87.1537,Propionaldehyde,LB
+37021,12.24239,Fluoranthene,LB
+37021,1912.6196,Formaldehyde,LB
+37021,196.91482,Naphthalene,LB
+37021,0.07610628,Nitrous Oxide,TON
+37021,0.8850284,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,32.51462,Toluene,LB
+37017,9.375688,Hexane,LB
+37017,0.0001862058,Chromium (VI),LB
+37017,0.1586373,Sulfur Dioxide,TON
+37021,0.08901054,Ethyl Benzene,LB
+37021,0.4798134,Toluene,LB
+37021,0.00014810406,Anthracene,LB
+37021,0.002952956,Propionaldehyde,LB
+37021,0.17917736,Benzene,LB
+37021,0.01083903,Nitrogen Oxides,TON
+37021,9.519745e-05,Organic Carbon portion of PM2.5-PRI,TON
+37009,3.030724,Styrene,LB
+37009,0.010276984,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.135366,Benzo[a]Pyrene,LB
+37009,21.98042,Benzene,LB
+37009,2.620598,Phenanthrene,LB
+37009,1.4918328,Fluorene,LB
+37005,0.02600944,Pyrene,LB
+37005,0.00013720884,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.0005386578,Benzo[b]Fluoranthene,LB
+37005,2.96606,Formaldehyde,LB
+37005,0.001732552,Methane,TON
+37005,61.66198,Carbon Dioxide,TON
+37005,0.001323065,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,1.980586,Ethyl Benzene,LB
+37005,2.506258,Benzene,LB
+37003,277.8192,Propionaldehyde,LB
+37003,21.99228,Pyrene,LB
+37003,3.291764,Benzo[a]Pyrene,LB
+37003,12844.55,Benzene,LB
+37003,1.47562,Manganese,LB
+37003,1.72204,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.2223678,Nickel,LB
+37001,1.016555,Ammonia,TON
+37001,11.56204,PM10 Primary (Filt + Cond),TON
+37001,0.6267809,Sulfate Portion of PM2.5-PRI,TON
+37197,4.346312,Ethyl Benzene,LB
+37197,0.004814628,Benzo[k]Fluoranthene,LB
+37197,0.008508082,Benzo[a]Pyrene,LB
+37197,0.001443876,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.01772345,PM10 Primary (Filt + Cond),TON
+37197,0.128076,Volatile Organic Compounds,TON
+37191,0.5693704,Propionaldehyde,LB
+37191,0.1946812,Nitrogen Oxides,TON
+37191,0.003810405,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.009690164,PM2.5 Primary (Filt + Cond),TON
+37181,0.0014745792,"Benzo[g,h,i,]Perylene",LB
+37181,30.263,Formaldehyde,LB
+37181,12.960632,Acetaldehyde,LB
+37181,0.00316378,Sulfur Dioxide,TON
+37181,0.1694561,Volatile Organic Compounds,TON
+37197,0.0675961,Anthracene,LB
+37197,1.0689678,Propionaldehyde,LB
+37197,0.003562134,Benzo[b]Fluoranthene,LB
+37197,0.04112794,Benz[a]Anthracene,LB
+37197,1.926646,Benzene,LB
+37197,0.007341524,Manganese,LB
+37197,0.004352064,Nickel,LB
+37185,0.2586176,Pyrene,LB
+37185,0.269432,Acenaphthylene,LB
+37185,0.03387962,Benz[a]Anthracene,LB
+37179,0.7130764,Toluene,LB
+37179,101.73318,Formaldehyde,LB
+37179,15.673826,Acetaldehyde,LB
+37177,1.6462178e-06,Chromium (VI),LB
+37177,0.4531706,Benzene,LB
+37177,1.6556334e-06,Mercury,LB
+37177,0.03472162,Fluorene,LB
+37177,0.01362495,PM25-Primary from certain diesel engines,TON
+37177,0.0001375403,Nitrous Oxide,TON
+37177,6.969283e-05,Nitrate portion of PM2.5-PRI,TON
+37177,0.02750453,Volatile Organic Compounds,TON
+37177,0.3790352,Acrolein,LB
+37177,0.350499,Toluene,LB
+37173,6.972528e-05,"Benzo[g,h,i,]Perylene",LB
+37173,2.619636e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37173,1.668422e-05,Benzo[k]Fluoranthene,LB
+37173,0.012850782,Formaldehyde,LB
+37173,5.250342e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37173,2.593884e-05,PM2.5 Primary (Filt + Cond),TON
+37173,6.942556e-07,Sulfate Portion of PM2.5-PRI,TON
+37027,4.043074,Organic Carbon portion of PM2.5-PRI,TON
+37027,28.01227,PM10 Primary (Filt + Cond),TON
+37027,0.2379286,Sulfate Portion of PM2.5-PRI,TON
+37027,3394.68,"1,3-Butadiene",LB
+37027,0.16318032,"Dibenzo[a,h]Anthracene",LB
+37027,131.684,Phenanthrene,LB
+37027,12.05986,Methane,TON
+37027,1.883777,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.0902637,Methane,TON
+37055,9.26207,Carbon Monoxide,TON
+37055,0.2178981,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.09733578,Benzo[b]Fluoranthene,LB
+37055,8.439332,"2,2,4-Trimethylpentane",LB
+37055,6.106084e-05,Mercury,LB
+37055,1.1960692,Acenaphthene,LB
+37039,1643.5106,Ethyl Benzene,LB
+37039,51.36954,Acrolein,LB
+37039,2402.692,Hexane,LB
+37039,2.096,Anthracene,LB
+37039,0.7986998,Benzo[k]Fluoranthene,LB
+37039,2170.106,"2,2,4-Trimethylpentane",LB
+37039,0.531466,Arsenic,LB
+37039,1.189591,Methane,TON
+37175,2.687212,Styrene,LB
+37175,0.00869509,"Benzo[g,h,i,]Perylene",LB
+37175,18.945994,Benzene,LB
+37175,0.06576058,Manganese,LB
+37175,0.009231076,Arsenic,LB
+37175,1971.476,Carbon Dioxide,TON
+37175,0.4885006,PM10-Primary from certain diesel engines,TON
+37175,0.007528887,Nitrous Oxide,TON
+37169,67.124,Xylenes (Mixed Isomers),LB
+37169,1.7179194,Acenaphthylene,LB
+37169,0.2935246,Chrysene,LB
+37169,0.01533487,Nitrous Oxide,TON
+37169,1.396026,PM2.5 Primary (Filt + Cond),TON
+37169,0.1279217,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,3.046372,Xylenes (Mixed Isomers),LB
+37161,0.0012126608,Benzo[k]Fluoranthene,LB
+37161,1.319655e-05,Mercury,LB
+37161,0.01363464,Ammonia,TON
+37161,0.004655177,Sulfate Portion of PM2.5-PRI,TON
+37159,84.5387,Ethyl Benzene,LB
+37159,0.8641856,Benzo[a]Pyrene,LB
+37159,1024.6192,Acetaldehyde,LB
+37159,10.669768,Fluorene,LB
+37159,7.03646,PM10-Primary from certain diesel engines,TON
+37155,145.03688,Ethyl Benzene,LB
+37155,601.556,Xylenes (Mixed Isomers),LB
+37155,0.0671574,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,0.0012960694,Mercury,LB
+37155,103488.5,Carbon Dioxide,TON
+37155,0.8752479,Sulfur Dioxide,TON
+37149,0.05587062,Methane,TON
+37149,0.01846046,PM10-Primary from certain diesel engines,TON
+37149,0.01698339,PM25-Primary from certain diesel engines,TON
+37149,0.004452496,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,2.517514,Ethyl Benzene,LB
+37149,2.165572,"1,3-Butadiene",LB
+37149,0.348767,Pyrene,LB
+37149,4.70933e-05,Chromium (VI),LB
+37149,0.005291518,Benzo[a]Pyrene,LB
+37163,2.387562,Styrene,LB
+37163,0.03247676,Chrysene,LB
+37163,1514.34,Carbon Dioxide,TON
+37163,0.1419978,PM10 Primary (Filt + Cond),TON
+37157,0.112319,PM10-Primary from certain diesel engines,TON
+37157,2.475887,Nitrogen Oxides,TON
+37157,0.02428191,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.7977372,Ethyl Benzene,LB
+37157,1.8224384,Acrolein,LB
+37157,0.0009774252,"Benzo[g,h,i,]Perylene",LB
+37157,0.16590106,Fluoranthene,LB
+37155,2.641188,Nickel,LB
+37155,604.976,Naphthalene,LB
+37155,3676.101,Carbon Monoxide,TON
+37155,296553.3,Carbon Dioxide,TON
+37155,27.08062,Ammonia,TON
+37155,0.19067226,"Dibenzo[a,h]Anthracene",LB
+37137,3.625846e-05,Pyrene,LB
+37137,0.01775476,"2,2,4-Trimethylpentane",LB
+37137,0.02237372,Benzene,LB
+37137,2.135838e-07,Nickel,LB
+37137,0.007607262,Acetaldehyde,LB
+37137,4.433494e-05,Fluorene,LB
+37137,2.018768e-08,Nitrate portion of PM2.5-PRI,TON
+37121,6.119376,Styrene,LB
+37121,38.48246,"1,3-Butadiene",LB
+37121,0.000121319,Chromium (VI),LB
+37121,78.22888,Formaldehyde,LB
+37121,170.43976,"2,2,4-Trimethylpentane",LB
+37121,0.0012161674,Mercury,LB
+37121,0.01516522,Nickel,LB
+37121,45.994,Carbon Monoxide,TON
+37105,12.361632,Ethyl Benzene,LB
+37105,9.620458,Hexane,LB
+37105,35.54344,Xylenes (Mixed Isomers),LB
+37105,0.0001671282,Chromium (VI),LB
+37105,0.008071114,Benzo[k]Fluoranthene,LB
+37105,2.11962,Fluorene,LB
+37105,0.336487,Methane,TON
+37105,11.27615,Carbon Monoxide,TON
+37105,0.2308857,Ammonia,TON
+37105,0.1359487,Sulfur Dioxide,TON
+37105,1.904165,Volatile Organic Compounds,TON
+37101,0.06070994,"1,3-Butadiene",LB
+37101,0.00714962,Acrolein,LB
+37101,1.049352,Xylenes (Mixed Isomers),LB
+37101,0.0002044076,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.0001435311,Benzo[b]Fluoranthene,LB
+37101,0.14717756,Formaldehyde,LB
+37101,0.4107494,Benzene,LB
+37101,0.0002058094,PM2.5 Primary (Filt + Cond),TON
+37085,0.1452304,Mercury,LB
+37085,1.810838,Nickel,LB
+37085,20.47504,Acenaphthene,LB
+37085,41.4724,Fluorene,LB
+37085,5.933154,Sulfur Dioxide,TON
+37085,413.2512,Propionaldehyde,LB
+37085,29.77444,Fluoranthene,LB
+37085,93.21622,Acenaphthylene,LB
+37085,5.411866,Chrysene,LB
+37079,8569.33,Toluene,LB
+37079,3.378476,Pyrene,LB
+37079,0.002624866,Chromium (VI),LB
+37079,0.6867024,Benzo[k]Fluoranthene,LB
+37079,592.4888,Formaldehyde,LB
+37079,0.02325864,"Dibenzo[a,h]Anthracene",LB
+37079,2103.016,Benzene,LB
+37079,0.543596,Manganese,LB
+37079,0.234323,Elemental Carbon portion of PM2.5-PRI,TON
+37079,3.333952,Ammonia,TON
+37079,57.6497,Nitrogen Oxides,TON
+37077,0.1707228,Styrene,LB
+37077,0.6284454,Propionaldehyde,LB
+37077,0.7301668,Xylenes (Mixed Isomers),LB
+37077,2.424204e-06,Mercury,LB
+37077,0.03908394,Acenaphthene,LB
+37077,1.279368,Naphthalene,LB
+37067,22.35386,Pyrene,LB
+37067,0.09275808,"Benzo[g,h,i,]Perylene",LB
+37067,0.1417538,Nitrous Oxide,TON
+37067,2.325512,Ammonia,TON
+37067,20.00325,PM10 Primary (Filt + Cond),TON
+37067,1.325168,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.6173126,Benzene,LB
+37057,7.198603e-06,Nitrate portion of PM2.5-PRI,TON
+37051,0.14462344,Acenaphthylene,LB
+37051,0.03532588,Chrysene,LB
+37051,2.486932,Benzene,LB
+37051,11.495056,Acetaldehyde,LB
+37051,0.01070411,Methane,TON
+37051,0.02285259,Elemental Carbon portion of PM2.5-PRI,TON
+37051,1.108265,Nitrogen Oxides,TON
+37051,2.084112,Acrolein,LB
+37049,0.03038553,Methane,TON
+37049,1.4927858,Ethyl Benzene,LB
+37049,0.4407524,Pyrene,LB
+37049,0.220301,Acenaphthylene,LB
+37049,0.03427956,Benzo[a]Pyrene,LB
+37049,4.089174,Benzene,LB
+37049,0.016860788,Manganese,LB
+37049,0.1310901,Acenaphthene,LB
+37047,2.003512e-05,Chromium (VI),LB
+37047,0.3117642,Acenaphthylene,LB
+37047,0.06873567,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.06966065,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.0006133932,Benzo[a]Pyrene,LB
+37043,1.523938,Benzene,LB
+37043,7.16875,Acetaldehyde,LB
+37043,1.256331,Carbon Monoxide,TON
+37043,0.0001477896,Nitrous Oxide,TON
+37043,1.617569e-05,Nitrate portion of PM2.5-PRI,TON
+37043,0.1299397,Nitrogen Oxides,TON
+37143,0.001832138,Anthracene,LB
+37143,0.003468978,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.0018639668,Benzo[b]Fluoranthene,LB
+37143,0.002654552,Arsenic,LB
+37143,2.471556,Carbon Monoxide,TON
+37143,0.01317547,PM10 Primary (Filt + Cond),TON
+37143,0.001404918,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.003098497,Nitrous Oxide,TON
+37107,0.0001503653,Sulfate Portion of PM2.5-PRI,TON
+37107,0.007419738,"Benzo[g,h,i,]Perylene",LB
+37107,0.002787642,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.0012488836,Benz[a]Anthracene,LB
+37095,2.278992,Toluene,LB
+37095,0.8551554,"2,2,4-Trimethylpentane",LB
+37095,0.02183745,Volatile Organic Compounds,TON
+37163,10.97355,Ammonia,TON
+37163,9.935431,PM10 Primary (Filt + Cond),TON
+37163,2.5062,Sulfur Dioxide,TON
+37163,0.008563428,Chromium (VI),LB
+37163,0.07708028,"Dibenzo[a,h]Anthracene",LB
+37151,312.6102,Styrene,LB
+37151,2077.936,"1,3-Butadiene",LB
+37151,60851.4,Toluene,LB
+37151,0.015544628,Chromium (VI),LB
+37151,19.920006,Fluoranthene,LB
+37151,61.1281,Acenaphthylene,LB
+37151,6.577307,Methane,TON
+37151,6.682414,Nitrous Oxide,TON
+37147,0.005841014,Nitrous Oxide,TON
+37147,5.462502,Ethyl Benzene,LB
+37147,32.31874,Toluene,LB
+37147,8.324266,Hexane,LB
+37143,0.01707478,Nickel,LB
+37143,0.8016598,Fluorene,LB
+37143,0.2060438,Propionaldehyde,LB
+37143,4.200288,Formaldehyde,LB
+37143,0.000729576,Nickel,LB
+37143,0.01762345,PM25-Primary from certain diesel engines,TON
+37143,0.0009167585,Sulfate Portion of PM2.5-PRI,TON
+37143,0.02278481,Volatile Organic Compounds,TON
+37143,1.073694,Hexane,LB
+37143,0.001867985,Pyrene,LB
+37143,2.796178,Xylenes (Mixed Isomers),LB
+37143,0.0003171614,Benzo[b]Fluoranthene,LB
+37143,0.0003115562,Chrysene,LB
+37143,9.414104e-06,Arsenic,LB
+37143,0.0006310178,PM10 Primary (Filt + Cond),TON
+37143,0.02249948,Volatile Organic Compounds,TON
+37137,0.8660119,Nitrogen Oxides,TON
+37137,0.2225868,Pyrene,LB
+37137,0.0006349082,"Dibenzo[a,h]Anthracene",LB
+37137,0.6101638,"2,2,4-Trimethylpentane",LB
+37137,2.21151,Benzene,LB
+37137,0.002783082,Nickel,LB
+37137,0.1603182,Fluorene,LB
+37137,0.05355723,PM25-Primary from certain diesel engines,TON
+37137,0.004686918,Styrene,LB
+37137,0.0003377492,Pyrene,LB
+37137,5.04061e-05,Benzo[k]Fluoranthene,LB
+37137,5.215356e-05,Benz[a]Anthracene,LB
+37137,0.0004136298,Fluorene,LB
+37137,2.268955e-07,Nitrate portion of PM2.5-PRI,TON
+37137,6.945974e-05,Sulfur Dioxide,TON
+37129,0.002798584,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.004331038,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.0002562011,Sulfate Portion of PM2.5-PRI,TON
+37129,25.34504,Xylenes (Mixed Isomers),LB
+37129,6.601682e-05,Mercury,LB
+37129,0.0008231638,Nickel,LB
+37129,3.452766,Acetaldehyde,LB
+37129,0.012050844,Acenaphthene,LB
+37117,0.9898278,Styrene,LB
+37117,3.573642,Propionaldehyde,LB
+37117,3.379462,Xylenes (Mixed Isomers),LB
+37117,1.4715984,"2,2,4-Trimethylpentane",LB
+37117,9.227614e-06,Mercury,LB
+37117,0.1431618,PM25-Primary from certain diesel engines,TON
+37117,0.002601035,Sulfate Portion of PM2.5-PRI,TON
+37121,0.7337396,"1,3-Butadiene",LB
+37121,4.52219e-05,"Dibenzo[a,h]Anthracene",LB
+37121,2.915326,"2,2,4-Trimethylpentane",LB
+37121,0.0015277488,Benz[a]Anthracene,LB
+37121,0.002839229,PM2.5 Primary (Filt + Cond),TON
+37113,0.012455012,Anthracene,LB
+37113,0.00015672882,"Benzo[g,h,i,]Perylene",LB
+37113,0.019299558,Acenaphthylene,LB
+37113,0.0007810406,Manganese,LB
+37193,0.018006872,Benzo[k]Fluoranthene,LB
+37193,16.345512,"2,2,4-Trimethylpentane",LB
+37193,21.03674,Ethyl Benzene,LB
+37193,6.09856,Pyrene,LB
+37193,6162.202,Carbon Dioxide,TON
+37193,2.164403,PM10 Primary (Filt + Cond),TON
+37193,1.558241,PM2.5 Primary (Filt + Cond),TON
+37197,0.00017652596,Benzo[b]Fluoranthene,LB
+37197,0.000541224,Pyrene,LB
+37189,0.5085476,Naphthalene,LB
+37189,0.002921668,Ammonia,TON
+37189,0.001810542,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.003998594,PM2.5 Primary (Filt + Cond),TON
+37189,0.001250404,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,13.24613,Acetaldehyde,LB
+37187,0.03004843,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.1767378,Volatile Organic Compounds,TON
+37187,2.04491,Toluene,LB
+37187,0.0016255432,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.02897314,Acrolein,LB
+37181,0.000262118,Anthracene,LB
+37181,0.0016952602,"Benzo[g,h,i,]Perylene",LB
+37181,0.0003333438,Benzo[b]Fluoranthene,LB
+37181,0.0002879568,Benz[a]Anthracene,LB
+37181,0.0015999946,Phenanthrene,LB
+37181,0.002160936,Ammonia,TON
+37181,0.0003298882,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,1.1289548e-06,Mercury,LB
+37105,0.0004840474,Phenanthrene,LB
+37105,0.000158065,Sulfur Dioxide,TON
+37105,1.1261566e-07,Chromium (VI),LB
+37105,0.00013800812,Fluoranthene,LB
+37093,2857.154,Ethyl Benzene,LB
+37093,94.25192,Styrene,LB
+37093,1.1535146,Benz[a]Anthracene,LB
+37093,0.5483442,Nickel,LB
+37093,4.073126,Acenaphthene,LB
+37093,0.005120506,Nitrate portion of PM2.5-PRI,TON
+37093,6.294982,PM10 Primary (Filt + Cond),TON
+37083,0.04356988,Styrene,LB
+37083,0.001046243,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.000681326,Benzo[k]Fluoranthene,LB
+37083,0.008175402,Acenaphthylene,LB
+37083,0.5766626,Formaldehyde,LB
+37083,2.939924e-06,Nitrate portion of PM2.5-PRI,TON
+37083,0.04552217,Nitrogen Oxides,TON
+37077,11471.894,"2,2,4-Trimethylpentane",LB
+37077,1.7871166,Arsenic,LB
+37077,5314.928,Acetaldehyde,LB
+37077,15.98284,Acenaphthene,LB
+37077,32.37492,Fluorene,LB
+37077,3907.641,Carbon Monoxide,TON
+37077,180428.3,Carbon Dioxide,TON
+37077,26.6738,Pyrene,LB
+37077,34971.94,Xylenes (Mixed Isomers),LB
+37057,70771.12,Toluene,LB
+37057,307.3364,Propionaldehyde,LB
+37057,9.485572,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,72.7802,Acenaphthylene,LB
+37057,7.682196,Nitrous Oxide,TON
+37051,9.857636,Ethyl Benzene,LB
+37051,0.3993744,Styrene,LB
+37051,0.014210866,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.02701998,Fluoranthene,LB
+37051,0.008590764,Benzo[k]Fluoranthene,LB
+37051,0.0003260756,"Dibenzo[a,h]Anthracene",LB
+37051,11.184028,"2,2,4-Trimethylpentane",LB
+37051,4.946818,Acetaldehyde,LB
+37051,0.0200989,PM2.5 Primary (Filt + Cond),TON
+37051,0.2919711,Volatile Organic Compounds,TON
+37177,0.10870156,Pyrene,LB
+37177,13.506232,Formaldehyde,LB
+37177,0.0004263844,Arsenic,LB
+37177,6.047398,Acetaldehyde,LB
+37177,0.04900894,Acenaphthene,LB
+37177,0.0005490034,Sulfate Portion of PM2.5-PRI,TON
+37173,0.00744214,Anthracene,LB
+37173,0.1447792,Xylenes (Mixed Isomers),LB
+37173,0.0004366714,Benzo[b]Fluoranthene,LB
+37173,0.05355256,"2,2,4-Trimethylpentane",LB
+37173,2.538693e-05,Nitrate portion of PM2.5-PRI,TON
+37173,0.006879716,PM10 Primary (Filt + Cond),TON
+37173,0.0001552911,Sulfate Portion of PM2.5-PRI,TON
+37173,56.78918,Acrolein,LB
+37173,38.7779,Propionaldehyde,LB
+37173,0.2200592,Chrysene,LB
+37173,704.8952,Formaldehyde,LB
+37173,0.04948876,Benzo[a]Pyrene,LB
+37173,4.090468,Fluorene,LB
+37173,0.6301407,PM2.5 Primary (Filt + Cond),TON
+37167,3.596758,PM10 Primary (Filt + Cond),TON
+37167,13.539214,Hexane,LB
+37167,0.07886628,Benzo[b]Fluoranthene,LB
+37167,0.2640232,Benzo[a]Pyrene,LB
+37199,0.0003247632,Mercury,LB
+37199,0.004049396,Nickel,LB
+37199,9.758647e-05,Nitrate portion of PM2.5-PRI,TON
+37199,0.04677669,PM10 Primary (Filt + Cond),TON
+37199,0.0246844,Benzo[k]Fluoranthene,LB
+37197,3.766738,"1,3-Butadiene",LB
+37197,9.28392,Acrolein,LB
+37197,6.20492,Propionaldehyde,LB
+37197,0.013673568,Nickel,LB
+37197,0.1407716,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.0002085976,Anthracene,LB
+37193,0.0003166276,Acenaphthene,LB
+37193,0.7025735,Methane,TON
+37193,1.015442,Carbon Monoxide,TON
+37193,0.003011743,Ammonia,TON
+37185,0.0376529,Pyrene,LB
+37185,0.0007754518,Benzo[b]Fluoranthene,LB
+37185,0.005094512,Chrysene,LB
+37185,0.0006060046,Nickel,LB
+37185,0.04623636,Phenanthrene,LB
+37185,7.296391e-05,Nitrous Oxide,TON
+37185,0.02255033,Volatile Organic Compounds,TON
+37185,12.03423,Propionaldehyde,LB
+37185,237.1804,Formaldehyde,LB
+37185,0.016567832,Arsenic,LB
+37185,2.809292,Phenanthrene,LB
+37185,1.6075032,Fluorene,LB
+37185,5.27069,Carbon Monoxide,TON
+37185,0.6800074,PM10-Primary from certain diesel engines,TON
+37185,0.006812238,Nitrous Oxide,TON
+37185,3.65664e-05,Anthracene,LB
+37185,0.0008589292,Propionaldehyde,LB
+37185,3.537392e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,6.39618e-05,Fluoranthene,LB
+37185,0.0002298662,Phenanthrene,LB
+37185,0.3833763,Carbon Dioxide,TON
+37195,5.002845,Sulfur Dioxide,TON
+37195,47997.5,Toluene,LB
+37195,11035.558,Hexane,LB
+37195,292.143,Propionaldehyde,LB
+37195,6.164996,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.12345666,Mercury,LB
+37189,0.13159638,Anthracene,LB
+37189,0.00015136318,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,8.623812e-05,Benzo[k]Fluoranthene,LB
+37189,0.277436,Acenaphthylene,LB
+37189,0.02839046,Benz[a]Anthracene,LB
+37189,7.042656,Naphthalene,LB
+37189,0.008802392,PM25-Primary from certain diesel engines,TON
+37189,0.002259403,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.4808605,Nitrogen Oxides,TON
+37187,4.21334,Toluene,LB
+37187,0.0009578552,Nitrous Oxide,TON
+37187,0.0005754854,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.002090668,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.9917766,Formaldehyde,LB
+37187,0.000399905,Manganese,LB
+37183,0.8752344,Acrolein,LB
+37183,0.03507718,Anthracene,LB
+37181,3.15617,Ethyl Benzene,LB
+37181,0.6894232,Fluorene,LB
+37181,0.001273827,Nitrate portion of PM2.5-PRI,TON
+37181,0.2538858,PM2.5 Primary (Filt + Cond),TON
+37181,0.005243728,Sulfur Dioxide,TON
+37181,0.5693724,Fluorene,LB
+37181,0.2102958,PM10-Primary from certain diesel engines,TON
+37181,0.002354936,Benzo[k]Fluoranthene,LB
+37181,0.4668088,Benz[a]Anthracene,LB
+37181,0.1664,Methane,TON
+37181,0.5224683,PM25-Primary from certain diesel engines,TON
+37181,3.76588,Volatile Organic Compounds,TON
+37185,1.7840714,Ethyl Benzene,LB
+37185,1.8924514,"1,3-Butadiene",LB
+37185,3.055682,Propionaldehyde,LB
+37185,0.0008062628,Benzo[k]Fluoranthene,LB
+37185,0.001716108,Arsenic,LB
+37185,0.02802678,Organic Carbon portion of PM2.5-PRI,TON
+37195,4.488176,Hexane,LB
+37195,13.042354,Xylenes (Mixed Isomers),LB
+37195,0.004768948,Benzo[k]Fluoranthene,LB
+37195,0.2277616,Chrysene,LB
+37195,5.495954,"1,3-Butadiene",LB
+37195,12.765924,Toluene,LB
+37195,0.9998547,Volatile Organic Compounds,TON
+37187,0.13903436,Xylenes (Mixed Isomers),LB
+37187,6.10691e-07,Chromium (VI),LB
+37187,7.660494e-05,Benzo[b]Fluoranthene,LB
+37187,0.12868742,Formaldehyde,LB
+37187,3.34632e-06,"Dibenzo[a,h]Anthracene",LB
+37187,6.72097e-05,Acenaphthene,LB
+37187,3.603416e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37187,0.0656965,Ethyl Benzene,LB
+37187,0.13483394,Toluene,LB
+37187,0.006858672,Anthracene,LB
+37187,8.288356e-05,"Benzo[g,h,i,]Perylene",LB
+37187,0.014509916,Fluoranthene,LB
+37187,1.9802778,Formaldehyde,LB
+37187,0.04966348,"2,2,4-Trimethylpentane",LB
+37187,0.18589946,Benzene,LB
+37187,0.0004112546,Manganese,LB
+37187,0.006451048,Acenaphthene,LB
+37187,0.041705,Carbon Monoxide,TON
+37187,0.005276471,PM10-Primary from certain diesel engines,TON
+37187,0.004854234,PM25-Primary from certain diesel engines,TON
+37187,0.002197067,Elemental Carbon portion of PM2.5-PRI,TON
+37067,82455.92,Xylenes (Mixed Isomers),LB
+37067,0.05827482,Chromium (VI),LB
+37067,11.714328,Chrysene,LB
+37067,0.4768348,"Dibenzo[a,h]Anthracene",LB
+37067,30125.64,"2,2,4-Trimethylpentane",LB
+37067,82.7323,PM10 Primary (Filt + Cond),TON
+37067,17.34249,Sulfur Dioxide,TON
+37073,0.0001187065,PM10 Primary (Filt + Cond),TON
+37073,0.04693995,Carbon Monoxide,TON
+37021,168.97406,Toluene,LB
+37021,0.03267752,Anthracene,LB
+37021,36.9065,"2,2,4-Trimethylpentane",LB
+37021,0.0375525,Acenaphthene,LB
+37021,0.06640704,PM10 Primary (Filt + Cond),TON
+37021,0.8175398,Volatile Organic Compounds,TON
+37041,0.0011278098,Arsenic,LB
+37041,223.4001,Carbon Dioxide,TON
+37041,0.3707697,Volatile Organic Compounds,TON
+37059,0.15255154,Ethyl Benzene,LB
+37059,0.0002471278,Anthracene,LB
+37059,0.0005866026,Benzo[a]Pyrene,LB
+37059,0.0002642684,Acenaphthene,LB
+37059,0.0137903,Naphthalene,LB
+37059,0.0008491496,PM2.5 Primary (Filt + Cond),TON
+37059,0.0002999716,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,62.898,Acrolein,LB
+37081,71.90162,Xylenes (Mixed Isomers),LB
+37081,4.010166,Acenaphthylene,LB
+37081,79.12569,Carbon Monoxide,TON
+37081,0.1681656,PM10-Primary from certain diesel engines,TON
+37081,0.001094983,Nitrate portion of PM2.5-PRI,TON
+37139,0.03727694,Fluorene,LB
+37139,0.0115299,PM25-Primary from certain diesel engines,TON
+37139,0.002077717,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.2840134,Propionaldehyde,LB
+37139,0.03933234,Fluoranthene,LB
+37163,6.959146e-05,Mercury,LB
+37163,0.01455054,Arsenic,LB
+37163,0.04294498,Organic Carbon portion of PM2.5-PRI,TON
+37163,8.838142,"1,3-Butadiene",LB
+37163,0.00812494,Benzo[b]Fluoranthene,LB
+37163,0.0011290968,Benzo[k]Fluoranthene,LB
+37163,273.4884,Formaldehyde,LB
+37163,6.838576,"2,2,4-Trimethylpentane",LB
+37099,6.939092e-07,"Dibenzo[a,h]Anthracene",LB
+37099,0.02729492,Carbon Monoxide,TON
+37099,0.05135174,Hexane,LB
+37197,5.261514,Pyrene,LB
+37197,42.93686,Xylenes (Mixed Isomers),LB
+37197,0.02316846,"Benzo[g,h,i,]Perylene",LB
+37197,2.923942,Acenaphthylene,LB
+37197,0.0001837935,Mercury,LB
+37197,242.8712,Acetaldehyde,LB
+37197,1.7395754,Acenaphthene,LB
+37197,3.760832,Fluorene,LB
+37197,3.15035,Volatile Organic Compounds,TON
+37197,5009.848,Xylenes (Mixed Isomers),LB
+37187,3.132474,Propionaldehyde,LB
+37187,0.04068516,Benzo[k]Fluoranthene,LB
+37187,0.05245966,Benzo[a]Pyrene,LB
+37187,53.2639,Acetaldehyde,LB
+37187,0.000156894,Nitrate portion of PM2.5-PRI,TON
+37187,4.387722,Nitrogen Oxides,TON
+37187,6.878514,Fluorene,LB
+37187,0.2437068,Elemental Carbon portion of PM2.5-PRI,TON
+37187,2.732408,Ammonia,TON
+37187,1.137297,PM2.5 Primary (Filt + Cond),TON
+37197,0.005492898,Ethyl Benzene,LB
+37197,0.0002114236,Styrene,LB
+37197,0.00018219824,Propionaldehyde,LB
+37197,4.151246e-06,Benzo[k]Fluoranthene,LB
+37197,1.7974768e-07,Arsenic,LB
+37197,1.873612e-07,Sulfate Portion of PM2.5-PRI,TON
+37193,0.467708,Nitrogen Oxides,TON
+37193,0.0006825807,Sulfur Dioxide,TON
+37193,0.3413162,"1,3-Butadiene",LB
+37193,0.25244,"2,2,4-Trimethylpentane",LB
+37193,4.493402,Acetaldehyde,LB
+37193,0.02968455,PM10-Primary from certain diesel engines,TON
+37193,0.02731004,PM25-Primary from certain diesel engines,TON
+37193,0.01094044,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.000233936,Benzo[k]Fluoranthene,LB
+37185,0.005657028,Benzo[a]Pyrene,LB
+37185,0.2286394,"2,2,4-Trimethylpentane",LB
+37185,3.415768e-06,Mercury,LB
+37185,3.863784,Acetaldehyde,LB
+37185,0.02839064,Acenaphthene,LB
+37185,0.0002621514,Nitrous Oxide,TON
+37067,82.0934,Acrolein,LB
+37067,85.45886,Xylenes (Mixed Isomers),LB
+37067,0.3842678,Chrysene,LB
+37067,0.1214619,Benzo[a]Pyrene,LB
+37067,98.41492,Benzene,LB
+37067,9835.057,Carbon Dioxide,TON
+37067,0.09988859,Remaining PMFINE portion of PM2.5-PRI,TON
+37067,0.05872918,Sulfate Portion of PM2.5-PRI,TON
+37135,41.4148,Acrolein,LB
+37135,0.03181474,Benzo[a]Pyrene,LB
+37135,0.0013269582,"Dibenzo[a,h]Anthracene",LB
+37135,49.86968,Benzene,LB
+37135,2.674786,Fluorene,LB
+37135,0.006545444,Nitrous Oxide,TON
+37135,4.885036,Nitrogen Oxides,TON
+37135,0.02174923,Sulfate Portion of PM2.5-PRI,TON
+37111,0.0017189166,"Benzo[g,h,i,]Perylene",LB
+37111,0.532744,Fluoranthene,LB
+37111,0.012724458,Benzo[a]Pyrene,LB
+37005,4.653074,Benzene,LB
+37005,1.2926978,"2,2,4-Trimethylpentane",LB
+37007,0.14543106,Styrene,LB
+37007,0.10791502,Pyrene,LB
+37007,3.527722e-06,Chromium (VI),LB
+37007,0.08153536,Fluoranthene,LB
+37007,0.02632638,Benz[a]Anthracene,LB
+37007,0.005578872,Manganese,LB
+37007,0.07442016,Fluorene,LB
+37007,0.04823995,PM25-Primary from certain diesel engines,TON
+37007,0.03078819,Elemental Carbon portion of PM2.5-PRI,TON
+37089,1.0143818,Benzene,LB
+37089,0.0601094,Ethyl Benzene,LB
+37089,0.01322656,Organic Carbon portion of PM2.5-PRI,TON
+37089,0.05831678,PM10 Primary (Filt + Cond),TON
+37089,0.0003039066,Sulfate Portion of PM2.5-PRI,TON
+37177,0.00282025,Benz[a]Anthracene,LB
+37177,4.136636e-05,Mercury,LB
+37177,0.015533194,Fluorene,LB
+37177,0.003210278,Sulfur Dioxide,TON
+37177,0.013042256,Pyrene,LB
+37197,5.286516,Benzo[a]Pyrene,LB
+37197,5.69304,Nitrous Oxide,TON
+37189,0.0019868768,"Benzo[g,h,i,]Perylene",LB
+37189,0.6417318,Formaldehyde,LB
+37189,0.0007497124,Benzo[a]Pyrene,LB
+37189,0.000897002,Manganese,LB
+37189,6.534738e-06,Mercury,LB
+37189,0.01136357,Phenanthrene,LB
+37189,0.00424029,Fluorene,LB
+37189,0.0007161956,Sulfur Dioxide,TON
+37181,0.015767814,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.397234,Chrysene,LB
+37181,0.08941748,Manganese,LB
+37181,1.572742,PM10 Primary (Filt + Cond),TON
+37179,43.5506,Acetaldehyde,LB
+37179,0.28796,Acenaphthene,LB
+37179,0.07764706,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.01158381,Sulfur Dioxide,TON
+37179,7.687574,Acrolein,LB
+37179,9.251826,Benzene,LB
+37173,0.0003610704,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.16838706,Fluoranthene,LB
+37193,0.0010646278,"Dibenzo[a,h]Anthracene",LB
+37193,0.1095995,Methane,TON
+37193,43.81383,Carbon Monoxide,TON
+37193,0.03288338,Ammonia,TON
+37193,0.00111775,Sulfate Portion of PM2.5-PRI,TON
+37185,1.1432308,Acenaphthylene,LB
+37185,2.936848,Styrene,LB
+37185,5.796408,Hexane,LB
+37185,18.224744,Xylenes (Mixed Isomers),LB
+37185,0.07611434,Manganese,LB
+37185,0.02319928,Arsenic,LB
+37185,24.442,Naphthalene,LB
+37185,0.1408605,Methane,TON
+37185,0.07198467,Sulfur Dioxide,TON
+37185,28.55524,Toluene,LB
+37195,25.21828,Ethyl Benzene,LB
+37191,0.012899524,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.16996834,Benzo[a]Pyrene,LB
+37191,0.05807602,Manganese,LB
+37191,0.1092434,Methane,TON
+37191,12.085294,Propionaldehyde,LB
+37189,20.3331,Acrolein,LB
+37189,0.2438536,Manganese,LB
+37189,5.516332,Phenanthrene,LB
+37189,0.6681198,Methane,TON
+37189,208.8951,Carbon Monoxide,TON
+37189,26.16621,Nitrogen Oxides,TON
+37187,0.275667,Anthracene,LB
+37183,10.572786,Styrene,LB
+37183,0.010946498,"Dibenzo[a,h]Anthracene",LB
+37183,2.458798,Acenaphthene,LB
+37183,91.09098,Naphthalene,LB
+37183,15156.05,Carbon Dioxide,TON
+37183,55.62079,Nitrogen Oxides,TON
+37183,3764.48,Formaldehyde,LB
+37183,0.1618115,Mercury,LB
+37183,68.84472,Phenanthrene,LB
+37183,1.502415,Elemental Carbon portion of PM2.5-PRI,TON
+37183,3.424279,Organic Carbon portion of PM2.5-PRI,TON
+37179,5.911504,Ethyl Benzene,LB
+37179,20.03896,Xylenes (Mixed Isomers),LB
+37173,0.0407622,Acrolein,LB
+37173,7.812972,Toluene,LB
+37173,2.231554,Benzene,LB
+37173,0.002118372,Acenaphthene,LB
+37173,0.002388072,Ammonia,TON
+37173,0.004903275,PM10 Primary (Filt + Cond),TON
+37173,0.03910976,Volatile Organic Compounds,TON
+37095,0.0003813298,Benzo[k]Fluoranthene,LB
+37095,14.188852,Formaldehyde,LB
+37095,0.009359786,Benzo[a]Pyrene,LB
+37095,0.0006229862,Nitrous Oxide,TON
+37095,0.001598646,Ammonia,TON
+37089,0.00434104,"Benzo[g,h,i,]Perylene",LB
+37089,0.017823596,Benzo[b]Fluoranthene,LB
+37089,0.5098024,Acenaphthene,LB
+37089,0.05820584,Methane,TON
+37079,0.006591376,"Benzo[g,h,i,]Perylene",LB
+37079,1.1201638,Fluoranthene,LB
+37079,2.885234e-05,Mercury,LB
+37079,0.02319934,Nickel,LB
+37079,60.00164,Acetaldehyde,LB
+37079,0.4284562,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.0662052,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,2.09893,Xylenes (Mixed Isomers),LB
+37073,0.074687,Benz[a]Anthracene,LB
+37073,0.07660127,PM25-Primary from certain diesel engines,TON
+37073,0.03152869,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.07874994,PM2.5 Primary (Filt + Cond),TON
+37073,0.01291642,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,3.7139e-06,Chromium (VI),LB
+37059,6.791336,Benzene,LB
+37059,0.00431478,Methane,TON
+37049,16.345464,Acrolein,LB
+37049,1.0902534,Pyrene,LB
+37049,1.0981976,Acenaphthylene,LB
+37049,0.0008915842,"Dibenzo[a,h]Anthracene",LB
+37049,0.012458166,Arsenic,LB
+37049,0.01415528,Sulfur Dioxide,TON
+37049,0.009521128,Sulfate Portion of PM2.5-PRI,TON
+37049,1.181716,Volatile Organic Compounds,TON
+37037,0.00042969,Mercury,LB
+37037,0.2670658,Nickel,LB
+37037,11.099896,Fluorene,LB
+37037,215.6744,Naphthalene,LB
+37037,0.6673829,Methane,TON
+37037,12638.95,Carbon Dioxide,TON
+37037,0.03541449,Nitrous Oxide,TON
+37037,65.09418,Ethyl Benzene,LB
+37025,23.21802,Styrene,LB
+37025,311.1624,Toluene,LB
+37025,16.326742,Pyrene,LB
+37025,12.530232,Fluoranthene,LB
+37025,2.208814,Chrysene,LB
+37025,5.682118,Acenaphthene,LB
+37025,0.02337009,Nitrate portion of PM2.5-PRI,TON
+37025,1.642831,Anthracene,LB
+37025,32.06444,Propionaldehyde,LB
+37025,50.58252,Xylenes (Mixed Isomers),LB
+37025,0.009758174,"Benzo[g,h,i,]Perylene",LB
+37025,0.02640822,Benzo[b]Fluoranthene,LB
+37025,0.5135166,Benz[a]Anthracene,LB
+37025,0.00018814078,Mercury,LB
+37025,275.4032,Acetaldehyde,LB
+37025,0.6508527,PM25-Primary from certain diesel engines,TON
+37025,3.542918,Volatile Organic Compounds,TON
+37013,5.746358,Formaldehyde,LB
+37013,0.14540886,"2,2,4-Trimethylpentane",LB
+37013,0.018359388,Acenaphthene,LB
+37013,0.03980928,Fluorene,LB
+37013,0.01356756,PM2.5 Primary (Filt + Cond),TON
+37015,0.006248776,"1,3-Butadiene",LB
+37015,4.711736e-09,Chromium (VI),LB
+37015,2.061866e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,6.675534e-05,Fluoranthene,LB
+37015,9.03064e-07,Arsenic,LB
+37015,0.002355926,Naphthalene,LB
+37015,1.096001e-05,Organic Carbon portion of PM2.5-PRI,TON
+37009,596.8498,Ethyl Benzene,LB
+37009,1163.1792,"2,2,4-Trimethylpentane",LB
+37005,0.0003209226,Benzo[k]Fluoranthene,LB
+37005,0.08277496,Acenaphthene,LB
+37005,0.04530221,PM25-Primary from certain diesel engines,TON
+37067,0.3136982,"1,3-Butadiene",LB
+37067,3.604454e-05,Chromium (VI),LB
+37067,0.00791303,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,4.655448,Formaldehyde,LB
+37067,598.4125,Carbon Dioxide,TON
+37063,0.4101797,Volatile Organic Compounds,TON
+37049,0.00906132,Phenanthrene,LB
+37049,0.00320851,Fluorene,LB
+37049,0.002335045,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.0001749629,Sulfate Portion of PM2.5-PRI,TON
+37049,0.04581764,Styrene,LB
+37049,0.0031401,Pyrene,LB
+37017,0.530306,Toluene,LB
+37017,0.2157736,Hexane,LB
+37017,0.0010313172,Acenaphthylene,LB
+37017,0.0004387902,Arsenic,LB
+37017,0.0012705308,Phenanthrene,LB
+37017,0.0006977569,PM2.5 Primary (Filt + Cond),TON
+37017,0.0002381479,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.05821254,Volatile Organic Compounds,TON
+37017,1.166625,PM2.5 Primary (Filt + Cond),TON
+37017,0.9259406,Anthracene,LB
+37017,14.223094,Xylenes (Mixed Isomers),LB
+37017,0.8407474,Acenaphthene,LB
+37017,1.479607,PM10 Primary (Filt + Cond),TON
+37013,0.2444514,Toluene,LB
+37013,0.0001439067,Anthracene,LB
+37013,1.4759854,Propionaldehyde,LB
+37013,0.1875577,Benzene,LB
+37013,0.001990237,Manganese,LB
+37013,0.01485541,Nitrous Oxide,TON
+37013,0.003216395,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.05958018,Volatile Organic Compounds,TON
+37011,188.19144,Toluene,LB
+37011,0.00012635368,Mercury,LB
+37011,0.001575496,Nickel,LB
+37011,0.005358373,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.005382545,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.00974301,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.1081499,PM10 Primary (Filt + Cond),TON
+37027,0.82678,Acrolein,LB
+37027,7.528476,Hexane,LB
+37027,0.03868004,"Benzo[g,h,i,]Perylene",LB
+37027,8.380468,Carbon Monoxide,TON
+37189,5.177022,Nitrogen Oxides,TON
+37189,0.0013270012,Benzo[k]Fluoranthene,LB
+37189,262.8154,Formaldehyde,LB
+37189,0.03217518,Benzo[a]Pyrene,LB
+37189,0.2070094,Benz[a]Anthracene,LB
+37189,0.012187478,Arsenic,LB
+37073,2.18273,Propionaldehyde,LB
+37073,0.1574184,Fluoranthene,LB
+37073,0.4948184,Acenaphthylene,LB
+37073,0.0006791752,Mercury,LB
+37073,37.53768,Acetaldehyde,LB
+37073,0.05668051,Nitrous Oxide,TON
+37073,9.89665e-05,Nitrate portion of PM2.5-PRI,TON
+37073,2.795828,Nitrogen Oxides,TON
+37063,137.74262,Benzene,LB
+37063,51.54948,Ethyl Benzene,LB
+37145,6.805298e-05,Chrysene,LB
+37145,1.4024894e-06,Nickel,LB
+37145,0.001530855,Ammonia,TON
+37145,0.2950595,Nitrogen Oxides,TON
+37145,0.01282187,PM10 Primary (Filt + Cond),TON
+37189,0.0002779062,Acenaphthylene,LB
+37189,0.09552384,Benzene,LB
+37189,1.4159222e-05,Mercury,LB
+37189,0.0005963708,Phenanthrene,LB
+37189,0.2555536,Methane,TON
+37189,5.013892e-05,Sulfate Portion of PM2.5-PRI,TON
+37183,1.2304442,Styrene,LB
+37183,0.004284986,"Benzo[g,h,i,]Perylene",LB
+37183,0.4880788,Acenaphthylene,LB
+37183,120.00002,Formaldehyde,LB
+37183,3.36887,"2,2,4-Trimethylpentane",LB
+37183,0.2289218,Benz[a]Anthracene,LB
+37183,0.4876716,PM25-Primary from certain diesel engines,TON
+37183,0.05816326,Ammonia,TON
+37057,0.003915634,Nitrous Oxide,TON
+37057,0.5400035,Volatile Organic Compounds,TON
+37057,1.2329882,Styrene,LB
+37057,0.005006982,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.2161102,Benz[a]Anthracene,LB
+37191,0.01637063,Ammonia,TON
+37191,0.02173758,Nickel,LB
+37191,12.282408,Naphthalene,LB
+37191,0.09600304,Methane,TON
+37153,5.032042,Toluene,LB
+37153,4.613808,Xylenes (Mixed Isomers),LB
+37153,2.014316,"2,2,4-Trimethylpentane",LB
+37153,0.002537832,Arsenic,LB
+37075,0.003068882,PM2.5 Primary (Filt + Cond),TON
+37075,0.006507142,"Benzo[g,h,i,]Perylene",LB
+37075,0.0006258657,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.001450339,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.03365446,"Benzo[g,h,i,]Perylene",LB
+37069,0.9399322,"1,3-Butadiene",LB
+37069,0.05209082,Methane,TON
+37019,8.510746,Ethyl Benzene,LB
+37019,0.06704718,Acenaphthylene,LB
+37019,29.62382,Formaldehyde,LB
+37019,0.04503946,Manganese,LB
+37019,0.014487702,Acenaphthene,LB
+37019,0.1219639,Ammonia,TON
+37019,0.04977136,PM2.5 Primary (Filt + Cond),TON
+37019,0.05423388,Propionaldehyde,LB
+37019,0.0007017132,Benz[a]Anthracene,LB
+37019,1.6571492e-06,Mercury,LB
+37019,0.000484191,Organic Carbon portion of PM2.5-PRI,TON
+37015,4.867448e-05,"Dibenzo[a,h]Anthracene",LB
+37015,0.0001651378,Nickel,LB
+37015,0.002479165,PM2.5 Primary (Filt + Cond),TON
+37015,0.00175581,Methane,TON
+37015,2.576462,Benzene,LB
+37011,27.38142,Propionaldehyde,LB
+37011,0.001450168,Chromium (VI),LB
+37011,0.717517,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,6.5165,Acenaphthylene,LB
+37011,1156.8766,"2,2,4-Trimethylpentane",LB
+37011,0.6732872,Methane,TON
+37011,0.5584684,Nitrous Oxide,TON
+37011,33.51092,Nitrogen Oxides,TON
+37005,3.760412e-05,Benzo[k]Fluoranthene,LB
+37005,9.535636e-06,Manganese,LB
+37005,1.8679372e-07,Mercury,LB
+37005,0.04605835,Carbon Monoxide,TON
+37005,3.2011e-05,Ammonia,TON
+37005,2.509294e-05,Sulfur Dioxide,TON
+37003,0.002136534,Benzo[b]Fluoranthene,LB
+37003,0.007164426,Benzo[a]Pyrene,LB
+37003,0.8639094,Benzene,LB
+37003,2.256972e-06,Mercury,LB
+37003,0.04275066,PM2.5 Primary (Filt + Cond),TON
+37003,0.001377741,Sulfate Portion of PM2.5-PRI,TON
+37003,0.306105,Ethyl Benzene,LB
+37003,0.2939032,"1,3-Butadiene",LB
+37003,2.829788,Acrolein,LB
+37003,0.0004143356,Nitrous Oxide,TON
+37003,2.443393e-05,Nitrate portion of PM2.5-PRI,TON
+37003,0.016902532,Benz[a]Anthracene,LB
+37003,3.4078,Benzene,LB
+37003,0.002713924,Arsenic,LB
+37051,0.8299622,"1,3-Butadiene",LB
+37051,0.29779,Naphthalene,LB
+37051,1410.693,Carbon Dioxide,TON
+37051,0.04284816,Sulfur Dioxide,TON
+37051,1.3734644,Propionaldehyde,LB
+37051,0.010424198,Fluoranthene,LB
+37051,19.20608,Benzene,LB
+37051,0.000963603,Mercury,LB
+37051,65.73876,Acetaldehyde,LB
+37033,0.5289294,Benzene,LB
+37017,1.174404e-05,Chromium (VI),LB
+37017,1.1820574,"2,2,4-Trimethylpentane",LB
+37017,0.002250552,Arsenic,LB
+37017,0.0018986904,Fluorene,LB
+37017,8.194535e-05,Sulfate Portion of PM2.5-PRI,TON
+37009,0.7547666,Toluene,LB
+37009,3.814624,Acetaldehyde,LB
+37009,0.3079187,Carbon Monoxide,TON
+37009,0.000140606,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.001973294,Ammonia,TON
+37009,0.000300048,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.5906148,Acrolein,LB
+37145,0.02625262,Acenaphthylene,LB
+37145,0.003422952,Chrysene,LB
+37145,0.00762205,Benzo[a]Pyrene,LB
+37145,0.00017694626,"Dibenzo[a,h]Anthracene",LB
+37145,0.00485005,Arsenic,LB
+37145,0.02479487,Ammonia,TON
+37145,0.3646014,Volatile Organic Compounds,TON
+37017,8.163268,"2,2,4-Trimethylpentane",LB
+37017,0.1074106,Manganese,LB
+37017,0.8490417,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.003058844,Nitrate portion of PM2.5-PRI,TON
+37017,3.924888,Styrene,LB
+37017,23.34172,Acrolein,LB
+37017,0.950503,Anthracene,LB
+37017,24.73908,Xylenes (Mixed Isomers),LB
+37017,0.011081408,"Benzo[g,h,i,]Perylene",LB
+37017,1.9814326,Fluoranthene,LB
+37013,0.5422348,Acenaphthylene,LB
+37013,0.0135791,Methane,TON
+37013,0.01145258,Ammonia,TON
+37013,0.00679514,Sulfur Dioxide,TON
+37013,0.5508673,Volatile Organic Compounds,TON
+37021,6727.89,Xylenes (Mixed Isomers),LB
+37021,3.789534,"Benzo[g,h,i,]Perylene",LB
+37021,163.48012,Naphthalene,LB
+37021,3.668254,Ammonia,TON
+37019,2.703642,Anthracene,LB
+37019,40.41154,Propionaldehyde,LB
+37019,22.54268,"2,2,4-Trimethylpentane",LB
+37019,11569.13,Carbon Dioxide,TON
+37019,0.296479,Ammonia,TON
+37019,0.01053008,Nitrate portion of PM2.5-PRI,TON
+37011,0.1505276,Naphthalene,LB
+37011,0.00054948,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.0009916545,Sulfur Dioxide,TON
+37011,1.4919394,Ethyl Benzene,LB
+37011,0.04814078,Propionaldehyde,LB
+37011,9.0401e-07,Chromium (VI),LB
+37011,0.00103128,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,308.5732,Hexane,LB
+37005,781.5204,Xylenes (Mixed Isomers),LB
+37003,1.8025662,Acrolein,LB
+37003,186.8303,Carbon Dioxide,TON
+37003,0.8516471,Nitrogen Oxides,TON
+37179,2.851748e-07,Chromium (VI),LB
+37179,0.0271107,Acenaphthylene,LB
+37179,4.75705,"2,2,4-Trimethylpentane",LB
+37179,1.9250516,Acetaldehyde,LB
+37179,3.6986,Ethyl Benzene,LB
+37197,0.2821368,Naphthalene,LB
+37197,587.2257,Carbon Dioxide,TON
+37197,11.651962,Formaldehyde,LB
+37193,0.3293556,Propionaldehyde,LB
+37193,40.46866,Xylenes (Mixed Isomers),LB
+37193,0.005562332,Chrysene,LB
+37193,0.00017727352,"Dibenzo[a,h]Anthracene",LB
+37193,6.299442,Acetaldehyde,LB
+37193,1.0277244,Naphthalene,LB
+37193,285.8347,Carbon Dioxide,TON
+37193,0.7028508,Nitrogen Oxides,TON
+37183,0.05013688,Benzo[a]Pyrene,LB
+37183,42.91358,"2,2,4-Trimethylpentane",LB
+37183,0.3272074,Manganese,LB
+37183,0.000666187,Mercury,LB
+37183,0.1392901,Arsenic,LB
+37183,148.38112,Naphthalene,LB
+37183,0.2384656,PM10-Primary from certain diesel engines,TON
+37183,14.598804,Styrene,LB
+37183,135.85982,Toluene,LB
+37183,0.012261442,"Benzo[g,h,i,]Perylene",LB
+37183,0.3483446,PM2.5 Primary (Filt + Cond),TON
+37199,0.00232358,Arsenic,LB
+37199,0.04435503,PM25-Primary from certain diesel engines,TON
+37199,0.03455365,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.001573538,Sulfate Portion of PM2.5-PRI,TON
+37199,0.1351828,Anthracene,LB
+37199,0.265139,Pyrene,LB
+37199,0.016072542,Chrysene,LB
+37199,0.03452746,Benz[a]Anthracene,LB
+37199,0.005458068,Manganese,LB
+37199,17.177748,Toluene,LB
+37199,13.025348,Hexane,LB
+37197,0.1413138,Benzene,LB
+37197,4.331248,Acetaldehyde,LB
+37197,0.0009600072,Naphthalene,LB
+37197,0.3794081,Methane,TON
+37197,0.0005075283,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.01041916,Nitrous Oxide,TON
+37195,5.46651,Ethyl Benzene,LB
+37195,8.700516,Hexane,LB
+37195,19.52834,Xylenes (Mixed Isomers),LB
+37195,0.02446812,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.016983524,Fluoranthene,LB
+37195,0.02067825,Nitrous Oxide,TON
+37195,0.1084304,PM10 Primary (Filt + Cond),TON
+37195,0.330388,Toluene,LB
+37195,0.646384,Benzene,LB
+37195,0.0010044926,Acenaphthene,LB
+37195,0.00503114,Naphthalene,LB
+37195,131.126,Carbon Dioxide,TON
+37195,0.00300742,Ammonia,TON
+37195,0.01105697,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.9831122,Hexane,LB
+37189,0.8797956,Benzene,LB
+37183,30.20774,Styrene,LB
+37183,12.25587,Pyrene,LB
+37183,0.012825454,Benzo[k]Fluoranthene,LB
+37183,11.829,Acenaphthylene,LB
+37183,68.72406,"2,2,4-Trimethylpentane",LB
+37183,12.565772,Fluorene,LB
+37183,2.571983,PM10-Primary from certain diesel engines,TON
+37183,55.13648,Nitrogen Oxides,TON
+37183,0.2002195,Sulfur Dioxide,TON
+37183,13.24955,Volatile Organic Compounds,TON
+37183,429.671,"2,2,4-Trimethylpentane",LB
+37183,22.05695,Volatile Organic Compounds,TON
+37141,9.043334,Pyrene,LB
+37141,156.37836,Benzene,LB
+37141,0.08127064,Arsenic,LB
+37141,0.4639585,Methane,TON
+37141,11509.12,Carbon Dioxide,TON
+37141,1.630166,PM10-Primary from certain diesel engines,TON
+37141,1.499677,PM25-Primary from certain diesel engines,TON
+37141,9.713743,Volatile Organic Compounds,TON
+37129,4.899148,Anthracene,LB
+37129,0.02839754,"Benzo[g,h,i,]Perylene",LB
+37129,8.18442,Fluoranthene,LB
+37129,46.09604,"2,2,4-Trimethylpentane",LB
+37129,784.36,Acetaldehyde,LB
+37129,197.6386,Naphthalene,LB
+37129,90.89604,Carbon Monoxide,TON
+37123,0.014933818,"1,3-Butadiene",LB
+37123,0.0002847624,"Benzo[g,h,i,]Perylene",LB
+37123,0.13994176,Benzene,LB
+37123,6.885178e-05,Nitrous Oxide,TON
+37123,0.0001719049,PM10 Primary (Filt + Cond),TON
+37123,3.132552e-06,Sulfate Portion of PM2.5-PRI,TON
+37123,0.00228029,Volatile Organic Compounds,TON
+37109,25.3667,Ethyl Benzene,LB
+37109,53.76134,Acrolein,LB
+37109,0.0003376546,Chromium (VI),LB
+37109,23.11274,"2,2,4-Trimethylpentane",LB
+37109,0.12273672,Nickel,LB
+37109,3.74221,Fluorene,LB
+37109,0.2618634,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,2.344686e-07,Mercury,LB
+37107,0.000450748,Acenaphthene,LB
+37107,4.150688e-05,Ammonia,TON
+37107,0.008054434,Volatile Organic Compounds,TON
+37097,0.2524646,Chrysene,LB
+37097,0.7675756,PM10-Primary from certain diesel engines,TON
+37097,0.1348279,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.0372164,Benzo[a]Pyrene,LB
+37091,0.12424904,Benz[a]Anthracene,LB
+37091,23.4156,Acetaldehyde,LB
+37091,309.968,Carbon Dioxide,TON
+37091,0.1305334,PM2.5 Primary (Filt + Cond),TON
+37103,96.0613,Styrene,LB
+37103,3920.952,Benzene,LB
+37103,8.144984,Fluorene,LB
+37095,0.04694946,Benzo[a]Pyrene,LB
+37095,0.02529288,Manganese,LB
+37095,52.52486,Acetaldehyde,LB
+37095,3.650388,Styrene,LB
+37095,0.1239638,"Benzo[g,h,i,]Perylene",LB
+37095,0.2233068,Fluoranthene,LB
+37095,0.7016288,Acenaphthylene,LB
+37095,0.1306178,PM10 Primary (Filt + Cond),TON
+37095,0.01510799,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,2.597306,Volatile Organic Compounds,TON
+37093,0.0004490578,Pyrene,LB
+37093,1.4058784e-06,Nickel,LB
+37093,0.5415735,Carbon Monoxide,TON
+37093,0.01185597,Nitrous Oxide,TON
+37093,0.002419736,Ammonia,TON
+37093,0.6206868,"1,3-Butadiene",LB
+37093,0.007717126,Pyrene,LB
+37093,0.02119296,Acenaphthylene,LB
+37093,0.0015371484,Benzo[a]Pyrene,LB
+37093,2.126238e-06,Mercury,LB
+37093,0.009430254,Fluorene,LB
+37093,0.001148934,Nitrous Oxide,TON
+37093,4.281618e-06,Nitrate portion of PM2.5-PRI,TON
+37093,0.0891964,Nitrogen Oxides,TON
+37093,0.09043687,Volatile Organic Compounds,TON
+37087,0.3910806,Acenaphthylene,LB
+37087,70.04352,Formaldehyde,LB
+37087,5.560196,Acrolein,LB
+37087,0.2155856,Anthracene,LB
+37087,4.596276,Xylenes (Mixed Isomers),LB
+37087,0.008773184,Nickel,LB
+37087,0.4395724,Fluorene,LB
+37087,0.01314586,Ammonia,TON
+37083,3.371666,Hexane,LB
+37083,0.4512836,Anthracene,LB
+37083,0.003778962,"Benzo[g,h,i,]Perylene",LB
+37083,0.11103324,Chrysene,LB
+37083,3.17497,"2,2,4-Trimethylpentane",LB
+37083,13.166268,Benzene,LB
+37083,0.01704565,Methane,TON
+37083,0.07045604,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.2503628,Ethyl Benzene,LB
+37079,0.2345616,"1,3-Butadiene",LB
+37079,2.739564e-06,Chromium (VI),LB
+37079,0.0015453938,Benzo[b]Fluoranthene,LB
+37079,0.0002137554,Benzo[k]Fluoranthene,LB
+37079,0.5700874,Ethyl Benzene,LB
+37079,0.2130222,Styrene,LB
+37079,0.491414,"1,3-Butadiene",LB
+37079,1.2957736,Acrolein,LB
+37079,0.0764905,Pyrene,LB
+37079,0.08320982,Acenaphthylene,LB
+37079,0.00418002,Chrysene,LB
+37079,0.009312228,Benz[a]Anthracene,LB
+37079,0.003874182,Manganese,LB
+37087,0.00015773642,Manganese,LB
+37087,1.8917692e-05,Nickel,LB
+37087,0.8929471,Carbon Monoxide,TON
+37083,8511.066,Ethyl Benzene,LB
+37083,0.008271148,Chromium (VI),LB
+37083,4673.776,Formaldehyde,LB
+37083,10010.072,"2,2,4-Trimethylpentane",LB
+37083,14339.63,Benzene,LB
+37083,161173.3,Carbon Dioxide,TON
+37083,3.028038,Organic Carbon portion of PM2.5-PRI,TON
+37083,5.94922,PM2.5 Primary (Filt + Cond),TON
+37083,0.1606252,Sulfate Portion of PM2.5-PRI,TON
+37083,239.8584,Volatile Organic Compounds,TON
+37075,0.00013095364,Pyrene,LB
+37075,1.4590252e-07,Mercury,LB
+37075,2.789148e-06,Arsenic,LB
+37075,6.416888e-05,Methane,TON
+37075,0.00273866,Nitrogen Oxides,TON
+37071,6361.376,Acetaldehyde,LB
+37071,95.71038,Phenanthrene,LB
+37071,333.4922,Propionaldehyde,LB
+37071,26.9422,"Benzo[g,h,i,]Perylene",LB
+37069,4.78051,Styrene,LB
+37069,0.00010290784,Chromium (VI),LB
+37069,0.02001724,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.0786026,Benzo[b]Fluoranthene,LB
+37069,0.010803048,Benzo[k]Fluoranthene,LB
+37069,0.1401036,Manganese,LB
+37069,1.1135402,Acenaphthene,LB
+37069,2.482418,Fluorene,LB
+37069,0.3029766,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.1259369,Ammonia,TON
+37069,0.3793049,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.1806647,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,1.0097278e-05,Nickel,LB
+37069,0.0009486128,Acenaphthene,LB
+37069,5.16765,Carbon Dioxide,TON
+37069,0.0230557,Styrene,LB
+37069,0.014959618,Acrolein,LB
+37069,0.0008185172,Anthracene,LB
+37069,0.0014109822,"Benzo[g,h,i,]Perylene",LB
+37069,0.0003196722,Chrysene,LB
+37069,0.6341674,Toluene,LB
+37069,0.00350068,Propionaldehyde,LB
+37069,0.00013666102,"Benzo[g,h,i,]Perylene",LB
+37069,5.13448e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.0002640975,Methane,TON
+37069,2.454314e-05,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.00312062,Volatile Organic Compounds,TON
+37063,1.4709032,Manganese,LB
+37063,28.89202,Phenanthrene,LB
+37063,14.581236,Fluorene,LB
+37063,326.9906,Naphthalene,LB
+37063,4.543468,Methane,TON
+37063,1.684578,Ammonia,TON
+37063,2.006131,Organic Carbon portion of PM2.5-PRI,TON
+37063,10.46459,PM2.5 Primary (Filt + Cond),TON
+37063,14.69913,Volatile Organic Compounds,TON
+37063,0.07555754,"Benzo[g,h,i,]Perylene",LB
+37059,102.91496,Xylenes (Mixed Isomers),LB
+37059,0.000310748,Mercury,LB
+37059,15.087812,Phenanthrene,LB
+37059,0.2217876,Organic Carbon portion of PM2.5-PRI,TON
+37059,1.798901,PM10 Primary (Filt + Cond),TON
+37059,5.763172,Ethyl Benzene,LB
+37059,29.80376,Toluene,LB
+37059,12.864798,Benzene,LB
+37059,0.002556449,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.0002105532,Sulfate Portion of PM2.5-PRI,TON
+37055,637.785,Naphthalene,LB
+37055,7.069319,Methane,TON
+37055,12.08642,Ammonia,TON
+37055,291.9602,Styrene,LB
+37055,3.729334,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,37.59182,Acrolein,LB
+37047,1.3013038,Anthracene,LB
+37047,0.006811298,"Benzo[g,h,i,]Perylene",LB
+37047,0.003782794,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.04976694,Benzo[a]Pyrene,LB
+37047,11.829306,"2,2,4-Trimethylpentane",LB
+37047,0.02714474,Arsenic,LB
+37047,206.6882,Acetaldehyde,LB
+37039,2.922614,Benzene,LB
+37039,0.0010625098,Manganese,LB
+37039,0.05350752,Volatile Organic Compounds,TON
+37039,0.001239715,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.0008716356,Benzo[b]Fluoranthene,LB
+37041,1.9391682,Pyrene,LB
+37041,60.2772,Naphthalene,LB
+37041,0.5447474,PM2.5 Primary (Filt + Cond),TON
+37035,16.205074,Styrene,LB
+37035,0.034664,Benzo[k]Fluoranthene,LB
+37035,0.8894033,Methane,TON
+37035,16842.24,Carbon Dioxide,TON
+37035,2.919596,PM25-Primary from certain diesel engines,TON
+37035,4.689088,PM10 Primary (Filt + Cond),TON
+37035,3.115698,PM2.5 Primary (Filt + Cond),TON
+37035,0.571542,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.143461,Sulfate Portion of PM2.5-PRI,TON
+37027,0.6059622,Toluene,LB
+37027,0.226709,Hexane,LB
+37027,0.000411348,"Benzo[g,h,i,]Perylene",LB
+37027,0.2930624,"1,3-Butadiene",LB
+37027,0.0005829358,Sulfate Portion of PM2.5-PRI,TON
+37027,0.05237362,Volatile Organic Compounds,TON
+37027,1.0223934,Phenanthrene,LB
+37027,9.818572,Carbon Monoxide,TON
+37027,798.0176,Carbon Dioxide,TON
+37027,0.009798602,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.6331042,Acenaphthylene,LB
+37027,0.02378264,Nickel,LB
+37027,1.6275774,Styrene,LB
+37027,15.793406,Benzene,LB
+37023,13.2054,Carbon Monoxide,TON
+37023,10365.014,Xylenes (Mixed Isomers),LB
+37013,10221.088,Toluene,LB
+37013,1808.088,Hexane,LB
+37011,1.6717694,Ethyl Benzene,LB
+37011,0.0010526004,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.0006589026,Manganese,LB
+37011,0.000224184,Arsenic,LB
+37011,0.001744467,Nitrous Oxide,TON
+37011,3.332736e-06,Nitrate portion of PM2.5-PRI,TON
+37001,721.9454,Formaldehyde,LB
+37001,3.134129,PM25-Primary from certain diesel engines,TON
+37001,4.688105,PM10 Primary (Filt + Cond),TON
+37001,18.144114,Hexane,LB
+37001,38.2632,Propionaldehyde,LB
+37001,5.824352,Fluoranthene,LB
+37055,1.1445388,Xylenes (Mixed Isomers),LB
+37055,0.002322976,Acenaphthylene,LB
+37055,0.6606734,"2,2,4-Trimethylpentane",LB
+37055,0.0008784806,Nickel,LB
+37055,0.004572795,Methane,TON
+37055,0.0003323175,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.006025767,Ammonia,TON
+37055,0.0009038756,Organic Carbon portion of PM2.5-PRI,TON
+37055,0.001133722,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.13073562,Propionaldehyde,LB
+37003,3.254842e-06,Chromium (VI),LB
+37003,0.0006238314,Arsenic,LB
+37003,3.388826e-05,Sulfate Portion of PM2.5-PRI,TON
+37003,0.04083077,Volatile Organic Compounds,TON
+37173,2.176684,"2,2,4-Trimethylpentane",LB
+37161,0.558213,Toluene,LB
+37161,0.000423355,Arsenic,LB
+37139,0.007770332,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.00419431,Benzo[k]Fluoranthene,LB
+37139,0.005375658,Arsenic,LB
+37139,530.2511,Carbon Dioxide,TON
+37139,0.02616464,Ammonia,TON
+37139,0.004996699,Organic Carbon portion of PM2.5-PRI,TON
+37099,1.3082852,Ethyl Benzene,LB
+37087,0.00795693,Styrene,LB
+37087,0.0008887648,Benzo[a]Pyrene,LB
+37087,0.0010407756,Manganese,LB
+37087,3.476244e-05,Mercury,LB
+37087,0.002973995,Ammonia,TON
+37087,0.001306041,PM2.5 Primary (Filt + Cond),TON
+37087,3.777858e-05,Sulfate Portion of PM2.5-PRI,TON
+37021,37.91966,Hexane,LB
+37021,0.09584498,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.03838337,Nitrous Oxide,TON
+37021,2.05054,Anthracene,LB
+37021,0.0002165572,Chromium (VI),LB
+37021,0.33763,Chrysene,LB
+37021,0.14377984,Manganese,LB
+37021,0.0002269086,Mercury,LB
+37021,2.404058,Acenaphthene,LB
+37021,0.5555516,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.2124581,Ammonia,TON
+37021,0.09919934,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,20.47456,Hexane,LB
+37015,0.00420335,Anthracene,LB
+37015,0.001530932,Benz[a]Anthracene,LB
+37015,0.002459302,Manganese,LB
+37015,8.241692e-06,Nitrate portion of PM2.5-PRI,TON
+37015,0.001438037,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.07154229,Volatile Organic Compounds,TON
+37009,379.8864,Hexane,LB
+37009,0.1420292,Chrysene,LB
+37009,0.00413971,"Dibenzo[a,h]Anthracene",LB
+37009,0.3390141,Ammonia,TON
+37009,0.09444602,Organic Carbon portion of PM2.5-PRI,TON
+37001,72.26316,Acrolein,LB
+37001,982.1748,Formaldehyde,LB
+37001,2.05931,Benz[a]Anthracene,LB
+37001,408.2402,Acetaldehyde,LB
+37001,21.7736,Carbon Monoxide,TON
+37085,0.3004356,"1,3-Butadiene",LB
+37085,0.002430668,Benzo[b]Fluoranthene,LB
+37085,0.003232972,Nickel,LB
+37085,0.1050548,Naphthalene,LB
+37085,0.02202894,Ammonia,TON
+37071,2.301232,Acrolein,LB
+37071,52.02688,Toluene,LB
+37071,1.50844,Volatile Organic Compounds,TON
+37063,14.904824,Hexane,LB
+37063,0.02072656,Benzo[b]Fluoranthene,LB
+37063,0.07445444,Acenaphthylene,LB
+37063,32.90784,Formaldehyde,LB
+37063,44.97624,Benzene,LB
+37063,0.04451118,Manganese,LB
+37063,0.016041736,Acenaphthene,LB
+37063,0.009319599,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.02086936,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.7535084,Ethyl Benzene,LB
+37005,2.646702,Xylenes (Mixed Isomers),LB
+37005,5.24628e-06,Chromium (VI),LB
+37005,0.0009858352,Benzo[k]Fluoranthene,LB
+37005,0.006148044,Acenaphthylene,LB
+37005,1.2999792,"2,2,4-Trimethylpentane",LB
+37005,0.002711128,Fluorene,LB
+37005,0.08220436,Volatile Organic Compounds,TON
+37159,0.1837514,PM10 Primary (Filt + Cond),TON
+37159,0.001487016,Sulfate Portion of PM2.5-PRI,TON
+37159,1.005443,Volatile Organic Compounds,TON
+37159,0.00011859634,Chromium (VI),LB
+37159,0.01772396,Benzo[b]Fluoranthene,LB
+37159,0.783297,Naphthalene,LB
+37159,0.008140954,Elemental Carbon portion of PM2.5-PRI,TON
+37177,8.045702e-05,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.10956782,Toluene,LB
+37177,4.500008e-05,Anthracene,LB
+37177,9.626596e-05,Pyrene,LB
+37177,4.86425e-05,Chrysene,LB
+37177,5.547616e-05,Benz[a]Anthracene,LB
+37177,0.1383699,Benzene,LB
+37177,0.5277074,Acetaldehyde,LB
+37161,1.6542442,Formaldehyde,LB
+37161,12.220092,Acetaldehyde,LB
+37161,0.002075732,Fluorene,LB
+37161,0.01049792,Ammonia,TON
+37161,8.839644e-06,Nitrate portion of PM2.5-PRI,TON
+37161,0.001561874,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.019535078,Styrene,LB
+37133,0.7438428,Hexane,LB
+37133,0.0013529404,Pyrene,LB
+37133,0.004387274,"Benzo[g,h,i,]Perylene",LB
+37133,0.000857739,Benzo[k]Fluoranthene,LB
+37133,0.0009744464,Nickel,LB
+37133,0.001116857,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.00348199,Benz[a]Anthracene,LB
+37131,0.00606148,Manganese,LB
+37131,0.5327762,Nitrogen Oxides,TON
+37131,2.091946,Ethyl Benzene,LB
+37131,0.003080366,Chrysene,LB
+37131,8.091572,Formaldehyde,LB
+37131,0.003022009,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.0005786002,Chrysene,LB
+37117,8.471812e-05,Mercury,LB
+37117,0.002222373,PM2.5 Primary (Filt + Cond),TON
+37159,81.43592,Acrolein,LB
+37159,0.02726188,"Dibenzo[a,h]Anthracene",LB
+37159,98.2321,Benzene,LB
+37159,2.966864,Acenaphthene,LB
+37159,0.9549199,Methane,TON
+37159,1.028879,Organic Carbon portion of PM2.5-PRI,TON
+37159,7.441639,PM10 Primary (Filt + Cond),TON
+37159,0.3354684,Sulfur Dioxide,TON
+37163,0.0010127248,Arsenic,LB
+37163,0.4817391,Nitrogen Oxides,TON
+37163,0.006019992,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.07141764,Benzo[b]Fluoranthene,LB
+37153,0.08532684,Nickel,LB
+37153,3.45762,Fluorene,LB
+37153,65.27325,Nitrogen Oxides,TON
+37153,3.435537,PM10 Primary (Filt + Cond),TON
+37153,0.2087278,Sulfate Portion of PM2.5-PRI,TON
+37153,3.718447,Volatile Organic Compounds,TON
+37151,0.006690948,Benzo[b]Fluoranthene,LB
+37151,0.06192338,Acenaphthylene,LB
+37151,0.0016543448,Arsenic,LB
+37151,3.4841e-05,Nitrate portion of PM2.5-PRI,TON
+37151,0.7169442,Nitrogen Oxides,TON
+37151,0.006658506,Sulfur Dioxide,TON
+37145,0.008781456,Benz[a]Anthracene,LB
+37145,0.3453628,Benzene,LB
+37145,0.008333079,PM2.5 Primary (Filt + Cond),TON
+37145,0.001559797,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.16017838,Acrolein,LB
+37145,0.013866938,Pyrene,LB
+37145,0.005637406,"Benzo[g,h,i,]Perylene",LB
+37145,0.0019803336,Chrysene,LB
+37145,9.2576,Benzene,LB
+37145,0.017074458,Fluorene,LB
+37145,0.007360319,Methane,TON
+37145,3.274043,Carbon Monoxide,TON
+37167,0.08251506,Styrene,LB
+37167,0.4525328,"1,3-Butadiene",LB
+37167,0.01544815,Acenaphthylene,LB
+37167,0.00018017226,Manganese,LB
+37167,5.505127,Carbon Dioxide,TON
+37167,1.976652e-05,Sulfate Portion of PM2.5-PRI,TON
+37003,0.0850391,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,7.7202,Volatile Organic Compounds,TON
+37003,103.76704,Acrolein,LB
+37003,0.01837574,"Benzo[g,h,i,]Perylene",LB
+37003,0.009114304,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,564.2828,Acetaldehyde,LB
+37003,0.01823851,Nitrous Oxide,TON
+37003,0.1570004,Ammonia,TON
+37077,0.3292776,Toluene,LB
+37077,4.209172e-08,Chromium (VI),LB
+37077,0.0006128014,Acenaphthylene,LB
+37077,0.2333192,Benzene,LB
+37077,0.0004609936,Arsenic,LB
+37077,0.0002491788,Acenaphthene,LB
+37077,0.006375743,PM2.5 Primary (Filt + Cond),TON
+37067,0.8369832,Styrene,LB
+37067,3.293366,"1,3-Butadiene",LB
+37067,0.05851146,Pyrene,LB
+37067,0.0002674404,Chromium (VI),LB
+37067,0.0016972154,"Dibenzo[a,h]Anthracene",LB
+37067,0.0289355,Acenaphthene,LB
+37067,0.06441837,Nitrous Oxide,TON
+37079,0.00019590832,Benzo[b]Fluoranthene,LB
+37079,0.0002876748,Fluoranthene,LB
+37079,0.4810856,Benzene,LB
+37079,0.008595988,Naphthalene,LB
+37079,27.95131,Carbon Dioxide,TON
+37079,0.0003846339,Nitrous Oxide,TON
+37121,0.1223308,Styrene,LB
+37121,0.0020902,Benzo[b]Fluoranthene,LB
+37121,0.8523478,Benzene,LB
+37121,0.002499136,Manganese,LB
+37121,90.54914,Carbon Dioxide,TON
+37127,27.86936,Carbon Monoxide,TON
+37127,3.877415,PM25-Primary from certain diesel engines,TON
+37127,4.188296,PM2.5 Primary (Filt + Cond),TON
+37127,0.2944804,Sulfate Portion of PM2.5-PRI,TON
+37127,24.46596,Hexane,LB
+37179,0.05989792,"Benzo[g,h,i,]Perylene",LB
+37179,0.07466472,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,183.16934,Naphthalene,LB
+37179,4.283536,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.09006366,Nitrous Oxide,TON
+37179,1.111307,Ammonia,TON
+37081,4.813328e-05,Manganese,LB
+37081,3.229484e-06,Acenaphthene,LB
+37081,1.9016604e-05,Naphthalene,LB
+37081,1.22544e-06,Sulfate Portion of PM2.5-PRI,TON
+37081,0.004270912,Xylenes (Mixed Isomers),LB
+37035,246.7216,Acetaldehyde,LB
+37035,0.2610974,Methane,TON
+37035,4165.649,Carbon Dioxide,TON
+37035,0.01292387,Nitrous Oxide,TON
+37035,0.02391696,Sulfate Portion of PM2.5-PRI,TON
+37035,0.00288998,Benzo[k]Fluoranthene,LB
+37161,0.0372468,Phenanthrene,LB
+37161,0.3431002,Naphthalene,LB
+37161,7.588898,Carbon Monoxide,TON
+37099,0.010505992,Styrene,LB
+37099,0.03748932,Acrolein,LB
+37099,3.84914e-06,Chromium (VI),LB
+37099,0.0003452964,Chrysene,LB
+37099,0.0002276558,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.0445617,Nitrogen Oxides,TON
+37165,5.764156,Hexane,LB
+37165,0.04913916,Benzo[b]Fluoranthene,LB
+37165,0.007457943,Nitrous Oxide,TON
+37165,0.6068483,PM2.5 Primary (Filt + Cond),TON
+37165,229.5844,Formaldehyde,LB
+37165,7.408174e-05,Mercury,LB
+37159,0.0005552858,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,0.0003545006,Benzo[b]Fluoranthene,LB
+37159,0.2854438,Formaldehyde,LB
+37159,1.0765376e-05,Arsenic,LB
+37159,0.2819216,Acetaldehyde,LB
+37159,0.04572868,Naphthalene,LB
+37159,1.524967e-05,Sulfate Portion of PM2.5-PRI,TON
+37151,0.02046844,Benzo[k]Fluoranthene,LB
+37151,84.0538,Benzene,LB
+37151,24.2976,Hexane,LB
+37151,87.21,Xylenes (Mixed Isomers),LB
+37151,0.03714324,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.7720547,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.004046462,Manganese,LB
+37135,0.007642202,Naphthalene,LB
+37171,0.06695046,Nitrogen Oxides,TON
+37171,0.002819975,PM10 Primary (Filt + Cond),TON
+37171,0.008421268,Acenaphthylene,LB
+37171,5.624958e-05,"Dibenzo[a,h]Anthracene",LB
+37171,6.346468e-05,Manganese,LB
+37171,1.9737076e-05,Arsenic,LB
+37171,0.0004071448,Elemental Carbon portion of PM2.5-PRI,TON
+37171,1.1522422,Ethyl Benzene,LB
+37171,0.2456154,"1,3-Butadiene",LB
+37171,0.0016427592,Anthracene,LB
+37169,4.540082,Anthracene,LB
+37169,8.85614,Pyrene,LB
+37169,9.33686,Acenaphthylene,LB
+37169,5.552858,Acenaphthene,LB
+37169,1.069325,PM25-Primary from certain diesel engines,TON
+37169,0.7930519,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.002603287,Nitrate portion of PM2.5-PRI,TON
+37159,3.640804,"1,3-Butadiene",LB
+37159,0.00995303,Benzo[k]Fluoranthene,LB
+37159,8.481066,Formaldehyde,LB
+37159,0.1474952,Phenanthrene,LB
+37159,0.004591562,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.6891512,Volatile Organic Compounds,TON
+37149,0.0003844939,Volatile Organic Compounds,TON
+37149,0.00057996,Styrene,LB
+37149,0.0004335912,Acrolein,LB
+37149,2.177402e-05,Anthracene,LB
+37149,1.780406e-05,Benzo[k]Fluoranthene,LB
+37149,0.00753877,Acetaldehyde,LB
+37149,4.926098e-05,Fluorene,LB
+37149,0.01350642,Carbon Monoxide,TON
+37149,13.963774,Toluene,LB
+37149,0.0035895,Benzo[b]Fluoranthene,LB
+37149,0.019184248,Acenaphthylene,LB
+37149,1.4040722,Formaldehyde,LB
+37149,0.004166682,Acenaphthene,LB
+37149,127.7184,Carbon Dioxide,TON
+37149,0.001033764,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.01957807,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.2557224,Fluoranthene,LB
+37151,0.04633934,Chrysene,LB
+37151,1.5301572e-05,Mercury,LB
+37151,0.02574978,Methane,TON
+37151,1192.248,Carbon Dioxide,TON
+37151,0.1103511,Elemental Carbon portion of PM2.5-PRI,TON
+37147,4.96715,PM10-Primary from certain diesel engines,TON
+37147,22.98668,"Benzo[g,h,i,]Perylene",LB
+37147,2.313234,Nickel,LB
+37147,51.52606,Fluorene,LB
+37147,1320.6888,Naphthalene,LB
+37147,0.3211668,Sulfate Portion of PM2.5-PRI,TON
+37145,0.08971674,Anthracene,LB
+37145,1.891453,Propionaldehyde,LB
+37145,9.052124e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.11240538,Acenaphthene,LB
+37145,0.314175,Phenanthrene,LB
+37145,0.03119303,Methane,TON
+37145,0.001853491,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,1.7361312,Propionaldehyde,LB
+37143,34.30908,Formaldehyde,LB
+37143,0.07211452,Benz[a]Anthracene,LB
+37143,3.15296,Benzene,LB
+37143,0.003822726,Nickel,LB
+37143,224.5665,Carbon Dioxide,TON
+37143,0.09995676,PM10 Primary (Filt + Cond),TON
+37143,0.00184491,Sulfate Portion of PM2.5-PRI,TON
+37133,0.2018798,Benz[a]Anthracene,LB
+37133,0.002873962,Mercury,LB
+37133,0.2765196,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,3.13827,Acenaphthylene,LB
+37133,259.4928,Formaldehyde,LB
+37131,0.15094882,Styrene,LB
+37131,0.05843748,Acenaphthylene,LB
+37131,0.2819616,"2,2,4-Trimethylpentane",LB
+37131,0.0008381942,Arsenic,LB
+37131,0.129365,Phenanthrene,LB
+37131,0.01071798,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.011438792,Pyrene,LB
+37095,8.947352e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,1.0960722,Acetaldehyde,LB
+37095,2.640115e-05,Nitrous Oxide,TON
+37095,2.892826e-06,Nitrate portion of PM2.5-PRI,TON
+37095,0.001387315,PM10 Primary (Filt + Cond),TON
+37095,0.0001390141,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,2.56002,Hexane,LB
+37093,0.5656186,Pyrene,LB
+37093,4.854182,Carbon Monoxide,TON
+37093,0.0197288,Ammonia,TON
+37093,0.009086742,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,0.005323614,Sulfur Dioxide,TON
+37093,0.5872028,Volatile Organic Compounds,TON
+37089,2384.3,Ethyl Benzene,LB
+37089,8898.628,Xylenes (Mixed Isomers),LB
+37073,0.02272805,Volatile Organic Compounds,TON
+37073,1.3802402e-06,Chromium (VI),LB
+37073,1.7402932,Acetaldehyde,LB
+37073,0.1369435,Carbon Monoxide,TON
+37073,99.34088,Carbon Dioxide,TON
+37073,0.01162539,Elemental Carbon portion of PM2.5-PRI,TON
+37073,5.063869e-05,Nitrate portion of PM2.5-PRI,TON
+37001,45.24802,Toluene,LB
+37001,0.01114108,Anthracene,LB
+37001,0.00631636,Benzo[k]Fluoranthene,LB
+37001,0.008469091,Methane,TON
+37001,0.0134872,Ammonia,TON
+37001,0.006103754,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.2305339,Volatile Organic Compounds,TON
+37055,9.873139,Carbon Monoxide,TON
+37055,0.05699246,Ammonia,TON
+37055,0.01016838,Organic Carbon portion of PM2.5-PRI,TON
+37055,17.34949,Toluene,LB
+37055,0.03401086,Acenaphthylene,LB
+37055,0.000617577,Mercury,LB
+37055,0.007360572,Acenaphthene,LB
+37033,4.901968e-06,Mercury,LB
+37033,9.37201e-05,Arsenic,LB
+37033,0.009664838,Acrolein,LB
+37033,8.467378e-05,Anthracene,LB
+37033,0.0001446327,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,5.490186e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.3319662,Acrolein,LB
+37011,0.00220956,Chrysene,LB
+37011,0.005120422,Benzo[a]Pyrene,LB
+37011,0.006555836,Fluorene,LB
+37011,0.1955435,Volatile Organic Compounds,TON
+37011,0.0008982102,Phenanthrene,LB
+37011,0.001289346,Methane,TON
+37011,7.83148e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.001228897,Ammonia,TON
+37011,0.02407206,"1,3-Butadiene",LB
+37011,0.03840104,Propionaldehyde,LB
+37011,6.444072e-06,"Dibenzo[a,h]Anthracene",LB
+37011,0.1758686,"2,2,4-Trimethylpentane",LB
+37011,0.0001317547,Benz[a]Anthracene,LB
+37173,0.000362077,Benzo[b]Fluoranthene,LB
+37173,0.0014661948,Acenaphthylene,LB
+37173,2.384565e-06,Nitrate portion of PM2.5-PRI,TON
+37173,0.001539157,Sulfur Dioxide,TON
+37173,0.02278802,Volatile Organic Compounds,TON
+37155,0.0018825996,Manganese,LB
+37155,0.02895606,Naphthalene,LB
+37155,0.08151756,Nitrogen Oxides,TON
+37155,0.001109789,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.016013138,Styrene,LB
+37149,2.883058,Xylenes (Mixed Isomers),LB
+37119,1.5438416,Acrolein,LB
+37119,40.20076,Toluene,LB
+37119,0.06468194,Acenaphthylene,LB
+37119,22.04984,Formaldehyde,LB
+37119,0.013864694,Acenaphthene,LB
+37119,0.08087702,Phenanthrene,LB
+37119,0.4319795,PM10 Primary (Filt + Cond),TON
+37119,0.09032913,PM2.5 Primary (Filt + Cond),TON
+37087,0.000121226,Mercury,LB
+37087,0.00507208,Sulfur Dioxide,TON
+37007,0.1363866,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,0.16242492,Manganese,LB
+37007,9.38507,Ethyl Benzene,LB
+37007,3.014336,Styrene,LB
+37007,0.00896754,"Benzo[g,h,i,]Perylene",LB
+37007,0.010864188,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,1.1953478,Acenaphthylene,LB
+37007,0.2780174,Chrysene,LB
+37177,0.0019581506,"Benzo[g,h,i,]Perylene",LB
+37177,0.009134574,Benzo[b]Fluoranthene,LB
+37177,0.2780638,Acenaphthylene,LB
+37177,5.08471,Benzene,LB
+37177,0.611378,Phenanthrene,LB
+37177,0.3479126,Fluorene,LB
+37177,0.02910027,Ammonia,TON
+37177,0.02165031,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.01684464,Sulfur Dioxide,TON
+37175,0.01063008,Benzo[k]Fluoranthene,LB
+37175,0.8904141,Volatile Organic Compounds,TON
+37165,31.85932,Toluene,LB
+37163,0.01645752,Methane,TON
+37163,0.2639853,PM25-Primary from certain diesel engines,TON
+37163,0.06405412,Organic Carbon portion of PM2.5-PRI,TON
+37163,0.7009292,Acenaphthylene,LB
+37163,115.14132,Formaldehyde,LB
+37163,0.1798206,Benz[a]Anthracene,LB
+37161,0.3009072,"1,3-Butadiene",LB
+37161,0.7294996,Acrolein,LB
+37161,0.0004872484,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.0019138722,Benzo[b]Fluoranthene,LB
+37161,0.0011312222,Nickel,LB
+37161,0.06517158,Fluorene,LB
+37159,0.9633229,PM10 Primary (Filt + Cond),TON
+37159,0.03897018,Sulfur Dioxide,TON
+37159,3.504443,Volatile Organic Compounds,TON
+37159,1.6704462,Anthracene,LB
+37159,41.9568,Xylenes (Mixed Isomers),LB
+37159,611.0566,Formaldehyde,LB
+37159,0.09742802,Manganese,LB
+37155,26.28218,Ethyl Benzene,LB
+37155,2.931984,Anthracene,LB
+37155,0.0002285272,Chromium (VI),LB
+37155,19.261254,"2,2,4-Trimethylpentane",LB
+37155,87.55904,Naphthalene,LB
+37155,2.474918,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.08772788,Sulfate Portion of PM2.5-PRI,TON
+37159,1.557407,Methane,TON
+37159,35517.16,Carbon Dioxide,TON
+37159,0.0019143718,Chromium (VI),LB
+37159,0.6952436,Benz[a]Anthracene,LB
+37159,2.088036,Anthracene,LB
+37159,0.0206093,Chromium (VI),LB
+37159,3.734929,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,0.0785452,Fluoranthene,LB
+37153,0.03404492,Benzo[a]Pyrene,LB
+37153,0.2862348,Phenanthrene,LB
+37153,0.006635399,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.04056632,Ammonia,TON
+37147,0.1329974,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,1.636236,Volatile Organic Compounds,TON
+37147,4.000012,Styrene,LB
+37147,7.254508,"2,2,4-Trimethylpentane",LB
+37147,0.075388,Manganese,LB
+37139,24768.74,Toluene,LB
+37139,1.849896,Chrysene,LB
+37139,1.8557242,Benz[a]Anthracene,LB
+37139,15.38333,Fluorene,LB
+37139,4.398964,Methane,TON
+37139,0.5519297,Elemental Carbon portion of PM2.5-PRI,TON
+37137,684.9326,Ethyl Benzene,LB
+37137,4315.714,Toluene,LB
+37137,2542.974,Xylenes (Mixed Isomers),LB
+37137,1.4409436,Fluoranthene,LB
+37137,0.278384,Chrysene,LB
+37137,0.98531,Acenaphthene,LB
+37137,0.4978212,Methane,TON
+37137,0.001246873,Nitrate portion of PM2.5-PRI,TON
+37133,98.91726,Acetaldehyde,LB
+37133,0.08192225,Methane,TON
+37133,0.04574926,Ammonia,TON
+37133,3.27348,Styrene,LB
+37131,7.969286,Styrene,LB
+37131,6.756042,Propionaldehyde,LB
+37131,0.5625278,Pyrene,LB
+37131,0.0002689262,Chromium (VI),LB
+37131,105.4036,Formaldehyde,LB
+37131,0.00269592,Mercury,LB
+37131,4815.115,Carbon Dioxide,TON
+37131,0.03103013,Elemental Carbon portion of PM2.5-PRI,TON
+37131,10.77462,Nitrogen Oxides,TON
+37131,0.07685307,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.12391322,Benzene,LB
+37123,0.3338063,Methane,TON
+37123,0.0004113622,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.02228432,Ethyl Benzene,LB
+37123,1.0343964,Propionaldehyde,LB
+37123,0.0004607082,Pyrene,LB
+37123,1.640142e-05,"Benzo[g,h,i,]Perylene",LB
+37123,4.295768e-05,Sulfate Portion of PM2.5-PRI,TON
+37117,2.901486,Styrene,LB
+37117,24.4055,Toluene,LB
+37117,280.4688,Formaldehyde,LB
+37117,23.70628,Benzene,LB
+37117,0.04979806,Nickel,LB
+37111,4.665526,Benzene,LB
+37111,0.003603004,Arsenic,LB
+37111,0.158172,PM10-Primary from certain diesel engines,TON
+37111,0.01742373,Ammonia,TON
+37111,0.6854816,Styrene,LB
+37111,1.268515,Hexane,LB
+37111,1.7134092e-05,Chromium (VI),LB
+37111,0.2654858,Acenaphthylene,LB
+37111,50.49976,Formaldehyde,LB
+37111,0.6469412,"1,3-Butadiene",LB
+37111,0.3190192,Naphthalene,LB
+37111,0.01788263,PM10 Primary (Filt + Cond),TON
+37119,350.0972,"1,3-Butadiene",LB
+37119,1236.6442,Acrolein,LB
+37119,0.4980398,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,21.92976,Benz[a]Anthracene,LB
+37119,7483.35,Acetaldehyde,LB
+37119,26.41139,Elemental Carbon portion of PM2.5-PRI,TON
+37119,92.09824,PM10 Primary (Filt + Cond),TON
+37119,47.92196,Benzo[a]Pyrene,LB
+37119,81145.7,Hexane,LB
+37119,1317.245,Propionaldehyde,LB
+37119,31.8588,Arsenic,LB
+37119,72.41196,Acenaphthene,LB
+37119,396.4104,Phenanthrene,LB
+37119,32.21541,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.02825664,Xylenes (Mixed Isomers),LB
+37019,4.725566e-06,Chrysene,LB
+37019,0.004190982,Acetaldehyde,LB
+37019,2.702494e-05,Fluorene,LB
+37019,0.0006931786,Naphthalene,LB
+37019,0.1630633,Carbon Dioxide,TON
+37019,1.399664e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37017,477.2192,Benzene,LB
+37017,163.4195,Acetaldehyde,LB
+37017,112.0233,Carbon Monoxide,TON
+37017,0.2440619,Nitrous Oxide,TON
+37017,0.7985696,Pyrene,LB
+37017,1044.672,Xylenes (Mixed Isomers),LB
+37017,2.195836,Acenaphthylene,LB
+37195,24.64251,Nitrogen Oxides,TON
+37195,6.450158,Volatile Organic Compounds,TON
+37195,4.914804,Fluoranthene,LB
+37195,27.63594,Hexane,LB
+37187,26.36432,Toluene,LB
+37187,97.0047,Acetaldehyde,LB
+37187,0.4562,Acenaphthene,LB
+37187,7392.168,Carbon Dioxide,TON
+37187,0.06251721,Sulfur Dioxide,TON
+37167,13.603102,Pyrene,LB
+37167,14.136416,Acenaphthylene,LB
+37167,0.2117848,Benzo[a]Pyrene,LB
+37167,21.8129,Phenanthrene,LB
+37167,0.3959883,Ammonia,TON
+37167,14.48802,Volatile Organic Compounds,TON
+37161,0.07572015,Methane,TON
+37161,0.8813062,Nitrogen Oxides,TON
+37161,0.009252406,Organic Carbon portion of PM2.5-PRI,TON
+37161,3.390256,"1,3-Butadiene",LB
+37161,2.934158,Hexane,LB
+37161,0.0002022368,Benzo[k]Fluoranthene,LB
+37161,0.004831458,Benzo[a]Pyrene,LB
+37157,8.753516,Styrene,LB
+37157,1669.1266,Xylenes (Mixed Isomers),LB
+37157,0.1605761,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,1.8007234,Acenaphthylene,LB
+37157,148.24602,Formaldehyde,LB
+37157,0.003684068,"Dibenzo[a,h]Anthracene",LB
+37157,0.0015427006,Mercury,LB
+37157,0.3952736,Acenaphthene,LB
+37157,0.8006856,Fluorene,LB
+37157,101.696,Carbon Monoxide,TON
+37157,0.1582483,PM2.5 Primary (Filt + Cond),TON
+37157,0.04107075,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.05236609,Sulfur Dioxide,TON
+37157,13.89417,Volatile Organic Compounds,TON
+37135,6.059088,Ethyl Benzene,LB
+37135,14.510624,Acrolein,LB
+37135,11.696516,Xylenes (Mixed Isomers),LB
+37135,0.610712,Acenaphthene,LB
+37135,20.10386,Naphthalene,LB
+37135,0.004673365,Nitrous Oxide,TON
+37135,1.068776,Volatile Organic Compounds,TON
+37137,0.01627566,PM25-Primary from certain diesel engines,TON
+37137,0.02217138,Anthracene,LB
+37137,0.0004773438,Arsenic,LB
+37137,0.07931974,Phenanthrene,LB
+37131,0.00013025944,Fluoranthene,LB
+37131,4.072522e-05,Chrysene,LB
+37131,0.00018310384,Fluorene,LB
+37131,0.2717546,Carbon Monoxide,TON
+37131,0.004645862,PM10 Primary (Filt + Cond),TON
+37129,0.03108111,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.06813894,Sulfur Dioxide,TON
+37129,0.0475134,Benzo[a]Pyrene,LB
+37129,208.7728,Benzene,LB
+37129,0.3761714,Fluorene,LB
+37123,3.702306,Styrene,LB
+37123,0.011652666,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.1799314,Methane,TON
+37123,9.096509,Carbon Monoxide,TON
+37123,1.291504,PM2.5 Primary (Filt + Cond),TON
+37123,1.574999,Volatile Organic Compounds,TON
+37117,2.053636,Pyrene,LB
+37117,0.009271726,"Benzo[g,h,i,]Perylene",LB
+37117,0.02964308,Nickel,LB
+37117,2816.622,Carbon Dioxide,TON
+37117,0.04067564,Ammonia,TON
+37117,1.138707,PM10 Primary (Filt + Cond),TON
+37121,315.6506,Ethyl Benzene,LB
+37105,21582.16,Toluene,LB
+37105,89.80326,Propionaldehyde,LB
+37105,0.007810402,Chromium (VI),LB
+37105,1.817793,Benzo[b]Fluoranthene,LB
+37105,1.817793,Benzo[k]Fluoranthene,LB
+37105,2.731099,Methane,TON
+37105,2.533751,Nitrous Oxide,TON
+37103,27.48868,Toluene,LB
+37103,0.0016187426,Benzo[k]Fluoranthene,LB
+37103,2.545044,Acenaphthylene,LB
+37103,0.3238028,Benz[a]Anthracene,LB
+37103,0.00010489016,Mercury,LB
+37103,0.07591432,Nickel,LB
+37103,0.1069576,Methane,TON
+37103,0.4216555,PM25-Primary from certain diesel engines,TON
+37103,0.1047776,Ammonia,TON
+37103,10.06777,Nitrogen Oxides,TON
+37103,0.5572848,PM10 Primary (Filt + Cond),TON
+37095,1.583239e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.00013824874,Phenanthrene,LB
+37095,2.198057e-05,Methane,TON
+37093,0.1380726,Naphthalene,LB
+37093,0.1308079,Nitrogen Oxides,TON
+37093,0.001407133,PM2.5 Primary (Filt + Cond),TON
+37089,85.9302,Xylenes (Mixed Isomers),LB
+37087,0.9873704,Styrene,LB
+37087,5.795144,Acrolein,LB
+37087,0.261863,Anthracene,LB
+37087,0.004663164,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.3838934,Acenaphthylene,LB
+37087,0.06141202,Benzo[a]Pyrene,LB
+37087,0.19596616,Benz[a]Anthracene,LB
+37087,0.02737344,Manganese,LB
+37087,0.010183298,Nickel,LB
+37087,32.38692,Acetaldehyde,LB
+37087,0.2284076,Acenaphthene,LB
+37087,0.5228274,Fluorene,LB
+37087,0.002406147,Nitrous Oxide,TON
+37087,0.416896,Volatile Organic Compounds,TON
+37083,21.98236,Toluene,LB
+37083,0.02075548,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.11364248,Manganese,LB
+37083,4.509954,Phenanthrene,LB
+37083,41.05954,Ethyl Benzene,LB
+37083,21.73156,Formaldehyde,LB
+37083,0.07072364,Benzo[a]Pyrene,LB
+37083,51.32582,"2,2,4-Trimethylpentane",LB
+37083,31.75657,Carbon Monoxide,TON
+37083,0.03292405,Sulfur Dioxide,TON
+37083,0.002269272,Sulfate Portion of PM2.5-PRI,TON
+37085,0.02077566,Ethyl Benzene,LB
+37085,0.0009853752,Acrolein,LB
+37085,0.11623384,Toluene,LB
+37085,0.0005630568,Propionaldehyde,LB
+37085,2.32982e-05,Benzo[k]Fluoranthene,LB
+37085,2.129772e-05,Benz[a]Anthracene,LB
+37085,0.0002295262,Phenanthrene,LB
+37085,4.063619e-05,Methane,TON
+37085,7.316404e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37085,2.2552e-05,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.0004992164,"Benzo[g,h,i,]Perylene",LB
+37075,0.000954159,Benzo[b]Fluoranthene,LB
+37075,38.28402,Formaldehyde,LB
+37075,0.001849298,Arsenic,LB
+37075,1.2672114,Ethyl Benzene,LB
+37075,6.753965e-05,Nitrate portion of PM2.5-PRI,TON
+37075,0.04641296,PM10 Primary (Filt + Cond),TON
+37075,0.3090798,Ethyl Benzene,LB
+37075,0.02088832,Anthracene,LB
+37075,8.954896e-05,"Benzo[g,h,i,]Perylene",LB
+37075,1.3863318e-05,"Dibenzo[a,h]Anthracene",LB
+37075,0.2565678,"2,2,4-Trimethylpentane",LB
+37075,8.771027e-06,Nitrate portion of PM2.5-PRI,TON
+37069,0.8517852,Anthracene,LB
+37069,0.014347162,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,5.855422,"2,2,4-Trimethylpentane",LB
+37069,21.90724,Benzene,LB
+37069,6.90637,Carbon Monoxide,TON
+37053,8.807411e-05,Nitrous Oxide,TON
+37053,0.0003075775,Sulfur Dioxide,TON
+37053,0.16428612,Ethyl Benzene,LB
+37053,0.394852,Acrolein,LB
+37053,0.3100438,Xylenes (Mixed Isomers),LB
+37053,0.00014009138,Benzo[k]Fluoranthene,LB
+37053,0.02811282,Acenaphthylene,LB
+37153,1.5889406,Propionaldehyde,LB
+37153,4.008562e-05,Chromium (VI),LB
+37153,0.01135425,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.006103266,Benzo[k]Fluoranthene,LB
+37153,0.0002606264,"Dibenzo[a,h]Anthracene",LB
+37153,6.78594,"2,2,4-Trimethylpentane",LB
+37153,80.53644,Acetaldehyde,LB
+37153,0.007217668,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.009417298,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.005982332,Arsenic,LB
+37113,0.006112068,Acenaphthene,LB
+37113,0.04368427,Methane,TON
+37113,0.740099,"1,3-Butadiene",LB
+37113,12.17004,Xylenes (Mixed Isomers),LB
+37083,0.03458118,Acenaphthylene,LB
+37083,0.006190824,Chrysene,LB
+37083,88.7208,Acetaldehyde,LB
+37083,0.007480636,Acenaphthene,LB
+37083,891.2238,Carbon Dioxide,TON
+37083,0.05197957,PM10 Primary (Filt + Cond),TON
+37169,6.900092,Toluene,LB
+37169,2.250294,Hexane,LB
+37169,0.5989288,Nitrogen Oxides,TON
+37169,0.01483918,PM2.5 Primary (Filt + Cond),TON
+37169,0.0008760964,"Benzo[g,h,i,]Perylene",LB
+37169,0.01229202,PM10-Primary from certain diesel engines,TON
+37157,0.0298621,Manganese,LB
+37157,2.067654e-05,Mercury,LB
+37145,8.395352,"Benzo[g,h,i,]Perylene",LB
+37145,2.894784,Chrysene,LB
+37145,3780.734,Formaldehyde,LB
+37145,632.9912,Naphthalene,LB
+37145,2146.46,Carbon Monoxide,TON
+37145,0.009463958,Nitrate portion of PM2.5-PRI,TON
+37145,1.91232,Sulfur Dioxide,TON
+37199,3.907604,Toluene,LB
+37199,0.17618,Anthracene,LB
+37199,0.4808822,Pyrene,LB
+37199,0.009641558,Benzo[b]Fluoranthene,LB
+37199,0.2841426,Acenaphthylene,LB
+37199,0.06384966,Chrysene,LB
+37199,0.04660571,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.002263777,Sulfate Portion of PM2.5-PRI,TON
+37199,0.3042214,Volatile Organic Compounds,TON
+37199,0.00885752,Manganese,LB
+37199,6.142082e-06,Mercury,LB
+37199,0.1271638,PM10 Primary (Filt + Cond),TON
+37199,0.09756384,PM2.5 Primary (Filt + Cond),TON
+37199,0.01068219,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,2.554376,Xylenes (Mixed Isomers),LB
+37199,0.0012501524,"Benzo[g,h,i,]Perylene",LB
+37199,0.000671362,Benzo[k]Fluoranthene,LB
+37193,0.639301,Ethyl Benzene,LB
+37193,0.0307626,Styrene,LB
+37193,0.002044372,Benzo[a]Pyrene,LB
+37193,0.001063506,Acenaphthene,LB
+37193,0.001361454,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.03029124,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.005884392,Benzo[b]Fluoranthene,LB
+37193,0.7883688,Fluoranthene,LB
+37193,0.06573944,Chrysene,LB
+37193,0.019727662,Benzo[a]Pyrene,LB
+37193,142.89046,Toluene,LB
+37193,0.5121434,Propionaldehyde,LB
+37193,0.007908322,Chrysene,LB
+37193,3.518326e-05,Mercury,LB
+37193,8.194802,Acetaldehyde,LB
+37193,0.002447468,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.0003632967,Sulfate Portion of PM2.5-PRI,TON
+37185,0.00252775,Acenaphthene,LB
+37185,0.8610788,Carbon Monoxide,TON
+37185,1.810704e-07,Chromium (VI),LB
+37185,0.003734724,"Benzo[g,h,i,]Perylene",LB
+37185,0.0014031888,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.06687735,Nitrogen Oxides,TON
+37185,0.04435977,Volatile Organic Compounds,TON
+37189,17.674978,Propionaldehyde,LB
+37189,7.905354,"2,2,4-Trimethylpentane",LB
+37189,1.1010574,Acenaphthene,LB
+37189,2.444616,Fluorene,LB
+37189,35.85082,Naphthalene,LB
+37189,0.007038181,Nitrous Oxide,TON
+37189,0.07038511,Ammonia,TON
+37181,3782.264,Ethyl Benzene,LB
+37181,0.006098358,Chromium (VI),LB
+37181,7.50992,"Benzo[g,h,i,]Perylene",LB
+37181,1.1689076,Arsenic,LB
+37181,2.78828,Methane,TON
+37181,0.09062903,Sulfate Portion of PM2.5-PRI,TON
+37051,0.3005218,Propionaldehyde,LB
+37051,0.002579198,Pyrene,LB
+37051,2.70384,Xylenes (Mixed Isomers),LB
+37051,1.5428756e-05,Chromium (VI),LB
+37051,0.005804756,Acenaphthylene,LB
+37051,0.003492638,Benzo[a]Pyrene,LB
+37051,8.129114e-05,"Dibenzo[a,h]Anthracene",LB
+37051,0.0019285572,Nickel,LB
+37051,14.784876,Acetaldehyde,LB
+37051,0.000935684,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.004099575,Nitrous Oxide,TON
+37051,0.01325657,Ammonia,TON
+37051,0.1450838,Nitrogen Oxides,TON
+37051,0.002479673,Organic Carbon portion of PM2.5-PRI,TON
+37041,4.322276,Xylenes (Mixed Isomers),LB
+37041,0.008926398,"Benzo[g,h,i,]Perylene",LB
+37041,4.210462,Formaldehyde,LB
+37041,26.03354,Acetaldehyde,LB
+37041,0.002120468,Acenaphthene,LB
+37041,0.0008519806,Elemental Carbon portion of PM2.5-PRI,TON
+37041,1.071782e-05,Nitrate portion of PM2.5-PRI,TON
+37041,0.01105898,PM10 Primary (Filt + Cond),TON
+37031,1.3522938,Xylenes (Mixed Isomers),LB
+37031,0.0007278582,Benzo[b]Fluoranthene,LB
+37031,0.0007278582,Benzo[k]Fluoranthene,LB
+37031,0.002882192,Acenaphthylene,LB
+37031,0.003552822,Phenanthrene,LB
+37031,0.08094774,"1,3-Butadiene",LB
+37031,0.8019545,Carbon Monoxide,TON
+37031,114.1877,Carbon Dioxide,TON
+37031,0.06085837,Nitrogen Oxides,TON
+37031,0.000983441,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.235192,Volatile Organic Compounds,TON
+37097,0.5724258,Propionaldehyde,LB
+37097,0.002374734,Acenaphthene,LB
+37097,545.8278,Carbon Dioxide,TON
+37089,0.05548774,Phenanthrene,LB
+37089,8.45959e-05,Nitrate portion of PM2.5-PRI,TON
+37089,8.988628,Hexane,LB
+37087,2.566434,Ethyl Benzene,LB
+37169,0.04434584,Nickel,LB
+37169,17.560668,Acrolein,LB
+37169,0.009896461,Nitrous Oxide,TON
+37169,1.264733,PM10 Primary (Filt + Cond),TON
+37169,0.08220337,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,1.240978,Volatile Organic Compounds,TON
+37165,0.0638244,Pyrene,LB
+37165,0.05604144,Fluoranthene,LB
+37165,0.1692114,Acenaphthylene,LB
+37165,0.20311,Phenanthrene,LB
+37165,0.1013596,PM10 Primary (Filt + Cond),TON
+37165,0.01245885,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.15223038,Styrene,LB
+37163,0.3445504,"1,3-Butadiene",LB
+37163,0.5661848,Propionaldehyde,LB
+37163,10.698532,Formaldehyde,LB
+37163,0.02473376,Benz[a]Anthracene,LB
+37163,0.12820216,Phenanthrene,LB
+37163,1.1714744,Naphthalene,LB
+37163,0.02844932,PM10-Primary from certain diesel engines,TON
+37163,0.0002306743,Nitrous Oxide,TON
+37163,0.0001291707,Nitrate portion of PM2.5-PRI,TON
+37163,0.03493992,PM10 Primary (Filt + Cond),TON
+37163,0.004324182,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.06174961,Volatile Organic Compounds,TON
+37157,9.93235,Propionaldehyde,LB
+37157,1.0297568,Pyrene,LB
+37157,0.07056686,Chrysene,LB
+37157,20.77166,Naphthalene,LB
+37157,0.004184604,Nitrous Oxide,TON
+37157,0.04292115,Ammonia,TON
+37157,3.996909,Nitrogen Oxides,TON
+37157,13.755464,Fluorene,LB
+37157,0.03539343,Nitrous Oxide,TON
+37157,0.4031933,Ammonia,TON
+37157,2.471601,PM10 Primary (Filt + Cond),TON
+37157,146.411,Toluene,LB
+37157,0.0597905,Benzo[b]Fluoranthene,LB
+37157,0.008263214,Benzo[k]Fluoranthene,LB
+37157,0.0003995264,Mercury,LB
+37157,29.6553,Formaldehyde,LB
+37157,0.1325079,PM10 Primary (Filt + Cond),TON
+37147,2.47947,Toluene,LB
+37147,2.628176,Xylenes (Mixed Isomers),LB
+37147,0.0014018068,"Benzo[g,h,i,]Perylene",LB
+37147,0.2298376,Fluoranthene,LB
+37147,0.02343986,Benzo[a]Pyrene,LB
+37147,3.366302,Naphthalene,LB
+37147,0.001328487,Nitrous Oxide,TON
+37147,0.2374067,PM10 Primary (Filt + Cond),TON
+37147,0.1485267,PM2.5 Primary (Filt + Cond),TON
+37147,0.008098949,Sulfate Portion of PM2.5-PRI,TON
+37135,1.8514338,Fluorene,LB
+37135,0.003576611,Nitrate portion of PM2.5-PRI,TON
+37135,0.2861368,Organic Carbon portion of PM2.5-PRI,TON
+37135,1.474418,Volatile Organic Compounds,TON
+37135,0.9317722,Anthracene,LB
+37135,17.131722,Xylenes (Mixed Isomers),LB
+37135,0.00834593,Benzo[k]Fluoranthene,LB
+37119,338060.6,Toluene,LB
+37119,129.81406,"Benzo[g,h,i,]Perylene",LB
+37119,459.965,Acenaphthylene,LB
+37119,3072.779,Nitrogen Oxides,TON
+37117,6.167905e-05,Nitrous Oxide,TON
+37117,0.0001496926,"Benzo[g,h,i,]Perylene",LB
+37117,3.760006e-05,Benz[a]Anthracene,LB
+37117,1.5772094e-05,Manganese,LB
+37107,0.004878928,Nickel,LB
+37107,0.139299,PM10 Primary (Filt + Cond),TON
+37097,38.66072,Hexane,LB
+37097,0.0527004,Pyrene,LB
+37097,8.665824e-06,Chromium (VI),LB
+37097,0.019532002,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.012459894,Benzo[b]Fluoranthene,LB
+37097,0.001083235,Nickel,LB
+37097,0.0016609468,Arsenic,LB
+37097,0.03086358,Acenaphthene,LB
+37097,383.6653,Carbon Dioxide,TON
+37097,0.05251724,PM10 Primary (Filt + Cond),TON
+37085,0.5018694,"1,3-Butadiene",LB
+37085,0.8222068,Propionaldehyde,LB
+37085,0.000793098,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,2.672526e-06,Mercury,LB
+37085,0.0509497,Acenaphthene,LB
+37085,0.0002982861,Nitrous Oxide,TON
+37085,0.04705715,PM10 Primary (Filt + Cond),TON
+37085,0.006125491,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.0011175,Sulfur Dioxide,TON
+37143,0.011580908,"Dibenzo[a,h]Anthracene",LB
+37143,0.3509424,Benz[a]Anthracene,LB
+37143,416.631,Acetaldehyde,LB
+37143,0.1266338,Elemental Carbon portion of PM2.5-PRI,TON
+37143,1.697644,Ammonia,TON
+37143,0.001576426,Nitrate portion of PM2.5-PRI,TON
+37143,0.2919849,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.6046198,PM2.5 Primary (Filt + Cond),TON
+37137,0.14513548,Ethyl Benzene,LB
+37137,0.004703048,Propionaldehyde,LB
+37137,0.2080472,Benzene,LB
+37137,0.0002894514,Methane,TON
+37137,4.734974e-07,Nitrate portion of PM2.5-PRI,TON
+37133,27.82328,Ethyl Benzene,LB
+37133,82.84734,Xylenes (Mixed Isomers),LB
+37133,4.918882,Fluoranthene,LB
+37133,0.4604366,Benzo[a]Pyrene,LB
+37133,0.4835028,Manganese,LB
+37133,0.14160762,Nickel,LB
+37133,0.04114241,Nitrous Oxide,TON
+37133,0.7360542,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.2908567,Sulfur Dioxide,TON
+37127,29.81778,Formaldehyde,LB
+37127,100.27096,Benzene,LB
+37127,0.06887953,Nitrous Oxide,TON
+37127,0.1944897,PM10 Primary (Filt + Cond),TON
+37127,0.04159631,Sulfur Dioxide,TON
+37117,7.931904,Ethyl Benzene,LB
+37117,1.511816,Fluorene,LB
+37117,8029.391,Carbon Dioxide,TON
+37117,1.069605,PM10-Primary from certain diesel engines,TON
+37117,1.406539,PM10 Primary (Filt + Cond),TON
+37117,0.1009109,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,2.93703,Propionaldehyde,LB
+37115,0.04166862,Chrysene,LB
+37115,0.018555646,Benzo[a]Pyrene,LB
+37115,0.18475992,Acenaphthene,LB
+37115,0.008646454,Methane,TON
+37115,0.026636,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.01204043,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.9985659,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.5424486,Sulfate Portion of PM2.5-PRI,TON
+37097,1.244258,Manganese,LB
+37097,721.8614,Acetaldehyde,LB
+37097,64213.47,Carbon Dioxide,TON
+37105,11.502048,Acrolein,LB
+37105,1235.7736,Xylenes (Mixed Isomers),LB
+37105,0.0005993188,Chromium (VI),LB
+37105,0.6261086,"Benzo[g,h,i,]Perylene",LB
+37105,0.2355842,Benzo[a]Pyrene,LB
+37105,0.2027822,Manganese,LB
+37105,0.569789,Acenaphthene,LB
+37105,0.4292089,Methane,TON
+37105,0.2308671,Sulfur Dioxide,TON
+37079,22.76996,Toluene,LB
+37079,17.265908,Hexane,LB
+37073,0.6825648,Acrolein,LB
+37073,0.02741408,Acenaphthene,LB
+37073,0.00454536,Methane,TON
+37073,0.02319918,PM25-Primary from certain diesel engines,TON
+37073,15.32453,Formaldehyde,LB
+37073,0.4089608,"2,2,4-Trimethylpentane",LB
+37073,0.0430461,Acenaphthene,LB
+37073,1.598276,Naphthalene,LB
+37073,0.0005303103,Elemental Carbon portion of PM2.5-PRI,TON
+37073,1.549889e-05,Nitrate portion of PM2.5-PRI,TON
+37077,17.765352,Ethyl Benzene,LB
+37077,2.560574,Acenaphthylene,LB
+37077,0.01140266,"Dibenzo[a,h]Anthracene",LB
+37077,14.615608,"2,2,4-Trimethylpentane",LB
+37077,0.3921357,Methane,TON
+37077,0.4304311,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.012762554,Manganese,LB
+37053,9.12495e-06,Mercury,LB
+37053,1.890731,Carbon Monoxide,TON
+37053,3.723394,Nitrogen Oxides,TON
+37053,0.02624362,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.7168848,Styrene,LB
+37053,0.005371536,Benzo[b]Fluoranthene,LB
+37061,30.4327,Pyrene,LB
+37061,39342.98,Xylenes (Mixed Isomers),LB
+37061,4.827556,Chrysene,LB
+37061,99.5218,Phenanthrene,LB
+37061,37.1577,Fluorene,LB
+37061,598.9452,Nitrogen Oxides,TON
+37061,6.668468,PM2.5 Primary (Filt + Cond),TON
+37049,5.801922,Naphthalene,LB
+37049,53.22818,Carbon Monoxide,TON
+37049,2409.748,Carbon Dioxide,TON
+37049,0.01202778,Elemental Carbon portion of PM2.5-PRI,TON
+37049,2.261868,Acrolein,LB
+37049,2.114396,Propionaldehyde,LB
+37049,0.18824734,Pyrene,LB
+37049,0.03779116,Benzo[k]Fluoranthene,LB
+37049,0.0012727576,"Dibenzo[a,h]Anthracene",LB
+37049,0.0368988,Benz[a]Anthracene,LB
+37047,0.02224638,Benzo[k]Fluoranthene,LB
+37047,0.2212864,Manganese,LB
+37047,0.009470469,Nitrate portion of PM2.5-PRI,TON
+37047,34.40509,Nitrogen Oxides,TON
+37047,2.030675,PM2.5 Primary (Filt + Cond),TON
+37039,0.005164718,PM2.5 Primary (Filt + Cond),TON
+37039,5.329838e-05,Sulfate Portion of PM2.5-PRI,TON
+37039,0.000290349,Fluoranthene,LB
+37039,0.00018741174,Acenaphthene,LB
+37039,0.01062295,PM10 Primary (Filt + Cond),TON
+37043,3643.384,Toluene,LB
+37043,0.2839738,Benzo[b]Fluoranthene,LB
+37043,0.009211164,Mercury,LB
+37043,0.8960838,Acenaphthene,LB
+37043,0.3790262,Nitrous Oxide,TON
+37043,21.65389,Nitrogen Oxides,TON
+37033,0.14029822,Xylenes (Mixed Isomers),LB
+37033,0.009829206,PM10 Primary (Filt + Cond),TON
+37033,0.06326676,Acenaphthene,LB
+37033,2.11044,Naphthalene,LB
+37033,0.00711435,Methane,TON
+37033,0.0004512786,Nitrous Oxide,TON
+37033,0.009647668,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.6234956,"1,3-Butadiene",LB
+37033,0.2135088,Pyrene,LB
+37033,0.0009860266,"Benzo[g,h,i,]Perylene",LB
+37033,0.16057076,Fluoranthene,LB
+37029,1.319641,Styrene,LB
+37029,0.004325724,"Benzo[g,h,i,]Perylene",LB
+37029,0.002910844,Benzo[k]Fluoranthene,LB
+37029,2.741868,"2,2,4-Trimethylpentane",LB
+37029,43.96942,Acetaldehyde,LB
+37029,0.3057872,Acenaphthene,LB
+37029,0.0928485,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.03269242,Ammonia,TON
+37029,0.1015217,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.02720912,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.02369582,Benzo[b]Fluoranthene,LB
+37027,0.02510858,Chrysene,LB
+37027,32.76428,Formaldehyde,LB
+37027,0.0006252692,"Dibenzo[a,h]Anthracene",LB
+37027,0.10610392,Acenaphthene,LB
+37027,5.50749,Naphthalene,LB
+37129,9165.972,Ethyl Benzene,LB
+37129,34111.76,Xylenes (Mixed Isomers),LB
+37129,4.030472,Benz[a]Anthracene,LB
+37129,0.2020914,Mercury,LB
+37129,2.519766,Nickel,LB
+37129,6.974672,Methane,TON
+37129,7.78251,Nitrous Oxide,TON
+37129,10.5673,PM2.5 Primary (Filt + Cond),TON
+37129,6.719714,Sulfur Dioxide,TON
+37021,0.0008723756,"Dibenzo[a,h]Anthracene",LB
+37021,2.91232,Benzene,LB
+37021,13.366924,Acetaldehyde,LB
+37021,3.382308,Naphthalene,LB
+37021,0.5376848,Carbon Monoxide,TON
+37021,1.277501,Nitrogen Oxides,TON
+37055,0.8520478,Carbon Monoxide,TON
+37055,0.02419846,PM10 Primary (Filt + Cond),TON
+37055,0.007882983,PM2.5 Primary (Filt + Cond),TON
+37055,0.18958742,Toluene,LB
+37055,0.0005918904,Acenaphthylene,LB
+37151,898.8176,Styrene,LB
+37151,10.126808,Benzo[k]Fluoranthene,LB
+37151,27689.6,"2,2,4-Trimethylpentane",LB
+37151,6.027528,Manganese,LB
+37151,647.3114,Volatile Organic Compounds,TON
+37139,92.52782,"1,3-Butadiene",LB
+37139,12.548944,Propionaldehyde,LB
+37139,2.897578,Acenaphthylene,LB
+37139,0.1921911,Benzo[a]Pyrene,LB
+37139,1.2896736,Fluorene,LB
+37139,0.4695828,Ammonia,TON
+37101,37.66014,Hexane,LB
+37101,0.0528004,Pyrene,LB
+37101,0.02821894,Benzo[a]Pyrene,LB
+37101,0.00011654368,Mercury,LB
+37101,1.530247,Nitrogen Oxides,TON
+37117,0.6751794,Fluoranthene,LB
+37117,0.11920642,Benzo[k]Fluoranthene,LB
+37117,0.1206735,Chrysene,LB
+37117,349.3946,Hexane,LB
+37117,0.3965834,Anthracene,LB
+37117,0.03804451,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.1819362,PM2.5 Primary (Filt + Cond),TON
+37189,0.14819252,Propionaldehyde,LB
+37189,0.0010577236,Fluoranthene,LB
+37189,0.002843672,Acenaphthylene,LB
+37189,1.7576404,Benzene,LB
+37189,0.004358126,Ammonia,TON
+37189,0.002688975,Sulfur Dioxide,TON
+37185,1.421896,Hexane,LB
+37185,1.2126814e-05,Chromium (VI),LB
+37185,0.7040754,Phenanthrene,LB
+37185,0.008040438,Ammonia,TON
+37185,0.02409066,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.0694029,PM10-Primary from certain diesel engines,TON
+37169,0.002633868,Sulfate Portion of PM2.5-PRI,TON
+37169,2.576568,Ethyl Benzene,LB
+37169,1.6527384e-05,Chromium (VI),LB
+37169,0.00220172,Benzo[b]Fluoranthene,LB
+37169,0.4064238,Acenaphthylene,LB
+37169,7.193014,Benzene,LB
+37169,0.00332984,Arsenic,LB
+37127,486.0914,Ethyl Benzene,LB
+37127,9.239944,Acrolein,LB
+37127,815.8034,Hexane,LB
+37127,0.02612746,Nickel,LB
+37127,0.04006122,Arsenic,LB
+37127,0.9819882,Fluorene,LB
+37127,0.2368681,Methane,TON
+37133,4.78145e-06,Nickel,LB
+37133,0.03375468,PM10 Primary (Filt + Cond),TON
+37133,0.244922,Toluene,LB
+37133,5.014202e-05,Anthracene,LB
+37133,0.00019384728,Pyrene,LB
+37133,2.306568e-05,Chrysene,LB
+37133,23.05292,Acrolein,LB
+37133,0.9720662,Anthracene,LB
+37133,0.4136224,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.309649,Chrysene,LB
+37133,0.4101544,Manganese,LB
+37133,0.2509875,Organic Carbon portion of PM2.5-PRI,TON
+37127,10.690098,"1,3-Butadiene",LB
+37127,350.2482,Formaldehyde,LB
+37127,0.008581218,Nitrous Oxide,TON
+37127,0.065419,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.01734905,Sulfate Portion of PM2.5-PRI,TON
+37127,0.013151704,Benzo[a]Pyrene,LB
+37127,0.007561324,Benz[a]Anthracene,LB
+37127,2.502172e-06,"Dibenzo[a,h]Anthracene",LB
+37127,1.4870024e-05,Manganese,LB
+37127,0.0002695368,Acenaphthene,LB
+37127,1.116045e-05,Sulfur Dioxide,TON
+37121,0.3377032,Acrolein,LB
+37121,0.03121692,Fluoranthene,LB
+37121,4.412456,Formaldehyde,LB
+37121,1.8799426,Acetaldehyde,LB
+37121,0.01990214,PM10-Primary from certain diesel engines,TON
+37121,0.01925526,PM2.5 Primary (Filt + Cond),TON
+37117,2.73372e-08,Chromium (VI),LB
+37117,0.000449924,Acenaphthylene,LB
+37117,0.0016041008,Manganese,LB
+37117,0.0004264488,Fluorene,LB
+37117,0.0005735646,Pyrene,LB
+37111,0.08853796,Styrene,LB
+37111,0.0784944,Propionaldehyde,LB
+37111,0.007374882,Fluorene,LB
+37111,0.0004305489,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.0001985566,Sulfur Dioxide,TON
+37111,0.06328669,Volatile Organic Compounds,TON
+37125,0.001651254,Sulfur Dioxide,TON
+37125,2.30969,"1,3-Butadiene",LB
+37125,31.63802,Hexane,LB
+37125,54.37684,Xylenes (Mixed Isomers),LB
+37123,12705.056,Toluene,LB
+37123,2.583246,Anthracene,LB
+37123,4.05553,"Benzo[g,h,i,]Perylene",LB
+37123,0.4485384,Nickel,LB
+37123,6.079718,Fluorene,LB
+37123,1.263204,Nitrous Oxide,TON
+37123,0.004594682,Nitrate portion of PM2.5-PRI,TON
+37123,0.8606796,Organic Carbon portion of PM2.5-PRI,TON
+37123,3.645751,PM10 Primary (Filt + Cond),TON
+37115,2114.242,Xylenes (Mixed Isomers),LB
+37107,0.017747604,Benzo[a]Pyrene,LB
+37107,0.003224702,Arsenic,LB
+37107,0.0269717,Ammonia,TON
+37107,0.01408331,Sulfur Dioxide,TON
+37103,0.7869418,Propionaldehyde,LB
+37103,0.00018029574,Fluoranthene,LB
+37103,0.00017898278,Arsenic,LB
+37103,0.257687,Methane,TON
+37103,6.588631e-07,Nitrate portion of PM2.5-PRI,TON
+37103,0.006442908,PM10 Primary (Filt + Cond),TON
+37097,1.010573,Toluene,LB
+37097,0.0004470894,Anthracene,LB
+37097,0.000962231,Fluoranthene,LB
+37097,0.0015808298,Acenaphthylene,LB
+37097,6.09497e-05,Mercury,LB
+37097,0.003743518,Naphthalene,LB
+37097,1.817546,Methane,TON
+37097,1.062506,Nitrogen Oxides,TON
+37097,0.05192915,PM10 Primary (Filt + Cond),TON
+37091,765.7156,Xylenes (Mixed Isomers),LB
+37091,0.0002217366,Chromium (VI),LB
+37091,0.5174948,Fluoranthene,LB
+37091,0.002549014,"Dibenzo[a,h]Anthracene",LB
+37091,0.0543644,Manganese,LB
+37091,75.55056,Carbon Monoxide,TON
+37091,0.1822513,Nitrous Oxide,TON
+37089,75.0305,Benzene,LB
+37089,0.6337016,Manganese,LB
+37089,0.10932886,Nickel,LB
+37089,22.68734,Carbon Monoxide,TON
+37087,2.613846,Anthracene,LB
+37087,75.05062,Xylenes (Mixed Isomers),LB
+37087,0.0003183724,Chromium (VI),LB
+37087,0.5467142,Benzo[a]Pyrene,LB
+37087,0.000371849,Mercury,LB
+37087,2.09036,Elemental Carbon portion of PM2.5-PRI,TON
+37087,3.600261,PM2.5 Primary (Filt + Cond),TON
+37087,0.241716,Sulfur Dioxide,TON
+37073,2.583904,"1,3-Butadiene",LB
+37073,0.003709058,"Benzo[g,h,i,]Perylene",LB
+37073,0.018186306,Benzo[b]Fluoranthene,LB
+37073,0.002487094,"Dibenzo[a,h]Anthracene",LB
+37073,0.2627948,Acenaphthene,LB
+37073,0.230941,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.0374968,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,38.27058,Xylenes (Mixed Isomers),LB
+37073,0.00385038,Benzo[k]Fluoranthene,LB
+37073,0.01353392,Methane,TON
+37073,6.584646,Carbon Monoxide,TON
+37073,0.012499,Nitrous Oxide,TON
+37067,264.8774,Acetaldehyde,LB
+37067,0.04101572,Sulfur Dioxide,TON
+37067,3.329076,Volatile Organic Compounds,TON
+37067,7.641742,Styrene,LB
+37059,0.979627,Benz[a]Anthracene,LB
+37059,0.2355796,Ammonia,TON
+37059,0.005117531,Nitrate portion of PM2.5-PRI,TON
+37057,7.622482,Ethyl Benzene,LB
+37057,2.968738,Styrene,LB
+37057,0.14914,Chrysene,LB
+37057,0.1405281,Methane,TON
+37057,0.4143319,PM10-Primary from certain diesel engines,TON
+37057,0.4128245,PM2.5 Primary (Filt + Cond),TON
+37057,0.05847269,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,1.259615,Volatile Organic Compounds,TON
+37051,333.7572,Acrolein,LB
+37051,15.732362,Acenaphthylene,LB
+37049,39.63264,Acrolein,LB
+37049,0.02156466,"Benzo[g,h,i,]Perylene",LB
+37049,14.313978,"2,2,4-Trimethylpentane",LB
+37049,223.5744,Acetaldehyde,LB
+37049,7514.407,Carbon Dioxide,TON
+37049,1.218482,PM25-Primary from certain diesel engines,TON
+37049,0.4781399,Elemental Carbon portion of PM2.5-PRI,TON
+37049,21.9854,Nitrogen Oxides,TON
+37049,1.301535,PM2.5 Primary (Filt + Cond),TON
+37049,0.06590035,Sulfate Portion of PM2.5-PRI,TON
+37039,0.04445392,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,22.98986,Hexane,LB
+37039,2.553726,Anthracene,LB
+37039,0.2798948,Chrysene,LB
+37039,0.002507674,"Dibenzo[a,h]Anthracene",LB
+37039,87.65146,Benzene,LB
+37039,0.7863691,PM10-Primary from certain diesel engines,TON
+37039,22.25898,Hexane,LB
+37031,635.7768,"2,2,4-Trimethylpentane",LB
+37031,0.0011605024,Mercury,LB
+37031,0.014470258,Nickel,LB
+37031,0.03354929,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,0.5436524,Pyrene,LB
+37031,0.00011576202,Chromium (VI),LB
+37031,0.08634886,Benzo[k]Fluoranthene,LB
+37025,15.921828,Toluene,LB
+37025,1.2920914,Fluoranthene,LB
+37025,0.3266078,Benz[a]Anthracene,LB
+37025,0.114754,Manganese,LB
+37025,24.71914,Naphthalene,LB
+37025,0.101953,Methane,TON
+37025,0.2658755,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.001565232,Nitrate portion of PM2.5-PRI,TON
+37025,0.8953216,PM10 Primary (Filt + Cond),TON
+37025,3.148238,Styrene,LB
+37085,0.00381478,"Benzo[g,h,i,]Perylene",LB
+37085,0.009059696,Benzo[b]Fluoranthene,LB
+37085,7.31502e-05,Mercury,LB
+37085,0.03636396,Nickel,LB
+37085,0.8326872,Acenaphthene,LB
+37085,29.22794,Naphthalene,LB
+37075,0.00278656,Fluoranthene,LB
+37075,0.0006540978,Benzo[a]Pyrene,LB
+37075,1.7633036,Benzene,LB
+37075,0.0019162484,Acenaphthene,LB
+37063,23.42164,Toluene,LB
+37063,1.0648658,Anthracene,LB
+37063,18.33832,Propionaldehyde,LB
+37063,0.12884108,Benzo[a]Pyrene,LB
+37063,1.1325294,Acenaphthene,LB
+37063,2.16961,Fluorene,LB
+37063,0.4459608,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.002707868,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.01063505,Benzo[b]Fluoranthene,LB
+37059,0.006744458,Nickel,LB
+37059,0.13622154,Acenaphthene,LB
+37059,0.05021039,Elemental Carbon portion of PM2.5-PRI,TON
+37061,0.02165802,"1,3-Butadiene",LB
+37061,1.439721,Propionaldehyde,LB
+37061,0.19212656,Xylenes (Mixed Isomers),LB
+37061,1.4101266e-06,Nickel,LB
+37061,0.0004716444,Fluorene,LB
+37061,6.005929e-05,Sulfate Portion of PM2.5-PRI,TON
+37061,0.05614603,Volatile Organic Compounds,TON
+37055,0.3676678,"1,3-Butadiene",LB
+37055,0.05948904,Propionaldehyde,LB
+37055,0.002282894,"Benzo[g,h,i,]Perylene",LB
+37055,1.9079696e-05,Nickel,LB
+37055,0.014959826,Phenanthrene,LB
+37055,0.005589498,Fluorene,LB
+37055,2.473335e-06,Nitrate portion of PM2.5-PRI,TON
+37055,0.000231062,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.00796126,Propionaldehyde,LB
+37053,0.0008728,"Benzo[g,h,i,]Perylene",LB
+37053,5.369036e-06,Nickel,LB
+37053,2.781231,Carbon Dioxide,TON
+37053,0.0003187117,PM2.5 Primary (Filt + Cond),TON
+37039,0.1303324,Acrolein,LB
+37039,0.007401946,"Benzo[g,h,i,]Perylene",LB
+37039,7.487458,Benzene,LB
+37039,0.0012385926,Manganese,LB
+37039,2.929051,Carbon Monoxide,TON
+37033,0.004966898,Fluorene,LB
+37033,0.12730392,Naphthalene,LB
+37033,0.0007685949,Methane,TON
+37033,1.076842,Carbon Monoxide,TON
+37033,0.0004620601,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.0003361664,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,1.7098728,Hexane,LB
+37033,0.6957796,Formaldehyde,LB
+37033,0.000788635,Benzo[a]Pyrene,LB
+37033,2.904994,Benzene,LB
+37033,9.330786e-05,Arsenic,LB
+37033,0.05519042,Styrene,LB
+37033,0.0642107,Acrolein,LB
+37023,6.399444,Ethyl Benzene,LB
+37023,6.036404,"1,3-Butadiene",LB
+37023,0.07313558,Chrysene,LB
+37023,9.807328,Carbon Monoxide,TON
+37023,1.093505,Volatile Organic Compounds,TON
+37023,3053.728,Acetaldehyde,LB
+37023,2504.576,Formaldehyde,LB
+37173,2.916148,Fluorene,LB
+37173,341.534,Carbon Monoxide,TON
+37173,2.029762,PM10 Primary (Filt + Cond),TON
+37173,0.02473233,Sulfate Portion of PM2.5-PRI,TON
+37173,218.7396,"1,3-Butadiene",LB
+37173,2.189742,"Benzo[g,h,i,]Perylene",LB
+37173,0.8227204,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,10278.21,Ethyl Benzene,LB
+37167,4.190068,Benzo[k]Fluoranthene,LB
+37167,12662.354,"2,2,4-Trimethylpentane",LB
+37167,16.93118,Acenaphthene,LB
+37167,91.78388,Phenanthrene,LB
+37167,8.719773,Methane,TON
+37167,8.449574,Nitrous Oxide,TON
+37159,0.08946194,Benz[a]Anthracene,LB
+37159,0.02837767,Methane,TON
+37159,4.25214,Nitrogen Oxides,TON
+37159,3.129696,Acrolein,LB
+37159,3.260694,Toluene,LB
+37159,0.00812739,Benzo[b]Fluoranthene,LB
+37155,49.40904,Formaldehyde,LB
+37149,94.5459,Acrolein,LB
+37149,0.014901632,"Benzo[g,h,i,]Perylene",LB
+37149,0.003106426,Benzo[k]Fluoranthene,LB
+37149,0.05916946,Arsenic,LB
+37149,7.000348,Volatile Organic Compounds,TON
+37161,5.068386,"1,3-Butadiene",LB
+37161,12.506576,Acrolein,LB
+37161,0.8636712,Acenaphthylene,LB
+37161,0.221832,Chrysene,LB
+37161,0.3793736,Benz[a]Anthracene,LB
+37161,0.4135826,PM10-Primary from certain diesel engines,TON
+37161,0.002053695,Nitrate portion of PM2.5-PRI,TON
+37161,0.008698142,Sulfur Dioxide,TON
+37137,0.0010496716,Acenaphthene,LB
+37137,9.50927e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.00177215,PM10 Primary (Filt + Cond),TON
+37137,0.0003658702,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.0372906,Anthracene,LB
+37131,2.372542e-05,Chromium (VI),LB
+37131,0.03544426,Benzo[a]Pyrene,LB
+37131,0.0001083821,Nitrate portion of PM2.5-PRI,TON
+37131,0.03952587,PM2.5 Primary (Filt + Cond),TON
+37131,0.7927457,Volatile Organic Compounds,TON
+37117,166.49726,Benzene,LB
+37117,198.56482,Hexane,LB
+37117,2.12606,Propionaldehyde,LB
+37117,0.2139848,Pyrene,LB
+37117,5.269674e-05,Chromium (VI),LB
+37117,0.010101316,Arsenic,LB
+37117,34.87304,Carbon Monoxide,TON
+37117,0.05130434,PM2.5 Primary (Filt + Cond),TON
+37117,0.01319393,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,25.52488,"2,2,4-Trimethylpentane",LB
+37107,9.811786,Phenanthrene,LB
+37107,0.9939948,PM10-Primary from certain diesel engines,TON
+37107,0.6565989,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.1809921,Ammonia,TON
+37107,0.10508858,Propionaldehyde,LB
+37107,0.0015472956,Benz[a]Anthracene,LB
+37107,0.011085676,Fluorene,LB
+37107,0.003770939,Nitrous Oxide,TON
+37107,0.01074174,PM10 Primary (Filt + Cond),TON
+37099,0.02948028,Manganese,LB
+37099,0.010505898,Arsenic,LB
+37099,0.1629153,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.01830128,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,6.444856,Ethyl Benzene,LB
+37099,2.754982,Styrene,LB
+37093,2.779118e-06,Chromium (VI),LB
+37093,0.06876926,Fluoranthene,LB
+37093,0.04577286,Acenaphthylene,LB
+37093,0.8325034,Benzene,LB
+37093,0.0003577236,Nitrous Oxide,TON
+37093,0.04250255,PM2.5 Primary (Filt + Cond),TON
+37087,293984.4,Carbon Dioxide,TON
+37087,12.65837,PM2.5 Primary (Filt + Cond),TON
+37087,556.7368,Styrene,LB
+37085,0.0010568826,"Dibenzo[a,h]Anthracene",LB
+37085,0.0004897336,Mercury,LB
+37085,30.81738,Acetaldehyde,LB
+37085,0.1927096,Fluorene,LB
+37085,1916.391,Carbon Dioxide,TON
+37085,0.07519265,Nitrous Oxide,TON
+37081,0.9107666,Styrene,LB
+37081,85.29504,Xylenes (Mixed Isomers),LB
+37081,0.002929262,Manganese,LB
+37081,0.03745464,Acenaphthene,LB
+37081,0.0758658,Fluorene,LB
+37081,0.04735536,Methane,TON
+37075,0.00013484964,Acenaphthylene,LB
+37075,3.982358e-07,Nickel,LB
+37075,9.1593e-05,Arsenic,LB
+37075,1.5632722,Acetaldehyde,LB
+37075,0.0002882732,Phenanthrene,LB
+37075,0.134511,Methane,TON
+37075,0.010085698,Styrene,LB
+37075,0.0229942,"1,3-Butadiene",LB
+37075,0.7542488,Formaldehyde,LB
+37075,8.7101e-05,Nickel,LB
+37075,0.3221008,Acetaldehyde,LB
+37075,0.03048011,Nitrogen Oxides,TON
+37075,0.001645896,PM2.5 Primary (Filt + Cond),TON
+37075,0.0002839583,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.0003230525,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.004535104,Ammonia,TON
+37049,0.01550518,Styrene,LB
+37049,0.05616162,Acrolein,LB
+37049,0.001060652,Pyrene,LB
+37049,5.191989e-05,Sulfate Portion of PM2.5-PRI,TON
+37035,1.7701126,Acrolein,LB
+37035,4.2377,Propionaldehyde,LB
+37035,0.03745498,Benzo[a]Pyrene,LB
+37035,0.0008709978,"Dibenzo[a,h]Anthracene",LB
+37035,0.01727722,Benz[a]Anthracene,LB
+37035,0.1001641,Phenanthrene,LB
+37035,0.001628418,Sulfate Portion of PM2.5-PRI,TON
+37115,0.2995986,"2,2,4-Trimethylpentane",LB
+37115,0.0005163361,Nitrous Oxide,TON
+37115,0.002000582,Ammonia,TON
+37115,0.02890854,Acrolein,LB
+37115,0.2717192,Hexane,LB
+37115,2.306856e-06,Chromium (VI),LB
+37169,0.2688544,Propionaldehyde,LB
+37169,0.000254921,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.0006361314,Nickel,LB
+37169,0.0009315027,Ammonia,TON
+37169,0.01192119,PM2.5 Primary (Filt + Cond),TON
+37169,0.02931866,Volatile Organic Compounds,TON
+37167,2.97352,"1,3-Butadiene",LB
+37167,0.4550174,Pyrene,LB
+37167,8.20231,Xylenes (Mixed Isomers),LB
+37167,0.001157128,Benzo[b]Fluoranthene,LB
+37167,9.249336,Benzene,LB
+37167,0.017367752,Manganese,LB
+37149,43.67304,Xylenes (Mixed Isomers),LB
+37021,4.830326e-07,Nickel,LB
+37021,0.1709264,Methane,TON
+37021,31.56809,Carbon Dioxide,TON
+37021,0.004418112,Nitrous Oxide,TON
+37021,0.0001671415,Sulfur Dioxide,TON
+37011,2.009478,Styrene,LB
+37011,0.7838804,Acenaphthylene,LB
+37011,4.29506,"2,2,4-Trimethylpentane",LB
+37011,5.089494,Carbon Monoxide,TON
+37009,4.463847e-05,Sulfate Portion of PM2.5-PRI,TON
+37009,0.16150726,Toluene,LB
+37009,2.190024e-08,Chromium (VI),LB
+37009,0.0011642084,Manganese,LB
+37009,0.3526482,Methane,TON
+37005,14.555754,Formaldehyde,LB
+37069,14.198116,Toluene,LB
+37155,37.23676,Toluene,LB
+37155,0.148103,Methane,TON
+37155,0.1492222,Ammonia,TON
+37135,0.01054695,Methane,TON
+37135,1.670889,Carbon Monoxide,TON
+37135,0.01637486,PM10 Primary (Filt + Cond),TON
+37135,0.003124144,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.0016013126,Benzo[k]Fluoranthene,LB
+37135,0.003904086,Manganese,LB
+37127,30.35358,Toluene,LB
+37121,0.11845512,Ethyl Benzene,LB
+37121,0.000182605,Anthracene,LB
+37121,0.04875676,Propionaldehyde,LB
+37121,0.01363539,Nitrogen Oxides,TON
+37121,0.0004097144,Fluorene,LB
+37121,19.36518,Carbon Dioxide,TON
+37007,0.004282596,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.002298496,Benzo[k]Fluoranthene,LB
+37007,0.18563262,Benz[a]Anthracene,LB
+37007,0.1921965,PM2.5 Primary (Filt + Cond),TON
+37007,1.0715234,Styrene,LB
+37189,0.005364451,Nitrate portion of PM2.5-PRI,TON
+37189,1.1121798,Benzo[k]Fluoranthene,LB
+37187,339.6184,Ethyl Benzene,LB
+37179,2.652674,"1,3-Butadiene",LB
+37179,0.04073876,Pyrene,LB
+37179,0.10962578,"Benzo[g,h,i,]Perylene",LB
+37179,0.016878754,Chrysene,LB
+37179,263.697,Acetaldehyde,LB
+37179,0.04293712,Fluorene,LB
+37179,0.05364485,Nitrous Oxide,TON
+37179,0.02896377,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,1.484794,Volatile Organic Compounds,TON
+37179,26.83612,Ethyl Benzene,LB
+37179,0.0002110348,Chromium (VI),LB
+37179,0.007931922,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.625219,Benz[a]Anthracene,LB
+37179,0.4906273,Methane,TON
+37179,0.5187089,Elemental Carbon portion of PM2.5-PRI,TON
+37087,5.60854e-05,Benz[a]Anthracene,LB
+37087,0.001071277,Phenanthrene,LB
+37087,0.0012152774,Naphthalene,LB
+37077,51.87673,Volatile Organic Compounds,TON
+37075,31.538,"1,3-Butadiene",LB
+37075,156.77206,Hexane,LB
+37075,4.355406,Propionaldehyde,LB
+37075,0.3611388,Pyrene,LB
+37075,0.0718936,Benzo[a]Pyrene,LB
+37075,0.0245132,Arsenic,LB
+37075,11.310982,Naphthalene,LB
+37075,0.08084413,PM2.5 Primary (Filt + Cond),TON
+37075,3.546586,Volatile Organic Compounds,TON
+37069,0.00170036,Carbon Monoxide,TON
+37069,0.0001099579,Nitrogen Oxides,TON
+37069,7.854376e-07,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.000602696,"1,3-Butadiene",LB
+37069,0.015849082,Toluene,LB
+37069,7.054298e-06,Pyrene,LB
+37069,1.1487554e-06,Benzo[k]Fluoranthene,LB
+37069,3.46176e-08,"Dibenzo[a,h]Anthracene",LB
+37065,5.182904,Styrene,LB
+37065,43.00068,Acrolein,LB
+37065,78.94178,Xylenes (Mixed Isomers),LB
+37065,0.0002764858,Mercury,LB
+37065,0.05780982,Arsenic,LB
+37065,21451.79,Carbon Dioxide,TON
+37065,0.1767528,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,9.891072,Toluene,LB
+37063,11.210164,Benzene,LB
+37063,0.3443507,PM10-Primary from certain diesel engines,TON
+37063,5.721527,Nitrogen Oxides,TON
+37063,0.1308331,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.6631254,Volatile Organic Compounds,TON
+37055,2.24051,Fluoranthene,LB
+37055,0.4162296,Chrysene,LB
+37055,3.802396,Phenanthrene,LB
+37049,3.38287e-05,Mercury,LB
+37049,0.779077,Naphthalene,LB
+37049,1.9161384,"1,3-Butadiene",LB
+37049,3.374662e-06,Chromium (VI),LB
+37049,2.075099e-05,Nitrate portion of PM2.5-PRI,TON
+37035,8.084674e-05,Pyrene,LB
+37035,0.03296856,Xylenes (Mixed Isomers),LB
+37035,0.00014026042,Phenanthrene,LB
+37035,12.73146,Carbon Dioxide,TON
+37035,0.0003444215,Ammonia,TON
+37035,0.0002328511,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.0004270153,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,9.663446e-06,Sulfate Portion of PM2.5-PRI,TON
+37033,0.002157349,Nitrate portion of PM2.5-PRI,TON
+37033,1.234907,PM10 Primary (Filt + Cond),TON
+37033,7.085036,Ethyl Benzene,LB
+37033,19.865798,Benzene,LB
+37033,0.04356696,Nickel,LB
+37033,0.1012668,Methane,TON
+37027,1.3538612,Ethyl Benzene,LB
+37027,3.148128,Toluene,LB
+37027,3.31298,Xylenes (Mixed Isomers),LB
+37027,41.40622,Formaldehyde,LB
+37027,0.03231214,Benzo[a]Pyrene,LB
+37027,0.004842774,Nickel,LB
+37027,0.2764518,Fluorene,LB
+37027,0.106003,PM10-Primary from certain diesel engines,TON
+37027,0.04606819,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.003842067,Sulfur Dioxide,TON
+37023,0.19468888,Styrene,LB
+37023,0.0005857864,"Benzo[g,h,i,]Perylene",LB
+37023,0.0003856808,Benzo[k]Fluoranthene,LB
+37023,0.0003852594,"Dibenzo[a,h]Anthracene",LB
+37023,0.03159366,Benz[a]Anthracene,LB
+37023,0.002950088,Manganese,LB
+37023,0.04328865,PM10 Primary (Filt + Cond),TON
+37077,0.16169908,"1,3-Butadiene",LB
+37077,3.024984,Toluene,LB
+37077,0.007815312,"Benzo[g,h,i,]Perylene",LB
+37077,0.002896748,Benzo[a]Pyrene,LB
+37077,0.001147438,Acenaphthene,LB
+37077,210.2863,Carbon Dioxide,TON
+37175,0.04053058,Acrolein,LB
+37175,2.87011e-06,Chromium (VI),LB
+37175,0.002500339,Ammonia,TON
+37175,2.990105e-05,Sulfate Portion of PM2.5-PRI,TON
+37167,6.821377e-06,Nitrate portion of PM2.5-PRI,TON
+37167,0.0014445662,Fluoranthene,LB
+37167,0.0009363728,Benzo[k]Fluoranthene,LB
+37137,0.09051152,Hexane,LB
+37137,0.0001624116,Benzo[a]Pyrene,LB
+37137,7.688302e-05,Benz[a]Anthracene,LB
+37137,1.1124478,Acetaldehyde,LB
+37137,9.106654e-05,Acenaphthene,LB
+37137,0.00894381,Nitrogen Oxides,TON
+37137,8.257445e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.0003637742,Sulfur Dioxide,TON
+37123,9.541256,Xylenes (Mixed Isomers),LB
+37123,0.00446978,Benzo[b]Fluoranthene,LB
+37123,0.005437342,Arsenic,LB
+37121,0.013002648,Phenanthrene,LB
+37121,0.0097563,Ammonia,TON
+37121,0.2202392,Nitrogen Oxides,TON
+37121,0.01022065,PM10 Primary (Filt + Cond),TON
+37121,0.008622832,"Benzo[g,h,i,]Perylene",LB
+37121,0.003757248,Fluoranthene,LB
+37121,0.00320396,Benzo[a]Pyrene,LB
+37175,178.80884,Formaldehyde,LB
+37175,4.351498,"2,2,4-Trimethylpentane",LB
+37175,0.002843743,Nitrate portion of PM2.5-PRI,TON
+37175,0.8573463,PM2.5 Primary (Filt + Cond),TON
+37175,71.32032,"1,3-Butadiene",LB
+37175,9.462078,Acrolein,LB
+37175,0.1416468,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.1171312,Benzo[b]Fluoranthene,LB
+37175,0.1213172,Chrysene,LB
+37175,149.57322,Formaldehyde,LB
+37175,0.3013977,Methane,TON
+37175,0.1790791,PM2.5 Primary (Filt + Cond),TON
+37171,2.086846,Propionaldehyde,LB
+37171,272.7154,Xylenes (Mixed Isomers),LB
+37171,0.03184648,Chrysene,LB
+37171,31.4167,Formaldehyde,LB
+37171,43.02253,Carbon Monoxide,TON
+37171,0.01226054,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,1.9236184,Fluorene,LB
+37169,0.1284021,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,2.668362,Pyrene,LB
+37167,2.107734,Ethyl Benzene,LB
+37167,0.9053818,Styrene,LB
+37167,4.30062,Toluene,LB
+37167,0.00738994,Benzo[b]Fluoranthene,LB
+37167,0.3748144,Fluoranthene,LB
+37167,0.0533502,Chrysene,LB
+37167,0.02478178,Benzo[a]Pyrene,LB
+37167,0.1450487,PM10-Primary from certain diesel engines,TON
+37167,0.1436709,PM2.5 Primary (Filt + Cond),TON
+37167,0.03949366,Manganese,LB
+37167,130.55612,Acetaldehyde,LB
+37167,0.06781864,Ammonia,TON
+37167,0.01161855,Sulfate Portion of PM2.5-PRI,TON
+37167,10.037426,Ethyl Benzene,LB
+37167,23.56386,Acrolein,LB
+37167,0.00972191,Benzo[b]Fluoranthene,LB
+37149,44.45022,Propionaldehyde,LB
+37149,0.00956183,Benzo[k]Fluoranthene,LB
+37149,0.8671502,Benz[a]Anthracene,LB
+37149,2.481563,PM10-Primary from certain diesel engines,TON
+37149,0.2391282,Sulfur Dioxide,TON
+37045,1.3902158,Styrene,LB
+37045,8.196992,Acrolein,LB
+37045,4.862926e-05,Chromium (VI),LB
+37045,0.0017203056,Benzo[b]Fluoranthene,LB
+37045,0.5408148,Acenaphthylene,LB
+37045,108.55318,Formaldehyde,LB
+37045,0.06148792,Benz[a]Anthracene,LB
+37045,0.9535273,Nitrogen Oxides,TON
+37041,18.873182,Toluene,LB
+37041,0.3427984,Anthracene,LB
+37041,22.04426,Xylenes (Mixed Isomers),LB
+37041,5.784402e-05,Chromium (VI),LB
+37041,0.015463524,Benzo[b]Fluoranthene,LB
+37041,71.57334,Acetaldehyde,LB
+37041,0.001095528,Nitrate portion of PM2.5-PRI,TON
+37041,0.04758462,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,2.611125,Ammonia,TON
+37035,0.03351542,Sulfate Portion of PM2.5-PRI,TON
+37035,53.90826,Propionaldehyde,LB
+37033,0.01308035,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.00702754,"Dibenzo[a,h]Anthracene",LB
+37033,2.838532,Phenanthrene,LB
+37033,0.6532376,PM10-Primary from certain diesel engines,TON
+37033,0.6009918,PM25-Primary from certain diesel engines,TON
+37033,0.006504931,Nitrous Oxide,TON
+37033,10.33972,Nitrogen Oxides,TON
+37033,0.8291447,PM10 Primary (Filt + Cond),TON
+37029,4.00247,Propionaldehyde,LB
+37029,31.94514,Acetaldehyde,LB
+37029,0.3627883,PM10-Primary from certain diesel engines,TON
+37029,0.08204096,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.02329446,"Dibenzo[a,h]Anthracene",LB
+37019,43.62782,Ethyl Benzene,LB
+37019,0.0005443336,Chromium (VI),LB
+37019,0.0356194,"Benzo[g,h,i,]Perylene",LB
+37019,540.423,Acetaldehyde,LB
+37019,1.580996,Methane,TON
+37019,4.783604,PM10-Primary from certain diesel engines,TON
+37019,130.1355,Nitrogen Oxides,TON
+37009,0.02538396,Anthracene,LB
+37009,0.000205971,Benzo[k]Fluoranthene,LB
+37009,0.2822524,Carbon Monoxide,TON
+37009,0.02017023,Elemental Carbon portion of PM2.5-PRI,TON
+37009,8.924525e-05,Nitrate portion of PM2.5-PRI,TON
+37009,0.7377591,Nitrogen Oxides,TON
+37009,234.4024,Hexane,LB
+37009,0.05321448,Benzo[a]Pyrene,LB
+37009,218.4348,"2,2,4-Trimethylpentane",LB
+37009,0.006230062,Nickel,LB
+37009,0.1066689,Ammonia,TON
+37005,6.8852e-09,Mercury,LB
+37005,4.67567e-05,Phenanthrene,LB
+37005,0.04510743,Carbon Dioxide,TON
+37005,1.190951e-06,Ammonia,TON
+37005,0.0001567057,Volatile Organic Compounds,TON
+37005,1.2652158e-05,Fluoranthene,LB
+37005,2.779858e-06,Benzo[k]Fluoranthene,LB
+37005,2.629094e-06,Chrysene,LB
+37005,0.00264576,Formaldehyde,LB
+37005,6.743402e-05,Chrysene,LB
+37005,0.0015229288,Phenanthrene,LB
+37005,0.014598692,Naphthalene,LB
+37005,0.00019333,Methane,TON
+37005,3.074289,Carbon Dioxide,TON
+37005,7.99045e-05,Ammonia,TON
+37033,0.3938578,"1,3-Butadiene",LB
+37033,7.190552,Toluene,LB
+37033,0.001146003,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.00525317,Nitrous Oxide,TON
+37033,0.001609653,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.2072751,Volatile Organic Compounds,TON
+37009,0.0001939798,Anthracene,LB
+37009,0.0003789062,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.0002028492,Benzo[b]Fluoranthene,LB
+37009,0.0002028492,Benzo[k]Fluoranthene,LB
+37009,0.0002118968,Acenaphthene,LB
+37143,0.006430644,PM2.5 Primary (Filt + Cond),TON
+37143,1.9775158,"1,3-Butadiene",LB
+37143,0.00470867,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.02116346,Fluoranthene,LB
+37143,4.474038,Formaldehyde,LB
+37129,100.1244,Volatile Organic Compounds,TON
+37125,2.977336,Acenaphthylene,LB
+37125,69.60952,Naphthalene,LB
+37125,0.5236827,Organic Carbon portion of PM2.5-PRI,TON
+37125,1.291396,PM2.5 Primary (Filt + Cond),TON
+37125,18.2007,Acenaphthene,LB
+37125,1.480989,Elemental Carbon portion of PM2.5-PRI,TON
+37125,318.4664,Volatile Organic Compounds,TON
+37125,62608.88,Toluene,LB
+37125,30.11646,Pyrene,LB
+37125,4.633488,Chrysene,LB
+37125,5607.904,Formaldehyde,LB
+37121,0.09609222,Fluoranthene,LB
+37121,0.018808846,Chrysene,LB
+37121,0.019375618,Benz[a]Anthracene,LB
+37121,0.004844244,Arsenic,LB
+37121,2.379991,Volatile Organic Compounds,TON
+37119,0.7194998,Nickel,LB
+37119,626.4008,Naphthalene,LB
+37119,2.861919,Methane,TON
+37119,15.29611,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.1804278,Nitrous Oxide,TON
+37119,6.94921,Organic Carbon portion of PM2.5-PRI,TON
+37119,27.40789,PM2.5 Primary (Filt + Cond),TON
+37119,78.61846,Styrene,LB
+37119,178.98302,"1,3-Butadiene",LB
+37119,61.08478,Pyrene,LB
+37119,422.9782,Xylenes (Mixed Isomers),LB
+37119,0.36059,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,40.9774,Styrene,LB
+37119,0.0010009902,Chromium (VI),LB
+37119,2.810842,Benz[a]Anthracene,LB
+37119,0.2323614,Arsenic,LB
+37119,34020.31,Carbon Dioxide,TON
+37099,13.56133,Ethyl Benzene,LB
+37099,11.970964,"1,3-Butadiene",LB
+37099,31.08644,Acrolein,LB
+37099,3.795622,Pyrene,LB
+37099,0.00011132512,Chromium (VI),LB
+37099,0.011437538,"Dibenzo[a,h]Anthracene",LB
+37099,4728.215,Carbon Dioxide,TON
+37099,0.01388264,Nitrous Oxide,TON
+37091,2.174688e-06,Mercury,LB
+37091,2.711696e-05,Nickel,LB
+37091,4.157804e-05,Arsenic,LB
+37091,0.005168614,Acenaphthene,LB
+37091,1.722983,Carbon Monoxide,TON
+37091,0.0004968859,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.001741783,PM2.5 Primary (Filt + Cond),TON
+37091,0.004410554,Anthracene,LB
+37091,0.00857455,Pyrene,LB
+37091,2.169308e-07,Chromium (VI),LB
+37091,0.004625918,"Benzo[g,h,i,]Perylene",LB
+37091,0.0017380468,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.0013520328,Benzo[b]Fluoranthene,LB
+37091,0.007513642,Fluoranthene,LB
+37091,0.0013520328,Benzo[k]Fluoranthene,LB
+37071,0.05194284,"Benzo[g,h,i,]Perylene",LB
+37071,0.0008405048,Nickel,LB
+37071,0.0012887618,Arsenic,LB
+37071,1.107844,Nitrogen Oxides,TON
+37071,0.02164398,PM2.5 Primary (Filt + Cond),TON
+37063,4.761456,Formaldehyde,LB
+37063,0.007642011,Nitrous Oxide,TON
+37065,0.0651006,Acrolein,LB
+37065,0.002911104,Anthracene,LB
+37065,0.00257434,Benzo[a]Pyrene,LB
+37065,0.002394969,Methane,TON
+37065,1.665373,Carbon Monoxide,TON
+37065,0.004232322,Ammonia,TON
+37061,0.0494241,Benzo[a]Pyrene,LB
+37061,0.017909892,Manganese,LB
+37061,0.4795434,Fluoranthene,LB
+37061,1.374795,Carbon Monoxide,TON
+37061,0.1872227,PM10-Primary from certain diesel engines,TON
+37061,0.02991641,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.006896679,Sulfate Portion of PM2.5-PRI,TON
+37049,112.48714,Toluene,LB
+37049,92.33878,Propionaldehyde,LB
+37049,9.250362,Pyrene,LB
+37049,0.07678686,Arsenic,LB
+37049,10931.58,Carbon Dioxide,TON
+37049,10.03357,Volatile Organic Compounds,TON
+37047,0.0014680208,Acenaphthylene,LB
+37047,0.3395284,Benzene,LB
+37047,1.1459826e-06,Mercury,LB
+37047,0.0004576768,PM10 Primary (Filt + Cond),TON
+37045,22.88398,Anthracene,LB
+37045,39.01656,Fluoranthene,LB
+37045,122.0089,Acenaphthylene,LB
+37045,23.99225,Ammonia,TON
+37045,0.02896753,Nitrate portion of PM2.5-PRI,TON
+37035,0.02752524,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.1122691,Manganese,LB
+37035,0.5077402,Organic Carbon portion of PM2.5-PRI,TON
+37035,2.823891,Volatile Organic Compounds,TON
+37025,1.359163,Propionaldehyde,LB
+37025,0.0011249414,"Benzo[g,h,i,]Perylene",LB
+37025,0.0006784136,Arsenic,LB
+37025,10.825542,Acetaldehyde,LB
+37025,0.0757569,PM10 Primary (Filt + Cond),TON
+37025,0.05771271,PM2.5 Primary (Filt + Cond),TON
+37027,0.320255,Chrysene,LB
+37027,224.3514,Formaldehyde,LB
+37027,0.006778632,"Dibenzo[a,h]Anthracene",LB
+37027,5.672082,"2,2,4-Trimethylpentane",LB
+37027,0.5328573,PM2.5 Primary (Filt + Cond),TON
+37023,0.3022212,Toluene,LB
+37023,2.05226e-05,"Benzo[g,h,i,]Perylene",LB
+37023,0.7574474,Carbon Monoxide,TON
+37023,0.06666701,Volatile Organic Compounds,TON
+37023,0.1328906,Benzo[b]Fluoranthene,LB
+37023,0.004163486,"Dibenzo[a,h]Anthracene",LB
+37171,0.18239024,Benzo[b]Fluoranthene,LB
+37171,1.2005224,Chrysene,LB
+37171,466.782,Acetaldehyde,LB
+37171,3.107732,Acenaphthene,LB
+37171,1.020535,Elemental Carbon portion of PM2.5-PRI,TON
+37171,3.485295,PM10 Primary (Filt + Cond),TON
+37171,5.842982,Volatile Organic Compounds,TON
+37165,0.00213357,Benzo[k]Fluoranthene,LB
+37165,0.00318189,Benzo[a]Pyrene,LB
+37165,0.8023692,"1,3-Butadiene",LB
+37165,0.03285872,Phenanthrene,LB
+37165,0.3129436,Naphthalene,LB
+37165,0.0006593685,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.0008008806,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.01324824,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,0.005423436,Benzo[b]Fluoranthene,LB
+37163,0.14118864,Acenaphthylene,LB
+37163,2.89873,Naphthalene,LB
+37159,395.5626,Acrolein,LB
+37159,288.9706,Xylenes (Mixed Isomers),LB
+37159,0.8766979,Ammonia,TON
+37145,0.330419,Styrene,LB
+37145,0.19440178,Fluoranthene,LB
+37145,0.007648808,Manganese,LB
+37145,0.06750151,PM10-Primary from certain diesel engines,TON
+37145,0.0007738768,Nitrous Oxide,TON
+37131,0.6657032,Styrene,LB
+37131,0.1405824,Anthracene,LB
+37131,2.296324,Xylenes (Mixed Isomers),LB
+37131,0.015679094,Benzo[a]Pyrene,LB
+37131,0.06377714,Benz[a]Anthracene,LB
+37131,0.2841562,Fluorene,LB
+37131,0.14704694,Propionaldehyde,LB
+37131,0.011466588,Pyrene,LB
+37131,0.002227608,Benzo[b]Fluoranthene,LB
+37131,0.002101794,Chrysene,LB
+37131,7.391316e-05,"Dibenzo[a,h]Anthracene",LB
+37131,2.230248,Acetaldehyde,LB
+37131,0.03714092,Phenanthrene,LB
+37131,8.980038e-06,Nitrate portion of PM2.5-PRI,TON
+37121,0.006810924,Benzo[b]Fluoranthene,LB
+37121,0.02282848,Benzo[a]Pyrene,LB
+37121,0.0009415948,"Dibenzo[a,h]Anthracene",LB
+37121,0.2153463,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.0011146112,Manganese,LB
+37117,0.03569698,Fluorene,LB
+37117,0.004590111,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.005163233,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.3405526,Xylenes (Mixed Isomers),LB
+37117,1.1343144e-06,Chromium (VI),LB
+37117,0.03857334,Fluoranthene,LB
+37117,0.00015079824,Benzo[k]Fluoranthene,LB
+37117,0.007137506,Chrysene,LB
+37111,42.92136,Hexane,LB
+37111,1.259198,Benz[a]Anthracene,LB
+37111,0.2601476,Nickel,LB
+37111,1.561734,PM2.5 Primary (Filt + Cond),TON
+37123,1.8909174,Formaldehyde,LB
+37123,0.006109012,Acenaphthene,LB
+37123,0.012374262,Fluorene,LB
+37123,0.281064,Nitrogen Oxides,TON
+37123,0.00149541,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.002941102,Sulfur Dioxide,TON
+37123,3.14228,Ethyl Benzene,LB
+37123,11.516624,Xylenes (Mixed Isomers),LB
+37177,0.0011651316,"Dibenzo[a,h]Anthracene",LB
+37177,3.501714,Benzene,LB
+37177,0.4652632,Phenanthrene,LB
+37177,4.063294,Naphthalene,LB
+37177,0.04021295,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.2188023,Volatile Organic Compounds,TON
+37177,0.5552106,Styrene,LB
+37177,1.2463718,"1,3-Butadiene",LB
+37177,0.9114482,Hexane,LB
+37177,0.2980068,Fluoranthene,LB
+37177,0.0551897,Chrysene,LB
+37177,0.2203616,"1,3-Butadiene",LB
+37177,0.00287267,Pyrene,LB
+37177,0.0010432552,Benzo[a]Pyrene,LB
+37177,2.404856e-05,"Dibenzo[a,h]Anthracene",LB
+37177,1.9169774,"2,2,4-Trimethylpentane",LB
+37177,0.548208,Acetaldehyde,LB
+37177,0.0012859,Methane,TON
+37171,2.822934,Acrolein,LB
+37171,1.8267386,Propionaldehyde,LB
+37171,0.07178678,Benz[a]Anthracene,LB
+37171,0.1100982,Acenaphthene,LB
+37171,0.4104118,Phenanthrene,LB
+37171,0.1670452,PM2.5 Primary (Filt + Cond),TON
+37165,0.4381627,Volatile Organic Compounds,TON
+37165,0.2745942,Anthracene,LB
+37165,1.5919746e-05,Chromium (VI),LB
+37165,0.002356352,"Dibenzo[a,h]Anthracene",LB
+37165,576.1513,Carbon Dioxide,TON
+37165,0.0811476,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.01177151,Ammonia,TON
+37163,0.2313145,PM10 Primary (Filt + Cond),TON
+37163,0.005904428,Sulfur Dioxide,TON
+37163,78.9826,Toluene,LB
+37153,2.001995,Carbon Monoxide,TON
+37153,3.753904,Hexane,LB
+37153,0.08087768,Propionaldehyde,LB
+37153,0.009980264,"Benzo[g,h,i,]Perylene",LB
+37153,0.002222166,Benzo[k]Fluoranthene,LB
+37153,0.019371016,Acenaphthylene,LB
+37153,0.0018858528,Chrysene,LB
+37149,0.6945494,Toluene,LB
+37149,0.17453184,Hexane,LB
+37149,0.4766786,Xylenes (Mixed Isomers),LB
+37149,1.0654392e-07,Chromium (VI),LB
+37149,0.0003806262,Fluoranthene,LB
+37149,0.0810625,Formaldehyde,LB
+37149,0.06884488,Acetaldehyde,LB
+37149,4.816193e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37149,9.760249e-05,Nitrous Oxide,TON
+37135,0.004214994,"1,3-Butadiene",LB
+37135,0.0005780962,"Benzo[g,h,i,]Perylene",LB
+37135,0.05510772,"2,2,4-Trimethylpentane",LB
+37135,0.0007730772,Phenanthrene,LB
+37135,0.05552537,Carbon Monoxide,TON
+37135,3.551228e-05,Nitrous Oxide,TON
+37135,6.627965e-07,Nitrate portion of PM2.5-PRI,TON
+37135,0.0001960317,Sulfur Dioxide,TON
+37127,2.22049,Nickel,LB
+37127,9.227296,Nitrous Oxide,TON
+37127,315.5074,Volatile Organic Compounds,TON
+37127,14077.806,Hexane,LB
+37127,373.4634,Propionaldehyde,LB
+37127,0.017764094,Chromium (VI),LB
+37127,5.593752,Chrysene,LB
+37127,5.808252,Benz[a]Anthracene,LB
+37111,0.4903454,Anthracene,LB
+37111,0.3871519,PM10-Primary from certain diesel engines,TON
+37111,0.3561841,PM25-Primary from certain diesel engines,TON
+37111,6.469382,Nitrogen Oxides,TON
+37111,0.1384149,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.7948088,Volatile Organic Compounds,TON
+37087,0.002467754,Nickel,LB
+37087,0.0001109164,Nitrate portion of PM2.5-PRI,TON
+37087,0.01618366,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,0.02082506,Benzo[b]Fluoranthene,LB
+37087,0.03241236,Benzo[a]Pyrene,LB
+37087,0.00019791198,Mercury,LB
+37071,6.377052,Styrene,LB
+37071,35.28076,Acrolein,LB
+37071,8.79825e-05,Chromium (VI),LB
+37071,0.02610028,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,447.5118,Formaldehyde,LB
+37071,0.3439152,Benzo[a]Pyrene,LB
+37071,0.05149194,Nickel,LB
+37071,0.2152249,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,2.888778,Fluorene,LB
+37063,62.38794,Naphthalene,LB
+37063,0.02480985,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.4133048,PM10 Primary (Filt + Cond),TON
+37063,0.04329461,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.03699952,Sulfur Dioxide,TON
+37063,0.01999488,Sulfate Portion of PM2.5-PRI,TON
+37063,16.620922,"1,3-Butadiene",LB
+37063,0.0002465002,Chromium (VI),LB
+37063,0.0013746522,Benzo[k]Fluoranthene,LB
+37063,0.14834112,Chrysene,LB
+37063,16.026174,"2,2,4-Trimethylpentane",LB
+37063,0.3257836,Benz[a]Anthracene,LB
+37051,7.891839,PM2.5 Primary (Filt + Cond),TON
+37051,136.12794,Acrolein,LB
+37051,43.31318,Hexane,LB
+37051,0.0004120156,Chromium (VI),LB
+37051,1.4744398,Benzo[a]Pyrene,LB
+37051,0.06024066,"Dibenzo[a,h]Anthracene",LB
+37051,4.736886,Benz[a]Anthracene,LB
+37051,22.26672,Phenanthrene,LB
+37051,0.6503408,Methane,TON
+37051,0.4297459,Ammonia,TON
+37033,2.860757,Nitrogen Oxides,TON
+37033,2.26405,Toluene,LB
+37033,1.9326468,Propionaldehyde,LB
+37033,0.8624272,"2,2,4-Trimethylpentane",LB
+37033,6.673362e-06,Mercury,LB
+37033,419.3824,Carbon Dioxide,TON
+37033,0.07984111,PM10-Primary from certain diesel engines,TON
+37031,0.0005183872,Anthracene,LB
+37031,0.19742318,Formaldehyde,LB
+37031,2.760194e-07,Mercury,LB
+37031,0.0007093202,Methane,TON
+37031,0.0001852481,PM2.5 Primary (Filt + Cond),TON
+37177,0.003286184,Benzo[b]Fluoranthene,LB
+37177,141.73646,Formaldehyde,LB
+37177,0.0355934,Methane,TON
+37177,9.570347,Carbon Monoxide,TON
+37177,0.002209725,Nitrous Oxide,TON
+37177,0.1764297,PM10 Primary (Filt + Cond),TON
+37173,3.21392,Carbon Monoxide,TON
+37173,0.0003495901,Nitrous Oxide,TON
+37173,0.006436756,Ammonia,TON
+37173,0.3274351,Nitrogen Oxides,TON
+37173,0.4309012,Styrene,LB
+37173,2.65464,Acrolein,LB
+37173,0.9061514,Hexane,LB
+37015,4.577484,Toluene,LB
+37015,0.016342206,Benzo[b]Fluoranthene,LB
+37015,1.7276186,"2,2,4-Trimethylpentane",LB
+37015,0.2425844,PM10 Primary (Filt + Cond),TON
+37149,3.569638,PM10 Primary (Filt + Cond),TON
+37149,49.1367,Propionaldehyde,LB
+37149,1.717995,Benzo[a]Pyrene,LB
+37149,0.03826004,Mercury,LB
+37061,0.0070989,Anthracene,LB
+37061,0.019725926,"Benzo[g,h,i,]Perylene",LB
+37061,0.004004426,Benz[a]Anthracene,LB
+37061,5.790866e-05,Mercury,LB
+37061,0.008936038,Ammonia,TON
+37061,0.002567426,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,8.68178,Hexane,LB
+37173,347.318,Formaldehyde,LB
+37173,0.01001333,Nitrous Oxide,TON
+37173,0.09266759,Sulfur Dioxide,TON
+37173,2.85461,Ethyl Benzene,LB
+37173,0.003406658,Anthracene,LB
+37173,0.0005862498,Manganese,LB
+37173,0.007930574,Fluorene,LB
+37173,0.002944611,PM2.5 Primary (Filt + Cond),TON
+37173,8.679781e-05,Sulfate Portion of PM2.5-PRI,TON
+37173,0.00592369,Fluoranthene,LB
+37173,0.017887578,Acenaphthylene,LB
+37195,17.194374,Acetaldehyde,LB
+37195,0.01493192,Methane,TON
+37195,340.8511,Carbon Dioxide,TON
+37057,1.2632362,Anthracene,LB
+37057,0.05005824,Benzo[a]Pyrene,LB
+37057,0.3524554,Benz[a]Anthracene,LB
+37057,0.001004824,Nitrate portion of PM2.5-PRI,TON
+37057,0.02897267,Sulfur Dioxide,TON
+37057,2.711475,Volatile Organic Compounds,TON
+37051,0.6119036,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.04403185,Sulfate Portion of PM2.5-PRI,TON
+37051,0.02632476,"Benzo[g,h,i,]Perylene",LB
+37051,0.12972296,Benzo[b]Fluoranthene,LB
+37049,47.09788,Toluene,LB
+37049,0.0002489948,Chromium (VI),LB
+37049,1.520645,Acenaphthene,LB
+37049,2.360196,PM10-Primary from certain diesel engines,TON
+37049,0.02490776,Nitrous Oxide,TON
+37049,58.11816,Nitrogen Oxides,TON
+37049,0.4829739,Organic Carbon portion of PM2.5-PRI,TON
+37049,3.436822,PM10 Primary (Filt + Cond),TON
+37049,2.314169,PM2.5 Primary (Filt + Cond),TON
+37049,2.910232,Styrene,LB
+37049,0.08301774,Methane,TON
+37049,8.32722,Nitrogen Oxides,TON
+37049,0.5406772,PM2.5 Primary (Filt + Cond),TON
+37045,14.741976,Pyrene,LB
+37045,0.010068622,"Dibenzo[a,h]Anthracene",LB
+37045,88.72358,"1,3-Butadiene",LB
+37045,15.375082,Fluorene,LB
+37045,14297.16,Carbon Dioxide,TON
+37045,15.55342,Volatile Organic Compounds,TON
+37045,0.0134368,Anthracene,LB
+37045,0.07144016,Acenaphthylene,LB
+37045,12.862466,"2,2,4-Trimethylpentane",LB
+37045,14.146424,Benzene,LB
+37045,5.050584,Acetaldehyde,LB
+37035,11.263216,"1,3-Butadiene",LB
+37035,1.081929,Anthracene,LB
+37035,0.7115374,PM25-Primary from certain diesel engines,TON
+37033,1.085446e-05,Mercury,LB
+37033,0.2617606,Fluorene,LB
+37033,291.9444,Carbon Dioxide,TON
+37033,0.0009008434,Nitrous Oxide,TON
+37033,0.005828056,Organic Carbon portion of PM2.5-PRI,TON
+37033,0.002520285,Sulfur Dioxide,TON
+37033,0.001450549,Sulfate Portion of PM2.5-PRI,TON
+37027,10.722862,Ethyl Benzene,LB
+37027,16.632212,Propionaldehyde,LB
+37027,6.896214e-05,Mercury,LB
+37027,139.3424,Acetaldehyde,LB
+37027,1.776809,Fluorene,LB
+37027,0.2847485,PM25-Primary from certain diesel engines,TON
+37027,0.00722342,Nitrous Oxide,TON
+37027,0.0007654832,Nitrate portion of PM2.5-PRI,TON
+37023,1.1013914,Ethyl Benzene,LB
+37023,0.001685556,Anthracene,LB
+37023,0.002358248,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.00131979,Benzo[b]Fluoranthene,LB
+37023,0.008670486,Acenaphthylene,LB
+37023,0.003826298,Fluorene,LB
+37023,0.0002019225,Nitrous Oxide,TON
+37157,589.2116,Formaldehyde,LB
+37157,0.06326586,Arsenic,LB
+37157,241.71,Acetaldehyde,LB
+37157,6.065608,Phenanthrene,LB
+37157,2.216027,PM25-Primary from certain diesel engines,TON
+37157,0.00534351,Nitrate portion of PM2.5-PRI,TON
+37157,0.4747912,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.2504188,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.02290518,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.3450774,Toluene,LB
+37135,0.0022366,Propionaldehyde,LB
+37135,0.2336234,Xylenes (Mixed Isomers),LB
+37135,5.805346e-05,Benzo[b]Fluoranthene,LB
+37135,1.4464452e-05,Manganese,LB
+37135,0.0002243034,Fluorene,LB
+37135,5.368853e-05,Organic Carbon portion of PM2.5-PRI,TON
+37137,176.4185,Carbon Dioxide,TON
+37137,0.00485132,PM2.5 Primary (Filt + Cond),TON
+37137,5.996625,Carbon Monoxide,TON
+37137,8.508476,Ethyl Benzene,LB
+37137,52.2048,Toluene,LB
+37137,31.53984,Xylenes (Mixed Isomers),LB
+37137,65.8033,Ethyl Benzene,LB
+37137,488.637,Toluene,LB
+37137,0.8818916,Propionaldehyde,LB
+37137,0.060252,"Benzo[g,h,i,]Perylene",LB
+37137,0.003291899,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.04979871,Ammonia,TON
+37137,0.03344331,PM10 Primary (Filt + Cond),TON
+37131,5.59724,Anthracene,LB
+37131,10.901052,Pyrene,LB
+37131,1.8031904,Chrysene,LB
+37131,156.22158,Styrene,LB
+37131,0.9250862,Manganese,LB
+37131,0.7594376,Arsenic,LB
+37131,2.547952,Nitrous Oxide,TON
+37131,0.00729954,Nitrate portion of PM2.5-PRI,TON
+37131,1.59367,Sulfur Dioxide,TON
+37129,8.402772,"1,3-Butadiene",LB
+37129,0.03169772,Benzo[b]Fluoranthene,LB
+37129,0.010294052,Arsenic,LB
+37129,112.76022,Acetaldehyde,LB
+37129,0.2746515,Elemental Carbon portion of PM2.5-PRI,TON
+37123,9.153548,"1,3-Butadiene",LB
+37123,7.580968,Hexane,LB
+37123,0.01272701,"Benzo[g,h,i,]Perylene",LB
+37123,0.06193602,Benzo[b]Fluoranthene,LB
+37123,0.3443357,Elemental Carbon portion of PM2.5-PRI,TON
+37123,1.088048,PM10 Primary (Filt + Cond),TON
+37117,0.2529096,"1,3-Butadiene",LB
+37117,0.5863662,Toluene,LB
+37117,0.5987586,Xylenes (Mixed Isomers),LB
+37117,0.7578926,Benzene,LB
+37117,2.658068e-06,Mercury,LB
+37117,0.0014339244,Nickel,LB
+37117,0.004052161,Methane,TON
+37117,0.004441607,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.01905158,Acenaphthylene,LB
+37115,0.02410476,Fluorene,LB
+37115,0.001501055,Methane,TON
+37115,0.003740026,Elemental Carbon portion of PM2.5-PRI,TON
+37115,4.052097e-05,Nitrate portion of PM2.5-PRI,TON
+37115,0.0002902996,Sulfur Dioxide,TON
+37115,2.65186,Propionaldehyde,LB
+37115,0.19800158,Fluoranthene,LB
+37115,0.2643984,Acenaphthylene,LB
+37115,0.012524528,Chrysene,LB
+37115,5.692971e-05,Nitrate portion of PM2.5-PRI,TON
+37113,2.014975,PM10 Primary (Filt + Cond),TON
+37113,0.1208563,Sulfur Dioxide,TON
+37113,9.71272,"2,2,4-Trimethylpentane",LB
+37113,30.91066,Toluene,LB
+37113,8.489328,Hexane,LB
+37113,0.7999634,Anthracene,LB
+37113,2.17383,Pyrene,LB
+37107,3.005646,Fluorene,LB
+37107,49.57086,Naphthalene,LB
+37107,5672.803,Carbon Dioxide,TON
+37107,1.113755,PM2.5 Primary (Filt + Cond),TON
+37107,12.503714,"2,2,4-Trimethylpentane",LB
+37107,1.041066,Benz[a]Anthracene,LB
+37107,3.19271,Toluene,LB
+37107,0.104229,Anthracene,LB
+37107,3.917794,Benzene,LB
+37107,1.8097522e-05,Mercury,LB
+37107,0.009979422,Nickel,LB
+37107,3.880755,Carbon Monoxide,TON
+37107,308.7281,Carbon Dioxide,TON
+37107,0.2354839,Volatile Organic Compounds,TON
+37107,12.14907,Anthracene,LB
+37107,32094.1,Xylenes (Mixed Isomers),LB
+37107,4.490348,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,3.583252,Benzo[k]Fluoranthene,LB
+37107,3.033976,Manganese,LB
+37107,0.0144183,Nitrate portion of PM2.5-PRI,TON
+37107,5.602444,PM2.5 Primary (Filt + Cond),TON
+37107,0.1486769,Sulfate Portion of PM2.5-PRI,TON
+37097,163.9646,Propionaldehyde,LB
+37097,2.964206,Chrysene,LB
+37097,0.06254964,"Dibenzo[a,h]Anthracene",LB
+37097,5.111108,Benz[a]Anthracene,LB
+37097,0.3772164,Nickel,LB
+37097,1869.3438,Acetaldehyde,LB
+37097,38.79014,Phenanthrene,LB
+37097,457.8182,Naphthalene,LB
+37097,2.603008,Organic Carbon portion of PM2.5-PRI,TON
+37091,1.0622286,Toluene,LB
+37091,0.002285344,Nickel,LB
+37091,6.270058,Acetaldehyde,LB
+37091,0.007615363,Methane,TON
+37091,154.1518,Carbon Dioxide,TON
+37091,0.04128696,PM10-Primary from certain diesel engines,TON
+37091,0.01425754,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.5753338,Nitrogen Oxides,TON
+37091,0.007137025,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.08159146,Volatile Organic Compounds,TON
+37099,0.2313176,Acenaphthylene,LB
+37099,0.02104494,Manganese,LB
+37099,2.636696,Naphthalene,LB
+37099,0.03813295,Methane,TON
+37099,0.005340994,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.001841936,Acenaphthene,LB
+37095,0.001648713,Methane,TON
+37095,0.0004084903,Ammonia,TON
+37095,0.001280906,PM10 Primary (Filt + Cond),TON
+37095,0.0005602534,PM2.5 Primary (Filt + Cond),TON
+37095,0.005993996,Pyrene,LB
+37095,0.00010309528,Manganese,LB
+37095,0.00736754,Fluorene,LB
+37095,0.05967848,Nitrogen Oxides,TON
+37095,0.0009792396,PM2.5 Primary (Filt + Cond),TON
+37091,0.002333118,"Benzo[g,h,i,]Perylene",LB
+37091,0.0007005442,Manganese,LB
+37091,0.003539651,PM10 Primary (Filt + Cond),TON
+37091,0.001162968,PM2.5 Primary (Filt + Cond),TON
+37091,0.04659418,Volatile Organic Compounds,TON
+37089,0.04360782,Benzo[b]Fluoranthene,LB
+37089,0.06389256,Benzo[a]Pyrene,LB
+37089,55.35884,Carbon Monoxide,TON
+37089,0.000211709,Nitrate portion of PM2.5-PRI,TON
+37075,3.294048,Xylenes (Mixed Isomers),LB
+37075,0.002477666,Fluoranthene,LB
+37075,0.007785812,Acenaphthylene,LB
+37075,1.1809944e-05,"Dibenzo[a,h]Anthracene",LB
+37075,8.52388e-05,Arsenic,LB
+37075,0.6194818,Acetaldehyde,LB
+37071,1.3804366,Hexane,LB
+37071,4.315186,Xylenes (Mixed Isomers),LB
+37071,0.012317076,Benzo[b]Fluoranthene,LB
+37071,54.9955,Formaldehyde,LB
+37071,1.4381432,"2,2,4-Trimethylpentane",LB
+37071,1.868797e-05,Mercury,LB
+37071,0.02760208,Sulfate Portion of PM2.5-PRI,TON
+37071,9.621566,Styrene,LB
+37071,64.30252,Benzene,LB
+37071,0.03322516,Arsenic,LB
+37071,2.211944,Acenaphthene,LB
+37071,4469.892,Carbon Dioxide,TON
+37059,12.670486,"Benzo[g,h,i,]Perylene",LB
+37059,3.71928,Benzo[k]Fluoranthene,LB
+37059,1.944871,Manganese,LB
+37059,0.138065,Sulfate Portion of PM2.5-PRI,TON
+37051,0.06189988,Nickel,LB
+37051,0.8524076,Fluoranthene,LB
+37049,22.39516,Styrene,LB
+37049,137.65238,"1,3-Butadiene",LB
+37049,3227.244,Toluene,LB
+37049,0.8921436,"Benzo[g,h,i,]Perylene",LB
+37049,1.3876084,Fluoranthene,LB
+37049,0.00837498,Mercury,LB
+37049,0.16012156,Arsenic,LB
+37049,5.172444,Phenanthrene,LB
+37049,1.9304676,Fluorene,LB
+37037,341.4796,Styrene,LB
+37037,4.011474,Benz[a]Anthracene,LB
+37037,2.865836,Manganese,LB
+37037,203262.6,Carbon Dioxide,TON
+37035,328.0322,Acrolein,LB
+37035,27.16158,Pyrene,LB
+37035,0.03120008,Nitrate portion of PM2.5-PRI,TON
+37035,0.3368865,Sulfate Portion of PM2.5-PRI,TON
+37171,10.12104,Toluene,LB
+37171,0.3167626,Anthracene,LB
+37171,0.0003118652,Benzo[k]Fluoranthene,LB
+37171,0.0265793,Manganese,LB
+37171,5.451342e-05,Mercury,LB
+37171,0.3907002,Acenaphthene,LB
+37171,0.005300942,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.07581583,PM10 Primary (Filt + Cond),TON
+37149,0.003289296,Benzo[a]Pyrene,LB
+37149,0.1097964,Carbon Monoxide,TON
+37149,67.74086,Carbon Dioxide,TON
+37149,0.0002101248,"Benzo[g,h,i,]Perylene",LB
+37149,0.000249745,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.006530062,Chrysene,LB
+37149,0.004610467,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.0262,Anthracene,LB
+37157,15.903324,"2,2,4-Trimethylpentane",LB
+37157,0.03056318,Acenaphthene,LB
+37157,0.16623168,Phenanthrene,LB
+37155,0.08108087,Carbon Monoxide,TON
+37155,0.004462256,Volatile Organic Compounds,TON
+37155,0.00014845876,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,9.557926e-05,Benzo[k]Fluoranthene,LB
+37155,9.123482e-05,Benz[a]Anthracene,LB
+37153,0.019260058,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.010357164,Benzo[k]Fluoranthene,LB
+37153,0.010343596,"Dibenzo[a,h]Anthracene",LB
+37153,0.04434028,Nickel,LB
+37153,0.8911186,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.004363482,Nitrate portion of PM2.5-PRI,TON
+37153,1.441344,PM2.5 Primary (Filt + Cond),TON
+37147,61.98894,Carbon Monoxide,TON
+37147,0.0001900736,Nitrate portion of PM2.5-PRI,TON
+37147,89.07514,Ethyl Benzene,LB
+37147,0.0395791,Benzo[k]Fluoranthene,LB
+37147,0.6535686,Acenaphthylene,LB
+37147,0.05270936,Benzo[a]Pyrene,LB
+37147,0.3840328,Toluene,LB
+37147,0.0001411914,Anthracene,LB
+37147,0.0002481094,Fluoranthene,LB
+37147,8.847668e-05,Benzo[k]Fluoranthene,LB
+37147,0.0007351288,Acenaphthylene,LB
+37147,0.008351404,Naphthalene,LB
+37147,0.0538659,Carbon Monoxide,TON
+37147,0.0002270142,Ammonia,TON
+37147,0.0001871215,Sulfur Dioxide,TON
+37141,3.983632,Toluene,LB
+37141,1.8537328e-05,Chromium (VI),LB
+37141,0.4085186,Fluoranthene,LB
+37141,4.887964,Benzene,LB
+37141,740.7548,Carbon Dioxide,TON
+37141,0.05753472,Elemental Carbon portion of PM2.5-PRI,TON
+37141,2.347013,Nitrogen Oxides,TON
+37141,0.00931261,Sulfur Dioxide,TON
+37141,3.44006,Ethyl Benzene,LB
+37141,1.1241788,Styrene,LB
+37141,0.213061,Anthracene,LB
+37141,0.4059614,Pyrene,LB
+37141,0.00018996834,Benzo[k]Fluoranthene,LB
+37141,0.2649068,Acenaphthene,LB
+37141,0.01974781,PM10-Primary from certain diesel engines,TON
+37141,0.004247105,Elemental Carbon portion of PM2.5-PRI,TON
+37133,19.615516,Toluene,LB
+37133,0.402966,Anthracene,LB
+37133,0.02546434,Arsenic,LB
+37133,1.5474774,Phenanthrene,LB
+37133,0.00816235,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.0166656,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.1835452,PM10 Primary (Filt + Cond),TON
+37133,0.05095294,PM2.5 Primary (Filt + Cond),TON
+37133,0.009011516,Sulfate Portion of PM2.5-PRI,TON
+37133,1.020294,Volatile Organic Compounds,TON
+37121,2.791278e-05,Benzo[k]Fluoranthene,LB
+37121,0.004477722,Chrysene,LB
+37121,2.760004e-05,"Dibenzo[a,h]Anthracene",LB
+37121,7.167212e-06,Mercury,LB
+37121,1.403518,Carbon Monoxide,TON
+37121,0.0007888262,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.0004482158,Sulfate Portion of PM2.5-PRI,TON
+37121,0.5624422,Hexane,LB
+37121,1.9678794,Xylenes (Mixed Isomers),LB
+37123,25.0623,Ethyl Benzene,LB
+37123,33.20152,"2,2,4-Trimethylpentane",LB
+37123,0.008898692,Manganese,LB
+37111,5.258857,Carbon Monoxide,TON
+37111,0.016506204,Pyrene,LB
+37111,0.0441692,Acenaphthylene,LB
+37111,0.005182454,Sulfur Dioxide,TON
+37107,22.94592,Propionaldehyde,LB
+37107,566.4602,Formaldehyde,LB
+37107,0.269597,Benzo[a]Pyrene,LB
+37107,46.93516,Benzene,LB
+37107,0.0647406,Arsenic,LB
+37107,1.317122,Elemental Carbon portion of PM2.5-PRI,TON
+37107,2.637992,Volatile Organic Compounds,TON
+37085,31.54854,Toluene,LB
+37085,12.810356,Hexane,LB
+37085,27.74034,Xylenes (Mixed Isomers),LB
+37085,0.02756338,Benzo[a]Pyrene,LB
+37085,0.02690452,Fluorene,LB
+37085,0.01554462,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.0236669,Phenanthrene,LB
+37063,0.008288574,Fluorene,LB
+37063,0.2138,Naphthalene,LB
+37063,868.0668,Carbon Dioxide,TON
+37063,4.388044e-05,Nitrate portion of PM2.5-PRI,TON
+37063,0.019034462,Acenaphthylene,LB
+37063,0.011041644,Benzo[a]Pyrene,LB
+37033,0.004193362,PM10 Primary (Filt + Cond),TON
+37033,0.7722248,"2,2,4-Trimethylpentane",LB
+37021,4.935894,Hexane,LB
+37001,0.13360722,"1,3-Butadiene",LB
+37001,0.002106646,Pyrene,LB
+37001,2.199884,Xylenes (Mixed Isomers),LB
+37001,9.52663e-05,Mercury,LB
+37001,0.0018213278,Arsenic,LB
+37001,0.0010545352,Acenaphthene,LB
+37001,0.008346003,Ammonia,TON
+37001,9.451018e-06,Nitrate portion of PM2.5-PRI,TON
+37149,0.18839554,Ethyl Benzene,LB
+37149,0.03339812,Acrolein,LB
+37149,0.7986414,Toluene,LB
+37149,0.3408938,Hexane,LB
+37149,0.000647196,Pyrene,LB
+37149,0.0005727946,Fluoranthene,LB
+37149,1.918715e-05,"Dibenzo[a,h]Anthracene",LB
+37149,0.003199656,Methane,TON
+37149,0.0006068604,Nitrous Oxide,TON
+37149,2.73249e-06,Nitrate portion of PM2.5-PRI,TON
+37149,0.002878781,PM10 Primary (Filt + Cond),TON
+37149,3.067373e-05,Sulfate Portion of PM2.5-PRI,TON
+37157,122.65652,Toluene,LB
+37157,0.03104774,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,1.4113398,Benz[a]Anthracene,LB
+37157,0.0005333488,Mercury,LB
+37157,478.4002,Acetaldehyde,LB
+37157,0.008254338,Nitrate portion of PM2.5-PRI,TON
+37157,0.7066887,Organic Carbon portion of PM2.5-PRI,TON
+37157,4.967536,Hexane,LB
+37157,1.0338706,Acenaphthylene,LB
+37157,2.904276e-05,Mercury,LB
+37157,0.4880545,PM10-Primary from certain diesel engines,TON
+37157,7.535118,Nitrogen Oxides,TON
+37157,0.6184027,PM10 Primary (Filt + Cond),TON
+37157,1.105894,Volatile Organic Compounds,TON
+37155,0.3761597,Organic Carbon portion of PM2.5-PRI,TON
+37155,29.39094,Propionaldehyde,LB
+37155,0.4594614,Benzo[k]Fluoranthene,LB
+37147,322.0116,"1,3-Butadiene",LB
+37147,44.42998,Acrolein,LB
+37147,3.764276,Pyrene,LB
+37147,0.6083976,Chrysene,LB
+37147,0.3657854,Arsenic,LB
+37143,1.8588652e-05,Benzo[k]Fluoranthene,LB
+37143,14.737898,Formaldehyde,LB
+37177,6.878742,Toluene,LB
+37177,5.923762,Xylenes (Mixed Isomers),LB
+37173,15.257526,"2,2,4-Trimethylpentane",LB
+37197,4.860104,Fluoranthene,LB
+37197,0.012861768,"Dibenzo[a,h]Anthracene",LB
+37197,681.6826,Acetaldehyde,LB
+37197,2.962394,Methane,TON
+37197,0.07377174,Manganese,LB
+37197,0.047902,Nickel,LB
+37197,0.01245641,Arsenic,LB
+37197,116.76722,Acetaldehyde,LB
+37197,0.06379159,Ammonia,TON
+37153,1.1548818,Ethyl Benzene,LB
+37153,1.7914048,Propionaldehyde,LB
+37153,0.8936594,"2,2,4-Trimethylpentane",LB
+37153,0.7533612,Carbon Monoxide,TON
+37153,0.04154519,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.01826958,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.04113826,Manganese,LB
+37147,1.2304818,Phenanthrene,LB
+37147,5.156328,Ethyl Benzene,LB
+37147,1.8628282,Styrene,LB
+37147,4.318888,"1,3-Butadiene",LB
+37147,0.349076,Anthracene,LB
+37147,0.006363316,Benzo[a]Pyrene,LB
+37145,3.478264,Styrene,LB
+37145,21.73994,Toluene,LB
+37145,0.01328898,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.05215342,Benzo[b]Fluoranthene,LB
+37145,7.461194,"2,2,4-Trimethylpentane",LB
+37145,1.655282,PM10 Primary (Filt + Cond),TON
+37145,0.1324893,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,0.00016616008,Pyrene,LB
+37145,0.03129556,Formaldehyde,LB
+37145,0.07915474,"2,2,4-Trimethylpentane",LB
+37145,0.8229325,Carbon Dioxide,TON
+37145,2.015651e-05,Ammonia,TON
+37145,0.003002738,Benzo[b]Fluoranthene,LB
+37145,0.0006649058,Arsenic,LB
+37145,155.9019,Carbon Dioxide,TON
+37145,0.02670666,PM10 Primary (Filt + Cond),TON
+37145,0.2115294,Volatile Organic Compounds,TON
+37143,0.005945134,Styrene,LB
+37143,0.1781368,Hexane,LB
+37143,0.075529,Formaldehyde,LB
+37143,6.828286e-05,Benz[a]Anthracene,LB
+37143,1.576528e-05,Arsenic,LB
+37143,0.001405723,Phenanthrene,LB
+37143,0.003914578,Volatile Organic Compounds,TON
+37115,29.51064,Acetaldehyde,LB
+37115,0.3758584,Fluorene,LB
+37115,0.03020305,Methane,TON
+37115,0.0018212168,Benzo[b]Fluoranthene,LB
+37115,0.0002530602,Benzo[k]Fluoranthene,LB
+37115,0.0002515554,"Dibenzo[a,h]Anthracene",LB
+37115,1.7334082,"2,2,4-Trimethylpentane",LB
+37115,0.04774852,Benz[a]Anthracene,LB
+37113,3.654586,Styrene,LB
+37113,7.571694,"1,3-Butadiene",LB
+37113,0.0462953,Chrysene,LB
+37113,2.108727,Nitrogen Oxides,TON
+37113,0.02091321,Sulfur Dioxide,TON
+37095,7.333806,Acrolein,LB
+37095,372.0798,Hexane,LB
+37095,0.1126784,Benzo[b]Fluoranthene,LB
+37095,330.8574,"2,2,4-Trimethylpentane",LB
+37095,0.1110536,Benz[a]Anthracene,LB
+37095,1.918728,Phenanthrene,LB
+37079,0.02677086,Ethyl Benzene,LB
+37079,1.8851048e-06,Manganese,LB
+37079,8.439296e-05,Fluorene,LB
+37079,9.519869e-06,Organic Carbon portion of PM2.5-PRI,TON
+37079,1.820675e-05,PM2.5 Primary (Filt + Cond),TON
+37081,3.992848,"1,3-Butadiene",LB
+37081,0.02926022,Benzo[b]Fluoranthene,LB
+37081,3.801348,"2,2,4-Trimethylpentane",LB
+37081,0.4022718,Acenaphthene,LB
+37081,1.635966,Phenanthrene,LB
+37081,0.005838625,Nitrous Oxide,TON
+37081,0.03644885,Sulfur Dioxide,TON
+37081,0.7501799,Volatile Organic Compounds,TON
+37077,0.02582532,Benzo[a]Pyrene,LB
+37077,0.00105794,"Dibenzo[a,h]Anthracene",LB
+37077,0.02333046,Manganese,LB
+37077,0.0010616418,Benzo[k]Fluoranthene,LB
+37077,0.005893757,Sulfate Portion of PM2.5-PRI,TON
+37077,2.437008,Ethyl Benzene,LB
+37077,0.019532984,Chrysene,LB
+37077,0.004347668,Benzo[a]Pyrene,LB
+37077,0.6048874,Phenanthrene,LB
+37077,0.01089137,Ammonia,TON
+37077,0.004313667,Sulfur Dioxide,TON
+37075,0.001065439,Ammonia,TON
+37075,0.01722609,Volatile Organic Compounds,TON
+37075,0.15639172,Propionaldehyde,LB
+37075,0.235298,Xylenes (Mixed Isomers),LB
+37075,8.470078e-05,Benzo[k]Fluoranthene,LB
+37063,18.02825,Styrene,LB
+37063,40.68426,"1,3-Butadiene",LB
+37063,79.92672,Xylenes (Mixed Isomers),LB
+37063,0.0003284646,Chromium (VI),LB
+37063,6.945796,Acenaphthylene,LB
+37063,0.4143085,Methane,TON
+37063,8.824636,PM10 Primary (Filt + Cond),TON
+37063,3.143572e-06,Fluorene,LB
+37063,0.002197617,Carbon Monoxide,TON
+37063,0.2391226,Carbon Dioxide,TON
+37063,6.089e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37063,1.640502e-06,Nitrous Oxide,TON
+37063,1.989195e-06,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.0008847406,"2,2,4-Trimethylpentane",LB
+37053,21.9015,Xylenes (Mixed Isomers),LB
+37053,0.009327856,"Benzo[g,h,i,]Perylene",LB
+37053,1.6162112,Fluoranthene,LB
+37053,0.006253014,Benzo[k]Fluoranthene,LB
+37053,0.15027076,Benzo[a]Pyrene,LB
+37053,0.02439184,Arsenic,LB
+37053,26.63284,Naphthalene,LB
+37053,0.002642354,Nitrate portion of PM2.5-PRI,TON
+37065,0.3157388,Acetaldehyde,LB
+37065,6.468534e-08,Chromium (VI),LB
+37065,0.0006142672,Benzo[b]Fluoranthene,LB
+37065,0.3196204,Formaldehyde,LB
+37065,0.0005556188,Benz[a]Anthracene,LB
+37065,3.140299e-05,Sulfate Portion of PM2.5-PRI,TON
+37063,2.053126e-05,Benz[a]Anthracene,LB
+37063,2.502713,Carbon Dioxide,TON
+37063,1.337899e-07,Nitrate portion of PM2.5-PRI,TON
+37063,0.01637217,Ethyl Benzene,LB
+37063,0.08685806,Toluene,LB
+37063,3.630464e-08,Chromium (VI),LB
+37043,0.14389526,Acenaphthylene,LB
+37043,0.009090862,Benzo[a]Pyrene,LB
+37043,0.03663258,Benz[a]Anthracene,LB
+37043,0.0855732,Acenaphthene,LB
+37043,0.1463328,Volatile Organic Compounds,TON
+37031,3.1905,Hexane,LB
+37031,0.001354984,Benzo[b]Fluoranthene,LB
+37031,956.2493,Carbon Dioxide,TON
+37031,0.01025629,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.008195251,Sulfur Dioxide,TON
+37025,0.007797902,Arsenic,LB
+37025,0.2876228,PM2.5 Primary (Filt + Cond),TON
+37025,107.93228,Acetaldehyde,LB
+37025,0.727493,Acenaphthene,LB
+37025,0.04018616,PM25-Primary from certain diesel engines,TON
+37025,1.955546,Nitrogen Oxides,TON
+37025,0.00010026382,Chromium (VI),LB
+37025,6.917484,"2,2,4-Trimethylpentane",LB
+37025,0.06076162,PM2.5 Primary (Filt + Cond),TON
+37021,0.1759504,Nitrous Oxide,TON
+37021,1.275063,Sulfate Portion of PM2.5-PRI,TON
+37021,23.6146,Volatile Organic Compounds,TON
+37021,195.51164,Propionaldehyde,LB
+37021,0.611229,Benzo[b]Fluoranthene,LB
+37021,0.08628738,Benzo[k]Fluoranthene,LB
+37021,3.96866,Chrysene,LB
+37019,139.788,Xylenes (Mixed Isomers),LB
+37019,0.0005432554,Chromium (VI),LB
+37019,0.0311782,"Benzo[g,h,i,]Perylene",LB
+37019,12.434966,Acenaphthylene,LB
+37019,242.7346,Naphthalene,LB
+37019,14496.21,Carbon Dioxide,TON
+37019,0.4741017,Ammonia,TON
+37019,0.3388209,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.07627358,Sulfate Portion of PM2.5-PRI,TON
+37019,13.979732,"1,3-Butadiene",LB
+37019,0.200349,Pyrene,LB
+37019,0.04507634,Benzo[a]Pyrene,LB
+37019,130.72632,Benzene,LB
+37019,0.000697795,Mercury,LB
+37019,0.08749589,Methane,TON
+37019,0.2505232,PM10 Primary (Filt + Cond),TON
+37019,1.0041132,Acrolein,LB
+37019,0.019441516,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.014011826,Benzo[b]Fluoranthene,LB
+37019,0.2129674,Acenaphthylene,LB
+37019,12.043162,Acetaldehyde,LB
+37019,0.1635463,PM10 Primary (Filt + Cond),TON
+37019,0.01756088,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,443.7418,Formaldehyde,LB
+37019,1068.2594,"2,2,4-Trimethylpentane",LB
+37019,75.18052,Naphthalene,LB
+37019,0.1290651,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.3006747,Organic Carbon portion of PM2.5-PRI,TON
+37019,4951.416,Toluene,LB
+37015,0.03247274,Propionaldehyde,LB
+37015,0.000572041,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.002199434,Fluoranthene,LB
+37015,0.0004180848,Chrysene,LB
+37015,1.3136614e-05,"Dibenzo[a,h]Anthracene",LB
+37015,9.424024e-07,Mercury,LB
+37015,0.0782078,Naphthalene,LB
+37015,0.000128612,Ammonia,TON
+37009,8.078316,Phenanthrene,LB
+37009,5.260146,Fluorene,LB
+37009,0.6811373,PM10-Primary from certain diesel engines,TON
+37009,0.4980638,Elemental Carbon portion of PM2.5-PRI,TON
+37009,15.96767,Nitrogen Oxides,TON
+37009,0.02013129,Sulfate Portion of PM2.5-PRI,TON
+37009,30.7232,"1,3-Butadiene",LB
+37009,13.40764,Toluene,LB
+37009,0.0012682986,Chrysene,LB
+37009,0.01007242,Fluorene,LB
+37009,0.00323908,Methane,TON
+37009,5.880709e-05,Sulfate Portion of PM2.5-PRI,TON
+37001,0.014728296,Benzo[b]Fluoranthene,LB
+37001,0.0493737,Benzo[a]Pyrene,LB
+37001,0.16527,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.004803376,Nitrous Oxide,TON
+37175,0.3612106,Acrolein,LB
+37175,0.00567455,Fluoranthene,LB
+37175,3.526336,"2,2,4-Trimethylpentane",LB
+37175,0.003157278,Arsenic,LB
+37175,0.02379718,Methane,TON
+37175,0.001382573,Elemental Carbon portion of PM2.5-PRI,TON
+37163,7.213566,Ethyl Benzene,LB
+37163,10.59795,Hexane,LB
+37163,0.009228226,Chrysene,LB
+37163,0.015374004,Arsenic,LB
+37163,1450.965,Carbon Dioxide,TON
+37163,1.633854,Nitrogen Oxides,TON
+37163,0.08643787,PM10 Primary (Filt + Cond),TON
+37193,8.143773e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37193,2.20423,Toluene,LB
+37193,1.4734312,Xylenes (Mixed Isomers),LB
+37193,0.03512838,Naphthalene,LB
+37189,3.001522,Ethyl Benzene,LB
+37189,10.592132,Xylenes (Mixed Isomers),LB
+37189,0.00409289,Chrysene,LB
+37189,3.566903e-05,Nitrate portion of PM2.5-PRI,TON
+37189,0.01940626,Sulfur Dioxide,TON
+37191,0.03348382,Styrene,LB
+37191,0.02169496,Acrolein,LB
+37191,0.006271784,Acenaphthylene,LB
+37191,0.0001307781,Elemental Carbon portion of PM2.5-PRI,TON
+37187,27.73748,Acetaldehyde,LB
+37187,0.012757494,Phenanthrene,LB
+37187,0.004593494,Fluorene,LB
+37187,0.1434033,Volatile Organic Compounds,TON
+37187,0.254561,"1,3-Butadiene",LB
+37187,0.004259886,Pyrene,LB
+37187,0.00205058,Benzo[b]Fluoranthene,LB
+37187,0.0037565,Fluoranthene,LB
+37187,0.01044973,Acenaphthylene,LB
+37183,0.006962198,Anthracene,LB
+37183,13.098538,Xylenes (Mixed Isomers),LB
+37183,0.01369335,Benzo[a]Pyrene,LB
+37183,1.5791282,Acetaldehyde,LB
+37183,0.002319049,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.008435913,Organic Carbon portion of PM2.5-PRI,TON
+37183,0.1110314,Volatile Organic Compounds,TON
+37179,19.023294,Phenanthrene,LB
+37179,0.02263202,Nitrate portion of PM2.5-PRI,TON
+37179,7.326069,PM2.5 Primary (Filt + Cond),TON
+37179,8.376834,Volatile Organic Compounds,TON
+37177,0.012399618,Propionaldehyde,LB
+37177,0.002929244,Acenaphthylene,LB
+37177,0.03332456,Naphthalene,LB
+37177,0.0004580214,Methane,TON
+37177,0.03944885,Nitrogen Oxides,TON
+37019,0.13461838,Acenaphthylene,LB
+37019,0.05768656,Benz[a]Anthracene,LB
+37019,2.26521,Benzene,LB
+37019,0.05368663,PM25-Primary from certain diesel engines,TON
+37019,0.01950476,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.05579775,PM2.5 Primary (Filt + Cond),TON
+37019,0.001603574,Sulfate Portion of PM2.5-PRI,TON
+37011,2.639306,Propionaldehyde,LB
+37011,1.1147546,"2,2,4-Trimethylpentane",LB
+37011,20.71268,Acetaldehyde,LB
+37011,0.008355451,Methane,TON
+37011,0.1056662,PM10-Primary from certain diesel engines,TON
+37011,0.02431586,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.02884484,Benzo[b]Fluoranthene,LB
+37011,1.0047158,Fluoranthene,LB
+37011,0.3189584,Benz[a]Anthracene,LB
+37011,0.005180728,Arsenic,LB
+37011,0.5589709,PM25-Primary from certain diesel engines,TON
+37023,5.23518,Ethyl Benzene,LB
+37023,0.008525512,Anthracene,LB
+37023,0.015904996,Fluoranthene,LB
+37023,112.44948,Acetaldehyde,LB
+37023,0.4752518,Naphthalene,LB
+37003,0.08069596,Ethyl Benzene,LB
+37003,0.12371882,Hexane,LB
+37003,0.2869946,Xylenes (Mixed Isomers),LB
+37003,0.112883,Carbon Monoxide,TON
+37119,31.02353,Volatile Organic Compounds,TON
+37079,0.004371166,Sulfate Portion of PM2.5-PRI,TON
+37079,4.224188,Ethyl Benzene,LB
+37079,4.087474,"1,3-Butadiene",LB
+37079,8.67693,Toluene,LB
+37079,6.720684,Propionaldehyde,LB
+37079,3.414002e-05,Chromium (VI),LB
+37079,0.0008294588,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.04172224,Chrysene,LB
+37079,0.7105018,Fluorene,LB
+37079,0.0002284161,Nitrate portion of PM2.5-PRI,TON
+37081,213.1514,Toluene,LB
+37071,0.07718968,Anthracene,LB
+37071,0.0006865654,Benzo[k]Fluoranthene,LB
+37071,21.96196,Formaldehyde,LB
+37071,0.0006856188,"Dibenzo[a,h]Anthracene",LB
+37071,9.44527,Acetaldehyde,LB
+37071,0.4464265,Carbon Monoxide,TON
+37071,0.002065375,Sulfur Dioxide,TON
+37071,3.927609,PM2.5 Primary (Filt + Cond),TON
+37071,249.8098,Xylenes (Mixed Isomers),LB
+37071,0.03792292,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,1863.5,Acetaldehyde,LB
+37071,0.9629398,Methane,TON
+37071,24090.62,Carbon Dioxide,TON
+37069,354.8952,Styrene,LB
+37069,0.007307228,Chromium (VI),LB
+37069,21.51344,Fluoranthene,LB
+37069,0.1274487,Sulfate Portion of PM2.5-PRI,TON
+37063,144.09992,Naphthalene,LB
+37063,22568.9,Carbon Dioxide,TON
+37063,3.219844,PM25-Primary from certain diesel engines,TON
+37063,109.6449,Toluene,LB
+37063,2.957886,Benz[a]Anthracene,LB
+37063,0.000505361,Mercury,LB
+37059,0.247352,Styrene,LB
+37059,0.4569708,Hexane,LB
+37059,0.06018836,Anthracene,LB
+37059,6.839002e-06,Chromium (VI),LB
+37059,0.4644402,"2,2,4-Trimethylpentane",LB
+37059,1.6816544,Benzene,LB
+37059,0.0005622239,Nitrous Oxide,TON
+37065,2.185904,Toluene,LB
+37065,6.538084e-05,Benzo[k]Fluoranthene,LB
+37065,0.8728766,"1,3-Butadiene",LB
+37065,0.006931042,Nickel,LB
+37065,12.47836,Acetaldehyde,LB
+37065,0.0881928,Acenaphthene,LB
+37065,2.802357,Carbon Monoxide,TON
+37065,0.00513976,PM25-Primary from certain diesel engines,TON
+37065,0.2584546,Nitrogen Oxides,TON
+37065,0.0007764326,"Dibenzo[a,h]Anthracene",LB
+37065,72.2698,Benzene,LB
+37065,21.3519,Acetaldehyde,LB
+37065,0.37202,Phenanthrene,LB
+37061,4.091924e-05,Chromium (VI),LB
+37061,0.3363228,Acenaphthylene,LB
+37045,0.2045662,Xylenes (Mixed Isomers),LB
+37045,6.78641e-09,Chromium (VI),LB
+37045,0.00010574096,"Benzo[g,h,i,]Perylene",LB
+37045,2.74316e-05,Benz[a]Anthracene,LB
+37045,5.164418e-06,Manganese,LB
+37045,0.002418809,Nitrogen Oxides,TON
+37039,0.006232302,Styrene,LB
+37039,0.20787,Hexane,LB
+37039,1.603295e-05,Arsenic,LB
+37037,0.00010679508,Anthracene,LB
+37037,0.001615348,Propionaldehyde,LB
+37037,0.00015632298,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.0001910331,Fluoranthene,LB
+37037,5.700608e-05,Manganese,LB
+37037,0.00011932702,Acenaphthene,LB
+37035,0.01735069,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.06787296,Fluoranthene,LB
+37035,0.0003981814,"Dibenzo[a,h]Anthracene",LB
+37035,0.04651188,Acenaphthene,LB
+37035,0.2525976,Phenanthrene,LB
+37035,22.73261,Carbon Monoxide,TON
+37035,0.01225757,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,34.24666,"1,3-Butadiene",LB
+37025,3.766116,Anthracene,LB
+37025,0.03308088,"Dibenzo[a,h]Anthracene",LB
+37025,116.21956,Benzene,LB
+37025,5.282718,PM10-Primary from certain diesel engines,TON
+37025,47.21964,Benzene,LB
+37025,0.0848605,Phenanthrene,LB
+37025,0.005473653,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.005401668,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.0003938018,Sulfate Portion of PM2.5-PRI,TON
+37025,52.72868,Toluene,LB
+37025,0.02314806,Fluoranthene,LB
+37025,72.35186,Hexane,LB
+37025,0.16373252,Pyrene,LB
+37025,0.03293444,Benzo[a]Pyrene,LB
+37025,28.09482,Acetaldehyde,LB
+37025,0.53562,Phenanthrene,LB
+37025,1448.754,Carbon Dioxide,TON
+37007,0.004083338,Benzo[b]Fluoranthene,LB
+37007,0.06881432,Acenaphthylene,LB
+37007,0.006932756,Manganese,LB
+37007,0.007530058,Methane,TON
+37001,0.007022628,Benzo[b]Fluoranthene,LB
+37001,10.748756,"2,2,4-Trimethylpentane",LB
+37001,0.07645352,Nickel,LB
+37001,0.07365695,PM25-Primary from certain diesel engines,TON
+37001,0.00352827,Nitrous Oxide,TON
+37001,0.2480484,PM10 Primary (Filt + Cond),TON
+37001,0.09590659,PM2.5 Primary (Filt + Cond),TON
+37001,2.333435,Volatile Organic Compounds,TON
+37001,0.0019088126,Acenaphthene,LB
+37001,0.0992161,Naphthalene,LB
+37001,0.2549938,"1,3-Butadiene",LB
+37001,0.002900842,Fluoranthene,LB
+37189,37.83732,Toluene,LB
+37189,1.7158478,Acenaphthylene,LB
+37189,0.4104378,Chrysene,LB
+37189,0.2113122,Benzo[a]Pyrene,LB
+37189,0.008853448,"Dibenzo[a,h]Anthracene",LB
+37189,4.2455,Phenanthrene,LB
+37189,0.4275333,Methane,TON
+37189,1.637318,PM25-Primary from certain diesel engines,TON
+37183,0.001231828,Chromium (VI),LB
+37183,0.6613632,Benzo[b]Fluoranthene,LB
+37183,2.216996,Benzo[a]Pyrene,LB
+37183,41.89718,Styrene,LB
+37183,296.364,Acrolein,LB
+37183,392.9504,Toluene,LB
+37183,175.78044,Propionaldehyde,LB
+37183,42.0593,Phenanthrene,LB
+37183,3.319029,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.4750383,PM2.5 Primary (Filt + Cond),TON
+37199,0.02897672,Sulfur Dioxide,TON
+37199,16.75148,Hexane,LB
+37199,16.37824,"2,2,4-Trimethylpentane",LB
+37199,63.59792,Benzene,LB
+37199,618.269,Hexane,LB
+37115,0.0006195934,Fluoranthene,LB
+37115,4.112634e-06,"Dibenzo[a,h]Anthracene",LB
+37115,0.00229699,Phenanthrene,LB
+37115,7.293512,Carbon Dioxide,TON
+37115,0.0001074448,Organic Carbon portion of PM2.5-PRI,TON
+37109,10.94567,Benzene,LB
+37109,6.04046,Propionaldehyde,LB
+37109,0.013120214,Benzo[b]Fluoranthene,LB
+37109,71.30542,Toluene,LB
+37101,0.08812747,PM25-Primary from certain diesel engines,TON
+37101,0.03673082,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.1130367,PM10 Primary (Filt + Cond),TON
+37101,2.317192,Toluene,LB
+37101,0.3817278,Pyrene,LB
+37101,0.05184176,Chrysene,LB
+37101,0.8968766,"2,2,4-Trimethylpentane",LB
+37101,0.273238,Fluorene,LB
+37095,0.010067298,Manganese,LB
+37095,6.658252e-06,Mercury,LB
+37095,3.401925,Nitrogen Oxides,TON
+37095,0.00440528,Sulfur Dioxide,TON
+37095,0.002915062,Sulfate Portion of PM2.5-PRI,TON
+37095,1.8079086,Propionaldehyde,LB
+37095,32.57864,Formaldehyde,LB
+37083,0.04696986,Acrolein,LB
+37083,0.0014873852,"Indeno[1,2,3-c,d]Pyrene",LB
+37083,0.6960114,Formaldehyde,LB
+37083,0.0014784944,Benzo[a]Pyrene,LB
+37083,1.015433,"2,2,4-Trimethylpentane",LB
+37053,20.55764,Acrolein,LB
+37053,1.3477562,Acenaphthylene,LB
+37053,0.6220884,Benz[a]Anthracene,LB
+37053,7.827476e-05,Mercury,LB
+37053,0.03587474,Nickel,LB
+37053,0.6772835,PM10-Primary from certain diesel engines,TON
+37053,0.003361089,Nitrate portion of PM2.5-PRI,TON
+37053,0.7561316,Benzo[b]Fluoranthene,LB
+37053,0.03450634,Mercury,LB
+37053,0.2707453,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.003670872,Nitrate portion of PM2.5-PRI,TON
+37053,0.991083,Sulfur Dioxide,TON
+37053,51.64662,Styrene,LB
+37053,2279.194,Hexane,LB
+37051,1831.3484,"2,2,4-Trimethylpentane",LB
+37051,0.3474808,Nickel,LB
+37051,0.5328046,Arsenic,LB
+37051,13.635516,Phenanthrene,LB
+37051,1.581399,Nitrous Oxide,TON
+37051,0.6441516,Organic Carbon portion of PM2.5-PRI,TON
+37051,1.548806,PM2.5 Primary (Filt + Cond),TON
+37051,0.5949131,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,0.0017359012,Arsenic,LB
+37029,0.2965034,Phenanthrene,LB
+37029,0.0137244,Methane,TON
+37029,0.005009768,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.001138313,Sulfate Portion of PM2.5-PRI,TON
+37029,2.658174,Acrolein,LB
+37029,2.316848,Toluene,LB
+37029,0.000239824,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,30.28772,Toluene,LB
+37023,0.007510464,Anthracene,LB
+37023,0.004309624,Benzo[k]Fluoranthene,LB
+37023,0.003688078,Chrysene,LB
+37023,0.0010288186,Arsenic,LB
+37023,0.00858542,Acenaphthene,LB
+37023,0.005574566,Methane,TON
+37023,3.779535,Carbon Monoxide,TON
+37023,0.008716111,Ammonia,TON
+37023,0.00436324,Sulfur Dioxide,TON
+37171,0.001450588,Nitrous Oxide,TON
+37171,0.00790376,Pyrene,LB
+37171,12.848824,Pyrene,LB
+37171,0.010867994,Chromium (VI),LB
+37171,2219.228,Formaldehyde,LB
+37171,390.1436,Naphthalene,LB
+37167,37.36544,Benzene,LB
+37167,13.047872,"1,3-Butadiene",LB
+37167,0.01403655,Benzo[k]Fluoranthene,LB
+37167,0.6517174,Chrysene,LB
+37165,8.22552,Ethyl Benzene,LB
+37165,0.00010782804,Chromium (VI),LB
+37165,6.76386,"2,2,4-Trimethylpentane",LB
+37165,0.1811095,Methane,TON
+37165,1.119443,PM10-Primary from certain diesel engines,TON
+37165,0.06859315,Sulfate Portion of PM2.5-PRI,TON
+37165,0.06566986,Phenanthrene,LB
+37165,0.01358613,PM10-Primary from certain diesel engines,TON
+37165,0.01249982,PM25-Primary from certain diesel engines,TON
+37165,0.2949942,Propionaldehyde,LB
+37165,0.03095888,Acenaphthylene,LB
+37165,4.279388e-09,Chromium (VI),LB
+37165,0.00013490262,Acenaphthylene,LB
+37165,1.959231e-05,Benzo[a]Pyrene,LB
+37165,4.520096e-07,"Dibenzo[a,h]Anthracene",LB
+37165,4.289892e-08,Mercury,LB
+37165,8.201864e-07,Arsenic,LB
+37165,0.00016173936,Phenanthrene,LB
+37165,7.368166e-06,Ammonia,TON
+37153,7410.446,Ethyl Benzene,LB
+37153,9189.364,Hexane,LB
+37153,10.641288,Anthracene,LB
+37153,257.1486,Propionaldehyde,LB
+37153,3.017464,Benzo[k]Fluoranthene,LB
+37153,56.86962,Acenaphthylene,LB
+37153,0.1165875,Sulfate Portion of PM2.5-PRI,TON
+37135,4.682,Propionaldehyde,LB
+37135,0.9489328,Pyrene,LB
+37135,0.022035,Benzo[b]Fluoranthene,LB
+37135,0.003030674,Benzo[k]Fluoranthene,LB
+37135,0.236625,Benz[a]Anthracene,LB
+37135,40.73582,Acetaldehyde,LB
+37135,0.2806305,PM10-Primary from certain diesel engines,TON
+37135,0.1048653,Elemental Carbon portion of PM2.5-PRI,TON
+37135,4.513416,Nitrogen Oxides,TON
+37131,78.26601,Carbon Dioxide,TON
+37131,0.003397322,Ammonia,TON
+37131,9.7476e-06,Nitrate portion of PM2.5-PRI,TON
+37131,0.001640688,Sulfur Dioxide,TON
+37131,11.202646,Toluene,LB
+37131,0.002704416,Anthracene,LB
+37131,0.01692908,Phenanthrene,LB
+37131,63.16368,Styrene,LB
+37131,399.3838,"1,3-Butadiene",LB
+37131,2.33949,Anthracene,LB
+37131,4.042532,Fluoranthene,LB
+37131,1.0573544,Benzo[k]Fluoranthene,LB
+37131,0.9539468,Chrysene,LB
+37131,2424.194,"2,2,4-Trimethylpentane",LB
+37131,0.8668338,Manganese,LB
+37131,0.005058934,Nitrate portion of PM2.5-PRI,TON
+37131,4.390257,PM10 Primary (Filt + Cond),TON
+37117,0.02972719,Methane,TON
+37117,0.04455576,PM10 Primary (Filt + Cond),TON
+37117,0.004997311,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,4.492588,"1,3-Butadiene",LB
+37117,0.05693468,Pyrene,LB
+37117,0.01125975,Benzo[a]Pyrene,LB
+37125,0.07420326,Ethyl Benzene,LB
+37125,5.998628e-05,Benzo[b]Fluoranthene,LB
+37125,0.00021311,Fluoranthene,LB
+37125,5.998628e-05,Benzo[k]Fluoranthene,LB
+37125,4.560326e-05,Manganese,LB
+37125,9.140964e-06,Nickel,LB
+37125,0.0001798445,Methane,TON
+37125,8.443715e-05,Nitrous Oxide,TON
+37125,0.0001116579,PM2.5 Primary (Filt + Cond),TON
+37123,0.003129682,Sulfate Portion of PM2.5-PRI,TON
+37123,0.2365768,Anthracene,LB
+37123,0.0011615172,"Benzo[g,h,i,]Perylene",LB
+37123,8.315696,Benzene,LB
+37123,38.42328,Acetaldehyde,LB
+37109,0.3896608,Pyrene,LB
+37109,3.442992,Xylenes (Mixed Isomers),LB
+37109,0.4812242,Phenanthrene,LB
+37109,0.9962554,Carbon Monoxide,TON
+37109,0.1003994,PM25-Primary from certain diesel engines,TON
+37109,0.01636801,Ammonia,TON
+37109,0.04264254,Organic Carbon portion of PM2.5-PRI,TON
+37103,4.049462,Benzene,LB
+37103,6.766388e-06,Mercury,LB
+37103,0.1181353,PM25-Primary from certain diesel engines,TON
+37103,0.01925728,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,1.4251482,"1,3-Butadiene",LB
+37103,2.71137,Toluene,LB
+37103,0.15937078,Anthracene,LB
+37103,9.123262e-06,Chromium (VI),LB
+37103,0.3462332,Fluoranthene,LB
+37093,0.06854346,Xylenes (Mixed Isomers),LB
+37093,0.02356504,"2,2,4-Trimethylpentane",LB
+37093,7.626152e-06,Benz[a]Anthracene,LB
+37093,0.00016181562,Phenanthrene,LB
+37093,0.1443087,Carbon Dioxide,TON
+37093,2.050706e-05,PM10 Primary (Filt + Cond),TON
+37091,0.0315903,Fluorene,LB
+37091,10.698236,Ethyl Benzene,LB
+37091,15.939592,Hexane,LB
+37089,14.7827,Ethyl Benzene,LB
+37089,2.627382,"1,3-Butadiene",LB
+37089,4.273666e-06,Chromium (VI),LB
+37089,0.0319024,"Benzo[g,h,i,]Perylene",LB
+37089,0.007826766,Benzo[k]Fluoranthene,LB
+37089,0.09461594,Acenaphthylene,LB
+37089,0.0008191224,Arsenic,LB
+37089,0.006943378,Ammonia,TON
+37089,6.613312,Formaldehyde,LB
+37089,0.0005341872,Nickel,LB
+37087,97.59792,Toluene,LB
+37073,0.00321879,Anthracene,LB
+37073,0.00344788,"Benzo[g,h,i,]Perylene",LB
+37073,0.01716752,Acenaphthylene,LB
+37073,0.0005769844,Manganese,LB
+37073,0.1957638,Naphthalene,LB
+37073,0.001189842,Ammonia,TON
+37073,0.1423798,Nitrogen Oxides,TON
+37073,0.0006256511,Sulfur Dioxide,TON
+37081,197.37448,Ethyl Benzene,LB
+37081,33.8536,Acenaphthylene,LB
+37081,0.6516404,Benzo[a]Pyrene,LB
+37081,0.852071,Manganese,LB
+37081,53.70622,Phenanthrene,LB
+37081,7.640864,PM10 Primary (Filt + Cond),TON
+37081,0.4947348,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.0005992003,Sulfate Portion of PM2.5-PRI,TON
+37075,0.0002743156,"Benzo[g,h,i,]Perylene",LB
+37075,0.0016221108,Manganese,LB
+37075,1.7739948e-06,Mercury,LB
+37075,2.623588,Acetaldehyde,LB
+37075,0.07337168,Phenanthrene,LB
+37075,0.228752,Nitrogen Oxides,TON
+37075,0.02126135,PM10 Primary (Filt + Cond),TON
+37069,4.35379,Propionaldehyde,LB
+37069,1206.1008,Xylenes (Mixed Isomers),LB
+37069,1.1945012,Acenaphthylene,LB
+37069,0.07368404,Benz[a]Anthracene,LB
+37069,13.619508,Naphthalene,LB
+37069,3.202418,Nitrogen Oxides,TON
+37069,0.002971713,Sulfate Portion of PM2.5-PRI,TON
+37069,10.10418,Volatile Organic Compounds,TON
+37059,1.610556,PM10 Primary (Filt + Cond),TON
+37059,16.164356,Toluene,LB
+37059,0.008219576,Benzo[k]Fluoranthene,LB
+37059,0.8920658,Acenaphthene,LB
+37059,3.280476,Phenanthrene,LB
+37119,207.357,Toluene,LB
+37115,3.989138e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.0001620211,Nitrous Oxide,TON
+37115,0.0002065733,PM2.5 Primary (Filt + Cond),TON
+37115,5.558085e-06,Sulfate Portion of PM2.5-PRI,TON
+37115,0.16130506,Toluene,LB
+37115,0.0003338822,Acenaphthylene,LB
+37115,6.114728e-05,Chrysene,LB
+37083,1.5972368,Hexane,LB
+37083,0.009193168,"Benzo[g,h,i,]Perylene",LB
+37083,0.0017991264,Benzo[b]Fluoranthene,LB
+37083,0.004110804,Manganese,LB
+37083,0.008218516,Phenanthrene,LB
+37083,0.00287861,Nitrous Oxide,TON
+37083,0.004931036,PM2.5 Primary (Filt + Cond),TON
+37079,0.3780234,"1,3-Butadiene",LB
+37079,0.827575,Propionaldehyde,LB
+37079,0.00013546224,"Dibenzo[a,h]Anthracene",LB
+37079,0.000221651,Mercury,LB
+37079,0.02198307,Ammonia,TON
+37175,0.2208592,Acrolein,LB
+37175,0.0099041,Anthracene,LB
+37175,0.00012706132,"Benzo[g,h,i,]Perylene",LB
+37175,0.015191458,Acenaphthylene,LB
+37175,0.004014448,Chrysene,LB
+37175,0.006850112,Benz[a]Anthracene,LB
+37175,6.47504e-05,Nitrous Oxide,TON
+37175,3.653519e-05,Nitrate portion of PM2.5-PRI,TON
+37175,0.001480481,Sulfate Portion of PM2.5-PRI,TON
+37175,0.2583502,Ethyl Benzene,LB
+37175,0.2376284,"1,3-Butadiene",LB
+37175,0.394892,Propionaldehyde,LB
+37175,0.5876526,Xylenes (Mixed Isomers),LB
+37175,7.852376,Formaldehyde,LB
+37175,2.101322e-06,Mercury,LB
+37175,0.0011336514,Nickel,LB
+37169,304.9606,Toluene,LB
+37169,0.07652384,"Benzo[g,h,i,]Perylene",LB
+37169,0.3279716,Acenaphthylene,LB
+37169,3.738772,Naphthalene,LB
+37169,0.00769663,Elemental Carbon portion of PM2.5-PRI,TON
+37169,2.154026,Nitrogen Oxides,TON
+37169,0.03313046,PM2.5 Primary (Filt + Cond),TON
+37169,3.905374e-06,Chromium (VI),LB
+37169,17.22868,Benzene,LB
+37169,0.03009198,Fluorene,LB
+37169,0.008150668,Methane,TON
+37167,0.12697644,Benzo[a]Pyrene,LB
+37167,0.002905326,"Dibenzo[a,h]Anthracene",LB
+37167,453.3158,Benzene,LB
+37167,0.06992631,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.03282069,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.04286691,Sulfur Dioxide,TON
+37167,12.82814,Volatile Organic Compounds,TON
+37163,15.290584,Ethyl Benzene,LB
+37163,0.03233912,Pyrene,LB
+37163,0.10382198,Phenanthrene,LB
+37163,0.01507989,Methane,TON
+37163,0.7227774,Nitrogen Oxides,TON
+37161,2.001846,"1,3-Butadiene",LB
+37161,0.4589426,Pyrene,LB
+37161,0.007680506,Nickel,LB
+37161,0.2032186,Acenaphthene,LB
+37161,0.3876902,Fluorene,LB
+37161,6.734052,Naphthalene,LB
+37161,0.1365791,PM10-Primary from certain diesel engines,TON
+37157,1.5417464e-06,Mercury,LB
+37157,0.0017770154,Acenaphthene,LB
+37157,0.0002958583,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,1.8110666,"1,3-Butadiene",LB
+37139,1.3615644,Hexane,LB
+37139,2.956558,Propionaldehyde,LB
+37139,0.0016348334,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,1.3308316,"2,2,4-Trimethylpentane",LB
+37139,0.001520688,Nitrous Oxide,TON
+37139,0.0003982256,Nitrate portion of PM2.5-PRI,TON
+37139,0.03143955,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.1780991,PM10 Primary (Filt + Cond),TON
+37125,2.378796,Styrene,LB
+37125,9.044624,Propionaldehyde,LB
+37125,0.0014747552,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,181.02516,Formaldehyde,LB
+37125,16.53252,Benzene,LB
+37125,0.004430408,Nitrous Oxide,TON
+37125,0.04240885,Ammonia,TON
+37125,0.0003926445,Nitrate portion of PM2.5-PRI,TON
+37125,0.996727,Volatile Organic Compounds,TON
+37069,0.0003052944,Benzo[b]Fluoranthene,LB
+37069,0.0005673546,Benzo[a]Pyrene,LB
+37069,1.3192532e-05,"Dibenzo[a,h]Anthracene",LB
+37069,0.0002889024,Nickel,LB
+37069,0.0002983142,Acenaphthene,LB
+37065,0.008854694,Styrene,LB
+37065,0.03163528,Acrolein,LB
+37065,0.002181598,"Benzo[g,h,i,]Perylene",LB
+37065,0.0005533688,Fluoranthene,LB
+37065,0.0004235282,Benzo[k]Fluoranthene,LB
+37065,1.8815032e-05,"Dibenzo[a,h]Anthracene",LB
+37065,0.0006546804,Arsenic,LB
+37065,3.649766,Acetaldehyde,LB
+37065,0.0005484316,Organic Carbon portion of PM2.5-PRI,TON
+37065,3.920423e-05,Sulfate Portion of PM2.5-PRI,TON
+37061,0.07161486,"1,3-Butadiene",LB
+37061,0.15074532,Propionaldehyde,LB
+37061,0.0011091134,Fluoranthene,LB
+37061,0.000686574,Benz[a]Anthracene,LB
+37061,0.003390991,Sulfur Dioxide,TON
+37061,5.852875e-05,Sulfate Portion of PM2.5-PRI,TON
+37049,10.690828,Xylenes (Mixed Isomers),LB
+37171,0.016865822,Fluoranthene,LB
+37171,20.59448,Formaldehyde,LB
+37171,25.71578,Benzene,LB
+37171,0.013812698,Arsenic,LB
+37171,12.79011,Carbon Monoxide,TON
+37165,0.5372647,Nitrogen Oxides,TON
+37171,0.04329513,Nitrous Oxide,TON
+37171,0.005217908,Nitrate portion of PM2.5-PRI,TON
+37171,17.77608,Volatile Organic Compounds,TON
+37169,0.0006257572,Chrysene,LB
+37169,0.06055798,Naphthalene,LB
+37169,0.04305835,Nitrogen Oxides,TON
+37169,0.0010343562,Anthracene,LB
+37169,0.002088392,Pyrene,LB
+37169,9.740955e-05,Sulfur Dioxide,TON
+37165,0.011621824,"Benzo[g,h,i,]Perylene",LB
+37165,0.0369404,Acenaphthylene,LB
+37165,0.0008231477,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.002803718,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.002762228,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,10.472052,Styrene,LB
+37165,0.3805008,Anthracene,LB
+37165,0.12434002,Benzo[b]Fluoranthene,LB
+37165,0.00386443,Mercury,LB
+37165,150.05428,Acetaldehyde,LB
+37165,2.417078,Phenanthrene,LB
+37165,23.10912,Naphthalene,LB
+37165,6.934508e-05,Chromium (VI),LB
+37165,0.0513916,Benzo[b]Fluoranthene,LB
+37165,0.2422954,Fluoranthene,LB
+37165,0.3340044,Fluorene,LB
+37155,0.3055056,Styrene,LB
+37155,1.296401,"1,3-Butadiene",LB
+37155,3.841752,Acetaldehyde,LB
+37155,0.007676851,Methane,TON
+37059,1.37983,Ethyl Benzene,LB
+37059,4.677504,Xylenes (Mixed Isomers),LB
+37005,0.000590697,"Benzo[g,h,i,]Perylene",LB
+37005,1.9533872,Acetaldehyde,LB
+37005,0.0008933642,Phenanthrene,LB
+37005,0.001201182,Methane,TON
+37005,7.380486e-07,Nitrate portion of PM2.5-PRI,TON
+37169,0.007512092,Manganese,LB
+37169,0.004743564,Acenaphthene,LB
+37169,0.00960854,Fluorene,LB
+37169,448.8484,Carbon Dioxide,TON
+37169,0.4631321,Nitrogen Oxides,TON
+37169,4.136096,Hexane,LB
+37169,9.65486,Xylenes (Mixed Isomers),LB
+37169,0.02096332,"Benzo[g,h,i,]Perylene",LB
+37169,0.3100919,Volatile Organic Compounds,TON
+37129,0.3261528,"1,3-Butadiene",LB
+37129,3.185646,Hexane,LB
+37129,0.002574546,Benzo[b]Fluoranthene,LB
+37129,0.0193224,Methane,TON
+37007,6.065162e-08,Chromium (VI),LB
+37007,0.14919424,"2,2,4-Trimethylpentane",LB
+37007,3.530968e-05,Manganese,LB
+37007,7.58139e-06,Nickel,LB
+37007,1.1625154e-05,Arsenic,LB
+37019,2671.89,Formaldehyde,LB
+37019,197.47568,Acrolein,LB
+37019,174.62946,Propionaldehyde,LB
+37019,13.022878,"Benzo[g,h,i,]Perylene",LB
+37005,0.01603034,Styrene,LB
+37005,0.03668508,"1,3-Butadiene",LB
+37005,0.006230218,Acenaphthylene,LB
+37005,0.00250854,Benz[a]Anthracene,LB
+37005,0.1316406,Naphthalene,LB
+37005,0.0004373039,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,7.761009e-05,Sulfur Dioxide,TON
+37005,0.1746911,Carbon Monoxide,TON
+37081,0.004176886,Benz[a]Anthracene,LB
+37081,0.008145718,Arsenic,LB
+37081,0.15971356,Naphthalene,LB
+37081,0.03515644,Ammonia,TON
+37081,0.05941991,PM10 Primary (Filt + Cond),TON
+37081,0.006136134,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.002971686,Anthracene,LB
+37081,0.7360376,Propionaldehyde,LB
+37081,0.006466438,Pyrene,LB
+37081,4.25009e-05,Chromium (VI),LB
+37081,0.004900838,Benzo[b]Fluoranthene,LB
+37039,0.002293464,"Benzo[g,h,i,]Perylene",LB
+37039,0.0008617026,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,64.21644,Carbon Dioxide,TON
+37029,0.6283016,Acetaldehyde,LB
+37029,7.492268e-05,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.00362441,Volatile Organic Compounds,TON
+37011,0.02994192,"1,3-Butadiene",LB
+37011,0.00038196,Fluoranthene,LB
+37011,0.0002143492,Nickel,LB
+37011,0.2409687,Carbon Monoxide,TON
+37011,0.0005982064,PM2.5 Primary (Filt + Cond),TON
+37011,0.01415969,Volatile Organic Compounds,TON
+37113,0.0008781928,Fluoranthene,LB
+37113,0.6023781,Carbon Monoxide,TON
+37113,3.374036e-06,Nitrate portion of PM2.5-PRI,TON
+37113,0.005289398,PM10 Primary (Filt + Cond),TON
+37113,3.954689e-05,Sulfate Portion of PM2.5-PRI,TON
+37101,0.0525229,Manganese,LB
+37101,1.3378824,Naphthalene,LB
+37101,0.07843108,PM2.5 Primary (Filt + Cond),TON
+37101,0.02512535,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.7414184,Styrene,LB
+37101,6.178512,Propionaldehyde,LB
+37101,0.16000122,"Benzo[g,h,i,]Perylene",LB
+37117,0.18763826,Styrene,LB
+37117,8.43373,Benzene,LB
+37117,0.0012461968,Manganese,LB
+37117,2.58282,Acetaldehyde,LB
+37117,0.015918608,Fluorene,LB
+37117,0.00244084,Ammonia,TON
+37117,0.003029835,PM2.5 Primary (Filt + Cond),TON
+37111,3.468632,PM10 Primary (Filt + Cond),TON
+37111,51.34042,Benzene,LB
+37111,0.0002655948,Mercury,LB
+37119,1.5531228,Hexane,LB
+37119,0.19003954,Anthracene,LB
+37119,61.91378,Formaldehyde,LB
+37119,0.001663994,"Dibenzo[a,h]Anthracene",LB
+37119,1.6568952,"2,2,4-Trimethylpentane",LB
+37119,0.02367068,Manganese,LB
+37119,1.6093728e-05,Mercury,LB
+37119,0.6898506,Phenanthrene,LB
+37113,0.2516442,Propionaldehyde,LB
+37113,0.003305296,Benzo[k]Fluoranthene,LB
+37113,0.0531594,Acenaphthylene,LB
+37113,0.004464144,Benzo[a]Pyrene,LB
+37113,9.813376e-05,Arsenic,LB
+37113,3.821092,Acetaldehyde,LB
+37113,0.011672016,Acenaphthene,LB
+37113,0.02364204,Fluorene,LB
+37113,0.006863894,PM10 Primary (Filt + Cond),TON
+37109,0.06969296,Nickel,LB
+37109,214.331,Acetaldehyde,LB
+37109,54.07346,Naphthalene,LB
+37109,15.893534,"1,3-Butadiene",LB
+37109,0.193744,Methane,TON
+37109,9014.345,Carbon Dioxide,TON
+37109,2.325177,PM25-Primary from certain diesel engines,TON
+37109,45.24015,Nitrogen Oxides,TON
+37091,16.658016,Toluene,LB
+37091,4.773606,Hexane,LB
+37091,8.031908,Propionaldehyde,LB
+37091,0.9957964,Fluoranthene,LB
+37091,0.003701228,Benzo[k]Fluoranthene,LB
+37091,0.009167489,Nitrous Oxide,TON
+37091,0.07313641,Sulfate Portion of PM2.5-PRI,TON
+37091,0.915523,Volatile Organic Compounds,TON
+37103,0.05645872,Anthracene,LB
+37103,1.1566806,Propionaldehyde,LB
+37103,0.00010803504,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.005166482,PM10-Primary from certain diesel engines,TON
+37095,0.02379124,Ethyl Benzene,LB
+37095,0.002464112,Anthracene,LB
+37095,0.0016463774,Benz[a]Anthracene,LB
+37095,0.3099254,Acetaldehyde,LB
+37095,5.989617,Carbon Dioxide,TON
+37095,0.02992669,Nitrogen Oxides,TON
+37089,0.000215855,Mercury,LB
+37089,336.43,Acetaldehyde,LB
+37089,8.941514,Phenanthrene,LB
+37089,0.03197896,Nitrous Oxide,TON
+37089,4.208898,Volatile Organic Compounds,TON
+37089,37.65746,Propionaldehyde,LB
+37089,0.00019207904,Chromium (VI),LB
+37087,0.4851831,Methane,TON
+37087,11925.19,Carbon Dioxide,TON
+37087,0.8386681,Ammonia,TON
+37087,0.01184057,Sulfate Portion of PM2.5-PRI,TON
+37087,17.593434,Styrene,LB
+37087,1.2555526,Pyrene,LB
+37087,0.7445302,Acenaphthene,LB
+37087,4.057856,Phenanthrene,LB
+37075,5.423474,"2,2,4-Trimethylpentane",LB
+37061,2.517406,Anthracene,LB
+37061,0.0321203,"Benzo[g,h,i,]Perylene",LB
+37061,0.5260578,Benzo[a]Pyrene,LB
+37061,0.05048516,Arsenic,LB
+37061,2.304296,Acenaphthene,LB
+37061,0.2367304,Ammonia,TON
+37061,9.77283,Ethyl Benzene,LB
+37061,4.196538,Styrene,LB
+37061,19.948078,Toluene,LB
+37061,0.00392751,"Benzo[g,h,i,]Perylene",LB
+37061,0.0019229346,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,7.836748e-05,Mercury,LB
+37061,1.6500686,Fluorene,LB
+37061,32.25526,Naphthalene,LB
+37061,6.409612,Nitrogen Oxides,TON
+37061,0.3942684,PM10 Primary (Filt + Cond),TON
+37061,1.70102,Volatile Organic Compounds,TON
+37055,1.2477414,Benzene,LB
+37055,335.5994,Carbon Dioxide,TON
+37055,0.06568306,PM10-Primary from certain diesel engines,TON
+37055,0.01650121,Organic Carbon portion of PM2.5-PRI,TON
+37055,1.0411582,Acrolein,LB
+37055,0.3455176,Hexane,LB
+37055,0.04713776,Anthracene,LB
+37055,0.14075204,Pyrene,LB
+37055,0.06885402,Acenaphthylene,LB
+37039,0.2970514,Styrene,LB
+37039,1.122499,Propionaldehyde,LB
+37039,0.17460842,Fluoranthene,LB
+37039,0.0006135306,Nitrous Oxide,TON
+37037,5.186158,Toluene,LB
+37037,0.4413634,Fluoranthene,LB
+37037,0.0010784892,Benzo[k]Fluoranthene,LB
+37037,7.342142,Benzene,LB
+37037,0.03886433,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.7228716,Toluene,LB
+37025,0.0006445486,Fluoranthene,LB
+37025,3.423644e-06,Nickel,LB
+37025,0.0004146892,Acenaphthene,LB
+37025,0.03658151,PM10 Primary (Filt + Cond),TON
+37025,0.001061197,Sulfur Dioxide,TON
+37029,0.0248437,"1,3-Butadiene",LB
+37029,0.7130126,Toluene,LB
+37029,0.4491478,Xylenes (Mixed Isomers),LB
+37029,0.0001016187,Benzo[b]Fluoranthene,LB
+37029,0.010065066,Naphthalene,LB
+37029,0.006888937,Nitrogen Oxides,TON
+37131,0.0009334122,"Benzo[g,h,i,]Perylene",LB
+37131,0.0002426506,Fluoranthene,LB
+37131,0.142357,"2,2,4-Trimethylpentane",LB
+37131,0.00013517152,Acenaphthene,LB
+37131,0.003909988,Styrene,LB
+37131,0.12126338,Hexane,LB
+37131,0.0001602369,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,13.13496,Toluene,LB
+37169,5.020156,Hexane,LB
+37169,4.936788,"2,2,4-Trimethylpentane",LB
+37169,2.51247,Phenanthrene,LB
+37169,0.9587483,PM10-Primary from certain diesel engines,TON
+37169,0.8820878,PM25-Primary from certain diesel engines,TON
+37169,0.02931243,Sulfur Dioxide,TON
+37155,0.4987818,PM10 Primary (Filt + Cond),TON
+37155,8.7232,Toluene,LB
+37155,0.09353214,Benzo[a]Pyrene,LB
+37155,0.3585908,Acenaphthene,LB
+37163,709.7082,Ethyl Benzene,LB
+37163,169.0262,"1,3-Butadiene",LB
+37163,2614.724,Xylenes (Mixed Isomers),LB
+37163,1.760803,Fluoranthene,LB
+37163,0.008486286,Mercury,LB
+37163,6.57284,Phenanthrene,LB
+37163,15341.5,Carbon Dioxide,TON
+37163,0.01232379,Sulfate Portion of PM2.5-PRI,TON
+37153,258.5556,Naphthalene,LB
+37153,753.8558,"1,3-Butadiene",LB
+37153,102.63102,Acrolein,LB
+37153,21976.78,Toluene,LB
+37153,0.005942992,Chromium (VI),LB
+37153,0.05522876,"Dibenzo[a,h]Anthracene",LB
+37145,3129.889,Carbon Dioxide,TON
+37145,0.1281448,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,17.957208,Acrolein,LB
+37145,5.589274,Hexane,LB
+37145,2.63225,Pyrene,LB
+37145,0.015688498,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,5.329378e-08,Chromium (VI),LB
+37129,0.5440414,Carbon Monoxide,TON
+37129,151.6204,Carbon Dioxide,TON
+37129,0.003541713,PM2.5 Primary (Filt + Cond),TON
+37129,0.01374714,Volatile Organic Compounds,TON
+37139,1.9378968,Toluene,LB
+37139,0.0007681292,Fluoranthene,LB
+37139,0.00228822,Acenaphthylene,LB
+37139,1.0091162e-05,"Dibenzo[a,h]Anthracene",LB
+37139,0.4300568,"2,2,4-Trimethylpentane",LB
+37139,0.0006347624,Methane,TON
+37139,0.2275851,Carbon Monoxide,TON
+37139,623.4622,Xylenes (Mixed Isomers),LB
+37139,0.05394806,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,52.6839,Formaldehyde,LB
+37139,31.1541,Acetaldehyde,LB
+37127,3.320402e-05,Mercury,LB
+37127,0.0208783,Nickel,LB
+37127,59.75912,Acetaldehyde,LB
+37127,0.8762396,Fluorene,LB
+37127,0.11963478,Chrysene,LB
+37013,0.02199118,Manganese,LB
+37013,1.3698906,Phenanthrene,LB
+37013,0.001484383,Nitrate portion of PM2.5-PRI,TON
+37013,0.2764422,PM2.5 Primary (Filt + Cond),TON
+37007,7.118404,"1,3-Butadiene",LB
+37007,18.741538,Toluene,LB
+37007,0.0109941,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.09746824,Manganese,LB
+37007,0.02194904,Arsenic,LB
+37007,1.5380042,Fluorene,LB
+37007,1.041212,PM2.5 Primary (Filt + Cond),TON
+37007,0.06798796,Sulfur Dioxide,TON
+37005,0.0010054512,Benzo[b]Fluoranthene,LB
+37005,5.659712,"2,2,4-Trimethylpentane",LB
+37005,8.33758e-05,Arsenic,LB
+37005,0.00147528,Nitrous Oxide,TON
+37005,0.101644,Nitrogen Oxides,TON
+37005,0.0006283226,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.006736474,Pyrene,LB
+37073,0.00295408,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,1.9529194,"2,2,4-Trimethylpentane",LB
+37073,0.002094322,Arsenic,LB
+37073,0.01410882,Methane,TON
+37073,0.003377698,Nitrous Oxide,TON
+37073,0.1956102,Acrolein,LB
+37073,1.6111792,Hexane,LB
+37073,0.003573906,Pyrene,LB
+37021,1012.1882,Formaldehyde,LB
+37021,0.0019668124,"Dibenzo[a,h]Anthracene",LB
+37021,89.43628,Benzene,LB
+37021,2.810098,Acenaphthene,LB
+37021,4.835612,Fluorene,LB
+37021,0.1805083,PM10-Primary from certain diesel engines,TON
+37013,0.12253038,Pyrene,LB
+37013,0.0297992,Benz[a]Anthracene,LB
+37013,0.006463106,Manganese,LB
+37013,0.002007698,Nickel,LB
+37017,0.002411336,Formaldehyde,LB
+37017,0.007587418,Benzene,LB
+37017,1.862714e-06,Ammonia,TON
+37017,4.155377e-06,PM2.5 Primary (Filt + Cond),TON
+37017,1.2784522e-05,Pyrene,LB
+37017,0.016979838,Xylenes (Mixed Isomers),LB
+37017,1.0742494e-05,"Benzo[g,h,i,]Perylene",LB
+37017,1.1214082e-05,Fluoranthene,LB
+37013,0.09698692,Propionaldehyde,LB
+37013,0.00726177,Fluoranthene,LB
+37013,0.0014110442,Benz[a]Anthracene,LB
+37013,0.00497421,Acenaphthene,LB
+37013,0.007462112,PM10 Primary (Filt + Cond),TON
+37013,4.464156e-08,Chromium (VI),LB
+37013,0.0009502162,"Benzo[g,h,i,]Perylene",LB
+37013,0.0003570048,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.0017330964,Fluoranthene,LB
+37013,4.947556e-05,Manganese,LB
+37013,0.0001033077,Elemental Carbon portion of PM2.5-PRI,TON
+37013,6.185663e-05,Ammonia,TON
+37011,0.01872806,Fluoranthene,LB
+37011,9.92532e-05,Arsenic,LB
+37011,0.0004882897,Ammonia,TON
+37011,2.16445e-08,Nickel,LB
+37011,2.286264e-07,Sulfur Dioxide,TON
+37027,0.14201872,Ethyl Benzene,LB
+37027,0.0002701356,Benzo[k]Fluoranthene,LB
+37027,0.02286571,Nitrogen Oxides,TON
+37027,0.0003534739,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,9.57379,Toluene,LB
+37165,0.999949,Benzene,LB
+37153,0.002095614,Pyrene,LB
+37153,0.00496812,Acenaphthylene,LB
+37181,0.1447536,Styrene,LB
+37181,0.5892698,"1,3-Butadiene",LB
+37181,0.011140116,Pyrene,LB
+37181,11.943188,Xylenes (Mixed Isomers),LB
+37181,0.004150914,Ammonia,TON
+37179,2515.58,"1,3-Butadiene",LB
+37179,341.3382,Acrolein,LB
+37179,20.4324,"Benzo[g,h,i,]Perylene",LB
+37179,7.666762,Benzo[a]Pyrene,LB
+37179,8.959348,Manganese,LB
+37179,5831.13,Acetaldehyde,LB
+37197,0.03111202,Anthracene,LB
+37197,0.08464244,Pyrene,LB
+37197,0.0002308234,Benzo[k]Fluoranthene,LB
+37197,0.019340726,Benz[a]Anthracene,LB
+37197,1.0017884,Naphthalene,LB
+37197,0.02555591,PM10-Primary from certain diesel engines,TON
+37197,9.829843e-05,Nitrate portion of PM2.5-PRI,TON
+37197,0.5533041,Nitrogen Oxides,TON
+37197,0.6568258,Styrene,LB
+37197,3.487108,Toluene,LB
+37197,0.17019508,Anthracene,LB
+37197,0.2545178,Acenaphthylene,LB
+37197,0.1514127,Acenaphthene,LB
+37197,630.0843,Carbon Dioxide,TON
+37197,0.000658913,Nitrate portion of PM2.5-PRI,TON
+37185,0.002337901,Sulfate Portion of PM2.5-PRI,TON
+37185,0.6281588,"1,3-Butadiene",LB
+37185,0.2139018,Pyrene,LB
+37185,0.0009877524,"Benzo[g,h,i,]Perylene",LB
+37185,0.0006789364,Benzo[k]Fluoranthene,LB
+37185,1.8770784,Benzene,LB
+37185,0.14385534,Fluorene,LB
+37185,0.4396858,Carbon Monoxide,TON
+37185,0.0005287526,Nitrous Oxide,TON
+37185,0.08259132,PM10 Primary (Filt + Cond),TON
+37189,7361.9,Ethyl Benzene,LB
+37189,1839.0608,"1,3-Butadiene",LB
+37189,11.067604,Anthracene,LB
+37189,4.455774,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,8420.048,"2,2,4-Trimethylpentane",LB
+37189,1.153516,Elemental Carbon portion of PM2.5-PRI,TON
+37183,12301.244,Ethyl Benzene,LB
+37199,4.160048,"1,3-Butadiene",LB
+37199,5.318833,Carbon Monoxide,TON
+37199,0.008211889,Nitrous Oxide,TON
+37199,0.1511745,Chrysene,LB
+37199,0.06815539,Ammonia,TON
+37199,0.1154778,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.17109456,Propionaldehyde,LB
+37193,0.01469551,Pyrene,LB
+37193,0.0395651,Acenaphthylene,LB
+37193,0.004771656,Benzo[a]Pyrene,LB
+37193,0.00010987328,"Dibenzo[a,h]Anthracene",LB
+37193,9.137588,Benzene,LB
+37187,0.2390082,Hexane,LB
+37187,0.02166276,Anthracene,LB
+37187,0.005043452,Benz[a]Anthracene,LB
+37187,0.0009537768,Arsenic,LB
+37187,0.02683648,Acenaphthene,LB
+37187,0.00692375,Methane,TON
+37187,1.084243e-05,Nitrate portion of PM2.5-PRI,TON
+37187,0.08491876,Nitrogen Oxides,TON
+37187,0.00197515,PM2.5 Primary (Filt + Cond),TON
+37187,0.0006259635,Sulfur Dioxide,TON
+37183,149.6425,Propionaldehyde,LB
+37183,0.0707001,Benzo[k]Fluoranthene,LB
+37183,4.73805,Methane,TON
+37183,2.843219,Ammonia,TON
+37183,23.65762,Fluorene,LB
+37183,1.731728,Methane,TON
+37183,96.18305,Carbon Monoxide,TON
+37183,14.96992,PM25-Primary from certain diesel engines,TON
+37183,296.3908,Nitrogen Oxides,TON
+37183,262.3416,Acrolein,LB
+37183,85.6331,Hexane,LB
+37183,2.641684,Benzo[a]Pyrene,LB
+37181,0.0004969368,Styrene,LB
+37181,2.987992e-09,Chromium (VI),LB
+37181,9.529062e-05,Acenaphthylene,LB
+37181,9.791968e-06,Benz[a]Anthracene,LB
+37181,3.734948e-07,Nickel,LB
+37181,5.726782e-07,Arsenic,LB
+37181,0.00011463432,Phenanthrene,LB
+37181,9.652717e-06,Organic Carbon portion of PM2.5-PRI,TON
+37181,4.535665e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,4.185999e-06,Sulfur Dioxide,TON
+37179,2.829713,Volatile Organic Compounds,TON
+37179,510.7398,Formaldehyde,LB
+37179,0.3705202,Benzo[a]Pyrene,LB
+37179,0.0535016,Nickel,LB
+37177,0.05565576,Hexane,LB
+37177,0.11360406,Propionaldehyde,LB
+37177,0.0009572942,Manganese,LB
+37177,0.0004244702,Nickel,LB
+37177,0.014997522,Fluorene,LB
+37177,59.7243,Carbon Dioxide,TON
+37177,0.0005132052,Sulfur Dioxide,TON
+37013,0.000532776,Chromium (VI),LB
+37013,0.2760174,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.2320678,Benzo[b]Fluoranthene,LB
+37013,0.2421738,Chrysene,LB
+37013,709.6598,"2,2,4-Trimethylpentane",LB
+37013,982.5108,Benzene,LB
+37013,0.9936612,Acenaphthene,LB
+37013,0.07556546,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.4666284,Volatile Organic Compounds,TON
+37001,0.0002857164,"Dibenzo[a,h]Anthracene",LB
+37001,94.2196,Toluene,LB
+37001,21.2067,Hexane,LB
+37001,0.11482578,Acenaphthylene,LB
+37031,5.847138,Ethyl Benzene,LB
+37031,24.6832,Toluene,LB
+37031,0.016907212,Fluoranthene,LB
+37031,0.000809212,Mercury,LB
+37037,0.05179036,"1,3-Butadiene",LB
+37037,0.9797274,Toluene,LB
+37037,0.0003872316,Anthracene,LB
+37037,0.85903,Xylenes (Mixed Isomers),LB
+37037,0.4527742,"2,2,4-Trimethylpentane",LB
+37037,1.178685,Benzene,LB
+37037,0.002355076,Phenanthrene,LB
+37037,3.958078e-05,Sulfate Portion of PM2.5-PRI,TON
+37127,6.17009,Ethyl Benzene,LB
+37127,25.05306,Toluene,LB
+37127,0.03077236,"Indeno[1,2,3-c,d]Pyrene",LB
+37127,15.70056,Carbon Monoxide,TON
+37127,1.434154,Nitrogen Oxides,TON
+37127,0.01995304,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.01626082,Remaining PMFINE portion of PM2.5-PRI,TON
+37091,0.0906908,Styrene,LB
+37091,0.002609652,Benzo[k]Fluoranthene,LB
+37091,0.163296,Naphthalene,LB
+37091,3.435832,Carbon Monoxide,TON
+37091,0.001188358,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.00289597,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.05924937,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.7989918,Ammonia,TON
+37179,1.0816226,Acenaphthene,LB
+37197,0.3798882,Ethyl Benzene,LB
+37197,6.979874e-06,Chromium (VI),LB
+37197,0.000729,Benzo[k]Fluoranthene,LB
+37197,0.002964896,Acenaphthylene,LB
+37197,0.0005573038,Chrysene,LB
+37197,3.183736e-05,"Dibenzo[a,h]Anthracene",LB
+37197,0.000631251,Benz[a]Anthracene,LB
+37197,6.997174e-05,Mercury,LB
+37197,0.0012977028,Fluorene,LB
+37197,0.0619902,Nitrogen Oxides,TON
+37193,0.15496812,Acenaphthene,LB
+37193,5.257792,Naphthalene,LB
+37193,1.127302,Carbon Monoxide,TON
+37191,200.1944,Styrene,LB
+37191,1373.7594,"1,3-Butadiene",LB
+37191,4.530042,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,4.519852,Benzo[a]Pyrene,LB
+37191,9301.96,Benzene,LB
+37191,2134.57,Carbon Monoxide,TON
+37191,4.010984,Sulfur Dioxide,TON
+37075,0.004709151,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.0007561608,Sulfate Portion of PM2.5-PRI,TON
+37075,1.6469648,Acrolein,LB
+37075,0.1202127,Acenaphthylene,LB
+37075,0.0002945366,"Dibenzo[a,h]Anthracene",LB
+37075,0.029613,Benz[a]Anthracene,LB
+37075,1.955692,Benzene,LB
+37071,22.70184,Styrene,LB
+37071,75.09292,Hexane,LB
+37071,0.06119536,"Benzo[g,h,i,]Perylene",LB
+37071,1.1627868,Manganese,LB
+37071,0.3066216,Nickel,LB
+37071,1141.5476,Acetaldehyde,LB
+37071,88267.57,Carbon Dioxide,TON
+37071,0.01950243,Nitrate portion of PM2.5-PRI,TON
+37069,0.9770832,Anthracene,LB
+37069,15.582778,Propionaldehyde,LB
+37069,0.00016771716,Mercury,LB
+37069,0.03506752,Arsenic,LB
+37069,0.1618401,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.1051033,Sulfur Dioxide,TON
+37067,0.8055042,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.5735446,Benzo[k]Fluoranthene,LB
+37067,0.8072791,PM2.5 Primary (Filt + Cond),TON
+37059,0.06169962,Benzo[b]Fluoranthene,LB
+37059,0.9257462,Acenaphthylene,LB
+37059,76.11254,Formaldehyde,LB
+37059,0.0019769012,"Dibenzo[a,h]Anthracene",LB
+37059,0.06134944,Benz[a]Anthracene,LB
+37059,0.0007703752,Mercury,LB
+37059,0.002597273,Sulfate Portion of PM2.5-PRI,TON
+37053,1.7314638e-05,Anthracene,LB
+37053,0.006416988,Formaldehyde,LB
+37053,0.014472192,"2,2,4-Trimethylpentane",LB
+37053,0.00010970604,Phenanthrene,LB
+37053,0.0017152372,Benzo[b]Fluoranthene,LB
+37053,2.239664e-05,Mercury,LB
+37053,2.17132,Acetaldehyde,LB
+37053,0.0001024217,Sulfate Portion of PM2.5-PRI,TON
+37043,0.016973184,Acenaphthene,LB
+37043,0.00385144,Sulfur Dioxide,TON
+37043,16.870492,Hexane,LB
+37043,0.004474344,Benz[a]Anthracene,LB
+37037,26.6279,"1,3-Butadiene",LB
+37037,0.02820244,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.11058126,Benzo[b]Fluoranthene,LB
+37037,4.38022,Acenaphthylene,LB
+37037,0.3700048,Benzo[a]Pyrene,LB
+37037,1.3336608,Benz[a]Anthracene,LB
+37037,542.7392,Acetaldehyde,LB
+37037,5.53798,Fluorene,LB
+37037,0.03168196,Benzo[b]Fluoranthene,LB
+37037,1.1302692,Fluoranthene,LB
+37037,67.50474,Acetaldehyde,LB
+37037,0.02366132,Ammonia,TON
+37037,1495.857,Carbon Monoxide,TON
+37037,156.6455,Nitrogen Oxides,TON
+37037,10.255422,Pyrene,LB
+37037,6486.094,Benzene,LB
+37037,6.052376,Acenaphthene,LB
+37033,3.893028,"1,3-Butadiene",LB
+37033,0.009660576,Chrysene,LB
+37033,0.01376638,Ammonia,TON
+37031,0.00723841,Elemental Carbon portion of PM2.5-PRI,TON
+37031,0.000132092,Nitrate portion of PM2.5-PRI,TON
+37031,0.01056014,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.02315504,PM2.5 Primary (Filt + Cond),TON
+37031,0.0006378251,Sulfur Dioxide,TON
+37031,0.3442694,Ethyl Benzene,LB
+37031,0.3376852,"1,3-Butadiene",LB
+37031,0.000900557,Nickel,LB
+37031,0.0002870314,Arsenic,LB
+37029,0.07343492,Styrene,LB
+37029,0.0008742764,Benzo[b]Fluoranthene,LB
+37029,0.0008742764,Benzo[k]Fluoranthene,LB
+37029,2.737164e-05,"Dibenzo[a,h]Anthracene",LB
+37029,2.760988,Benzene,LB
+37029,0.05889844,Volatile Organic Compounds,TON
+37119,0.016874388,"Benzo[g,h,i,]Perylene",LB
+37119,0.02141572,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,46.52656,Naphthalene,LB
+37119,1.025758,PM10-Primary from certain diesel engines,TON
+37119,0.07545758,Sulfur Dioxide,TON
+37109,5.369464,Hexane,LB
+37109,0.7395402,Anthracene,LB
+37109,0.00642238,Benzo[k]Fluoranthene,LB
+37109,3.202866e-05,Mercury,LB
+37109,0.006696736,Arsenic,LB
+37109,23.10672,Naphthalene,LB
+37109,0.02337544,Ammonia,TON
+37109,0.01128515,Sulfur Dioxide,TON
+37109,79.18128,Toluene,LB
+37109,0.003718258,Chrysene,LB
+37109,4.954002,Acetaldehyde,LB
+37109,109.2054,Carbon Dioxide,TON
+37109,1.399775e-05,Nitrate portion of PM2.5-PRI,TON
+37109,0.000149079,Sulfate Portion of PM2.5-PRI,TON
+37105,149.02324,Xylenes (Mixed Isomers),LB
+37105,0.288871,Benzo[a]Pyrene,LB
+37105,2.4681,PM25-Primary from certain diesel engines,TON
+37105,0.5193054,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.3010399,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.07206054,"Benzo[g,h,i,]Perylene",LB
+37097,4839.044,Formaldehyde,LB
+37097,16.486566,Acenaphthene,LB
+37097,537.582,Naphthalene,LB
+37097,6.2358,PM10 Primary (Filt + Cond),TON
+37091,0.09452904,Benzene,LB
+37091,7.660536e-07,Nickel,LB
+37091,0.3837348,Carbon Monoxide,TON
+37091,0.00174591,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.09469328,Styrene,LB
+37105,3.718746,Hexane,LB
+37105,0.003635548,Anthracene,LB
+37105,0.07550732,Propionaldehyde,LB
+37105,0.00221144,Benzo[b]Fluoranthene,LB
+37105,0.0063776,Fluoranthene,LB
+37105,3.004098,"2,2,4-Trimethylpentane",LB
+37105,0.002394104,Manganese,LB
+37105,0.000695493,Arsenic,LB
+37105,134.1565,Carbon Dioxide,TON
+37105,0.002681112,Nitrous Oxide,TON
+37105,1.221565e-05,Nitrate portion of PM2.5-PRI,TON
+37103,4.339078,Benzene,LB
+37103,20.01254,Acetaldehyde,LB
+37103,0.05587772,PM10-Primary from certain diesel engines,TON
+37101,77946.74,Xylenes (Mixed Isomers),LB
+37101,11085.046,Formaldehyde,LB
+37101,14.524862,Benzo[a]Pyrene,LB
+37101,35569.58,Benzene,LB
+37101,9178.177,Carbon Monoxide,TON
+37101,39.14022,Ammonia,TON
+37101,8.187441,Organic Carbon portion of PM2.5-PRI,TON
+37101,608.3768,Volatile Organic Compounds,TON
+37099,0.003123409,Ammonia,TON
+37099,2.053367e-06,Nitrate portion of PM2.5-PRI,TON
+37099,0.00625298,PM2.5 Primary (Filt + Cond),TON
+37099,0.1291645,Toluene,LB
+37099,0.00012171408,Anthracene,LB
+37093,19.950396,Benzene,LB
+37093,0.5380327,PM10-Primary from certain diesel engines,TON
+37093,0.008253406,Nitrous Oxide,TON
+37093,0.002763504,Nitrate portion of PM2.5-PRI,TON
+37093,2.792442,Styrene,LB
+37093,16.828352,Toluene,LB
+37093,5.507258e-05,Chromium (VI),LB
+37093,0.008881206,Chrysene,LB
+37093,0.010209652,Benzo[a]Pyrene,LB
+37093,0.0018998102,Nickel,LB
+37093,0.006215877,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,5.176962,Manganese,LB
+37089,7.099871,PM2.5 Primary (Filt + Cond),TON
+37089,2.565312,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,14.991606,Pyrene,LB
+37089,2521.232,Formaldehyde,LB
+37079,13.986734,Acrolein,LB
+37079,9.047588,Propionaldehyde,LB
+37079,1.5291596,Pyrene,LB
+37079,14.809986,Xylenes (Mixed Isomers),LB
+37079,0.006479662,"Benzo[g,h,i,]Perylene",LB
+37079,0.004188014,"Dibenzo[a,h]Anthracene",LB
+37079,4.88931,"2,2,4-Trimethylpentane",LB
+37079,1.065031,PM10 Primary (Filt + Cond),TON
+37067,102.57762,Ethyl Benzene,LB
+37067,0.12436108,Arsenic,LB
+37067,23.2776,Fluorene,LB
+37067,268.8028,Nitrogen Oxides,TON
+37067,20.69142,PM10 Primary (Filt + Cond),TON
+37067,14.20943,PM2.5 Primary (Filt + Cond),TON
+37067,0.4354648,Sulfur Dioxide,TON
+37067,0.207412,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,2.597716,Acenaphthylene,LB
+37063,15.305862,"1,3-Butadiene",LB
+37063,39.40056,Acrolein,LB
+37063,25.58576,Propionaldehyde,LB
+37063,0.08217102,Manganese,LB
+37063,1.5456406,Acenaphthene,LB
+37063,11.62383,Nitrogen Oxides,TON
+37063,2.829773,Volatile Organic Compounds,TON
+37063,21.51486,Anthracene,LB
+37063,65074.64,Xylenes (Mixed Isomers),LB
+37063,42.12198,"Benzo[g,h,i,]Perylene",LB
+37063,5.365348,Nickel,LB
+37063,617776.9,Carbon Dioxide,TON
+37063,49.59795,Ammonia,TON
+37063,0.05257815,Nitrate portion of PM2.5-PRI,TON
+37063,0.5788659,Sulfate Portion of PM2.5-PRI,TON
+37057,1.4991992,Naphthalene,LB
+37057,0.01078123,Nitrous Oxide,TON
+37057,0.5803174,Propionaldehyde,LB
+37057,93.47496,Xylenes (Mixed Isomers),LB
+37057,0.009416986,Chrysene,LB
+37055,8.88993,Pyrene,LB
+37055,144.05054,Benzene,LB
+37055,0.003872291,Nitrate portion of PM2.5-PRI,TON
+37055,8.950578,Volatile Organic Compounds,TON
+37047,2.776262,Acenaphthene,LB
+37047,2.253314,Methane,TON
+37047,3.800025,PM2.5 Primary (Filt + Cond),TON
+37047,0.3753504,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,162.05176,Toluene,LB
+37039,0.1483711,Methane,TON
+37039,0.121695,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,0.5935072,Remaining PMFINE portion of PM2.5-PRI,TON
+37033,2.453586,Benzo[a]Pyrene,LB
+37033,0.05583776,"Dibenzo[a,h]Anthracene",LB
+37029,0.648193,Fluoranthene,LB
+37029,6068.302,Carbon Dioxide,TON
+37029,0.09566701,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.03741698,Formaldehyde,LB
+37121,0.1209787,Benzene,LB
+37121,0.0002364542,Fluorene,LB
+37121,0.006063148,Naphthalene,LB
+37121,6.701085e-05,Nitrous Oxide,TON
+37121,3.256671e-05,Sulfur Dioxide,TON
+37105,0.000236865,Mercury,LB
+37105,0.04952756,Arsenic,LB
+37105,506.4878,Acetaldehyde,LB
+37105,10.458182,Phenanthrene,LB
+37105,7397.806,Carbon Dioxide,TON
+37105,37.13578,"2,2,4-Trimethylpentane",LB
+37097,217.6278,Toluene,LB
+37097,149.3809,"2,2,4-Trimethylpentane",LB
+37089,0.007979436,Arsenic,LB
+37089,120.43478,Acetaldehyde,LB
+37089,9.228774,Carbon Monoxide,TON
+37089,0.9173481,PM10 Primary (Filt + Cond),TON
+37085,55.9179,Propionaldehyde,LB
+37085,7.826232,Pyrene,LB
+37085,0.14772324,Benzo[b]Fluoranthene,LB
+37085,5.01159,Acenaphthylene,LB
+37085,124.05718,Benzene,LB
+37085,0.1305314,Arsenic,LB
+37085,4.444571,PM2.5 Primary (Filt + Cond),TON
+37085,0.4980416,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,0.4155194,Sulfate Portion of PM2.5-PRI,TON
+37083,0.02654546,"Benzo[g,h,i,]Perylene",LB
+37083,4.907698,"2,2,4-Trimethylpentane",LB
+37083,0.03878882,Phenanthrene,LB
+37083,211.1114,Carbon Dioxide,TON
+37083,0.01072779,PM2.5 Primary (Filt + Cond),TON
+37079,0.11097674,Ethyl Benzene,LB
+37079,0.00016829554,Anthracene,LB
+37079,0.003713268,Propionaldehyde,LB
+37079,0.0001281389,Methane,TON
+37079,0.0001040003,Ammonia,TON
+37079,3.604275e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,3.887996e-06,Sulfate Portion of PM2.5-PRI,TON
+37075,0.0945538,Chrysene,LB
+37075,0.2088416,Benz[a]Anthracene,LB
+37075,0.03328778,Manganese,LB
+37075,137.1196,Acetaldehyde,LB
+37075,34.68072,Naphthalene,LB
+37075,0.08775344,Methane,TON
+37075,6.040779,Nitrogen Oxides,TON
+37075,1.438623,Ethyl Benzene,LB
+37075,0.0004258034,Benzo[k]Fluoranthene,LB
+37075,0.009268766,Phenanthrene,LB
+37075,0.6950552,Carbon Monoxide,TON
+37075,8.816659,Carbon Dioxide,TON
+37075,1.55847e-06,Nitrate portion of PM2.5-PRI,TON
+37075,0.04736033,Volatile Organic Compounds,TON
+37075,0.02203966,Sulfate Portion of PM2.5-PRI,TON
+37075,0.6918568,Benzo[k]Fluoranthene,LB
+37075,0.013110706,Mercury,LB
+37075,0.1634628,Nickel,LB
+37075,2.811848,Acenaphthene,LB
+37075,145.975,Naphthalene,LB
+37075,0.2257317,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,43.80754,Ethyl Benzene,LB
+37071,107.91844,Toluene,LB
+37071,0.0005489312,Chromium (VI),LB
+37071,118.77112,Benzene,LB
+37071,3.367082,Elemental Carbon portion of PM2.5-PRI,TON
+37069,4.313664,Xylenes (Mixed Isomers),LB
+37069,0.0015796036,"Benzo[g,h,i,]Perylene",LB
+37069,0.001697966,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.0248479,Manganese,LB
+37069,0.03084597,Methane,TON
+37069,0.006856002,Sulfate Portion of PM2.5-PRI,TON
+37069,0.3163274,Volatile Organic Compounds,TON
+37069,1.0684638,Styrene,LB
+37069,6.14393,Acrolein,LB
+37069,5.779676,Toluene,LB
+37069,0.0010023644,Benzo[b]Fluoranthene,LB
+37069,0.003359494,Benzo[a]Pyrene,LB
+37069,0.002849822,Elemental Carbon portion of PM2.5-PRI,TON
+37069,30.79796,Xylenes (Mixed Isomers),LB
+37069,15.335936,Hexane,LB
+37069,0.008758388,Anthracene,LB
+37069,4.295436,Carbon Monoxide,TON
+37069,0.003622811,Nitrous Oxide,TON
+37061,15.585294,Ethyl Benzene,LB
+37061,27.78464,Hexane,LB
+37061,0.017923688,Anthracene,LB
+37061,0.016390296,Benzo[a]Pyrene,LB
+37061,0.0005072427,Sulfate Portion of PM2.5-PRI,TON
+37057,0.899345,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.1290496,Sulfur Dioxide,TON
+37057,21.50536,"2,2,4-Trimethylpentane",LB
+37057,14948.7,Carbon Dioxide,TON
+37057,2.356182,Acrolein,LB
+37057,0.05821007,Nitrous Oxide,TON
+37057,0.02501216,Sulfur Dioxide,TON
+37055,5.049848,Styrene,LB
+37055,18.717264,Propionaldehyde,LB
+37055,23.18092,Xylenes (Mixed Isomers),LB
+37055,1.6669026,Fluoranthene,LB
+37055,1.9472902,Acenaphthylene,LB
+37055,0.05677164,Manganese,LB
+37055,3.225492,Phenanthrene,LB
+37055,2379.632,Carbon Dioxide,TON
+37055,0.2669256,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.06279672,Styrene,LB
+37053,0.0547992,Acrolein,LB
+37053,10.282696,Toluene,LB
+37053,0.000774205,Benzo[k]Fluoranthene,LB
+37053,0.0002550716,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.1625638,Nitrogen Oxides,TON
+37039,0.4637622,Pyrene,LB
+37039,2.258544,"2,2,4-Trimethylpentane",LB
+37039,0.0117929,Nickel,LB
+37039,0.004244856,Arsenic,LB
+37039,545.4577,Carbon Dioxide,TON
+37039,0.08079367,PM25-Primary from certain diesel engines,TON
+37039,0.0189931,Ammonia,TON
+37039,0.1066822,PM10 Primary (Filt + Cond),TON
+37039,0.004706566,Sulfur Dioxide,TON
+37041,0.0254186,Anthracene,LB
+37041,0.07368474,Pyrene,LB
+37041,0.010587518,Chrysene,LB
+37041,0.7098636,Benzene,LB
+37041,0.002783555,Ammonia,TON
+37041,9.772931e-05,Nitrate portion of PM2.5-PRI,TON
+37041,0.3147272,Nitrogen Oxides,TON
+37041,0.000919629,Sulfate Portion of PM2.5-PRI,TON
+37035,0.711708,Benzene,LB
+37035,0.2488372,Acetaldehyde,LB
+37035,0.0007761512,Acenaphthene,LB
+37035,5.929033e-05,Ammonia,TON
+37035,5.025978e-05,Sulfur Dioxide,TON
+37035,3.356152e-08,Chromium (VI),LB
+37035,0.0004188072,Benzo[b]Fluoranthene,LB
+37035,0.003552044,Acenaphthylene,LB
+37031,0.0005718686,Chrysene,LB
+37031,0.01930629,Nitrous Oxide,TON
+37025,0.0008744244,Benz[a]Anthracene,LB
+37025,0.003204594,Acenaphthene,LB
+37025,0.9654578,Carbon Monoxide,TON
+37025,5.968902,Carbon Dioxide,TON
+37025,0.002111618,PM10 Primary (Filt + Cond),TON
+37025,1.991424,Ethyl Benzene,LB
+37025,1.5470998e-07,Chromium (VI),LB
+37025,0.002985218,"Benzo[g,h,i,]Perylene",LB
+37025,0.000859365,Benzo[b]Fluoranthene,LB
+37135,48495.85,Carbon Dioxide,TON
+37135,4.771811,PM25-Primary from certain diesel engines,TON
+37135,0.04974132,Nitrous Oxide,TON
+37135,96.7524,Toluene,LB
+37135,3.343398,Anthracene,LB
+37135,0.04901376,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,1182.425,Formaldehyde,LB
+37135,3.150918,Acenaphthene,LB
+37129,0.004850122,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.00262003,Benzo[k]Fluoranthene,LB
+37129,0.06867643,Methane,TON
+37129,0.2155943,PM2.5 Primary (Filt + Cond),TON
+37129,0.4480962,Volatile Organic Compounds,TON
+37135,1707.5502,"1,3-Butadiene",LB
+37135,0.02103188,Chromium (VI),LB
+37133,433.2016,Toluene,LB
+37133,114.98582,Hexane,LB
+37133,279.0562,Xylenes (Mixed Isomers),LB
+37133,0.11149232,"Benzo[g,h,i,]Perylene",LB
+37133,90.77798,"2,2,4-Trimethylpentane",LB
+37133,0.0605197,Sulfur Dioxide,TON
+37133,0.001953652,Sulfate Portion of PM2.5-PRI,TON
+37133,2.253415,Volatile Organic Compounds,TON
+37123,8.73262,Acrolein,LB
+37123,0.1217136,Benzo[b]Fluoranthene,LB
+37123,0.124088,Benz[a]Anthracene,LB
+37123,453.3072,Benzene,LB
+37123,0.0004721252,Nitrate portion of PM2.5-PRI,TON
+37123,0.08713419,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.6714545,Elemental Carbon portion of PM2.5-PRI,TON
+37113,6.527076,Hexane,LB
+37113,2.163118,Pyrene,LB
+37113,0.750914,Acenaphthene,LB
+37113,42283.94,Carbon Dioxide,TON
+37113,0.004346338,Nitrate portion of PM2.5-PRI,TON
+37113,59.95345,Volatile Organic Compounds,TON
+37111,0.4771564,Anthracene,LB
+37111,11.170944,Propionaldehyde,LB
+37111,0.1582947,Chrysene,LB
+37111,0.07813658,Arsenic,LB
+37111,3.029318,Phenanthrene,LB
+37111,28.9433,Naphthalene,LB
+37111,0.2669116,Nitrous Oxide,TON
+37111,0.006772164,Sulfate Portion of PM2.5-PRI,TON
+37103,0.0009936914,Arsenic,LB
+37103,0.03968405,PM2.5 Primary (Filt + Cond),TON
+37103,0.4455968,Ethyl Benzene,LB
+37103,0.14401292,Pyrene,LB
+37103,0.9757178,Xylenes (Mixed Isomers),LB
+37091,0.0001114294,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.015527642,Fluoranthene,LB
+37091,0.1948559,Benzene,LB
+37091,8.38378e-05,Arsenic,LB
+37091,0.005220189,PM10-Primary from certain diesel engines,TON
+37105,2113.714,Toluene,LB
+37105,0.10563068,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,469.9156,"2,2,4-Trimethylpentane",LB
+37105,0.018887662,Arsenic,LB
+37105,0.000306633,Nitrate portion of PM2.5-PRI,TON
+37099,0.7832304,"Benzo[g,h,i,]Perylene",LB
+37099,0.006543292,Mercury,LB
+37099,0.08158668,Nickel,LB
+37099,4.067224,Phenanthrene,LB
+37095,162.67254,Ethyl Benzene,LB
+37093,0.513369,Toluene,LB
+37093,0.1211535,Hexane,LB
+37093,0.002741064,Propionaldehyde,LB
+37093,1.07047e-07,Mercury,LB
+37093,0.0001662397,Methane,TON
+37093,0.003678726,Nitrogen Oxides,TON
+37091,0.006373494,"Benzo[g,h,i,]Perylene",LB
+37091,0.2016128,Chrysene,LB
+37091,130.33438,Formaldehyde,LB
+37091,0.04056092,Manganese,LB
+37091,0.6575745,PM10-Primary from certain diesel engines,TON
+37091,0.3969477,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.002631599,Nitrous Oxide,TON
+37091,0.001807597,Nitrate portion of PM2.5-PRI,TON
+37085,72.0106,Naphthalene,LB
+37085,20.86889,Carbon Monoxide,TON
+37085,0.03075312,Nitrous Oxide,TON
+37085,0.015450066,Benzo[k]Fluoranthene,LB
+37085,0.3432032,Manganese,LB
+37083,72.25474,Toluene,LB
+37083,42.91524,Xylenes (Mixed Isomers),LB
+37083,0.0008802262,Arsenic,LB
+37083,0.09546024,Phenanthrene,LB
+37083,0.00405682,Nitrous Oxide,TON
+37083,0.01213284,Organic Carbon portion of PM2.5-PRI,TON
+37077,1.0774624,Propionaldehyde,LB
+37077,0.004186082,Benzo[b]Fluoranthene,LB
+37077,0.15000982,Fluoranthene,LB
+37077,0.10988264,Acenaphthylene,LB
+37077,0.02721698,Chrysene,LB
+37077,0.014029382,Benzo[a]Pyrene,LB
+37077,0.0005782306,"Dibenzo[a,h]Anthracene",LB
+37077,0.010282334,Manganese,LB
+37077,0.2496182,Phenanthrene,LB
+37077,0.1115492,PM10-Primary from certain diesel engines,TON
+37077,0.0002457273,Nitrate portion of PM2.5-PRI,TON
+37065,0.04443526,Nickel,LB
+37065,4.109736,Phenanthrene,LB
+37065,37.54442,Naphthalene,LB
+37065,0.2241247,Methane,TON
+37065,0.8298092,PM25-Primary from certain diesel engines,TON
+37049,5092.664,Ethyl Benzene,LB
+37049,163.30562,Styrene,LB
+37049,8271.35,Hexane,LB
+37049,2.487348,Benzo[k]Fluoranthene,LB
+37049,0.11405216,Mercury,LB
+37049,2602.178,Acetaldehyde,LB
+37049,12.77218,Ammonia,TON
+37049,3.339983,Sulfur Dioxide,TON
+37047,0.09690458,"Benzo[g,h,i,]Perylene",LB
+37047,0.0364087,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.2758928,Acenaphthylene,LB
+37047,0.3303858,Phenanthrene,LB
+37041,1.635643,Carbon Monoxide,TON
+37041,0.0006450603,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.008685973,PM10 Primary (Filt + Cond),TON
+37041,0.001190938,Sulfur Dioxide,TON
+37041,0.100695,Volatile Organic Compounds,TON
+37041,0.503285,"1,3-Butadiene",LB
+37031,0.000897059,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.1792595,Phenanthrene,LB
+37031,0.09842586,Fluorene,LB
+37031,0.03662892,Elemental Carbon portion of PM2.5-PRI,TON
+37027,2176.978,Ethyl Benzene,LB
+37115,1.8090646,Xylenes (Mixed Isomers),LB
+37109,0.0013593016,Benzo[b]Fluoranthene,LB
+37109,1.4764888,Hexane,LB
+37109,0.2813114,Propionaldehyde,LB
+37109,5.950288e-05,"Dibenzo[a,h]Anthracene",LB
+37109,0.006660328,Phenanthrene,LB
+37109,0.01229746,Ammonia,TON
+37175,0.7458564,Volatile Organic Compounds,TON
+37171,5087.18,"2,2,4-Trimethylpentane",LB
+37169,0.016449668,Benzo[b]Fluoranthene,LB
+37169,0.008647328,Nickel,LB
+37169,0.00238402,Arsenic,LB
+37169,0.04897315,Methane,TON
+37169,0.2064592,PM10-Primary from certain diesel engines,TON
+37169,0.003370321,Nitrous Oxide,TON
+37169,0.001014497,Nitrate portion of PM2.5-PRI,TON
+37169,0.2547623,PM10 Primary (Filt + Cond),TON
+37169,0.004317823,Sulfate Portion of PM2.5-PRI,TON
+37169,1.1948752,Styrene,LB
+37169,2.271776,Hexane,LB
+37169,6.807628,Xylenes (Mixed Isomers),LB
+37167,450.1212,Toluene,LB
+37167,0.0914846,Anthracene,LB
+37167,0.17749928,Pyrene,LB
+37167,0.02603154,Benzo[b]Fluoranthene,LB
+37167,33.47648,Formaldehyde,LB
+37167,35.88406,Acetaldehyde,LB
+37167,1214.075,Carbon Dioxide,TON
+37167,2.185315,Volatile Organic Compounds,TON
+37159,8.515662,Pyrene,LB
+37159,0.2055711,Ammonia,TON
+37155,0.2648364,Fluoranthene,LB
+37155,66.74888,Formaldehyde,LB
+37155,0.2013848,Acenaphthene,LB
+37155,7.119302,Naphthalene,LB
+37161,1765.1528,Ethyl Benzene,LB
+37161,14703.648,Toluene,LB
+37161,2601.038,Hexane,LB
+37161,391.2692,Benzene,LB
+37133,0.1765397,Fluoranthene,LB
+37133,0.03226482,Chrysene,LB
+37133,23.79396,Formaldehyde,LB
+37133,0.6004,"2,2,4-Trimethylpentane",LB
+37133,0.002693492,Nickel,LB
+37133,10.279524,Acetaldehyde,LB
+37133,4.124072e-05,Mercury,LB
+37133,0.08404182,Phenanthrene,LB
+37133,7.05151,Carbon Monoxide,TON
+37133,42.6396,Xylenes (Mixed Isomers),LB
+37133,0.012614614,"Benzo[g,h,i,]Perylene",LB
+37133,0.004776216,Benzo[a]Pyrene,LB
+37133,0.0001087831,"Dibenzo[a,h]Anthracene",LB
+37125,1.0131704,Pyrene,LB
+37125,0.04421278,Manganese,LB
+37125,0.03652556,PM10-Primary from certain diesel engines,TON
+37125,0.03087716,Ammonia,TON
+37125,0.1413894,PM10 Primary (Filt + Cond),TON
+37121,2.778682,Propionaldehyde,LB
+37121,0.0003030364,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,5.003938,Benzene,LB
+37121,0.01023549,Ammonia,TON
+37121,0.3045636,Volatile Organic Compounds,TON
+37021,0.003347128,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.0018274986,Benzo[k]Fluoranthene,LB
+37021,0.044316,Manganese,LB
+37021,2.41766e-05,Mercury,LB
+37021,2.016474,Carbon Monoxide,TON
+37021,1927.895,Carbon Dioxide,TON
+37019,80.85174,Benzene,LB
+37019,6.41125,Fluorene,LB
+37019,0.02135613,Nitrous Oxide,TON
+37019,1.05017,Organic Carbon portion of PM2.5-PRI,TON
+37019,55.9965,Toluene,LB
+37019,21.39468,Hexane,LB
+37019,0.2201684,Benzo[b]Fluoranthene,LB
+37019,7.198696,Fluoranthene,LB
+37019,0.7383778,Benzo[a]Pyrene,LB
+37015,11.558172,Propionaldehyde,LB
+37015,26.27636,Xylenes (Mixed Isomers),LB
+37015,0.008061644,"Benzo[g,h,i,]Perylene",LB
+37015,0.005395478,Benzo[k]Fluoranthene,LB
+37015,0.00017910544,Mercury,LB
+37015,109.63894,Acetaldehyde,LB
+37015,8.139146,Carbon Monoxide,TON
+37015,1.064219,PM25-Primary from certain diesel engines,TON
+37015,0.7029423,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.05973468,Styrene,LB
+37015,0.1048565,Hexane,LB
+37015,0.0009148468,Benzo[b]Fluoranthene,LB
+37015,0.00012504754,"Dibenzo[a,h]Anthracene",LB
+37015,0.0009189292,Manganese,LB
+37015,1.813548,Acetaldehyde,LB
+37015,0.08268697,Carbon Monoxide,TON
+37015,0.1840615,Nitrogen Oxides,TON
+37015,0.01035348,PM2.5 Primary (Filt + Cond),TON
+37011,3.02223e-05,Sulfate Portion of PM2.5-PRI,TON
+37001,0.6607446,Fluoranthene,LB
+37001,8.069336,Benzene,LB
+37001,0.00614185,Arsenic,LB
+37001,0.05880968,Methane,TON
+37001,0.2259741,PM25-Primary from certain diesel engines,TON
+37001,0.08484196,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.00119569,Nitrate portion of PM2.5-PRI,TON
+37075,0.1164269,Hexane,LB
+37075,0.0001348465,Benzo[b]Fluoranthene,LB
+37075,0.001176961,Methane,TON
+37075,16.82886,Carbon Dioxide,TON
+37157,0.003016362,Pyrene,LB
+37157,0.1221649,Volatile Organic Compounds,TON
+37125,0.06040878,"1,3-Butadiene",LB
+37125,0.000440703,Benz[a]Anthracene,LB
+37125,1.3178808,Benzene,LB
+37125,0.0013711694,Manganese,LB
+37125,0.002598866,Phenanthrene,LB
+37125,0.0013597,Nitrous Oxide,TON
+37119,0.007382098,Anthracene,LB
+37119,0.01320686,Benzo[k]Fluoranthene,LB
+37119,0.05577406,Manganese,LB
+37119,0.0145028,Nickel,LB
+37119,0.02223694,Arsenic,LB
+37119,0.02332035,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,0.001504454,Sulfate Portion of PM2.5-PRI,TON
+37013,1.3797222,Propionaldehyde,LB
+37013,0.0016637478,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.7061666,"2,2,4-Trimethylpentane",LB
+37013,0.3366212,Phenanthrene,LB
+37013,0.0003838051,Nitrate portion of PM2.5-PRI,TON
+37007,23.96984,Xylenes (Mixed Isomers),LB
+37007,19.105062,"2,2,4-Trimethylpentane",LB
+37019,0.1437652,PM2.5 Primary (Filt + Cond),TON
+37015,29.94704,Formaldehyde,LB
+37015,0.0003593074,Pyrene,LB
+37015,1.1703676e-05,"Benzo[g,h,i,]Perylene",LB
+37015,3.201296,Acetaldehyde,LB
+37015,0.0006717174,Naphthalene,LB
+37013,0.388933,Toluene,LB
+37013,0.08444404,"2,2,4-Trimethylpentane",LB
+37013,2.828546e-05,Benz[a]Anthracene,LB
+37013,0.10795894,Benzene,LB
+37013,8.575136e-06,Manganese,LB
+37013,1.7568346e-06,Nickel,LB
+37013,6.763777e-05,Nitrous Oxide,TON
+37009,0.12667088,Fluoranthene,LB
+37009,0.4640938,"2,2,4-Trimethylpentane",LB
+37009,0.11684188,Fluorene,LB
+37009,1.8870986,Naphthalene,LB
+37009,0.4313357,Carbon Monoxide,TON
+37009,0.01510914,Elemental Carbon portion of PM2.5-PRI,TON
+37009,0.001382978,Sulfur Dioxide,TON
+37009,0.09658461,Volatile Organic Compounds,TON
+37009,0.7715014,Benzo[k]Fluoranthene,LB
+37009,1.0975718,Benzo[a]Pyrene,LB
+37009,0.0206274,Mercury,LB
+37009,426.6666,Carbon Monoxide,TON
+37005,0.927717,Anthracene,LB
+37005,20.7184,Propionaldehyde,LB
+37005,0.3183912,Benzo[b]Fluoranthene,LB
+37005,1127.0478,Benzene,LB
+37005,0.1712246,Manganese,LB
+37005,0.1531394,Arsenic,LB
+37005,2.19475,Fluorene,LB
+37003,0.008929354,Chrysene,LB
+37003,0.17816722,Ethyl Benzene,LB
+37003,0.1821068,"1,3-Butadiene",LB
+37003,0.5130768,Benzene,LB
+37003,0.01429117,PM25-Primary from certain diesel engines,TON
+37003,680.8028,"1,3-Butadiene",LB
+37003,89.38734,Acrolein,LB
+37003,19368.106,Toluene,LB
+37003,19.8109,Acenaphthylene,LB
+37003,8.810948,Fluorene,LB
+37003,43918.31,Carbon Dioxide,TON
+37003,0.6081222,Remaining PMFINE portion of PM2.5-PRI,TON
+37075,0.2478756,Benzene,LB
+37199,0.11405084,Acrolein,LB
+37199,0.742066,Propionaldehyde,LB
+37199,0.09114896,Benzene,LB
+37199,0.006192967,PM10 Primary (Filt + Cond),TON
+37187,52.12232,Ethyl Benzene,LB
+37187,87.27108,Hexane,LB
+37187,71.71502,Benzene,LB
+37187,0.00376986,Manganese,LB
+37183,8.184468e-06,Acenaphthylene,LB
+37183,6.925296e-07,Benz[a]Anthracene,LB
+37183,3.478564e-08,Nickel,LB
+37183,1.69743e-05,Phenanthrene,LB
+37183,0.01055147,Methane,TON
+37183,8.756082e-05,PM2.5 Primary (Filt + Cond),TON
+37177,2.114942,Acrolein,LB
+37177,8.041246e-06,Mercury,LB
+37177,11.62716,Acetaldehyde,LB
+37177,0.6292511,Nitrogen Oxides,TON
+37177,0.04073982,PM10 Primary (Filt + Cond),TON
+37177,0.001954504,Remaining PMFINE portion of PM2.5-PRI,TON
+37045,3028.932,Ethyl Benzene,LB
+37045,25231.02,Toluene,LB
+37041,0.0014775296,Manganese,LB
+37041,0.03767892,Phenanthrene,LB
+37041,0.0001272836,Nitrous Oxide,TON
+37041,0.010550166,Anthracene,LB
+37037,0.002437702,Fluorene,LB
+37037,2.542162,Carbon Monoxide,TON
+37037,151.2527,Carbon Dioxide,TON
+37037,0.001757483,Fluoranthene,LB
+37037,0.01486757,Nitrous Oxide,TON
+37037,1.433499,Nitrogen Oxides,TON
+37037,0.0008008198,Sulfur Dioxide,TON
+37033,4.078158e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,2.307882e-05,Benzo[k]Fluoranthene,LB
+37033,0.009081885,PM10 Primary (Filt + Cond),TON
+37027,0.0018934136,Phenanthrene,LB
+37027,0.002153032,Naphthalene,LB
+37027,0.002708931,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.08172268,Ethyl Benzene,LB
+37027,0.5245546,Toluene,LB
+37155,6.961082,Toluene,LB
+37155,0.0099271,"Benzo[g,h,i,]Perylene",LB
+37155,0.003928874,Fluoranthene,LB
+37155,0.00368644,Benzo[a]Pyrene,LB
+37155,0.004337121,PM10 Primary (Filt + Cond),TON
+37151,19.609422,"1,3-Butadiene",LB
+37151,0.03480658,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,3.34297,Acenaphthylene,LB
+37151,1.9884906,Acenaphthene,LB
+37143,10.292196,Xylenes (Mixed Isomers),LB
+37143,1.060872,Formaldehyde,LB
+37143,3.755406,Benzene,LB
+37143,9.4032e-05,Nickel,LB
+37143,29.81764,Carbon Dioxide,TON
+37143,0.0799616,Styrene,LB
+37139,14167.962,Toluene,LB
+37139,4.838718,Fluoranthene,LB
+37139,0.9617926,Chrysene,LB
+37139,1224.037,Acetaldehyde,LB
+37139,171.32808,Naphthalene,LB
+37139,4.321253,Ammonia,TON
+37139,5.992458,PM10 Primary (Filt + Cond),TON
+37139,68.65884,Volatile Organic Compounds,TON
+37123,2.601288,Styrene,LB
+37123,5.839904,"1,3-Butadiene",LB
+37123,9.49096,Propionaldehyde,LB
+37123,0.9989494,Acenaphthylene,LB
+37123,0.005260538,"Dibenzo[a,h]Anthracene",LB
+37123,0.03011542,Nickel,LB
+37123,0.8175684,PM25-Primary from certain diesel engines,TON
+37119,18.428544,Styrene,LB
+37119,0.14283084,Benzo[b]Fluoranthene,LB
+37119,0.019793392,"Dibenzo[a,h]Anthracene",LB
+37119,1.8817284,Benz[a]Anthracene,LB
+37119,2.940281,PM2.5 Primary (Filt + Cond),TON
+37119,0.227567,Sulfate Portion of PM2.5-PRI,TON
+37115,0.13421224,Propionaldehyde,LB
+37115,2.161084,Acetaldehyde,LB
+37115,1.480875e-05,Nitrate portion of PM2.5-PRI,TON
+37101,0.03967788,Benzo[a]Pyrene,LB
+37101,0.03181328,Manganese,LB
+37101,0.04259148,Methane,TON
+37101,1.98984,Carbon Monoxide,TON
+37101,0.003018222,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,1007.9452,"2,2,4-Trimethylpentane",LB
+37103,114.72216,Benzene,LB
+37073,2.627548,Ethyl Benzene,LB
+37073,0.001438215,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.0011062766,Benzo[b]Fluoranthene,LB
+37073,1.9529496e-06,Mercury,LB
+37073,1.3597514,Acetaldehyde,LB
+37073,0.004152572,Acenaphthene,LB
+37073,0.001446115,PM2.5 Primary (Filt + Cond),TON
+37085,67.34672,"2,2,4-Trimethylpentane",LB
+37081,1.345206,Styrene,LB
+37081,1.1671732,Acrolein,LB
+37081,18.591078,Formaldehyde,LB
+37081,0.0009095266,"Dibenzo[a,h]Anthracene",LB
+37081,0.01592781,Manganese,LB
+37081,0.3179102,Phenanthrene,LB
+37081,0.006790592,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.02589432,Ammonia,TON
+37081,0.0001222311,Nitrate portion of PM2.5-PRI,TON
+37081,1.315892,Volatile Organic Compounds,TON
+37081,4.51701e-05,Chromium (VI),LB
+37081,0.03868348,Chrysene,LB
+37081,0.001315378,"Dibenzo[a,h]Anthracene",LB
+37081,1560.5386,Propionaldehyde,LB
+37081,24261.1,Formaldehyde,LB
+37081,88.84145,Ammonia,TON
+37081,2406.097,Nitrogen Oxides,TON
+37067,0.058057,Benz[a]Anthracene,LB
+37067,4.18665,Styrene,LB
+37067,4.141064,Acrolein,LB
+37067,0.08160982,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,48.11632,Acetaldehyde,LB
+37067,0.05328018,Chromium (VI),LB
+37067,26.23884,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.5341394,Mercury,LB
+37067,15386.57,Carbon Monoxide,TON
+37067,10.22845,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.1152336,Pyrene,LB
+37065,0.007224868,Manganese,LB
+37065,0.07993688,Fluorene,LB
+37065,0.0001524341,Nitrate portion of PM2.5-PRI,TON
+37065,0.002932058,Sulfate Portion of PM2.5-PRI,TON
+37043,0.1790086,Hexane,LB
+37043,0.0004248588,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.00377156,Methane,TON
+37043,0.01808171,PM25-Primary from certain diesel engines,TON
+37043,0.2780469,Nitrogen Oxides,TON
+37043,0.0007332046,Sulfate Portion of PM2.5-PRI,TON
+37037,1.3579156,Acrolein,LB
+37037,250.7502,Toluene,LB
+37037,0.02607614,Benzo[k]Fluoranthene,LB
+37037,71.96614,Benzene,LB
+37037,0.02350612,Manganese,LB
+37037,0.13553822,Fluorene,LB
+37037,0.0525425,Methane,TON
+37037,0.02303057,Organic Carbon portion of PM2.5-PRI,TON
+37035,143.15694,"1,3-Butadiene",LB
+37035,243.2046,Xylenes (Mixed Isomers),LB
+37035,19.607326,Fluoranthene,LB
+37035,0.017979422,Benzo[k]Fluoranthene,LB
+37035,2.564978,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.06518582,Nitrous Oxide,TON
+37035,0.008488154,Nitrate portion of PM2.5-PRI,TON
+37035,0.662558,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.014829754,Ethyl Benzene,LB
+37035,0.0005829092,Styrene,LB
+37035,3.47711e-07,"Dibenzo[a,h]Anthracene",LB
+37035,0.00013362154,Phenanthrene,LB
+37035,4.950308e-05,Fluorene,LB
+37035,0.01059718,Carbon Monoxide,TON
+37035,0.1782623,Carbon Dioxide,TON
+37035,0.0004260786,Volatile Organic Compounds,TON
+37031,47.8157,Naphthalene,LB
+37031,17.04426,Nitrogen Oxides,TON
+37031,0.4580622,Organic Carbon portion of PM2.5-PRI,TON
+37031,1.819439,PM10 Primary (Filt + Cond),TON
+37031,0.04910288,Sulfur Dioxide,TON
+37031,40.67646,Benzene,LB
+37031,0.00011733456,Mercury,LB
+37031,3.159324,Fluoranthene,LB
+37025,151.84102,Hexane,LB
+37025,8.096496e-05,Chromium (VI),LB
+37025,0.0777821,Benzo[a]Pyrene,LB
+37025,0.0540253,Benz[a]Anthracene,LB
+37025,54.87834,Acetaldehyde,LB
+37025,0.01735677,Elemental Carbon portion of PM2.5-PRI,TON
+37025,0.04296289,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.001683581,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.009321848,Ammonia,TON
+37027,0.0424752,Pyrene,LB
+37027,8.230582,Acetaldehyde,LB
+37175,1060.3852,Hexane,LB
+37159,1.2259978,Styrene,LB
+37159,0.650144,Fluorene,LB
+37151,37.97036,Styrene,LB
+37151,1142.2842,"2,2,4-Trimethylpentane",LB
+37151,1.326373,Ammonia,TON
+37141,1.226886,Volatile Organic Compounds,TON
+37141,152.62624,Xylenes (Mixed Isomers),LB
+37141,0.10121838,Fluoranthene,LB
+37141,0.06691592,Acenaphthene,LB
+37141,0.04671046,Methane,TON
+37137,0.4806904,Hexane,LB
+37137,1.1934006,Xylenes (Mixed Isomers),LB
+37137,0.015476694,Chrysene,LB
+37137,0.04053809,PM25-Primary from certain diesel engines,TON
+37137,0.003356661,Ammonia,TON
+37137,0.001969932,Sulfur Dioxide,TON
+37137,0.001282928,Sulfate Portion of PM2.5-PRI,TON
+37123,0.0004487453,Nitrogen Oxides,TON
+37123,8.414722e-06,PM2.5 Primary (Filt + Cond),TON
+37123,2.172586e-06,Sulfur Dioxide,TON
+37123,0.005094716,Ethyl Benzene,LB
+37123,8.23375e-07,Manganese,LB
+37123,1.981476e-07,Nickel,LB
+37109,16.12135,Toluene,LB
+37109,0.0036851,Anthracene,LB
+37109,0.0011430486,Chrysene,LB
+37105,2.390674,Fluorene,LB
+37105,0.3046327,Methane,TON
+37105,0.3540495,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.018522498,"Indeno[1,2,3-c,d]Pyrene",LB
+37105,398.3488,Formaldehyde,LB
+37105,0.8019926,Benz[a]Anthracene,LB
+37103,0.00010424702,Chromium (VI),LB
+37103,0.0262643,Benzo[b]Fluoranthene,LB
+37103,1.1499002,Fluoranthene,LB
+37103,9.09902,"2,2,4-Trimethylpentane",LB
+37103,0.3989144,Methane,TON
+37103,10414.37,Carbon Dioxide,TON
+37103,0.8007659,PM25-Primary from certain diesel engines,TON
+37103,5.196258,Ethyl Benzene,LB
+37103,7.75435,Propionaldehyde,LB
+37103,7.053058e-05,Chromium (VI),LB
+37103,0.003540208,Benzo[k]Fluoranthene,LB
+37103,1.718275,Phenanthrene,LB
+37103,4.859681,Carbon Monoxide,TON
+37103,0.007704802,"Benzo[g,h,i,]Perylene",LB
+37103,0.4151848,Benz[a]Anthracene,LB
+37103,72.86126,Acetaldehyde,LB
+37103,2.056642,Phenanthrene,LB
+37103,0.4420198,PM25-Primary from certain diesel engines,TON
+37103,0.002218684,Nitrate portion of PM2.5-PRI,TON
+37103,0.6313598,PM10 Primary (Filt + Cond),TON
+37103,0.951052,Volatile Organic Compounds,TON
+37101,1.8631882,Acenaphthylene,LB
+37101,0.4800804,Chrysene,LB
+37101,362.2114,Formaldehyde,LB
+37101,0.09472688,Manganese,LB
+37101,6.822646e-05,Mercury,LB
+37101,154.34964,Acetaldehyde,LB
+37101,2.004774,Volatile Organic Compounds,TON
+37101,7.900442e-05,Chromium (VI),LB
+37101,0.01076023,Sulfate Portion of PM2.5-PRI,TON
+37101,934.9946,Ethyl Benzene,LB
+37101,0.3605278,"Indeno[1,2,3-c,d]Pyrene",LB
+37101,0.251622,Benzo[b]Fluoranthene,LB
+37101,3.578024,Acenaphthylene,LB
+37101,0.008271568,"Dibenzo[a,h]Anthracene",LB
+37101,0.0490758,Nitrous Oxide,TON
+37097,0.01205161,"Benzo[g,h,i,]Perylene",LB
+37097,0.15297092,Naphthalene,LB
+37097,0.007515469,Ammonia,TON
+37097,0.002047175,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.0001795608,Sulfate Portion of PM2.5-PRI,TON
+37093,0.004318434,Sulfate Portion of PM2.5-PRI,TON
+37093,1.8593018,Hexane,LB
+37093,0.00219225,Benzo[k]Fluoranthene,LB
+37089,0.00012590952,Styrene,LB
+37089,9.282192e-06,Pyrene,LB
+37089,1.1784682e-05,"Benzo[g,h,i,]Perylene",LB
+37089,0.0018480182,Formaldehyde,LB
+37089,2.460876e-06,Benz[a]Anthracene,LB
+37089,1.5848736e-06,Manganese,LB
+37089,0.0015178044,Acetaldehyde,LB
+37089,1.604284e-06,Nitrous Oxide,TON
+37089,0.0002489256,Nitrogen Oxides,TON
+37089,1.321509e-06,Sulfur Dioxide,TON
+37087,7.178814e-05,Acrolein,LB
+37087,0.010716218,Toluene,LB
+37087,3.081312e-06,Benzo[k]Fluoranthene,LB
+37087,0.0014295932,Formaldehyde,LB
+37087,5.502646e-06,Benzo[a]Pyrene,LB
+37087,1.2763558e-07,"Dibenzo[a,h]Anthracene",LB
+37087,0.00207456,Carbon Monoxide,TON
+37087,1.086837e-06,Nitrous Oxide,TON
+37081,0.0004178038,Ammonia,TON
+37081,0.0003410451,Sulfur Dioxide,TON
+37081,0.4326342,Xylenes (Mixed Isomers),LB
+37081,0.00013456554,Benzo[b]Fluoranthene,LB
+37081,0.0003487148,Fluoranthene,LB
+37059,8.778642,"1,3-Butadiene",LB
+37059,0.04923872,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.10400882,Fluoranthene,LB
+37059,0.03050888,Benzo[k]Fluoranthene,LB
+37059,59.34964,"2,2,4-Trimethylpentane",LB
+37059,72.12402,Benzene,LB
+37059,0.003345384,Nickel,LB
+37059,3.577416,Naphthalene,LB
+37059,0.04042452,Ammonia,TON
+37059,0.02682437,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.1113762,PM10 Primary (Filt + Cond),TON
+37059,0.01533057,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.003445656,Styrene,LB
+37061,0.11950998,Hexane,LB
+37061,0.331572,Xylenes (Mixed Isomers),LB
+37061,7.640946e-09,Chromium (VI),LB
+37061,5.786444e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,4.196248e-05,Benzo[b]Fluoranthene,LB
+37061,0.0001681597,Methane,TON
+37061,0.3152477,Carbon Dioxide,TON
+37055,3.404344e-06,Mercury,LB
+37055,0.0019680596,Fluorene,LB
+37055,1.909008e-05,Sulfate Portion of PM2.5-PRI,TON
+37055,0.4942222,Ethyl Benzene,LB
+37055,0.000247241,Benzo[k]Fluoranthene,LB
+37047,17.118944,Hexane,LB
+37047,0.00029259,Chromium (VI),LB
+37047,2.006072,Acenaphthene,LB
+37047,4.235388,Fluorene,LB
+37047,0.5764514,Organic Carbon portion of PM2.5-PRI,TON
+37047,25.79864,Nitrogen Oxides,TON
+37047,0.1531284,Organic Carbon portion of PM2.5-PRI,TON
+37047,6.729191,Volatile Organic Compounds,TON
+37047,38.24532,"1,3-Butadiene",LB
+37047,6.292774,Pyrene,LB
+37047,0.0003227802,Chromium (VI),LB
+37047,1119.9288,Formaldehyde,LB
+37047,0.8259034,Benz[a]Anthracene,LB
+37047,0.14925334,Manganese,LB
+37047,6.615314,Fluorene,LB
+37177,7.188594,Propionaldehyde,LB
+37177,0.07627212,Nickel,LB
+37177,0.11694902,Arsenic,LB
+37177,0.3703806,Acenaphthene,LB
+37175,1.049116,Styrene,LB
+37175,2.377572,"1,3-Butadiene",LB
+37175,5.120372,Toluene,LB
+37175,0.2606044,Anthracene,LB
+37175,0.002156702,"Dibenzo[a,h]Anthracene",LB
+37175,2.601662,Nitrogen Oxides,TON
+37175,0.2278002,PM10 Primary (Filt + Cond),TON
+37175,0.003521,Sulfate Portion of PM2.5-PRI,TON
+37161,36.57722,Acrolein,LB
+37161,38.02856,Toluene,LB
+37161,4.351852,Pyrene,LB
+37161,40.32144,Xylenes (Mixed Isomers),LB
+37161,0.019422148,"Benzo[g,h,i,]Perylene",LB
+37161,3.089558,Fluorene,LB
+37161,0.4556404,Organic Carbon portion of PM2.5-PRI,TON
+37155,10.644536,Pyrene,LB
+37155,0.0006373696,Chromium (VI),LB
+37155,161.169,Nitrogen Oxides,TON
+37155,1.096601,Organic Carbon portion of PM2.5-PRI,TON
+37155,53.61512,Hexane,LB
+37155,119.93142,Propionaldehyde,LB
+37155,0.008293824,"Dibenzo[a,h]Anthracene",LB
+37155,0.0004708204,Mercury,LB
+37155,50.27875,Nitrogen Oxides,TON
+37155,0.3086806,Organic Carbon portion of PM2.5-PRI,TON
+37155,2.156637,PM2.5 Primary (Filt + Cond),TON
+37155,0.1234015,Sulfur Dioxide,TON
+37161,0.6235498,Chrysene,LB
+37161,390.9416,Formaldehyde,LB
+37161,43.3532,Naphthalene,LB
+37161,1.760127,PM25-Primary from certain diesel engines,TON
+37161,0.009172691,Nitrous Oxide,TON
+37161,0.09243033,Ammonia,TON
+37161,0.00564703,Nitrate portion of PM2.5-PRI,TON
+37161,0.04328352,Sulfate Portion of PM2.5-PRI,TON
+37161,5.78786,Styrene,LB
+37143,0.00263128,Benzo[k]Fluoranthene,LB
+37143,0.003764738,Arsenic,LB
+37143,8.430492,Nitrogen Oxides,TON
+37143,0.04030993,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,2.673828,Acrolein,LB
+37143,0.6139344,Acenaphthylene,LB
+37143,0.04349654,Benzo[a]Pyrene,LB
+37143,0.03523356,Benz[a]Anthracene,LB
+37131,0.2446976,Chrysene,LB
+37131,5.402912,Ethyl Benzene,LB
+37131,71.38632,Acetaldehyde,LB
+37131,0.5244734,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.1783009,Organic Carbon portion of PM2.5-PRI,TON
+37131,0.01473407,Sulfate Portion of PM2.5-PRI,TON
+37129,0.02206236,Benzo[b]Fluoranthene,LB
+37129,0.3500054,Methane,TON
+37129,4674.01,Carbon Dioxide,TON
+37129,0.10517416,Acrolein,LB
+37129,0.10240032,Propionaldehyde,LB
+37129,0.007739586,Pyrene,LB
+37129,0.0019752552,"Benzo[g,h,i,]Perylene",LB
+37129,0.000832702,Benzo[b]Fluoranthene,LB
+37129,0.0215882,Acenaphthylene,LB
+37129,0.009620958,Fluorene,LB
+37129,0.002121016,Nitrous Oxide,TON
+37129,2.437877e-06,Nitrate portion of PM2.5-PRI,TON
+37121,0.004058628,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,0.0327471,Manganese,LB
+37121,0.2956446,Acenaphthene,LB
+37121,0.0009444483,Nitrate portion of PM2.5-PRI,TON
+37111,0.6464512,Toluene,LB
+37111,0.03409522,Anthracene,LB
+37111,0.002113196,Manganese,LB
+37111,11496.012,Hexane,LB
+37111,27.94292,Pyrene,LB
+37111,16.634688,"Benzo[g,h,i,]Perylene",LB
+37111,2.534276,Manganese,LB
+37111,183763.6,Carbon Dioxide,TON
+37111,14.77833,Ammonia,TON
+37111,6.937879,PM2.5 Primary (Filt + Cond),TON
+37111,0.10832994,Benzo[a]Pyrene,LB
+37111,447.1794,"2,2,4-Trimethylpentane",LB
+37111,0.0009653776,Mercury,LB
+37111,10.658328,"1,3-Butadiene",LB
+37111,0.3642862,Fluoranthene,LB
+37111,0.07351282,Chrysene,LB
+37109,8160.422,Hexane,LB
+37109,2.37135,Chrysene,LB
+37109,7679.106,Benzene,LB
+37109,2.217729,Organic Carbon portion of PM2.5-PRI,TON
+37109,1.447992,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.00016281708,Acrolein,LB
+37103,4.292384e-06,Benzo[k]Fluoranthene,LB
+37103,3.708586e-06,Chrysene,LB
+37103,7.025204e-06,Benzo[a]Pyrene,LB
+37103,1.702105e-08,Mercury,LB
+37103,3.254278e-07,Arsenic,LB
+37103,4.933056e-05,Phenanthrene,LB
+37103,1.8192368e-05,Fluorene,LB
+37103,0.004850609,Carbon Monoxide,TON
+37103,2.038354e-08,Nitrate portion of PM2.5-PRI,TON
+37101,37.38697,Volatile Organic Compounds,TON
+37101,51.19856,Styrene,LB
+37101,316.3044,"1,3-Butadiene",LB
+37101,3.670832,Pyrene,LB
+37101,4727.924,Xylenes (Mixed Isomers),LB
+37101,3.218036,Fluoranthene,LB
+37101,9.990858,Acenaphthylene,LB
+37101,0.3032584,Nickel,LB
+37091,0.09776328,Ethyl Benzene,LB
+37091,8.297736e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.0002460672,Fluoranthene,LB
+37091,5.512422e-05,Benz[a]Anthracene,LB
+37091,0.17442304,Benzene,LB
+37091,4.188496e-07,Mercury,LB
+37091,0.06911913,Carbon Monoxide,TON
+37089,129.28048,Acrolein,LB
+37089,8.304346,Fluoranthene,LB
+37089,0.7708866,Benzo[a]Pyrene,LB
+37089,17.096484,Phenanthrene,LB
+37089,190.85422,Naphthalene,LB
+37089,9.828693,PM10 Primary (Filt + Cond),TON
+37089,5.800456,Toluene,LB
+37089,0.0559306,Benzo[a]Pyrene,LB
+37089,1.9799994,"2,2,4-Trimethylpentane",LB
+37089,0.2108952,Acenaphthene,LB
+37089,0.00806399,Sulfur Dioxide,TON
+37117,9.390468,Xylenes (Mixed Isomers),LB
+37117,0.007874924,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.00372339,Benz[a]Anthracene,LB
+37117,5.751132,Carbon Monoxide,TON
+37117,0.004931126,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.2977546,Volatile Organic Compounds,TON
+37175,8.808812,Propionaldehyde,LB
+37175,21.1596,Xylenes (Mixed Isomers),LB
+37175,0.2139878,Chrysene,LB
+37175,0.00011807372,Mercury,LB
+37175,9213.345,Carbon Dioxide,TON
+37175,0.01082593,Nitrous Oxide,TON
+37175,22.76469,Nitrogen Oxides,TON
+37175,0.1176578,Remaining PMFINE portion of PM2.5-PRI,TON
+37175,6.793286,Ethyl Benzene,LB
+37175,0.6409958,Pyrene,LB
+37175,0.004156024,Benzo[b]Fluoranthene,LB
+37175,0.5199864,Fluoranthene,LB
+37175,2.18896e-05,Mercury,LB
+37175,0.6558654,Fluorene,LB
+37175,0.1014808,PM25-Primary from certain diesel engines,TON
+37175,0.002369413,Nitrous Oxide,TON
+37175,2.094226,Nitrogen Oxides,TON
+37175,0.003745542,Sulfate Portion of PM2.5-PRI,TON
+37165,1.5855332,Fluoranthene,LB
+37165,0.0014714292,"Dibenzo[a,h]Anthracene",LB
+37165,27.70426,Acrolein,LB
+37165,21.47002,Xylenes (Mixed Isomers),LB
+37165,7.90858e-05,Mercury,LB
+37165,0.016536004,Arsenic,LB
+37165,0.05532685,Organic Carbon portion of PM2.5-PRI,TON
+37161,1.17934,Pyrene,LB
+37161,0.000483858,Chromium (VI),LB
+37161,0.7104446,Acenaphthene,LB
+37161,3.855086,Phenanthrene,LB
+37161,0.0007729677,Nitrate portion of PM2.5-PRI,TON
+37161,0.007609032,Sulfate Portion of PM2.5-PRI,TON
+37157,0.0471187,Ethyl Benzene,LB
+37157,0.0004959446,Arsenic,LB
+37151,4.077252,Propionaldehyde,LB
+37151,7.63958,Benzene,LB
+37151,0.03006568,Manganese,LB
+37151,35.80384,Acetaldehyde,LB
+37151,0.244189,Acenaphthene,LB
+37151,0.03200382,Ammonia,TON
+37149,252.1626,Hexane,LB
+37149,2.13955,Propionaldehyde,LB
+37149,537.9858,Xylenes (Mixed Isomers),LB
+37149,144.11748,Ethyl Benzene,LB
+37149,0.01886806,Sulfur Dioxide,TON
+37149,0.0424501,Benz[a]Anthracene,LB
+37149,29.18318,Acetaldehyde,LB
+37149,0.12871728,Acenaphthene,LB
+37141,56.58138,Propionaldehyde,LB
+37141,0.12594862,Benzo[b]Fluoranthene,LB
+37141,0.01766121,"Dibenzo[a,h]Anthracene",LB
+37141,0.4671158,Manganese,LB
+37003,22.51054,Acrolein,LB
+37003,20.59194,Toluene,LB
+37003,20.94548,Xylenes (Mixed Isomers),LB
+37003,1.5347216,Acenaphthylene,LB
+37003,0.2085786,Benzo[a]Pyrene,LB
+37003,0.686022,Benz[a]Anthracene,LB
+37003,26.90404,Benzene,LB
+37003,0.07431336,Manganese,LB
+37003,0.03110952,Nickel,LB
+37003,124.78698,Acetaldehyde,LB
+37003,6.988384,Carbon Monoxide,TON
+37003,0.6447938,PM25-Primary from certain diesel engines,TON
+37003,0.2274921,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.01007502,Nitrous Oxide,TON
+37003,1.63589,Volatile Organic Compounds,TON
+37075,0.015385462,Acrolein,LB
+37075,0.3452308,Toluene,LB
+37075,0.2973508,Xylenes (Mixed Isomers),LB
+37075,5.583612e-06,"Dibenzo[a,h]Anthracene",LB
+37075,0.000281902,Fluorene,LB
+37075,0.0002777253,Nitrous Oxide,TON
+37075,0.001110772,Ammonia,TON
+37021,0.5297836,Styrene,LB
+37021,0.02451638,Benzo[k]Fluoranthene,LB
+37021,51.19014,Benzene,LB
+37021,0.0291188,Arsenic,LB
+37147,0.3527136,"1,3-Butadiene",LB
+37147,0.015268872,"Benzo[g,h,i,]Perylene",LB
+37147,0.005736738,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.00013168664,"Dibenzo[a,h]Anthracene",LB
+37147,0.0003181462,Mercury,LB
+37147,3.576538,Carbon Monoxide,TON
+37147,476.6059,Carbon Dioxide,TON
+37127,0.002723606,Benzo[b]Fluoranthene,LB
+37127,0.008246808,Acenaphthylene,LB
+37127,5.81203,Benzene,LB
+37127,20.50916,Acetaldehyde,LB
+37127,0.010300766,Phenanthrene,LB
+37127,0.003582628,Fluorene,LB
+37127,0.19291402,Acrolein,LB
+37127,4.940812,Toluene,LB
+37011,0.0003195296,Pyrene,LB
+37011,0.00010160424,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.0008613252,Acenaphthylene,LB
+37011,0.000188848,Acenaphthene,LB
+37005,0.1803971,PM2.5 Primary (Filt + Cond),TON
+37005,0.2891666,Anthracene,LB
+37005,8.41367,Xylenes (Mixed Isomers),LB
+37005,0.00385135,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.01512852,Benzo[b]Fluoranthene,LB
+37005,100.39888,Formaldehyde,LB
+37005,0.5905506,Fluorene,LB
+37053,0.2519884,Ethyl Benzene,LB
+37053,0.5202226,"2,2,4-Trimethylpentane",LB
+37053,0.0014770408,Manganese,LB
+37053,4.802788,Acetaldehyde,LB
+37053,0.003782006,Methane,TON
+37053,3.495553e-06,Nitrate portion of PM2.5-PRI,TON
+37039,0.005996686,Manganese,LB
+37039,0.0002702692,Mercury,LB
+37039,0.00516736,Arsenic,LB
+37039,0.004678392,Acenaphthene,LB
+37039,0.02663073,Ammonia,TON
+37039,0.004486407,Organic Carbon portion of PM2.5-PRI,TON
+37039,0.002862389,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.0002575724,Sulfate Portion of PM2.5-PRI,TON
+37013,2.239322,Ethyl Benzene,LB
+37013,0.242091,Fluoranthene,LB
+37013,0.002366894,Benzo[a]Pyrene,LB
+37013,1.8325824,"2,2,4-Trimethylpentane",LB
+37013,0.008903401,PM25-Primary from certain diesel engines,TON
+37011,4.261646,Ethyl Benzene,LB
+37005,0.03840278,Styrene,LB
+37005,0.0005569878,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.0004322898,Chrysene,LB
+37005,1.279855e-05,"Dibenzo[a,h]Anthracene",LB
+37005,0.0002626834,Manganese,LB
+37005,8.93734e-05,Arsenic,LB
+37005,0.0001782643,Elemental Carbon portion of PM2.5-PRI,TON
+37177,0.0006818481,Nitrous Oxide,TON
+37177,0.0001458749,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.009187922,Phenanthrene,LB
+37177,0.2302678,"1,3-Butadiene",LB
+37177,6.367288,Toluene,LB
+37177,0.002470902,Fluoranthene,LB
+37173,222.2416,Ethyl Benzene,LB
+37173,1194.8424,Toluene,LB
+37173,272.9256,Hexane,LB
+37173,120.8088,Formaldehyde,LB
+37173,384.0772,Benzene,LB
+37173,0.03593048,Nickel,LB
+37173,88.48699,Carbon Monoxide,TON
+37173,0.1719161,PM2.5 Primary (Filt + Cond),TON
+37173,0.10995802,Chrysene,LB
+37171,0.4957598,Propionaldehyde,LB
+37171,0.04172348,Pyrene,LB
+37171,0.0435408,"Benzo[g,h,i,]Perylene",LB
+37171,0.01635857,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,3.4712e-05,Mercury,LB
+37171,0.0006636714,Arsenic,LB
+37171,0.02299482,Methane,TON
+37171,0.7330149,Nitrogen Oxides,TON
+37171,0.00408317,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.003212049,Sulfur Dioxide,TON
+37171,0.700044,Volatile Organic Compounds,TON
+37169,3033.608,Ethyl Benzene,LB
+37169,7.171254,Pyrene,LB
+37169,5.24467,"Benzo[g,h,i,]Perylene",LB
+37169,6.287992,Fluoranthene,LB
+37169,1.300977,Chrysene,LB
+37169,0.04525102,"Dibenzo[a,h]Anthracene",LB
+37169,1.1562358,Manganese,LB
+37169,0.751875,Arsenic,LB
+37169,0.5259359,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.00612801,Nitrate portion of PM2.5-PRI,TON
+37149,0.19416172,Acrolein,LB
+37149,44.96704,Formaldehyde,LB
+37149,4.440752,Acetaldehyde,LB
+37149,0.0010099486,Naphthalene,LB
+37149,0.007904036,Nitrous Oxide,TON
+37153,0.03775982,Fluorene,LB
+37153,0.01451325,PM10-Primary from certain diesel engines,TON
+37153,0.0003951086,Sulfate Portion of PM2.5-PRI,TON
+37153,0.17596384,Ethyl Benzene,LB
+37147,4.877404,Hexane,LB
+37147,0.005543458,"Benzo[g,h,i,]Perylene",LB
+37147,0.2971266,Benz[a]Anthracene,LB
+37147,2402.35,Carbon Dioxide,TON
+37147,0.3952407,PM25-Primary from certain diesel engines,TON
+37147,14.25971,Nitrogen Oxides,TON
+37147,0.1128402,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.06340965,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,0.016998212,Anthracene,LB
+37147,0.02901884,Fluoranthene,LB
+37147,0.007502848,Benzo[a]Pyrene,LB
+37147,23.37776,"2,2,4-Trimethylpentane",LB
+37147,0.0008286944,Arsenic,LB
+37147,6.418292,Acetaldehyde,LB
+37147,0.4942367,Volatile Organic Compounds,TON
+37145,868.543,Ethyl Benzene,LB
+37139,17.865548,Acrolein,LB
+37139,0.013354708,Arsenic,LB
+37139,0.02416605,Sulfur Dioxide,TON
+37143,0.02611038,Propionaldehyde,LB
+37143,1.2110002e-05,"Dibenzo[a,h]Anthracene",LB
+37143,0.0003931276,Benz[a]Anthracene,LB
+37143,0.9069962,Ethyl Benzene,LB
+37143,0.001025936,Nitrous Oxide,TON
+37143,1.985564e-05,Sulfate Portion of PM2.5-PRI,TON
+37141,2.118256,Styrene,LB
+37141,11.708502,Acrolein,LB
+37141,0.004306754,Benzo[k]Fluoranthene,LB
+37141,0.8174092,Acenaphthylene,LB
+37141,0.2049202,Chrysene,LB
+37141,0.1056341,Benzo[a]Pyrene,LB
+37141,0.00430268,"Dibenzo[a,h]Anthracene",LB
+37141,13.963354,Benzene,LB
+37141,0.3715104,PM25-Primary from certain diesel engines,TON
+37141,0.1482874,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.01011981,Sulfur Dioxide,TON
+37141,0.8581806,Volatile Organic Compounds,TON
+37137,1.3704088,"1,3-Butadiene",LB
+37137,0.0011230416,Benzo[b]Fluoranthene,LB
+37137,4.02335,Benzene,LB
+37137,18.601904,Acetaldehyde,LB
+37137,2.088219,Carbon Monoxide,TON
+37137,0.03764781,PM25-Primary from certain diesel engines,TON
+37137,0.02872741,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.006022688,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.008091058,Benzo[b]Fluoranthene,LB
+37133,0.2644166,Fluoranthene,LB
+37133,0.0011231984,Benzo[k]Fluoranthene,LB
+37133,0.4329588,Phenanthrene,LB
+37133,0.001472864,Nitrous Oxide,TON
+37133,0.0004801833,Nitrate portion of PM2.5-PRI,TON
+37127,0.02507626,"Benzo[g,h,i,]Perylene",LB
+37127,0.007249632,Benzo[k]Fluoranthene,LB
+37127,9.958704,Acenaphthylene,LB
+37127,9.760514,Pyrene,LB
+37127,1765.0578,Formaldehyde,LB
+37127,771.9876,Acetaldehyde,LB
+37127,101.2032,Carbon Monoxide,TON
+37121,0.003896556,Formaldehyde,LB
+37121,0.009734456,"2,2,4-Trimethylpentane",LB
+37121,1.565664e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.0002577128,Propionaldehyde,LB
+37121,1.24652e-09,Chromium (VI),LB
+37121,6.672228e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37121,5.704566e-05,Acenaphthylene,LB
+37117,1.449438,Xylenes (Mixed Isomers),LB
+37117,0.0006709904,Benzo[k]Fluoranthene,LB
+37117,0.5066928,"2,2,4-Trimethylpentane",LB
+37117,0.0524564,Benz[a]Anthracene,LB
+37117,0.2471534,Phenanthrene,LB
+37117,0.05258307,PM25-Primary from certain diesel engines,TON
+37117,0.05514355,PM2.5 Primary (Filt + Cond),TON
+37117,2.26552e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37107,5.680755,Carbon Monoxide,TON
+37107,4.996084,Ethyl Benzene,LB
+37107,7.915538,Propionaldehyde,LB
+37107,1.5309776,Pyrene,LB
+37107,0.00458368,Benzo[k]Fluoranthene,LB
+37107,5.593528,Nitrogen Oxides,TON
+37107,0.1577192,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.00830748,Sulfate Portion of PM2.5-PRI,TON
+37097,0.018833428,Arsenic,LB
+37097,0.1234815,Methane,TON
+37097,0.4167586,PM10 Primary (Filt + Cond),TON
+37097,0.3060274,"Benzo[g,h,i,]Perylene",LB
+37097,0.07346294,Benzo[b]Fluoranthene,LB
+37097,0.1144439,Benzo[a]Pyrene,LB
+37105,1.3203912,Hexane,LB
+37105,1.30451,"2,2,4-Trimethylpentane",LB
+37105,9.570938e-05,Manganese,LB
+37105,0.008636058,Phenanthrene,LB
+37105,0.5280903,Carbon Monoxide,TON
+37105,0.02915336,Volatile Organic Compounds,TON
+37105,3.064804,Benz[a]Anthracene,LB
+37105,11.13237,Ammonia,TON
+37105,14.23436,PM10 Primary (Filt + Cond),TON
+37105,1.650275,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.1398269,Sulfate Portion of PM2.5-PRI,TON
+37105,183.8859,Volatile Organic Compounds,TON
+37103,3.103826,Carbon Monoxide,TON
+37103,3.57606,Ethyl Benzene,LB
+37103,0.006492748,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.0254993,Benzo[b]Fluoranthene,LB
+37103,0.8862636,Fluoranthene,LB
+37103,106.65858,Formaldehyde,LB
+37099,1.2165028,Anthracene,LB
+37099,0.010916512,Benzo[k]Fluoranthene,LB
+37099,0.0491791,Nickel,LB
+37099,0.013454864,Arsenic,LB
+37099,35.32028,Naphthalene,LB
+37099,0.08664983,Methane,TON
+37099,8.86595,Carbon Monoxide,TON
+37099,1.574163,PM10-Primary from certain diesel engines,TON
+37099,0.1687045,Styrene,LB
+37099,0.9155368,"1,3-Butadiene",LB
+37099,0.14122068,Propionaldehyde,LB
+37099,18.77144,Xylenes (Mixed Isomers),LB
+37099,0.010510718,Fluoranthene,LB
+37099,2.32262,Acetaldehyde,LB
+37099,0.002220359,Nitrous Oxide,TON
+37099,0.008980606,PM10 Primary (Filt + Cond),TON
+37083,0.11433688,Benzo[b]Fluoranthene,LB
+37083,12.795052,Styrene,LB
+37083,63.00016,"2,2,4-Trimethylpentane",LB
+37083,14.17383,Phenanthrene,LB
+37083,0.3897986,Sulfur Dioxide,TON
+37017,0.549465,Benzene,LB
+37017,0.00549144,Elemental Carbon portion of PM2.5-PRI,TON
+37017,0.005995778,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.3101286,Propionaldehyde,LB
+37017,0.14571264,"2,2,4-Trimethylpentane",LB
+37021,773911.5,Carbon Dioxide,TON
+37021,0.07220806,Nitrate portion of PM2.5-PRI,TON
+37021,29366.2,Ethyl Benzene,LB
+37021,1172.42,Styrene,LB
+37021,225.7114,Acenaphthylene,LB
+37021,0.5004514,"Dibenzo[a,h]Anthracene",LB
+37017,14.53736,Fluoranthene,LB
+37017,2.908332,Benzo[a]Pyrene,LB
+37017,1.081886,Arsenic,LB
+37017,54.4609,Phenanthrene,LB
+37017,3.22639,PM2.5 Primary (Filt + Cond),TON
+37017,2.224253,Sulfur Dioxide,TON
+37009,3.655114,Toluene,LB
+37009,0.4594524,Pyrene,LB
+37009,0.001601806,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.3605356,Fluoranthene,LB
+37009,0.0008614664,Benzo[k]Fluoranthene,LB
+37009,0.3555826,Acenaphthylene,LB
+37009,7.863936e-06,Mercury,LB
+37009,0.3951802,Fluorene,LB
+37009,4.623707,Nitrogen Oxides,TON
+37009,0.125309,PM2.5 Primary (Filt + Cond),TON
+37015,3.360684,Hexane,LB
+37015,0.007801278,Pyrene,LB
+37015,0.02321424,Phenanthrene,LB
+37015,0.001710662,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.0012165982,Acenaphthene,LB
+37021,0.003837415,Nitrous Oxide,TON
+37021,0.0018911252,Benzo[b]Fluoranthene,LB
+37021,0.00567417,Acenaphthylene,LB
+37021,0.002867852,Arsenic,LB
+37009,0.004243686,Manganese,LB
+37009,0.00365702,Arsenic,LB
+37009,0.02428236,Phenanthrene,LB
+37009,0.4186154,Nitrogen Oxides,TON
+37009,0.003625571,Organic Carbon portion of PM2.5-PRI,TON
+37009,0.01022518,Sulfur Dioxide,TON
+37171,0.2883068,Ethyl Benzene,LB
+37171,0.014435152,Styrene,LB
+37171,1.0304428,Xylenes (Mixed Isomers),LB
+37171,0.0013377124,Benzo[a]Pyrene,LB
+37171,1.4378614,Benzene,LB
+37171,5.906474,Acetaldehyde,LB
+37171,90.64146,Carbon Dioxide,TON
+37171,0.001288704,Nitrous Oxide,TON
+37171,0.001907892,PM2.5 Primary (Filt + Cond),TON
+37151,3.756438,Propionaldehyde,LB
+37151,0.03017392,Pyrene,LB
+37151,0.03164208,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.01672853,Benzo[k]Fluoranthene,LB
+37151,0.012860868,Chrysene,LB
+37151,32.52902,Formaldehyde,LB
+37151,16.339218,"2,2,4-Trimethylpentane",LB
+37151,0.08849114,Phenanthrene,LB
+37151,0.0315673,Fluorene,LB
+37151,0.05652641,Sulfur Dioxide,TON
+37103,8.846122e-07,Chromium (VI),LB
+37103,0.00017849106,Benzo[a]Pyrene,LB
+37103,0.00013738176,Fluorene,LB
+37103,0.0007167887,Methane,TON
+37103,0.0008138722,PM10 Primary (Filt + Cond),TON
+37103,0.0002534168,PM2.5 Primary (Filt + Cond),TON
+37103,0.0004354903,Sulfur Dioxide,TON
+37089,0.007743526,"Benzo[g,h,i,]Perylene",LB
+37089,6.678792e-05,"Dibenzo[a,h]Anthracene",LB
+37089,0.007041904,Phenanthrene,LB
+37089,0.0008291991,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.005532757,PM2.5 Primary (Filt + Cond),TON
+37021,0.03003774,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.11799132,Benzo[b]Fluoranthene,LB
+37021,0.7660882,Chrysene,LB
+37021,0.05696046,Nickel,LB
+37021,19.507834,Ethyl Benzene,LB
+37021,18.89825,Carbon Monoxide,TON
+37021,21.51373,Nitrogen Oxides,TON
+37021,3.268024,Volatile Organic Compounds,TON
+37017,36.8973,Toluene,LB
+37017,1202.3158,Toluene,LB
+37017,0.15594148,Anthracene,LB
+37017,3.019786,Propionaldehyde,LB
+37017,0.2029434,"Benzo[g,h,i,]Perylene",LB
+37017,69.28542,Formaldehyde,LB
+37017,0.012788684,Manganese,LB
+37017,0.0007754638,Mercury,LB
+37017,0.989597,Phenanthrene,LB
+37017,0.1059691,PM10 Primary (Filt + Cond),TON
+37017,0.01875584,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,18.425092,Xylenes (Mixed Isomers),LB
+37011,0.7525726,Acenaphthylene,LB
+37011,74.9976,Acetaldehyde,LB
+37011,0.9646182,Fluorene,LB
+37011,8770.076,Carbon Dioxide,TON
+37011,0.6990219,PM25-Primary from certain diesel engines,TON
+37011,0.4614971,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.008833609,Nitrous Oxide,TON
+37011,21.9204,Nitrogen Oxides,TON
+37011,0.1396966,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.07002428,Sulfate Portion of PM2.5-PRI,TON
+37011,37.21116,Phenanthrene,LB
+37011,14264.194,Xylenes (Mixed Isomers),LB
+37003,2.221068,Hexane,LB
+37003,0.004499336,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.017678772,Benzo[b]Fluoranthene,LB
+37003,0.6540382,Fluoranthene,LB
+37003,0.2934612,Acenaphthene,LB
+37003,9.729422,Naphthalene,LB
+37003,0.03124197,Methane,TON
+37003,0.001097537,Nitrate portion of PM2.5-PRI,TON
+37001,3.050554,Acenaphthylene,LB
+37001,0.19152448,Chrysene,LB
+37001,1233.8576,"2,2,4-Trimethylpentane",LB
+37001,0.04707504,Arsenic,LB
+37001,3989.57,Carbon Dioxide,TON
+37001,0.008354005,Sulfate Portion of PM2.5-PRI,TON
+37199,0.1341726,Styrene,LB
+37199,0.004722068,Anthracene,LB
+37199,12.71492,Xylenes (Mixed Isomers),LB
+37199,0.002170448,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.001599524,Benz[a]Anthracene,LB
+37199,0.00018408272,Manganese,LB
+37199,0.0004176905,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,3.77446e-05,Sulfate Portion of PM2.5-PRI,TON
+37185,4.243984e-05,Chromium (VI),LB
+37185,3.21561e-05,Mercury,LB
+37185,0.4810726,Elemental Carbon portion of PM2.5-PRI,TON
+37185,0.1550022,Organic Carbon portion of PM2.5-PRI,TON
+37185,4.829708,Ethyl Benzene,LB
+37185,0.05525154,Styrene,LB
+37185,0.003765796,Fluoranthene,LB
+37185,0.013195476,Phenanthrene,LB
+37185,0.003155373,PM2.5 Primary (Filt + Cond),TON
+37189,55.62196,Acetaldehyde,LB
+37189,0.2585152,PM25-Primary from certain diesel engines,TON
+37189,6.518474,Propionaldehyde,LB
+37189,2.099772e-05,Chromium (VI),LB
+37189,0.8774692,Fluoranthene,LB
+37189,43.3158,"1,3-Butadiene",LB
+37189,70.88154,Propionaldehyde,LB
+37189,0.005330208,"Dibenzo[a,h]Anthracene",LB
+37189,0.9820754,Benz[a]Anthracene,LB
+37193,17.858904,Ethyl Benzene,LB
+37193,0.00019704426,Mercury,LB
+37193,0.4886916,Organic Carbon portion of PM2.5-PRI,TON
+37185,13.098798,Naphthalene,LB
+37185,60.57017,Carbon Monoxide,TON
+37185,7.528175,Nitrogen Oxides,TON
+37185,796.7408,Toluene,LB
+37185,0.095466,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,10.755334,Styrene,LB
+37183,433.0172,Hexane,LB
+37183,0.3407887,Sulfur Dioxide,TON
+37183,0.007265426,"Dibenzo[a,h]Anthracene",LB
+37183,0.3398842,Manganese,LB
+37179,0.1350179,Sulfate Portion of PM2.5-PRI,TON
+37179,3.61232,Benz[a]Anthracene,LB
+37179,0.0008439434,Mercury,LB
+37179,0.5773684,Nickel,LB
+37179,0.17646188,Arsenic,LB
+37179,15.68114,Acenaphthene,LB
+37179,5.406618,PM10 Primary (Filt + Cond),TON
+37179,154.3081,"1,3-Butadiene",LB
+37179,296.9308,Toluene,LB
+37179,13.026138,Anthracene,LB
+37179,1.7327594,Chrysene,LB
+37179,34.53222,Xylenes (Mixed Isomers),LB
+37179,11.761748,"2,2,4-Trimethylpentane",LB
+37179,0.004054914,Benz[a]Anthracene,LB
+37179,0.015075346,Acenaphthene,LB
+37179,0.008874896,PM2.5 Primary (Filt + Cond),TON
+37179,0.003944329,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,0.002363192,"Benzo[g,h,i,]Perylene",LB
+37173,54.381,Formaldehyde,LB
+37173,5.12114,Benzene,LB
+37173,0.654874,Phenanthrene,LB
+37173,5.965016,Naphthalene,LB
+37173,1.775736,Carbon Monoxide,TON
+37173,1.759892,"1,3-Butadiene",LB
+37125,0.11872664,"Benzo[g,h,i,]Perylene",LB
+37125,0.2576852,Fluoranthene,LB
+37125,165.53564,"2,2,4-Trimethylpentane",LB
+37125,0.03237958,Manganese,LB
+37125,0.00512141,Nickel,LB
+37125,4.764387,Nitrogen Oxides,TON
+37125,3.684713,Volatile Organic Compounds,TON
+37113,7.31194,"1,3-Butadiene",LB
+37113,0.05030924,"Benzo[g,h,i,]Perylene",LB
+37113,16.788482,Formaldehyde,LB
+37113,48.068,"2,2,4-Trimethylpentane",LB
+37113,0.003042124,Arsenic,LB
+37113,0.0437286,Nitrous Oxide,TON
+37109,4.528334e-06,Chromium (VI),LB
+37109,0.0007442684,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.007037416,Ammonia,TON
+37109,0.127662,Volatile Organic Compounds,TON
+37109,0.005418478,Anthracene,LB
+37105,6.960266,Propionaldehyde,LB
+37105,11.179058,Xylenes (Mixed Isomers),LB
+37105,0.7063542,Acenaphthylene,LB
+37105,0.019404542,Nickel,LB
+37105,3.721542,"2,2,4-Trimethylpentane",LB
+37105,0.7394122,Fluorene,LB
+37105,0.1515986,PM10-Primary from certain diesel engines,TON
+37101,0.0245313,Fluoranthene,LB
+37101,0.268199,Volatile Organic Compounds,TON
+37101,51.28532,Toluene,LB
+37097,2.068372,Acrolein,LB
+37097,0.02648072,Benzo[k]Fluoranthene,LB
+37097,0.005271826,Arsenic,LB
+37097,0.2390235,PM10 Primary (Filt + Cond),TON
+37097,0.02991417,Sulfur Dioxide,TON
+37089,682.3376,Formaldehyde,LB
+37089,0.5968002,Benzo[a]Pyrene,LB
+37089,2.262428,Acenaphthene,LB
+37089,0.01034741,Nitrate portion of PM2.5-PRI,TON
+37087,2.268334,Xylenes (Mixed Isomers),LB
+37087,1.1605038e-05,Mercury,LB
+37087,0.002426466,Arsenic,LB
+37087,0.01686972,Methane,TON
+37087,0.1422326,PM2.5 Primary (Filt + Cond),TON
+37087,0.1612018,Volatile Organic Compounds,TON
+37079,0.013517718,Benzo[a]Pyrene,LB
+37079,0.0005517328,"Dibenzo[a,h]Anthracene",LB
+37079,0.0011457482,Arsenic,LB
+37079,0.04514672,PM25-Primary from certain diesel engines,TON
+37079,0.005610109,Ammonia,TON
+37073,3.302384e-06,Ammonia,TON
+37073,0.000557129,Nitrogen Oxides,TON
+37073,7.599764e-06,PM2.5 Primary (Filt + Cond),TON
+37073,0.0002376922,Volatile Organic Compounds,TON
+37073,0.03043572,Xylenes (Mixed Isomers),LB
+37073,4.8996e-06,Benzo[k]Fluoranthene,LB
+37073,1.1368152e-06,Manganese,LB
+37085,0.244565,Arsenic,LB
+37085,359.8747,Carbon Monoxide,TON
+37085,41.58513,Nitrogen Oxides,TON
+37085,1556.5708,Benzene,LB
+37085,222.7436,"1,3-Butadiene",LB
+37085,30.56546,Acrolein,LB
+37081,9.220192e-05,Chromium (VI),LB
+37081,0.19458,Methane,TON
+37081,0.1120465,Ammonia,TON
+37081,0.2691439,Organic Carbon portion of PM2.5-PRI,TON
+37071,8.531482,Toluene,LB
+37071,0.373104,Anthracene,LB
+37071,5.515108,Propionaldehyde,LB
+37071,3.64957e-05,Chromium (VI),LB
+37071,2.965026,"2,2,4-Trimethylpentane",LB
+37071,0.1191876,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.05569713,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.4172812,Propionaldehyde,LB
+37065,0.010982746,Chrysene,LB
+37065,1.4175218e-06,Mercury,LB
+37065,0.0002963818,Arsenic,LB
+37065,0.02590098,Acenaphthene,LB
+37065,9.80937e-05,Nitrate portion of PM2.5-PRI,TON
+37065,0.02473428,PM10 Primary (Filt + Cond),TON
+37063,1.696364,Pyrene,LB
+37063,3635.136,Xylenes (Mixed Isomers),LB
+37063,4.60362,Acenaphthylene,LB
+37063,0.05177858,Nickel,LB
+37063,5.498592,Phenanthrene,LB
+37063,2.04591,Fluorene,LB
+37057,100.11624,Ethyl Benzene,LB
+37057,3242.928,Formaldehyde,LB
+37057,0.6148296,Manganese,LB
+37057,1201.9148,Acetaldehyde,LB
+37057,62.23704,Carbon Monoxide,TON
+37057,3.928123,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.06986968,Nitrous Oxide,TON
+37057,204.9292,Nitrogen Oxides,TON
+37057,12.52692,Volatile Organic Compounds,TON
+37051,0.0390776,Arsenic,LB
+37051,1.4166682,Acenaphthene,LB
+37051,0.3735981,Methane,TON
+37051,16.609634,Ethyl Benzene,LB
+37051,2.544282,Pyrene,LB
+37051,0.00016211442,Chromium (VI),LB
+37045,22.94984,Ethyl Benzene,LB
+37045,86.5575,Xylenes (Mixed Isomers),LB
+37045,2.564112,Toluene,LB
+37045,0.0006974078,Anthracene,LB
+37045,0.0004729008,Benzo[k]Fluoranthene,LB
+37045,0.0003921792,Chrysene,LB
+37045,0.0008137918,Benzo[a]Pyrene,LB
+37045,8.65252e-06,Arsenic,LB
+37045,0.2832915,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.6073066,PM2.5 Primary (Filt + Cond),TON
+37045,185.74608,"1,3-Butadiene",LB
+37045,1019.9538,Hexane,LB
+37039,1560.2632,"2,2,4-Trimethylpentane",LB
+37035,0.3644662,Anthracene,LB
+37035,5.328272,Propionaldehyde,LB
+37035,2.853386,"2,2,4-Trimethylpentane",LB
+37035,9.84953,Benzene,LB
+37035,1.3021744,Phenanthrene,LB
+37035,11.543446,Naphthalene,LB
+37035,0.03729788,Ammonia,TON
+37035,0.04861307,Ammonia,TON
+37035,0.2390404,PM10 Primary (Filt + Cond),TON
+37035,0.08107507,PM2.5 Primary (Filt + Cond),TON
+37035,26.01052,Toluene,LB
+37035,1.5906874,Pyrene,LB
+37035,0.00015037248,Chromium (VI),LB
+37035,0.00373026,"Benzo[g,h,i,]Perylene",LB
+37035,0.017333454,Benzo[a]Pyrene,LB
+37035,0.0007188442,"Dibenzo[a,h]Anthracene",LB
+37033,824.3716,Toluene,LB
+37033,0.196606,"Benzo[g,h,i,]Perylene",LB
+37033,0.0016964562,"Dibenzo[a,h]Anthracene",LB
+37033,246.3298,Benzene,LB
+37033,0.1499656,PM10 Primary (Filt + Cond),TON
+37033,0.03803486,Sulfur Dioxide,TON
+37033,0.9591286,Benzo[b]Fluoranthene,LB
+37033,882.2746,Formaldehyde,LB
+37033,0.02528804,Mercury,LB
+37033,16.290062,Phenanthrene,LB
+37033,0.004055427,Nitrate portion of PM2.5-PRI,TON
+37029,0.02642612,Anthracene,LB
+37029,0.6191872,Xylenes (Mixed Isomers),LB
+37029,0.001249585,Nickel,LB
+37029,0.09434556,Phenanthrene,LB
+37029,0.04272886,Volatile Organic Compounds,TON
+37027,2.228162e-08,Chromium (VI),LB
+37027,0.00250813,Acenaphthylene,LB
+37027,0.0008985472,Methane,TON
+37027,0.009689011,Nitrogen Oxides,TON
+37175,0.0013496502,Benz[a]Anthracene,LB
+37175,0.0002593388,Manganese,LB
+37175,0.000489464,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.0002749685,Ammonia,TON
+37171,1745.9352,Benzene,LB
+37171,0.3943402,Manganese,LB
+37171,601.428,Acetaldehyde,LB
+37171,1.166601,Methane,TON
+37171,0.4232136,Organic Carbon portion of PM2.5-PRI,TON
+37171,248.1102,"1,3-Butadiene",LB
+37171,5692.606,Toluene,LB
+37171,2.958094,Pyrene,LB
+37171,2.59325,Fluoranthene,LB
+37165,0.2761658,Styrene,LB
+37165,7.221942e-06,Chromium (VI),LB
+37165,0.005022056,Benzo[b]Fluoranthene,LB
+37165,0.5526058,"2,2,4-Trimethylpentane",LB
+37165,0.06385038,Acenaphthene,LB
+37165,0.02397312,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.03380054,Anthracene,LB
+37165,0.0735916,Fluoranthene,LB
+37165,0.000777436,Arsenic,LB
+37165,292.1472,Carbon Dioxide,TON
+37165,0.03006143,Elemental Carbon portion of PM2.5-PRI,TON
+37161,189.38058,Xylenes (Mixed Isomers),LB
+37161,0.02229874,Chrysene,LB
+37161,0.03272774,Benzo[a]Pyrene,LB
+37161,75.38194,Hexane,LB
+37161,2.617423,Nitrogen Oxides,TON
+37161,0.0009682702,Sulfate Portion of PM2.5-PRI,TON
+37153,0.005127826,Acrolein,LB
+37153,0.7257374,Xylenes (Mixed Isomers),LB
+37153,9.385032e-05,Benzo[b]Fluoranthene,LB
+37153,0.00012965994,Benzo[a]Pyrene,LB
+37153,2.897232e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.000113882,Nitrous Oxide,TON
+37153,3.688771e-07,Nitrate portion of PM2.5-PRI,TON
+37153,0.0002196451,PM10 Primary (Filt + Cond),TON
+37153,3.24482e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37153,3.280764e-06,Sulfate Portion of PM2.5-PRI,TON
+37145,0.8736542,Acrolein,LB
+37145,0.5732286,Propionaldehyde,LB
+37145,0.0005256222,"Benzo[g,h,i,]Perylene",LB
+37145,0.03486484,Acenaphthene,LB
+37145,0.1390751,Phenanthrene,LB
+37145,1.05201,Nitrogen Oxides,TON
+37145,0.08254553,PM10 Primary (Filt + Cond),TON
+37143,10.811294,Hexane,LB
+37143,4.11961,Benzene,LB
+37129,0.08826772,Nickel,LB
+37129,21.47575,Carbon Monoxide,TON
+37129,0.0472672,Nitrous Oxide,TON
+37129,0.9566233,Organic Carbon portion of PM2.5-PRI,TON
+37129,82.79186,Toluene,LB
+37129,25.13104,Hexane,LB
+37129,0.02693706,Benzo[k]Fluoranthene,LB
+37129,4.432428,Acenaphthylene,LB
+37141,0.1033007,Methane,TON
+37141,2.42038,Volatile Organic Compounds,TON
+37141,0.013344342,"Dibenzo[a,h]Anthracene",LB
+37141,1.0721916,Benz[a]Anthracene,LB
+37139,5805.632,Toluene,LB
+37133,5.43378,Hexane,LB
+37133,0.000950728,Benzo[k]Fluoranthene,LB
+37133,0.07086466,Chrysene,LB
+37133,0.02258638,Benzo[a]Pyrene,LB
+37133,89.61042,Acetaldehyde,LB
+37133,1.0500258,Fluorene,LB
+37133,0.03817963,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.02176979,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.07766708,Benzo[b]Fluoranthene,LB
+37129,1.7832126,Acenaphthylene,LB
+37129,145.7326,Acetaldehyde,LB
+37129,0.8593846,PM10-Primary from certain diesel engines,TON
+37129,0.01354936,Nitrous Oxide,TON
+37129,11.74934,Nitrogen Oxides,TON
+37125,0.0012021924,Manganese,LB
+37125,0.0006065508,Nickel,LB
+37121,0.862517,"1,3-Butadiene",LB
+37121,0.0813326,Anthracene,LB
+37121,4.982466e-06,Chromium (VI),LB
+37121,0.02016328,Chrysene,LB
+37121,0.0003682382,"Dibenzo[a,h]Anthracene",LB
+37121,0.0001683688,Nitrate portion of PM2.5-PRI,TON
+37121,1.976606,Nitrogen Oxides,TON
+37121,0.005864741,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.001923158,Benzo[b]Fluoranthene,LB
+37123,0.001923158,Benzo[k]Fluoranthene,LB
+37123,0.0016101564,Chrysene,LB
+37123,3.601116,Benzene,LB
+37123,0.0004592138,Arsenic,LB
+37123,0.018752872,Phenanthrene,LB
+37123,0.1766702,Naphthalene,LB
+37123,1.677102,Carbon Monoxide,TON
+37123,0.0001094574,Sulfate Portion of PM2.5-PRI,TON
+37123,0.06429144,Volatile Organic Compounds,TON
+37119,12.43469,PM2.5 Primary (Filt + Cond),TON
+37119,2.83725,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,181.96822,Ethyl Benzene,LB
+37119,0.1320836,Benzo[k]Fluoranthene,LB
+37119,0.419533,Arsenic,LB
+37119,57.4289,Phenanthrene,LB
+37119,103271.7,Carbon Dioxide,TON
+37119,10.85205,PM25-Primary from certain diesel engines,TON
+37119,0.0006089384,Chromium (VI),LB
+37119,401.5134,"2,2,4-Trimethylpentane",LB
+37119,824.413,Benzene,LB
+37119,0.006104426,Mercury,LB
+37119,3.864094,Phenanthrene,LB
+37119,0.3007446,Organic Carbon portion of PM2.5-PRI,TON
+37119,0.7694807,PM2.5 Primary (Filt + Cond),TON
+37107,733.8554,Ethyl Benzene,LB
+37107,171.28208,"1,3-Butadiene",LB
+37107,2705.638,Xylenes (Mixed Isomers),LB
+37107,379.457,Formaldehyde,LB
+37107,1.181372,Ammonia,TON
+37097,70.82054,Nitrogen Oxides,TON
+37097,0.2181345,Sulfate Portion of PM2.5-PRI,TON
+37097,150.5577,Xylenes (Mixed Isomers),LB
+37097,0.06507738,"Benzo[g,h,i,]Perylene",LB
+37097,0.0809478,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.04375574,Benzo[k]Fluoranthene,LB
+37097,7.812702,Acenaphthylene,LB
+37097,46.55874,"2,2,4-Trimethylpentane",LB
+37097,18.627486,Phenanthrene,LB
+37101,263.2604,Propionaldehyde,LB
+37101,0.024164,Chromium (VI),LB
+37101,5.483482,Benzo[k]Fluoranthene,LB
+37101,63.96494,Acenaphthylene,LB
+37101,8.18161,Methane,TON
+37101,1.986883,Elemental Carbon portion of PM2.5-PRI,TON
+37101,6.960196,Sulfur Dioxide,TON
+37099,0.04504338,Acenaphthylene,LB
+37099,0.00010201086,Arsenic,LB
+37099,0.05379872,Phenanthrene,LB
+37099,0.01600518,Methane,TON
+37099,3.079836,Carbon Monoxide,TON
+37099,0.0004431099,Sulfur Dioxide,TON
+37093,3.917406,Benzene,LB
+37093,1.0796752e-05,Mercury,LB
+37093,0.003299524,Acenaphthene,LB
+37093,0.1712962,Naphthalene,LB
+37093,0.001289478,Methane,TON
+37093,0.001545386,Ammonia,TON
+37093,0.3190076,"1,3-Butadiene",LB
+37093,2.195934,Hexane,LB
+37093,0.005461476,Pyrene,LB
+37093,6.228458,Xylenes (Mixed Isomers),LB
+37089,224.8458,Acrolein,LB
+37089,188.24582,Toluene,LB
+37089,151.94208,Propionaldehyde,LB
+37089,185.21502,Xylenes (Mixed Isomers),LB
+37089,15.828068,Acenaphthylene,LB
+37089,2830.578,Formaldehyde,LB
+37089,267.931,Benzene,LB
+37089,9.414544,Acenaphthene,LB
+37089,2.377753,PM2.5 Primary (Filt + Cond),TON
+37065,29.94416,Acetaldehyde,LB
+37065,0.445854,Fluorene,LB
+37065,2.731063,Carbon Monoxide,TON
+37065,0.01227842,Ammonia,TON
+37065,0.02366473,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.05126766,Styrene,LB
+37063,0.2816172,"1,3-Butadiene",LB
+37063,4.639736,Xylenes (Mixed Isomers),LB
+37063,0.683605,Formaldehyde,LB
+37063,1.8477478e-05,Nickel,LB
+37063,0.0001915428,Ammonia,TON
+37063,0.000127179,Sulfur Dioxide,TON
+37061,0.007755954,"Benzo[g,h,i,]Perylene",LB
+37061,0.9709032,Acenaphthylene,LB
+37061,2.61942e-05,Mercury,LB
+37061,0.4970135,PM10-Primary from certain diesel engines,TON
+37057,135.8165,Ethyl Benzene,LB
+37057,0.8773002,Acenaphthylene,LB
+37057,187.75548,"2,2,4-Trimethylpentane",LB
+37057,0.0003626756,Mercury,LB
+37057,0.000237582,Nitrate portion of PM2.5-PRI,TON
+37057,5.024976,Nitrogen Oxides,TON
+37057,0.001960382,Sulfate Portion of PM2.5-PRI,TON
+37057,0.2888196,Benzo[a]Pyrene,LB
+37057,0.002593444,Mercury,LB
+37057,0.6563686,Acenaphthene,LB
+37057,0.1584591,Organic Carbon portion of PM2.5-PRI,TON
+37057,2.990988,Acenaphthylene,LB
+37053,4.137904,"1,3-Butadiene",LB
+37053,31.37396,Hexane,LB
+37053,0.00874789,Benzo[k]Fluoranthene,LB
+37053,0.008964414,Benz[a]Anthracene,LB
+37053,1.75534,Naphthalene,LB
+37047,137.73428,Styrene,LB
+37047,5.889846,Acenaphthene,LB
+37047,11.930498,Fluorene,LB
+37043,0.0001080738,Benz[a]Anthracene,LB
+37043,5.067954e-07,Nitrate portion of PM2.5-PRI,TON
+37043,1.037029,Toluene,LB
+37043,0.006454086,Propionaldehyde,LB
+37043,0.0001408112,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.00014137666,Benzo[a]Pyrene,LB
+37037,0.5017606,Anthracene,LB
+37037,9.4258e-05,Chromium (VI),LB
+37037,6.377676,"2,2,4-Trimethylpentane",LB
+37037,0.02080876,Arsenic,LB
+37037,0.623169,Acenaphthene,LB
+37037,1.792951,Phenanthrene,LB
+37031,0.398598,Styrene,LB
+37031,2.525992,Toluene,LB
+37031,0.8164172,Hexane,LB
+37031,0.10619656,Anthracene,LB
+37031,0.00744665,Benzo[b]Fluoranthene,LB
+37031,0.04712054,Chrysene,LB
+37031,32.5393,Formaldehyde,LB
+37031,0.07959142,Benz[a]Anthracene,LB
+37031,1.0197098e-05,Mercury,LB
+37031,0.002132146,Arsenic,LB
+37029,0.0004417144,Manganese,LB
+37029,0.256498,Naphthalene,LB
+37029,0.0003944398,Ammonia,TON
+37029,0.08585133,Nitrogen Oxides,TON
+37029,0.006886198,PM10 Primary (Filt + Cond),TON
+37029,13.038464,Toluene,LB
+37029,6.272738e-07,Chromium (VI),LB
+37029,2.901262,"2,2,4-Trimethylpentane",LB
+37029,0.0009879055,Ammonia,TON
+37029,0.00274598,PM10 Primary (Filt + Cond),TON
+37029,2.84446e-05,Sulfate Portion of PM2.5-PRI,TON
+37165,873.456,Ethyl Benzene,LB
+37165,1702.2438,"2,2,4-Trimethylpentane",LB
+37149,35.14904,Benzene,LB
+37149,0.10202634,Manganese,LB
+37149,1.1849378,Acenaphthene,LB
+37149,0.004512649,Nitrate portion of PM2.5-PRI,TON
+37149,0.019737292,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,31.0244,Propionaldehyde,LB
+37157,0.12507146,Benzo[b]Fluoranthene,LB
+37157,0.4193886,Benzo[a]Pyrene,LB
+37151,23.39568,Acrolein,LB
+37151,1.5598632,Acenaphthylene,LB
+37151,0.007702642,"Dibenzo[a,h]Anthracene",LB
+37151,4.151818e-05,Mercury,LB
+37151,0.02962722,Nickel,LB
+37151,130.51018,Acetaldehyde,LB
+37151,0.6569798,PM25-Primary from certain diesel engines,TON
+37151,0.01168046,Nitrous Oxide,TON
+37151,0.2671584,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.13976338,Benzo[k]Fluoranthene,LB
+37145,0.14607094,Chrysene,LB
+37145,88.52408,"1,3-Butadiene",LB
+37145,0.8683226,Fluoranthene,LB
+37145,0.002905306,Mercury,LB
+37145,106.9143,Carbon Monoxide,TON
+37143,0.2051118,Acenaphthylene,LB
+37143,2.96426,Acrolein,LB
+37143,0.0260901,Benz[a]Anthracene,LB
+37143,0.001815772,Arsenic,LB
+37143,239.8733,Carbon Dioxide,TON
+37143,0.04664115,PM10 Primary (Filt + Cond),TON
+37143,0.2165659,Volatile Organic Compounds,TON
+37139,0.10229212,Phenanthrene,LB
+37139,0.00496947,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,2430.778,Toluene,LB
+37141,0.6378294,Anthracene,LB
+37141,1607.495,Xylenes (Mixed Isomers),LB
+37141,0.0006494404,Chromium (VI),LB
+37141,0.264159,Benzo[a]Pyrene,LB
+37141,0.12447764,Arsenic,LB
+37141,1.5128266,Fluorene,LB
+37141,38.77626,Naphthalene,LB
+37141,195.2596,Carbon Monoxide,TON
+37141,0.09911248,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,1.1755456,Fluorene,LB
+37135,0.03807112,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.2636753,PM2.5 Primary (Filt + Cond),TON
+37135,0.06999753,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,17.32564,Volatile Organic Compounds,TON
+37135,864.1524,"2,2,4-Trimethylpentane",LB
+37135,0.182756,Benz[a]Anthracene,LB
+37135,0.02976084,Nickel,LB
+37135,0.0456345,Arsenic,LB
+37135,124.75958,Acetaldehyde,LB
+37135,18.555076,"1,3-Butadiene",LB
+37129,1.2253714,Pyrene,LB
+37129,0.05156462,Arsenic,LB
+37129,155.47092,Acetaldehyde,LB
+37129,0.0007856576,Nitrate portion of PM2.5-PRI,TON
+37129,0.2784924,PM2.5 Primary (Filt + Cond),TON
+37129,0.008575761,Sulfate Portion of PM2.5-PRI,TON
+37127,1.7057584,Fluoranthene,LB
+37127,0.1660956,Benzo[a]Pyrene,LB
+37127,98.4299,Acetaldehyde,LB
+37127,1.5724934,Fluorene,LB
+37127,0.1132166,Methane,TON
+37127,0.5886743,PM10-Primary from certain diesel engines,TON
+37127,0.2139018,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.01392697,Sulfur Dioxide,TON
+37127,2.072634e-05,Chrysene,LB
+37127,0.01228116,Formaldehyde,LB
+37127,1.0749634e-06,"Dibenzo[a,h]Anthracene",LB
+37127,2.241223e-05,Methane,TON
+37127,0.0001154999,PM10 Primary (Filt + Cond),TON
+37127,1.594986e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,3.848546,Arsenic,LB
+37119,3791.307,Carbon Monoxide,TON
+37119,10.50596,PM2.5 Primary (Filt + Cond),TON
+37119,4.388142,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,42629.6,Toluene,LB
+37115,8.869376,Ethyl Benzene,LB
+37115,22.26842,Xylenes (Mixed Isomers),LB
+37115,1.3073938,Acenaphthylene,LB
+37115,0.6345262,Benz[a]Anthracene,LB
+37115,7002.204,Carbon Dioxide,TON
+37115,1.766871,PM10 Primary (Filt + Cond),TON
+37115,1.442721,Volatile Organic Compounds,TON
+37109,41.2638,Acrolein,LB
+37109,15.19932,"2,2,4-Trimethylpentane",LB
+37109,1.277256,PM10-Primary from certain diesel engines,TON
+37107,6.200544,Styrene,LB
+37107,0.00010779728,Chromium (VI),LB
+37107,0.4092636,Fluoranthene,LB
+37107,0.0248942,Manganese,LB
+37107,0.0010806242,Mercury,LB
+37107,0.013474054,Nickel,LB
+37107,8.530333,Volatile Organic Compounds,TON
+37107,14670.91,Toluene,LB
+37107,6572.95,Xylenes (Mixed Isomers),LB
+37097,0.0547495,Naphthalene,LB
+37097,0.0003588167,Nitrous Oxide,TON
+37097,6.39369e-05,Ammonia,TON
+37097,0.0012336024,"Benzo[g,h,i,]Perylene",LB
+37097,0.000463476,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.0003279914,Benzo[k]Fluoranthene,LB
+37091,0.00376563,Anthracene,LB
+37091,0.0004743252,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,0.6739924,Styrene,LB
+37079,0.013314434,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.002270798,Arsenic,LB
+37079,4.144737e-05,Nitrate portion of PM2.5-PRI,TON
+37077,16.166004,"1,3-Butadiene",LB
+37077,13.921636,Hexane,LB
+37077,5.04932,Pyrene,LB
+37077,0.0001927037,Chromium (VI),LB
+37077,0.10958374,Benzo[b]Fluoranthene,LB
+37077,14.536278,"2,2,4-Trimethylpentane",LB
+37077,3.576124,Fluorene,LB
+37077,12.30288,Carbon Monoxide,TON
+37077,0.01827165,Nitrous Oxide,TON
+37077,0.2051472,Ammonia,TON
+37077,2.076494,PM10 Primary (Filt + Cond),TON
+37077,0.06793259,Sulfate Portion of PM2.5-PRI,TON
+37077,2.994819,Volatile Organic Compounds,TON
+37025,0.09218294,Acrolein,LB
+37025,1.8865216,Xylenes (Mixed Isomers),LB
+37025,0.00405852,Acenaphthylene,LB
+37025,0.00011236674,Mercury,LB
+37169,0.7894494,Benzene,LB
+37145,3.339366,Xylenes (Mixed Isomers),LB
+37137,4.460788,Toluene,LB
+37137,0.4629834,Propionaldehyde,LB
+37137,1.178428e-05,Chromium (VI),LB
+37137,0.0016283126,Benzo[b]Fluoranthene,LB
+37137,0.001472926,Nickel,LB
+37137,208.2631,Carbon Dioxide,TON
+37137,0.2063488,Nitrogen Oxides,TON
+37137,0.00138013,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.015961504,Styrene,LB
+37089,0.5385758,Hexane,LB
+37089,0.0005218286,Anthracene,LB
+37089,0.003664172,"Benzo[g,h,i,]Perylene",LB
+37089,0.000540419,Chrysene,LB
+37089,0.0006757154,Nickel,LB
+37089,0.000374386,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.03832202,Volatile Organic Compounds,TON
+37167,6.101776,Toluene,LB
+37167,0.0015682234,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.008514668,Acenaphthylene,LB
+37167,0.003771132,Fluorene,LB
+37167,4.426967e-06,Nitrate portion of PM2.5-PRI,TON
+37167,4.458118e-05,Sulfate Portion of PM2.5-PRI,TON
+37021,26.10068,Toluene,LB
+37021,2.71073,Pyrene,LB
+37021,376.9938,Formaldehyde,LB
+37021,0.5269754,Benz[a]Anthracene,LB
+37021,7.727534e-05,Mercury,LB
+37021,4931.163,Carbon Dioxide,TON
+37021,0.00243228,Nitrate portion of PM2.5-PRI,TON
+37021,0.03671033,Sulfate Portion of PM2.5-PRI,TON
+37021,0.03637652,Elemental Carbon portion of PM2.5-PRI,TON
+37021,235.729,Hexane,LB
+37005,1.893793,"1,3-Butadiene",LB
+37005,0.08236192,Chrysene,LB
+37005,56.80324,Formaldehyde,LB
+37005,0.01188491,Ammonia,TON
+37005,0.000742856,Nitrate portion of PM2.5-PRI,TON
+37005,0.2529814,PM2.5 Primary (Filt + Cond),TON
+37005,0.3356905,Volatile Organic Compounds,TON
+37061,0.3105502,Styrene,LB
+37061,1.1262166,"1,3-Butadiene",LB
+37061,23.46178,Toluene,LB
+37061,0.009871004,Anthracene,LB
+37061,2.587886,Propionaldehyde,LB
+37061,7.300884e-05,Chromium (VI),LB
+37061,0.008331708,Chrysene,LB
+37061,0.014852656,Manganese,LB
+37061,1299.129,Carbon Dioxide,TON
+37035,0.012951724,Phenanthrene,LB
+37035,0.11765362,Naphthalene,LB
+37035,0.001508864,Elemental Carbon portion of PM2.5-PRI,TON
+37035,2.246085e-05,Nitrate portion of PM2.5-PRI,TON
+37035,0.03978303,PM10 Primary (Filt + Cond),TON
+37035,0.01301793,Sulfur Dioxide,TON
+37035,0.3258336,"1,3-Butadiene",LB
+37035,3.688752,Formaldehyde,LB
+37035,0.005553274,Benzo[a]Pyrene,LB
+37035,0.002514796,Benz[a]Anthracene,LB
+37023,0.3627136,Hexane,LB
+37023,0.09003114,Propionaldehyde,LB
+37023,0.0004538392,Benz[a]Anthracene,LB
+37023,0.0005138398,Nickel,LB
+37023,71.27076,Carbon Dioxide,TON
+37023,0.0002565825,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.005777465,PM10 Primary (Filt + Cond),TON
+37143,0.008349638,Styrene,LB
+37143,0.761936,Toluene,LB
+37143,3.025368e-06,Chromium (VI),LB
+37143,0.0002174694,Chrysene,LB
+37143,0.0003781648,Nickel,LB
+37143,0.0005846898,Fluorene,LB
+37143,0.001234529,Sulfur Dioxide,TON
+37143,0.02228863,Volatile Organic Compounds,TON
+37017,0.0003802426,Benzo[k]Fluoranthene,LB
+37017,0.3266386,"2,2,4-Trimethylpentane",LB
+37017,0.9874204,Acrolein,LB
+37017,1.180262,Benzene,LB
+37017,5.477648,Acetaldehyde,LB
+37017,0.01361054,Organic Carbon portion of PM2.5-PRI,TON
+37007,6.62825,Xylenes (Mixed Isomers),LB
+37007,0.0004841974,Benzo[k]Fluoranthene,LB
+37007,0.5546698,Acenaphthylene,LB
+37007,2.491046,"2,2,4-Trimethylpentane",LB
+37007,0.014809574,Nickel,LB
+37007,0.006083356,Sulfur Dioxide,TON
+37017,12.9851,Acetaldehyde,LB
+37017,0.05399658,PM10 Primary (Filt + Cond),TON
+37015,3606.27,Ethyl Benzene,LB
+37015,19706.618,Toluene,LB
+37015,28.15764,Acenaphthylene,LB
+37181,8.600632,Benzene,LB
+37181,0.002283425,Nitrous Oxide,TON
+37181,0.1918938,Volatile Organic Compounds,TON
+37181,0.012587096,Fluoranthene,LB
+37195,0.4178462,Ethyl Benzene,LB
+37195,1.547805,Xylenes (Mixed Isomers),LB
+37195,0.0003287446,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.214365,Formaldehyde,LB
+37195,7.548208e-06,"Dibenzo[a,h]Anthracene",LB
+37195,3.131668e-05,Manganese,LB
+37195,7.339386e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,7.824063e-06,Sulfate Portion of PM2.5-PRI,TON
+37191,1.0056292,Toluene,LB
+37191,0.003186458,Manganese,LB
+37191,0.10635522,Fluorene,LB
+37191,0.005280177,Methane,TON
+37191,0.006140422,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,4.828298e-05,Anthracene,LB
+37187,1.0471312e-08,Chromium (VI),LB
+37187,0.00011760122,Fluoranthene,LB
+37187,0.000500578,Manganese,LB
+37187,0.00011468624,Arsenic,LB
+37187,0.000165303,Fluorene,LB
+37191,3.814544e-06,Chromium (VI),LB
+37191,0.0793891,Acenaphthylene,LB
+37191,0.008112568,Benzo[a]Pyrene,LB
+37191,19.099556,Benzene,LB
+37191,2.520885e-05,Nitrate portion of PM2.5-PRI,TON
+37181,23.75924,Formaldehyde,LB
+37181,174.5849,Carbon Dioxide,TON
+37181,2.650027e-05,Nitrate portion of PM2.5-PRI,TON
+37181,0.1986289,Nitrogen Oxides,TON
+37197,19337.04,Toluene,LB
+37197,2.745174,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,1.1456056,Manganese,LB
+37197,0.7890479,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.08143245,Sulfate Portion of PM2.5-PRI,TON
+37195,7.572294,Styrene,LB
+37195,0.2963124,Anthracene,LB
+37195,0.4202838,"Benzo[g,h,i,]Perylene",LB
+37195,0.15790708,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.168659,Methane,TON
+37183,0.15918722,Anthracene,LB
+37183,0.6228974,Styrene,LB
+37183,0.003086264,Arsenic,LB
+37185,2.355732,Pyrene,LB
+37185,0.00219178,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.01408385,Nickel,LB
+37041,1241.42,Carbon Dioxide,TON
+37041,0.01061991,Sulfur Dioxide,TON
+37041,0.5577404,Volatile Organic Compounds,TON
+37041,1.2876734,Styrene,LB
+37041,8.804224,Xylenes (Mixed Isomers),LB
+37041,0.6740988,Fluoranthene,LB
+37041,0.0025415,Benzo[k]Fluoranthene,LB
+37041,105.90136,Formaldehyde,LB
+37031,0.8927476,Anthracene,LB
+37031,20.70344,Propionaldehyde,LB
+37031,0.000854415,Chromium (VI),LB
+37031,0.331855,Benzo[a]Pyrene,LB
+37031,1056.4278,Benzene,LB
+37031,54.37096,Naphthalene,LB
+37031,0.09024174,Elemental Carbon portion of PM2.5-PRI,TON
+37031,1.811895,PM10 Primary (Filt + Cond),TON
+37029,0.007496936,Benzene,LB
+37029,6.86691e-07,Manganese,LB
+37029,2.123766e-07,Arsenic,LB
+37029,7.375474e-06,Acenaphthene,LB
+37029,0.003489571,Carbon Monoxide,TON
+37029,1.168611e-07,Sulfate Portion of PM2.5-PRI,TON
+37029,0.00014958754,Propionaldehyde,LB
+37029,0.002339254,Formaldehyde,LB
+37095,0.1941555,Volatile Organic Compounds,TON
+37087,0.02885614,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,2.728168,Acenaphthylene,LB
+37087,478.38,Formaldehyde,LB
+37087,0.1454181,Methane,TON
+37087,2.392946,PM10-Primary from certain diesel engines,TON
+37087,3.613056,"2,2,4-Trimethylpentane",LB
+37087,0.0367815,Nickel,LB
+37087,1.7469378,Styrene,LB
+37087,0.5264194,Fluoranthene,LB
+37087,0.0003728852,Benzo[k]Fluoranthene,LB
+37087,0.680126,Acenaphthylene,LB
+37083,0.673203,Xylenes (Mixed Isomers),LB
+37083,0.002014384,Benzo[b]Fluoranthene,LB
+37083,0.0575755,Acenaphthylene,LB
+37083,0.0007843451,Sulfate Portion of PM2.5-PRI,TON
+37079,0.1944063,Propionaldehyde,LB
+37079,0.2445386,Xylenes (Mixed Isomers),LB
+37079,0.002585862,Benzo[a]Pyrene,LB
+37079,0.008611744,Benz[a]Anthracene,LB
+37071,0.0134158,Sulfur Dioxide,TON
+37071,0.006714914,Sulfate Portion of PM2.5-PRI,TON
+37071,0.0005609678,Benzo[k]Fluoranthene,LB
+37071,0.06582962,Chrysene,LB
+37071,0.05233534,Manganese,LB
+37071,0.019315218,Arsenic,LB
+37071,0.7706864,Acenaphthene,LB
+37071,0.011487138,"Indeno[1,2,3-c,d]Pyrene",LB
+37071,0.06244206,Acenaphthylene,LB
+37053,0.002326142,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.4668009,Carbon Monoxide,TON
+37041,2.541628,"1,3-Butadiene",LB
+37041,4.50534e-05,Mercury,LB
+37041,0.07034069,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.5021892,PM10 Primary (Filt + Cond),TON
+37041,0.03367623,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,0.4816296,Volatile Organic Compounds,TON
+37041,6.044556,Hexane,LB
+37041,0.003904816,"Benzo[g,h,i,]Perylene",LB
+37041,0.0014670798,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.0010353674,Benzo[b]Fluoranthene,LB
+37041,0.0010353674,Benzo[k]Fluoranthene,LB
+37041,0.000988215,Chrysene,LB
+37041,3.367704e-05,"Dibenzo[a,h]Anthracene",LB
+37041,0.0008805869,Ammonia,TON
+37037,0.362301,"1,3-Butadiene",LB
+37037,0.7281182,Toluene,LB
+37037,0.0618457,Acenaphthylene,LB
+37037,0.02490114,Benz[a]Anthracene,LB
+37037,4.808852,Acetaldehyde,LB
+37037,0.2050925,Carbon Monoxide,TON
+37029,0.05143678,Acenaphthylene,LB
+37029,44.05066,Toluene,LB
+37029,0.010011134,"Benzo[g,h,i,]Perylene",LB
+37029,3.799508,Acetaldehyde,LB
+37029,0.004171603,Sulfur Dioxide,TON
+37023,0.009972314,Benzo[b]Fluoranthene,LB
+37023,0.002023164,Arsenic,LB
+37023,1.5891424,Naphthalene,LB
+37023,0.013058,Methane,TON
+37023,588.0488,Carbon Dioxide,TON
+37023,0.002832659,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.08010941,PM10 Primary (Filt + Cond),TON
+37199,1.67142,Acetaldehyde,LB
+37199,0.004259212,Methane,TON
+37199,0.001633928,Nitrous Oxide,TON
+37199,0.0009792103,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.1018134,Propionaldehyde,LB
+37199,0.0018513296,Benzo[a]Pyrene,LB
+37185,0.08275274,Styrene,LB
+37185,0.3899234,Nitrogen Oxides,TON
+37185,0.009861908,Sulfur Dioxide,TON
+37185,0.0001842114,Sulfate Portion of PM2.5-PRI,TON
+37191,1.057784,Pyrene,LB
+37191,13.265958,Benzene,LB
+37191,1766.843,Carbon Dioxide,TON
+37191,10.38053,Nitrogen Oxides,TON
+37191,0.07828327,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.81783,Volatile Organic Compounds,TON
+37191,85.82006,Toluene,LB
+37189,0.0133824,Nitrous Oxide,TON
+37189,3.496592,Propionaldehyde,LB
+37189,8.41227e-05,Chromium (VI),LB
+37189,0.06346382,Benz[a]Anthracene,LB
+37181,9.653318,Anthracene,LB
+37181,3562.174,Formaldehyde,LB
+37181,2.975942,Benz[a]Anthracene,LB
+37181,3786.34,Acetaldehyde,LB
+37181,11.318898,Acenaphthene,LB
+37181,61.38878,Phenanthrene,LB
+37181,0.8595017,Elemental Carbon portion of PM2.5-PRI,TON
+37023,1.716893,Ethyl Benzene,LB
+37023,0.0428432,Acrolein,LB
+37023,0.05862364,Propionaldehyde,LB
+37023,0.0008811416,Chrysene,LB
+37023,0.0007157269,Organic Carbon portion of PM2.5-PRI,TON
+37095,19.28983,Xylenes (Mixed Isomers),LB
+37095,0.0003923874,Arsenic,LB
+37095,0.01468471,Fluorene,LB
+37095,0.001043425,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.002443216,PM2.5 Primary (Filt + Cond),TON
+37095,5.507718e-05,Sulfate Portion of PM2.5-PRI,TON
+37093,0.06399914,Anthracene,LB
+37093,0.0011433188,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,18.876312,Formaldehyde,LB
+37093,0.4939266,"2,2,4-Trimethylpentane",LB
+37093,7.96729,Acetaldehyde,LB
+37093,0.01137982,Methane,TON
+37093,0.04611326,PM25-Primary from certain diesel engines,TON
+37087,0.02480339,Elemental Carbon portion of PM2.5-PRI,TON
+37087,4.740888,Nitrogen Oxides,TON
+37087,0.04382734,Remaining PMFINE portion of PM2.5-PRI,TON
+37087,11.89549,Volatile Organic Compounds,TON
+37085,0.02099054,Benzo[a]Pyrene,LB
+37085,0.8425996,Propionaldehyde,LB
+37085,0.10710468,Fluorene,LB
+37085,0.004514961,Elemental Carbon portion of PM2.5-PRI,TON
+37077,13.668642,Xylenes (Mixed Isomers),LB
+37077,5.503542e-05,Chromium (VI),LB
+37077,0.017506404,Benzo[a]Pyrene,LB
+37077,0.13290158,Benz[a]Anthracene,LB
+37077,81.7708,Acetaldehyde,LB
+37077,0.00011766814,"Dibenzo[a,h]Anthracene",LB
+37077,2.859702,Acetaldehyde,LB
+37077,0.04847722,Phenanthrene,LB
+37077,0.2158476,Styrene,LB
+37077,0.19137352,Propionaldehyde,LB
+37069,15.773672,Styrene,LB
+37069,12.870564,Acrolein,LB
+37069,0.205256,Benzo[a]Pyrene,LB
+37069,0.004104102,Mercury,LB
+37069,0.07846722,Arsenic,LB
+37069,231.5844,Acetaldehyde,LB
+37069,0.1144875,Organic Carbon portion of PM2.5-PRI,TON
+37069,2641.142,"2,2,4-Trimethylpentane",LB
+37045,2.40451,Acenaphthylene,LB
+37045,0.2156048,Benzo[a]Pyrene,LB
+37045,0.03970982,Arsenic,LB
+37045,0.2461065,Methane,TON
+37045,0.3288965,PM10 Primary (Filt + Cond),TON
+37037,24.96782,Xylenes (Mixed Isomers),LB
+37037,0.02197342,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.08628432,Benzo[b]Fluoranthene,LB
+37037,2.147644,Acenaphthylene,LB
+37037,9.50556,"2,2,4-Trimethylpentane",LB
+37037,167.28354,Acetaldehyde,LB
+37037,1.2773714,Acenaphthene,LB
+37037,2.774674,Fluorene,LB
+37037,42.2486,Naphthalene,LB
+37037,11.12203,Carbon Monoxide,TON
+37037,0.005004753,Nitrate portion of PM2.5-PRI,TON
+37037,0.04628039,Sulfate Portion of PM2.5-PRI,TON
+37037,25.41356,Toluene,LB
+37037,20.60736,Propionaldehyde,LB
+37037,3.97408,Pyrene,LB
+37031,10.59853,"1,3-Butadiene",LB
+37031,10.195232,Hexane,LB
+37031,1.7869184,Acenaphthylene,LB
+37031,41.52074,Naphthalene,LB
+37031,11.72855,Carbon Monoxide,TON
+37031,1.643227,PM10-Primary from certain diesel engines,TON
+37031,4.099504,Benz[a]Anthracene,LB
+37031,16066.494,Benzene,LB
+37031,32.83708,Fluorene,LB
+37031,14.95444,Ammonia,TON
+37031,408.9451,Nitrogen Oxides,TON
+37031,2.966182,Organic Carbon portion of PM2.5-PRI,TON
+37031,25.34004,PM10 Primary (Filt + Cond),TON
+37027,0.577018,"1,3-Butadiene",LB
+37027,0.05822482,Acenaphthene,LB
+37169,0.02131396,Nickel,LB
+37169,0.03268102,Arsenic,LB
+37169,0.0003147133,Nitrate portion of PM2.5-PRI,TON
+37169,7.768792,Styrene,LB
+37169,1091.4322,Toluene,LB
+37169,0.2726882,"Benzo[g,h,i,]Perylene",LB
+37169,1.4972438,Acenaphthylene,LB
+37153,48.17415,Carbon Monoxide,TON
+37153,0.04216644,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.02022514,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.8574232,Fluoranthene,LB
+37151,0.16764666,Chrysene,LB
+37151,0.005455372,"Dibenzo[a,h]Anthracene",LB
+37151,812.57,Benzene,LB
+37151,0.04127516,Arsenic,LB
+37151,3.183062,Phenanthrene,LB
+37151,0.03996299,Nitrous Oxide,TON
+37151,0.4398019,Ammonia,TON
+37151,0.9781576,Pyrene,LB
+37151,0.1311213,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.368038,PM10 Primary (Filt + Cond),TON
+37151,0.007209828,Sulfate Portion of PM2.5-PRI,TON
+37143,0.006030648,"1,3-Butadiene",LB
+37143,0.0006434802,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.09609422,Fluoranthene,LB
+37141,0.0024686,Manganese,LB
+37141,0.0002197856,Nitrous Oxide,TON
+37141,0.0001470493,Nitrate portion of PM2.5-PRI,TON
+37141,0.03959694,PM10 Primary (Filt + Cond),TON
+37139,0.011949184,"1,3-Butadiene",LB
+37139,0.000516741,Phenanthrene,LB
+37139,0.0002350492,Fluorene,LB
+37139,0.001112374,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.0013898916,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.311686,Phenanthrene,LB
+37135,0.007647599,Methane,TON
+37135,0.02546866,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.06248153,PM2.5 Primary (Filt + Cond),TON
+37135,0.1494875,Volatile Organic Compounds,TON
+37135,0.8431618,"1,3-Butadiene",LB
+37135,1.6482394,Toluene,LB
+37135,1.3774384,Propionaldehyde,LB
+37135,1.6027694,Xylenes (Mixed Isomers),LB
+37127,0.0001343225,Nitrate portion of PM2.5-PRI,TON
+37127,0.007777906,Sulfur Dioxide,TON
+37127,0.0010675416,"Benzo[g,h,i,]Perylene",LB
+37127,0.005619008,Benzo[a]Pyrene,LB
+37119,59.5358,Phenanthrene,LB
+37119,153.2854,Carbon Monoxide,TON
+37119,4.079208,Remaining PMFINE portion of PM2.5-PRI,TON
+37119,413.5024,Acrolein,LB
+37119,594.7744,Toluene,LB
+37115,207.7808,"2,2,4-Trimethylpentane",LB
+37115,0.15551286,Fluoranthene,LB
+37115,0.03187194,Benzo[k]Fluoranthene,LB
+37115,126.60198,Ethyl Benzene,LB
+37115,1.768595,Propionaldehyde,LB
+37097,0.467179,Pyrene,LB
+37097,5.48962,Naphthalene,LB
+37097,0.002097984,Nitrous Oxide,TON
+37097,0.03211643,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.01419688,Sulfur Dioxide,TON
+37103,2.265196,Toluene,LB
+37103,0.2351954,Acenaphthylene,LB
+37103,38.35074,Formaldehyde,LB
+37103,0.2636804,Fluorene,LB
+37103,1.501319,Carbon Monoxide,TON
+37103,0.0002706519,Nitrate portion of PM2.5-PRI,TON
+37103,1.372553,"1,3-Butadiene",LB
+37095,1.960219,Nitrogen Oxides,TON
+37095,0.004561378,Sulfur Dioxide,TON
+37079,0.012153632,Phenanthrene,LB
+37079,0.1326957,Nitrogen Oxides,TON
+37079,0.0013991888,Benzo[a]Pyrene,LB
+37073,122.47474,Formaldehyde,LB
+37073,0.19602936,Benz[a]Anthracene,LB
+37073,0.01645036,Arsenic,LB
+37073,0.2972618,Acenaphthene,LB
+37073,0.08977809,Ammonia,TON
+37073,0.01528792,Nickel,LB
+37073,0.003869066,Nitrous Oxide,TON
+37073,3.387672,"1,3-Butadiene",LB
+37073,2.843628,Hexane,LB
+37073,0.8214448,Fluoranthene,LB
+37085,14.27304,Toluene,LB
+37085,7.162668e-05,Chromium (VI),LB
+37085,0.03907576,Chrysene,LB
+37085,0.0875418,Benz[a]Anthracene,LB
+37085,0.8182984,Fluorene,LB
+37085,0.01174683,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,176.1753,Carbon Dioxide,TON
+37085,0.005295588,Nitrous Oxide,TON
+37085,0.6482055,Nitrogen Oxides,TON
+37085,0.009546823,PM2.5 Primary (Filt + Cond),TON
+37085,0.003694211,Sulfur Dioxide,TON
+37085,12.712426,Ethyl Benzene,LB
+37083,12.276548,Pyrene,LB
+37083,2.788268,Benzo[b]Fluoranthene,LB
+37083,7540.322,Benzene,LB
+37083,2558.008,Acetaldehyde,LB
+37083,2.461752,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.00070949,Benzo[b]Fluoranthene,LB
+37079,0.0009953656,Benzo[a]Pyrene,LB
+37079,1.2133364,"2,2,4-Trimethylpentane",LB
+37079,0.002318744,Acenaphthene,LB
+37079,0.001344931,Ammonia,TON
+37079,0.004914744,PM10 Primary (Filt + Cond),TON
+37079,0.001431914,PM2.5 Primary (Filt + Cond),TON
+37077,526.3392,"2,2,4-Trimethylpentane",LB
+37077,65.44476,Acetaldehyde,LB
+37077,0.0001191744,Chromium (VI),LB
+37077,0.13029392,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.09148642,Benzo[b]Fluoranthene,LB
+37053,2.262438,Ethyl Benzene,LB
+37053,4.880764,Xylenes (Mixed Isomers),LB
+37053,0.013648488,Benzo[b]Fluoranthene,LB
+37053,0.002273502,Arsenic,LB
+37053,0.8006418,Phenanthrene,LB
+37053,2.683343,Carbon Monoxide,TON
+37053,0.064626,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.003866719,Sulfate Portion of PM2.5-PRI,TON
+37053,0.386907,Volatile Organic Compounds,TON
+37061,20.31738,"1,3-Butadiene",LB
+37061,3.44724,Acenaphthylene,LB
+37061,7.529198,Phenanthrene,LB
+37061,21.81496,Carbon Monoxide,TON
+37061,4.085675,PM10 Primary (Filt + Cond),TON
+37061,3.092715,PM2.5 Primary (Filt + Cond),TON
+37061,0.2151169,Sulfur Dioxide,TON
+37061,3.637366,Anthracene,LB
+37061,78.08916,Xylenes (Mixed Isomers),LB
+37061,1288.681,Formaldehyde,LB
+37061,0.8891126,Benz[a]Anthracene,LB
+37061,0.0002966384,Mercury,LB
+37061,11.536256,Phenanthrene,LB
+37061,0.3260602,Methane,TON
+37061,1.260727,PM10-Primary from certain diesel engines,TON
+37061,1.159896,PM25-Primary from certain diesel engines,TON
+37061,0.075227,Sulfur Dioxide,TON
+37051,80.56512,Fluorene,LB
+37051,789633.5,Carbon Dioxide,TON
+37051,3.855346,Elemental Carbon portion of PM2.5-PRI,TON
+37043,9.577684,Toluene,LB
+37039,1.5764516,Fluorene,LB
+37039,1.161811,PM25-Primary from certain diesel engines,TON
+37039,35.9757,Nitrogen Oxides,TON
+37039,0.0001480252,Chromium (VI),LB
+37039,0.2718194,Chrysene,LB
+37039,0.1392394,Manganese,LB
+37039,0.0538094,Nickel,LB
+37029,1.4690986,Hexane,LB
+37029,0.007800394,Acenaphthylene,LB
+37029,0.00012771976,Mercury,LB
+37029,0.002441716,Arsenic,LB
+37029,0.003239907,Nitrous Oxide,TON
+37029,0.2164469,Nitrogen Oxides,TON
+37017,7.191785,Carbon Monoxide,TON
+37017,0.1660912,Styrene,LB
+37017,0.005093656,Benzo[b]Fluoranthene,LB
+37017,0.0038728,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.0004262278,Acenaphthylene,LB
+37177,9.269538e-05,Chrysene,LB
+37139,0.004557244,Phenanthrene,LB
+37139,0.04213138,Naphthalene,LB
+37139,0.06081761,Nitrogen Oxides,TON
+37139,0.002519001,PM2.5 Primary (Filt + Cond),TON
+37139,0.19487548,Propionaldehyde,LB
+37139,0.0007602136,Benzo[b]Fluoranthene,LB
+37139,1.2521488,Formaldehyde,LB
+37129,4.787772,Toluene,LB
+37129,0.0019144748,Benz[a]Anthracene,LB
+37103,0.0003143376,Anthracene,LB
+37103,0.0015352228,Acenaphthylene,LB
+37103,0.5708012,Formaldehyde,LB
+37103,0.0002151809,Elemental Carbon portion of PM2.5-PRI,TON
+37087,0.01510388,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.03257214,PM2.5 Primary (Filt + Cond),TON
+37087,17.879278,Xylenes (Mixed Isomers),LB
+37087,0.02460288,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.02181022,Manganese,LB
+37087,107.98034,Acetaldehyde,LB
+37087,0.01679218,Nitrous Oxide,TON
+37175,0.03917725,Sulfate Portion of PM2.5-PRI,TON
+37175,181.68256,Formaldehyde,LB
+37175,4.81148,"2,2,4-Trimethylpentane",LB
+37175,6.672632e-05,Mercury,LB
+37175,1.1326294,Fluorene,LB
+37171,35.18296,Xylenes (Mixed Isomers),LB
+37171,50.14148,Benzene,LB
+37171,0.193866,Methane,TON
+37171,48.31464,Benzene,LB
+37171,0.0302187,Arsenic,LB
+37171,1.643636,Acenaphthene,LB
+37171,4.541202,Phenanthrene,LB
+37171,2.855224,Fluorene,LB
+37171,56.41116,Naphthalene,LB
+37171,0.5539729,PM25-Primary from certain diesel engines,TON
+37171,0.4210029,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.002304284,"Dibenzo[a,h]Anthracene",LB
+37159,0.00015904052,Chrysene,LB
+37159,8.897784e-05,Benz[a]Anthracene,LB
+37159,0.0003816044,Acenaphthene,LB
+37159,0.001104084,Sulfur Dioxide,TON
+37159,32.30312,Ethyl Benzene,LB
+37155,0.8095864,"1,3-Butadiene",LB
+37155,0.03177422,Chrysene,LB
+37155,0.007012489,Methane,TON
+37155,1.260658,Nitrogen Oxides,TON
+37155,0.08038962,PM10 Primary (Filt + Cond),TON
+37155,1.657927,"1,3-Butadiene",LB
+37155,0.010077388,Benzo[b]Fluoranthene,LB
+37155,0.03377334,Benzo[a]Pyrene,LB
+37155,0.01331121,Sulfate Portion of PM2.5-PRI,TON
+37009,0.0002468394,Anthracene,LB
+37009,0.0003657534,"Benzo[g,h,i,]Perylene",LB
+37001,18.71646,Pyrene,LB
+37001,19.042562,Acenaphthylene,LB
+37001,0.013881726,"Dibenzo[a,h]Anthracene",LB
+37001,0.4274362,Nickel,LB
+37001,183.6352,Carbon Monoxide,TON
+37001,0.5465054,Ammonia,TON
+37071,0.005720826,Fluoranthene,LB
+37071,0.006461934,Fluorene,LB
+37071,0.002273122,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.03902049,Ammonia,TON
+37071,0.06714171,PM10 Primary (Filt + Cond),TON
+37071,0.01541732,PM2.5 Primary (Filt + Cond),TON
+37071,0.2608441,Volatile Organic Compounds,TON
+37071,0.7689794,Propionaldehyde,LB
+37071,0.006464788,Pyrene,LB
+37013,1.0582408,"1,3-Butadiene",LB
+37013,0.00677998,Benzo[b]Fluoranthene,LB
+37013,0.00541399,Chrysene,LB
+37013,0.012172942,Benzo[a]Pyrene,LB
+37013,9.076384,"2,2,4-Trimethylpentane",LB
+37013,0.04899532,Phenanthrene,LB
+37013,0.01624302,Nitrous Oxide,TON
+37013,0.006388509,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,6.362602e-05,Benzo[b]Fluoranthene,LB
+37005,5.008754e-05,Chrysene,LB
+37005,0.209578,Benzene,LB
+37005,0.003832106,Naphthalene,LB
+37005,3.660296e-06,Sulfate Portion of PM2.5-PRI,TON
+37157,0.016810352,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,9.282736,"2,2,4-Trimethylpentane",LB
+37157,0.008882796,Acenaphthene,LB
+37157,9.85107,Carbon Monoxide,TON
+37157,0.01866838,Nitrous Oxide,TON
+37157,0.07280795,PM10 Primary (Filt + Cond),TON
+37117,0.0004243762,Benzo[a]Pyrene,LB
+37117,0.0003773392,Arsenic,LB
+37117,0.0003913424,Fluorene,LB
+37117,0.019901026,Acrolein,LB
+37117,0.04657104,Propionaldehyde,LB
+37117,0.401591,Xylenes (Mixed Isomers),LB
+37095,9.80154e-05,Benzo[b]Fluoranthene,LB
+37095,0.0001606768,Fluoranthene,LB
+37095,14.70394,Carbon Dioxide,TON
+37095,0.010312214,Acrolein,LB
+37095,0.0004916194,"Benzo[g,h,i,]Perylene",LB
+37013,0.015504888,"Benzo[g,h,i,]Perylene",LB
+37013,5.071648,Fluoranthene,LB
+37013,1108.4788,Formaldehyde,LB
+37013,0.13852662,Nickel,LB
+37013,489.077,Acetaldehyde,LB
+37013,0.2848447,Methane,TON
+37013,60.96067,Carbon Monoxide,TON
+37013,5893.107,Carbon Dioxide,TON
+37013,0.8448164,PM25-Primary from certain diesel engines,TON
+37013,0.002004913,Nitrate portion of PM2.5-PRI,TON
+37013,0.07304759,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,0.05124532,Sulfur Dioxide,TON
+37021,0.000416496,"Dibenzo[a,h]Anthracene",LB
+37021,0.13037308,Phenanthrene,LB
+37021,0.01356253,Nitrous Oxide,TON
+37021,0.3919668,Volatile Organic Compounds,TON
+37011,0.769073,Pyrene,LB
+37011,150.59148,Formaldehyde,LB
+37011,3.350502e-05,Mercury,LB
+37011,1.2915504,Phenanthrene,LB
+37011,16.3127,Naphthalene,LB
+37011,7.504018,Carbon Monoxide,TON
+37011,0.01950488,Organic Carbon portion of PM2.5-PRI,TON
+37001,0.5452256,Propionaldehyde,LB
+37001,1.002659,Nitrogen Oxides,TON
+37051,6.293106,Propionaldehyde,LB
+37051,0.0272783,Chrysene,LB
+37051,0.0311279,Benz[a]Anthracene,LB
+37051,5370.784,Carbon Dioxide,TON
+37051,0.07319974,Nitrous Oxide,TON
+37047,0.08063712,Acrolein,LB
+37047,0.19369362,Propionaldehyde,LB
+37047,9.537492e-06,Chromium (VI),LB
+37047,0.8771332,"2,2,4-Trimethylpentane",LB
+37047,9.00979,Acetaldehyde,LB
+37023,215.637,Carbon Dioxide,TON
+37023,0.002163047,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.0001511086,Sulfate Portion of PM2.5-PRI,TON
+37159,0.5290956,Propionaldehyde,LB
+37159,0.002277512,Chrysene,LB
+37159,0.010822986,Manganese,LB
+37159,0.006154754,Arsenic,LB
+37159,0.012673818,Phenanthrene,LB
+37159,0.02749845,Ammonia,TON
+37159,0.2053217,Nitrogen Oxides,TON
+37159,0.01398489,Sulfur Dioxide,TON
+37159,0.0003076795,Sulfate Portion of PM2.5-PRI,TON
+37111,6.141518,Hexane,LB
+37111,5.158022e-05,Chromium (VI),LB
+37111,0.006475412,Chrysene,LB
+37111,0.015822386,Fluorene,LB
+37111,0.4073986,Naphthalene,LB
+37111,943.0913,Carbon Dioxide,TON
+37111,1.071785,Nitrogen Oxides,TON
+37017,0.000291551,Fluoranthene,LB
+37017,0.0004656274,Elemental Carbon portion of PM2.5-PRI,TON
+37007,10.730802,Propionaldehyde,LB
+37007,0.5367836,Benz[a]Anthracene,LB
+37007,3.745128e-05,Mercury,LB
+37007,0.671572,Acenaphthene,LB
+37007,0.003913391,Nitrous Oxide,TON
+37005,3.365202,Propionaldehyde,LB
+37005,0.0014058694,Benzo[k]Fluoranthene,LB
+37005,71.30346,Formaldehyde,LB
+37005,0.001396537,"Dibenzo[a,h]Anthracene",LB
+37005,2.679802e-05,Mercury,LB
+37005,0.73322,Phenanthrene,LB
+37005,0.1640804,Elemental Carbon portion of PM2.5-PRI,TON
+37005,6.89548,Nitrogen Oxides,TON
+37005,0.253881,PM2.5 Primary (Filt + Cond),TON
+37005,0.02407749,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,419.195,Nitrogen Oxides,TON
+37001,0.3305956,Sulfate Portion of PM2.5-PRI,TON
+37001,2509.99,"1,3-Butadiene",LB
+37001,73873.58,Toluene,LB
+37001,5.685138,Chrysene,LB
+37001,9.63239,Benzo[a]Pyrene,LB
+37001,16200.986,"2,2,4-Trimethylpentane",LB
+37001,6.009698,Benz[a]Anthracene,LB
+37007,1636.0698,"2,2,4-Trimethylpentane",LB
+37061,0.2260555,Volatile Organic Compounds,TON
+37043,18.53571,Carbon Dioxide,TON
+37043,7.10363e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.001188013,Ammonia,TON
+37043,0.000117893,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.0891655,Ethyl Benzene,LB
+37043,0.000283456,Pyrene,LB
+37017,0.01132816,Nickel,LB
+37017,8.943622,Naphthalene,LB
+37017,0.01053748,Methane,TON
+37017,0.01096211,Ammonia,TON
+37017,0.4872366,Volatile Organic Compounds,TON
+37017,2.651412,Ethyl Benzene,LB
+37017,6.512176,Acrolein,LB
+37017,0.002344474,"Benzo[g,h,i,]Perylene",LB
+37017,0.0094583,Benzo[b]Fluoranthene,LB
+37017,78.68508,Formaldehyde,LB
+37015,0.229151,Hexane,LB
+37015,0.08965184,Pyrene,LB
+37015,0.0004016222,"Benzo[g,h,i,]Perylene",LB
+37015,0.0019671622,Benzo[b]Fluoranthene,LB
+37015,0.0002717544,Benzo[k]Fluoranthene,LB
+37015,0.012677566,Chrysene,LB
+37015,0.004809935,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.07990329,Volatile Organic Compounds,TON
+37011,0.008110884,Methane,TON
+37011,0.01317161,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.1509514,Ethyl Benzene,LB
+37199,0.00746432,Styrene,LB
+37199,3.107384,Acetaldehyde,LB
+37199,1.405805e-06,Nitrate portion of PM2.5-PRI,TON
+37199,0.0005718348,PM2.5 Primary (Filt + Cond),TON
+37193,13.138712,Toluene,LB
+37193,10.787288,Propionaldehyde,LB
+37193,1.536808,Fluoranthene,LB
+37193,2.442574,Phenanthrene,LB
+37193,0.5214008,PM10-Primary from certain diesel engines,TON
+37193,0.02011093,Ammonia,TON
+37193,0.6239701,PM10 Primary (Filt + Cond),TON
+37193,39.59044,Phenanthrene,LB
+37193,103352.8,Carbon Dioxide,TON
+37193,5251.844,Ethyl Benzene,LB
+37193,148.0456,Acrolein,LB
+37193,7921.782,Hexane,LB
+37193,19484.38,Xylenes (Mixed Isomers),LB
+37193,10.027274,"Benzo[g,h,i,]Perylene",LB
+37191,0.13114336,Benzo[b]Fluoranthene,LB
+37191,4.4457,Acenaphthylene,LB
+37191,0.8776992,Chrysene,LB
+37191,0.4389458,Benzo[a]Pyrene,LB
+37191,1.5228616,Benz[a]Anthracene,LB
+37191,11.516136,Phenanthrene,LB
+37191,42379.71,Carbon Dioxide,TON
+37191,3.902939,PM10-Primary from certain diesel engines,TON
+37191,0.009179391,Nitrate portion of PM2.5-PRI,TON
+37191,0.764211,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.2310586,Toluene,LB
+37181,0.0001397564,Anthracene,LB
+37181,0.0006277208,Pyrene,LB
+37199,0.3759418,"1,3-Butadiene",LB
+37199,2.291484,Hexane,LB
+37199,5.945682,Xylenes (Mixed Isomers),LB
+37199,0.011823206,"Benzo[g,h,i,]Perylene",LB
+37199,38.23422,Acetaldehyde,LB
+37199,0.003016854,Acenaphthene,LB
+37199,0.006110898,Fluorene,LB
+37199,0.3023193,Nitrogen Oxides,TON
+37199,0.0001399364,Sulfate Portion of PM2.5-PRI,TON
+37197,9.55891e-05,Nitrate portion of PM2.5-PRI,TON
+37197,0.01719494,PM2.5 Primary (Filt + Cond),TON
+37197,0.0008353792,"Benzo[g,h,i,]Perylene",LB
+37197,0.001239237,Benzo[b]Fluoranthene,LB
+37197,0.004151432,Benzo[a]Pyrene,LB
+37195,0.5187406,Benzo[a]Pyrene,LB
+37195,21.8678,"2,2,4-Trimethylpentane",LB
+37195,0.2762396,Manganese,LB
+37195,0.06605564,Arsenic,LB
+37195,342.9468,Acetaldehyde,LB
+37195,85.89898,Naphthalene,LB
+37195,0.3078943,Ammonia,TON
+37069,0.9855246,Acrolein,LB
+37069,1.0264364,Toluene,LB
+37069,0.3326956,Hexane,LB
+37069,5.02959e-06,Mercury,LB
+37069,0.0010515822,Arsenic,LB
+37069,1.3897816,Naphthalene,LB
+37067,3.231162,Elemental Carbon portion of PM2.5-PRI,TON
+37067,1.047773,Ammonia,TON
+37067,4.574153,PM2.5 Primary (Filt + Cond),TON
+37067,72.02304,Styrene,LB
+37067,264.773,Propionaldehyde,LB
+37067,537.9526,Naphthalene,LB
+37049,0.3248327,Sulfate Portion of PM2.5-PRI,TON
+37049,2.063347,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.008192753,Nitrate portion of PM2.5-PRI,TON
+37049,9.71265,Styrene,LB
+37049,44.29832,Propionaldehyde,LB
+37049,146.28966,Xylenes (Mixed Isomers),LB
+37049,0.0003768648,Chromium (VI),LB
+37049,0.03019094,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.10406642,Arsenic,LB
+37037,2.324658,PM10-Primary from certain diesel engines,TON
+37037,2.864621,Volatile Organic Compounds,TON
+37037,4.115452,Pyrene,LB
+37037,18.252872,Ethyl Benzene,LB
+37037,6.421024,Styrene,LB
+37037,46.23378,Toluene,LB
+37037,1.5401924,Anthracene,LB
+37035,0.0651614,Manganese,LB
+37035,0.1629256,PM2.5 Primary (Filt + Cond),TON
+37035,35.80764,"1,3-Butadiene",LB
+37035,269.4436,Hexane,LB
+37035,151180.98,Toluene,LB
+37035,0.0505628,Nitrate portion of PM2.5-PRI,TON
+37035,48.46138,PM10 Primary (Filt + Cond),TON
+37035,928.1004,Propionaldehyde,LB
+37035,12.179986,Chrysene,LB
+37035,91.12354,Fluorene,LB
+37035,507159.2,Carbon Dioxide,TON
+37033,6.94274,"1,3-Butadiene",LB
+37033,12.754392,Propionaldehyde,LB
+37033,0.10077944,Manganese,LB
+37033,0.03165226,Arsenic,LB
+37033,0.6116593,Elemental Carbon portion of PM2.5-PRI,TON
+37031,53.90912,Toluene,LB
+37031,40.87814,Hexane,LB
+37031,15.576206,Benzene,LB
+37023,3.803816e-06,"Benzo[g,h,i,]Perylene",LB
+37023,8.316952e-07,Benzo[k]Fluoranthene,LB
+37023,2.218664e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37023,4.390906e-07,Ammonia,TON
+37023,2.200445e-05,Volatile Organic Compounds,TON
+37023,3310.348,Toluene,LB
+37023,768.4284,Hexane,LB
+37159,0.02265922,Anthracene,LB
+37159,0.007959376,Benzo[k]Fluoranthene,LB
+37159,0.007926724,Benz[a]Anthracene,LB
+37159,0.14379848,Phenanthrene,LB
+37145,0.0002357372,Nickel,LB
+37145,1.5012008,Acetaldehyde,LB
+37145,0.08809038,Propionaldehyde,LB
+37145,1.972666,Carbon Monoxide,TON
+37145,66.2123,Carbon Dioxide,TON
+37145,0.003165647,Nitrous Oxide,TON
+37143,0.0200981,Fluoranthene,LB
+37143,0.08898912,Ethyl Benzene,LB
+37143,0.03931664,Styrene,LB
+37143,0.00357403,Chrysene,LB
+37143,0.2955292,Naphthalene,LB
+37143,0.001045037,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,7.657852e-05,Acrolein,LB
+37139,6.408484e-06,Pyrene,LB
+37139,3.694546e-06,"Benzo[g,h,i,]Perylene",LB
+37139,7.806422e-06,Fluorene,LB
+37139,0.0002000944,Naphthalene,LB
+37139,0.001507103,Carbon Monoxide,TON
+37139,4.329981e-07,Ammonia,TON
+37127,14.735146,Acetaldehyde,LB
+37127,0.4056372,Phenanthrene,LB
+37127,0.01574503,Ammonia,TON
+37127,0.2495731,PM10 Primary (Filt + Cond),TON
+37125,3.597506,Fluoranthene,LB
+37125,0.19372888,Manganese,LB
+37125,36.04798,Acrolein,LB
+37125,11.512484,"2,2,4-Trimethylpentane",LB
+37125,0.6304736,Naphthalene,LB
+37113,0.015989718,Chrysene,LB
+37113,0.0003420436,"Dibenzo[a,h]Anthracene",LB
+37113,0.8276034,Toluene,LB
+37113,0.03901354,Anthracene,LB
+37113,0.11231074,Pyrene,LB
+37113,1.2316716,Naphthalene,LB
+37113,0.0003822878,Nitrous Oxide,TON
+37113,0.07592128,PM10 Primary (Filt + Cond),TON
+37113,0.06375941,Volatile Organic Compounds,TON
+37113,0.4947848,Fluoranthene,LB
+37113,0.0012791604,Benzo[k]Fluoranthene,LB
+37113,1.8538832,"2,2,4-Trimethylpentane",LB
+37113,0.01018266,Nickel,LB
+37113,0.8483902,Phenanthrene,LB
+37113,0.04473015,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.1779634,PM2.5 Primary (Filt + Cond),TON
+37113,0.00579963,Sulfur Dioxide,TON
+37109,14.394784,"1,3-Butadiene",LB
+37109,272.6396,Xylenes (Mixed Isomers),LB
+37109,0.4970818,Acenaphthylene,LB
+37109,34.20702,Formaldehyde,LB
+37109,0.0303056,Benz[a]Anthracene,LB
+37109,0.5926438,Phenanthrene,LB
+37109,46.64918,Carbon Monoxide,TON
+37109,0.0218006,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.01641093,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,0.001223951,Sulfate Portion of PM2.5-PRI,TON
+37109,2.192033,Volatile Organic Compounds,TON
+37109,0.003172792,Fluorene,LB
+37109,0.08138234,Naphthalene,LB
+37109,0.0005090033,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.001435542,PM10 Primary (Filt + Cond),TON
+37109,0.2091454,"1,3-Butadiene",LB
+37109,3.591582,Xylenes (Mixed Isomers),LB
+37109,1.0650076e-07,Chromium (VI),LB
+37109,0.000611789,Benzo[k]Fluoranthene,LB
+37109,1.0676798e-06,Mercury,LB
+37109,284.0399,Carbon Dioxide,TON
+37109,0.001407105,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.4098658,Acrolein,LB
+37109,0.0156769,Anthracene,LB
+37109,0.0060757,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,262.37,Formaldehyde,LB
+37097,6.591424,Hexane,LB
+37097,0.7792844,Anthracene,LB
+37097,0.12308948,Manganese,LB
+37097,6.126228e-05,Mercury,LB
+37097,0.512565,PM25-Primary from certain diesel engines,TON
+37097,0.04966486,Ammonia,TON
+37097,0.02693304,Sulfate Portion of PM2.5-PRI,TON
+37099,3.521224,Acetaldehyde,LB
+37099,0.002421105,Methane,TON
+37099,0.01772843,PM25-Primary from certain diesel engines,TON
+37099,0.007800096,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.003239,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,0.04744294,Volatile Organic Compounds,TON
+37099,0.2677946,Ethyl Benzene,LB
+37097,1061.2224,Benzene,LB
+37093,50.512,"1,3-Butadiene",LB
+37093,273.202,Hexane,LB
+37093,0.0019980138,Mercury,LB
+37083,0.1486211,Formaldehyde,LB
+37083,0.0003843248,Anthracene,LB
+37083,0.0002377532,Chrysene,LB
+37083,0.0005147198,PM2.5 Primary (Filt + Cond),TON
+37083,1.578153e-05,Sulfate Portion of PM2.5-PRI,TON
+37081,48.5803,"1,3-Butadiene",LB
+37081,149.57718,Benzene,LB
+37081,0.0005275274,Mercury,LB
+37081,0.1103027,Arsenic,LB
+37081,0.4920966,Ammonia,TON
+37081,37.36998,Nitrogen Oxides,TON
+37081,0.1268187,Sulfur Dioxide,TON
+37077,4.080997e-05,Methane,TON
+37077,4.681292e-05,PM2.5 Primary (Filt + Cond),TON
+37077,7.576798e-08,Mercury,LB
+37075,0.8291002,Styrene,LB
+37075,0.5267702,Pyrene,LB
+37075,0.002591736,"Indeno[1,2,3-c,d]Pyrene",LB
+37075,0.0014062134,"Dibenzo[a,h]Anthracene",LB
+37075,0.02089028,Manganese,LB
+37075,2.70286e-05,Mercury,LB
+37075,0.708481,Phenanthrene,LB
+37075,2.246618,Carbon Monoxide,TON
+37075,0.0304954,Ammonia,TON
+37075,0.3442145,PM10 Primary (Filt + Cond),TON
+37075,0.01711172,Sulfur Dioxide,TON
+37075,0.357312,Volatile Organic Compounds,TON
+37075,308.7876,Hexane,LB
+37075,6.088083,Volatile Organic Compounds,TON
+37065,0.0013849898,Pyrene,LB
+37065,0.0003608928,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,0.001214239,Fluoranthene,LB
+37065,8.281156e-06,"Dibenzo[a,h]Anthracene",LB
+37065,0.0005714441,PM2.5 Primary (Filt + Cond),TON
+37065,1.774939e-05,Sulfate Portion of PM2.5-PRI,TON
+37065,0.01186615,Volatile Organic Compounds,TON
+37057,2.70762e-06,Mercury,LB
+37057,0.001028292,Sulfate Portion of PM2.5-PRI,TON
+37057,0.08838614,Volatile Organic Compounds,TON
+37055,13.961682,Ethyl Benzene,LB
+37055,42.94464,Xylenes (Mixed Isomers),LB
+37055,1.7579932,Acenaphthylene,LB
+37055,0.7899188,Benz[a]Anthracene,LB
+37055,36.6868,Benzene,LB
+37055,0.0510158,Arsenic,LB
+37055,12.3929,Carbon Monoxide,TON
+37055,1.894606,PM10-Primary from certain diesel engines,TON
+37055,0.4016454,Organic Carbon portion of PM2.5-PRI,TON
+37041,0.002379444,Chrysene,LB
+37041,0.18250098,Benzene,LB
+37041,0.15310798,Acrolein,LB
+37041,0.10333624,Propionaldehyde,LB
+37041,0.018055444,Pyrene,LB
+37041,0.005468465,PM10 Primary (Filt + Cond),TON
+37029,66.8344,Styrene,LB
+37029,0.7050078,Benzo[b]Fluoranthene,LB
+37029,12.833452,Acenaphthylene,LB
+37029,0.2445684,Nickel,LB
+37029,2.819632,Acenaphthene,LB
+37029,2.658926,Ammonia,TON
+37107,2.56187,Ethyl Benzene,LB
+37107,20.4402,Toluene,LB
+37107,2.13488,Benzene,LB
+37101,1.4416452e-05,Chromium (VI),LB
+37101,2.11247,Formaldehyde,LB
+37101,7.53736e-05,"Dibenzo[a,h]Anthracene",LB
+37101,0.0018021154,Nickel,LB
+37101,0.0011532294,Acenaphthene,LB
+37101,0.0008258038,Elemental Carbon portion of PM2.5-PRI,TON
+37101,0.01611523,PM10 Primary (Filt + Cond),TON
+37093,0.2316186,Propionaldehyde,LB
+37093,0.00410292,"Benzo[g,h,i,]Perylene",LB
+37093,0.0008352298,Benzo[k]Fluoranthene,LB
+37093,1.469935,Formaldehyde,LB
+37093,1.2324736,"2,2,4-Trimethylpentane",LB
+37093,0.001645072,Arsenic,LB
+37093,0.002313489,Nitrous Oxide,TON
+37093,0.007073268,Ammonia,TON
+37093,0.001055145,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.0003828098,Acenaphthylene,LB
+37177,0.04432164,"2,2,4-Trimethylpentane",LB
+37177,4.303124e-06,Nickel,LB
+37177,0.02731808,Acetaldehyde,LB
+37177,1.847625,Carbon Dioxide,TON
+37177,1.314377e-07,Nitrate portion of PM2.5-PRI,TON
+37175,3.59826,Toluene,LB
+37175,1.42483,"2,2,4-Trimethylpentane",LB
+37175,5.831172,Benzene,LB
+37175,0.4105876,Fluorene,LB
+37175,6.755704,Naphthalene,LB
+37175,0.1903418,PM10 Primary (Filt + Cond),TON
+37175,0.002528891,Sulfate Portion of PM2.5-PRI,TON
+37167,14.681378,Ethyl Benzene,LB
+37167,1.3742638,Anthracene,LB
+37167,3.898612,Pyrene,LB
+37167,2.958106,Fluoranthene,LB
+37167,0.005078089,Nitrate portion of PM2.5-PRI,TON
+37167,0.1900119,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,2.367521,Volatile Organic Compounds,TON
+37165,172.26014,Naphthalene,LB
+37165,0.06756501,Sulfate Portion of PM2.5-PRI,TON
+37165,3506.514,Hexane,LB
+37165,0.04171788,"Dibenzo[a,h]Anthracene",LB
+37163,67902.96,Toluene,LB
+37163,30.31584,Fluoranthene,LB
+37163,5.301802,Chrysene,LB
+37163,0.11357134,Mercury,LB
+37163,218363,Carbon Dioxide,TON
+37163,15.74887,PM10 Primary (Filt + Cond),TON
+37145,0.19780436,Anthracene,LB
+37145,0.3918122,Fluoranthene,LB
+37145,9.678384e-06,Mercury,LB
+37145,0.3968676,Fluorene,LB
+37145,4.549505,Nitrogen Oxides,TON
+37145,0.2353922,PM10 Primary (Filt + Cond),TON
+37145,0.003099849,Sulfate Portion of PM2.5-PRI,TON
+37139,12.582424,"2,2,4-Trimethylpentane",LB
+37139,0.00017123132,Mercury,LB
+37139,0.03580192,Arsenic,LB
+37139,161.79908,Acetaldehyde,LB
+37139,1.15846,PM25-Primary from certain diesel engines,TON
+37139,0.2493059,Organic Carbon portion of PM2.5-PRI,TON
+37139,16.514724,Acrolein,LB
+37139,0.00526571,Benzo[k]Fluoranthene,LB
+37139,0.4235104,Benz[a]Anthracene,LB
+37139,0.10890604,Manganese,LB
+37139,0.02095026,Arsenic,LB
+37139,93.48908,Acetaldehyde,LB
+37139,0.1683297,Methane,TON
+37139,0.009311683,Nitrous Oxide,TON
+37139,0.002242642,Nitrate portion of PM2.5-PRI,TON
+37139,0.9234356,PM2.5 Primary (Filt + Cond),TON
+37131,18.283692,Hexane,LB
+37131,0.01188245,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,1.454508,PM25-Primary from certain diesel engines,TON
+37131,2.867533,Volatile Organic Compounds,TON
+37127,28.80454,Acrolein,LB
+37127,4841.326,Toluene,LB
+37127,1.4738116,Acenaphthene,LB
+37127,1.019797,Methane,TON
+37127,384.2121,Carbon Monoxide,TON
+37127,0.4037473,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.5931866,Sulfur Dioxide,TON
+37127,25.00178,Volatile Organic Compounds,TON
+37123,0.0662746,Nickel,LB
+37123,277.8276,Acetaldehyde,LB
+37123,1.629824,PM10-Primary from certain diesel engines,TON
+37123,0.290721,Ammonia,TON
+37123,23.06036,Ethyl Benzene,LB
+37123,18.603488,Hexane,LB
+37123,1.1736718,Anthracene,LB
+37123,24.17878,Propionaldehyde,LB
+37123,0.012010468,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.006796302,Benzo[k]Fluoranthene,LB
+37123,22.92418,"2,2,4-Trimethylpentane",LB
+37123,56.3437,Benzene,LB
+37111,0.2711898,Toluene,LB
+37111,0.0005938722,Acenaphthylene,LB
+37111,0.0019466624,Manganese,LB
+37111,0.4892888,Nitrogen Oxides,TON
+37111,0.002604664,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.00419136,Remaining PMFINE portion of PM2.5-PRI,TON
+37007,7.846262,"1,3-Butadiene",LB
+37007,0.3648084,Chrysene,LB
+37007,6.699718,"2,2,4-Trimethylpentane",LB
+37007,0.2383883,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.0673056,Manganese,LB
+37015,0.0343156,Nickel,LB
+37015,0.340792,Acenaphthene,LB
+37015,83.12674,Carbon Monoxide,TON
+37015,0.02872616,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.1649486,Nitrous Oxide,TON
+37015,0.1018573,Sulfur Dioxide,TON
+37015,125.59782,Naphthalene,LB
+37015,361.5864,"1,3-Butadiene",LB
+37015,10205.144,Toluene,LB
+37015,0.8568174,Benzo[k]Fluoranthene,LB
+37015,0.7915614,Chrysene,LB
+37015,0.0294094,"Dibenzo[a,h]Anthracene",LB
+37015,2227.796,"2,2,4-Trimethylpentane",LB
+37015,0.8304872,Benz[a]Anthracene,LB
+37015,0.442478,Nickel,LB
+37077,2.583404e-06,Chromium (VI),LB
+37077,0.0008832743,PM2.5 Primary (Filt + Cond),TON
+37025,0.6168006,Propionaldehyde,LB
+37025,0.002505766,Chrysene,LB
+37025,8.450692,Benzene,LB
+37025,0.006959566,Arsenic,LB
+37025,0.05583782,PM10 Primary (Filt + Cond),TON
+37133,0.005379718,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.00212333,Chrysene,LB
+37133,0.00241424,Benz[a]Anthracene,LB
+37133,0.11654078,Naphthalene,LB
+37133,0.00691233,Nitrous Oxide,TON
+37133,0.01451403,Sulfur Dioxide,TON
+37111,0.4565318,Toluene,LB
+37111,0.000525616,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,2.118538e-05,Mercury,LB
+37111,0.0002641544,Nickel,LB
+37111,0.00241999,PM10 Primary (Filt + Cond),TON
+37021,464.77,Acrolein,LB
+37021,2.400596,Chrysene,LB
+37021,0.228846,Arsenic,LB
+37021,34.14892,Fluorene,LB
+37021,116.9766,Nitrogen Oxides,TON
+37013,22.25068,Acrolein,LB
+37013,6.26383e-05,Chromium (VI),LB
+37013,26.54656,Benzene,LB
+37013,2.499018,Phenanthrene,LB
+37013,4953.802,Hexane,LB
+37013,3.913394,Anthracene,LB
+37013,88.3306,Propionaldehyde,LB
+37013,0.04264808,"Dibenzo[a,h]Anthracene",LB
+37013,4814.5,Benzene,LB
+37013,0.005992299,Nitrate portion of PM2.5-PRI,TON
+37011,0.002268654,Arsenic,LB
+37011,0.124091,Fluorene,LB
+37011,168.7885,Carbon Dioxide,TON
+37011,0.003836009,PM10-Primary from certain diesel engines,TON
+37011,1.939118,Acrolein,LB
+37011,0.1095272,Pyrene,LB
+37005,0.00013247604,"Dibenzo[a,h]Anthracene",LB
+37005,20.0804,Benzene,LB
+37005,6.896324,Acetaldehyde,LB
+37005,0.0202074,Methane,TON
+37005,0.00632126,PM2.5 Primary (Filt + Cond),TON
+37021,2.73673,Hexane,LB
+37021,0.00013940406,"Dibenzo[a,h]Anthracene",LB
+37021,0.002691778,Benz[a]Anthracene,LB
+37021,0.02645105,Ammonia,TON
+37021,0.01170463,PM2.5 Primary (Filt + Cond),TON
+37021,0.01401742,Sulfur Dioxide,TON
+37013,1.5906872,"1,3-Butadiene",LB
+37013,0.018906562,Pyrene,LB
+37013,0.002829444,Benzo[k]Fluoranthene,LB
+37013,0.02315034,Fluorene,LB
+37013,0.009898317,Methane,TON
+37013,4.562546,Carbon Monoxide,TON
+37013,0.3244449,Nitrogen Oxides,TON
+37009,11.614072,Xylenes (Mixed Isomers),LB
+37009,0.001969238,"Benzo[g,h,i,]Perylene",LB
+37009,0.003435744,Benzo[b]Fluoranthene,LB
+37009,0.01832628,Nickel,LB
+37009,0.0295174,Ammonia,TON
+37009,2.754351,Nitrogen Oxides,TON
+37005,0.003042825,Nitrate portion of PM2.5-PRI,TON
+37005,0.9307572,Chrysene,LB
+37005,3692.272,Benzene,LB
+37005,0.2530022,Arsenic,LB
+37001,0.0246747,"1,3-Butadiene",LB
+37001,2.14446e-05,"Benzo[g,h,i,]Perylene",LB
+37001,2.607608e-05,Mercury,LB
+37001,0.00224683,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.3852411,PM25-Primary from certain diesel engines,TON
+37015,0.01213293,Sulfate Portion of PM2.5-PRI,TON
+37015,25.42464,Xylenes (Mixed Isomers),LB
+37015,1.894694,Fluoranthene,LB
+37015,0.0013424886,Benzo[k]Fluoranthene,LB
+37015,2.439,Acenaphthylene,LB
+37015,0.0013341416,"Dibenzo[a,h]Anthracene",LB
+37015,0.2967076,Benz[a]Anthracene,LB
+37199,0.00816631,Acrolein,LB
+37199,0.16928716,Toluene,LB
+37199,7.393066e-05,Benzo[b]Fluoranthene,LB
+37199,5.746148e-05,Chrysene,LB
+37199,3.1748e-06,"Dibenzo[a,h]Anthracene",LB
+37199,0.000431677,Phenanthrene,LB
+37199,8.27799e-05,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.004892335,Volatile Organic Compounds,TON
+37199,0.004412356,PM2.5 Primary (Filt + Cond),TON
+37199,0.7692944,"1,3-Butadiene",LB
+37199,0.0002625148,"Benzo[g,h,i,]Perylene",LB
+37197,0.7105636,Pyrene,LB
+37197,0.5636888,Acenaphthylene,LB
+37197,3.931385,Carbon Monoxide,TON
+37197,8.683939,Nitrogen Oxides,TON
+37197,0.04452033,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.04596499,Sulfate Portion of PM2.5-PRI,TON
+37193,67.50642,Hexane,LB
+37193,7.886396,Anthracene,LB
+37193,15.497312,Pyrene,LB
+37193,0.017836516,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,261.76,Benzene,LB
+37193,24.6908,Phenanthrene,LB
+37193,16.269296,Fluorene,LB
+37193,1.980163,PM25-Primary from certain diesel engines,TON
+37193,0.3673268,Pyrene,LB
+37193,0.017711632,Chrysene,LB
+37193,0.0214073,Manganese,LB
+37193,0.01013511,PM10-Primary from certain diesel engines,TON
+37193,0.05043698,PM10 Primary (Filt + Cond),TON
+37193,0.005377316,Sulfur Dioxide,TON
+37193,0.002102048,Sulfate Portion of PM2.5-PRI,TON
+37195,2.91337,Hexane,LB
+37195,0.005190226,Arsenic,LB
+37195,0.2405277,PM25-Primary from certain diesel engines,TON
+37195,0.1565087,Elemental Carbon portion of PM2.5-PRI,TON
+37195,9.522186,Nitrogen Oxides,TON
+37195,0.2493972,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,25.10859,Volatile Organic Compounds,TON
+37195,1160.9836,Hexane,LB
+37195,0.6591702,Benzo[a]Pyrene,LB
+37195,0.4390906,Manganese,LB
+37195,0.2896088,Arsenic,LB
+37195,8.057344,Phenanthrene,LB
+37195,1.068717,Methane,TON
+37191,0.03658268,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,14.194006,"2,2,4-Trimethylpentane",LB
+37191,7.379128,Phenanthrene,LB
+37191,0.1983913,Methane,TON
+37191,1.550187,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.01465259,Nitrous Oxide,TON
+37191,52.89505,Nitrogen Oxides,TON
+37191,0.686077,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.08658793,Sulfur Dioxide,TON
+37191,3.341509,Volatile Organic Compounds,TON
+37191,0.005843887,Sulfate Portion of PM2.5-PRI,TON
+37191,0.4070008,Anthracene,LB
+37191,0.18884618,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,0.6955892,Fluoranthene,LB
+37191,0.13825762,Benzo[k]Fluoranthene,LB
+37191,888.5652,"2,2,4-Trimethylpentane",LB
+37185,2540.366,Hexane,LB
+37185,2.55229,Acenaphthene,LB
+37185,657.8407,Carbon Monoxide,TON
+37185,73.51504,Nitrogen Oxides,TON
+37185,0.9235367,Sulfur Dioxide,TON
+37181,1.5148426,Naphthalene,LB
+37181,0.06593861,PM25-Primary from certain diesel engines,TON
+37181,0.04443398,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.0004419438,Nitrous Oxide,TON
+37181,0.7183138,Propionaldehyde,LB
+37181,0.13554444,Pyrene,LB
+37179,1.3490862,Hexane,LB
+37179,0.07590306,Chrysene,LB
+37179,1.4452788,"2,2,4-Trimethylpentane",LB
+37179,0.04857368,Manganese,LB
+37179,0.14831348,Acenaphthene,LB
+37179,0.03985641,Methane,TON
+37179,1.758605,Carbon Monoxide,TON
+37191,7.003068,Styrene,LB
+37191,44.78,Acrolein,LB
+37191,51.41158,Toluene,LB
+37191,15.609438,Hexane,LB
+37191,4.769566,Pyrene,LB
+37191,0.09832784,Benzo[b]Fluoranthene,LB
+37191,17.00835,"2,2,4-Trimethylpentane",LB
+37191,0.1766531,Sulfate Portion of PM2.5-PRI,TON
+37183,3489.84,Naphthalene,LB
+37031,13.368242,Ethyl Benzene,LB
+37031,10.097414,Hexane,LB
+37031,0.02168302,"Benzo[g,h,i,]Perylene",LB
+37031,0.015009102,"Dibenzo[a,h]Anthracene",LB
+37031,5.341038,Phenanthrene,LB
+37031,44.29024,Naphthalene,LB
+37031,0.2456474,Benz[a]Anthracene,LB
+37031,0.8944602,Acenaphthene,LB
+37031,2.556444,Phenanthrene,LB
+37031,1.587053,Fluorene,LB
+37031,0.1904685,Elemental Carbon portion of PM2.5-PRI,TON
+37031,6.065201,Nitrogen Oxides,TON
+37031,0.3080886,PM2.5 Primary (Filt + Cond),TON
+37031,3.880928,Styrene,LB
+37031,0.04396088,Benzo[a]Pyrene,LB
+37031,116.67556,Xylenes (Mixed Isomers),LB
+37031,0.02886332,"Benzo[g,h,i,]Perylene",LB
+37031,0.017990726,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,0.0003504196,Mercury,LB
+37031,6.197614,Acenaphthene,LB
+37031,10.753468,Fluorene,LB
+37031,96.51069,Carbon Monoxide,TON
+37031,11449.68,Carbon Dioxide,TON
+37031,0.3444868,Ammonia,TON
+37031,0.004534325,Nitrate portion of PM2.5-PRI,TON
+37029,4.506222e-05,Mercury,LB
+37029,2.808042,Carbon Monoxide,TON
+37029,0.2346445,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.05085973,Ammonia,TON
+37029,9.903724,Nitrogen Oxides,TON
+37029,0.7279994,Pyrene,LB
+37029,7.861924,Xylenes (Mixed Isomers),LB
+37029,0.002041044,Benzo[k]Fluoranthene,LB
+37029,0.3794216,Styrene,LB
+37029,0.09353444,Anthracene,LB
+37029,1.422416,Propionaldehyde,LB
+37029,27.45246,Formaldehyde,LB
+37029,0.06328822,PM25-Primary from certain diesel engines,TON
+37029,0.02609821,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.01101555,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,4.478464e-06,Mercury,LB
+37029,0.003294666,Nickel,LB
+37029,11.824058,Acetaldehyde,LB
+37119,31.89952,Acenaphthylene,LB
+37119,6024.95,Formaldehyde,LB
+37119,2587.798,Acetaldehyde,LB
+37119,323.6579,Carbon Monoxide,TON
+37119,0.7281419,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,23.2392,"2,2,4-Trimethylpentane",LB
+37101,6.837026,Fluorene,LB
+37101,0.4789027,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,1.4035868,Chrysene,LB
+37091,0.0003860606,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.18580726,"2,2,4-Trimethylpentane",LB
+37091,0.6669038,Benzene,LB
+37091,0.003322346,Manganese,LB
+37091,175.3676,Carbon Dioxide,TON
+37091,0.02051648,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.0016340606,Mercury,LB
+37103,58.5679,Acetaldehyde,LB
+37103,0.01503001,Elemental Carbon portion of PM2.5-PRI,TON
+37103,0.002110451,Sulfate Portion of PM2.5-PRI,TON
+37103,102.53282,Ethyl Benzene,LB
+37103,23.81728,"1,3-Butadiene",LB
+37103,0.00016298006,Chromium (VI),LB
+37103,0.06621542,Benzo[a]Pyrene,LB
+37099,0.5414942,Ethyl Benzene,LB
+37099,0.05426406,Anthracene,LB
+37099,0.08238282,Acenaphthylene,LB
+37099,0.02236512,Chrysene,LB
+37099,0.506089,Carbon Monoxide,TON
+37099,0.04441283,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.0005867653,Nitrous Oxide,TON
+37099,49.02014,Toluene,LB
+37093,7.75208,"2,2,4-Trimethylpentane",LB
+37093,0.4984042,Benz[a]Anthracene,LB
+37093,23.01736,Benzene,LB
+37093,28.02609,Nitrogen Oxides,TON
+37091,2.46569e-05,"Dibenzo[a,h]Anthracene",LB
+37091,0.0002111592,Arsenic,LB
+37091,0.0006841807,Organic Carbon portion of PM2.5-PRI,TON
+37091,0.001213604,Sulfur Dioxide,TON
+37091,0.00413169,Fluoranthene,LB
+37091,1.4537888,Ethyl Benzene,LB
+37071,0.09797496,Styrene,LB
+37071,0.06374114,Propionaldehyde,LB
+37071,0.0302186,"Benzo[g,h,i,]Perylene",LB
+37071,0.005094914,Benz[a]Anthracene,LB
+37071,0.00016509192,Mercury,LB
+37071,0.0025,Nitrous Oxide,TON
+37071,0.06755273,Volatile Organic Compounds,TON
+37069,0.002784208,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.00225722,Benzo[k]Fluoranthene,LB
+37069,2.91666,Formaldehyde,LB
+37067,1.3451042,Benz[a]Anthracene,LB
+37061,0.09947314,Benzo[k]Fluoranthene,LB
+37061,0.003254556,"Dibenzo[a,h]Anthracene",LB
+37061,421.0386,"2,2,4-Trimethylpentane",LB
+37061,0.09816226,Benz[a]Anthracene,LB
+37061,0.3135722,Acenaphthene,LB
+37061,0.1434355,Methane,TON
+37061,0.0004047028,Nitrate portion of PM2.5-PRI,TON
+37061,0.04597093,Sulfur Dioxide,TON
+37057,103.62118,"2,2,4-Trimethylpentane",LB
+37039,0.1579367,Carbon Dioxide,TON
+37039,1.791236e-05,PM10 Primary (Filt + Cond),TON
+37039,1.080474e-05,PM2.5 Primary (Filt + Cond),TON
+37039,3.31323e-06,Sulfur Dioxide,TON
+37039,2.990414e-05,Pyrene,LB
+37039,6.852434e-06,Benzo[b]Fluoranthene,LB
+37039,2.624124e-05,Fluoranthene,LB
+37039,6.852434e-06,Benzo[k]Fluoranthene,LB
+37039,1.0574364e-05,Benzo[a]Pyrene,LB
+37039,0.017539044,Benzene,LB
+37039,1.4664968e-06,Manganese,LB
+37039,1.756124e-05,Acenaphthene,LB
+37039,0.0595747,Toluene,LB
+37043,0.0018037712,Acrolein,LB
+37043,0.00013295286,"Benzo[g,h,i,]Perylene",LB
+37043,3.089774e-05,Chrysene,LB
+37043,1.1466122e-06,"Dibenzo[a,h]Anthracene",LB
+37043,9.450672e-05,Acenaphthene,LB
+37043,5.109513e-05,Nitrous Oxide,TON
+37041,0.17501746,Fluoranthene,LB
+37041,0.927874,Ethyl Benzene,LB
+37041,1.37774,Propionaldehyde,LB
+37041,2.257398,Xylenes (Mixed Isomers),LB
+37041,0.744966,"2,2,4-Trimethylpentane",LB
+37041,0.004656974,Manganese,LB
+37041,175.2484,Carbon Dioxide,TON
+37041,0.02347349,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.003373053,Ammonia,TON
+37027,445.3424,Ethyl Benzene,LB
+37027,582.409,Hexane,LB
+37027,539.5536,"2,2,4-Trimethylpentane",LB
+37027,1.5173186,Fluorene,LB
+37027,0.8979909,PM10 Primary (Filt + Cond),TON
+37023,0.6873968,"2,2,4-Trimethylpentane",LB
+37023,0.004387768,Nickel,LB
+37023,2.803666,Naphthalene,LB
+37023,0.1286198,PM10-Primary from certain diesel engines,TON
+37023,0.000325896,Nitrate portion of PM2.5-PRI,TON
+37023,0.7792348,"1,3-Butadiene",LB
+37197,1743.7026,Toluene,LB
+37197,0.18969032,Anthracene,LB
+37197,0.3252902,Fluoranthene,LB
+37197,1.2025852,Phenanthrene,LB
+37197,11.473272,Naphthalene,LB
+37197,0.003015975,Sulfate Portion of PM2.5-PRI,TON
+37195,0.0218358,Acetaldehyde,LB
+37195,0.00013123734,Fluorene,LB
+37195,0.460302,Carbon Dioxide,TON
+37195,4.113114e-05,PM2.5 Primary (Filt + Cond),TON
+37195,2.629542e-05,Benzo[k]Fluoranthene,LB
+37195,4538.47,Ethyl Benzene,LB
+37195,149.065,Styrene,LB
+37195,16835.908,Xylenes (Mixed Isomers),LB
+37195,35.28478,Phenanthrene,LB
+37195,0.01395888,Nitrate portion of PM2.5-PRI,TON
+37191,0.13978668,Propionaldehyde,LB
+37191,17.587874,Xylenes (Mixed Isomers),LB
+37191,0.003019954,Benzo[k]Fluoranthene,LB
+37191,5.477348e-05,Mercury,LB
+37191,0.007478324,Acenaphthene,LB
+37191,0.005481436,Methane,TON
+37191,0.002783079,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.14877024,Ethyl Benzene,LB
+37187,0.2308556,Propionaldehyde,LB
+37187,4.508248,Formaldehyde,LB
+37187,0.00012020372,"Dibenzo[a,h]Anthracene",LB
+37187,0.0018616948,Manganese,LB
+37187,0.0003382572,Arsenic,LB
+37187,0.5080606,Nitrogen Oxides,TON
+37183,205.706,Benzene,LB
+37183,0.00613311,Mercury,LB
+37183,60.57372,PM2.5 Primary (Filt + Cond),TON
+37183,15174.62,"1,3-Butadiene",LB
+37183,87.60752,Anthracene,LB
+37183,149.91746,Fluoranthene,LB
+37183,107633.64,Benzene,LB
+37183,1.0630554,Mercury,LB
+37183,13.255232,Nickel,LB
+37179,40.22668,Ethyl Benzene,LB
+37179,7.37576,Fluoranthene,LB
+37179,5.288758,Acenaphthylene,LB
+37179,106.85066,Benzene,LB
+37179,0.11934866,Arsenic,LB
+37179,109.0569,Nitrogen Oxides,TON
+37179,1.115549,Organic Carbon portion of PM2.5-PRI,TON
+37179,0.6660541,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,5.327166,"1,3-Butadiene",LB
+37167,0.007590236,"Benzo[g,h,i,]Perylene",LB
+37167,0.9072462,Acenaphthylene,LB
+37167,2.36189e-05,Mercury,LB
+37167,1.1813286,Fluorene,LB
+37167,0.391069,PM25-Primary from certain diesel engines,TON
+37165,0.15816024,Acetaldehyde,LB
+37165,0.2575797,Carbon Monoxide,TON
+37165,0.0001149471,Ammonia,TON
+37165,0.0007913027,PM10 Primary (Filt + Cond),TON
+37165,0.0002733548,Chrysene,LB
+37165,0.3515008,"2,2,4-Trimethylpentane",LB
+37165,0.4637478,Benzene,LB
+37163,0.02806378,Arsenic,LB
+37163,18.246208,Naphthalene,LB
+37163,4.773346,Nitrogen Oxides,TON
+37163,0.1464579,PM2.5 Primary (Filt + Cond),TON
+37163,0.04935668,Sulfur Dioxide,TON
+37163,0.004505574,Sulfate Portion of PM2.5-PRI,TON
+37163,331.7436,Ethyl Benzene,LB
+37163,5.830754,Propionaldehyde,LB
+37161,7.057556,Styrene,LB
+37161,0.0261398,Manganese,LB
+37161,0.015230198,Nickel,LB
+37161,0.003817038,Sulfate Portion of PM2.5-PRI,TON
+37153,10.16882,Acrolein,LB
+37153,0.0011684786,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.000632174,"Dibenzo[a,h]Anthracene",LB
+37153,0.10208222,Benz[a]Anthracene,LB
+37153,3.009622e-05,Mercury,LB
+37153,0.7458348,Volatile Organic Compounds,TON
+37139,0.5761247,Volatile Organic Compounds,TON
+37139,3.324482,Ethyl Benzene,LB
+37139,3.207626,"1,3-Butadiene",LB
+37139,5.277548,Propionaldehyde,LB
+37139,0.0009416278,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.003697436,Benzo[b]Fluoranthene,LB
+37129,36.41142,Ethyl Benzene,LB
+37129,48.04006,Propionaldehyde,LB
+37129,7.162004,Fluoranthene,LB
+37129,31.87608,"2,2,4-Trimethylpentane",LB
+37129,113.70654,Naphthalene,LB
+37129,3.898124,PM25-Primary from certain diesel engines,TON
+37129,0.3023055,Sulfur Dioxide,TON
+37131,1.468826,Volatile Organic Compounds,TON
+37131,6.651144,Hexane,LB
+37131,6.820298,"2,2,4-Trimethylpentane",LB
+37127,6.364064,Toluene,LB
+37127,2.072448,Hexane,LB
+37127,0.2721692,Anthracene,LB
+37127,0.019110564,Benzo[b]Fluoranthene,LB
+37127,0.12089236,Chrysene,LB
+37127,0.237115,Acenaphthene,LB
+37127,1173.73,Carbon Dioxide,TON
+37127,0.2279778,PM10-Primary from certain diesel engines,TON
+37127,0.002742,Nitrous Oxide,TON
+37123,0.5840586,Acenaphthylene,LB
+37123,0.259604,Fluorene,LB
+37123,0.00820367,Elemental Carbon portion of PM2.5-PRI,TON
+37123,0.01374269,Remaining PMFINE portion of PM2.5-PRI,TON
+37093,9.65402e-06,Mercury,LB
+37093,0.01036962,Fluorene,LB
+37093,0.265727,Naphthalene,LB
+37093,0.0007515383,Organic Carbon portion of PM2.5-PRI,TON
+37093,0.6655758,"1,3-Butadiene",LB
+37093,9.630104e-07,Chromium (VI),LB
+37093,0.007380352,Fluoranthene,LB
+37093,5.625112,Benzene,LB
+37085,0.04382856,Benzo[a]Pyrene,LB
+37085,24.83086,Acetaldehyde,LB
+37085,0.03980191,Methane,TON
+37085,0.2376885,PM10 Primary (Filt + Cond),TON
+37085,0.007922708,Sulfate Portion of PM2.5-PRI,TON
+37073,0.2301646,Benzene,LB
+37073,7.094656e-07,Mercury,LB
+37073,0.00019928634,Acenaphthene,LB
+37073,1.589105e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.3787998,Xylenes (Mixed Isomers),LB
+37073,7.077038e-08,Chromium (VI),LB
+37073,7.08102e-05,Benzo[a]Pyrene,LB
+37085,1.3853118e-05,Manganese,LB
+37085,0.0002895882,Methane,TON
+37085,2.343508e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.0002280943,Nitrate portion of PM2.5-PRI,TON
+37199,0.001885169,Sulfate Portion of PM2.5-PRI,TON
+37199,0.3470654,Fluoranthene,LB
+37199,0.0017833202,"Dibenzo[a,h]Anthracene",LB
+37199,156.83076,"2,2,4-Trimethylpentane",LB
+37199,0.02959062,Manganese,LB
+37199,1.296415,Phenanthrene,LB
+37195,0.19109138,Styrene,LB
+37195,0.8629816,"1,3-Butadiene",LB
+37195,0.15355298,Propionaldehyde,LB
+37195,0.005608072,Benzo[b]Fluoranthene,LB
+37195,0.00456575,Chrysene,LB
+37195,0.0002284966,"Dibenzo[a,h]Anthracene",LB
+37195,0.433202,Naphthalene,LB
+37195,0.004925802,Nitrous Oxide,TON
+37195,0.01204629,Ammonia,TON
+37195,2.434362,"1,3-Butadiene",LB
+37195,0.03829832,Pyrene,LB
+37195,0.0312483,"Benzo[g,h,i,]Perylene",LB
+37195,0.03359176,Fluoranthene,LB
+37195,0.010200146,Manganese,LB
+37195,1.1780696,Naphthalene,LB
+37195,4.116358e-05,Nitrate portion of PM2.5-PRI,TON
+37195,0.9778661,Nitrogen Oxides,TON
+37191,53.74694,Ethyl Benzene,LB
+37191,53.25752,"1,3-Butadiene",LB
+37191,0.006729226,Benzo[k]Fluoranthene,LB
+37191,1.283709,PM25-Primary from certain diesel engines,TON
+37191,31.97097,Nitrogen Oxides,TON
+37181,1.0958958,Anthracene,LB
+37181,2.993772,Pyrene,LB
+37181,0.06044142,Benzo[b]Fluoranthene,LB
+37181,0.00842236,Benzo[k]Fluoranthene,LB
+37181,12288.48,Carbon Dioxide,TON
+37181,1.526441,PM25-Primary from certain diesel engines,TON
+37181,2.192578,PM10 Primary (Filt + Cond),TON
+37181,0.1049213,Sulfur Dioxide,TON
+37173,15.295898,Ethyl Benzene,LB
+37173,0.00854243,Chrysene,LB
+37173,19.495964,"2,2,4-Trimethylpentane",LB
+37173,0.002199194,Arsenic,LB
+37173,0.02372626,Acenaphthene,LB
+37173,420.2058,Carbon Dioxide,TON
+37173,0.003264541,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.01745869,Ammonia,TON
+37173,1.135464,Nitrogen Oxides,TON
+37173,0.4451546,Volatile Organic Compounds,TON
+37113,235.4142,Acrolein,LB
+37113,10.026784,"Benzo[g,h,i,]Perylene",LB
+37113,3.76716,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.05593944,Mercury,LB
+37101,18.326864,Styrene,LB
+37105,0.08682036,"Benzo[g,h,i,]Perylene",LB
+37105,0.018499226,Chrysene,LB
+37105,0.0007486256,"Dibenzo[a,h]Anthracene",LB
+37105,2.63163,Naphthalene,LB
+37105,0.01881191,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.112332,PM10 Primary (Filt + Cond),TON
+37103,2.695187e-07,Nitrate portion of PM2.5-PRI,TON
+37103,0.09170084,Hexane,LB
+37103,9.14665e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,5.580446e-05,Benzo[k]Fluoranthene,LB
+37103,0.0005448522,Acenaphthylene,LB
+37103,2.098778e-06,"Dibenzo[a,h]Anthracene",LB
+37097,1281.3172,Ethyl Benzene,LB
+37097,1.8787222,Anthracene,LB
+37097,4719.366,Xylenes (Mixed Isomers),LB
+37097,2.672318,"Benzo[g,h,i,]Perylene",LB
+37097,0.6647688,Chrysene,LB
+37097,113.63588,Naphthalene,LB
+37097,0.03731501,Sulfate Portion of PM2.5-PRI,TON
+37097,37.03082,Volatile Organic Compounds,TON
+37093,7.137812,"1,3-Butadiene",LB
+37093,12.935532,Xylenes (Mixed Isomers),LB
+37093,0.6178984,Benz[a]Anthracene,LB
+37093,23.50544,Naphthalene,LB
+37093,500.9456,Hexane,LB
+37093,1000.1704,Xylenes (Mixed Isomers),LB
+37093,0.04424776,Benzo[b]Fluoranthene,LB
+37093,0.0013461142,"Dibenzo[a,h]Anthracene",LB
+37093,0.1228484,Ammonia,TON
+37093,0.05866224,PM2.5 Primary (Filt + Cond),TON
+37087,0.002099944,Benzo[b]Fluoranthene,LB
+37087,0.0002874632,Benzo[k]Fluoranthene,LB
+37087,0.01384488,Chrysene,LB
+37087,0.0002871028,"Dibenzo[a,h]Anthracene",LB
+37087,0.2627738,"2,2,4-Trimethylpentane",LB
+37087,0.0014758232,Nickel,LB
+37087,0.0004485676,Arsenic,LB
+37087,0.0355887,Acenaphthene,LB
+37087,0.03440742,PM10 Primary (Filt + Cond),TON
+37085,0.1912818,Methane,TON
+37085,1.535706,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.01392434,Nitrous Oxide,TON
+37085,0.3115326,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,2.067818,Anthracene,LB
+37085,6.019706,Pyrene,LB
+37085,555.5224,Formaldehyde,LB
+37085,0.4542604,Benzo[a]Pyrene,LB
+37085,52.63044,Benzene,LB
+37081,29.00998,"1,3-Butadiene",LB
+37081,71.15798,Acrolein,LB
+37081,61.7878,Toluene,LB
+37081,0.10896276,Nickel,LB
+37081,31.68145,Carbon Monoxide,TON
+37077,4.646448,Acetaldehyde,LB
+37077,0.014749504,Acenaphthene,LB
+37077,0.7240435,Nitrogen Oxides,TON
+37077,0.00897529,Organic Carbon portion of PM2.5-PRI,TON
+37077,0.04348792,"Benzo[g,h,i,]Perylene",LB
+37077,0.016338822,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.0676196,Acenaphthylene,LB
+37077,0.016180542,Benzo[a]Pyrene,LB
+37067,21.30044,"1,3-Butadiene",LB
+37067,0.019527892,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,72.2505,Naphthalene,LB
+37067,2.450229,PM10 Primary (Filt + Cond),TON
+37067,1.426216,PM2.5 Primary (Filt + Cond),TON
+37065,0.0243148,Benzo[b]Fluoranthene,LB
+37065,44.828,Acetaldehyde,LB
+37065,11.315426,Naphthalene,LB
+37065,0.264352,PM25-Primary from certain diesel engines,TON
+37065,0.003048849,Nitrous Oxide,TON
+37065,0.2750738,PM2.5 Primary (Filt + Cond),TON
+37065,0.2748948,Benz[a]Anthracene,LB
+37065,1.9578982,Fluorene,LB
+37065,50.18864,Naphthalene,LB
+37065,18.220058,Acrolein,LB
+37065,748.1336,Hexane,LB
+37065,19.409316,Propionaldehyde,LB
+37065,0.2728152,Benzo[b]Fluoranthene,LB
+37061,0.00811141,Propionaldehyde,LB
+37061,0.000892145,"Benzo[g,h,i,]Perylene",LB
+37061,7.691836e-06,"Dibenzo[a,h]Anthracene",LB
+37061,2.673032e-05,Arsenic,LB
+37061,0.1965107,Carbon Monoxide,TON
+37061,9.991023e-06,Sulfate Portion of PM2.5-PRI,TON
+37057,4953.68,Formaldehyde,LB
+37057,0.19168998,Arsenic,LB
+37057,0.1151412,Sulfate Portion of PM2.5-PRI,TON
+37057,165.85418,Ethyl Benzene,LB
+37055,0.9643138,Anthracene,LB
+37055,0.3679766,Benzo[a]Pyrene,LB
+37055,785.1246,"2,2,4-Trimethylpentane",LB
+37055,0.3800653,Sulfur Dioxide,TON
+37055,0.01469461,Sulfate Portion of PM2.5-PRI,TON
+37039,0.02236082,Volatile Organic Compounds,TON
+37039,0.0001153613,Benzo[k]Fluoranthene,LB
+37039,0.005464864,Chrysene,LB
+37041,0.9302202,Styrene,LB
+37041,0.0008530494,"Benzo[g,h,i,]Perylene",LB
+37041,0.005224902,Benzo[a]Pyrene,LB
+37041,0.007481576,Manganese,LB
+37041,28.71206,Acetaldehyde,LB
+37041,0.0669795,PM10-Primary from certain diesel engines,TON
+37041,0.003639583,Sulfur Dioxide,TON
+37041,0.3797662,Volatile Organic Compounds,TON
+37029,2.890616,Ethyl Benzene,LB
+37171,86.59532,Hexane,LB
+37167,0.0015980426,Benzo[b]Fluoranthene,LB
+37167,0.02702622,Acenaphthylene,LB
+37167,6.366002,Benzene,LB
+37167,0.0004006624,Nickel,LB
+37167,0.00489847,Methane,TON
+37167,0.01009898,PM10 Primary (Filt + Cond),TON
+37167,0.002283136,Sulfur Dioxide,TON
+37165,0.0338482,Acenaphthylene,LB
+37165,0.002258004,Manganese,LB
+37165,0.06027242,Phenanthrene,LB
+37165,0.2014846,"1,3-Butadiene",LB
+37163,9.695832e-05,Chrysene,LB
+37163,0.17011254,Benzene,LB
+37163,0.000990219,Phenanthrene,LB
+37163,0.0004486856,Fluorene,LB
+37163,0.01210549,Nitrous Oxide,TON
+37161,48.31154,Xylenes (Mixed Isomers),LB
+37161,38.50686,"2,2,4-Trimethylpentane",LB
+37161,1.976735,Volatile Organic Compounds,TON
+37151,444.8666,Acetaldehyde,LB
+37151,6.445956,Fluorene,LB
+37151,0.4372127,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,4.952954,Acenaphthylene,LB
+37151,1.2405002,Chrysene,LB
+37137,6.130782,Ethyl Benzene,LB
+37137,0.2198824,Styrene,LB
+37137,0.1949464,Propionaldehyde,LB
+37137,0.0003645334,Manganese,LB
+37137,0.4694598,Naphthalene,LB
+37137,0.01626008,Methane,TON
+37137,0.000548997,Ammonia,TON
+37137,0.001502936,Organic Carbon portion of PM2.5-PRI,TON
+37133,2.218304,Ethyl Benzene,LB
+37133,5.554272,Toluene,LB
+37133,0.15365268,Benz[a]Anthracene,LB
+37133,5.988118,Benzene,LB
+37133,0.1684557,PM10-Primary from certain diesel engines,TON
+37133,10.37726,Carbon Monoxide,TON
+37133,0.01147499,Nitrous Oxide,TON
+37133,11.98971,Nitrogen Oxides,TON
+37133,0.3319776,Organic Carbon portion of PM2.5-PRI,TON
+37133,0.7972517,PM2.5 Primary (Filt + Cond),TON
+37133,24.53238,Acrolein,LB
+37133,7.972958,Hexane,LB
+37133,0.451886,Chrysene,LB
+37115,1.1037838e-05,Mercury,LB
+37115,0.0003124258,Fluorene,LB
+37115,0.7530244,"1,3-Butadiene",LB
+37115,1.250226,Propionaldehyde,LB
+37115,0.0011746178,Arsenic,LB
+37115,2.657644,Naphthalene,LB
+37115,0.01347249,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,29.94884,"2,2,4-Trimethylpentane",LB
+37115,0.001372966,Nickel,LB
+37115,0.02712297,Nitrous Oxide,TON
+37115,0.02159154,PM2.5 Primary (Filt + Cond),TON
+37115,0.0005369197,Sulfate Portion of PM2.5-PRI,TON
+37103,0.008147468,Chrysene,LB
+37103,0.01394172,Benz[a]Anthracene,LB
+37103,0.001171799,Nickel,LB
+37103,0.03085059,PM10-Primary from certain diesel engines,TON
+37099,8.688802e-05,Chromium (VI),LB
+37099,0.016651748,Arsenic,LB
+37099,1.155375,Phenanthrene,LB
+37095,0.005181604,Ethyl Benzene,LB
+37095,0.225135,Propionaldehyde,LB
+37095,4.689594e-09,Chromium (VI),LB
+37095,5.166366e-05,Fluoranthene,LB
+37095,7.521152e-05,Acenaphthylene,LB
+37095,2.686476e-06,Mercury,LB
+37095,0.8694274,Acetaldehyde,LB
+37095,2.010894e-07,Nitrate portion of PM2.5-PRI,TON
+37095,0.00189632,PM10 Primary (Filt + Cond),TON
+37095,0.0009351833,PM2.5 Primary (Filt + Cond),TON
+37095,0.0005187734,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,9.590583e-06,Sulfate Portion of PM2.5-PRI,TON
+37077,4.084932,Ethyl Benzene,LB
+37077,3.972028,"1,3-Butadiene",LB
+37077,0.005693136,"Benzo[g,h,i,]Perylene",LB
+37077,0.9606352,Fluoranthene,LB
+37077,0.09360418,Benzo[a]Pyrene,LB
+37077,11.575328,Benzene,LB
+37077,0.0044079,Arsenic,LB
+37077,53.43868,Acetaldehyde,LB
+37077,0.4029664,Acenaphthene,LB
+37077,0.04744184,Methane,TON
+37077,0.4354601,PM10 Primary (Filt + Cond),TON
+37075,0.01887569,Ammonia,TON
+37075,0.1662341,PM2.5 Primary (Filt + Cond),TON
+37075,2.582524,Ethyl Benzene,LB
+37075,6.013756,Toluene,LB
+37075,0.2436606,Anthracene,LB
+37075,0.6761616,Pyrene,LB
+37075,0.014031508,Benzo[b]Fluoranthene,LB
+37075,0.001921234,"Dibenzo[a,h]Anthracene",LB
+37075,2.079402,"2,2,4-Trimethylpentane",LB
+37075,0.018547392,Manganese,LB
+37075,1.0726854,Pyrene,LB
+37075,0.7896216,"Benzo[g,h,i,]Perylene",LB
+37075,0.2063068,Benzo[b]Fluoranthene,LB
+37075,0.9406024,Fluoranthene,LB
+37075,184.76,Formaldehyde,LB
+37075,0.0825624,Nickel,LB
+37075,3.476412,Phenanthrene,LB
+37075,0.3022175,Methane,TON
+37075,8939.956,Carbon Dioxide,TON
+37075,0.08795014,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,13.99211,Toluene,LB
+37065,0.9050044,Fluoranthene,LB
+37065,5.086384,"2,2,4-Trimethylpentane",LB
+37065,0.02669782,Nickel,LB
+37065,1.1254828,Fluorene,LB
+37065,0.2302184,PM10-Primary from certain diesel engines,TON
+37065,2.098554e-05,Fluorene,LB
+37065,1.362134e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37065,2.020296e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,9.03032e-06,Anthracene,LB
+37065,1.6661872e-09,Chromium (VI),LB
+37065,7.918856e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37065,4.835324e-06,Benzo[b]Fluoranthene,LB
+37065,1.573092e-05,Fluoranthene,LB
+37065,4.734902e-05,Acenaphthylene,LB
+37065,0.007381266,"2,2,4-Trimethylpentane",LB
+37061,8.704352,"1,3-Butadiene",LB
+37061,278.0222,Toluene,LB
+37061,67.58548,Hexane,LB
+37061,0.006110154,Arsenic,LB
+37053,0.3591736,Anthracene,LB
+37053,1.9158854,Acenaphthylene,LB
+37053,129.32236,Formaldehyde,LB
+37053,421.8862,Benzene,LB
+37053,0.420833,Acenaphthene,LB
+37051,7.247752,Propionaldehyde,LB
+37051,0.00665467,"Benzo[g,h,i,]Perylene",LB
+37051,0.981995,Fluorene,LB
+37051,0.4014345,PM10-Primary from certain diesel engines,TON
+37051,0.1337247,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.4053098,PM2.5 Primary (Filt + Cond),TON
+37049,0.00876097,Formaldehyde,LB
+37049,3.77661e-06,Arsenic,LB
+37049,0.06248064,Toluene,LB
+37049,2.480652e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,907.5132,Hexane,LB
+37049,0.6649768,Pyrene,LB
+37049,0.03240418,Manganese,LB
+37049,0.0016356684,Mercury,LB
+37049,2660.37,Carbon Dioxide,TON
+37173,309.2586,Naphthalene,LB
+37173,0.006364206,Nitrate portion of PM2.5-PRI,TON
+37173,1.182286,Organic Carbon portion of PM2.5-PRI,TON
+37173,95.21079,Volatile Organic Compounds,TON
+37169,0.2864674,Styrene,LB
+37169,3.77424,Formaldehyde,LB
+37169,0.02438126,Fluorene,LB
+37169,0.003303966,Ammonia,TON
+37161,7.26126,Styrene,LB
+37161,23.95634,Hexane,LB
+37161,1.7711884,Anthracene,LB
+37161,33.39864,Propionaldehyde,LB
+37161,0.019171476,"Benzo[g,h,i,]Perylene",LB
+37161,0.579599,Chrysene,LB
+37161,2.619685,PM10-Primary from certain diesel engines,TON
+37161,1.557852,Elemental Carbon portion of PM2.5-PRI,TON
+37161,4.091457,PM10 Primary (Filt + Cond),TON
+37161,2.605124,PM2.5 Primary (Filt + Cond),TON
+37155,39.69122,"1,3-Butadiene",LB
+37155,0.0561721,"Benzo[g,h,i,]Perylene",LB
+37155,35.17836,"2,2,4-Trimethylpentane",LB
+37155,570.0064,Acetaldehyde,LB
+37155,3.799581,PM10-Primary from certain diesel engines,TON
+37155,0.1871566,Sulfur Dioxide,TON
+37155,7.327415,Volatile Organic Compounds,TON
+37163,0.002451498,Arsenic,LB
+37163,1.384946,Nitrogen Oxides,TON
+37163,0.0006235006,Sulfate Portion of PM2.5-PRI,TON
+37161,0.6374338,Chrysene,LB
+37161,42.66512,"2,2,4-Trimethylpentane",LB
+37161,0.0002963668,Mercury,LB
+37161,782.8634,Acetaldehyde,LB
+37161,99.01124,Propionaldehyde,LB
+37161,0.02698925,Nitrous Oxide,TON
+37161,0.1217982,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,1324.0488,Hexane,LB
+37155,0.05313108,Arsenic,LB
+37155,0.04301728,Elemental Carbon portion of PM2.5-PRI,TON
+37155,0.1649764,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.2926525,PM2.5 Primary (Filt + Cond),TON
+37153,0.02578724,Benzo[b]Fluoranthene,LB
+37153,0.6163214,Acenaphthylene,LB
+37153,0.16609176,Chrysene,LB
+37153,107.3129,Formaldehyde,LB
+37153,10.268154,Benzene,LB
+37153,11.932558,Naphthalene,LB
+37153,0.03095067,Methane,TON
+37153,0.001522824,Nitrate portion of PM2.5-PRI,TON
+37151,2954.8,Carbon Dioxide,TON
+37151,0.02554276,Sulfur Dioxide,TON
+37151,13.815098,"1,3-Butadiene",LB
+37151,34.23866,Acrolein,LB
+37151,0.000113411,Chromium (VI),LB
+37151,0.3312596,Benz[a]Anthracene,LB
+37135,11.219952,Acenaphthylene,LB
+37135,1.1113842,Manganese,LB
+37135,87382.9,Carbon Dioxide,TON
+37131,24.4596,Hexane,LB
+37117,2.569708,Ethyl Benzene,LB
+37117,0.004592578,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.19859094,Benz[a]Anthracene,LB
+37117,1.11977e-05,Mercury,LB
+37117,0.2197005,PM10-Primary from certain diesel engines,TON
+37117,0.2021214,PM25-Primary from certain diesel engines,TON
+37117,0.08386405,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.266159,PM10 Primary (Filt + Cond),TON
+37117,0.03477174,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,5.228786,"1,3-Butadiene",LB
+37019,0.0003405906,Benzo[k]Fluoranthene,LB
+37019,5.148566,"2,2,4-Trimethylpentane",LB
+37019,0.0444887,Manganese,LB
+37019,1.4880278,Phenanthrene,LB
+37019,0.01662748,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.1391576,PM10 Primary (Filt + Cond),TON
+37019,0.9908531,Volatile Organic Compounds,TON
+37003,1.799184,Carbon Monoxide,TON
+37003,3.177422,Ethyl Benzene,LB
+37003,0.0010696766,Benzo[b]Fluoranthene,LB
+37003,4.308736,"2,2,4-Trimethylpentane",LB
+37001,0.0462252,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.18130208,Benzo[b]Fluoranthene,LB
+37001,0.04682822,Nitrous Oxide,TON
+37015,0.0014217704,Fluorene,LB
+37015,0.05390117,Volatile Organic Compounds,TON
+37015,0.0008294524,Benzo[k]Fluoranthene,LB
+37015,8.007968,Acetaldehyde,LB
+37003,12.255336,Benzene,LB
+37003,0.002146522,Nickel,LB
+37003,0.00478478,Acenaphthene,LB
+37003,2.019197e-05,Nitrate portion of PM2.5-PRI,TON
+37003,10.489274,Toluene,LB
+37003,0.003203254,Benzo[b]Fluoranthene,LB
+37003,0.005623796,Benzo[a]Pyrene,LB
+37003,0.003082444,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.01013577,Sulfur Dioxide,TON
+37003,0.3029059,Volatile Organic Compounds,TON
+37143,0.0504238,Ethyl Benzene,LB
+37143,0.18059918,Xylenes (Mixed Isomers),LB
+37143,0.000464917,"Benzo[g,h,i,]Perylene",LB
+37143,0.00017245658,Benzo[a]Pyrene,LB
+37143,0.00018640328,Manganese,LB
+37143,6.01044e-07,Nitrate portion of PM2.5-PRI,TON
+37143,0.0007784292,PM10 Primary (Filt + Cond),TON
+37143,0.00592784,Volatile Organic Compounds,TON
+37125,1208.168,Carbon Dioxide,TON
+37125,0.02223304,Nitrous Oxide,TON
+37125,0.9371498,Acrolein,LB
+37125,2.18382,Propionaldehyde,LB
+37125,18.079932,Formaldehyde,LB
+37125,0.0003973374,"Dibenzo[a,h]Anthracene",LB
+37109,55.97249,Carbon Dioxide,TON
+37109,0.000414186,Nickel,LB
+37099,0.002086944,Manganese,LB
+37099,0.0003329102,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.0006437286,Benzo[b]Fluoranthene,LB
+37099,0.0009303186,Fluoranthene,LB
+37013,0.00013048224,Mercury,LB
+37013,0.01421632,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,8.443182,"2,2,4-Trimethylpentane",LB
+37007,0.09346356,Styrene,LB
+37007,0.017494692,Anthracene,LB
+37007,7.781474e-05,"Benzo[g,h,i,]Perylene",LB
+37007,0.001794524,Chrysene,LB
+37007,0.2008962,"2,2,4-Trimethylpentane",LB
+37007,0.004023412,Benz[a]Anthracene,LB
+37007,3.948734e-06,Mercury,LB
+37007,0.000825643,Arsenic,LB
+37007,0.7953248,Naphthalene,LB
+37007,0.06969515,Nitrogen Oxides,TON
+37007,0.0006881179,Organic Carbon portion of PM2.5-PRI,TON
+37009,1.1510828,Styrene,LB
+37009,4.375396,Propionaldehyde,LB
+37009,87.5113,Formaldehyde,LB
+37009,0.553329,Fluorene,LB
+37009,0.1794003,PM10-Primary from certain diesel engines,TON
+37009,0.06942738,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.6830034,Styrene,LB
+37003,3.73672,Acrolein,LB
+37003,3.069168,Xylenes (Mixed Isomers),LB
+37003,0.0012608732,"Benzo[g,h,i,]Perylene",LB
+37003,0.2731748,Fluoranthene,LB
+37003,1.1669124,"2,2,4-Trimethylpentane",LB
+37003,0.2971496,Fluorene,LB
+37003,0.004051043,Sulfur Dioxide,TON
+37001,0.2390248,Styrene,LB
+37001,0.06116012,Anthracene,LB
+37001,1.817254,Naphthalene,LB
+37001,0.3180078,Carbon Monoxide,TON
+37001,0.000350958,Nitrous Oxide,TON
+37001,0.00781357,Remaining PMFINE portion of PM2.5-PRI,TON
+37057,0.11306518,Phenanthrene,LB
+37057,0.009779266,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.0170494,Chrysene,LB
+37041,0.48602,Hexane,LB
+37041,0.0017668604,"Benzo[g,h,i,]Perylene",LB
+37041,0.0006638482,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,0.6419342,Formaldehyde,LB
+37041,0.000656051,Benzo[a]Pyrene,LB
+37041,0.0003170438,Benz[a]Anthracene,LB
+37041,0.00292885,Ammonia,TON
+37041,2.250295e-06,Nitrate portion of PM2.5-PRI,TON
+37007,1.3894356,Xylenes (Mixed Isomers),LB
+37007,0.001383965,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.0006272564,Benz[a]Anthracene,LB
+37007,0.001400316,Nitrous Oxide,TON
+37003,1.603936,Hexane,LB
+37003,0.02672175,Methane,TON
+37003,337.5941,Carbon Dioxide,TON
+37003,0.03674936,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.001317432,Nitrous Oxide,TON
+37003,0.0001384139,Nitrate portion of PM2.5-PRI,TON
+37003,5.966668,Benzene,LB
+37007,0.9525526,Benzo[b]Fluoranthene,LB
+37007,12.87166,Acenaphthylene,LB
+37007,1004.7776,Acetaldehyde,LB
+37007,5.718962,Fluorene,LB
+37007,0.004560754,Nitrate portion of PM2.5-PRI,TON
+37007,0.8333586,Organic Carbon portion of PM2.5-PRI,TON
+37007,0.0346352,"Benzo[g,h,i,]Perylene",LB
+37007,0.010539452,Benz[a]Anthracene,LB
+37007,0.04009282,Acenaphthene,LB
+37019,9.991388,Propionaldehyde,LB
+37019,183.63356,Formaldehyde,LB
+37019,3.853398e-05,Mercury,LB
+37013,0.0004310824,Arsenic,LB
+37013,0.007460258,Acenaphthene,LB
+37013,0.00254809,Sulfur Dioxide,TON
+37013,0.0001111932,Sulfate Portion of PM2.5-PRI,TON
+37013,0.1130269,Volatile Organic Compounds,TON
+37013,0.16505768,Styrene,LB
+37013,0.17802976,Acrolein,LB
+37013,0.00231293,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,0.001857686,Benzo[k]Fluoranthene,LB
+37013,0.002330124,Benzo[a]Pyrene,LB
+37013,0.001918603,Benz[a]Anthracene,LB
+37005,1.551902,Formaldehyde,LB
+37005,0.00010070148,Manganese,LB
+37005,0.0001518382,Ammonia,TON
+37005,0.08831289,Volatile Organic Compounds,TON
+37199,6.914534e-05,"Dibenzo[a,h]Anthracene",LB
+37199,0.001161793,Methane,TON
+37199,0.05091227,Carbon Monoxide,TON
+37199,0.018154386,Fluoranthene,LB
+37191,0.01949171,Nitrous Oxide,TON
+37189,0.6208464,Styrene,LB
+37189,3.402734,"1,3-Butadiene",LB
+37189,95.12652,Toluene,LB
+37189,1.1242568e-06,Chromium (VI),LB
+37189,0.008365922,Benzo[k]Fluoranthene,LB
+37189,23.01944,Benzene,LB
+37189,1.1269552e-05,Mercury,LB
+37189,0.05171578,Fluorene,LB
+37189,3.305269e-05,Nitrate portion of PM2.5-PRI,TON
+37189,0.0009679535,Sulfur Dioxide,TON
+37137,2.04452,Ethyl Benzene,LB
+37137,7.73218,Xylenes (Mixed Isomers),LB
+37137,5.2183e-07,Chromium (VI),LB
+37137,0.0007159346,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.0005931804,Benzo[k]Fluoranthene,LB
+37137,0.0003986944,Manganese,LB
+37137,0.002490238,Acenaphthene,LB
+37137,0.0001673682,Elemental Carbon portion of PM2.5-PRI,TON
+37137,2.29337e-05,Sulfate Portion of PM2.5-PRI,TON
+37137,0.07029753,Volatile Organic Compounds,TON
+37127,0.17517528,Mercury,LB
+37127,23.29263,PM10 Primary (Filt + Cond),TON
+37111,1.1763154,Propionaldehyde,LB
+37111,0.014811416,Benzo[a]Pyrene,LB
+37111,8.390496e-06,Mercury,LB
+37111,0.15390472,Fluorene,LB
+37111,0.01073303,Methane,TON
+37111,0.02202278,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.0558313,Nickel,LB
+37111,0.3849839,Organic Carbon portion of PM2.5-PRI,TON
+37119,0.2616872,Fluoranthene,LB
+37119,64.05734,Formaldehyde,LB
+37119,0.3611968,Fluorene,LB
+37119,0.05272125,Organic Carbon portion of PM2.5-PRI,TON
+37119,0.00448608,Sulfate Portion of PM2.5-PRI,TON
+37113,0.1197923,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.8671076,Anthracene,LB
+37113,2.52321,Pyrene,LB
+37113,7.493548,Ethyl Benzene,LB
+37113,7.64033,"1,3-Butadiene",LB
+37113,18.134566,Acrolein,LB
+37109,16.175348,Acenaphthylene,LB
+37109,25.0337,Phenanthrene,LB
+37109,308.9138,Naphthalene,LB
+37109,0.6484294,Methane,TON
+37109,2.323444,PM2.5 Primary (Filt + Cond),TON
+37109,0.1295587,Sulfur Dioxide,TON
+37109,16.61797,Volatile Organic Compounds,TON
+37107,11.102194,"1,3-Butadiene",LB
+37107,32.70136,Toluene,LB
+37107,1.8765008,Acenaphthylene,LB
+37107,0.4561424,Chrysene,LB
+37107,0.2347462,Benzo[a]Pyrene,LB
+37107,10.992656,"2,2,4-Trimethylpentane",LB
+37107,0.0675848,Nickel,LB
+37107,0.0174324,Nitrous Oxide,TON
+37103,19.384696,Benzene,LB
+37103,8.591846,Carbon Monoxide,TON
+37103,0.0138708,Nitrous Oxide,TON
+37103,0.01206753,PM2.5 Primary (Filt + Cond),TON
+37103,0.3536852,Acrolein,LB
+37103,73.44894,Toluene,LB
+37103,17.851054,Hexane,LB
+37103,0.01010303,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.006691042,Benzo[k]Fluoranthene,LB
+37103,0.03319906,"Indeno[1,2,3-c,d]Pyrene",LB
+37103,0.4335422,Phenanthrene,LB
+37103,0.01098163,Sulfur Dioxide,TON
+37095,10.792554,Propionaldehyde,LB
+37095,11.823236,Xylenes (Mixed Isomers),LB
+37095,0.0005621582,Benzo[k]Fluoranthene,LB
+37095,0.000558636,"Dibenzo[a,h]Anthracene",LB
+37095,0.1339338,Benz[a]Anthracene,LB
+37095,0.0222402,Manganese,LB
+37095,1.742336,Phenanthrene,LB
+37095,1181.339,Carbon Dioxide,TON
+37095,0.16119,PM25-Primary from certain diesel engines,TON
+37095,0.02172983,Organic Carbon portion of PM2.5-PRI,TON
+37083,33.24302,Propionaldehyde,LB
+37083,0.7186536,Chrysene,LB
+37083,3.279869,PM10-Primary from certain diesel engines,TON
+37083,0.2611531,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,0.4809918,Benzo[a]Pyrene,LB
+37083,0.04857768,Arsenic,LB
+37083,15.05066,Carbon Monoxide,TON
+37083,0.01923543,Nitrous Oxide,TON
+37083,0.682353,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.3322852,"Benzo[g,h,i,]Perylene",LB
+37087,0.5631122,Acenaphthylene,LB
+37087,0.06005584,Chrysene,LB
+37087,129.20288,Benzene,LB
+37087,37.72558,Acetaldehyde,LB
+37087,0.003974385,Sulfate Portion of PM2.5-PRI,TON
+37087,2.153639,Volatile Organic Compounds,TON
+37083,1.1684396,Fluoranthene,LB
+37083,0.227198,Chrysene,LB
+37083,248.9808,Formaldehyde,LB
+37083,0.11284296,Arsenic,LB
+37083,0.7611285,Ammonia,TON
+37083,0.2234943,Sulfur Dioxide,TON
+37083,13.13846,Volatile Organic Compounds,TON
+37071,127.7759,Benzene,LB
+37071,148.39978,Naphthalene,LB
+37071,33.4529,Hexane,LB
+37071,32.45344,"2,2,4-Trimethylpentane",LB
+37071,1161.2494,Benzene,LB
+37069,4.266472,Hexane,LB
+37069,0.00365481,Anthracene,LB
+37069,0.08134986,Propionaldehyde,LB
+37069,10.364974,Xylenes (Mixed Isomers),LB
+37069,0.0016080664,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.0011999048,Benzo[k]Fluoranthene,LB
+37069,0.0016132318,Benzo[a]Pyrene,LB
+37069,0.0003582902,Nickel,LB
+37069,0.0009916249,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.3638828,Styrene,LB
+37055,0.1414992,Acenaphthylene,LB
+37055,28.24518,Formaldehyde,LB
+37055,11.949992,Acetaldehyde,LB
+37055,3.000902,Naphthalene,LB
+37055,0.07062424,PM25-Primary from certain diesel engines,TON
+37051,0.002938481,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.000244186,Sulfate Portion of PM2.5-PRI,TON
+37051,0.003192356,Benzo[b]Fluoranthene,LB
+37051,0.0189836,Acenaphthylene,LB
+37051,1.8337706,"2,2,4-Trimethylpentane",LB
+37051,1.986452e-05,Nitrate portion of PM2.5-PRI,TON
+37039,4.142862,Propionaldehyde,LB
+37039,0.004310744,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.009069472,Nickel,LB
+37039,0.02834288,Methane,TON
+37039,0.004013992,Sulfur Dioxide,TON
+37039,0.4510974,Volatile Organic Compounds,TON
+37041,0.05022775,PM10 Primary (Filt + Cond),TON
+37041,0.588424,Ethyl Benzene,LB
+37041,0.9516782,Propionaldehyde,LB
+37041,0.12742406,Pyrene,LB
+37041,0.05900984,Acenaphthene,LB
+37041,0.17960204,Phenanthrene,LB
+37037,0.008829454,Fluoranthene,LB
+37037,0.001079424,Arsenic,LB
+37037,0.004023157,Sulfur Dioxide,TON
+37037,0.719897,Ammonia,TON
+37037,16.050472,Styrene,LB
+37037,1.139739,Pyrene,LB
+37037,0.19410388,Benzo[k]Fluoranthene,LB
+37031,0.2298722,Styrene,LB
+37031,19.115646,Xylenes (Mixed Isomers),LB
+37031,0.008523162,"Benzo[g,h,i,]Perylene",LB
+37031,5.08988,"2,2,4-Trimethylpentane",LB
+37029,0.02401107,PM10 Primary (Filt + Cond),TON
+37029,0.01645043,PM2.5 Primary (Filt + Cond),TON
+37029,0.17904236,Propionaldehyde,LB
+37029,0.02938814,Benzo[k]Fluoranthene,LB
+37029,0.508581,Acenaphthylene,LB
+37029,0.03811594,Benzo[a]Pyrene,LB
+37025,659.4632,Acetaldehyde,LB
+37025,0.02898604,Sulfate Portion of PM2.5-PRI,TON
+37025,1119.916,Ethyl Benzene,LB
+37025,1.6200102,Anthracene,LB
+37025,0.7440312,Benzo[a]Pyrene,LB
+37023,1.8376634,"1,3-Butadiene",LB
+37023,0.6341484,Pyrene,LB
+37023,0.004087752,Arsenic,LB
+37023,0.0709701,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.00771227,Sulfate Portion of PM2.5-PRI,TON
+37169,0.004605973,Ammonia,TON
+37169,0.04443772,Nitrogen Oxides,TON
+37169,0.002317631,Sulfur Dioxide,TON
+37169,0.04932682,Volatile Organic Compounds,TON
+37169,1.4104048,Xylenes (Mixed Isomers),LB
+37169,0.9944392,Formaldehyde,LB
+37107,0.014824408,Styrene,LB
+37107,1.2658676,Toluene,LB
+37107,0.003395534,"Benzo[g,h,i,]Perylene",LB
+37107,0.0006628102,Benzo[b]Fluoranthene,LB
+37107,0.9908404,Formaldehyde,LB
+37107,0.004709566,Methane,TON
+37107,0.05936509,Nitrogen Oxides,TON
+37107,0.003065491,Sulfur Dioxide,TON
+37107,0.03687,Volatile Organic Compounds,TON
+37175,1.2138518e-05,Benzo[b]Fluoranthene,LB
+37175,0.01764589,Carbon Monoxide,TON
+37175,2.879716e-05,Nitrous Oxide,TON
+37175,0.0008922884,Acrolein,LB
+37175,0.17566256,Toluene,LB
+37175,3.540397e-06,Sulfur Dioxide,TON
+37175,3.555674e-07,Sulfate Portion of PM2.5-PRI,TON
+37171,783.6188,Hexane,LB
+37171,1715.0258,Xylenes (Mixed Isomers),LB
+37171,572.4764,Benzene,LB
+37171,2.337974,Phenanthrene,LB
+37171,111.437,Carbon Monoxide,TON
+37171,0.02439275,Nitrous Oxide,TON
+37161,5.101688,Styrene,LB
+37161,3.42593,Pyrene,LB
+37161,0.0698245,Benzo[b]Fluoranthene,LB
+37161,0.009765784,Benzo[k]Fluoranthene,LB
+37161,433.754,Formaldehyde,LB
+37161,11.678288,"2,2,4-Trimethylpentane",LB
+37161,0.789974,Benz[a]Anthracene,LB
+37161,0.2303075,Ammonia,TON
+37161,0.1897448,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.02511333,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.002047566,Sulfate Portion of PM2.5-PRI,TON
+37159,0.2133316,Fluoranthene,LB
+37161,3.765707,PM2.5 Primary (Filt + Cond),TON
+37161,123.5818,Volatile Organic Compounds,TON
+37161,6297.666,Hexane,LB
+37161,9.55268,Pyrene,LB
+37161,5.652316,Acenaphthene,LB
+37155,774.7192,Styrene,LB
+37155,31468.98,Benzene,LB
+37155,4.353294,Arsenic,LB
+37155,10567.932,Acetaldehyde,LB
+37155,32.40336,Acenaphthene,LB
+37155,14.19365,Nitrous Oxide,TON
+37153,0.015848062,Fluoranthene,LB
+37153,0.003345032,Chrysene,LB
+37153,0.00517046,Benzo[a]Pyrene,LB
+37153,0.2376108,Acrolein,LB
+37153,26.75146,Toluene,LB
+37153,0.004453133,Methane,TON
+37153,0.478663,Nitrogen Oxides,TON
+37151,130.36824,Toluene,LB
+37151,0.010849876,Manganese,LB
+37151,0.0005048504,Sulfate Portion of PM2.5-PRI,TON
+37007,3442.308,Carbon Dioxide,TON
+37007,0.4856992,PM25-Primary from certain diesel engines,TON
+37007,0.03813612,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,10.79481,Ethyl Benzene,LB
+37019,1.2108844,Anthracene,LB
+37019,6.620508e-05,Chromium (VI),LB
+37019,0.02038,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,8.048184,"2,2,4-Trimethylpentane",LB
+37019,0.00988114,Nitrous Oxide,TON
+37019,0.8944463,PM2.5 Primary (Filt + Cond),TON
+37019,0.02179849,Sulfate Portion of PM2.5-PRI,TON
+37011,0.3165764,"1,3-Butadiene",LB
+37011,0.03778658,Acrolein,LB
+37011,1.7671508,Hexane,LB
+37011,5.31633,Xylenes (Mixed Isomers),LB
+37011,0.7427468,Formaldehyde,LB
+37011,1.8245698,"2,2,4-Trimethylpentane",LB
+37011,8.609018e-07,Mercury,LB
+37011,1.073603e-05,Nickel,LB
+37011,0.0002879552,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.04130844,Nitrogen Oxides,TON
+37011,1.660085e-05,Sulfate Portion of PM2.5-PRI,TON
+37009,10.714664,Toluene,LB
+37009,1.77649,Pyrene,LB
+37009,0.4260206,Benz[a]Anthracene,LB
+37009,0.0265664,Nickel,LB
+37009,0.003421774,Nitrous Oxide,TON
+37009,0.002236305,Nitrate portion of PM2.5-PRI,TON
+37003,7.423936,Ethyl Benzene,LB
+37003,10.125502,"2,2,4-Trimethylpentane",LB
+37003,0.003125778,Benz[a]Anthracene,LB
+37003,0.0004023466,Manganese,LB
+37003,0.02100915,Methane,TON
+37003,0.005979023,PM10 Primary (Filt + Cond),TON
+37085,0.0015730564,Fluorene,LB
+37085,0.002272947,Nitrous Oxide,TON
+37085,6.513913e-06,Nitrate portion of PM2.5-PRI,TON
+37085,0.08142748,Acrolein,LB
+37085,0.0009207828,Benzo[b]Fluoranthene,LB
+37085,0.001735661,Benzo[a]Pyrene,LB
+37061,1.7243864,Hexane,LB
+37061,0.002920668,Pyrene,LB
+37061,1.9663084e-05,Chromium (VI),LB
+37061,0.002582204,Fluoranthene,LB
+37061,4.745324,Benzene,LB
+37061,0.002457956,Nickel,LB
+37061,0.00842063,Phenanthrene,LB
+37061,0.01388175,Methane,TON
+37061,0.001526357,Remaining PMFINE portion of PM2.5-PRI,TON
+37013,1.6712872,Hexane,LB
+37013,5.373266,"2,2,4-Trimethylpentane",LB
+37199,0.07408484,Phenanthrene,LB
+37199,7.545674e-05,Nitrate portion of PM2.5-PRI,TON
+37199,0.03516742,Volatile Organic Compounds,TON
+37199,0.0014059612,Acetaldehyde,LB
+37199,2.302765e-06,Nitrous Oxide,TON
+37199,0.002590536,Ethyl Benzene,LB
+37199,0.014727994,Toluene,LB
+37199,0.003272082,Hexane,LB
+37199,0.009548134,Xylenes (Mixed Isomers),LB
+37199,4.346302e-10,Chromium (VI),LB
+37193,1.3540158e-05,"Dibenzo[a,h]Anthracene",LB
+37193,0.0006417048,Fluorene,LB
+37193,0.01651413,Naphthalene,LB
+37193,0.3182463,Carbon Monoxide,TON
+37193,19.226182,Anthracene,LB
+37193,50126.32,Xylenes (Mixed Isomers),LB
+37193,0.16300588,"Dibenzo[a,h]Anthracene",LB
+37193,21617.58,Benzene,LB
+37193,1.7377122,Arsenic,LB
+37193,4322.15,Carbon Monoxide,TON
+37193,1.796022,Elemental Carbon portion of PM2.5-PRI,TON
+37193,15.03659,Ammonia,TON
+37185,0.0001280006,Benz[a]Anthracene,LB
+37185,0.00525291,Styrene,LB
+37185,0.00014152758,Benzo[b]Fluoranthene,LB
+37185,0.00011659684,Chrysene,LB
+37185,6.199247,Carbon Dioxide,TON
+37187,0.00534534,Nickel,LB
+37187,1.1291786,"1,3-Butadiene",LB
+37187,1.8559246,Propionaldehyde,LB
+37187,0.0002303144,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,0.02461092,Benz[a]Anthracene,LB
+37187,0.3072892,Phenanthrene,LB
+37187,0.03583103,PM25-Primary from certain diesel engines,TON
+37187,0.004866014,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.00300136,Fluoranthene,LB
+37187,0.10593042,Naphthalene,LB
+37187,0.0005698638,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.004071234,PM10 Primary (Filt + Cond),TON
+37179,6.931372,Toluene,LB
+37179,0.003935792,Nickel,LB
+37179,0.013851134,Phenanthrene,LB
+37179,0.02092553,Methane,TON
+37179,3.228702,Carbon Monoxide,TON
+37179,0.003967388,Organic Carbon portion of PM2.5-PRI,TON
+37177,4.165194e-06,"Benzo[g,h,i,]Perylene",LB
+37177,1.568646e-06,PM2.5 Primary (Filt + Cond),TON
+37177,4.392984e-05,Volatile Organic Compounds,TON
+37197,9.662552,Toluene,LB
+37197,3.62578,"2,2,4-Trimethylpentane",LB
+37187,9.9279,Acrolein,LB
+37187,0.4319782,Anthracene,LB
+37187,6.517734,Propionaldehyde,LB
+37187,0.08964504,Benzo[a]Pyrene,LB
+37187,0.0353513,Manganese,LB
+37187,55.27332,Acetaldehyde,LB
+37187,13.89775,Naphthalene,LB
+37187,0.06903401,Methane,TON
+37187,1606.027,Carbon Dioxide,TON
+37187,0.05536652,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,8.36199,Ethyl Benzene,LB
+37183,1.5512996,Acrolein,LB
+37183,0.08442826,"Benzo[g,h,i,]Perylene",LB
+37183,44.96042,Benzene,LB
+37183,0.0017058996,Mercury,LB
+37183,0.7118788,Naphthalene,LB
+37183,2497.976,Carbon Dioxide,TON
+37183,1.052167,Nitrogen Oxides,TON
+37183,1.114022,Volatile Organic Compounds,TON
+37177,0.02298262,Hexane,LB
+37177,2.312188e-07,Chromium (VI),LB
+37177,0.00505497,Acenaphthylene,LB
+37177,0.9144482,Formaldehyde,LB
+37177,0.3976042,Acetaldehyde,LB
+37177,0.003006824,Acenaphthene,LB
+37177,0.10035176,Naphthalene,LB
+37177,0.002259396,PM25-Primary from certain diesel engines,TON
+37177,6.779409e-05,Sulfate Portion of PM2.5-PRI,TON
+37181,1.2200274,Hexane,LB
+37181,1.0918216,Benzene,LB
+37023,0.3672798,Anthracene,LB
+37023,7.520072,Xylenes (Mixed Isomers),LB
+37023,2.564726e-05,Chromium (VI),LB
+37023,0.00326994,"Benzo[g,h,i,]Perylene",LB
+37023,0.6560512,Acenaphthylene,LB
+37023,1.2206554,Phenanthrene,LB
+37023,0.7463996,Fluorene,LB
+37023,0.03837626,Methane,TON
+37023,0.03550225,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.009303763,Sulfate Portion of PM2.5-PRI,TON
+37173,182.82216,Formaldehyde,LB
+37173,8.27728e-05,Mercury,LB
+37173,76.92092,Acetaldehyde,LB
+37173,1.9667936,Phenanthrene,LB
+37167,1.8591632,Acenaphthylene,LB
+37167,0.3392758,Organic Carbon portion of PM2.5-PRI,TON
+37167,2.090035,Volatile Organic Compounds,TON
+37139,0.2123962,Styrene,LB
+37139,8.091574,Hexane,LB
+37139,0.18830536,Propionaldehyde,LB
+37139,21.51262,Xylenes (Mixed Isomers),LB
+37139,0.002492374,Benz[a]Anthracene,LB
+37139,0.0004296868,Manganese,LB
+37139,3.474514e-06,Mercury,LB
+37139,9.202874e-06,Nitrate portion of PM2.5-PRI,TON
+37139,0.0003100327,Sulfur Dioxide,TON
+37131,17.660566,Xylenes (Mixed Isomers),LB
+37131,3.911712e-06,Chromium (VI),LB
+37131,2.97694,Formaldehyde,LB
+37131,0.00011577704,"Dibenzo[a,h]Anthracene",LB
+37131,0.003829442,Manganese,LB
+37131,0.004842815,Methane,TON
+37131,0.4291187,Nitrogen Oxides,TON
+37125,14.83426,Carbon Monoxide,TON
+37125,0.0227715,Ammonia,TON
+37125,0.002314368,Nitrate portion of PM2.5-PRI,TON
+37125,20.84656,Xylenes (Mixed Isomers),LB
+37125,0.00892335,"Indeno[1,2,3-c,d]Pyrene",LB
+37125,1.3775468,Fluoranthene,LB
+37113,0.949986,Anthracene,LB
+37113,2.706858,Pyrene,LB
+37113,7.17662e-05,Chromium (VI),LB
+37113,0.3806008,Chrysene,LB
+37113,0.00805882,"Dibenzo[a,h]Anthracene",LB
+37113,6.530799,Carbon Monoxide,TON
+37113,0.2806413,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.0251391,Sulfur Dioxide,TON
+37109,0.005106986,Benzo[b]Fluoranthene,LB
+37109,0.16542484,Fluoranthene,LB
+37109,0.0650533,Acenaphthene,LB
+37109,7.15542e-06,Chromium (VI),LB
+37105,0.530076,Ethyl Benzene,LB
+37105,1.2682306,Toluene,LB
+37105,0.010125966,Manganese,LB
+37105,6.527048e-06,Mercury,LB
+37105,0.18347528,Phenanthrene,LB
+37105,0.0006541301,Nitrous Oxide,TON
+37105,0.01616329,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.004431266,Sulfur Dioxide,TON
+37105,0.004424166,Sulfate Portion of PM2.5-PRI,TON
+37097,0.05095388,Chrysene,LB
+37097,0.08767318,Benz[a]Anthracene,LB
+37097,0.007260604,Manganese,LB
+37097,0.12682782,Acenaphthene,LB
+37097,0.4520588,Phenanthrene,LB
+37097,271.7916,Carbon Dioxide,TON
+37097,0.09251875,PM10-Primary from certain diesel engines,TON
+37097,0.03412526,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.00205822,Sulfate Portion of PM2.5-PRI,TON
+37095,0.005917974,Anthracene,LB
+37095,0.004035308,Benz[a]Anthracene,LB
+37095,0.000800218,Manganese,LB
+37095,0.011861158,Fluorene,LB
+37095,6.35292e-05,Nitrous Oxide,TON
+37095,2.180688e-05,Nitrate portion of PM2.5-PRI,TON
+37095,0.001814081,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.0003647669,Sulfur Dioxide,TON
+37089,21.22386,"1,3-Butadiene",LB
+37089,1082.5814,Hexane,LB
+37089,0.14883956,Benz[a]Anthracene,LB
+37089,0.05262758,Manganese,LB
+37089,0.348056,Ammonia,TON
+37089,0.2037484,PM2.5 Primary (Filt + Cond),TON
+37079,0.04109876,Benzo[a]Pyrene,LB
+37079,0.006766402,Nickel,LB
+37079,0.3988988,Fluorene,LB
+37079,0.1556266,PM10-Primary from certain diesel engines,TON
+37079,0.001706187,Nitrous Oxide,TON
+37079,2.406622,Nitrogen Oxides,TON
+37079,0.05746288,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.002520694,"Benzo[g,h,i,]Perylene",LB
+37087,2388.872,Ethyl Benzene,LB
+37087,8915.564,Xylenes (Mixed Isomers),LB
+37059,6.728436,Styrene,LB
+37059,0.0213313,"Benzo[g,h,i,]Perylene",LB
+37059,0.10377218,Benzo[b]Fluoranthene,LB
+37059,0.014211784,"Dibenzo[a,h]Anthracene",LB
+37059,1.5535704,Acenaphthene,LB
+37059,6459.801,Carbon Dioxide,TON
+37059,1.333007,PM2.5 Primary (Filt + Cond),TON
+37065,0.002386258,Phenanthrene,LB
+37065,4.83799e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37065,0.008873228,Nitrogen Oxides,TON
+37065,2.594664e-08,Chromium (VI),LB
+37065,4.475624e-06,"Dibenzo[a,h]Anthracene",LB
+37059,0.07604178,Arsenic,LB
+37059,3.406224,Phenanthrene,LB
+37059,2005.818,Toluene,LB
+37059,12.579704,Propionaldehyde,LB
+37059,1341.7478,Xylenes (Mixed Isomers),LB
+37059,2.857116,Acenaphthylene,LB
+37059,193.97106,Formaldehyde,LB
+37057,11.96905,Chrysene,LB
+37057,9885.525,Carbon Monoxide,TON
+37057,461569.2,Carbon Dioxide,TON
+37057,4.578557,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,3.91177,Ethyl Benzene,LB
+37055,0.00563855,"Benzo[g,h,i,]Perylene",LB
+37055,0.012789162,Nickel,LB
+37055,0.8572392,Fluorene,LB
+37055,0.2888548,PM25-Primary from certain diesel engines,TON
+37055,0.05687119,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,0.007296334,Sulfate Portion of PM2.5-PRI,TON
+37055,0.019020362,Phenanthrene,LB
+37055,0.007101456,Fluorene,LB
+37055,1.6017,Carbon Monoxide,TON
+37055,0.002223875,Nitrous Oxide,TON
+37055,0.0009565737,Remaining PMFINE portion of PM2.5-PRI,TON
+37055,6.162243e-05,Sulfate Portion of PM2.5-PRI,TON
+37043,89.86374,Styrene,LB
+37043,0.001727244,Chromium (VI),LB
+37043,0.3843566,Manganese,LB
+37043,20.41518,Phenanthrene,LB
+37043,2.044866,Methane,TON
+37043,32400.67,Carbon Dioxide,TON
+37033,4.83808,Ethyl Benzene,LB
+37033,0.002656514,Benzo[b]Fluoranthene,LB
+37033,0.002521124,Benz[a]Anthracene,LB
+37033,0.002282806,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.06188412,"Benzo[g,h,i,]Perylene",LB
+37025,0.3111416,Benzo[b]Fluoranthene,LB
+37025,0.04262074,"Dibenzo[a,h]Anthracene",LB
+37025,8.890456,Fluorene,LB
+37025,0.4214789,Methane,TON
+37025,0.7559984,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,2704.242,Acetaldehyde,LB
+37027,34428.64,Toluene,LB
+37027,8219.984,Hexane,LB
+37027,167.92,Nitrogen Oxides,TON
+37027,2.167703,Organic Carbon portion of PM2.5-PRI,TON
+37023,22.94532,Ethyl Benzene,LB
+37023,60.9688,Xylenes (Mixed Isomers),LB
+37023,4.535046,Fluoranthene,LB
+37023,0.8361424,Chrysene,LB
+37023,0.4159642,Manganese,LB
+37023,0.0003071826,Mercury,LB
+37023,3.652817,Volatile Organic Compounds,TON
+37179,0.03425106,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.5728374,Acenaphthylene,LB
+37179,42.86058,Formaldehyde,LB
+37179,0.03050122,Benz[a]Anthracene,LB
+37179,0.2075416,Pyrene,LB
+37179,0.000353041,Mercury,LB
+37179,0.008065181,Elemental Carbon portion of PM2.5-PRI,TON
+37179,0.002220609,Sulfate Portion of PM2.5-PRI,TON
+37171,4.854874,Volatile Organic Compounds,TON
+37171,25.52462,"1,3-Butadiene",LB
+37171,76.04612,Toluene,LB
+37171,23.67226,Hexane,LB
+37171,6.945216,Pyrene,LB
+37171,82.06712,Xylenes (Mixed Isomers),LB
+37171,0.4447648,Benzo[a]Pyrene,LB
+37171,0.352534,Manganese,LB
+37149,0.13424954,Pyrene,LB
+37149,0.002578966,Benzo[b]Fluoranthene,LB
+37149,492.8356,Carbon Dioxide,TON
+37149,0.0001503768,Nitrate portion of PM2.5-PRI,TON
+37149,0.0794064,PM2.5 Primary (Filt + Cond),TON
+37161,0.1906384,"1,3-Butadiene",LB
+37161,1.0191936,Hexane,LB
+37161,0.002228522,Fluoranthene,LB
+37161,0.0008843236,Benzo[k]Fluoranthene,LB
+37161,0.006517156,Acenaphthylene,LB
+37161,0.0015325216,Benzo[a]Pyrene,LB
+37161,3.550666e-05,"Dibenzo[a,h]Anthracene",LB
+37161,1.0478006,"2,2,4-Trimethylpentane",LB
+37161,1.0731576e-05,Nickel,LB
+37161,0.001907068,PM10 Primary (Filt + Cond),TON
+37147,0.0008387357,Nitrous Oxide,TON
+37147,0.0001015895,Sulfur Dioxide,TON
+37147,2.099043e-05,Sulfate Portion of PM2.5-PRI,TON
+37147,0.3065206,"1,3-Butadiene",LB
+37147,1.186058e-07,Chromium (VI),LB
+37147,34.26976,Benzene,LB
+37147,0.018478716,Manganese,LB
+37147,0.1564979,Phenanthrene,LB
+37147,0.0583731,Fluorene,LB
+37147,0.0126212,Nitrous Oxide,TON
+37147,0.01623436,Ammonia,TON
+37147,0.009349873,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,0.003749724,Acrolein,LB
+37143,0.9229088,Toluene,LB
+37143,1.464859e-05,Manganese,LB
+37131,0.0859028,Anthracene,LB
+37131,0.03732532,Chrysene,LB
+37131,0.019686898,Benzo[a]Pyrene,LB
+37131,0.007316098,Manganese,LB
+37111,66.01842,Hexane,LB
+37111,0.03413286,Chrysene,LB
+37111,60.04502,"2,2,4-Trimethylpentane",LB
+37111,78.80436,Benzene,LB
+37111,0.00495727,Nickel,LB
+37111,0.1535046,PM10 Primary (Filt + Cond),TON
+37119,0.02673078,Benzo[b]Fluoranthene,LB
+37119,0.02673078,Benzo[k]Fluoranthene,LB
+37119,0.2518914,Acenaphthylene,LB
+37119,0.02891687,Methane,TON
+37109,0.0003940684,Fluorene,LB
+37109,0.000343389,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.002230618,Ammonia,TON
+37109,0.002665789,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,3.72491e-05,Benz[a]Anthracene,LB
+37109,0.298717,Toluene,LB
+37109,0.00013050114,Anthracene,LB
+37109,1.201152,Propionaldehyde,LB
+37109,0.261657,Xylenes (Mixed Isomers),LB
+37109,0.03955044,Nickel,LB
+37109,3.003196,Styrene,LB
+37109,20.61266,"1,3-Butadiene",LB
+37109,957.6506,"2,2,4-Trimethylpentane",LB
+37109,0.02999961,Nitrous Oxide,TON
+37107,13.003602,Benzene,LB
+37107,0.002025168,Manganese,LB
+37107,0.01156055,PM10 Primary (Filt + Cond),TON
+37107,0.001425949,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.2427126,Propionaldehyde,LB
+37107,2.012384e-06,Chromium (VI),LB
+37107,0.2200436,Acrolein,LB
+37107,0.05426364,Acenaphthylene,LB
+37097,18.652948,Styrene,LB
+37097,84.59308,Xylenes (Mixed Isomers),LB
+37097,0.0003273992,Chromium (VI),LB
+37097,0.082559,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,561.729,Acetaldehyde,LB
+37097,4.276976,Acenaphthene,LB
+37097,16.631504,Phenanthrene,LB
+37097,3.991671,Elemental Carbon portion of PM2.5-PRI,TON
+37099,13.259054,Hexane,LB
+37099,3.522078,Pyrene,LB
+37099,44.01312,Benzene,LB
+37099,0.4050462,Organic Carbon portion of PM2.5-PRI,TON
+37099,3.297899,PM10 Primary (Filt + Cond),TON
+37089,8.917416,Hexane,LB
+37089,0.01746828,Pyrene,LB
+37089,22.59942,Xylenes (Mixed Isomers),LB
+37089,5.576038e-06,Chromium (VI),LB
+37089,0.004146416,Benzo[b]Fluoranthene,LB
+37089,0.003709758,Chrysene,LB
+37089,0.00599001,Manganese,LB
+37089,5.589776e-05,Mercury,LB
+37089,0.006566969,Methane,TON
+37137,0.01364352,Arsenic,LB
+37137,4989.349,Carbon Dioxide,TON
+37137,0.3959777,PM25-Primary from certain diesel engines,TON
+37137,11.70296,Nitrogen Oxides,TON
+37137,0.4929409,Volatile Organic Compounds,TON
+37137,0.003704194,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,6.52453e-05,Mercury,LB
+37123,327.064,Acetaldehyde,LB
+37123,0.6561571,PM10-Primary from certain diesel engines,TON
+37123,0.0019255288,"Dibenzo[a,h]Anthracene",LB
+37123,0.4952808,Benz[a]Anthracene,LB
+37123,0.846565,Ethyl Benzene,LB
+37123,1.2246384,Propionaldehyde,LB
+37123,0.006224352,Chrysene,LB
+37123,0.6938476,"2,2,4-Trimethylpentane",LB
+37123,0.004751173,PM10-Primary from certain diesel engines,TON
+37123,0.2329048,Nitrogen Oxides,TON
+37123,0.002346228,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.001287823,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,6.138174e-05,Chromium (VI),LB
+37115,0.009324046,"Benzo[g,h,i,]Perylene",LB
+37115,0.2927566,Chrysene,LB
+37115,0.00616248,"Dibenzo[a,h]Anthracene",LB
+37115,2.65721,Phenanthrene,LB
+37115,0.09467409,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.0002364648,PM10 Primary (Filt + Cond),TON
+37113,0.1231232,Ethyl Benzene,LB
+37113,0.17004298,Hexane,LB
+37113,0.0003624984,Pyrene,LB
+37113,0.0003068924,"Benzo[g,h,i,]Perylene",LB
+37113,0.000977146,Acenaphthylene,LB
+37113,0.07061326,Formaldehyde,LB
+37113,0.0011687772,Phenanthrene,LB
+37107,0.8035228,Anthracene,LB
+37107,7.486774e-05,Mercury,LB
+37107,15.12988,Carbon Monoxide,TON
+37107,0.06213882,Organic Carbon portion of PM2.5-PRI,TON
+37107,1.694022,Volatile Organic Compounds,TON
+37105,0.0004112681,Nitrate portion of PM2.5-PRI,TON
+37105,0.01922217,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,0.3803134,Volatile Organic Compounds,TON
+37105,0.08985594,Benz[a]Anthracene,LB
+37105,0.07703226,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.01396196,Ammonia,TON
+37097,0.019845366,"Benzo[g,h,i,]Perylene",LB
+37097,12.42923,"2,2,4-Trimethylpentane",LB
+37097,7.921678e-05,Mercury,LB
+37097,1.056362,PM25-Primary from certain diesel engines,TON
+37097,0.4161141,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.2082086,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,2.645681,Volatile Organic Compounds,TON
+37101,35969.64,Toluene,LB
+37099,64.39458,Acrolein,LB
+37099,0.00478768,Chromium (VI),LB
+37099,1.1146088,Benzo[k]Fluoranthene,LB
+37099,1.072743,Benz[a]Anthracene,LB
+37099,1.70957,Methane,TON
+37099,83.89807,Nitrogen Oxides,TON
+37099,6.452174,PM10 Primary (Filt + Cond),TON
+37093,0.2665386,Chrysene,LB
+37093,0.01876816,Arsenic,LB
+37093,1.389588,PM10 Primary (Filt + Cond),TON
+37093,0.05770354,Sulfur Dioxide,TON
+37093,0.05596015,Sulfate Portion of PM2.5-PRI,TON
+37093,7.127766,Ethyl Benzene,LB
+37093,0.6597296,Anthracene,LB
+37091,5.492906,Benzene,LB
+37085,0.0005932622,Chrysene,LB
+37085,2.572744,Carbon Monoxide,TON
+37085,157.9097,Carbon Dioxide,TON
+37079,32.75594,Formaldehyde,LB
+37079,1.085118e-05,Mercury,LB
+37079,0.00013500532,Acenaphthene,LB
+37079,56.96216,Carbon Dioxide,TON
+37079,7.718794e-07,Nitrate portion of PM2.5-PRI,TON
+37081,301.98,Xylenes (Mixed Isomers),LB
+37081,0.0017579186,Mercury,LB
+37081,1.965545,Ammonia,TON
+37081,1.439658,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,0.0347919,Benzo[a]Pyrene,LB
+37081,0.018354514,Benz[a]Anthracene,LB
+37081,37.0848,Benzene,LB
+37081,0.019799446,Manganese,LB
+37081,0.0003070708,Mercury,LB
+37081,10.181444,Acetaldehyde,LB
+37081,1.7541858,Naphthalene,LB
+37081,0.001287982,Sulfate Portion of PM2.5-PRI,TON
+37081,19.856534,Ethyl Benzene,LB
+37079,814.3026,"1,3-Butadiene",LB
+37079,109.36258,Acrolein,LB
+37079,1.497285,Benzo[k]Fluoranthene,LB
+37079,1.880405,Benzo[a]Pyrene,LB
+37079,0.03354954,Mercury,LB
+37079,32.53164,Phenanthrene,LB
+37079,99.61662,Volatile Organic Compounds,TON
+37077,1.956656,Benzene,LB
+37077,0.70905,Acetaldehyde,LB
+37077,0.004485594,Fluorene,LB
+37077,0.003499254,"Indeno[1,2,3-c,d]Pyrene",LB
+37077,0.0014966974,Chrysene,LB
+37069,12.153384,Hexane,LB
+37069,0.08004888,Nickel,LB
+37069,0.3734796,Styrene,LB
+37069,0.293447,Pyrene,LB
+37069,0.0009393938,Benzo[k]Fluoranthene,LB
+37069,2.709408,Benzene,LB
+37069,371.0613,Carbon Dioxide,TON
+37069,0.02546086,Elemental Carbon portion of PM2.5-PRI,TON
+37069,0.01104965,Ammonia,TON
+37061,4.52454,Pyrene,LB
+37061,421.6072,Formaldehyde,LB
+37061,0.4572622,Organic Carbon portion of PM2.5-PRI,TON
+37055,3.849256e-06,Chrysene,LB
+37055,3.20412e-07,Arsenic,LB
+37055,1.075557e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.001522326,"1,3-Butadiene",LB
+37055,1.671612e-09,Chromium (VI),LB
+37055,1.783167e-08,Nitrate portion of PM2.5-PRI,TON
+37055,0.000284197,Benzo[a]Pyrene,LB
+37055,0.006875396,Volatile Organic Compounds,TON
+37049,0.0015252512,Hexane,LB
+37049,2.201994e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,2.184084e-06,Benzo[a]Pyrene,LB
+37049,1.351899e-05,Phenanthrene,LB
+37049,0.03785408,Carbon Dioxide,TON
+37049,0.0001467745,Nitrogen Oxides,TON
+37049,1.24019e-06,Organic Carbon portion of PM2.5-PRI,TON
+37049,6.47725e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,7.214519e-08,Sulfate Portion of PM2.5-PRI,TON
+37045,0.444686,Sulfur Dioxide,TON
+37045,0.4415615,Sulfate Portion of PM2.5-PRI,TON
+37045,3.208618,Anthracene,LB
+37045,0.0216626,"Dibenzo[a,h]Anthracene",LB
+37039,11.98856,Toluene,LB
+37039,0.15516716,Benzo[a]Pyrene,LB
+37039,0.006326934,"Dibenzo[a,h]Anthracene",LB
+37039,0.01730135,Sulfate Portion of PM2.5-PRI,TON
+37045,3.521516,Styrene,LB
+37045,0.6296706,Benz[a]Anthracene,LB
+37045,3.837602e-05,Mercury,LB
+37045,0.03019033,Ammonia,TON
+37045,0.003412058,Nitrate portion of PM2.5-PRI,TON
+37045,9.69572,Nitrogen Oxides,TON
+37045,0.01355347,Sulfur Dioxide,TON
+37033,0.808032,Benzene,LB
+37033,0.02792221,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.001705888,Sulfur Dioxide,TON
+37033,4.143878,Pyrene,LB
+37033,0.009670142,"Benzo[g,h,i,]Perylene",LB
+37033,3.402452,Fluoranthene,LB
+37033,0.5095522,Benz[a]Anthracene,LB
+37033,0.07325576,Manganese,LB
+37033,42.99518,Carbon Monoxide,TON
+37033,0.617113,PM10-Primary from certain diesel engines,TON
+37031,0.0003813074,Styrene,LB
+37031,0.012291874,Hexane,LB
+37031,0.0348282,Xylenes (Mixed Isomers),LB
+37031,0.0165477,Benzene,LB
+37031,0.000835085,Naphthalene,LB
+37031,9.457283e-06,Methane,TON
+37031,0.006652257,Carbon Monoxide,TON
+37031,0.0005269443,Nitrogen Oxides,TON
+37031,2.635871e-06,Sulfur Dioxide,TON
+37195,3.179344,Propionaldehyde,LB
+37195,2.441738e-05,Chromium (VI),LB
+37195,0.3206702,Acenaphthylene,LB
+37195,0.09166182,Chrysene,LB
+37195,1.7530216,"2,2,4-Trimethylpentane",LB
+37195,5.935994,Benzene,LB
+37195,2.164496,Ethyl Benzene,LB
+37195,1.892059,"1,3-Butadiene",LB
+37195,4.944458,Acrolein,LB
+37195,0.005768288,Arsenic,LB
+37195,0.7731862,Phenanthrene,LB
+37195,0.4311188,Fluorene,LB
+37195,0.1737189,PM25-Primary from certain diesel engines,TON
+37195,0.002206198,Nitrous Oxide,TON
+37195,3.061238,Nitrogen Oxides,TON
+37195,0.008934264,Sulfur Dioxide,TON
+37195,6.084092,Styrene,LB
+37195,0.01294144,Benzo[k]Fluoranthene,LB
+37195,0.6096116,Chrysene,LB
+37195,0.0001027584,Mercury,LB
+37195,0.06738468,Nickel,LB
+37195,2.056972,PM10-Primary from certain diesel engines,TON
+37189,0.11274264,Styrene,LB
+37189,0.2547206,"1,3-Butadiene",LB
+37189,0.02739204,Anthracene,LB
+37189,0.0003286376,"Benzo[g,h,i,]Perylene",LB
+37189,0.0003988676,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,0.0015669092,Benzo[b]Fluoranthene,LB
+37189,0.1939208,"2,2,4-Trimethylpentane",LB
+37189,0.0014837462,Manganese,LB
+37189,0.8580718,Naphthalene,LB
+37189,0.002730168,Methane,TON
+37189,0.01772582,PM10-Primary from certain diesel engines,TON
+37189,0.01630814,PM25-Primary from certain diesel engines,TON
+37189,0.0004401849,Sulfate Portion of PM2.5-PRI,TON
+37183,184.0364,Naphthalene,LB
+37183,0.004281389,Nitrate portion of PM2.5-PRI,TON
+37183,2.571119,PM10 Primary (Filt + Cond),TON
+37183,3.035744,Anthracene,LB
+37183,55.70218,Propionaldehyde,LB
+37183,5.923098,Pyrene,LB
+37021,18.484132,Pyrene,LB
+37021,0.05912152,Benzo[k]Fluoranthene,LB
+37021,4.559268,Benz[a]Anthracene,LB
+37017,44.3968,Carbon Monoxide,TON
+37017,0.5031739,Elemental Carbon portion of PM2.5-PRI,TON
+37017,4.156942,Acenaphthylene,LB
+37015,0.0006717264,"Dibenzo[a,h]Anthracene",LB
+37015,0.05769194,PM10-Primary from certain diesel engines,TON
+37015,0.7972602,Nitrogen Oxides,TON
+37015,1.8929196,Ethyl Benzene,LB
+37015,3.334622,Toluene,LB
+37015,3.236452,Propionaldehyde,LB
+37015,0.007837208,Ammonia,TON
+37015,0.1749342,PM10 Primary (Filt + Cond),TON
+37015,0.002321488,Sulfate Portion of PM2.5-PRI,TON
+37013,0.3265122,Pyrene,LB
+37013,0.074911,"Indeno[1,2,3-c,d]Pyrene",LB
+37013,73.97614,Formaldehyde,LB
+37003,0.3933726,Ethyl Benzene,LB
+37003,0.08559856,"1,3-Butadiene",LB
+37003,0.0005482644,Anthracene,LB
+37003,0.00019760478,Chrysene,LB
+37003,0.499222,"2,2,4-Trimethylpentane",LB
+37003,0.0006380086,Acenaphthene,LB
+37067,3.11636,Ethyl Benzene,LB
+37067,0.5582414,Acrolein,LB
+37067,0.01016283,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.0011079642,Nickel,LB
+37027,0.04451644,Naphthalene,LB
+37027,1.076611,Carbon Monoxide,TON
+37027,0.0005350071,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.5221774,Ethyl Benzene,LB
+37027,0.09478042,Acrolein,LB
+37027,0.0007936704,Anthracene,LB
+37027,8.863732e-06,Chromium (VI),LB
+37027,2.749888,Benzene,LB
+37177,0.2501674,Ethyl Benzene,LB
+37177,0.2329554,Hexane,LB
+37177,0.7489812,"2,2,4-Trimethylpentane",LB
+37177,0.2084708,Benzene,LB
+37133,0.06268878,Manganese,LB
+37133,0.02250226,Nickel,LB
+37133,0.09829122,Phenanthrene,LB
+37133,0.2599483,PM10 Primary (Filt + Cond),TON
+37133,18.413412,Hexane,LB
+37133,36.93,Xylenes (Mixed Isomers),LB
+37133,0.02091138,Benzo[b]Fluoranthene,LB
+37133,0.03950822,Benzo[a]Pyrene,LB
+37069,5.121486e-06,"Benzo[g,h,i,]Perylene",LB
+37069,3.006134e-05,Chrysene,LB
+37069,0.0001910316,Arsenic,LB
+37069,0.0001565492,Elemental Carbon portion of PM2.5-PRI,TON
+37069,1.012813e-06,Nitrate portion of PM2.5-PRI,TON
+37053,0.0006372748,Benzo[b]Fluoranthene,LB
+37053,9.0695e-05,"Dibenzo[a,h]Anthracene",LB
+37053,176.11468,Styrene,LB
+37053,12.292464,Pyrene,LB
+37053,1.8719952,Benzo[b]Fluoranthene,LB
+37053,2320.434,Formaldehyde,LB
+37053,0.05415542,Mercury,LB
+37053,1.0354002,Arsenic,LB
+37053,15.038206,Fluorene,LB
+37053,0.5664485,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.007470228,Nitrate portion of PM2.5-PRI,TON
+37053,2.881296,PM2.5 Primary (Filt + Cond),TON
+37053,121.9548,Volatile Organic Compounds,TON
+37051,1847.851,Benzene,LB
+37051,0.005267524,Mercury,LB
+37051,2.680464,Fluorene,LB
+37051,0.6948612,Methane,TON
+37051,0.001560123,Nitrate portion of PM2.5-PRI,TON
+37051,0.9681019,PM10 Primary (Filt + Cond),TON
+37051,0.544066,PM2.5 Primary (Filt + Cond),TON
+37051,0.01668895,Sulfate Portion of PM2.5-PRI,TON
+37051,2753.708,Hexane,LB
+37051,0.0005254298,Chromium (VI),LB
+37047,0.369649,Styrene,LB
+37047,2.094452,Acrolein,LB
+37047,1.3895386,Propionaldehyde,LB
+37047,0.2579096,Pyrene,LB
+37047,0.0007586764,Benzo[k]Fluoranthene,LB
+37047,0.08748057,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.1834836,PM10 Primary (Filt + Cond),TON
+37041,0.614988,Pyrene,LB
+37041,0.466311,Fluoranthene,LB
+37041,0.08541178,Chrysene,LB
+37041,59.17696,Formaldehyde,LB
+37041,1.3111592e-05,Mercury,LB
+37041,0.010020542,Nickel,LB
+37041,0.01760974,Methane,TON
+37041,1.896212,Carbon Monoxide,TON
+37041,0.1782167,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.2746969,PM2.5 Primary (Filt + Cond),TON
+37031,0.0934286,Propionaldehyde,LB
+37031,3.289952e-05,"Dibenzo[a,h]Anthracene",LB
+37031,1.584783,Acetaldehyde,LB
+37031,0.02721708,Phenanthrene,LB
+37031,0.010176242,Fluorene,LB
+37031,6.004659e-06,Nitrate portion of PM2.5-PRI,TON
+37031,0.001252308,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.1559997,PM10 Primary (Filt + Cond),TON
+37017,9.119816,Acrolein,LB
+37017,0.0008164002,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,0.7907464,Styrene,LB
+37019,0.2096918,Anthracene,LB
+37019,0.6237412,Pyrene,LB
+37019,0.09237538,Chrysene,LB
+37019,0.04888778,Benzo[a]Pyrene,LB
+37019,0.0019987414,"Dibenzo[a,h]Anthracene",LB
+37019,0.1561509,Benz[a]Anthracene,LB
+37019,6.690508,Naphthalene,LB
+37019,0.1735027,PM10-Primary from certain diesel engines,TON
+37015,0.000546261,Mercury,LB
+37015,0.0104449,Arsenic,LB
+37015,6.63611,Naphthalene,LB
+37015,764.3068,Toluene,LB
+37015,0.10953068,Anthracene,LB
+37167,0.03886224,Ethyl Benzene,LB
+37167,0.018216934,"1,3-Butadiene",LB
+37167,0.18612198,Acrolein,LB
+37167,0.00012462208,Anthracene,LB
+37167,1.3225212e-05,"Benzo[g,h,i,]Perylene",LB
+37167,0.0002708328,Fluoranthene,LB
+37167,4.005766e-05,Benz[a]Anthracene,LB
+37167,0.002376336,Manganese,LB
+37167,1.3982818e-06,Nickel,LB
+37167,0.4775177,Methane,TON
+37167,0.6017627,Carbon Monoxide,TON
+37167,1.909056e-06,Nitrate portion of PM2.5-PRI,TON
+37167,0.3024947,Nitrogen Oxides,TON
+37021,8.458072,Propionaldehyde,LB
+37021,0.007099357,Nitrous Oxide,TON
+37021,0.4579205,PM2.5 Primary (Filt + Cond),TON
+37017,2.141814e-05,Mercury,LB
+37017,0.367784,Phenanthrene,LB
+37017,0.00127734,Sulfate Portion of PM2.5-PRI,TON
+37021,2.673576e-05,Chromium (VI),LB
+37021,0.0033421,Nickel,LB
+37021,0.4507084,Phenanthrene,LB
+37021,0.03388391,Methane,TON
+37021,0.02499378,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.0014689376,"Dibenzo[a,h]Anthracene",LB
+37011,0.3999906,Fluorene,LB
+37011,300.8365,Carbon Dioxide,TON
+37011,1.8850104,"1,3-Butadiene",LB
+37011,4.745564,Acrolein,LB
+37011,1.550566,Hexane,LB
+37011,0.0713546,Chrysene,LB
+37011,0.05083037,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.1606932,PM10 Primary (Filt + Cond),TON
+37081,0.03891288,Manganese,LB
+37043,0.0012904156,Benz[a]Anthracene,LB
+37043,0.004980979,Sulfur Dioxide,TON
+37031,0.02559278,Styrene,LB
+37031,0.000832897,Anthracene,LB
+37031,0.0017658752,Pyrene,LB
+37031,0.001626088,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.5337246,Ethyl Benzene,LB
+37037,0.1300081,"1,3-Butadiene",LB
+37037,0.0008210362,Anthracene,LB
+37037,0.005456948,"Benzo[g,h,i,]Perylene",LB
+37037,0.001070296,Benzo[b]Fluoranthene,LB
+37037,0.00011742876,Mercury,LB
+37037,0.002245212,Arsenic,LB
+37037,10.283116,Acetaldehyde,LB
+37037,0.000874127,Acenaphthene,LB
+37037,0.005004848,Phenanthrene,LB
+37037,0.0017706404,Fluorene,LB
+37037,0.0456252,Naphthalene,LB
+37135,0.007580478,Acenaphthene,LB
+37135,1293.982,Carbon Dioxide,TON
+37135,0.0129939,Organic Carbon portion of PM2.5-PRI,TON
+37135,0.0008522718,Sulfate Portion of PM2.5-PRI,TON
+37135,0.7595386,Acrolein,LB
+37135,0.05474838,"Benzo[g,h,i,]Perylene",LB
+37135,0.03525474,Acenaphthylene,LB
+37135,0.00910158,Benz[a]Anthracene,LB
+37129,0.383358,Volatile Organic Compounds,TON
+37103,0.009842816,Sulfur Dioxide,TON
+37103,0.1442935,Volatile Organic Compounds,TON
+37103,6.086448,Benzene,LB
+37103,0.002415878,Benzo[b]Fluoranthene,LB
+37103,0.010474332,Acenaphthylene,LB
+37103,0.004508414,Benzo[a]Pyrene,LB
+37103,323.9714,Carbon Dioxide,TON
+37103,1.561654e-05,Nitrate portion of PM2.5-PRI,TON
+37175,0.9005402,Benzo[b]Fluoranthene,LB
+37175,2696.396,"2,2,4-Trimethylpentane",LB
+37175,3139.094,Benzene,LB
+37175,1.343496,Methane,TON
+37175,1.638059,PM2.5 Primary (Filt + Cond),TON
+37175,5.043318,Pyrene,LB
+37167,6081.796,Hexane,LB
+37167,4.629582,Anthracene,LB
+37167,1.2956894,Arsenic,LB
+37167,29.32384,Phenanthrene,LB
+37167,1170.475,Carbon Monoxide,TON
+37167,3.412575,PM2.5 Primary (Filt + Cond),TON
+37167,1.05448,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.07383182,Benz[a]Anthracene,LB
+37155,0.805915,Phenanthrene,LB
+37155,69.5479,Carbon Monoxide,TON
+37155,3332.011,Carbon Dioxide,TON
+37155,0.3137274,PM10 Primary (Filt + Cond),TON
+37155,534.8544,Toluene,LB
+37149,2.510236,Styrene,LB
+37149,3.927804e-05,Mercury,LB
+37149,0.8898906,PM10-Primary from certain diesel engines,TON
+37149,0.04164576,Ammonia,TON
+37149,0.00839079,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.2181324,Chrysene,LB
+37153,4.309042,Pyrene,LB
+37153,72.71078,Benzene,LB
+37153,0.03002162,Arsenic,LB
+37153,2.617772,Acenaphthene,LB
+37153,0.1896885,Methane,TON
+37153,0.1166949,Organic Carbon portion of PM2.5-PRI,TON
+37143,0.7038466,Acrolein,LB
+37143,0.0225003,Benz[a]Anthracene,LB
+37143,0.005769572,Methane,TON
+37137,0.08271854,Chrysene,LB
+37137,8.182226,Naphthalene,LB
+37137,0.3221524,PM10-Primary from certain diesel engines,TON
+37137,0.4397332,PM10 Primary (Filt + Cond),TON
+37137,0.0319628,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.4094853,Volatile Organic Compounds,TON
+37131,0.001975642,Organic Carbon portion of PM2.5-PRI,TON
+37131,1.445955,Toluene,LB
+37131,4.53278e-05,Benzo[k]Fluoranthene,LB
+37131,0.08845662,Acenaphthylene,LB
+37119,103.00056,Toluene,LB
+37119,0.1143798,Organic Carbon portion of PM2.5-PRI,TON
+37119,5.642922,Volatile Organic Compounds,TON
+37119,0.00262836,Styrene,LB
+37119,0.04609986,Formaldehyde,LB
+37119,8.780276e-05,Benz[a]Anthracene,LB
+37119,0.15617488,Benzene,LB
+37119,0.0001106893,Organic Carbon portion of PM2.5-PRI,TON
+37119,0.001944838,Volatile Organic Compounds,TON
+37107,0.00082769,Nickel,LB
+37107,0.091734,Phenanthrene,LB
+37107,0.05356378,Fluorene,LB
+37107,0.1483258,Carbon Monoxide,TON
+37107,0.02350573,PM10 Primary (Filt + Cond),TON
+37107,0.0005045881,Sulfur Dioxide,TON
+37107,0.5003506,Toluene,LB
+37103,0.09810876,Ethyl Benzene,LB
+37103,0.2341444,Acrolein,LB
+37103,0.0004255214,Nickel,LB
+37103,0.001025072,Methane,TON
+37099,1.9286762e-05,Chromium (VI),LB
+37099,0.002375212,"Benzo[g,h,i,]Perylene",LB
+37099,0.011500998,Nickel,LB
+37099,36.82306,Acetaldehyde,LB
+37099,0.2857888,Acenaphthene,LB
+37099,919.647,Carbon Dioxide,TON
+37099,0.01411001,Ammonia,TON
+37099,0.0005849882,Nitrate portion of PM2.5-PRI,TON
+37099,0.2670403,PM10 Primary (Filt + Cond),TON
+37097,23.67802,Styrene,LB
+37097,4405.848,Xylenes (Mixed Isomers),LB
+37097,0.5300562,Methane,TON
+37097,0.06659168,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.001333166,Nitrate portion of PM2.5-PRI,TON
+37097,0.1402327,Sulfur Dioxide,TON
+37097,36.40501,Volatile Organic Compounds,TON
+37095,1.2318294,"1,3-Butadiene",LB
+37095,0.00147879,"Benzo[g,h,i,]Perylene",LB
+37095,0.2655078,Fluoranthene,LB
+37095,0.2067456,Acenaphthylene,LB
+37095,4.27998,Benzene,LB
+37095,0.2117668,PM10-Primary from certain diesel engines,TON
+37095,0.1285958,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.4846886,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,31.56568,Acrolein,LB
+37095,0.5395715,PM2.5 Primary (Filt + Cond),TON
+37085,0.013249616,Pyrene,LB
+37085,0.005163372,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.005144104,Nitrous Oxide,TON
+37085,1.734506e-05,Nitrate portion of PM2.5-PRI,TON
+37083,4.24074,Propionaldehyde,LB
+37083,0.310142,"Benzo[g,h,i,]Perylene",LB
+37083,0.08147114,Benzo[b]Fluoranthene,LB
+37083,0.08147114,Benzo[k]Fluoranthene,LB
+37083,96.25394,Formaldehyde,LB
+37083,0.00267339,"Dibenzo[a,h]Anthracene",LB
+37083,0.08031244,Benz[a]Anthracene,LB
+37083,0.018489044,Manganese,LB
+37083,0.019862114,Arsenic,LB
+37083,0.2551944,Acenaphthene,LB
+37083,13.253412,Naphthalene,LB
+37083,0.06400774,Organic Carbon portion of PM2.5-PRI,TON
+37083,8.303825,Volatile Organic Compounds,TON
+37081,3997.47,Ethyl Benzene,LB
+37081,5.877418,Anthracene,LB
+37081,2.2039,Benzo[k]Fluoranthene,LB
+37081,2.169428,Benz[a]Anthracene,LB
+37081,1.5674998,Arsenic,LB
+37081,37.26086,Phenanthrene,LB
+37081,13.863676,Fluorene,LB
+37081,3.082484,Sulfur Dioxide,TON
+37077,0.02576422,"Benzo[g,h,i,]Perylene",LB
+37077,3.393837,PM25-Primary from certain diesel engines,TON
+37077,0.648255,Ammonia,TON
+37077,0.008907574,Nitrate portion of PM2.5-PRI,TON
+37077,116.9621,Nitrogen Oxides,TON
+37077,4.151616,Anthracene,LB
+37077,641.3996,Acetaldehyde,LB
+37077,0.07867824,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.0002039378,Manganese,LB
+37071,0.8368202,Acetaldehyde,LB
+37071,0.014123998,Phenanthrene,LB
+37071,0.001923506,PM10 Primary (Filt + Cond),TON
+37071,9.049122,Toluene,LB
+37071,1.970532,Hexane,LB
+37071,0.004340858,Pyrene,LB
+37069,0.0165558,Benz[a]Anthracene,LB
+37069,822.6833,Carbon Dioxide,TON
+37069,0.01066435,Organic Carbon portion of PM2.5-PRI,TON
+37069,0.01724454,Sulfur Dioxide,TON
+37069,0.0006108883,Sulfate Portion of PM2.5-PRI,TON
+37067,198.11198,Xylenes (Mixed Isomers),LB
+37067,0.0008071002,Mercury,LB
+37067,13.828844,Fluorene,LB
+37067,5.036808,PM25-Primary from certain diesel engines,TON
+37067,0.0876219,Nitrous Oxide,TON
+37065,41.05028,Toluene,LB
+37065,28.1765,"2,2,4-Trimethylpentane",LB
+37061,5.455123,Carbon Monoxide,TON
+37061,0.002452322,Nitrous Oxide,TON
+37061,2.09913,Styrene,LB
+37061,4.692416,"1,3-Butadiene",LB
+37061,0.003734152,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,2.089232e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37043,2.525258e-08,Nitrate portion of PM2.5-PRI,TON
+37081,12.865698,Ethyl Benzene,LB
+37065,1.738296e-05,Chromium (VI),LB
+37065,0.17275952,"1,3-Butadiene",LB
+37065,1.595809,"2,2,4-Trimethylpentane",LB
+37065,0.003331878,Arsenic,LB
+37065,0.0012232362,Acenaphthene,LB
+37111,1.935279,Xylenes (Mixed Isomers),LB
+37111,0.0008389612,Chrysene,LB
+37111,0.009814547,Ammonia,TON
+37177,243.0954,Hexane,LB
+37169,2120.94,Toluene,LB
+37169,0.3121548,Pyrene,LB
+37169,0.0006749758,Mercury,LB
+37169,0.012904908,Arsenic,LB
+37169,0.07094516,PM2.5 Primary (Filt + Cond),TON
+37169,0.002151427,Sulfate Portion of PM2.5-PRI,TON
+37163,0.015213426,"Dibenzo[a,h]Anthracene",LB
+37163,0.06333994,Arsenic,LB
+37163,0.2661955,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,2.69819,Acrolein,LB
+37149,0.0016689744,"Benzo[g,h,i,]Perylene",LB
+37149,0.0011430814,Benzo[k]Fluoranthene,LB
+37149,0.01272558,Ammonia,TON
+37149,0.03948397,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.001954412,Nitrous Oxide,TON
+37149,0.003393212,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.08793888,Chrysene,LB
+37149,0.001820561,"Dibenzo[a,h]Anthracene",LB
+37145,0.003538912,Nitrous Oxide,TON
+37145,0.004173885,Sulfate Portion of PM2.5-PRI,TON
+37145,0.489703,Acenaphthylene,LB
+37145,2.362736,"2,2,4-Trimethylpentane",LB
+37145,0.02001246,Manganese,LB
+37145,7.178726,Acrolein,LB
+37199,0.2080494,Elemental Carbon portion of PM2.5-PRI,TON
+37199,37.91433,Nitrogen Oxides,TON
+37199,281.162,"1,3-Butadiene",LB
+37199,6757.926,Toluene,LB
+37199,1628.7054,Hexane,LB
+37199,4210.55,Xylenes (Mixed Isomers),LB
+37199,502.441,Formaldehyde,LB
+37187,3.754984e-06,Mercury,LB
+37187,0.0007851064,Arsenic,LB
+37187,0.09074722,Acenaphthene,LB
+37187,0.05777007,PM25-Primary from certain diesel engines,TON
+37187,0.0004854885,Nitrous Oxide,TON
+37187,0.006011578,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,0.002128645,Sulfur Dioxide,TON
+37187,0.001006935,Sulfate Portion of PM2.5-PRI,TON
+37187,0.1548127,Volatile Organic Compounds,TON
+37187,5.545944e-06,Chromium (VI),LB
+37187,0.002797316,Benzo[b]Fluoranthene,LB
+37187,0.1564539,Fluoranthene,LB
+37187,0.009382766,Benzo[a]Pyrene,LB
+37185,919.58,Hexane,LB
+37185,2328.978,Xylenes (Mixed Isomers),LB
+37185,138.65502,Benzene,LB
+37185,18.13061,Volatile Organic Compounds,TON
+37181,0.1300863,Hexane,LB
+37181,0.34723,Xylenes (Mixed Isomers),LB
+37181,0.02994987,Volatile Organic Compounds,TON
+37181,41.85188,Ethyl Benzene,LB
+37181,1.288909,Propionaldehyde,LB
+37181,0.05013628,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,0.10039856,Fluoranthene,LB
+37181,0.0003299094,Mercury,LB
+37181,3.43902,Naphthalene,LB
+37181,0.05001556,Methane,TON
+37181,0.05010518,Ammonia,TON
+37181,1.228804,Volatile Organic Compounds,TON
+37169,0.000332616,Pyrene,LB
+37169,0.001498763,Ammonia,TON
+37169,0.7670276,Toluene,LB
+37169,0.494909,Propionaldehyde,LB
+37169,3.495818e-06,Chromium (VI),LB
+37169,0.9164492,Benzene,LB
+37169,3.629864e-06,Mercury,LB
+37169,0.11450156,Phenanthrene,LB
+37169,0.0646537,Fluorene,LB
+37169,0.006261409,Methane,TON
+37169,0.04252783,PM25-Primary from certain diesel engines,TON
+37169,0.06509748,PM10 Primary (Filt + Cond),TON
+37169,0.04500243,PM2.5 Primary (Filt + Cond),TON
+37169,0.6504834,Nickel,LB
+37169,242.274,Acrolein,LB
+37169,3.222474,Benzo[b]Fluoranthene,LB
+37169,59.93822,Acenaphthylene,LB
+37165,0.000343789,Pyrene,LB
+37165,0.0753398,Xylenes (Mixed Isomers),LB
+37165,0.0002496472,Acenaphthylene,LB
+37165,28.77174,Formaldehyde,LB
+37165,0.0005403454,Phenanthrene,LB
+37165,0.0003336899,Elemental Carbon portion of PM2.5-PRI,TON
+37165,0.009421998,PM10 Primary (Filt + Cond),TON
+37165,157.37868,Styrene,LB
+37165,11.01569,Pyrene,LB
+37165,6.10541,"Benzo[g,h,i,]Perylene",LB
+37165,9.65306,Fluoranthene,LB
+37165,0.007339315,Nitrate portion of PM2.5-PRI,TON
+37165,6599.152,Benzene,LB
+37165,0.9475476,Arsenic,LB
+37155,6.375156,"2,2,4-Trimethylpentane",LB
+37155,0.016327334,Arsenic,LB
+37155,0.2259229,Elemental Carbon portion of PM2.5-PRI,TON
+37155,19.72941,Acrolein,LB
+37155,8.104094e-05,Chromium (VI),LB
+37155,0.02739824,Benzo[a]Pyrene,LB
+37161,3722.239,Carbon Monoxide,TON
+37161,0.01755538,Nitrate portion of PM2.5-PRI,TON
+37161,480.8022,Nitrogen Oxides,TON
+37143,2.738062e-08,Nitrate portion of PM2.5-PRI,TON
+37143,0.017827994,Ethyl Benzene,LB
+37143,0.0005626624,Acrolein,LB
+37143,0.00012886828,Acenaphthylene,LB
+37143,3.053706e-06,Sulfur Dioxide,TON
+37141,0.4541534,Benzo[a]Pyrene,LB
+37141,0.10105174,Nickel,LB
+37141,1.9316952,Acenaphthene,LB
+37141,7.545654,Phenanthrene,LB
+37141,9161.245,Carbon Dioxide,TON
+37141,0.007941523,Nitrate portion of PM2.5-PRI,TON
+37141,1.707974,PM2.5 Primary (Filt + Cond),TON
+37139,14.190098,Formaldehyde,LB
+37139,0.014390872,Manganese,LB
+37139,0.002270634,Nickel,LB
+37139,729.3073,Carbon Dioxide,TON
+37139,0.03810375,Nitrous Oxide,TON
+37137,0.02022744,Fluoranthene,LB
+37137,0.003740744,Chrysene,LB
+37137,2.905104,Formaldehyde,LB
+37137,0.0019407204,Benzo[a]Pyrene,LB
+37137,0.03719828,Styrene,LB
+37137,0.007836607,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.001171888,Ammonia,TON
+37137,3.444585e-05,Nitrate portion of PM2.5-PRI,TON
+37137,0.2793079,Nitrogen Oxides,TON
+37137,0.01575762,Volatile Organic Compounds,TON
+37133,23879.62,Benzene,LB
+37133,128.4224,Phenanthrene,LB
+37133,1228.648,Naphthalene,LB
+37133,2.111326,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.9263818,Styrene,LB
+37129,0.07212408,Pyrene,LB
+37129,0.012866588,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.19867614,Acenaphthylene,LB
+37129,0.010885584,Chrysene,LB
+37129,0.010964802,Benz[a]Anthracene,LB
+37129,0.0335357,Manganese,LB
+37129,0.2365704,Phenanthrene,LB
+37129,1.422564,Nitrogen Oxides,TON
+37129,0.009675629,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.02823398,Benzo[k]Fluoranthene,LB
+37127,1.3154522,Chrysene,LB
+37127,11.429894,Phenanthrene,LB
+37127,14185.44,Carbon Dioxide,TON
+37127,0.03629979,Nitrous Oxide,TON
+37125,49.5109,Hexane,LB
+37125,0.17356332,Benzo[a]Pyrene,LB
+37125,0.2354966,Manganese,LB
+37125,0.2378422,Nickel,LB
+37125,6.584226,Acenaphthene,LB
+37125,11750.2,Carbon Dioxide,TON
+37125,1.540767,PM2.5 Primary (Filt + Cond),TON
+37125,0.1365684,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.101579,Sulfur Dioxide,TON
+37125,0.06233499,Sulfate Portion of PM2.5-PRI,TON
+37125,11.53998,Volatile Organic Compounds,TON
+37007,519.8894,Xylenes (Mixed Isomers),LB
+37007,0.010267796,Manganese,LB
+37007,0.1328209,Acenaphthene,LB
+37007,0.007118693,Nitrous Oxide,TON
+37007,0.07872213,PM10 Primary (Filt + Cond),TON
+37077,20.09388,Benzene,LB
+37077,0.006757266,Nickel,LB
+37077,0.010360892,Arsenic,LB
+37077,0.06127244,Methane,TON
+37077,0.00377229,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.007020986,Anthracene,LB
+37077,16.073486,Formaldehyde,LB
+37053,10.005936,Toluene,LB
+37053,3.892046,Hexane,LB
+37053,0.004049174,Anthracene,LB
+37053,0.008429154,Pyrene,LB
+37053,0.04175695,PM10 Primary (Filt + Cond),TON
+37029,0.0001695245,Anthracene,LB
+37029,0.0441963,Propionaldehyde,LB
+37029,0.0003541574,Pyrene,LB
+37029,0.4045906,Xylenes (Mixed Isomers),LB
+37029,0.001901966,PM10 Primary (Filt + Cond),TON
+37141,0.11660658,Acrolein,LB
+37141,0.2606386,Propionaldehyde,LB
+37141,0.001304001,Benzo[b]Fluoranthene,LB
+37141,0.001304001,Benzo[k]Fluoranthene,LB
+37141,0.0011256972,Benz[a]Anthracene,LB
+37141,0.006184468,Phenanthrene,LB
+37141,0.1094261,Nitrogen Oxides,TON
+37093,0.03300762,Phenanthrene,LB
+37093,0.01277334,Nitrous Oxide,TON
+37093,3.211324e-05,Nitrate portion of PM2.5-PRI,TON
+37093,0.01882935,Sulfur Dioxide,TON
+37093,0.1705439,Styrene,LB
+37093,1.421157,Propionaldehyde,LB
+37093,0.0108985,Pyrene,LB
+37093,0.008812214,"Indeno[1,2,3-c,d]Pyrene",LB
+37093,6.358666,"2,2,4-Trimethylpentane",LB
+37091,0.005340464,Styrene,LB
+37091,0.0236115,"1,3-Butadiene",LB
+37091,0.1717662,Hexane,LB
+37091,0.0001941036,Benzo[b]Fluoranthene,LB
+37091,8.41104e-06,"Dibenzo[a,h]Anthracene",LB
+37091,0.2328201,Carbon Monoxide,TON
+37091,9.64051e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37085,5880.684,Ethyl Benzene,LB
+37085,189.33226,Styrene,LB
+37085,1296.962,"1,3-Butadiene",LB
+37085,11.43552,"Benzo[g,h,i,]Perylene",LB
+37085,2.881766,Benzo[k]Fluoranthene,LB
+37085,37.36026,Acenaphthylene,LB
+37085,2.667216,Chrysene,LB
+37085,4.286584,Benzo[a]Pyrene,LB
+37085,0.12521826,Mercury,LB
+37085,3024.542,Acetaldehyde,LB
+37085,16.594112,Fluorene,LB
+37085,181008,Carbon Dioxide,TON
+37085,1.084078,Elemental Carbon portion of PM2.5-PRI,TON
+37085,1.928553,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,179.5269,Volatile Organic Compounds,TON
+37077,0.0232411,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.2398504,Acenaphthylene,LB
+37077,0.03304252,Benz[a]Anthracene,LB
+37077,3.426244,Naphthalene,LB
+37077,0.03605782,Benzo[b]Fluoranthene,LB
+37077,0.3015808,Acenaphthylene,LB
+37059,35.568,Hexane,LB
+37059,44.66142,Propionaldehyde,LB
+37059,0.466986,Ammonia,TON
+37059,5.462785,Volatile Organic Compounds,TON
+37059,0.07874408,Arsenic,LB
+37059,3.785944,Ethyl Benzene,LB
+37059,8.961078,Acrolein,LB
+37059,2.870576,Hexane,LB
+37059,0.02224398,Benzo[b]Fluoranthene,LB
+37059,0.6211592,Acenaphthylene,LB
+37059,0.003096238,Arsenic,LB
+37059,0.36948,Acenaphthene,LB
+37059,0.1249212,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.003781063,Nitrous Oxide,TON
+37059,0.01343208,Ammonia,TON
+37059,0.00135809,Nitrate portion of PM2.5-PRI,TON
+37059,0.1048501,Organic Carbon portion of PM2.5-PRI,TON
+37059,0.00531724,Sulfate Portion of PM2.5-PRI,TON
+37057,0.004834252,Acenaphthylene,LB
+37057,0.3438368,Formaldehyde,LB
+37057,1.1755888,"2,2,4-Trimethylpentane",LB
+37057,0.05509296,Naphthalene,LB
+37057,5.812699e-05,Ammonia,TON
+37057,0.0004487748,PM2.5 Primary (Filt + Cond),TON
+37055,0.001673609,Benzo[b]Fluoranthene,LB
+37055,0.05960766,Fluoranthene,LB
+37055,0.0002288016,Benzo[k]Fluoranthene,LB
+37055,3.323994,Acetaldehyde,LB
+37055,0.005697333,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.02324094,PM10 Primary (Filt + Cond),TON
+37051,838.6726,Toluene,LB
+37051,4.877912,Propionaldehyde,LB
+37051,0.09510546,Chrysene,LB
+37051,316.128,Benzene,LB
+37051,0.001795417,Mercury,LB
+37051,1.5307856,Phenanthrene,LB
+37051,0.03071348,Elemental Carbon portion of PM2.5-PRI,TON
+37051,0.0005701755,Nitrate portion of PM2.5-PRI,TON
+37051,0.09482399,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,0.007028651,Sulfate Portion of PM2.5-PRI,TON
+37051,4.535202,Volatile Organic Compounds,TON
+37043,0.0555386,Propionaldehyde,LB
+37043,0.000943559,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,2.166188e-05,"Dibenzo[a,h]Anthracene",LB
+37043,4.880124e-06,Mercury,LB
+37039,7.94152,Ethyl Benzene,LB
+37039,7.017592,"1,3-Butadiene",LB
+37039,0.010220872,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,7.424834,Carbon Monoxide,TON
+37039,0.06765194,Sulfur Dioxide,TON
+37039,0.007584006,Benzo[b]Fluoranthene,LB
+37039,64.3249,Formaldehyde,LB
+37039,0.0254373,Benzo[a]Pyrene,LB
+37039,6.30564,Benzene,LB
+37039,583.8551,Carbon Dioxide,TON
+37039,0.09485462,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.001181364,Nitrous Oxide,TON
+37039,0.002610861,Sulfate Portion of PM2.5-PRI,TON
+37025,0.02761154,"2,2,4-Trimethylpentane",LB
+37025,8.729964e-05,PM10 Primary (Filt + Cond),TON
+37171,0.00014681882,Chrysene,LB
+37171,0.0003100414,Acenaphthene,LB
+37171,1.187265,Carbon Monoxide,TON
+37171,0.0007975121,Elemental Carbon portion of PM2.5-PRI,TON
+37171,0.004015057,Ammonia,TON
+37171,9.792971e-05,Sulfate Portion of PM2.5-PRI,TON
+37167,124.50512,"1,3-Butadiene",LB
+37167,0.0005949372,Chromium (VI),LB
+37167,0.5491659,Methane,TON
+37167,0.0009070408,Nitrate portion of PM2.5-PRI,TON
+37161,1.228733e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.0010105342,Xylenes (Mixed Isomers),LB
+37161,2.389004e-07,Benz[a]Anthracene,LB
+37161,0.00015033432,Acetaldehyde,LB
+37161,2.43308e-07,Organic Carbon portion of PM2.5-PRI,TON
+37141,5499.54,Benzene,LB
+37141,2.351426,Nitrous Oxide,TON
+37141,1.058635,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,1.808299,Benzo[k]Fluoranthene,LB
+37129,95.54084,Hexane,LB
+37127,37.02014,Toluene,LB
+37127,14.00554,Hexane,LB
+37127,3.117702,Acenaphthylene,LB
+37127,13.83217,"2,2,4-Trimethylpentane",LB
+37127,243.1122,Acetaldehyde,LB
+37127,1.854491,Acenaphthene,LB
+37127,0.1484962,Ammonia,TON
+37127,3.500989,PM10 Primary (Filt + Cond),TON
+37127,0.06961014,Sulfate Portion of PM2.5-PRI,TON
+37121,0.549794,Styrene,LB
+37121,1.251998,"1,3-Butadiene",LB
+37121,1.0221532,Hexane,LB
+37121,2.969024,Xylenes (Mixed Isomers),LB
+37121,40.69664,Formaldehyde,LB
+37121,17.42347,Acetaldehyde,LB
+37111,0.2407642,"2,2,4-Trimethylpentane",LB
+37111,0.00024603,Benz[a]Anthracene,LB
+37111,0.0012852666,"Benzo[g,h,i,]Perylene",LB
+37111,0.0002732666,Benzo[b]Fluoranthene,LB
+37113,0.0014565374,Benzo[k]Fluoranthene,LB
+37113,0.0014565588,Chrysene,LB
+37113,1.6679358,Formaldehyde,LB
+37113,6.305504,Benzene,LB
+37113,0.12079804,Styrene,LB
+37113,0.0018943922,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.02964828,Phenanthrene,LB
+37113,7.041277e-06,Nitrate portion of PM2.5-PRI,TON
+37113,0.01097602,PM10 Primary (Filt + Cond),TON
+37101,0.005758602,"Benzo[g,h,i,]Perylene",LB
+37101,0.003942284,Benzo[k]Fluoranthene,LB
+37101,0.09596656,Benzo[a]Pyrene,LB
+37101,0.3095962,Benz[a]Anthracene,LB
+37101,12.12424,Benzene,LB
+37101,0.012225746,Arsenic,LB
+37101,0.3830674,Acenaphthene,LB
+37101,0.8656832,Fluorene,LB
+37101,0.004755325,Nitrous Oxide,TON
+37101,0.06534633,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,3.22846,Benz[a]Anthracene,LB
+37101,1.175731,Methane,TON
+37101,1.562246,Elemental Carbon portion of PM2.5-PRI,TON
+37101,8.213763,Volatile Organic Compounds,TON
+37101,0.8018381,PM10 Primary (Filt + Cond),TON
+37101,14.02273,Hexane,LB
+37101,2.23533,Fluoranthene,LB
+37101,2.772374,Acenaphthylene,LB
+37101,0.18250814,Chrysene,LB
+37101,0.00018388258,Mercury,LB
+37101,59.17774,Naphthalene,LB
+37101,63.61642,Acetaldehyde,LB
+37101,0.4091128,Fluorene,LB
+37101,0.09626733,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.005848092,Sulfate Portion of PM2.5-PRI,TON
+37101,685.1882,Toluene,LB
+37101,175.63884,Hexane,LB
+37101,0.00014525572,Chromium (VI),LB
+37101,0.3087924,Fluoranthene,LB
+37101,0.9236396,Acenaphthylene,LB
+37101,0.0864835,Chrysene,LB
+37099,1.1015328,Ethyl Benzene,LB
+37099,0.007667406,Benzo[b]Fluoranthene,LB
+37099,0.2500496,Fluoranthene,LB
+37015,0.00015558126,Chrysene,LB
+37015,0.0002333508,Nickel,LB
+37015,0.001665233,Methane,TON
+37015,0.0224025,Nitrogen Oxides,TON
+37015,0.340485,Xylenes (Mixed Isomers),LB
+37163,1.6739042,Benzene,LB
+37163,0.0011580178,Fluorene,LB
+37163,0.02983216,Naphthalene,LB
+37163,0.0008218691,Organic Carbon portion of PM2.5-PRI,TON
+37163,0.000534612,Anthracene,LB
+37163,5.56184e-06,Chromium (VI),LB
+37163,0.0003183046,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.04876518,Styrene,LB
+37163,0.0032919,Pyrene,LB
+37163,2.035794e-05,Chromium (VI),LB
+37163,0.1317327,Volatile Organic Compounds,TON
+37151,3.290518,Benzene,LB
+37151,0.3018856,Volatile Organic Compounds,TON
+37149,0.00013658794,Benzo[b]Fluoranthene,LB
+37149,0.00016774518,Fluoranthene,LB
+37149,0.000202241,Arsenic,LB
+37149,0.0009294915,Ammonia,TON
+37149,8.508992e-07,Nitrate portion of PM2.5-PRI,TON
+37149,0.0008322393,PM10 Primary (Filt + Cond),TON
+37105,0.7144482,"1,3-Butadiene",LB
+37105,1.4919028,Propionaldehyde,LB
+37105,0.01229042,Pyrene,LB
+37105,5.152622e-05,Chromium (VI),LB
+37105,12.71373,Formaldehyde,LB
+37105,8.806729,Carbon Monoxide,TON
+37105,0.003455957,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.07580422,PM10 Primary (Filt + Cond),TON
+37105,0.008111712,Remaining PMFINE portion of PM2.5-PRI,TON
+37017,0.8316,"1,3-Butadiene",LB
+37017,0.04258898,Chrysene,LB
+37017,8.799312e-06,Mercury,LB
+37007,3.419938,Acrolein,LB
+37007,0.342774,Pyrene,LB
+37007,0.0374813,Chrysene,LB
+37007,0.009785396,Manganese,LB
+37017,0.02787476,"1,3-Butadiene",LB
+37017,0.004923172,Acrolein,LB
+37017,0.00013922836,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,0.001191937,Acenaphthylene,LB
+37003,0.02572174,Arsenic,LB
+37003,0.2473721,Methane,TON
+37003,69.51916,Carbon Monoxide,TON
+37003,1449.439,Toluene,LB
+37003,962.2982,Xylenes (Mixed Isomers),LB
+37003,0.2795368,"Benzo[g,h,i,]Perylene",LB
+37003,425.7436,Benzene,LB
+37003,0.0013453788,Mercury,LB
+37059,0.643507,Acrolein,LB
+37059,0.005409544,Benz[a]Anthracene,LB
+37059,666.2748,Carbon Dioxide,TON
+37059,0.002680787,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.01072164,Nitrous Oxide,TON
+37047,0.017549568,Fluoranthene,LB
+37047,0.04775378,Acenaphthylene,LB
+37047,0.0004624406,"Dibenzo[a,h]Anthracene",LB
+37047,0.009309928,Benz[a]Anthracene,LB
+37047,0.53903,Naphthalene,LB
+37047,0.08941385,Methane,TON
+37047,15.43552,Carbon Monoxide,TON
+37047,0.01679879,Nitrous Oxide,TON
+37047,1.502363,Nitrogen Oxides,TON
+37047,0.0007835315,Sulfate Portion of PM2.5-PRI,TON
+37125,1.669246,Carbon Monoxide,TON
+37125,0.1943691,"1,3-Butadiene",LB
+37199,0.346874,Nickel,LB
+37199,355.4112,Naphthalene,LB
+37199,0.556866,Elemental Carbon portion of PM2.5-PRI,TON
+37197,58.27852,Ethyl Benzene,LB
+37197,0.19365404,Manganese,LB
+37197,0.2651004,Nickel,LB
+37197,0.07658918,Arsenic,LB
+37197,767.9796,Acetaldehyde,LB
+37197,10771.88,Carbon Dioxide,TON
+37197,0.3758749,Ammonia,TON
+37197,1.852093,PM10 Primary (Filt + Cond),TON
+37195,0.0008995538,"Benzo[g,h,i,]Perylene",LB
+37195,0.0009331603,Nitrous Oxide,TON
+37195,0.00582129,Sulfur Dioxide,TON
+37193,114.31478,Formaldehyde,LB
+37193,13.762362,"1,3-Butadiene",LB
+37193,70.56504,Acetaldehyde,LB
+37193,0.0003540581,Nitrate portion of PM2.5-PRI,TON
+37193,0.1877789,PM10 Primary (Filt + Cond),TON
+37193,0.1214758,PM2.5 Primary (Filt + Cond),TON
+37187,13.985134,Hexane,LB
+37187,0.011822902,Anthracene,LB
+37187,14.404592,Benzene,LB
+37187,0.000984222,Arsenic,LB
+37187,4.586106,Acetaldehyde,LB
+37187,6.093613,Carbon Monoxide,TON
+37187,0.003920572,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.002325075,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.017460436,"1,3-Butadiene",LB
+37181,4.97712e-08,Chromium (VI),LB
+37181,0.0007662466,Acenaphthylene,LB
+37181,0.05628466,Formaldehyde,LB
+37181,3.650293e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,7.532562e-05,Benz[a]Anthracene,LB
+37181,6.221242e-06,Nickel,LB
+37189,0.0204177,Arsenic,LB
+37189,0.004405641,Nitrate portion of PM2.5-PRI,TON
+37189,0.3541048,Organic Carbon portion of PM2.5-PRI,TON
+37189,0.1649062,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.018778508,"Indeno[1,2,3-c,d]Pyrene",LB
+37189,2.619526,Fluoranthene,LB
+37189,0.8195102,Benz[a]Anthracene,LB
+37185,3.755786,"1,3-Butadiene",LB
+37185,0.047348,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.466438,Acenaphthylene,LB
+37185,0.006924092,Manganese,LB
+37185,22.47518,Acetaldehyde,LB
+37185,0.2072982,Fluorene,LB
+37185,0.004600454,Nitrous Oxide,TON
+37185,0.02599349,Organic Carbon portion of PM2.5-PRI,TON
+37185,2.859363,Volatile Organic Compounds,TON
+37179,0.02805084,Chromium (VI),LB
+37179,3.244896,Elemental Carbon portion of PM2.5-PRI,TON
+37179,53.49436,PM10 Primary (Filt + Cond),TON
+37193,0.7010666,Fluorene,LB
+37193,3.628056,"1,3-Butadiene",LB
+37193,6.540836,Xylenes (Mixed Isomers),LB
+37193,0.0007646481,Nitrate portion of PM2.5-PRI,TON
+37193,8.161039,Nitrogen Oxides,TON
+37193,0.006061342,Sulfate Portion of PM2.5-PRI,TON
+37193,0.6397321,Volatile Organic Compounds,TON
+37183,0.0556931,Benzo[k]Fluoranthene,LB
+37183,87.95094,Ethyl Benzene,LB
+37183,3.970046,Acrolein,LB
+37183,0.5112423,PM10 Primary (Filt + Cond),TON
+37183,2.571134,Volatile Organic Compounds,TON
+37085,7.707352,Acrolein,LB
+37085,2.017912e-05,Mercury,LB
+37085,0.00421914,Arsenic,LB
+37085,0.614998,Fluorene,LB
+37085,0.1971571,PM25-Primary from certain diesel engines,TON
+37085,0.010658886,Benzo[b]Fluoranthene,LB
+37085,120.55706,Propionaldehyde,LB
+37085,0.03109646,"Benzo[g,h,i,]Perylene",LB
+37085,0.7739468,Chrysene,LB
+37085,0.2857008,Manganese,LB
+37085,0.3289618,Organic Carbon portion of PM2.5-PRI,TON
+37067,13.60805,Toluene,LB
+37067,0.009011634,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.002064354,Nitrate portion of PM2.5-PRI,TON
+37067,0.6713076,PM10 Primary (Filt + Cond),TON
+37063,0.01256086,Nitrous Oxide,TON
+37063,6.079106e-08,Chromium (VI),LB
+37063,0.6470533,Nitrogen Oxides,TON
+37063,0.02878676,PM10 Primary (Filt + Cond),TON
+37053,0.9004104,PM10-Primary from certain diesel engines,TON
+37053,14.548202,Acrolein,LB
+37053,1.9720676,Pyrene,LB
+37053,79.44398,Acetaldehyde,LB
+37053,20.10202,Naphthalene,LB
+37053,2970.845,Carbon Dioxide,TON
+37053,1.3568808e-05,Mercury,LB
+37053,0.004529797,Methane,TON
+37053,0.0003943264,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.212949,Nitrogen Oxides,TON
+37053,0.006036852,PM10 Primary (Filt + Cond),TON
+37053,0.002220311,PM2.5 Primary (Filt + Cond),TON
+37053,1.353483e-06,Chromium (VI),LB
+37053,0.004799674,"Benzo[g,h,i,]Perylene",LB
+37045,4.463618,Volatile Organic Compounds,TON
+37045,0.5300411,Methane,TON
+37045,62.385,Acrolein,LB
+37045,66.94138,Xylenes (Mixed Isomers),LB
+37047,66.01704,Nitrogen Oxides,TON
+37047,34.57143,Volatile Organic Compounds,TON
+37047,1550.1418,Hexane,LB
+37047,1.7618128,Anthracene,LB
+37047,0.0016983886,Chromium (VI),LB
+37047,0.7460126,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.5646038,Benzo[b]Fluoranthene,LB
+37047,686.9052,Acetaldehyde,LB
+37045,0.03713112,Chrysene,LB
+37045,106.10204,Hexane,LB
+37045,0.09775656,Anthracene,LB
+37045,2.221618,Propionaldehyde,LB
+37045,0.618816,Phenanthrene,LB
+37033,0.0018386004,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.0011394944,Benzo[b]Fluoranthene,LB
+37033,0.000999968,Chrysene,LB
+37033,10.039654,Toluene,LB
+37033,0.002572636,Acenaphthene,LB
+37025,2.180404e-06,Fluoranthene,LB
+37025,7.94512e-07,Benz[a]Anthracene,LB
+37025,2.887544e-05,Styrene,LB
+37029,0.0007947472,Anthracene,LB
+37029,0.0015465822,Pyrene,LB
+37029,0.001796671,PM10 Primary (Filt + Cond),TON
+37029,0.5167932,"2,2,4-Trimethylpentane",LB
+37175,0.00015466658,Benz[a]Anthracene,LB
+37175,0.00015886134,Nickel,LB
+37175,0.0001817791,Acenaphthene,LB
+37175,0.1917996,Carbon Monoxide,TON
+37175,1.505538e-05,Sulfate Portion of PM2.5-PRI,TON
+37155,0.02289766,"Benzo[g,h,i,]Perylene",LB
+37155,0.016001876,Phenanthrene,LB
+37155,0.04232942,Ammonia,TON
+37155,3.123761e-05,Nitrate portion of PM2.5-PRI,TON
+37155,0.01284111,PM2.5 Primary (Filt + Cond),TON
+37177,0.010645512,Benzo[a]Pyrene,LB
+37177,0.0019830678,Arsenic,LB
+37177,5.291498,Acetaldehyde,LB
+37177,0.13152836,Phenanthrene,LB
+37177,0.02226096,Ammonia,TON
+37169,0.06775008,Hexane,LB
+37169,0.0015965874,Propionaldehyde,LB
+37169,9.045116e-05,"Benzo[g,h,i,]Perylene",LB
+37169,2.40596e-05,Benzo[k]Fluoranthene,LB
+37169,0.02689734,Acetaldehyde,LB
+37169,0.0004211186,Phenanthrene,LB
+37169,0.3532597,Carbon Dioxide,TON
+37169,7.370113e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.0009078054,Benzo[k]Fluoranthene,LB
+37165,0.02214762,Benzo[a]Pyrene,LB
+37165,0.0009054412,"Dibenzo[a,h]Anthracene",LB
+37165,0.01302556,Methane,TON
+37165,0.1348971,PM10-Primary from certain diesel engines,TON
+37165,0.1241074,PM25-Primary from certain diesel engines,TON
+37165,0.03200842,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.13096,PM2.5 Primary (Filt + Cond),TON
+37163,1.104463,Volatile Organic Compounds,TON
+37163,6.310728,Ethyl Benzene,LB
+37163,10.144174,Propionaldehyde,LB
+37163,3.563636e-05,Chromium (VI),LB
+37163,0.0408952,Benzo[b]Fluoranthene,LB
+37163,1.0554488,Acenaphthylene,LB
+37163,0.4781778,PM25-Primary from certain diesel engines,TON
+37161,1.2995298,Phenanthrene,LB
+37161,0.03378855,Ammonia,TON
+37161,0.00033785,Nitrate portion of PM2.5-PRI,TON
+37161,0.01303249,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.008797531,Sulfur Dioxide,TON
+37161,6.072459e-05,Nitrate portion of PM2.5-PRI,TON
+37161,0.02516846,PM2.5 Primary (Filt + Cond),TON
+37161,0.01053647,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,31.71646,Hexane,LB
+37161,13.594012,Formaldehyde,LB
+37161,0.016314956,Benzo[a]Pyrene,LB
+37161,0.02085449,Methane,TON
+37159,17.676856,Styrene,LB
+37159,1.3315218,Pyrene,LB
+37159,0.2293836,Benzo[b]Fluoranthene,LB
+37159,0.312127,Benzo[a]Pyrene,LB
+37159,1429.6652,"2,2,4-Trimethylpentane",LB
+37159,0.0709403,Manganese,LB
+37159,1.6171604,Fluorene,LB
+37159,0.0009073612,Nitrate portion of PM2.5-PRI,TON
+37151,9.682754,PM10 Primary (Filt + Cond),TON
+37151,11.63791,Pyrene,LB
+37151,220.6726,Benzene,LB
+37151,4.416293,Methane,TON
+37151,68685.16,Carbon Dioxide,TON
+37151,0.222753,"1,3-Butadiene",LB
+37151,6.750274,Toluene,LB
+37151,4.129296,Xylenes (Mixed Isomers),LB
+37151,1.5074932,"2,2,4-Trimethylpentane",LB
+37151,2.118468e-05,Arsenic,LB
+37151,0.534134,Acetaldehyde,LB
+37151,0.0005875569,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.001430375,PM10 Primary (Filt + Cond),TON
+37139,4.539412e-05,Chromium (VI),LB
+37139,4.795376,Hexane,LB
+37139,3.553856e-05,Mercury,LB
+37139,0.00435705,Nitrous Oxide,TON
+37139,0.02517153,Sulfur Dioxide,TON
+37191,34.92846,Benzene,LB
+37191,151.86734,Acetaldehyde,LB
+37191,0.0124018,Acenaphthene,LB
+37191,1.2741676,Acrolein,LB
+37191,2.989344,Propionaldehyde,LB
+37159,119273.92,Toluene,LB
+37159,2.707058,Nickel,LB
+37153,0.7855038,"1,3-Butadiene",LB
+37153,0.12153634,Pyrene,LB
+37153,11.606526,Acetaldehyde,LB
+37153,0.238554,Nitrogen Oxides,TON
+37153,0.1469998,Volatile Organic Compounds,TON
+37147,74.21268,Toluene,LB
+37147,23.74946,Hexane,LB
+37147,0.0002351466,Chromium (VI),LB
+37147,0.03916686,"Benzo[g,h,i,]Perylene",LB
+37147,394.4994,Acetaldehyde,LB
+37147,98.77808,Naphthalene,LB
+37147,0.2887636,Ammonia,TON
+37147,37.2698,Nitrogen Oxides,TON
+37145,0.00569606,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,5.745902,Acenaphthylene,LB
+37145,0.11467498,Nickel,LB
+37145,0.03312918,Arsenic,LB
+37145,438.6512,Acetaldehyde,LB
+37145,3.417358,Acenaphthene,LB
+37145,5.792338,Fluorene,LB
+37145,0.7447658,PM10-Primary from certain diesel engines,TON
+37145,0.1569566,Ammonia,TON
+37145,20.01792,Acetaldehyde,LB
+37145,580.043,Carbon Dioxide,TON
+37145,1.207159,Volatile Organic Compounds,TON
+37145,0.00229004,Benz[a]Anthracene,LB
+37145,0.4979434,Naphthalene,LB
+37145,0.00397766,Nitrous Oxide,TON
+37145,0.0002897785,Ammonia,TON
+37145,6.94917e-06,Nitrate portion of PM2.5-PRI,TON
+37145,0.15630508,Acrolein,LB
+37145,22.25848,Xylenes (Mixed Isomers),LB
+37141,0.02945534,Ethyl Benzene,LB
+37141,0.00017318492,Chrysene,LB
+37141,6.47729,Acetaldehyde,LB
+37141,0.0017354582,Naphthalene,LB
+37141,0.5574722,Nitrogen Oxides,TON
+37141,0.00635155,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.001004967,Sulfur Dioxide,TON
+37135,0.2312189,Volatile Organic Compounds,TON
+37135,0.09688062,Benz[a]Anthracene,LB
+37135,0.00778015,Nickel,LB
+37135,0.003767644,Arsenic,LB
+37135,0.2791292,Fluorene,LB
+37135,1344.6,Carbon Dioxide,TON
+37135,4.918694,Toluene,LB
+37135,0.0012536632,Anthracene,LB
+37135,0.002035616,"Benzo[g,h,i,]Perylene",LB
+37135,0.000764811,"Indeno[1,2,3-c,d]Pyrene",LB
+37135,0.0005126774,Benzo[b]Fluoranthene,LB
+37135,0.4716904,Formaldehyde,LB
+37135,0.0007721218,PM2.5 Primary (Filt + Cond),TON
+37091,0.04032266,Toluene,LB
+37091,0.009241274,Hexane,LB
+37091,5.798924e-06,Benzo[a]Pyrene,LB
+37091,1.688722e-07,Nickel,LB
+37091,2.589442e-07,Arsenic,LB
+37091,0.00376216,Acetaldehyde,LB
+37091,2.342672e-06,Ammonia,TON
+37091,1.670773e-08,Nitrate portion of PM2.5-PRI,TON
+37091,3.11522e-06,Organic Carbon portion of PM2.5-PRI,TON
+37091,1.603705e-07,Sulfate Portion of PM2.5-PRI,TON
+37091,0.0002026824,Volatile Organic Compounds,TON
+37083,0.0009398376,"Dibenzo[a,h]Anthracene",LB
+37083,22.36376,Benzene,LB
+37083,103.31276,Acetaldehyde,LB
+37083,26.06194,Naphthalene,LB
+37083,15.39324,Carbon Monoxide,TON
+37083,1699.201,Carbon Dioxide,TON
+37083,1.372402,Volatile Organic Compounds,TON
+37083,0.6412358,Anthracene,LB
+37083,1.2764608,Pyrene,LB
+37083,6.74826e-05,Chromium (VI),LB
+37081,1028.0178,Styrene,LB
+37081,949.947,Acrolein,LB
+37081,16.490498,Chrysene,LB
+37081,10.266426,Nickel,LB
+37081,12566.07,Carbon Monoxide,TON
+37081,0.09974683,Nitrate portion of PM2.5-PRI,TON
+37079,0.001344204,Sulfate Portion of PM2.5-PRI,TON
+37079,0.17529162,Pyrene,LB
+37079,0.4769926,Acenaphthylene,LB
+37079,0.03189044,Benz[a]Anthracene,LB
+37079,0.005557294,Nickel,LB
+37079,0.008521708,Arsenic,LB
+37079,0.10467248,Acenaphthene,LB
+37079,0.2120424,Fluorene,LB
+37077,20.25574,Toluene,LB
+37077,0.07649016,Benzo[b]Fluoranthene,LB
+37077,2.591462,Fluoranthene,LB
+37077,0.8366272,Benz[a]Anthracene,LB
+37077,1.0681268,Acenaphthene,LB
+37077,0.00666297,Nitrous Oxide,TON
+37077,32.91712,Nitrogen Oxides,TON
+37077,0.3637577,Organic Carbon portion of PM2.5-PRI,TON
+37077,2.034889,PM10 Primary (Filt + Cond),TON
+37073,0.3873885,Sulfur Dioxide,TON
+37073,0.01687446,Sulfate Portion of PM2.5-PRI,TON
+37073,25.26888,Volatile Organic Compounds,TON
+37073,0.012451954,"Dibenzo[a,h]Anthracene",LB
+37073,1141.6252,"2,2,4-Trimethylpentane",LB
+37073,1279.0786,Benzene,LB
+37069,0.0015442916,Benzo[b]Fluoranthene,LB
+37069,0.000211151,Benzo[k]Fluoranthene,LB
+37069,1.1341122e-06,Mercury,LB
+37069,0.01703381,PM10-Primary from certain diesel engines,TON
+37069,0.2405923,Nitrogen Oxides,TON
+37069,0.002936439,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.2315024,Toluene,LB
+37059,2.965698e-08,Chromium (VI),LB
+37059,6.092904e-05,Benz[a]Anthracene,LB
+37059,0.0002315882,Acenaphthene,LB
+37059,0.0012450178,Naphthalene,LB
+37059,0.0005994779,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.00247562,Ammonia,TON
+37059,0.003687678,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,2102.84,Ethyl Benzene,LB
+37061,4098.106,"2,2,4-Trimethylpentane",LB
+37049,10.8152,Acrolein,LB
+37049,3.408624,Hexane,LB
+37049,0.003979968,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.00215353,Benzo[k]Fluoranthene,LB
+37049,0.05239494,Benzo[a]Pyrene,LB
+37049,0.2051654,Benz[a]Anthracene,LB
+37049,0.4551608,Acenaphthene,LB
+37049,1770.398,Carbon Dioxide,TON
+37049,0.01529739,Sulfur Dioxide,TON
+37049,0.01186366,Sulfate Portion of PM2.5-PRI,TON
+37047,4.92563e-07,Manganese,LB
+37047,1.020349e-07,Nickel,LB
+37047,6.493026e-06,Fluorene,LB
+37047,0.0017011046,Ethyl Benzene,LB
+37047,7.631792e-05,Styrene,LB
+37047,6.538276e-05,Propionaldehyde,LB
+37043,0.1453044,"1,3-Butadiene",LB
+37043,0.02183514,Acrolein,LB
+37043,5.8525e-07,Chromium (VI),LB
+37043,0.001608266,Fluoranthene,LB
+37043,0.005006752,Acenaphthylene,LB
+37043,19.13747,Carbon Dioxide,TON
+37043,0.0005726833,PM2.5 Primary (Filt + Cond),TON
+37047,2.401126e-05,Nickel,LB
+37047,0.016112602,Phenanthrene,LB
+37047,0.003300826,Methane,TON
+37047,3.499515e-06,Nitrate portion of PM2.5-PRI,TON
+37047,0.00253903,Anthracene,LB
+37047,0.004955072,Pyrene,LB
+37047,6.841774,Xylenes (Mixed Isomers),LB
+37047,0.0008589264,Chrysene,LB
+37047,2221.944,"1,3-Butadiene",LB
+37047,0.01058439,Chromium (VI),LB
+37047,14.822548,"Benzo[g,h,i,]Perylene",LB
+37047,34.10052,Fluorene,LB
+37047,9.302118,Methane,TON
+37047,1.76282,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,279.3992,Volatile Organic Compounds,TON
+37041,0.0005035572,Organic Carbon portion of PM2.5-PRI,TON
+37041,1.537259,Ethyl Benzene,LB
+37041,6.62325e-07,Chromium (VI),LB
+37041,0.0008398626,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.009536698,Styrene,LB
+37033,0.12842804,Formaldehyde,LB
+37033,7.372728e-06,Nickel,LB
+37033,0.02043054,Naphthalene,LB
+37033,0.0004975626,PM10 Primary (Filt + Cond),TON
+37033,0.0003532167,PM2.5 Primary (Filt + Cond),TON
+37141,0.06629538,Acenaphthylene,LB
+37141,15.69134,"2,2,4-Trimethylpentane",LB
+37141,4.63619,Acetaldehyde,LB
+37141,0.0109233,Methane,TON
+37141,171.2597,Carbon Dioxide,TON
+37141,0.636597,Nitrogen Oxides,TON
+37141,0.0213839,PM10 Primary (Filt + Cond),TON
+37141,0.01098366,PM2.5 Primary (Filt + Cond),TON
+37141,0.005560756,Anthracene,LB
+37141,0.011107488,Pyrene,LB
+37141,0.005814732,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.3292384,Naphthalene,LB
+37141,0.001010398,Elemental Carbon portion of PM2.5-PRI,TON
+37137,7.956536,Hexane,LB
+37125,0.016552686,Benzo[b]Fluoranthene,LB
+37125,171.4126,Formaldehyde,LB
+37125,4.372456,"2,2,4-Trimethylpentane",LB
+37125,0.3270872,PM10-Primary from certain diesel engines,TON
+37125,0.006522584,Nitrous Oxide,TON
+37107,361.7304,Formaldehyde,LB
+37107,1.759291,PM10-Primary from certain diesel engines,TON
+37107,33.48971,Nitrogen Oxides,TON
+37107,8.789532,Acetaldehyde,LB
+37107,1.4779984,Naphthalene,LB
+37107,0.01340329,Ammonia,TON
+37107,1.002098,Nitrogen Oxides,TON
+37087,20.33462,Hexane,LB
+37087,0.16510726,Benzo[b]Fluoranthene,LB
+37087,810.2754,Formaldehyde,LB
+37087,2.35578,Acenaphthene,LB
+37087,2.100395,PM10-Primary from certain diesel engines,TON
+37087,1.932311,PM25-Primary from certain diesel engines,TON
+37087,0.02689236,Nitrous Oxide,TON
+37087,4.342403,Volatile Organic Compounds,TON
+37073,8.784964,Benzene,LB
+37073,41.08918,Acetaldehyde,LB
+37073,0.2506588,Elemental Carbon portion of PM2.5-PRI,TON
+37073,3.19517,Ethyl Benzene,LB
+37073,7.321858,Acrolein,LB
+37073,0.11001398,Chrysene,LB
+37081,313.2368,Hexane,LB
+37081,0.6237934,Pyrene,LB
+37081,0.002005668,Mercury,LB
+37081,0.02500782,Nickel,LB
+37081,0.834691,PM10 Primary (Filt + Cond),TON
+37081,6.348954,Volatile Organic Compounds,TON
+37053,133.34106,Acetaldehyde,LB
+37053,3.342902,Phenanthrene,LB
+37053,8.31608,Hexane,LB
+37053,1.8321702,Fluoranthene,LB
+37067,5.540072,Acrolein,LB
+37067,4.953474,Propionaldehyde,LB
+37067,0.1174705,Benzo[k]Fluoranthene,LB
+37067,0.260192,Ammonia,TON
+37067,0.000610698,Nitrate portion of PM2.5-PRI,TON
+37067,0.1087671,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.6413529,PM10 Primary (Filt + Cond),TON
+37061,0.012486,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.9026406,Ethyl Benzene,LB
+37061,0.3736958,Styrene,LB
+37061,0.09132266,Anthracene,LB
+37061,1.9609726,Xylenes (Mixed Isomers),LB
+37061,0.005229438,Benzo[b]Fluoranthene,LB
+37043,2.298144,"1,3-Butadiene",LB
+37043,6.606294,Acrolein,LB
+37043,0.002751678,"Benzo[g,h,i,]Perylene",LB
+37043,0.012866546,Benzo[b]Fluoranthene,LB
+37043,0.0018360026,Benzo[k]Fluoranthene,LB
+37043,0.08481548,Chrysene,LB
+37043,6.091834e-05,Mercury,LB
+37043,0.01273932,Arsenic,LB
+37043,9.478318,Naphthalene,LB
+37043,0.3874522,PM2.5 Primary (Filt + Cond),TON
+37039,0.001279707,Elemental Carbon portion of PM2.5-PRI,TON
+37039,0.000444432,Benzo[b]Fluoranthene,LB
+37039,0.001488662,Benzo[a]Pyrene,LB
+37039,2.767036,Acrolein,LB
+37047,0.7703178,"1,3-Butadiene",LB
+37047,25.73956,Toluene,LB
+37047,16.132874,Xylenes (Mixed Isomers),LB
+37047,5.545576,"2,2,4-Trimethylpentane",LB
+37047,0.00335637,Benz[a]Anthracene,LB
+37047,0.006995636,Acenaphthene,LB
+37047,0.008414712,Ammonia,TON
+37039,0.003238954,"Benzo[g,h,i,]Perylene",LB
+37039,6.66757,Carbon Dioxide,TON
+37039,269.5034,Hexane,LB
+37039,114.1102,Formaldehyde,LB
+37039,0.002812482,"Dibenzo[a,h]Anthracene",LB
+37039,0.058139,Manganese,LB
+37037,0.4059676,Styrene,LB
+37037,2.230494,"1,3-Butadiene",LB
+37037,0.35993,Propionaldehyde,LB
+37037,8.855312e-07,Chromium (VI),LB
+37037,0.02456248,Fluoranthene,LB
+37037,0.001218191,Ammonia,TON
+37035,0.0006178562,Benzo[k]Fluoranthene,LB
+37035,0.0294671,Chrysene,LB
+37035,0.05362407,PM10-Primary from certain diesel engines,TON
+37031,8.796996,Ethyl Benzene,LB
+37031,0.00237274,Benzo[a]Pyrene,LB
+37031,12.769984,Benzene,LB
+37031,0.002605382,Manganese,LB
+37031,0.0003693144,Arsenic,LB
+37031,0.009181276,Methane,TON
+37031,88.32748,Carbon Dioxide,TON
+37025,0.04372264,Manganese,LB
+37025,1.9077862e-05,Mercury,LB
+37025,0.00398908,Arsenic,LB
+37025,0.14866646,Acenaphthene,LB
+37025,5.554732,Naphthalene,LB
+37025,0.4427502,PM10 Primary (Filt + Cond),TON
+37025,4.223056,Toluene,LB
+37025,0.4938914,Pyrene,LB
+37025,1.7367924e-05,Chromium (VI),LB
+37025,0.002894752,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,3.808558,Ethyl Benzene,LB
+37199,2.864634,Hexane,LB
+37199,0.0266235,Benzo[b]Fluoranthene,LB
+37199,0.003641098,"Dibenzo[a,h]Anthracene",LB
+37199,0.001543978,Nitrate portion of PM2.5-PRI,TON
+37199,0.672837,PM10 Primary (Filt + Cond),TON
+37199,0.0549137,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,1.360473e-05,Sulfate Portion of PM2.5-PRI,TON
+37193,0.0396431,Styrene,LB
+37193,0.0273203,Acrolein,LB
+37193,3.896142,Xylenes (Mixed Isomers),LB
+37193,0.007500148,Acenaphthylene,LB
+37193,0.0004737782,Chrysene,LB
+37193,1.5308688,Benzene,LB
+37193,0.0016463198,Acenaphthene,LB
+37193,0.008949968,Phenanthrene,LB
+37195,0.2652034,Elemental Carbon portion of PM2.5-PRI,TON
+37195,7.809135,Nitrogen Oxides,TON
+37195,0.0004923266,Mercury,LB
+37195,0.08046158,Acenaphthene,LB
+37195,0.07542086,PM2.5 Primary (Filt + Cond),TON
+37189,0.0002665378,Styrene,LB
+37189,3.904184e-06,Chrysene,LB
+37189,6.134048e-05,Phenanthrene,LB
+37189,2.274324e-05,Fluorene,LB
+37189,6.96671e-06,Methane,TON
+37189,0.0004325233,Nitrogen Oxides,TON
+37189,6.934357e-06,PM2.5 Primary (Filt + Cond),TON
+37019,13.662104,Styrene,LB
+37019,10.03966,Propionaldehyde,LB
+37019,0.6542066,"Benzo[g,h,i,]Perylene",LB
+37019,157.2996,Carbon Monoxide,TON
+37015,17.113664,Benzene,LB
+37015,19.23601,Nitrogen Oxides,TON
+37015,0.6830422,Anthracene,LB
+37015,1.9638456,Pyrene,LB
+37015,0.005910468,"Dibenzo[a,h]Anthracene",LB
+37003,12.123354,Toluene,LB
+37003,4.939856,Hexane,LB
+37003,2.26206,Pyrene,LB
+37003,0.006970544,Benzo[k]Fluoranthene,LB
+37003,196.35214,Formaldehyde,LB
+37003,19.049236,Benzene,LB
+37003,0.006712742,Arsenic,LB
+37003,1.5309432,Fluorene,LB
+37003,0.01538606,Sulfate Portion of PM2.5-PRI,TON
+37023,177.17528,Toluene,LB
+37023,0.3311248,Benzo[a]Pyrene,LB
+37003,1.0793598e-05,Mercury,LB
+37003,0.04911366,Phenanthrene,LB
+37003,0.001748752,Ammonia,TON
+37003,0.001268682,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.002171742,Chrysene,LB
+37003,0.002429532,Benzo[a]Pyrene,LB
+37003,0.0008145475,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,0.2546688,Volatile Organic Compounds,TON
+37001,127.09426,Toluene,LB
+37001,4.478266,Volatile Organic Compounds,TON
+37039,0.000157039,Benzo[b]Fluoranthene,LB
+37039,0.3365128,Toluene,LB
+37039,0.00013671228,Anthracene,LB
+37039,0.0002856646,Pyrene,LB
+37039,0.00013650588,Benz[a]Anthracene,LB
+37039,0.0008389072,Phenanthrene,LB
+37039,0.0003428519,Nitrous Oxide,TON
+37035,2.98344,Benzene,LB
+37035,0.02976872,Styrene,LB
+37035,0.12824498,"1,3-Butadiene",LB
+37035,2.461944,Toluene,LB
+37035,0.002709668,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.0018533962,Fluoranthene,LB
+37035,0.0014018382,Benzo[k]Fluoranthene,LB
+37035,0.001774835,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.01552535,PM10 Primary (Filt + Cond),TON
+37037,0.013800322,Manganese,LB
+37037,0.012751516,Fluorene,LB
+37037,14.68824,Toluene,LB
+37037,0.03687204,"Benzo[g,h,i,]Perylene",LB
+37037,6.769188,"2,2,4-Trimethylpentane",LB
+37165,0.0002358132,Anthracene,LB
+37165,0.0011547404,Acenaphthylene,LB
+37165,1.4606598e-05,"Dibenzo[a,h]Anthracene",LB
+37165,0.000283495,Benz[a]Anthracene,LB
+37165,2.842078,Acetaldehyde,LB
+37165,0.0005036396,Fluorene,LB
+37165,0.002552793,Methane,TON
+37165,0.419627,Carbon Monoxide,TON
+37165,0.0009725494,PM2.5 Primary (Filt + Cond),TON
+37165,2.850706e-05,Sulfate Portion of PM2.5-PRI,TON
+37147,3.769688,Propionaldehyde,LB
+37147,9.1466,Ethyl Benzene,LB
+37147,31.5847,Formaldehyde,LB
+37147,0.01584519,Nickel,LB
+37147,20.14012,Carbon Monoxide,TON
+37147,0.008760573,Elemental Carbon portion of PM2.5-PRI,TON
+37147,0.03929878,Nitrous Oxide,TON
+37119,0.13561602,Pyrene,LB
+37119,0.5052196,"Benzo[g,h,i,]Perylene",LB
+37119,0.06518682,Acenaphthene,LB
+37119,0.01036755,Sulfate Portion of PM2.5-PRI,TON
+37091,0.03283902,Naphthalene,LB
+37091,0.005272741,Methane,TON
+37091,0.1518598,Propionaldehyde,LB
+37091,0.0011504444,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.0010578074,Fluoranthene,LB
+37173,1.0991164,Fluoranthene,LB
+37173,0.04088788,Manganese,LB
+37173,1.7177032,Phenanthrene,LB
+37173,3.917894,Carbon Monoxide,TON
+37173,2127.685,Carbon Dioxide,TON
+37173,0.6328227,PM25-Primary from certain diesel engines,TON
+37173,0.06454451,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,3.4589,Fluoranthene,LB
+37193,0.005821556,Nitrate portion of PM2.5-PRI,TON
+37185,68.82164,Toluene,LB
+37185,0.010100634,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.2784692,Chrysene,LB
+37185,49.1143,Benzene,LB
+37185,1.346636,PM2.5 Primary (Filt + Cond),TON
+37195,8.743956e-05,Acenaphthene,LB
+37195,0.000490912,Phenanthrene,LB
+37195,3.189229e-05,Nitrous Oxide,TON
+37195,4.248529e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.2187372,Toluene,LB
+37195,7.58979e-05,Benzo[b]Fluoranthene,LB
+37195,2022.084,Ethyl Benzene,LB
+37195,2979.672,Hexane,LB
+37195,3940.79,"2,2,4-Trimethylpentane",LB
+37189,0.8456654,"1,3-Butadiene",LB
+37189,0.7420124,Hexane,LB
+37189,0.210409,Fluoranthene,LB
+37189,0.0008672212,"Dibenzo[a,h]Anthracene",LB
+37189,12.402236,Acetaldehyde,LB
+37189,0.19185238,Fluorene,LB
+37189,0.002703633,Sulfur Dioxide,TON
+37189,0.1576936,Volatile Organic Compounds,TON
+37187,0.0368935,Acrolein,LB
+37187,0.0019390338,Anthracene,LB
+37187,1.0836134e-07,Chromium (VI),LB
+37187,0.003311878,Fluoranthene,LB
+37187,1.3544422e-05,Nickel,LB
+37187,0.012314056,Phenanthrene,LB
+37179,0.0649404,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,0.2550138,Benzo[b]Fluoranthene,LB
+37179,1371.5322,Formaldehyde,LB
+37179,37.31978,"2,2,4-Trimethylpentane",LB
+37179,0.0003749722,Mercury,LB
+37179,6.96529,Volatile Organic Compounds,TON
+37023,0.2166958,Fluoranthene,LB
+37023,0.0595347,Benzo[k]Fluoranthene,LB
+37023,0.05644672,Benz[a]Anthracene,LB
+37023,2.786942,Acrolein,LB
+37023,2.820858,Propionaldehyde,LB
+37023,152.13402,Benzene,LB
+37023,0.01905669,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.1003993,Nitrous Oxide,TON
+37199,0.5137786,Acrolein,LB
+37199,106.89782,Toluene,LB
+37199,7.88695,Formaldehyde,LB
+37199,0.007008218,Benz[a]Anthracene,LB
+37199,0.05234084,Fluorene,LB
+37199,0.02176519,Nitrous Oxide,TON
+37197,0.5670348,Chrysene,LB
+37197,0.011708964,"Dibenzo[a,h]Anthracene",LB
+37195,0.0007211346,Benzo[k]Fluoranthene,LB
+37195,0.058145,Benz[a]Anthracene,LB
+37195,0.249985,Pyrene,LB
+37195,1.209538e-05,Chromium (VI),LB
+37195,0.001084316,"Benzo[g,h,i,]Perylene",LB
+37195,1.3094646e-05,Mercury,LB
+37195,0.01867487,Methane,TON
+37195,0.9481865,Carbon Monoxide,TON
+37195,0.01395366,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.006514772,Anthracene,LB
+37193,14.440358,Xylenes (Mixed Isomers),LB
+37193,0.006546772,Benzo[b]Fluoranthene,LB
+37193,0.01410822,Nitrous Oxide,TON
+37193,0.000465558,Sulfate Portion of PM2.5-PRI,TON
+37185,1.5020832e-05,Chromium (VI),LB
+37185,0.02280004,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.012360174,Benz[a]Anthracene,LB
+37197,3.980108e-05,Mercury,LB
+37197,0.0004962774,Nickel,LB
+37197,1.967728e-05,Nitrate portion of PM2.5-PRI,TON
+37197,0.01959084,PM10 Primary (Filt + Cond),TON
+37197,0.002425127,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,0.03073886,Benzo[k]Fluoranthene,LB
+37183,0.02761222,Chrysene,LB
+37183,88.97824,Benzene,LB
+37183,0.4219218,Phenanthrene,LB
+37183,38.76986,Carbon Monoxide,TON
+37183,1004.078,Carbon Dioxide,TON
+37183,0.0001505111,Nitrate portion of PM2.5-PRI,TON
+37183,2.632163,Nitrogen Oxides,TON
+37183,98.38902,Hexane,LB
+37017,16.56485,Toluene,LB
+37017,0.00662803,"Benzo[g,h,i,]Perylene",LB
+37017,0.002490214,"Indeno[1,2,3-c,d]Pyrene",LB
+37017,3.25998,"2,2,4-Trimethylpentane",LB
+37017,0.001828522,Benz[a]Anthracene,LB
+37017,0.0005164272,Arsenic,LB
+37017,141.5731,Carbon Dioxide,TON
+37015,0.008131874,Benzo[b]Fluoranthene,LB
+37015,0.008131874,Benzo[k]Fluoranthene,LB
+37015,31.42004,Benzene,LB
+37015,0.002820815,Elemental Carbon portion of PM2.5-PRI,TON
+37015,0.02320294,Nitrous Oxide,TON
+37015,0.02140452,Ammonia,TON
+37015,0.01420536,PM2.5 Primary (Filt + Cond),TON
+37003,0.0126641,Ammonia,TON
+37003,60.00846,Hexane,LB
+37003,0.09698854,Pyrene,LB
+37003,154.31182,Xylenes (Mixed Isomers),LB
+37003,0.014703512,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,60.63046,Benzene,LB
+37003,0.00728384,"Benzo[g,h,i,]Perylene",LB
+37003,0.02037432,Fluoranthene,LB
+37003,7.60809,"2,2,4-Trimethylpentane",LB
+37003,0.000327291,Arsenic,LB
+37003,0.7384182,Naphthalene,LB
+37003,0.0006460542,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.2114251,Volatile Organic Compounds,TON
+37057,0.003396072,Acenaphthylene,LB
+37057,0.0017252468,Benzo[a]Pyrene,LB
+37057,0.07583748,Acrolein,LB
+37057,1.7079584,Toluene,LB
+37057,0.004653636,"Benzo[g,h,i,]Perylene",LB
+37057,5.986844e-06,Nitrate portion of PM2.5-PRI,TON
+37007,0.00010464536,Acenaphthene,LB
+37007,0.0002577216,Nitrous Oxide,TON
+37007,0.0003892812,PM2.5 Primary (Filt + Cond),TON
+37007,1.132577e-05,Sulfate Portion of PM2.5-PRI,TON
+37007,0.00302699,Styrene,LB
+37007,9.836212e-05,Anthracene,LB
+37007,0.0002438218,Benzo[a]Pyrene,LB
+37007,5.671628e-06,"Dibenzo[a,h]Anthracene",LB
+37165,0.001947345,Pyrene,LB
+37165,0.001244095,Benzo[k]Fluoranthene,LB
+37165,1.6102082,Formaldehyde,LB
+37165,0.00013747044,Mercury,LB
+37165,0.0009699924,Acenaphthene,LB
+37165,0.001577534,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,0.12289584,"1,3-Butadiene",LB
+37159,0.2400338,Propionaldehyde,LB
+37159,0.00669556,"Benzo[g,h,i,]Perylene",LB
+37159,0.0017773256,Fluoranthene,LB
+37159,2.81894,Benzene,LB
+37159,0.0019569386,Arsenic,LB
+37159,0.005728036,Phenanthrene,LB
+37159,0.008899983,Ammonia,TON
+37159,0.004011304,PM2.5 Primary (Filt + Cond),TON
+37139,0.0004874292,"Indeno[1,2,3-c,d]Pyrene",LB
+37139,0.00223516,Methane,TON
+37139,0.0003175473,Organic Carbon portion of PM2.5-PRI,TON
+37139,0.001054371,Sulfur Dioxide,TON
+37139,2.187544e-05,Sulfate Portion of PM2.5-PRI,TON
+37175,0.06226324,Styrene,LB
+37175,0.00239789,Anthracene,LB
+37175,7.614888e-07,Chromium (VI),LB
+37175,0.000695635,Benz[a]Anthracene,LB
+37175,9.518514e-05,Nickel,LB
+37175,0.001503433,Nitrous Oxide,TON
+37175,0.001091531,Ammonia,TON
+37173,0.002540642,Propionaldehyde,LB
+37173,0.0002301404,Pyrene,LB
+37173,6.331828e-05,Benzo[b]Fluoranthene,LB
+37173,6.331828e-05,Benzo[k]Fluoranthene,LB
+37173,0.04424302,Formaldehyde,LB
+37173,0.00010356298,Benzo[a]Pyrene,LB
+37173,5.893384e-05,Benz[a]Anthracene,LB
+37173,2.689911,Carbon Dioxide,TON
+37173,1.864296e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.0001794078,PM10 Primary (Filt + Cond),TON
+37171,0.3886336,"1,3-Butadiene",LB
+37171,0.0002938386,Benzo[k]Fluoranthene,LB
+37171,0.0009900593,Sulfur Dioxide,TON
+37159,0.0410107,Benz[a]Anthracene,LB
+37159,0.7307099,Nitrogen Oxides,TON
+37159,0.01758616,Organic Carbon portion of PM2.5-PRI,TON
+37159,0.2255884,Styrene,LB
+37159,1.2475278,Acrolein,LB
+37159,0.838542,Propionaldehyde,LB
+37159,0.0007599358,"Benzo[g,h,i,]Perylene",LB
+37159,0.0009571118,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,23.19622,Toluene,LB
+37161,14.1757,Xylenes (Mixed Isomers),LB
+37161,0.003683172,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,0.002353368,Benzo[b]Fluoranthene,LB
+37161,0.0006908056,Arsenic,LB
+37161,0.005689247,Ammonia,TON
+37151,0.004672189,PM10 Primary (Filt + Cond),TON
+37151,0.003091431,PM2.5 Primary (Filt + Cond),TON
+37151,6.283714e-05,Sulfate Portion of PM2.5-PRI,TON
+37151,0.9147108,"1,3-Butadiene",LB
+37151,0.011438214,Pyrene,LB
+37151,6.4776e-05,Arsenic,LB
+37151,29845.26,Toluene,LB
+37151,5279.522,Hexane,LB
+37151,6982.564,"2,2,4-Trimethylpentane",LB
+37143,3.480634,"1,3-Butadiene",LB
+37143,0.3619998,Anthracene,LB
+37143,0.9799806,Pyrene,LB
+37143,0.06622476,Manganese,LB
+37143,0.7504222,Fluorene,LB
+37143,4.37494,Carbon Monoxide,TON
+37143,0.001167741,Nitrate portion of PM2.5-PRI,TON
+37143,0.05936719,Remaining PMFINE portion of PM2.5-PRI,TON
+37143,2.022356,Nitrogen Oxides,TON
+37143,0.07974989,PM10 Primary (Filt + Cond),TON
+37143,0.19872324,Pyrene,LB
+37143,4.616698,Styrene,LB
+37143,1.776892,Acenaphthylene,LB
+37143,1.056808,Acenaphthene,LB
+37143,0.03408053,Organic Carbon portion of PM2.5-PRI,TON
+37141,19.39772,Carbon Monoxide,TON
+37141,1.79255,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.1777423,Sulfate Portion of PM2.5-PRI,TON
+37141,21.4091,Ethyl Benzene,LB
+37141,51.87088,Toluene,LB
+37141,55.46182,Xylenes (Mixed Isomers),LB
+37139,24.16908,Ethyl Benzene,LB
+37139,0.000129735,Mercury,LB
+37139,0.4042907,Elemental Carbon portion of PM2.5-PRI,TON
+37139,4.286241,Volatile Organic Compounds,TON
+37135,2.444112,Anthracene,LB
+37135,35.03792,Propionaldehyde,LB
+37135,41.8423,Xylenes (Mixed Isomers),LB
+37135,0.16253714,Benzo[b]Fluoranthene,LB
+37135,16.048836,"2,2,4-Trimethylpentane",LB
+37135,3.425075,PM10-Primary from certain diesel engines,TON
+37135,2.041619,Elemental Carbon portion of PM2.5-PRI,TON
+37135,3.286825,PM2.5 Primary (Filt + Cond),TON
+37135,0.1051613,Sulfur Dioxide,TON
+37135,3.807512,Volatile Organic Compounds,TON
+37143,0.02217612,"Dibenzo[a,h]Anthracene",LB
+37143,0.2577842,Nickel,LB
+37143,1122.4818,Acetaldehyde,LB
+37143,170.9968,Naphthalene,LB
+37143,1.973906,Methane,TON
+37143,715.9455,Carbon Monoxide,TON
+37117,0.007380376,"Benzo[g,h,i,]Perylene",LB
+37117,0.0826928,Nickel,LB
+37117,11.39338,Nitrogen Oxides,TON
+37117,0.4819561,PM2.5 Primary (Filt + Cond),TON
+37117,0.0003114228,Acrolein,LB
+37117,6.638572e-06,Benzo[k]Fluoranthene,LB
+37117,0.00546448,Acetaldehyde,LB
+37117,0.000405951,Styrene,LB
+37117,1.871537e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37117,3.005213e-08,Nitrate portion of PM2.5-PRI,TON
+37119,9.299396,Propionaldehyde,LB
+37119,0.998148,PM10-Primary from certain diesel engines,TON
+37119,0.002555652,Nitrate portion of PM2.5-PRI,TON
+37113,1.30283,Styrene,LB
+37113,2.9531,"1,3-Butadiene",LB
+37113,0.004851302,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.017126812,Manganese,LB
+37113,1.1295996e-05,Mercury,LB
+37113,0.6424256,Fluorene,LB
+37113,0.211738,PM25-Primary from certain diesel engines,TON
+37113,0.004344085,Sulfur Dioxide,TON
+37105,0.19295536,Acrolein,LB
+37105,0.0005692586,Pyrene,LB
+37105,0.17741088,Benzene,LB
+37105,0.0003601022,Arsenic,LB
+37105,0.00019229832,Acenaphthene,LB
+37105,0.6714342,Carbon Monoxide,TON
+37105,0.0004582422,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.01422903,PM10 Primary (Filt + Cond),TON
+37105,0.0714432,Fluoranthene,LB
+37105,0.0017408414,Manganese,LB
+37105,0.000294327,Arsenic,LB
+37105,0.02203206,PM25-Primary from certain diesel engines,TON
+37105,0.008963849,Organic Carbon portion of PM2.5-PRI,TON
+37105,0.31567,"1,3-Butadiene",LB
+37105,8.243196,Ethyl Benzene,LB
+37105,41.5723,Toluene,LB
+37105,0.00520347,Benzo[k]Fluoranthene,LB
+37105,0.0001691879,"Dibenzo[a,h]Anthracene",LB
+37105,8.032916,"2,2,4-Trimethylpentane",LB
+37105,0.008047216,Manganese,LB
+37105,5.020146,Acetaldehyde,LB
+37105,0.863669,Naphthalene,LB
+37105,0.007144172,Methane,TON
+37105,0.01113462,PM2.5 Primary (Filt + Cond),TON
+37105,0.0003427425,Sulfate Portion of PM2.5-PRI,TON
+37093,4.813804e-07,Mercury,LB
+37093,0.06537025,Carbon Monoxide,TON
+37093,0.2284552,Toluene,LB
+37093,0.004944872,Chrysene,LB
+37093,0.002542134,Benzo[a]Pyrene,LB
+37093,0.08645582,"2,2,4-Trimethylpentane",LB
+37093,0.0002080597,Sulfur Dioxide,TON
+37089,0.0006913218,Pyrene,LB
+37089,0.9486166,Xylenes (Mixed Isomers),LB
+37089,1.8726546e-08,Chromium (VI),LB
+37089,0.0018818274,Acenaphthylene,LB
+37089,0.00012115766,Chrysene,LB
+37089,0.3712258,Benzene,LB
+37089,4.976075e-07,Nitrate portion of PM2.5-PRI,TON
+37089,0.03211002,Anthracene,LB
+37089,1.2622102e-05,Chromium (VI),LB
+37089,0.05482496,Fluoranthene,LB
+37089,0.2039636,Phenanthrene,LB
+37089,0.0169699,Nitrous Oxide,TON
+37089,0.5512532,Volatile Organic Compounds,TON
+37073,12.20728,Ethyl Benzene,LB
+37073,23.25152,Toluene,LB
+37073,22.3169,Xylenes (Mixed Isomers),LB
+37073,0.002088682,"Indeno[1,2,3-c,d]Pyrene",LB
+37073,0.09614306,Methane,TON
+37073,0.3087998,PM10-Primary from certain diesel engines,TON
+37073,0.2199187,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.16238952,Benzo[a]Pyrene,LB
+37085,5.775976,"2,2,4-Trimethylpentane",LB
+37085,0.007870817,Nitrous Oxide,TON
+37085,0.002893019,Nitrate portion of PM2.5-PRI,TON
+37085,8.862005,Nitrogen Oxides,TON
+37085,0.7585336,PM10 Primary (Filt + Cond),TON
+37085,0.01375457,Sulfate Portion of PM2.5-PRI,TON
+37079,0.0004570892,Fluorene,LB
+37079,0.4875255,Carbon Dioxide,TON
+37079,2.404036e-07,Nitrate portion of PM2.5-PRI,TON
+37079,2.339726e-06,Arsenic,LB
+37067,0.07744726,Benzene,LB
+37067,0.0012697594,Manganese,LB
+37067,7.675704e-05,Acenaphthene,LB
+37067,0.2229886,Methane,TON
+37067,0.1349468,Nitrogen Oxides,TON
+37067,0.0006074236,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.001209223,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,1.12896,PM25-Primary from certain diesel engines,TON
+37063,0.01293161,Nitrous Oxide,TON
+37063,2.559939,Volatile Organic Compounds,TON
+37063,41.8165,Benzene,LB
+37063,3.193878,Fluorene,LB
+37063,25.67102,Styrene,LB
+37063,0.17690834,Benzo[a]Pyrene,LB
+37063,5.874384,Acenaphthene,LB
+37063,0.03160783,Nitrous Oxide,TON
+37063,0.1325832,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,0.0005687628,"Dibenzo[a,h]Anthracene",LB
+37063,7.857588,Acetaldehyde,LB
+37063,0.0533542,Fluorene,LB
+37063,381.6123,Carbon Dioxide,TON
+37063,0.0008390758,Sulfate Portion of PM2.5-PRI,TON
+37067,0.06742464,Fluoranthene,LB
+37067,0.2052284,Acenaphthylene,LB
+37067,14.67795,Formaldehyde,LB
+37067,9.09989e-05,Nitrate portion of PM2.5-PRI,TON
+37065,27.20046,Ethyl Benzene,LB
+37065,0.012844438,"Benzo[g,h,i,]Perylene",LB
+37065,19.55844,"2,2,4-Trimethylpentane",LB
+37065,0.6811184,Benz[a]Anthracene,LB
+37065,359.8778,Acetaldehyde,LB
+37065,2.858346,Acenaphthene,LB
+37065,4653.847,Carbon Dioxide,TON
+37063,55.858,Acrolein,LB
+37063,841.473,Formaldehyde,LB
+37063,2827.276,Benzene,LB
+37063,1.0095716,Manganese,LB
+37063,0.3877976,Nickel,LB
+37063,3.518455,Ammonia,TON
+37063,1.620621,PM2.5 Primary (Filt + Cond),TON
+37063,0.04397702,Sulfate Portion of PM2.5-PRI,TON
+37047,0.018788736,Chrysene,LB
+37047,0.03224218,Benz[a]Anthracene,LB
+37047,0.003018334,Manganese,LB
+37047,0.0006316442,Arsenic,LB
+37047,0.03473556,PM25-Primary from certain diesel engines,TON
+37047,0.0001666666,Nitrate portion of PM2.5-PRI,TON
+37047,0.70514,Nitrogen Oxides,TON
+37047,0.005621892,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.07976613,Volatile Organic Compounds,TON
+37199,5.853428,Ethyl Benzene,LB
+37199,2.270356,Styrene,LB
+37199,13.48944,Toluene,LB
+37199,4.361722e-05,Chromium (VI),LB
+37199,0.006893822,"Benzo[g,h,i,]Perylene",LB
+37199,178.83,Formaldehyde,LB
+37199,0.3705604,Benz[a]Anthracene,LB
+37199,0.5471255,PM10 Primary (Filt + Cond),TON
+37199,0.06938363,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.2780424,Acrolein,LB
+37195,0.013073526,Anthracene,LB
+37195,0.294255,Propionaldehyde,LB
+37195,0.08207242,Phenanthrene,LB
+37195,0.01104726,Methane,TON
+37183,16.126838,Anthracene,LB
+37183,317.4546,Propionaldehyde,LB
+37183,159.48348,"2,2,4-Trimethylpentane",LB
+37183,0.7603516,Nickel,LB
+37181,0.15577644,Propionaldehyde,LB
+37179,3.633296,Styrene,LB
+37179,25.6259,Xylenes (Mixed Isomers),LB
+37179,0.0004514502,Benzo[k]Fluoranthene,LB
+37179,1.4210664,Acenaphthylene,LB
+37179,1.4463096,Fluorene,LB
+37179,0.04094951,PM25-Primary from certain diesel engines,TON
+37179,0.03705114,Ammonia,TON
+37179,0.0003099498,Nitrate portion of PM2.5-PRI,TON
+37019,69.1273,Benzene,LB
+37019,9.041372,Styrene,LB
+37019,0.12771234,Benzo[b]Fluoranthene,LB
+37019,1.898864,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.007534958,Nitrate portion of PM2.5-PRI,TON
+37019,4.607885,PM10 Primary (Filt + Cond),TON
+37013,4.701454,Styrene,LB
+37013,10.759426,"1,3-Butadiene",LB
+37013,0.01514676,"Benzo[g,h,i,]Perylene",LB
+37013,362.7304,Formaldehyde,LB
+37013,38.60668,Naphthalene,LB
+37013,0.3536328,Organic Carbon portion of PM2.5-PRI,TON
+37019,8.516088,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,6.687756,Benzo[b]Fluoranthene,LB
+37019,6017.842,Carbon Monoxide,TON
+37019,2.097112,Elemental Carbon portion of PM2.5-PRI,TON
+37011,0.336918,Propionaldehyde,LB
+37011,0.008646594,Chrysene,LB
+37011,0.00018316908,"Dibenzo[a,h]Anthracene",LB
+37011,0.2206914,Ethyl Benzene,LB
+37011,0.08878774,Styrene,LB
+37011,0.488401,Toluene,LB
+37011,0.227352,Carbon Monoxide,TON
+37011,7.897261e-05,Nitrate portion of PM2.5-PRI,TON
+37011,0.6591051,Nitrogen Oxides,TON
+37011,0.0370952,Volatile Organic Compounds,TON
+37011,16.134902,Xylenes (Mixed Isomers),LB
+37011,0.0006613706,Manganese,LB
+37011,34.24585,Carbon Dioxide,TON
+37019,0.004875754,Benzo[a]Pyrene,LB
+37019,427.4116,Carbon Dioxide,TON
+37019,0.005962731,Nitrous Oxide,TON
+37019,0.01315349,"Benzo[g,h,i,]Perylene",LB
+37151,0.0019372658,Anthracene,LB
+37151,2.64131,"2,2,4-Trimethylpentane",LB
+37151,0.000231908,Mercury,LB
+37151,0.001247633,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.00018233602,Mercury,LB
+37135,0.1165413,Nitrogen Oxides,TON
+37135,3.173908,Toluene,LB
+37135,2.610348,Xylenes (Mixed Isomers),LB
+37135,0.09306443,Volatile Organic Compounds,TON
+37159,0.332293,Phenanthrene,LB
+37159,0.05234028,Anthracene,LB
+37159,19.56107,Formaldehyde,LB
+37159,0.000560964,"Dibenzo[a,h]Anthracene",LB
+37141,4.004438,Benzo[k]Fluoranthene,LB
+37141,4.105086,Benz[a]Anthracene,LB
+37141,4.569796,Sulfur Dioxide,TON
+37141,290.8938,Acrolein,LB
+37141,13.589358,"Benzo[g,h,i,]Perylene",LB
+37137,0.004333717,Nitrous Oxide,TON
+37137,5.22842e-06,"Benzo[g,h,i,]Perylene",LB
+37137,11.288752,Formaldehyde,LB
+37123,0.326282,Acrolein,LB
+37123,0.000382897,Sulfur Dioxide,TON
+37123,4.132688,Formaldehyde,LB
+37123,0.0008581488,Manganese,LB
+37123,9.458412e-07,Mercury,LB
+37123,0.004935454,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.0004935838,Manganese,LB
+37121,1.729876,Acetaldehyde,LB
+37121,0.0001643731,Elemental Carbon portion of PM2.5-PRI,TON
+37121,3.981499e-07,Nitrate portion of PM2.5-PRI,TON
+37121,0.01765871,Volatile Organic Compounds,TON
+37121,0.06808764,Toluene,LB
+37121,4.288146e-05,Anthracene,LB
+37199,0.003997976,Styrene,LB
+37199,5.567556e-05,Chrysene,LB
+37199,0.06823221,Carbon Monoxide,TON
+37199,1.948619e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37199,0.0001680291,PM10 Primary (Filt + Cond),TON
+37193,56.17456,Toluene,LB
+37193,42.59622,Hexane,LB
+37191,7.397476e-05,Chromium (VI),LB
+37191,0.02830114,Benzo[a]Pyrene,LB
+37191,7.150578,"2,2,4-Trimethylpentane",LB
+37191,7.448322e-05,Mercury,LB
+37191,0.015573418,Arsenic,LB
+37191,117.645,Acetaldehyde,LB
+37191,29.57312,Naphthalene,LB
+37191,0.0005752205,Nitrate portion of PM2.5-PRI,TON
+37191,5.616556,Nitrogen Oxides,TON
+37191,0.04549251,Organic Carbon portion of PM2.5-PRI,TON
+37191,3.641616,Styrene,LB
+37191,1.4070988,Pyrene,LB
+37181,79.6165,Naphthalene,LB
+37181,1.305608,Methane,TON
+37181,1.776926,PM25-Primary from certain diesel engines,TON
+37161,0.0004327322,Acenaphthylene,LB
+37161,45.09036,Formaldehyde,LB
+37161,1.6682244e-05,Mercury,LB
+37161,0.004926285,PM2.5 Primary (Filt + Cond),TON
+37161,0.002830132,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,133.24912,"1,3-Butadiene",LB
+37157,17.762964,Acrolein,LB
+37157,1.527125,Pyrene,LB
+37157,281.259,Formaldehyde,LB
+37151,0.02580891,PM2.5 Primary (Filt + Cond),TON
+37151,182.86572,Toluene,LB
+37151,0.6872684,Propionaldehyde,LB
+37151,0.06670276,"Benzo[g,h,i,]Perylene",LB
+37151,0.0250613,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.05155604,Fluoranthene,LB
+37151,0.000575111,"Dibenzo[a,h]Anthracene",LB
+37151,0.0008525632,Nickel,LB
+37149,3.411594,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,2.44876,Benzo[k]Fluoranthene,LB
+37149,290.9637,Nitrogen Oxides,TON
+37149,6.008112,PM10 Primary (Filt + Cond),TON
+37145,6.405098e-05,Chromium (VI),LB
+37145,0.06549126,Benzo[a]Pyrene,LB
+37145,1054.983,Carbon Dioxide,TON
+37145,0.02170414,Sulfur Dioxide,TON
+37135,7.894934e-06,Chromium (VI),LB
+37135,0.07403896,"Benzo[g,h,i,]Perylene",LB
+37135,0.014301134,Benz[a]Anthracene,LB
+37135,0.00613494,Manganese,LB
+37135,0.0015131854,Arsenic,LB
+37135,0.01250839,Ammonia,TON
+37135,1.21696,Nitrogen Oxides,TON
+37133,2785.74,Formaldehyde,LB
+37133,3.356516,Benz[a]Anthracene,LB
+37133,19.939942,Fluorene,LB
+37133,511.319,Naphthalene,LB
+37133,246.203,Nitrogen Oxides,TON
+37133,7.698191,PM2.5 Primary (Filt + Cond),TON
+37125,0.01201007,Benzo[k]Fluoranthene,LB
+37125,2.551502,Acenaphthylene,LB
+37125,1.5189384,Acenaphthene,LB
+37125,0.2458804,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,0.1492796,Sulfate Portion of PM2.5-PRI,TON
+37117,0.002278386,Anthracene,LB
+37117,0.000762795,Chrysene,LB
+37117,0.8518156,Formaldehyde,LB
+37117,0.0007858206,Benz[a]Anthracene,LB
+37117,0.8537396,Acetaldehyde,LB
+37117,0.001978862,Methane,TON
+37117,1.253696,Carbon Monoxide,TON
+37123,1.0120586,Styrene,LB
+37123,3.749106,Propionaldehyde,LB
+37123,0.3902002,Acenaphthylene,LB
+37123,0.0492654,Benzo[a]Pyrene,LB
+37123,1.7438712,"2,2,4-Trimethylpentane",LB
+37123,0.2320962,Acenaphthene,LB
+37123,0.0008858701,Nitrate portion of PM2.5-PRI,TON
+37123,0.7964548,"1,3-Butadiene",LB
+37123,5.806238e-05,"Dibenzo[a,h]Anthracene",LB
+37123,5.90386e-05,Arsenic,LB
+37123,1.913533,Acetaldehyde,LB
+37123,0.011847282,Fluorene,LB
+37123,0.006983029,Methane,TON
+37123,0.002347867,Nitrous Oxide,TON
+37123,0.0004205822,Ammonia,TON
+37123,0.002498635,PM2.5 Primary (Filt + Cond),TON
+37123,158.6887,Acrolein,LB
+37123,14.362004,Pyrene,LB
+37123,12.583506,Fluoranthene,LB
+37123,84923,Carbon Dioxide,TON
+37123,5.578404,PM10 Primary (Filt + Cond),TON
+37123,0.7303239,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,2.211144,Acenaphthene,LB
+37115,30305.57,Carbon Dioxide,TON
+37115,0.003376457,Nitrate portion of PM2.5-PRI,TON
+37115,0.3461451,Remaining PMFINE portion of PM2.5-PRI,TON
+37115,0.002170762,Chromium (VI),LB
+37115,10.081274,Acenaphthylene,LB
+37099,0.002739093,Remaining PMFINE portion of PM2.5-PRI,TON
+37099,5.824622,Ethyl Benzene,LB
+37099,1.2627068,"1,3-Butadiene",LB
+37099,21.30586,Xylenes (Mixed Isomers),LB
+37099,0.0512034,Acenaphthylene,LB
+37099,0.0004833426,Nickel,LB
+37099,0.0007410928,Arsenic,LB
+37099,1.582803e-05,Nitrate portion of PM2.5-PRI,TON
+37095,1.1007948,Hexane,LB
+37095,2.118756,Propionaldehyde,LB
+37095,1.752526e-05,Chromium (VI),LB
+37095,43.86506,Formaldehyde,LB
+37095,3.94071,Benzene,LB
+37095,0.0004250643,Nitrate portion of PM2.5-PRI,TON
+37095,0.01698831,Remaining PMFINE portion of PM2.5-PRI,TON
+37095,0.0013320984,Benzo[b]Fluoranthene,LB
+37095,104.5328,Carbon Dioxide,TON
+37091,5.127954,Styrene,LB
+37091,150.0406,Acetaldehyde,LB
+37091,3.02952,Phenanthrene,LB
+37091,1.978886,Fluorene,LB
+37091,37.96162,Naphthalene,LB
+37091,0.2128846,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.03685854,Fluoranthene,LB
+37091,0.002335686,Chrysene,LB
+37091,0.05014816,Fluorene,LB
+37091,0.0864861,Nitrogen Oxides,TON
+37091,0.0006318694,Sulfur Dioxide,TON
+37091,0.05474711,Volatile Organic Compounds,TON
+37089,0.9985878,Acrolein,LB
+37089,0.0006560726,"Indeno[1,2,3-c,d]Pyrene",LB
+37089,0.3149372,"2,2,4-Trimethylpentane",LB
+37089,0.03856636,PM10 Primary (Filt + Cond),TON
+37089,0.05062754,Manganese,LB
+37089,0.03929974,Nickel,LB
+37089,1.0074172,Fluorene,LB
+37089,0.007905195,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.01770539,Organic Carbon portion of PM2.5-PRI,TON
+37089,1.115252,Volatile Organic Compounds,TON
+37089,8.202112e-05,Chromium (VI),LB
+37089,0.9818302,Acenaphthylene,LB
+37087,3.725044e-05,Chromium (VI),LB
+37087,1.113764,Acenaphthylene,LB
+37087,5.198162,"2,2,4-Trimethylpentane",LB
+37087,0.4747362,Benz[a]Anthracene,LB
+37087,0.006126982,Arsenic,LB
+37087,0.5451997,PM10-Primary from certain diesel engines,TON
+37087,0.2216945,Elemental Carbon portion of PM2.5-PRI,TON
+37073,1.639331e-06,Nitrate portion of PM2.5-PRI,TON
+37073,0.0250802,Acrolein,LB
+37073,1.1216804e-05,"Dibenzo[a,h]Anthracene",LB
+37073,1.1665438,"2,2,4-Trimethylpentane",LB
+37081,10987.208,Ethyl Benzene,LB
+37081,91524.26,Toluene,LB
+37065,0.5805812,Carbon Monoxide,TON
+37065,0.06832254,PM25-Primary from certain diesel engines,TON
+37065,0.0008072085,Nitrous Oxide,TON
+37065,0.002897792,Sulfur Dioxide,TON
+37065,0.003216595,Sulfate Portion of PM2.5-PRI,TON
+37065,0.1411052,Volatile Organic Compounds,TON
+37065,0.849636,Ethyl Benzene,LB
+37065,0.005977674,Benzo[b]Fluoranthene,LB
+37065,0.19491042,Fluoranthene,LB
+37065,0.0008209452,Benzo[k]Fluoranthene,LB
+37065,0.6753308,"2,2,4-Trimethylpentane",LB
+37065,2.35077,Benzene,LB
+37065,10.964732,Acetaldehyde,LB
+37063,1.7257126,"1,3-Butadiene",LB
+37063,1.6319934,"2,2,4-Trimethylpentane",LB
+37063,0.005064114,Arsenic,LB
+37063,0.3947742,Fluorene,LB
+37063,6.417012,Naphthalene,LB
+37063,0.00234109,Nitrous Oxide,TON
+37059,7.62,Toluene,LB
+37059,8.582648,Benzene,LB
+37059,0.005760783,Remaining PMFINE portion of PM2.5-PRI,TON
+37053,0.0014260438,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.06182242,Chrysene,LB
+37053,0.018768072,Benzo[a]Pyrene,LB
+37053,0.01379494,Remaining PMFINE portion of PM2.5-PRI,TON
+37041,9.178598e-09,Chromium (VI),LB
+37041,0.08643552,Methane,TON
+37041,0.01238111,Organic Carbon portion of PM2.5-PRI,TON
+37041,2.215962e-05,Chromium (VI),LB
+37041,65.8941,Benzene,LB
+37041,0.04932144,Acenaphthene,LB
+37041,0.002613666,Nitrous Oxide,TON
+37035,0.002886364,"Indeno[1,2,3-c,d]Pyrene",LB
+37035,0.03797454,Benzo[a]Pyrene,LB
+37035,5.626448,Naphthalene,LB
+37033,0.14092346,"1,3-Butadiene",LB
+37033,0.2479006,Toluene,LB
+37033,0.2284878,Propionaldehyde,LB
+37033,0.011326442,Benz[a]Anthracene,LB
+37033,0.000717629,Manganese,LB
+37033,0.4555358,Naphthalene,LB
+37033,6.153351e-05,Nitrous Oxide,TON
+37033,0.0007450872,Nitrate portion of PM2.5-PRI,TON
+37033,0.3414928,Volatile Organic Compounds,TON
+37033,0.012379566,Benzo[b]Fluoranthene,LB
+37033,6.382244,Naphthalene,LB
+37029,0.0011164994,"Benzo[g,h,i,]Perylene",LB
+37029,0.0004194816,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.0003004016,Benzo[k]Fluoranthene,LB
+37029,0.0004199134,Benzo[a]Pyrene,LB
+37029,0.12197158,"1,3-Butadiene",LB
+37029,0.018687484,Propionaldehyde,LB
+37029,0.0016557988,Pyrene,LB
+37029,0.506124,Carbon Monoxide,TON
+37029,0.0001014582,Elemental Carbon portion of PM2.5-PRI,TON
+37125,2.381468,Benzo[b]Fluoranthene,LB
+37125,0.07919668,"Dibenzo[a,h]Anthracene",LB
+37125,0.10039768,Mercury,LB
+37125,14.692876,Fluorene,LB
+37125,11.39271,Ammonia,TON
+37125,170.8134,Nitrogen Oxides,TON
+37121,0.00014848164,Manganese,LB
+37121,3.333166,Hexane,LB
+37121,0.004543912,"Benzo[g,h,i,]Perylene",LB
+37121,3.92249e-05,"Dibenzo[a,h]Anthracene",LB
+37121,0.005452587,Methane,TON
+37121,3.003966e-05,Sulfate Portion of PM2.5-PRI,TON
+37101,1.4936796,Fluorene,LB
+37101,0.05678964,PM25-Primary from certain diesel engines,TON
+37101,0.0001242953,Chromium (VI),LB
+37103,0.5615308,Toluene,LB
+37103,0.003567878,Propionaldehyde,LB
+37103,1.0874248e-07,Chromium (VI),LB
+37103,0.0009968726,Acenaphthylene,LB
+37103,0.00010421382,Manganese,LB
+37103,3.967418e-07,Nitrate portion of PM2.5-PRI,TON
+37101,111.56208,Benzene,LB
+37101,0.004482156,Nickel,LB
+37101,0.0001615254,Nitrate portion of PM2.5-PRI,TON
+37099,0.17240408,Formaldehyde,LB
+37099,5.546848e-07,Mercury,LB
+37099,0.000526083,Acenaphthene,LB
+37099,0.002905612,Phenanthrene,LB
+37099,9.662316e-05,Ammonia,TON
+37099,0.009321383,Volatile Organic Compounds,TON
+37099,0.3256154,Ethyl Benzene,LB
+37099,5.533008e-08,Chromium (VI),LB
+37099,0.0003023796,Benzo[b]Fluoranthene,LB
+37095,0.03178258,Ethyl Benzene,LB
+37095,0.0009855176,Acrolein,LB
+37095,8.461318e-05,Pyrene,LB
+37095,1.4039726e-05,Benzo[k]Fluoranthene,LB
+37095,4.600576e-06,Manganese,LB
+37095,5.08503e-05,Acenaphthene,LB
+37095,3.294103e-05,Nitrous Oxide,TON
+37095,9.888125e-06,Organic Carbon portion of PM2.5-PRI,TON
+37091,3.57024,Fluoranthene,LB
+37091,1.1028654,Benzo[a]Pyrene,LB
+37091,1666.512,Ethyl Benzene,LB
+37091,0.0273474,Mercury,LB
+37091,0.3409974,Nickel,LB
+37091,0.52285,Arsenic,LB
+37091,13.205204,Phenanthrene,LB
+37091,0.3441451,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,2.649762,Ethyl Benzene,LB
+37075,0.5688382,Pyrene,LB
+37075,0.001684684,"Dibenzo[a,h]Anthracene",LB
+37075,0.05823166,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.302742,Fluoranthene,LB
+37071,67.37628,Formaldehyde,LB
+37071,0.5549136,PM10 Primary (Filt + Cond),TON
+37071,0.06539347,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,2.770912,Ethyl Benzene,LB
+37059,0.03012752,Benzo[a]Pyrene,LB
+37059,0.12335768,Benz[a]Anthracene,LB
+37059,0.011029744,Nickel,LB
+37059,36.79296,Acetaldehyde,LB
+37059,774.4832,Carbon Dioxide,TON
+37059,0.001648913,Nitrous Oxide,TON
+37059,0.1942007,PM2.5 Primary (Filt + Cond),TON
+37055,27.18258,Ethyl Benzene,LB
+37055,158.7744,Toluene,LB
+37055,0.8191574,Propionaldehyde,LB
+37055,0.03094362,"Benzo[g,h,i,]Perylene",LB
+37055,47.59364,Benzene,LB
+37055,2.27404,Naphthalene,LB
+37055,0.03340639,Nitrous Oxide,TON
+37055,4963.904,Xylenes (Mixed Isomers),LB
+37051,4.719864e-05,Fluoranthene,LB
+37051,0.004080396,Manganese,LB
+37039,21.84546,Ethyl Benzene,LB
+37039,1.277488e-05,Chromium (VI),LB
+37039,0.011690064,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.011739304,Benzo[a]Pyrene,LB
+37039,14.07417,Carbon Monoxide,TON
+37037,1.831645,Toluene,LB
+37037,1.1514158,Propionaldehyde,LB
+37037,1.9335498,Xylenes (Mixed Isomers),LB
+37037,0.000624641,Benzo[k]Fluoranthene,LB
+37037,0.02910262,Chrysene,LB
+37037,10.04056,Acetaldehyde,LB
+37037,0.2691278,Phenanthrene,LB
+37037,0.01213811,Remaining PMFINE portion of PM2.5-PRI,TON
+37037,0.1277813,Volatile Organic Compounds,TON
+37029,0.6002786,"1,3-Butadiene",LB
+37029,0.1007006,Acenaphthylene,LB
+37029,3.619644e-05,"Dibenzo[a,h]Anthracene",LB
+37029,225.4383,Carbon Dioxide,TON
+37029,0.01498221,PM10 Primary (Filt + Cond),TON
+37057,35476.14,Toluene,LB
+37053,42.02586,"1,3-Butadiene",LB
+37053,139.4377,Naphthalene,LB
+37053,0.02302483,Nitrous Oxide,TON
+37053,0.284434,Ammonia,TON
+37053,1.16435,PM2.5 Primary (Filt + Cond),TON
+37053,0.008728708,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.11485084,Benzo[a]Pyrene,LB
+37045,0.0003276512,Chromium (VI),LB
+37045,0.017673218,Benzo[k]Fluoranthene,LB
+37045,68.72152,Benzene,LB
+37045,4.611224,Fluorene,LB
+37045,4.045743,Volatile Organic Compounds,TON
+37043,0.08398412,Hexane,LB
+37043,9.536256e-05,Benzo[k]Fluoranthene,LB
+37043,0.08590528,"2,2,4-Trimethylpentane",LB
+37043,0.0001097316,Nitrous Oxide,TON
+37043,0.0006783376,Sulfur Dioxide,TON
+37039,53.34942,Phenanthrene,LB
+37039,14.25748,Fluoranthene,LB
+37039,0.0682588,"Dibenzo[a,h]Anthracene",LB
+37037,63.11046,Hexane,LB
+37037,71.67502,Xylenes (Mixed Isomers),LB
+37037,24.04796,Benzene,LB
+37037,2.932693,Volatile Organic Compounds,TON
+37027,1.5739126,Anthracene,LB
+37027,0.01443216,"Dibenzo[a,h]Anthracene",LB
+37027,17.09565,"2,2,4-Trimethylpentane",LB
+37027,1.1137264,Benz[a]Anthracene,LB
+37027,3.240662,Fluorene,LB
+37011,3.342244,Pyrene,LB
+37011,2.129018,Acenaphthene,LB
+37011,5.527808,Phenanthrene,LB
+37011,3449.345,Carbon Dioxide,TON
+37011,0.3824845,Elemental Carbon portion of PM2.5-PRI,TON
+37005,41.42722,Acrolein,LB
+37005,9.89818e-05,Chromium (VI),LB
+37005,24.56,Carbon Monoxide,TON
+37005,0.3514553,PM10-Primary from certain diesel engines,TON
+37005,0.3324695,PM2.5 Primary (Filt + Cond),TON
+37005,0.02030856,Sulfur Dioxide,TON
+37005,0.07225346,Pyrene,LB
+37005,83.51598,Carbon Dioxide,TON
+37005,0.001904355,PM25-Primary from certain diesel engines,TON
+37003,0.12312196,Toluene,LB
+37003,0.0002369322,Fluoranthene,LB
+37003,40.37614,Formaldehyde,LB
+37003,3.815728e-05,Benz[a]Anthracene,LB
+37003,3.540604,Acetaldehyde,LB
+37003,0.0007571736,Phenanthrene,LB
+37003,0.017885432,Ethyl Benzene,LB
+37003,0.017313286,"1,3-Butadiene",LB
+37003,4.806982,Ethyl Benzene,LB
+37003,6.08293,Benzene,LB
+37001,8.025864,"2,2,4-Trimethylpentane",LB
+37001,0.0318176,Nickel,LB
+37001,0.04177629,Ammonia,TON
+37001,0.1354208,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.06697538,Benzo[b]Fluoranthene,LB
+37177,1.4521302,Hexane,LB
+37177,0.002484172,"Benzo[g,h,i,]Perylene",LB
+37177,0.012150028,Benzo[b]Fluoranthene,LB
+37177,0.0783951,Chrysene,LB
+37177,700.5835,Carbon Dioxide,TON
+37193,1.641331,Acrolein,LB
+37193,1.4586748,Xylenes (Mixed Isomers),LB
+37193,0.0011786294,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,5.808674e-06,Mercury,LB
+37193,0.104305,PM10-Primary from certain diesel engines,TON
+37185,0.13616948,Propionaldehyde,LB
+37185,0.002614986,Acenaphthylene,LB
+37185,0.003221,Phenanthrene,LB
+37185,0.02947382,Naphthalene,LB
+37185,0.9051822,Carbon Monoxide,TON
+37185,89.67601,Carbon Dioxide,TON
+37185,0.007881156,Nickel,LB
+37185,0.005338631,PM25-Primary from certain diesel engines,TON
+37185,3.771714e-05,Nitrate portion of PM2.5-PRI,TON
+37185,0.006515709,PM2.5 Primary (Filt + Cond),TON
+37185,0.006082394,Anthracene,LB
+37185,17.425028,Xylenes (Mixed Isomers),LB
+37185,0.007624308,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.00755025,Benzo[a]Pyrene,LB
+37185,0.003922548,Benz[a]Anthracene,LB
+37185,0.013898098,Fluorene,LB
+37185,0.356966,Naphthalene,LB
+37185,0.002787526,Ammonia,TON
+37191,55.74634,Xylenes (Mixed Isomers),LB
+37191,3.051248,Acenaphthylene,LB
+37191,655.1482,Formaldehyde,LB
+37191,17.571358,"2,2,4-Trimethylpentane",LB
+37191,1.3699282,Benz[a]Anthracene,LB
+37191,0.08353472,Nickel,LB
+37191,1.8158696,Acenaphthene,LB
+37191,7.219318,Phenanthrene,LB
+37191,15.50473,Carbon Monoxide,TON
+37191,0.02642458,Nitrous Oxide,TON
+37191,0.0752114,Sulfur Dioxide,TON
+37187,0.0003357684,Benzo[k]Fluoranthene,LB
+37187,0.0003351222,"Dibenzo[a,h]Anthracene",LB
+37187,0.0715851,Fluorene,LB
+37187,0.005078449,Methane,TON
+37187,121.7392,Carbon Dioxide,TON
+37183,1.640635,Volatile Organic Compounds,TON
+37179,1.7794188e-05,Benz[a]Anthracene,LB
+37179,0.05711596,Benzene,LB
+37179,5.0965e-06,Arsenic,LB
+37179,0.0001099446,Fluorene,LB
+37179,0.01731696,Carbon Monoxide,TON
+37179,2.016162,Carbon Dioxide,TON
+37179,0.02953212,Ethyl Benzene,LB
+37179,4.667418e-05,Anthracene,LB
+37179,9.286432e-08,Nitrate portion of PM2.5-PRI,TON
+37179,1.06904e-06,Sulfate Portion of PM2.5-PRI,TON
+37179,0.0008955157,Volatile Organic Compounds,TON
+37019,14.06199,Ethyl Benzene,LB
+37019,26.27372,Hexane,LB
+37019,4.843686e-06,Chromium (VI),LB
+37019,0.007910574,Ammonia,TON
+37019,0.003764205,Organic Carbon portion of PM2.5-PRI,TON
+37015,0.5501722,Hexane,LB
+37015,1.329092e-05,Chromium (VI),LB
+37015,0.005359106,Chrysene,LB
+37015,9.16432,Acetaldehyde,LB
+37015,0.1072236,Fluorene,LB
+37015,2.295902,Naphthalene,LB
+37015,0.00382494,PM25-Primary from certain diesel engines,TON
+37015,0.0002383178,Nitrous Oxide,TON
+37015,0.001698285,Sulfur Dioxide,TON
+37009,0.004359026,Chrysene,LB
+37009,3.543068,Formaldehyde,LB
+37009,0.0006659028,Manganese,LB
+37009,0.04696528,Styrene,LB
+37009,0.10718904,"1,3-Butadiene",LB
+37001,459.6766,Formaldehyde,LB
+37001,0.06572478,Nickel,LB
+37001,0.1963393,Methane,TON
+37001,0.5284242,PM10-Primary from certain diesel engines,TON
+37001,0.6919464,PM10 Primary (Filt + Cond),TON
+37063,0.007317688,Phenanthrene,LB
+37063,277.6178,Carbon Dioxide,TON
+37063,0.0009562335,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.00592599,PM2.5 Primary (Filt + Cond),TON
+37063,3.802932,Benzene,LB
+37025,223.5476,Acetaldehyde,LB
+37025,0.10473622,Phenanthrene,LB
+37025,0.11032248,"Benzo[g,h,i,]Perylene",LB
+37025,0.000951467,"Dibenzo[a,h]Anthracene",LB
+37025,20.23764,"2,2,4-Trimethylpentane",LB
+37017,26.08722,Acrolein,LB
+37017,25.45736,Xylenes (Mixed Isomers),LB
+37017,0.01016584,Benzo[k]Fluoranthene,LB
+37017,0.01014638,"Dibenzo[a,h]Anthracene",LB
+37017,8.779156,"2,2,4-Trimethylpentane",LB
+37017,0.8107454,Benz[a]Anthracene,LB
+37017,0.0983862,Manganese,LB
+37017,145.19804,Acetaldehyde,LB
+37017,0.1794593,Methane,TON
+37017,0.903422,PM10-Primary from certain diesel engines,TON
+37017,0.8725417,PM2.5 Primary (Filt + Cond),TON
+37017,0.03285755,Sulfur Dioxide,TON
+37017,0.03421807,Sulfate Portion of PM2.5-PRI,TON
+37009,1.1856358,Ethyl Benzene,LB
+37009,2.655328,Acrolein,LB
+37009,0.918062,Hexane,LB
+37009,1.667367,Propionaldehyde,LB
+37009,0.1475978,Pyrene,LB
+37009,4.657002e-05,"Dibenzo[a,h]Anthracene",LB
+37009,0.001329398,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.977108,"1,3-Butadiene",LB
+37005,2.567428,Toluene,LB
+37005,0.0010485194,"Benzo[g,h,i,]Perylene",LB
+37005,0.05481794,PM25-Primary from certain diesel engines,TON
+37005,0.0229378,Elemental Carbon portion of PM2.5-PRI,TON
+37059,0.15000978,Propionaldehyde,LB
+37059,6.314534e-06,Chromium (VI),LB
+37059,0.003381696,"Benzo[g,h,i,]Perylene",LB
+37059,6.330292e-05,Mercury,LB
+37059,0.000622325,Acenaphthene,LB
+37059,5.501952e-05,Sulfate Portion of PM2.5-PRI,TON
+37013,0.16185868,"1,3-Butadiene",LB
+37013,0.11926742,Acrolein,LB
+37013,0.259594,Propionaldehyde,LB
+37013,0.00202455,Pyrene,LB
+37013,1.7061628,Formaldehyde,LB
+37013,0.002452243,Nitrous Oxide,TON
+37013,0.003015113,PM2.5 Primary (Filt + Cond),TON
+37169,0.2892648,Xylenes (Mixed Isomers),LB
+37169,0.000270941,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,0.00014376632,Benzo[k]Fluoranthene,LB
+37169,6.221564e-06,"Dibenzo[a,h]Anthracene",LB
+37169,0.0001251437,Benz[a]Anthracene,LB
+37169,0.39816,Benzene,LB
+37169,0.0003882012,Nitrous Oxide,TON
+37169,9.598238e-07,Nitrate portion of PM2.5-PRI,TON
+37169,0.001376494,PM10 Primary (Filt + Cond),TON
+37169,0.009544887,Volatile Organic Compounds,TON
+37115,8.038672,Benzene,LB
+37115,0.00127158,Elemental Carbon portion of PM2.5-PRI,TON
+37115,0.01871568,PM10 Primary (Filt + Cond),TON
+37115,0.08794512,Styrene,LB
+37115,0.3625334,"1,3-Butadiene",LB
+37115,6.499628,Toluene,LB
+37115,0.005048422,Fluoranthene,LB
+37115,0.002179548,Chrysene,LB
+37109,21.94894,Toluene,LB
+37177,0.9123738,Acetaldehyde,LB
+37177,8.677078,Formaldehyde,LB
+37177,0.0002465114,Manganese,LB
+37195,2.220906,Anthracene,LB
+37195,5.978702,Pyrene,LB
+37195,3.610998,Acenaphthylene,LB
+37195,0.3945684,Benzo[a]Pyrene,LB
+37195,70.23746,Benzene,LB
+37195,0.6486512,Methane,TON
+37195,23.89257,Carbon Monoxide,TON
+37195,3.231186,PM25-Primary from certain diesel engines,TON
+37195,0.00697265,Nitrate portion of PM2.5-PRI,TON
+37189,0.0003565452,Benzo[k]Fluoranthene,LB
+37189,0.0003106668,Benz[a]Anthracene,LB
+37189,0.002950641,Methane,TON
+37189,0.0001928732,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.0004527327,Remaining PMFINE portion of PM2.5-PRI,TON
+37189,0.001495048,Sulfur Dioxide,TON
+37189,0.3602034,Hexane,LB
+37185,0.018046218,Ethyl Benzene,LB
+37185,0.002009824,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,0.03272104,Volatile Organic Compounds,TON
+37185,30.12996,Formaldehyde,LB
+37185,0.0001897259,Arsenic,LB
+37185,0.00012677516,Acenaphthene,LB
+37185,0.0005963578,Phenanthrene,LB
+37185,53.19802,Carbon Dioxide,TON
+37191,1.7395094e-05,Chromium (VI),LB
+37191,0.018983698,Manganese,LB
+37191,0.1399526,PM10-Primary from certain diesel engines,TON
+37191,1.32247,Hexane,LB
+37181,10.843246,Ethyl Benzene,LB
+37181,24.54112,Xylenes (Mixed Isomers),LB
+37181,0.01776697,"Indeno[1,2,3-c,d]Pyrene",LB
+37181,1.7003468,Acenaphthylene,LB
+37181,0.09986716,Manganese,LB
+37181,140.51524,Acetaldehyde,LB
+37181,1.0116018,Acenaphthene,LB
+37181,0.8339861,PM25-Primary from certain diesel engines,TON
+37039,0.7890972,Benzene,LB
+37157,0.04536344,"1,3-Butadiene",LB
+37157,0.0006843262,Pyrene,LB
+37157,0.0019992056,"Benzo[g,h,i,]Perylene",LB
+37157,0.0003951,Benzo[k]Fluoranthene,LB
+37157,0.001993582,Phenanthrene,LB
+37157,51.64328,Carbon Dioxide,TON
+37157,0.00020121,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.0009310136,Nitrous Oxide,TON
+37157,0.0004131704,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,0.02393321,Volatile Organic Compounds,TON
+37161,1.6697638,Hexane,LB
+37161,5.368418,"2,2,4-Trimethylpentane",LB
+37161,0.137091,Volatile Organic Compounds,TON
+37153,1.5909298,Hexane,LB
+37145,0.02697576,Styrene,LB
+37145,0.14407442,"1,3-Butadiene",LB
+37145,7.153404e-06,Chromium (VI),LB
+37145,1.1256772,"2,2,4-Trimethylpentane",LB
+37145,7.171394e-05,Mercury,LB
+37145,11.281256,Acetaldehyde,LB
+37145,5.288841e-06,Nitrate portion of PM2.5-PRI,TON
+37145,6.109374e-05,Sulfate Portion of PM2.5-PRI,TON
+37177,0.02624674,Benzo[k]Fluoranthene,LB
+37177,0.01871493,Manganese,LB
+37177,0.18644686,Fluorene,LB
+37177,0.01153927,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.0011172,Sulfate Portion of PM2.5-PRI,TON
+37177,53.11218,Ethyl Benzene,LB
+37177,1.850749,Propionaldehyde,LB
+37175,0.005093688,"Benzo[g,h,i,]Perylene",LB
+37175,0.03089638,Acenaphthylene,LB
+37175,0.0019325248,Benzo[a]Pyrene,LB
+37175,9.33624e-06,Mercury,LB
+37175,0.03678108,Phenanthrene,LB
+37175,0.005593486,Methane,TON
+37163,9.415672,Styrene,LB
+37163,712.248,Formaldehyde,LB
+37163,0.497383,Benzo[a]Pyrene,LB
+37163,0.202373,Manganese,LB
+37163,303.2796,Acetaldehyde,LB
+37163,1.908406,PM10-Primary from certain diesel engines,TON
+37163,2.554257,PM10 Primary (Filt + Cond),TON
+37163,0.3108791,Remaining PMFINE portion of PM2.5-PRI,TON
+37163,6.986372,Styrene,LB
+37163,0.00012397742,Chromium (VI),LB
+37163,0.02813638,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,3.807194,Fluoranthene,LB
+37163,11.085996,"2,2,4-Trimethylpentane",LB
+37163,0.019643062,Arsenic,LB
+37163,51.22422,Naphthalene,LB
+37163,2.360046,PM10-Primary from certain diesel engines,TON
+37163,0.009232092,Nitrous Oxide,TON
+37163,75.86912,Propionaldehyde,LB
+37163,0.008600388,"Indeno[1,2,3-c,d]Pyrene",LB
+37163,0.9461524,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.002262461,Nitrate portion of PM2.5-PRI,TON
+37163,0.03888206,Sulfate Portion of PM2.5-PRI,TON
+37173,3.118242,Propionaldehyde,LB
+37173,0.006159938,Benzo[b]Fluoranthene,LB
+37173,0.0003710252,Nitrate portion of PM2.5-PRI,TON
+37173,0.1275234,PM2.5 Primary (Filt + Cond),TON
+37173,0.01324417,Remaining PMFINE portion of PM2.5-PRI,TON
+37185,4205.874,Hexane,LB
+37185,5836.812,Benzene,LB
+37185,32.50664,Phenanthrene,LB
+37185,0.006153623,Nitrate portion of PM2.5-PRI,TON
+37185,97.72265,Volatile Organic Compounds,TON
+37181,0.8402378,Acenaphthylene,LB
+37181,69.9289,Formaldehyde,LB
+37181,273.403,"2,2,4-Trimethylpentane",LB
+37181,179.63066,Ethyl Benzene,LB
+37181,0.15808932,Anthracene,LB
+37181,241.233,Benzene,LB
+37181,0.18440058,Acenaphthene,LB
+37181,47.53643,Carbon Monoxide,TON
+37181,0.1486556,Ammonia,TON
+37181,0.04354323,Organic Carbon portion of PM2.5-PRI,TON
+37181,0.02029037,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,8.946802,Ethyl Benzene,LB
+37001,0.017771028,Benzo[b]Fluoranthene,LB
+37001,42.12654,Benzene,LB
+37001,0.015565086,Acenaphthene,LB
+37001,0.03152828,Fluorene,LB
+37001,0.1221514,Methane,TON
+37001,0.04896305,PM2.5 Primary (Filt + Cond),TON
+37127,1.7735234,Toluene,LB
+37127,1.5452532,Xylenes (Mixed Isomers),LB
+37127,2.116804,Benzene,LB
+37127,0.003078942,Manganese,LB
+37127,8.770872,Acetaldehyde,LB
+37127,0.0079301,Ammonia,TON
+37127,0.001336679,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.004869085,Sulfur Dioxide,TON
+37127,0.0001035434,Sulfate Portion of PM2.5-PRI,TON
+37101,3.981044,Hexane,LB
+37101,0.00018789916,"Dibenzo[a,h]Anthracene",LB
+37101,0.005469781,Organic Carbon portion of PM2.5-PRI,TON
+37101,0.2553728,Volatile Organic Compounds,TON
+37177,0.0011254398,Acrolein,LB
+37177,5.226322e-05,Anthracene,LB
+37177,4.346124e-05,Benzo[a]Pyrene,LB
+37177,0.04045238,"2,2,4-Trimethylpentane",LB
+37177,2.530426e-05,Benz[a]Anthracene,LB
+37177,3.896768e-06,Arsenic,LB
+37177,0.000329391,Phenanthrene,LB
+37161,2.186765e-05,Nitrate portion of PM2.5-PRI,TON
+37161,0.3916417,Nitrogen Oxides,TON
+37161,0.003865132,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.00793869,PM2.5 Primary (Filt + Cond),TON
+37161,0.001715965,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.460545,Styrene,LB
+37161,0.02097554,"Benzo[g,h,i,]Perylene",LB
+37161,0.00548521,Chrysene,LB
+37151,1.032179,Toluene,LB
+37151,0.3844502,Hexane,LB
+37151,0.00348687,Benzo[b]Fluoranthene,LB
+37151,148.3183,Carbon Dioxide,TON
+37151,0.01812,Elemental Carbon portion of PM2.5-PRI,TON
+37151,0.05423949,PM10 Primary (Filt + Cond),TON
+37139,240.3276,Carbon Dioxide,TON
+37139,0.0008615622,Benzo[a]Pyrene,LB
+37139,2.787688,Benzene,LB
+37139,1.4102274e-05,Mercury,LB
+37139,3.305178,Naphthalene,LB
+37141,4.186336,Ethyl Benzene,LB
+37141,1.8976572,Styrene,LB
+37141,0.4052566,Anthracene,LB
+37141,3.096156e-05,Chromium (VI),LB
+37141,0.7291822,Acenaphthylene,LB
+37141,0.10408674,Chrysene,LB
+37141,0.18878792,Benz[a]Anthracene,LB
+37141,4.790495,Carbon Monoxide,TON
+37141,0.3061456,PM10-Primary from certain diesel engines,TON
+37141,0.1827,Elemental Carbon portion of PM2.5-PRI,TON
+37141,0.4120601,PM10 Primary (Filt + Cond),TON
+37141,0.7507166,Volatile Organic Compounds,TON
+37131,4.436114,"1,3-Butadiene",LB
+37131,0.03740554,Benzo[k]Fluoranthene,LB
+37131,0.008495164,Manganese,LB
+37131,0.2394652,Fluorene,LB
+37131,0.05399855,Methane,TON
+37131,32.37297,Carbon Monoxide,TON
+37131,0.01664385,Sulfur Dioxide,TON
+37125,0.2759035,Volatile Organic Compounds,TON
+37125,0.3263686,Fluorene,LB
+37125,0.1131091,PM25-Primary from certain diesel engines,TON
+37125,0.465327,Pyrene,LB
+37125,1.4503332,"2,2,4-Trimethylpentane",LB
+37121,0.0014054994,Anthracene,LB
+37121,0.0017727392,"Benzo[g,h,i,]Perylene",LB
+37121,0.00747713,Acenaphthylene,LB
+37121,0.0001865007,Elemental Carbon portion of PM2.5-PRI,TON
+37111,2.586102,Anthracene,LB
+37111,0.13386762,Nickel,LB
+37111,2.722331,Methane,TON
+37111,38430.87,Carbon Dioxide,TON
+37157,3.867872,Acrolein,LB
+37157,0.002918156,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,0.3744618,Fluoranthene,LB
+37157,0.123406,Benz[a]Anthracene,LB
+37157,0.007658034,Nickel,LB
+37157,1.17211,Carbon Monoxide,TON
+37157,0.001760466,Nitrous Oxide,TON
+37157,0.1365643,PM2.5 Primary (Filt + Cond),TON
+37157,0.006712713,Sulfate Portion of PM2.5-PRI,TON
+37157,2.878878,"2,2,4-Trimethylpentane",LB
+37157,47.47748,Acetaldehyde,LB
+37157,0.3402576,Acenaphthene,LB
+37157,11.936532,Naphthalene,LB
+37157,0.05017323,PM10 Primary (Filt + Cond),TON
+37157,0.005632166,Remaining PMFINE portion of PM2.5-PRI,TON
+37157,1.7251818,Formaldehyde,LB
+37157,3.346664e-07,Chromium (VI),LB
+37157,0.0003537138,Manganese,LB
+37157,1.944998,Carbon Monoxide,TON
+37153,0.012322852,Benzo[k]Fluoranthene,LB
+37153,0.06002352,Nickel,LB
+37153,0.005247446,Nitrate portion of PM2.5-PRI,TON
+37153,0.0004898444,"Dibenzo[a,h]Anthracene",LB
+37153,5.645914e-06,Mercury,LB
+37153,1.1769534,Toluene,LB
+37151,0.05627602,Manganese,LB
+37151,0.008184646,Arsenic,LB
+37151,0.03738481,Ammonia,TON
+37151,0.08155185,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.0462473,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.002199572,"Dibenzo[a,h]Anthracene",LB
+37151,5.884668,Ethyl Benzene,LB
+37149,0.009669416,Phenanthrene,LB
+37147,59.80682,Ethyl Benzene,LB
+37147,5.034046,Anthracene,LB
+37147,0.2131144,Benzo[a]Pyrene,LB
+37147,44.37424,"2,2,4-Trimethylpentane",LB
+37147,170.5975,Benzene,LB
+37147,0.07527794,Arsenic,LB
+37147,10.427692,Fluorene,LB
+37147,2.283301,PM10 Primary (Filt + Cond),TON
+37147,0.2470679,Sulfate Portion of PM2.5-PRI,TON
+37147,12674.004,Hexane,LB
+37147,9.485332,Anthracene,LB
+37147,15.716702,"Benzo[g,h,i,]Perylene",LB
+37147,236.7806,Acrolein,LB
+37139,0.5181102,"1,3-Butadiene",LB
+37139,0.0001476716,Nickel,LB
+37139,0.001928766,Nitrous Oxide,TON
+37139,0.0009668291,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.5045154,Benzo[k]Fluoranthene,LB
+37135,3.180524,Fluorene,LB
+37135,423.1189,Carbon Monoxide,TON
+37135,0.8882268,Nitrous Oxide,TON
+37135,2.44763,PM10 Primary (Filt + Cond),TON
+37131,0.06682278,Styrene,LB
+37131,4.265638e-06,"Dibenzo[a,h]Anthracene",LB
+37131,8.844684e-06,Nickel,LB
+37131,0.0011428928,Phenanthrene,LB
+37131,0.0001012934,Organic Carbon portion of PM2.5-PRI,TON
+37123,0.1738062,Propionaldehyde,LB
+37123,1.902632e-06,Chromium (VI),LB
+37123,0.007174686,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.00016463258,"Dibenzo[a,h]Anthracene",LB
+37123,9.915118,"2,2,4-Trimethylpentane",LB
+37123,0.003959002,Benz[a]Anthracene,LB
+37123,0.0002378396,Nickel,LB
+37123,0.003906865,Organic Carbon portion of PM2.5-PRI,TON
+37115,17.45175,Xylenes (Mixed Isomers),LB
+37115,0.008793984,"Benzo[g,h,i,]Perylene",LB
+37115,0.003304068,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.011117222,Fluoranthene,LB
+37115,7.58952e-05,"Dibenzo[a,h]Anthracene",LB
+37115,2.955334e-06,Mercury,LB
+37115,3.68504e-05,Nickel,LB
+37115,0.1423008,Nitrogen Oxides,TON
+37115,0.6838212,Arsenic,LB
+37115,4609.654,Ethyl Benzene,LB
+37115,6.839182,Anthracene,LB
+37115,13.294762,Pyrene,LB
+37115,3.394328,Nitrous Oxide,TON
+37115,5.50419,Ammonia,TON
+37115,0.007886865,Nitrate portion of PM2.5-PRI,TON
+37115,0.07138433,Sulfate Portion of PM2.5-PRI,TON
+37113,0.0008100763,Nitrous Oxide,TON
+37113,0.01047886,Ammonia,TON
+37113,0.01484381,PM2.5 Primary (Filt + Cond),TON
+37113,0.004331063,Sulfur Dioxide,TON
+37113,0.4770528,Volatile Organic Compounds,TON
+37113,7.418564,Toluene,LB
+37113,0.378651,Pyrene,LB
+37113,0.00011805052,Benzo[k]Fluoranthene,LB
+37113,0.002794584,Benzo[a]Pyrene,LB
+37113,0.000116686,"Dibenzo[a,h]Anthracene",LB
+37113,38.24764,Acetaldehyde,LB
+37113,0.2527352,Acenaphthene,LB
+37113,0.4322798,Fluorene,LB
+37109,1.241296,Pyrene,LB
+37109,0.00326403,"Benzo[g,h,i,]Perylene",LB
+37109,0.0826236,Chrysene,LB
+37109,232.846,Formaldehyde,LB
+37109,0.0009965606,"Dibenzo[a,h]Anthracene",LB
+37109,0.1718098,Benz[a]Anthracene,LB
+37109,10.59761,Carbon Monoxide,TON
+37109,7.242358,Benzo[a]Pyrene,LB
+37109,16415.208,"2,2,4-Trimethylpentane",LB
+37109,5.831488,Benz[a]Anthracene,LB
+37109,3.709488,Manganese,LB
+37109,2.397724,Arsenic,LB
+37109,608.0927,Nitrogen Oxides,TON
+37109,20.09246,PM10 Primary (Filt + Cond),TON
+37099,10995.962,Benzene,LB
+37099,9.517702,Anthracene,LB
+37099,224.3586,Propionaldehyde,LB
+37099,3.072676,Benzo[k]Fluoranthene,LB
+37099,6.684782,Methane,TON
+37099,0.9747098,Elemental Carbon portion of PM2.5-PRI,TON
+37099,0.01296337,Nitrate portion of PM2.5-PRI,TON
+37099,177.9808,Volatile Organic Compounds,TON
+37089,0.13789802,Acenaphthylene,LB
+37089,9.917564e-06,Mercury,LB
+37089,3.026218,Naphthalene,LB
+37089,0.01156545,Ammonia,TON
+37089,0.0003628266,Nitrate portion of PM2.5-PRI,TON
+37089,2.700932,Nitrogen Oxides,TON
+37089,0.01781032,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,30.05812,Pyrene,LB
+37081,3.076882,Elemental Carbon portion of PM2.5-PRI,TON
+37081,13.22035,PM10 Primary (Filt + Cond),TON
+37077,2.581249,Volatile Organic Compounds,TON
+37077,0.193446,Sulfur Dioxide,TON
+37077,2118.894,Toluene,LB
+37077,0.2704622,"Indeno[1,2,3-c,d]Pyrene",LB
+37069,0.360388,Anthracene,LB
+37069,0.14450018,Chrysene,LB
+37069,1.7042776e-05,Mercury,LB
+37069,0.001355336,Nitrate portion of PM2.5-PRI,TON
+37069,0.005633091,Sulfur Dioxide,TON
+37065,0.2725986,Acrolein,LB
+37065,0.3525532,Toluene,LB
+37065,4.29783e-08,Chromium (VI),LB
+37065,0.8269696,Carbon Monoxide,TON
+37065,0.00615321,PM2.5 Primary (Filt + Cond),TON
+37067,0.0018109788,Anthracene,LB
+37067,0.003541406,Pyrene,LB
+37067,1.8769204,Benzene,LB
+37067,0.011482,Phenanthrene,LB
+37067,0.0006013217,Nitrous Oxide,TON
+37067,0.04582015,Nitrogen Oxides,TON
+37067,0.00101182,PM2.5 Primary (Filt + Cond),TON
+37067,0.0001246203,Sulfur Dioxide,TON
+37051,0.8630592,Styrene,LB
+37051,0.72093,Propionaldehyde,LB
+37051,94.39766,Xylenes (Mixed Isomers),LB
+37051,0.03679148,Acenaphthene,LB
+37051,16.81025,Carbon Monoxide,TON
+37143,585.6276,"2,2,4-Trimethylpentane",LB
+37117,2.55369e-05,Chromium (VI),LB
+37117,0.009619882,Benzo[a]Pyrene,LB
+37117,0.012317688,Manganese,LB
+37117,0.01370404,Nickel,LB
+37111,0.002639108,Manganese,LB
+37111,0.3293178,Volatile Organic Compounds,TON
+37111,40.45434,Xylenes (Mixed Isomers),LB
+37111,0.0510138,"Benzo[g,h,i,]Perylene",LB
+37111,0.02577952,Fluoranthene,LB
+37111,0.0004397604,"Dibenzo[a,h]Anthracene",LB
+37111,14.9472,"2,2,4-Trimethylpentane",LB
+37121,11197.096,Xylenes (Mixed Isomers),LB
+37121,24.2419,Acenaphthylene,LB
+37121,3540.752,"2,2,4-Trimethylpentane",LB
+37115,0.072838,Chrysene,LB
+37115,0.0583569,Elemental Carbon portion of PM2.5-PRI,TON
+37115,7.957568,Xylenes (Mixed Isomers),LB
+37115,3.546452e-05,Chromium (VI),LB
+37115,0.03010446,Benzo[b]Fluoranthene,LB
+37115,3.18979,"2,2,4-Trimethylpentane",LB
+37115,0.04019914,Manganese,LB
+37115,3.965875,Carbon Monoxide,TON
+37115,0.00174547,Nitrate portion of PM2.5-PRI,TON
+37115,0.1422575,Organic Carbon portion of PM2.5-PRI,TON
+37115,0.01778284,Sulfur Dioxide,TON
+37113,1.139925e-06,Nickel,LB
+37113,4.90832,Acetaldehyde,LB
+37113,0.5667869,Carbon Monoxide,TON
+37113,0.01058422,PM10 Primary (Filt + Cond),TON
+37113,0.004715099,PM2.5 Primary (Filt + Cond),TON
+37099,0.4659206,"1,3-Butadiene",LB
+37099,14.3902,Toluene,LB
+37099,0.0756922,Propionaldehyde,LB
+37099,0.001273337,Chrysene,LB
+37099,0.001988158,Benzo[a]Pyrene,LB
+37099,3.149732e-05,Mercury,LB
+37099,0.002760789,Methane,TON
+37099,0.002846318,PM2.5 Primary (Filt + Cond),TON
+37095,0.8979052,"1,3-Butadiene",LB
+37095,0.4402036,Propionaldehyde,LB
+37095,0.04440246,Pyrene,LB
+37095,0.01125947,Benzo[a]Pyrene,LB
+37095,0.008010674,Benz[a]Anthracene,LB
+37095,0.001426806,Nickel,LB
+37079,7.247916,Hexane,LB
+37079,15.105392,Xylenes (Mixed Isomers),LB
+37079,0.002891084,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,0.002882028,Benzo[a]Pyrene,LB
+37079,2.220831,Carbon Monoxide,TON
+37079,46.45861,Carbon Dioxide,TON
+37079,0.0005140543,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.00158994,Organic Carbon portion of PM2.5-PRI,TON
+37079,9.046958e-05,Sulfate Portion of PM2.5-PRI,TON
+37081,11.22285,Pyrene,LB
+37081,0.0501324,"Benzo[g,h,i,]Perylene",LB
+37081,1152.2278,Formaldehyde,LB
+37081,0.03747736,Arsenic,LB
+37057,6.282392,"1,3-Butadiene",LB
+37057,0.7458162,Acrolein,LB
+37057,0.018665324,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.013634992,Benzo[b]Fluoranthene,LB
+37057,0.013634992,Benzo[k]Fluoranthene,LB
+37057,0.013653764,Benz[a]Anthracene,LB
+37057,0.005895049,Elemental Carbon portion of PM2.5-PRI,TON
+37057,0.002009709,Ammonia,TON
+37055,0.8207058,Pyrene,LB
+37055,2.182478e-05,Chromium (VI),LB
+37055,0.0018094728,Benzo[k]Fluoranthene,LB
+37055,2.425032,"2,2,4-Trimethylpentane",LB
+37055,43.93198,Acetaldehyde,LB
+37055,0.355986,PM10 Primary (Filt + Cond),TON
+37055,0.03405543,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,2.648901,Methane,TON
+37049,1.9064896,Acrolein,LB
+37049,17.01473,Ethyl Benzene,LB
+37049,40.69698,Acrolein,LB
+37049,0.821901,Chrysene,LB
+37049,0.01762994,"Dibenzo[a,h]Anthracene",LB
+37049,0.00747001,Nitrate portion of PM2.5-PRI,TON
+37049,47.51856,Nitrogen Oxides,TON
+37035,5.836964,Acenaphthylene,LB
+37035,34.18202,"2,2,4-Trimethylpentane",LB
+37035,7.495476,Fluorene,LB
+37035,131.30384,Naphthalene,LB
+37035,1.091458,Organic Carbon portion of PM2.5-PRI,TON
+37035,7.917863,PM10 Primary (Filt + Cond),TON
+37029,2305.024,Toluene,LB
+37029,61.51614,Benzene,LB
+37029,8.039428,Volatile Organic Compounds,TON
+37013,0.0464544,Arsenic,LB
+37013,3.457212,Phenanthrene,LB
+37013,0.0547103,Ammonia,TON
+37021,2223.33,"2,2,4-Trimethylpentane",LB
+37021,20.32222,Propionaldehyde,LB
+37021,0.004339832,Mercury,LB
+37021,1.254261,Acenaphthene,LB
+37021,0.07389178,Elemental Carbon portion of PM2.5-PRI,TON
+37021,0.2792146,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.5156469,PM2.5 Primary (Filt + Cond),TON
+37005,0.004101674,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,49.75038,Ethyl Benzene,LB
+37005,0.8118516,Acrolein,LB
+37005,185.83502,Xylenes (Mixed Isomers),LB
+37085,3.808622,Ethyl Benzene,LB
+37085,3.546488,Hexane,LB
+37085,0.2911745,Volatile Organic Compounds,TON
+37049,135.14784,Acetaldehyde,LB
+37049,0.01470853,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.01192445,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,13.313112,Styrene,LB
+37113,10.872552,Acrolein,LB
+37113,0.4794874,"Benzo[g,h,i,]Perylene",LB
+37113,0.14289924,Benzo[b]Fluoranthene,LB
+37113,172.02692,Formaldehyde,LB
+37113,0.5191834,PM10 Primary (Filt + Cond),TON
+37099,12.697904,Ethyl Benzene,LB
+37099,18.150142,Propionaldehyde,LB
+37099,0.008869102,"Dibenzo[a,h]Anthracene",LB
+37099,13405.33,Carbon Dioxide,TON
+37099,1.567893,PM2.5 Primary (Filt + Cond),TON
+37095,0.9519412,"2,2,4-Trimethylpentane",LB
+37095,0.02746908,Benz[a]Anthracene,LB
+37095,0.01441536,Methane,TON
+37095,0.8017706,Nitrogen Oxides,TON
+37095,0.04007376,PM2.5 Primary (Filt + Cond),TON
+37095,2.552492,Xylenes (Mixed Isomers),LB
+37095,0.0005218032,"Benzo[g,h,i,]Perylene",LB
+37083,3.013254e-05,Fluoranthene,LB
+37083,1.3337656e-05,Benzo[k]Fluoranthene,LB
+37083,1.6883376e-05,Anthracene,LB
+37083,0.005809552,Acetaldehyde,LB
+37083,0.00010519418,Phenanthrene,LB
+37083,6.581918e-06,Nitrous Oxide,TON
+37073,0.003787518,Nickel,LB
+37073,0.08217644,PM10 Primary (Filt + Cond),TON
+37073,1.625862,Toluene,LB
+37073,1.5011808,Xylenes (Mixed Isomers),LB
+37073,0.6466268,"2,2,4-Trimethylpentane",LB
+37065,16.77085,Fluoranthene,LB
+37065,52.40278,Acenaphthylene,LB
+37065,3649.786,Formaldehyde,LB
+37065,11.507902,Acenaphthene,LB
+37065,0.01314126,Nitrate portion of PM2.5-PRI,TON
+37065,2.360102,Organic Carbon portion of PM2.5-PRI,TON
+37065,1.573612,Remaining PMFINE portion of PM2.5-PRI,TON
+37061,0.1463927,Styrene,LB
+37061,0.6837638,Toluene,LB
+37061,0.09904138,Pyrene,LB
+37061,0.0015372432,Nickel,LB
+37051,7.270742,PM25-Primary from certain diesel engines,TON
+37051,1.762874,Organic Carbon portion of PM2.5-PRI,TON
+37051,13.41606,PM10 Primary (Filt + Cond),TON
+37051,1.090604,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,63.70238,Ethyl Benzene,LB
+37051,20.8653,Styrene,LB
+37051,49.13332,"1,3-Butadiene",LB
+37051,171.14084,Toluene,LB
+37051,5.340638,Anthracene,LB
+37051,0.3284456,Benzo[b]Fluoranthene,LB
+37051,2.116726,Chrysene,LB
+37051,1.100147,Benzo[a]Pyrene,LB
+37051,3.609058,Benz[a]Anthracene,LB
+37049,14359.102,Hexane,LB
+37049,362.6766,Propionaldehyde,LB
+37049,6.111114,Benzo[a]Pyrene,LB
+37049,17835.508,Benzene,LB
+37035,0.0417256,Nickel,LB
+37035,1.79733,Fluorene,LB
+37035,212.5568,Carbon Monoxide,TON
+37035,16.905712,Acrolein,LB
+37035,0.5723988,PM10 Primary (Filt + Cond),TON
+37035,0.0107497,Sulfate Portion of PM2.5-PRI,TON
+37035,0.2502788,Chrysene,LB
+37035,333.4988,Formaldehyde,LB
+37035,0.008007412,"Dibenzo[a,h]Anthracene",LB
+37027,0.0003851188,Nickel,LB
+37027,0.3727152,Naphthalene,LB
+37027,3.086118,Carbon Monoxide,TON
+37027,113.7159,Carbon Dioxide,TON
+37027,0.002118662,Benzo[a]Pyrene,LB
+37027,0.001261051,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.006113474,Anthracene,LB
+37027,0.06196772,Naphthalene,LB
+37027,0.000158525,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.0010378476,Anthracene,LB
+37027,2.705266,Xylenes (Mixed Isomers),LB
+37027,0.000878224,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.00544786,Acenaphthylene,LB
+37027,0.0004721026,Chrysene,LB
+37027,0.9264984,"2,2,4-Trimethylpentane",LB
+37027,0.002415252,Fluorene,LB
+37027,0.7329006,Ethyl Benzene,LB
+37027,0.15981442,"1,3-Butadiene",LB
+37045,1.0922114,Ethyl Benzene,LB
+37045,0.0014511948,"Benzo[g,h,i,]Perylene",LB
+37045,14.09132,Acetaldehyde,LB
+37045,1.073061,Carbon Monoxide,TON
+37045,0.0004246457,Nitrate portion of PM2.5-PRI,TON
+37043,2268.116,Toluene,LB
+37043,1016.169,Xylenes (Mixed Isomers),LB
+37039,0.0824824,Acrolein,LB
+37039,9.144418,Toluene,LB
+37039,0.057509,Propionaldehyde,LB
+37039,0.005099548,Fluoranthene,LB
+37039,0.0009788734,Chrysene,LB
+37039,0.1811676,Naphthalene,LB
+37039,0.001883539,Nitrous Oxide,TON
+37039,0.001918536,Ammonia,TON
+37039,0.0072605,PM10 Primary (Filt + Cond),TON
+37039,6.014852e-05,Sulfate Portion of PM2.5-PRI,TON
+37027,2118.222,Carbon Dioxide,TON
+37027,0.01972102,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.02900173,Nitrous Oxide,TON
+37027,0.13154212,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,0.4051808,Acenaphthene,LB
+37007,0.1246723,Toluene,LB
+37007,7.507176e-05,Anthracene,LB
+37007,0.0003312858,Pyrene,LB
+37007,28.04888,Formaldehyde,LB
+37007,0.3612281,Carbon Monoxide,TON
+37007,0.0002646785,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.3751832,Benzene,LB
+37007,0.0009065674,Manganese,LB
+37007,0.013066224,Acenaphthene,LB
+37007,0.437063,Naphthalene,LB
+37007,0.0002263054,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.0008888906,Benzo[b]Fluoranthene,LB
+37007,0.03087746,Fluoranthene,LB
+37007,1.953033,Ethyl Benzene,LB
+37007,0.3595556,"1,3-Butadiene",LB
+37007,0.002537644,Anthracene,LB
+37007,0.05739752,Propionaldehyde,LB
+37007,2.59478,"2,2,4-Trimethylpentane",LB
+37007,0.0008504772,Benz[a]Anthracene,LB
+37007,0.0011723022,Manganese,LB
+37019,0.0881231,Ammonia,TON
+37019,7.146349,Nitrogen Oxides,TON
+37019,0.03173495,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,4.436518,Styrene,LB
+37019,1.7516104,Pyrene,LB
+37019,9.548456e-05,Chromium (VI),LB
+37019,0.00480084,"Benzo[g,h,i,]Perylene",LB
+37011,5.206682,"1,3-Butadiene",LB
+37011,13.608362,Toluene,LB
+37011,4.507408,Hexane,LB
+37011,14.298294,Xylenes (Mixed Isomers),LB
+37011,0.008286754,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,1.9853936,Phenanthrene,LB
+37011,18.969364,Naphthalene,LB
+37011,0.1117067,Methane,TON
+37011,4.073331,Carbon Monoxide,TON
+37011,1652.837,Carbon Dioxide,TON
+37011,0.01417815,Sulfur Dioxide,TON
+37009,7.139574,Ethyl Benzene,LB
+37009,2.236958,Styrene,LB
+37009,2.138024,Phenanthrene,LB
+37009,7.238122e-05,"Dibenzo[a,h]Anthracene",LB
+37009,3.128424,Acetaldehyde,LB
+37009,0.003153603,Nitrous Oxide,TON
+37005,0.8056518,Styrene,LB
+37005,8.18446,Xylenes (Mixed Isomers),LB
+37005,0.002228592,"Benzo[g,h,i,]Perylene",LB
+37005,0.320738,Acenaphthylene,LB
+37005,0.0014524828,"Dibenzo[a,h]Anthracene",LB
+37005,0.01021294,Arsenic,LB
+37005,0.03126115,Remaining PMFINE portion of PM2.5-PRI,TON
+37005,0.3841656,Volatile Organic Compounds,TON
+37005,0.00083367,Mercury,LB
+37005,67.67176,Acetaldehyde,LB
+37005,1518.298,Carbon Dioxide,TON
+37005,4.523936,Styrene,LB
+37005,0.2777522,Fluoranthene,LB
+37003,2.7244e-07,Acenaphthene,LB
+37003,8.879529e-08,Nitrous Oxide,TON
+37003,1.200996e-05,Nitrogen Oxides,TON
+37001,660.8536,Acrolein,LB
+37001,744.8788,Propionaldehyde,LB
+37001,0.019877276,Chromium (VI),LB
+37001,35.92664,"Benzo[g,h,i,]Perylene",LB
+37001,52.92862,Fluoranthene,LB
+37001,26542.8,"2,2,4-Trimethylpentane",LB
+37001,12148.918,Acetaldehyde,LB
+37001,38.92872,PM10 Primary (Filt + Cond),TON
+37185,0.00737214,Volatile Organic Compounds,TON
+37185,0.0001973082,Fluoranthene,LB
+37185,0.0002100368,Arsenic,LB
+37185,0.001127632,Methane,TON
+37185,0.1699186,Carbon Monoxide,TON
+37055,1.6063136,Toluene,LB
+37055,0.002946242,Manganese,LB
+37055,0.03427732,Naphthalene,LB
+37055,0.00277519,PM2.5 Primary (Filt + Cond),TON
+37043,0.0001309166,Fluorene,LB
+37043,4.205858e-07,Nitrate portion of PM2.5-PRI,TON
+37043,7.66541e-05,Organic Carbon portion of PM2.5-PRI,TON
+37043,0.14721418,Toluene,LB
+37043,0.00012414632,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,6.59828e-05,Benzo[b]Fluoranthene,LB
+37043,2.850312e-06,"Dibenzo[a,h]Anthracene",LB
+37167,0.0007755016,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.002840086,Ammonia,TON
+37167,3.340518e-05,Sulfate Portion of PM2.5-PRI,TON
+37167,20.44254,Benzene,LB
+37167,0.01629661,Nitrous Oxide,TON
+37167,4.825768e-05,Nitrate portion of PM2.5-PRI,TON
+37167,0.013708342,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,60.18384,Carbon Dioxide,TON
+37175,0.0102791,Nitrous Oxide,TON
+37175,0.0001087569,Anthracene,LB
+37175,0.0003832108,Acenaphthylene,LB
+37175,6.49002e-05,Chrysene,LB
+37175,4.772626,Acetaldehyde,LB
+37173,0.03008486,Benzo[b]Fluoranthene,LB
+37173,0.0009698672,"Dibenzo[a,h]Anthracene",LB
+37173,0.0978368,Acenaphthene,LB
+37173,26.69283,Carbon Monoxide,TON
+37173,658.806,Carbon Dioxide,TON
+37173,0.005527261,Nitrous Oxide,TON
+37173,0.08524425,Ammonia,TON
+37165,0.6586182,Acetaldehyde,LB
+37027,1.7436964,Benzene,LB
+37173,0.000212633,Acenaphthene,LB
+37173,0.001789065,Ammonia,TON
+37173,0.17934968,Hexane,LB
+37173,0.00019745134,Chrysene,LB
+37153,0.0002173942,Anthracene,LB
+37153,2.217674e-06,Chromium (VI),LB
+37153,0.0005175256,Benzo[a]Pyrene,LB
+37153,0.01212699,Naphthalene,LB
+37153,0.0005793848,Nitrous Oxide,TON
+37153,0.003047413,PM10 Primary (Filt + Cond),TON
+37153,0.0003167759,Remaining PMFINE portion of PM2.5-PRI,TON
+37123,0.005790942,Styrene,LB
+37123,0.0009272668,Acenaphthylene,LB
+37123,0.0002325682,Nickel,LB
+37123,0.0004055336,Fluorene,LB
+37123,0.001963422,Methane,TON
+37123,0.0001092932,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.008170204,Chrysene,LB
+37109,0.019603062,Benzo[a]Pyrene,LB
+37109,0.009207922,Benz[a]Anthracene,LB
+37109,0.02185898,Manganese,LB
+37109,0.0007393996,Mercury,LB
+37109,131.00728,Acetaldehyde,LB
+37109,0.05912748,Phenanthrene,LB
+37109,1.25418,"1,3-Butadiene",LB
+37109,1.0668882,Acrolein,LB
+37109,0.02000778,Pyrene,LB
+37175,0.00014590998,Nickel,LB
+37175,0.00569304,Fluorene,LB
+37175,0.002233374,Methane,TON
+37175,0.001890489,Ammonia,TON
+37175,0.004462316,PM10 Primary (Filt + Cond),TON
+37175,1.167299e-06,Chromium (VI),LB
+37175,0.004083876,Fluoranthene,LB
+37175,0.012794732,Acenaphthylene,LB
+37175,33087.88,Toluene,LB
+37175,8.841748,Anthracene,LB
+37175,22334.9,Xylenes (Mixed Isomers),LB
+37175,0.00407582,Chromium (VI),LB
+37175,2.374264,Benzo[k]Fluoranthene,LB
+37175,56.30068,Phenanthrene,LB
+37175,83256.96,Carbon Dioxide,TON
+37175,4.714667,Nitrous Oxide,TON
+37175,8.871384,PM10 Primary (Filt + Cond),TON
+37175,3.389519,PM2.5 Primary (Filt + Cond),TON
+37167,15.05669,Acetaldehyde,LB
+37167,1.0729206e-05,Chromium (VI),LB
+37167,0.002048528,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.16535818,Pyrene,LB
+37167,0.02406014,Chrysene,LB
+37167,0.08513668,PM10-Primary from certain diesel engines,TON
+37167,0.000225687,Nitrate portion of PM2.5-PRI,TON
+37167,1.549547,Nitrogen Oxides,TON
+37167,0.003698209,Sulfur Dioxide,TON
+37159,33.91604,"1,3-Butadiene",LB
+37159,90.73854,Acrolein,LB
+37159,106.16502,Xylenes (Mixed Isomers),LB
+37159,13.547816,Phenanthrene,LB
+37149,0.05912768,Benzo[b]Fluoranthene,LB
+37149,1.1655022,Acenaphthene,LB
+37149,1.28641,Elemental Carbon portion of PM2.5-PRI,TON
+37149,1.83122,PM2.5 Primary (Filt + Cond),TON
+37149,0.09674208,Sulfate Portion of PM2.5-PRI,TON
+37151,336.2122,Acrolein,LB
+37151,104.22236,Hexane,LB
+37151,230.7592,Propionaldehyde,LB
+37151,0.02926058,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,100.57528,"2,2,4-Trimethylpentane",LB
+37151,37.69614,Phenanthrene,LB
+37151,3.626238,PM10-Primary from certain diesel engines,TON
+37151,3.336182,PM25-Primary from certain diesel engines,TON
+37151,80.65719,Nitrogen Oxides,TON
+37151,0.5906632,Organic Carbon portion of PM2.5-PRI,TON
+37151,1.2587,Pyrene,LB
+37151,0.002956034,"Benzo[g,h,i,]Perylene",LB
+37151,264.3902,Formaldehyde,LB
+37151,7.67521e-05,Mercury,LB
+37151,0.02460123,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.05547386,PM2.5 Primary (Filt + Cond),TON
+37151,0.01133592,Sulfur Dioxide,TON
+37139,0.9857396,Styrene,LB
+37139,0.014443484,Benzo[b]Fluoranthene,LB
+37139,0.519031,Fluoranthene,LB
+37139,0.8455286,Phenanthrene,LB
+37139,2.951941,Carbon Monoxide,TON
+37199,0.9552958,Toluene,LB
+37199,1.076136e-07,Chromium (VI),LB
+37199,0.0002200509,Methane,TON
+37199,4.282294e-07,Nitrate portion of PM2.5-PRI,TON
+37199,7.4364e-05,Organic Carbon portion of PM2.5-PRI,TON
+37199,6.521296e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,1.7325384,Toluene,LB
+37195,4.68064e-05,"Dibenzo[a,h]Anthracene",LB
+37195,0.0008986362,Benz[a]Anthracene,LB
+37195,8.566514,Acetaldehyde,LB
+37195,1.156635,Carbon Monoxide,TON
+37195,0.007266949,Ammonia,TON
+37195,7.254465e-06,Nitrate portion of PM2.5-PRI,TON
+37197,56.17062,Ethyl Benzene,LB
+37197,4.231872e-05,Chromium (VI),LB
+37197,0.2151952,"Benzo[g,h,i,]Perylene",LB
+37197,0.13391724,Fluoranthene,LB
+37197,0.397054,Acenaphthylene,LB
+37197,27.70716,Formaldehyde,LB
+37197,28.02546,Acetaldehyde,LB
+37197,0.0002384516,Nitrate portion of PM2.5-PRI,TON
+37197,2.219562,"1,3-Butadiene",LB
+37197,0.005529472,Benzo[b]Fluoranthene,LB
+37197,14.937874,Benzene,LB
+37197,0.8450704,Naphthalene,LB
+37197,0.01996038,Methane,TON
+37197,0.007904235,PM2.5 Primary (Filt + Cond),TON
+37197,0.0001813784,Sulfate Portion of PM2.5-PRI,TON
+37189,0.3417924,Hexane,LB
+37189,0.6592792,Propionaldehyde,LB
+37189,0.09584956,Fluoranthene,LB
+37189,0.0898089,PM10 Primary (Filt + Cond),TON
+37189,0.05902672,PM2.5 Primary (Filt + Cond),TON
+37189,0.007617747,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,7.992726,Ethyl Benzene,LB
+37187,15.198992,Toluene,LB
+37187,0.00466297,Benzo[b]Fluoranthene,LB
+37187,0.1613238,Benz[a]Anthracene,LB
+37187,0.06227835,Methane,TON
+37187,0.2028856,PM2.5 Primary (Filt + Cond),TON
+37187,0.01127801,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.00667297,Manganese,LB
+37179,3.823492e-06,Mercury,LB
+37179,0.0007994386,Arsenic,LB
+37179,0.07366629,PM2.5 Primary (Filt + Cond),TON
+37179,0.1915959,Volatile Organic Compounds,TON
+37179,2.03595,Toluene,LB
+37179,0.00735262,Benzo[b]Fluoranthene,LB
+37177,0.6176172,Naphthalene,LB
+37177,0.001295536,PM10-Primary from certain diesel engines,TON
+37177,0.001307512,Ammonia,TON
+37177,0.1558627,"2,2,4-Trimethylpentane",LB
+37173,0.13029576,Benzo[a]Pyrene,LB
+37173,17.335696,Benzene,LB
+37173,5.626334e-05,Mercury,LB
+37173,0.577013,Acenaphthene,LB
+37173,4.181694,Carbon Monoxide,TON
+37173,0.002280036,Nitrate portion of PM2.5-PRI,TON
+37173,1.9112978,Ethyl Benzene,LB
+37173,3.96622,Toluene,LB
+37173,1.4494444,Hexane,LB
+37173,3.024702,Propionaldehyde,LB
+37173,0.0007726348,"Benzo[g,h,i,]Perylene",LB
+37173,0.00726297,Manganese,LB
+37173,0.008852316,Nickel,LB
+37173,0.06129591,PM2.5 Primary (Filt + Cond),TON
+37041,4.883766e-05,Chromium (VI),LB
+37041,214.5704,Formaldehyde,LB
+37041,0.1544685,PM25-Primary from certain diesel engines,TON
+37041,0.04211661,Ammonia,TON
+37033,37.14292,Formaldehyde,LB
+37033,0.04233766,Benzo[a]Pyrene,LB
+37033,0.04493695,Methane,TON
+37033,27.21381,Carbon Monoxide,TON
+37033,670.7344,Carbon Dioxide,TON
+37033,795.24,Toluene,LB
+37033,0.4517792,Acenaphthylene,LB
+37031,0.01917457,"Benzo[g,h,i,]Perylene",LB
+37031,1.0234188,Benz[a]Anthracene,LB
+37031,5.688,Phenanthrene,LB
+37031,1.346623,Elemental Carbon portion of PM2.5-PRI,TON
+37031,55.00342,Nitrogen Oxides,TON
+37031,0.2001423,Sulfur Dioxide,TON
+37025,20854.7,Ethyl Benzene,LB
+37025,655.906,Acrolein,LB
+37025,157.08686,Acenaphthylene,LB
+37025,9.659258,Benz[a]Anthracene,LB
+37025,34316.24,Benzene,LB
+37025,11715.02,Acetaldehyde,LB
+37025,34.49438,Acenaphthene,LB
+37025,34.67832,Ammonia,TON
+37025,7.534761,Organic Carbon portion of PM2.5-PRI,TON
+37025,5.937676,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,0.4643322,Sulfate Portion of PM2.5-PRI,TON
+37025,18229.798,Hexane,LB
+37025,305.5498,Propionaldehyde,LB
+37025,5.463572,Chrysene,LB
+37025,16151.782,"2,2,4-Trimethylpentane",LB
+37025,16.179344,Acenaphthene,LB
+37025,88.31918,Phenanthrene,LB
+37025,29.80697,Ammonia,TON
+37025,0.03220798,Nitrate portion of PM2.5-PRI,TON
+37025,352.8473,Volatile Organic Compounds,TON
+37173,1.2545046,Acrolein,LB
+37173,5.348198e-06,Chromium (VI),LB
+37173,0.000535858,Benzo[k]Fluoranthene,LB
+37173,0.00267965,Nickel,LB
+37173,0.008187704,Methane,TON
+37173,0.01849718,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.09093048,Volatile Organic Compounds,TON
+37097,8.904448,Carbon Monoxide,TON
+37097,0.06334443,PM10 Primary (Filt + Cond),TON
+37097,16.468252,Hexane,LB
+37097,0.02927014,Fluoranthene,LB
+37097,21.2598,Benzene,LB
+37081,32.63074,PM10 Primary (Filt + Cond),TON
+37081,617.0806,Acrolein,LB
+37081,0.16001416,"Benzo[g,h,i,]Perylene",LB
+37081,2.314336,Benzo[a]Pyrene,LB
+37081,2.72847,Manganese,LB
+37081,35.40678,Fluorene,LB
+37081,0.7254214,Formaldehyde,LB
+37081,0.004823506,Benzo[a]Pyrene,LB
+37081,0.09686654,Naphthalene,LB
+37081,0.02702596,Volatile Organic Compounds,TON
+37077,0.10286354,Propionaldehyde,LB
+37077,5.041196e-06,Chromium (VI),LB
+37077,5.053878e-05,Mercury,LB
+37077,0.2830742,Naphthalene,LB
+37077,2.148385e-05,Nitrate portion of PM2.5-PRI,TON
+37077,0.003792482,Sulfur Dioxide,TON
+37075,0.05423485,PM10-Primary from certain diesel engines,TON
+37075,0.02058802,Organic Carbon portion of PM2.5-PRI,TON
+37071,37.63972,Hexane,LB
+37071,7.472002,Acenaphthylene,LB
+37071,0.5612566,Manganese,LB
+37071,0.0004088678,Mercury,LB
+37071,0.08549004,Arsenic,LB
+37071,9.857674,Fluorene,LB
+37071,0.8921073,Methane,TON
+37071,1.6497276,Benzene,LB
+37071,0.00012157592,Nickel,LB
+37071,0.0002779492,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.3175664,Fluoranthene,LB
+37063,39.48032,Formaldehyde,LB
+37063,0.001196345,Arsenic,LB
+37063,286.4462,Carbon Dioxide,TON
+37063,0.1249477,PM10 Primary (Filt + Cond),TON
+37063,0.002289914,Sulfate Portion of PM2.5-PRI,TON
+37057,12.631904,Styrene,LB
+37057,29.54572,"1,3-Butadiene",LB
+37057,0.14385154,Benzo[b]Fluoranthene,LB
+37057,2.740878,Elemental Carbon portion of PM2.5-PRI,TON
+37057,11.87251,Ethyl Benzene,LB
+37057,4.774574,Styrene,LB
+37057,9.316418,"2,2,4-Trimethylpentane",LB
+37057,33.04164,Benzene,LB
+37057,29.98821,Carbon Monoxide,TON
+37057,0.07183776,PM10-Primary from certain diesel engines,TON
+37057,0.03925359,Ammonia,TON
+37057,0.03631066,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.01579128,Sulfur Dioxide,TON
+37055,0.937731,Chrysene,LB
+37055,2761.812,"2,2,4-Trimethylpentane",LB
+37053,3.384472,Styrene,LB
+37053,0.16852112,"Benzo[g,h,i,]Perylene",LB
+37053,0.06331612,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.04583258,Benzo[b]Fluoranthene,LB
+37053,0.2259252,Fluoranthene,LB
+37047,2.011,Styrene,LB
+37047,3.163048,Hexane,LB
+37047,6.808484,Xylenes (Mixed Isomers),LB
+37047,0.003710754,"Benzo[g,h,i,]Perylene",LB
+37047,12.35319,Benzene,LB
+37047,0.02772276,Manganese,LB
+37047,1.9006964e-05,Mercury,LB
+37047,0.1983011,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.3077384,PM2.5 Primary (Filt + Cond),TON
+37039,0.2677858,Hexane,LB
+37039,0.004977546,Manganese,LB
+37039,3.51342e-06,Mercury,LB
+37039,0.0018955922,Nickel,LB
+37039,4.56505,Acetaldehyde,LB
+37039,0.3419988,Carbon Monoxide,TON
+37039,0.0003367223,Nitrous Oxide,TON
+37037,70.4691,Toluene,LB
+37037,0.008972344,"Indeno[1,2,3-c,d]Pyrene",LB
+37037,0.005727488,Benzo[k]Fluoranthene,LB
+37037,0.005131664,Chrysene,LB
+37037,15.621572,"2,2,4-Trimethylpentane",LB
+37037,4.175504e-05,Mercury,LB
+37037,0.000798339,Arsenic,LB
+37037,0.01057089,Methane,TON
+37037,0.009791914,PM2.5 Primary (Filt + Cond),TON
+37029,7.519948e-05,Fluoranthene,LB
+37029,0.03498316,Benzene,LB
+37029,4.86118e-05,Acenaphthene,LB
+37027,32.92076,Acrolein,LB
+37027,0.00014924388,Chromium (VI),LB
+37027,0.5495842,Chrysene,LB
+37027,12.309172,"2,2,4-Trimethylpentane",LB
+37027,4.981028,Phenanthrene,LB
+37027,39.09751,Nitrogen Oxides,TON
+37027,0.1129004,Sulfur Dioxide,TON
+37173,0.006921936,Styrene,LB
+37173,1.4144738e-07,Chromium (VI),LB
+37173,0.09974672,Formaldehyde,LB
+37173,3.621428e-06,"Dibenzo[a,h]Anthracene",LB
+37173,5.530541e-07,Nitrate portion of PM2.5-PRI,TON
+37171,0.14155906,Mercury,LB
+37171,5.335947,Organic Carbon portion of PM2.5-PRI,TON
+37169,28.54622,Xylenes (Mixed Isomers),LB
+37169,9.57754,Benzene,LB
+37165,1.7294524,Fluorene,LB
+37165,22.72692,Nitrogen Oxides,TON
+37165,1.106531,PM2.5 Primary (Filt + Cond),TON
+37165,0.007888886,"Dibenzo[a,h]Anthracene",LB
+37157,54.10338,"2,2,4-Trimethylpentane",LB
+37157,460.142,Naphthalene,LB
+37157,190.8535,Volatile Organic Compounds,TON
+37157,8748.112,"2,2,4-Trimethylpentane",LB
+37157,1384.4526,"1,3-Butadiene",LB
+37157,185.6907,Acrolein,LB
+37147,10.495022,Styrene,LB
+37147,4.044492,Acenaphthylene,LB
+37147,5.410796,Fluorene,LB
+37147,79.5435,Naphthalene,LB
+37147,12313.55,Carbon Dioxide,TON
+37147,65.01421,Nitrogen Oxides,TON
+37145,0.06383762,Benzo[b]Fluoranthene,LB
+37145,52600.54,Carbon Dioxide,TON
+37145,0.05072415,Sulfate Portion of PM2.5-PRI,TON
+37145,101.25484,Styrene,LB
+37145,1.2600298,Benzo[b]Fluoranthene,LB
+37145,23.6122,Phenanthrene,LB
+37129,50.7012,Hexane,LB
+37129,0.06586522,"Benzo[g,h,i,]Perylene",LB
+37129,2.083062,Chrysene,LB
+37129,0.04599872,"Dibenzo[a,h]Anthracene",LB
+37129,1.9647034,Manganese,LB
+37129,193.88662,Naphthalene,LB
+37129,44.90462,Carbon Monoxide,TON
+37129,0.8470736,Ammonia,TON
+37129,1.81181,Organic Carbon portion of PM2.5-PRI,TON
+37129,0.5076406,Sulfur Dioxide,TON
+37129,3.15227e-06,Chromium (VI),LB
+37129,0.0009784258,"Indeno[1,2,3-c,d]Pyrene",LB
+37129,0.0005261566,Benzo[k]Fluoranthene,LB
+37129,18.490978,Formaldehyde,LB
+37129,0.00172709,Nickel,LB
+37129,0.2200646,Phenanthrene,LB
+37129,0.01260214,Elemental Carbon portion of PM2.5-PRI,TON
+37129,0.008172836,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,0.011473566,Manganese,LB
+37141,0.0699746,Acenaphthene,LB
+37141,0.7429116,Carbon Monoxide,TON
+37141,0.1271479,Volatile Organic Compounds,TON
+37141,1.7035236,Toluene,LB
+37141,1.1530418,Propionaldehyde,LB
+37141,9.004402e-06,Chromium (VI),LB
+37137,0.1664066,Acrolein,LB
+37137,0.05231534,Hexane,LB
+37137,8.919962e-05,"Benzo[g,h,i,]Perylene",LB
+37137,0.007024198,Acenaphthene,LB
+37137,0.0006423776,Methane,TON
+37137,0.0008178825,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.003082658,Ammonia,TON
+37137,4.034846e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.00015806986,Benzo[b]Fluoranthene,LB
+37137,0.06196608,Fluoranthene,LB
+37137,20.90522,Formaldehyde,LB
+37137,0.087151,Fluorene,LB
+37137,0.02113721,Methane,TON
+37137,0.002656536,PM10-Primary from certain diesel engines,TON
+37131,0.491885,Fluoranthene,LB
+37131,0.08956112,Chrysene,LB
+37131,0.0461007,Benzo[a]Pyrene,LB
+37131,7.102584,Naphthalene,LB
+37131,0.0008239181,Nitrate portion of PM2.5-PRI,TON
+37131,2.954981,Nitrogen Oxides,TON
+37131,0.02641775,Remaining PMFINE portion of PM2.5-PRI,TON
+37131,46.29972,Benzene,LB
+37131,212.4798,Acetaldehyde,LB
+37131,4.337808,Phenanthrene,LB
+37131,0.3540458,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.0007853945,Nitrate portion of PM2.5-PRI,TON
+37131,0.4601502,PM2.5 Primary (Filt + Cond),TON
+37131,38.92932,Acrolein,LB
+37131,0.00302599,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.16112684,Chrysene,LB
+37131,0.02840116,Sulfur Dioxide,TON
+37113,0.02630178,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.1297768,Volatile Organic Compounds,TON
+37113,0.08137304,Anthracene,LB
+37113,0.005548886,Benzo[b]Fluoranthene,LB
+37113,0.1206381,Acenaphthylene,LB
+37113,0.6042774,"2,2,4-Trimethylpentane",LB
+37113,0.05978132,Benz[a]Anthracene,LB
+37113,0.05946497,PM25-Primary from certain diesel engines,TON
+37113,0.02197032,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.8638702,"Benzo[g,h,i,]Perylene",LB
+37109,295.0648,Formaldehyde,LB
+37109,0.2577834,Benz[a]Anthracene,LB
+37109,0.006884718,Mercury,LB
+37109,0.08584114,Nickel,LB
+37109,5.221092,Phenanthrene,LB
+37109,0.1827864,Organic Carbon portion of PM2.5-PRI,TON
+37109,0.3923238,PM2.5 Primary (Filt + Cond),TON
+37097,4.824446,Styrene,LB
+37097,10.708546,"2,2,4-Trimethylpentane",LB
+37097,0.2171352,Benz[a]Anthracene,LB
+37097,1.1225042,Acenaphthene,LB
+37097,3.321054,Nitrogen Oxides,TON
+37097,0.0135522,Sulfate Portion of PM2.5-PRI,TON
+37091,0.6374206,Anthracene,LB
+37091,14.886576,Xylenes (Mixed Isomers),LB
+37091,0.0262094,Nickel,LB
+37091,0.584732,Acenaphthene,LB
+37091,1.2806034,Fluorene,LB
+37105,0.1457387,Acrolein,LB
+37105,0.0332905,Acenaphthylene,LB
+37105,0.00298391,Benz[a]Anthracene,LB
+37105,8.171762,Benzene,LB
+37105,0.0004467134,Arsenic,LB
+37105,0.3787642,Naphthalene,LB
+37105,0.00497789,Methane,TON
+37105,0.002394087,Nitrous Oxide,TON
+37105,1.562218e-05,Nitrate portion of PM2.5-PRI,TON
+37105,0.01278637,PM10 Primary (Filt + Cond),TON
+37101,0.00011776074,Benzo[b]Fluoranthene,LB
+37101,4.373872e-05,Arsenic,LB
+37101,0.0001393188,Acenaphthene,LB
+37101,0.007256588,Naphthalene,LB
+37101,0.01364011,Nitrogen Oxides,TON
+37101,7.969103e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37101,0.002174471,Volatile Organic Compounds,TON
+37099,4.255196,Nitrogen Oxides,TON
+37099,0.2688935,PM2.5 Primary (Filt + Cond),TON
+37099,0.006447808,Sulfur Dioxide,TON
+37099,0.3956496,Anthracene,LB
+37099,2.16468e-05,Chromium (VI),LB
+37099,0.005943498,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.0783161,Benzo[a]Pyrene,LB
+37099,12.73413,Naphthalene,LB
+37099,0.2586942,PM25-Primary from certain diesel engines,TON
+37099,0.003601637,Nitrous Oxide,TON
+37099,0.00139469,Nitrate portion of PM2.5-PRI,TON
+37167,0.1552649,Volatile Organic Compounds,TON
+37129,0.3256545,PM10 Primary (Filt + Cond),TON
+37129,0.002075557,Sulfate Portion of PM2.5-PRI,TON
+37129,0.45818,Styrene,LB
+37129,41.2225,Toluene,LB
+37129,0.014020336,Chrysene,LB
+37131,0.018696344,Styrene,LB
+37131,0.001599656,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.0008314944,Benzo[k]Fluoranthene,LB
+37131,0.00062872,Chrysene,LB
+37131,8.8505e-05,Mercury,LB
+37131,0.003713076,Phenanthrene,LB
+37131,0.006178166,Methane,TON
+37131,0.007762664,Ammonia,TON
+37131,0.001060044,Organic Carbon portion of PM2.5-PRI,TON
+37177,1.1426482,Anthracene,LB
+37177,0.3640502,Benzo[k]Fluoranthene,LB
+37177,2.709316,Fluorene,LB
+37175,6.352462,"1,3-Butadiene",LB
+37175,1214.2896,Toluene,LB
+37175,2.199096,Propionaldehyde,LB
+37175,0.03521034,Benzo[b]Fluoranthene,LB
+37175,0.03521034,Benzo[k]Fluoranthene,LB
+37175,181.11448,Benzene,LB
+37175,0.0004466884,Mercury,LB
+37175,30.97372,Acetaldehyde,LB
+37175,0.006877688,Elemental Carbon portion of PM2.5-PRI,TON
+37175,0.009619974,Nitrous Oxide,TON
+37169,0.0006406114,"Dibenzo[a,h]Anthracene",LB
+37169,8.871812e-06,Mercury,LB
+37169,0.00573262,Nickel,LB
+37169,0.00185507,Arsenic,LB
+37169,0.2899378,Fluorene,LB
+37169,0.01913532,Methane,TON
+37169,3.48218,Nitrogen Oxides,TON
+37169,0.02326595,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.09669241,PM2.5 Primary (Filt + Cond),TON
+37169,2.693164,Ethyl Benzene,LB
+37169,0.5357836,"1,3-Butadiene",LB
+37169,5.559614e-05,"Dibenzo[a,h]Anthracene",LB
+37169,3.666404,"2,2,4-Trimethylpentane",LB
+37169,2.07069e-05,Mercury,LB
+37169,0.0003958794,Arsenic,LB
+37169,1.903851,Carbon Monoxide,TON
+37167,1.869354,Volatile Organic Compounds,TON
+37153,30.17022,Toluene,LB
+37153,398.6314,Formaldehyde,LB
+37153,0.16859126,Manganese,LB
+37153,0.07592968,Nickel,LB
+37153,1.1678276,Acenaphthene,LB
+37153,0.1756482,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.3622118,"Benzo[g,h,i,]Perylene",LB
+37135,0.06422584,Chrysene,LB
+37135,42.3912,Formaldehyde,LB
+37135,136.54488,Benzene,LB
+37135,0.0010022438,Mercury,LB
+37135,37.02586,Acetaldehyde,LB
+37135,61.11663,Carbon Monoxide,TON
+37135,4011.22,Carbon Dioxide,TON
+37135,2.129192,Volatile Organic Compounds,TON
+37137,5.934437,Nitrogen Oxides,TON
+37137,0.2448126,PM2.5 Primary (Filt + Cond),TON
+37137,6.05669e-05,Mercury,LB
+37129,28.56324,Hexane,LB
+37129,0.00012303342,"Dibenzo[a,h]Anthracene",LB
+37129,0.003664069,Sulfur Dioxide,TON
+37129,0.9845278,Naphthalene,LB
+37129,174.8154,Carbon Dioxide,TON
+37065,0.000277776,"Dibenzo[a,h]Anthracene",LB
+37065,0.0004154836,Mercury,LB
+37065,0.2874192,Naphthalene,LB
+37065,0.01166782,Nitrous Oxide,TON
+37065,0.007171403,Remaining PMFINE portion of PM2.5-PRI,TON
+37065,0.02428293,Sulfur Dioxide,TON
+37065,0.0005383163,Sulfate Portion of PM2.5-PRI,TON
+37137,0.01882992,Nitrogen Oxides,TON
+37137,0.0002711984,Organic Carbon portion of PM2.5-PRI,TON
+37137,1.748949e-05,Sulfate Portion of PM2.5-PRI,TON
+37137,2.300304e-06,Chromium (VI),LB
+37137,0.0004006116,Fluoranthene,LB
+37137,0.3093464,"2,2,4-Trimethylpentane",LB
+37137,0.0004902492,Fluorene,LB
+37133,17.875386,Xylenes (Mixed Isomers),LB
+37175,1.7550842,Naphthalene,LB
+37175,0.04040645,PM25-Primary from certain diesel engines,TON
+37175,0.001369534,Sulfur Dioxide,TON
+37175,0.8220192,Propionaldehyde,LB
+37175,0.0007790046,"Benzo[g,h,i,]Perylene",LB
+37175,0.0005343532,"Dibenzo[a,h]Anthracene",LB
+37175,6.981362,Acetaldehyde,LB
+37175,0.6498912,Toluene,LB
+37175,0.0003319638,Pyrene,LB
+37175,3.657188e-08,Chromium (VI),LB
+37175,0.138496,"2,2,4-Trimethylpentane",LB
+37175,0.07318131,Carbon Monoxide,TON
+37165,0.003574304,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.0019752104,Chrysene,LB
+37165,0.02852408,Phenanthrene,LB
+37165,0.002365387,Ammonia,TON
+37159,3.265105e-05,Nitrate portion of PM2.5-PRI,TON
+37159,0.01274503,PM2.5 Primary (Filt + Cond),TON
+37159,0.013360168,Anthracene,LB
+37159,8.954604e-06,Chromium (VI),LB
+37159,0.006235162,Benzo[k]Fluoranthene,LB
+37159,0.005582266,Chrysene,LB
+37159,0.8015208,Naphthalene,LB
+37159,0.01115261,Methane,TON
+37159,342.9188,Carbon Dioxide,TON
+37155,0.4977626,Acrolein,LB
+37155,0.02861752,Acenaphthene,LB
+37155,13.60297,Carbon Monoxide,TON
+37155,0.05221543,PM10 Primary (Filt + Cond),TON
+37155,0.008585184,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,33.2242,Toluene,LB
+37147,0.05545409,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,2.570493,Volatile Organic Compounds,TON
+37147,3505.578,Carbon Dioxide,TON
+37143,5.127764,Propionaldehyde,LB
+37143,0.002382934,Benzo[k]Fluoranthene,LB
+37143,0.4151646,PM25-Primary from certain diesel engines,TON
+37141,4.748026,Xylenes (Mixed Isomers),LB
+37141,0.000823481,Benzo[k]Fluoranthene,LB
+37141,0.011347864,Acenaphthylene,LB
+37141,0.0007743502,Chrysene,LB
+37141,1.0118602e-05,Mercury,LB
+37141,0.013558976,Phenanthrene,LB
+37141,0.005042532,Fluorene,LB
+37141,4.273836e-06,Nitrate portion of PM2.5-PRI,TON
+37141,0.001716711,PM2.5 Primary (Filt + Cond),TON
+37127,8.320922e-06,Chromium (VI),LB
+37127,0.005617332,Benzo[b]Fluoranthene,LB
+37127,3.570186,Formaldehyde,LB
+37127,0.005167068,Benz[a]Anthracene,LB
+37127,0.0015948828,Arsenic,LB
+37127,5.100442,Carbon Monoxide,TON
+37127,0.006027788,Nitrous Oxide,TON
+37127,0.01319822,Ammonia,TON
+37111,4.082533,Carbon Monoxide,TON
+37111,0.001857655,Nitrous Oxide,TON
+37111,1.6748216,Styrene,LB
+37111,0.845997,Pyrene,LB
+37111,0.003189896,Arsenic,LB
+37177,1.810793,Toluene,LB
+37177,0.0014240652,Fluoranthene,LB
+37177,2.23274,Benzene,LB
+37177,0.001294553,Nitrous Oxide,TON
+37135,2.666252,Ethyl Benzene,LB
+37079,0.0008902972,Arsenic,LB
+37079,0.00189429,Sulfur Dioxide,TON
+37079,0.0004210034,Benzo[b]Fluoranthene,LB
+37079,0.0004210034,Benzo[k]Fluoranthene,LB
+37171,1.0790934e-05,Chromium (VI),LB
+37171,5.983053e-05,Nitrate portion of PM2.5-PRI,TON
+37171,0.01296749,Sulfur Dioxide,TON
+37171,0.0006602916,Sulfate Portion of PM2.5-PRI,TON
+37171,0.8363233,Volatile Organic Compounds,TON
+37165,0.6047944,Phenanthrene,LB
+37165,0.07775471,PM10-Primary from certain diesel engines,TON
+37165,0.0715334,PM25-Primary from certain diesel engines,TON
+37165,0.0001565788,Nitrate portion of PM2.5-PRI,TON
+37165,0.002449097,Sulfate Portion of PM2.5-PRI,TON
+37161,0.3088282,Styrene,LB
+37161,71.23622,Toluene,LB
+37161,0.00216009,Manganese,LB
+37161,0.0003213014,Nickel,LB
+37161,4.232382,Acetaldehyde,LB
+37161,0.012972968,Acenaphthene,LB
+37161,0.673911,Naphthalene,LB
+37161,0.0022536,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.001545594,Anthracene,LB
+37149,0.002692346,Fluoranthene,LB
+37149,0.00016201988,Arsenic,LB
+37019,0.00251312,Acrolein,LB
+37019,0.0015896782,Propionaldehyde,LB
+37019,0.2019814,Xylenes (Mixed Isomers),LB
+37019,0.00010980002,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,2.519484e-06,"Dibenzo[a,h]Anthracene",LB
+37019,5.90109e-05,Benz[a]Anthracene,LB
+37019,9.776384e-07,Mercury,LB
+37019,0.00011742916,Acenaphthene,LB
+37019,1.869014e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37019,3.556736e-07,Nitrate portion of PM2.5-PRI,TON
+37019,0.05495498,Ethyl Benzene,LB
+37017,1107.176,Ethyl Benzene,LB
+37017,4132.14,Xylenes (Mixed Isomers),LB
+37015,0.6301433,PM2.5 Primary (Filt + Cond),TON
+37015,0.02362631,Sulfur Dioxide,TON
+37015,0.831331,Anthracene,LB
+37015,18.238632,Xylenes (Mixed Isomers),LB
+37015,1.8163908,Fluoranthene,LB
+37015,0.17966208,Benzo[a]Pyrene,LB
+37015,0.007333918,"Dibenzo[a,h]Anthracene",LB
+37007,1288.204,Toluene,LB
+37007,0.3360892,Anthracene,LB
+37007,0.0002927702,Chromium (VI),LB
+37007,0.10043076,Benzo[b]Fluoranthene,LB
+37007,0.08894612,Manganese,LB
+37007,0.394128,Acenaphthene,LB
+37007,2.137456,Phenanthrene,LB
+37007,92.35277,Carbon Monoxide,TON
+37007,0.07367829,Organic Carbon portion of PM2.5-PRI,TON
+37003,0.014774032,Arsenic,LB
+37003,5439.509,Carbon Dioxide,TON
+37003,0.17979004,Benzo[a]Pyrene,LB
+37003,6.3349,"2,2,4-Trimethylpentane",LB
+37001,1.1602,Styrene,LB
+37001,0.07859454,Fluoranthene,LB
+37001,0.10792904,Fluorene,LB
+37001,2.767344,Naphthalene,LB
+37001,29.06077,Carbon Monoxide,TON
+37001,0.02870729,Ammonia,TON
+37001,0.0161735,Organic Carbon portion of PM2.5-PRI,TON
+37001,47.55986,Acrolein,LB
+37001,49.84734,Propionaldehyde,LB
+37001,4.141878,Pyrene,LB
+37001,0.0017371572,Chromium (VI),LB
+37001,2.485332,"Benzo[g,h,i,]Perylene",LB
+37001,3.630104,Fluoranthene,LB
+37001,0.017414892,Mercury,LB
+37001,546.5667,Carbon Monoxide,TON
+37001,0.687255,Sulfur Dioxide,TON
+37001,0.03036821,Sulfate Portion of PM2.5-PRI,TON
+37041,0.14294228,Hexane,LB
+37041,0.03642236,Propionaldehyde,LB
+37041,0.0007080346,"Benzo[g,h,i,]Perylene",LB
+37035,15.841694,"2,2,4-Trimethylpentane",LB
+37035,4.409508,Benzene,LB
+37035,0.4045411,Volatile Organic Compounds,TON
+37149,3.143704,"2,2,4-Trimethylpentane",LB
+37149,8.74354,Benzene,LB
+37149,0.00400868,Manganese,LB
+37149,0.0002315544,Mercury,LB
+37149,5.186544,Carbon Monoxide,TON
+37149,0.5126497,Nitrogen Oxides,TON
+37173,0.2008816,Hexane,LB
+37173,0.0002188002,Benzo[k]Fluoranthene,LB
+37173,0.02464953,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.05199389,PM10 Primary (Filt + Cond),TON
+37193,1.742604,Anthracene,LB
+37193,0.00010589712,Chromium (VI),LB
+37193,0.015899646,Arsenic,LB
+37193,0.09084578,Methane,TON
+37193,1.345567,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.008591099,Nitrous Oxide,TON
+37193,0.5435748,Organic Carbon portion of PM2.5-PRI,TON
+37193,0.241056,Remaining PMFINE portion of PM2.5-PRI,TON
+37191,0.001053789,Nitrous Oxide,TON
+37191,0.01076976,Ammonia,TON
+37191,0.0007355628,Benzo[k]Fluoranthene,LB
+37191,2.286838,Benzene,LB
+37191,9.352382e-06,Mercury,LB
+37191,0.2358904,Pyrene,LB
+37191,8.638522e-06,Chromium (VI),LB
+37189,0.9856646,Anthracene,LB
+37189,30.1604,Benzene,LB
+37189,142.04534,Acetaldehyde,LB
+37189,1.354005,PM10-Primary from certain diesel engines,TON
+37189,1.245642,PM25-Primary from certain diesel engines,TON
+37189,0.16669,Ammonia,TON
+37189,0.2868917,Organic Carbon portion of PM2.5-PRI,TON
+37187,0.02853554,Acrolein,LB
+37187,5.821322,Toluene,LB
+37187,0.00011982476,Nickel,LB
+37187,0.469436,Acetaldehyde,LB
+37187,0.008081578,Phenanthrene,LB
+37187,0.002980634,Fluorene,LB
+37187,0.7150508,Carbon Monoxide,TON
+37187,0.0002172283,Elemental Carbon portion of PM2.5-PRI,TON
+37183,102.15284,Toluene,LB
+37183,9.850224,Pyrene,LB
+37183,0.02910128,Benzo[k]Fluoranthene,LB
+37183,0.02904424,"Dibenzo[a,h]Anthracene",LB
+37183,0.0002626046,Mercury,LB
+37183,3.23071,Acenaphthene,LB
+37183,11162.76,Carbon Dioxide,TON
+37183,38.55421,Nitrogen Oxides,TON
+37183,11.310036,Ethyl Benzene,LB
+37183,15.960382,Hexane,LB
+37183,0.005128154,Benzo[k]Fluoranthene,LB
+37183,0.006803422,Benzo[a]Pyrene,LB
+37183,3.428918e-05,Mercury,LB
+37183,0.000655569,Arsenic,LB
+37183,0.02530188,Methane,TON
+37183,0.004084054,Ammonia,TON
+37183,0.008791586,PM2.5 Primary (Filt + Cond),TON
+37183,0.3352883,Volatile Organic Compounds,TON
+37181,0.0011628834,Acenaphthene,LB
+37181,1.736849,Carbon Monoxide,TON
+37181,0.01357972,PM10 Primary (Filt + Cond),TON
+37181,0.6960778,Ethyl Benzene,LB
+37059,0.8551068,Xylenes (Mixed Isomers),LB
+37059,1.2893186e-07,Chromium (VI),LB
+37059,0.0004080002,Acenaphthene,LB
+37059,1.075144e-06,Nitrate portion of PM2.5-PRI,TON
+37059,0.02087822,Nitrogen Oxides,TON
+37059,9.554854e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37059,0.0008528394,Anthracene,LB
+37059,0.3254832,Acetaldehyde,LB
+37059,0.005408912,Phenanthrene,LB
+37057,2.613806,Propionaldehyde,LB
+37057,4.68542,Xylenes (Mixed Isomers),LB
+37057,1.8136664e-05,Chromium (VI),LB
+37057,0.0013770348,Benzo[k]Fluoranthene,LB
+37057,0.03317534,Benzo[a]Pyrene,LB
+37057,0.11028402,Benz[a]Anthracene,LB
+37057,1.9620446e-05,Mercury,LB
+37057,0.004102438,Arsenic,LB
+37057,0.6083588,Phenanthrene,LB
+37057,0.03967986,Methane,TON
+37057,0.2412938,PM10-Primary from certain diesel engines,TON
+37057,5.258456,Nitrogen Oxides,TON
+37057,0.013217,Sulfur Dioxide,TON
+37057,1179.289,"2,2,4-Trimethylpentane",LB
+37057,39.59238,Styrene,LB
+37057,1.432608,Anthracene,LB
+37057,2.791492,Pyrene,LB
+37057,1.7105114,"Benzo[g,h,i,]Perylene",LB
+37057,0.3205122,Manganese,LB
+37057,1.6748922,Acenaphthene,LB
+37057,86.96546,Naphthalene,LB
+37057,21644.05,Carbon Dioxide,TON
+37057,0.9310801,Nitrous Oxide,TON
+37057,0.001963364,Nitrate portion of PM2.5-PRI,TON
+37051,1869.8656,Formaldehyde,LB
+37051,162.93184,Benzene,LB
+37051,0.0006250886,Mercury,LB
+37051,0.9226436,Remaining PMFINE portion of PM2.5-PRI,TON
+37051,60.50074,Ethyl Benzene,LB
+37049,0.6872214,Ethyl Benzene,LB
+37049,1.7136268,Xylenes (Mixed Isomers),LB
+37049,0.004436004,Benzo[b]Fluoranthene,LB
+37049,0.000612382,"Dibenzo[a,h]Anthracene",LB
+37049,0.0016344974,Arsenic,LB
+37049,0.2449636,Phenanthrene,LB
+37047,0.3854884,Styrene,LB
+37047,44.12052,Xylenes (Mixed Isomers),LB
+37047,0.006442824,Chrysene,LB
+37047,0.006915284,Benz[a]Anthracene,LB
+37047,164.6476,Carbon Dioxide,TON
+37047,0.004374155,Nitrous Oxide,TON
+37045,5.501918,Ethyl Benzene,LB
+37045,0.2029436,Styrene,LB
+37045,0.03994566,Acenaphthylene,LB
+37045,0.003474394,Chrysene,LB
+37045,0.4543722,Naphthalene,LB
+37045,0.5430933,Nitrogen Oxides,TON
+37025,57.30434,Styrene,LB
+37025,308.9008,Acrolein,LB
+37025,240.049,Xylenes (Mixed Isomers),LB
+37025,35.11258,Phenanthrene,LB
+37025,3.562865,PM10-Primary from certain diesel engines,TON
+37157,0.06758366,Ethyl Benzene,LB
+37157,0.002533422,Styrene,LB
+37157,4.467596e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37157,3.090344e-05,Chrysene,LB
+37157,0.10746292,Benzene,LB
+37157,0.03654912,Acetaldehyde,LB
+37157,0.0427198,Carbon Monoxide,TON
+37157,1.11415e-06,Sulfate Portion of PM2.5-PRI,TON
+37157,0.001969526,Volatile Organic Compounds,TON
+37157,5.904542,"2,2,4-Trimethylpentane",LB
+37157,0.03881002,Phenanthrene,LB
+37157,0.0009472539,Elemental Carbon portion of PM2.5-PRI,TON
+37157,27.36756,Toluene,LB
+37139,0.6252396,Ethyl Benzene,LB
+37139,0.479582,Hexane,LB
+37139,0.04607372,Benz[a]Anthracene,LB
+37139,0.006754866,Manganese,LB
+37139,0.12671386,Fluorene,LB
+37139,0.04677548,PM25-Primary from certain diesel engines,TON
+37139,0.01744961,Elemental Carbon portion of PM2.5-PRI,TON
+37139,0.7658212,Nitrogen Oxides,TON
+37139,0.04979792,PM2.5 Primary (Filt + Cond),TON
+37135,36.18158,Pyrene,LB
+37135,31.7234,Fluoranthene,LB
+37135,6.474248,Chrysene,LB
+37135,5.869102,Manganese,LB
+37135,117.39622,Phenanthrene,LB
+37135,5791.618,Carbon Monoxide,TON
+37133,8.917462,Benzene,LB
+37133,7.604602e-05,Mercury,LB
+37133,4.783524,Ethyl Benzene,LB
+37133,0.14298042,Propionaldehyde,LB
+37133,0.013432482,Pyrene,LB
+37133,0.009823248,"Benzo[g,h,i,]Perylene",LB
+37133,10896.044,Xylenes (Mixed Isomers),LB
+37127,26.69824,Ethyl Benzene,LB
+37125,0.004315342,"Benzo[g,h,i,]Perylene",LB
+37125,0.0019715424,Manganese,LB
+37125,315.3106,Formaldehyde,LB
+37125,759.5234,"2,2,4-Trimethylpentane",LB
+37125,1054.3098,Benzene,LB
+37125,1.0446166,Acenaphthene,LB
+37125,5.665842,Phenanthrene,LB
+37125,0.7891184,Fluorene,LB
+37125,492.552,Ethyl Benzene,LB
+37125,0.1098189,Chrysene,LB
+37121,1.503546,Ammonia,TON
+37121,0.01609294,Sulfate Portion of PM2.5-PRI,TON
+37121,0.2554842,Manganese,LB
+37119,24063.62,Hexane,LB
+37119,4153.644,Benzene,LB
+37115,13.35694,Styrene,LB
+37115,0.0002001756,Chromium (VI),LB
+37115,894.6868,Formaldehyde,LB
+37115,21.93284,"2,2,4-Trimethylpentane",LB
+37115,0.001386602,Nitrate portion of PM2.5-PRI,TON
+37115,0.04860589,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.19107104,Styrene,LB
+37113,0.011690904,Fluoranthene,LB
+37113,0.0434867,Phenanthrene,LB
+37113,0.006539473,Methane,TON
+37113,0.271388,Nitrogen Oxides,TON
+37113,0.003432674,PM2.5 Primary (Filt + Cond),TON
+37109,0.0547357,Arsenic,LB
+37109,2.604786,PM10 Primary (Filt + Cond),TON
+37109,0.1742571,Remaining PMFINE portion of PM2.5-PRI,TON
+37109,34.9933,Acrolein,LB
+37109,1.3131888,Anthracene,LB
+37109,2.686738,Fluoranthene,LB
+37109,0.0094686,Benzo[k]Fluoranthene,LB
+37109,0.4393288,"1,3-Butadiene",LB
+37109,0.02230366,Chrysene,LB
+37109,0.01171386,Elemental Carbon portion of PM2.5-PRI,TON
+37109,0.002210242,Ammonia,TON
+37109,0.006908806,Remaining PMFINE portion of PM2.5-PRI,TON
+37089,0.00479226,Acrolein,LB
+37089,0.00012353126,Benzo[b]Fluoranthene,LB
+37089,0.0002108156,Benzo[a]Pyrene,LB
+37089,0.0002702977,Ammonia,TON
+37089,0.003186078,Volatile Organic Compounds,TON
+37087,193.27972,Xylenes (Mixed Isomers),LB
+37087,0.04854018,"Benzo[g,h,i,]Perylene",LB
+37087,0.02593708,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,1445.441,Acetaldehyde,LB
+37087,19.538364,Fluorene,LB
+37083,0.1539307,Benz[a]Anthracene,LB
+37083,25.20438,Acetaldehyde,LB
+37083,0.1730242,PM25-Primary from certain diesel engines,TON
+37083,0.2451696,PM10 Primary (Filt + Cond),TON
+37083,0.006697108,Sulfur Dioxide,TON
+37083,0.006888214,Sulfate Portion of PM2.5-PRI,TON
+37083,0.330357,Volatile Organic Compounds,TON
+37081,303.8554,"2,2,4-Trimethylpentane",LB
+37081,127.90506,Benzene,LB
+37049,11.629356,Xylenes (Mixed Isomers),LB
+37049,0.06505082,Benz[a]Anthracene,LB
+37049,891.4289,Carbon Dioxide,TON
+37049,0.001339071,Nitrous Oxide,TON
+37049,0.007770851,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,18.61942,Formaldehyde,LB
+37043,0.003805068,Arsenic,LB
+37043,59.04926,Ethyl Benzene,LB
+37043,0.04289072,Anthracene,LB
+37043,0.833842,Propionaldehyde,LB
+37043,0.05447216,"Benzo[g,h,i,]Perylene",LB
+37035,10.386488,Fluoranthene,LB
+37035,5.21923,Acenaphthene,LB
+37025,3.06995,Fluoranthene,LB
+37025,0.2319481,Methane,TON
+37025,15.30758,Carbon Monoxide,TON
+37025,0.00531843,Nitrate portion of PM2.5-PRI,TON
+37025,1.455609,PM10 Primary (Filt + Cond),TON
+37025,0.1923188,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,0.5039988,Nitrogen Oxides,TON
+37167,0.01449611,Anthracene,LB
+37167,0.3472674,Propionaldehyde,LB
+37167,0.07762124,Acenaphthylene,LB
+37167,5.394888,Formaldehyde,LB
+37163,0.14137676,Acenaphthene,LB
+37163,0.003451162,Sulfur Dioxide,TON
+37163,0.02656932,Benz[a]Anthracene,LB
+37163,4.431782,Benzene,LB
+37163,3.863092,Toluene,LB
+37163,0.00010078484,Benzo[k]Fluoranthene,LB
+37163,0.011920888,Chrysene,LB
+37157,10.68867,Hexane,LB
+37157,10.65207,"2,2,4-Trimethylpentane",LB
+37157,0.18392588,Manganese,LB
+37157,0.02169216,Arsenic,LB
+37157,1.38961,Acenaphthene,LB
+37157,5.286792,Phenanthrene,LB
+37157,3.051178,Fluorene,LB
+37139,1.1698162e-06,Chromium (VI),LB
+37139,6.05095e-05,"Dibenzo[a,h]Anthracene",LB
+37139,0.0018762216,Benz[a]Anthracene,LB
+37139,0.006210838,Acenaphthene,LB
+37139,0.03377732,Phenanthrene,LB
+37139,50.90177,Carbon Dioxide,TON
+37139,0.001857199,Ammonia,TON
+37135,0.2499144,Manganese,LB
+37135,795.6576,Acetaldehyde,LB
+37135,1.3578506,Benz[a]Anthracene,LB
+37135,0.007425628,Benzo[k]Fluoranthene,LB
+37133,0.12411816,Xylenes (Mixed Isomers),LB
+37133,5.556014e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37133,0.073131,Benzene,LB
+37133,5.462052e-05,Manganese,LB
+37133,0.02445506,Carbon Monoxide,TON
+37133,4.265094e-05,Nitrous Oxide,TON
+37131,0.827635,Phenanthrene,LB
+37131,0.00176581,Nitrous Oxide,TON
+37131,0.01418147,Organic Carbon portion of PM2.5-PRI,TON
+37131,7.406142,Acrolein,LB
+37131,4.97008,Propionaldehyde,LB
+37131,0.0012941654,"Benzo[g,h,i,]Perylene",LB
+37127,0.0019931616,Fluoranthene,LB
+37127,2.473576e-06,Nickel,LB
+37127,0.006920974,Naphthalene,LB
+37127,0.000266461,Sulfate Portion of PM2.5-PRI,TON
+37127,0.3357841,Volatile Organic Compounds,TON
+37125,0.0016700038,Anthracene,LB
+37125,1.8440506,Benzene,LB
+37125,3.245077,Nitrogen Oxides,TON
+37125,0.001909967,Sulfur Dioxide,TON
+37115,19.401538,Hexane,LB
+37105,885.3818,Carbon Dioxide,TON
+37105,0.007660867,Sulfur Dioxide,TON
+37073,4.015876e-06,Mercury,LB
+37073,4.00566e-07,Chromium (VI),LB
+37073,3.56152e-05,Chrysene,LB
+37121,7.490512e-06,Mercury,LB
+37121,0.0007190278,Phenanthrene,LB
+37121,0.001052612,Methane,TON
+37121,8.434196e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.008191784,Volatile Organic Compounds,TON
+37121,0.00011534136,Benzo[k]Fluoranthene,LB
+37121,0.000211348,Benzo[a]Pyrene,LB
+37095,0.2778932,Toluene,LB
+37095,0.00012475782,Benzo[b]Fluoranthene,LB
+37095,0.0005396812,Acenaphthylene,LB
+37095,5.414656e-06,"Dibenzo[a,h]Anthracene",LB
+37095,0.12836702,"2,2,4-Trimethylpentane",LB
+37095,1.3832818,Acetaldehyde,LB
+37095,0.01345475,Nitrogen Oxides,TON
+37095,0.0007998462,Chrysene,LB
+37095,0.13803646,"1,3-Butadiene",LB
+37095,2.681928,Toluene,LB
+37095,0.000897394,Nickel,LB
+37095,0.00913315,Methane,TON
+37095,0.002099353,Nitrous Oxide,TON
+37083,0.0003397606,Acenaphthene,LB
+37083,0.0006882384,Fluorene,LB
+37083,0.0002030745,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.0005429926,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.001716713,Methane,TON
+37021,2.93367,Carbon Dioxide,TON
+37021,0.002207514,Pyrene,LB
+37021,1109.0062,Naphthalene,LB
+37017,0.174625,Styrene,LB
+37017,0.0018749876,Benzo[b]Fluoranthene,LB
+37017,0.03269312,Acenaphthylene,LB
+37015,0.009854474,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,6.031426,"2,2,4-Trimethylpentane",LB
+37015,0.02155,Arsenic,LB
+37015,0.1428004,Methane,TON
+37015,0.002262198,Nitrate portion of PM2.5-PRI,TON
+37015,0.1960968,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.5520244,"Benzo[g,h,i,]Perylene",LB
+37011,0.1571522,Benzo[k]Fluoranthene,LB
+37011,0.065029,Arsenic,LB
+37011,200.0308,Acetaldehyde,LB
+37009,19.62861,Nitrogen Oxides,TON
+37009,0.0381457,Sulfate Portion of PM2.5-PRI,TON
+37009,6.294444,Ethyl Benzene,LB
+37009,5.451762,"1,3-Butadiene",LB
+37009,0.560828,Anthracene,LB
+37009,0.05879014,Manganese,LB
+37009,0.00278148,Benzo[k]Fluoranthene,LB
+37009,8.69712e-05,"Dibenzo[a,h]Anthracene",LB
+37009,0.002790984,Benz[a]Anthracene,LB
+37009,0.01246178,Methane,TON
+37009,0.0004239615,Ammonia,TON
+37009,0.0006977588,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,25.18467,Volatile Organic Compounds,TON
+37189,4.097982,Hexane,LB
+37189,0.0013003988,Benzo[k]Fluoranthene,LB
+37189,0.0017795712,Benzo[a]Pyrene,LB
+37189,0.02432046,Phenanthrene,LB
+37189,0.08400394,Volatile Organic Compounds,TON
+37177,0.00238998,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.4083124,Fluoranthene,LB
+37177,4.629382e-05,Mercury,LB
+37177,0.887933,Phenanthrene,LB
+37177,0.02845964,Sulfate Portion of PM2.5-PRI,TON
+37167,0.6346914,Acrolein,LB
+37167,1.5348574e-06,Chromium (VI),LB
+37167,0.0017713064,Benzo[b]Fluoranthene,LB
+37167,0.000242033,"Dibenzo[a,h]Anthracene",LB
+37167,0.7565768,Benzene,LB
+37167,1.2832678e-06,Mercury,LB
+37167,0.292176,Nitrogen Oxides,TON
+37167,0.003500099,Remaining PMFINE portion of PM2.5-PRI,TON
+37195,0.0007717826,"Indeno[1,2,3-c,d]Pyrene",LB
+37195,0.11689412,Fluoranthene,LB
+37195,0.0542813,Acenaphthene,LB
+37195,0.0001763028,Nitrate portion of PM2.5-PRI,TON
+37195,0.03969728,PM2.5 Primary (Filt + Cond),TON
+37195,0.001419883,Sulfur Dioxide,TON
+37193,0.02256608,Hexane,LB
+37193,4.37423e-05,"Benzo[g,h,i,]Perylene",LB
+37193,2.985471e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37053,0.483196,Toluene,LB
+37053,0.000443687,"Indeno[1,2,3-c,d]Pyrene",LB
+37053,0.0002331724,Benzo[k]Fluoranthene,LB
+37045,0.11864544,Propionaldehyde,LB
+37045,0.0006553362,Benzo[b]Fluoranthene,LB
+37045,0.0012473272,Benzo[a]Pyrene,LB
+37045,5.297326e-05,Mercury,LB
+37045,0.0009970116,Fluorene,LB
+37045,4.592389e-06,Nitrate portion of PM2.5-PRI,TON
+37045,0.0008530872,Mercury,LB
+37045,0.010637168,Nickel,LB
+37045,0.02344462,Nitrous Oxide,TON
+37045,0.04751903,Sulfur Dioxide,TON
+37045,2.75282,Propionaldehyde,LB
+37045,0.06406926,"Benzo[g,h,i,]Perylene",LB
+37045,0.05282464,Acenaphthylene,LB
+37045,24.42246,Formaldehyde,LB
+37045,0.000552524,"Dibenzo[a,h]Anthracene",LB
+37045,11.92066,"2,2,4-Trimethylpentane",LB
+37151,0.0003882098,Elemental Carbon portion of PM2.5-PRI,TON
+37151,1.3941958,Xylenes (Mixed Isomers),LB
+37147,0.15654172,"1,3-Butadiene",LB
+37147,0.005625294,Acenaphthylene,LB
+37147,0.001136442,Chrysene,LB
+37107,0.9372791,Nitrogen Oxides,TON
+37107,0.0906391,PM10 Primary (Filt + Cond),TON
+37107,0.5244241,Volatile Organic Compounds,TON
+37107,0.007137776,Anthracene,LB
+37107,0.014886912,Pyrene,LB
+37107,5.774e-05,Chromium (VI),LB
+37107,0.013142698,Fluoranthene,LB
+37107,16.518956,Formaldehyde,LB
+37107,0.0005788686,Mercury,LB
+37107,0.7797416,Acrolein,LB
+37093,0.02288774,Acrolein,LB
+37093,0.453916,Xylenes (Mixed Isomers),LB
+37093,0.00019747942,Nickel,LB
+37093,2.659192,Acetaldehyde,LB
+37013,25.50786,"2,2,4-Trimethylpentane",LB
+37017,549.777,"1,3-Butadiene",LB
+37017,70.4507,Propionaldehyde,LB
+37017,9461.224,Xylenes (Mixed Isomers),LB
+37017,1.1246712,Chrysene,LB
+37009,2.517398,Benzo[b]Fluoranthene,LB
+37009,0.0718906,"Dibenzo[a,h]Anthracene",LB
+37009,1.631257,Organic Carbon portion of PM2.5-PRI,TON
+37197,0.03151548,Pyrene,LB
+37197,0.01051735,Benz[a]Anthracene,LB
+37197,0.00207241,Manganese,LB
+37197,4.035702e-05,Mercury,LB
+37197,0.000771582,Arsenic,LB
+37197,172.3036,Carbon Dioxide,TON
+37189,0.02169712,Benzo[a]Pyrene,LB
+37189,0.0002249446,Mercury,LB
+37189,0.06584102,Acenaphthene,LB
+37189,28.99943,Carbon Monoxide,TON
+37189,0.0067716,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.000653136,Sulfate Portion of PM2.5-PRI,TON
+37189,1.5304146,Styrene,LB
+37189,58.48332,Hexane,LB
+37189,1.2579188,Propionaldehyde,LB
+37183,7910.586,Formaldehyde,LB
+37183,11.556162,Benz[a]Anthracene,LB
+37183,205.8596,Carbon Monoxide,TON
+37183,35.92679,Volatile Organic Compounds,TON
+37185,0.0008434154,Benzo[a]Pyrene,LB
+37191,265.245,Xylenes (Mixed Isomers),LB
+37191,5.28182e-05,Chromium (VI),LB
+37191,0.1371173,"Benzo[g,h,i,]Perylene",LB
+37191,0.03540702,Benz[a]Anthracene,LB
+37191,0.01012335,Arsenic,LB
+37191,0.6101432,Phenanthrene,LB
+37191,0.01186978,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.0001695484,Nitrate portion of PM2.5-PRI,TON
+37191,3388.294,Hexane,LB
+37179,4.890142,Styrene,LB
+37179,193.02718,Hexane,LB
+37179,3.941514,Propionaldehyde,LB
+37179,0.15021568,"Benzo[g,h,i,]Perylene",LB
+37179,0.0002177209,Nitrate portion of PM2.5-PRI,TON
+37179,7.779467,Nitrogen Oxides,TON
+37067,0.0009434771,Methane,TON
+37067,0.6147991,Carbon Monoxide,TON
+37067,0.0009152398,Nitrous Oxide,TON
+37067,0.02589452,Propionaldehyde,LB
+37067,0.002399672,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,0.0010411398,Chrysene,LB
+37067,0.0011609172,Benz[a]Anthracene,LB
+37061,27.13276,Styrene,LB
+37061,861.876,Hexane,LB
+37061,23.02218,Propionaldehyde,LB
+37061,1.9069824,Pyrene,LB
+37061,796.6258,"2,2,4-Trimethylpentane",LB
+37061,0.319848,Benz[a]Anthracene,LB
+37061,295.0376,Carbon Monoxide,TON
+37061,1.14775,Ammonia,TON
+37061,0.1283608,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.13852362,Styrene,LB
+37049,4.937264e-06,Chromium (VI),LB
+37049,0.02746942,Acenaphthylene,LB
+37049,1.9491126,Formaldehyde,LB
+37049,0.006015844,Acenaphthene,LB
+37049,1.343395e-05,Nitrate portion of PM2.5-PRI,TON
+37049,0.0001559173,Sulfate Portion of PM2.5-PRI,TON
+37047,0.0008530172,Pyrene,LB
+37047,0.2708382,Xylenes (Mixed Isomers),LB
+37047,0.2385078,Benzene,LB
+37047,0.0015779104,Naphthalene,LB
+37041,0.9780788,Ethyl Benzene,LB
+37041,0.0012574076,Anthracene,LB
+37041,0.0014589832,Acenaphthene,LB
+37041,0.0002894966,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.017142232,Acenaphthene,LB
+37035,0.00688906,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.0004240556,Sulfate Portion of PM2.5-PRI,TON
+37035,0.014896374,Anthracene,LB
+37035,0.03205054,"Benzo[g,h,i,]Perylene",LB
+37035,0.012041938,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,4.737592e-05,Anthracene,LB
+37031,2.036626e-05,Chrysene,LB
+37031,3.623996e-05,Benzo[a]Pyrene,LB
+37031,0.0159674,Carbon Monoxide,TON
+37031,1.22846e-07,Nitrate portion of PM2.5-PRI,TON
+37031,1.781918e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,42.4904,Styrene,LB
+37027,95.33058,"1,3-Butadiene",LB
+37027,69.4055,Hexane,LB
+37027,0.0279713,"Indeno[1,2,3-c,d]Pyrene",LB
+37027,13.453394,Fluoranthene,LB
+37027,66.64764,"2,2,4-Trimethylpentane",LB
+37027,0.3497756,Manganese,LB
+37027,25.81858,Phenanthrene,LB
+37027,0.1137195,Sulfur Dioxide,TON
+37023,5.629924,Hexane,LB
+37023,0.804506,Anthracene,LB
+37023,0.012858078,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.05051186,Benzo[b]Fluoranthene,LB
+37023,1.2337692,Acenaphthylene,LB
+37023,0.006898192,"Dibenzo[a,h]Anthracene",LB
+37023,0.5565924,Benz[a]Anthracene,LB
+37023,21.0742,Benzene,LB
+37023,1457.265,Carbon Dioxide,TON
+37023,0.228168,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.00667037,Nitrous Oxide,TON
+37023,9.126189,Carbon Monoxide,TON
+37023,0.002910157,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.00757757,Ammonia,TON
+37023,0.01871499,PM2.5 Primary (Filt + Cond),TON
+37023,0.017908062,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,0.010791656,Benzo[k]Fluoranthene,LB
+37023,88845.06,Toluene,LB
+37023,9.754158,"Indeno[1,2,3-c,d]Pyrene",LB
+37023,25573.52,Benzene,LB
+37023,2.781508,Arsenic,LB
+37023,22.17052,Ammonia,TON
+37023,29.97495,PM10 Primary (Filt + Cond),TON
+37023,3.605315,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,451.5589,Volatile Organic Compounds,TON
+37119,136.90784,"1,3-Butadiene",LB
+37119,17157.742,Xylenes (Mixed Isomers),LB
+37119,6657.294,"2,2,4-Trimethylpentane",LB
+37119,10.600012,Fluorene,LB
+37119,2.119821,PM2.5 Primary (Filt + Cond),TON
+37119,0.6150193,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,4.432018,"1,3-Butadiene",LB
+37113,139.943,Formaldehyde,LB
+37113,0.0005832918,"Dibenzo[a,h]Anthracene",LB
+37113,3.533726,"2,2,4-Trimethylpentane",LB
+37113,0.02776934,Ammonia,TON
+37105,2.479634,"1,3-Butadiene",LB
+37105,2.232328,Hexane,LB
+37105,0.017217842,Nickel,LB
+37105,0.70414,Phenanthrene,LB
+37105,0.01734778,PM10-Primary from certain diesel engines,TON
+37105,0.02195637,PM2.5 Primary (Filt + Cond),TON
+37091,5.246924,Propionaldehyde,LB
+37091,0.0001816847,Nitrate portion of PM2.5-PRI,TON
+37089,52855.54,Xylenes (Mixed Isomers),LB
+37089,23875.44,Benzene,LB
+37089,5148.566,Carbon Monoxide,TON
+37089,11.93701,PM2.5 Primary (Filt + Cond),TON
+37089,6.990677,Sulfur Dioxide,TON
+37087,3.307412,Styrene,LB
+37087,0.6393384,Anthracene,LB
+37087,1.308884,Pyrene,LB
+37087,0.0366106,Nickel,LB
+37087,0.1123388,Methane,TON
+37087,11.96021,Carbon Monoxide,TON
+37087,0.01588386,Sulfur Dioxide,TON
+37087,0.01083404,Sulfate Portion of PM2.5-PRI,TON
+37079,31.66882,Naphthalene,LB
+37079,11751.88,Carbon Dioxide,TON
+37079,29.4553,Nitrogen Oxides,TON
+37079,0.09938579,Sulfur Dioxide,TON
+37079,0.09293216,Sulfate Portion of PM2.5-PRI,TON
+37079,21.64316,Acrolein,LB
+37079,1.1081298,Acenaphthylene,LB
+37079,2.726414,Styrene,LB
+37087,2.530879,Organic Carbon portion of PM2.5-PRI,TON
+37087,2.665484,Benzo[k]Fluoranthene,LB
+37087,25.70572,Acenaphthylene,LB
+37075,0.326755,Styrene,LB
+37075,4.208122,Formaldehyde,LB
+37075,0.01195006,Nitrous Oxide,TON
+37075,0.002575994,Sulfur Dioxide,TON
+37063,149.94654,Ethyl Benzene,LB
+37063,822.5568,Toluene,LB
+37063,0.04330879,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.0008075677,Nitrate portion of PM2.5-PRI,TON
+37063,0.8255625,PM10 Primary (Filt + Cond),TON
+37063,0.00932891,Sulfate Portion of PM2.5-PRI,TON
+37059,21.327,Toluene,LB
+37059,0.00424609,"Benzo[g,h,i,]Perylene",LB
+37059,1.6742546,Acenaphthylene,LB
+37059,6.502456e-05,Mercury,LB
+37059,133.67498,Acetaldehyde,LB
+37059,33.70172,Naphthalene,LB
+37059,0.0006214331,Nitrate portion of PM2.5-PRI,TON
+37059,16.394546,"2,2,4-Trimethylpentane",LB
+37059,0.0792898,Phenanthrene,LB
+37059,0.007720305,Organic Carbon portion of PM2.5-PRI,TON
+37057,0.8361412,PM2.5 Primary (Filt + Cond),TON
+37057,2.760384,Fluoranthene,LB
+37057,0.4667068,Chrysene,LB
+37057,0.8759307,PM10-Primary from certain diesel engines,TON
+37055,0.1761404,Styrene,LB
+37055,0.1393668,Acrolein,LB
+37055,0.001906597,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,4.37663e-05,"Dibenzo[a,h]Anthracene",LB
+37055,7.640076,"2,2,4-Trimethylpentane",LB
+37055,0.005672128,Methane,TON
+37055,2.932373,Carbon Monoxide,TON
+37055,0.0004289437,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.00259088,Ammonia,TON
+37055,7.672741e-05,Sulfate Portion of PM2.5-PRI,TON
+37051,32.39056,Fluoranthene,LB
+37051,6222.296,Formaldehyde,LB
+37051,3398.272,"1,3-Butadiene",LB
+37051,0.04482754,Chromium (VI),LB
+37051,8.591872,Arsenic,LB
+37051,6473.832,Carbon Monoxide,TON
+37051,3.286768,Elemental Carbon portion of PM2.5-PRI,TON
+37051,8.516782,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.5907347,Sulfate Portion of PM2.5-PRI,TON
+37051,479.4959,Volatile Organic Compounds,TON
+37043,0.3814522,Styrene,LB
+37043,1.8983016,Toluene,LB
+37043,0.005418492,Benzo[b]Fluoranthene,LB
+37043,0.1977366,Fluoranthene,LB
+37043,0.018175218,Benzo[a]Pyrene,LB
+37043,0.01190212,Methane,TON
+37043,0.06198027,PM25-Primary from certain diesel engines,TON
+37045,4.072156,Hexane,LB
+37045,0.019791406,Benzo[b]Fluoranthene,LB
+37045,0.002716806,"Dibenzo[a,h]Anthracene",LB
+37045,0.001209731,Nitrate portion of PM2.5-PRI,TON
+37045,0.9493815,Volatile Organic Compounds,TON
+37025,2.807214,"1,3-Butadiene",LB
+37025,116.8156,Toluene,LB
+37025,0.0002344582,"Dibenzo[a,h]Anthracene",LB
+37025,0.12591186,Phenanthrene,LB
+37025,0.04687554,Fluorene,LB
+37025,10.55805,Carbon Monoxide,TON
+37025,0.00761241,Nitrous Oxide,TON
+37025,0.7640306,Nitrogen Oxides,TON
+37029,0.8810144,Propionaldehyde,LB
+37029,0.09130156,Pyrene,LB
+37029,0.00394232,Manganese,LB
+37029,2.087962,Volatile Organic Compounds,TON
+37027,0.3339688,Acrolein,LB
+37027,0.01542595,Anthracene,LB
+37027,0.02987126,Pyrene,LB
+37027,0.004037032,Benzo[b]Fluoranthene,LB
+37027,0.0003280742,Nickel,LB
+37027,0.03676816,Fluorene,LB
+37027,0.005939916,Nitrous Oxide,TON
+37147,5.620276,Propionaldehyde,LB
+37147,0.002052378,Pyrene,LB
+37147,189.99142,Formaldehyde,LB
+37147,0.003777544,Naphthalene,LB
+37147,0.008869436,Nitrous Oxide,TON
+37145,0.08497274,Benz[a]Anthracene,LB
+37145,0.012866164,Manganese,LB
+37145,1.039813,Phenanthrene,LB
+37145,0.07042052,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.133574,PM10 Primary (Filt + Cond),TON
+37145,8.336488,Xylenes (Mixed Isomers),LB
+37139,0.06198348,Acrolein,LB
+37139,1.7239008e-06,Chromium (VI),LB
+37139,0.9590056,Formaldehyde,LB
+37139,0.000215495,Nickel,LB
+37139,0.002094337,Nitrous Oxide,TON
+37139,5.817504e-05,Sulfate Portion of PM2.5-PRI,TON
+37135,0.0390795,Nickel,LB
+37135,14.09353,Carbon Monoxide,TON
+37135,2202.842,Carbon Dioxide,TON
+37135,0.2993156,PM10-Primary from certain diesel engines,TON
+37135,0.0005913727,Nitrate portion of PM2.5-PRI,TON
+37135,5.889508,Nitrogen Oxides,TON
+37135,1.428257,Volatile Organic Compounds,TON
+37135,8.480812,Ethyl Benzene,LB
+37135,0.0012700102,Benzo[k]Fluoranthene,LB
+37135,1.3284436,Acenaphthylene,LB
+37127,2.717636,"1,3-Butadiene",LB
+37127,0.02586624,Anthracene,LB
+37127,0.05058314,Pyrene,LB
+37127,1.258385e-05,Chromium (VI),LB
+37127,0.00950564,Benz[a]Anthracene,LB
+37127,35.71656,Benzene,LB
+37127,0.0001261535,Mercury,LB
+37127,1.564631,Naphthalene,LB
+37127,0.01516277,Methane,TON
+37127,0.002837692,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.08063727,PM10 Primary (Filt + Cond),TON
+37123,0.5666786,Carbon Monoxide,TON
+37123,310.7898,Carbon Dioxide,TON
+37123,0.002664319,Sulfur Dioxide,TON
+37123,1.2795828,Propionaldehyde,LB
+37123,25.09826,Formaldehyde,LB
+37123,0.02019534,Benzo[a]Pyrene,LB
+37121,0.1273047,Acrolein,LB
+37121,4.478716e-05,"Dibenzo[a,h]Anthracene",LB
+37121,0.003665224,Benz[a]Anthracene,LB
+37115,0.015760474,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,4.562614,Phenanthrene,LB
+37115,0.01799182,Nitrous Oxide,TON
+37115,0.2026226,Ammonia,TON
+37115,0.004246183,Nitrate portion of PM2.5-PRI,TON
+37115,1.478173,PM2.5 Primary (Filt + Cond),TON
+37115,0.1112439,Sulfur Dioxide,TON
+37113,0.0009563206,Naphthalene,LB
+37113,1.933057e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37113,2.133234e-06,Sulfur Dioxide,TON
+37113,5.86159e-06,Benz[a]Anthracene,LB
+37113,1.1777082e-06,Manganese,LB
+37107,6.481068e-05,Anthracene,LB
+37107,0.0002757022,Pyrene,LB
+37107,23.60018,Formaldehyde,LB
+37107,0.0869765,Benzene,LB
+37107,0.001228018,Ammonia,TON
+37107,0.0007905813,Organic Carbon portion of PM2.5-PRI,TON
+37105,16.256584,Propionaldehyde,LB
+37105,3.22726,Pyrene,LB
+37105,19.78506,Xylenes (Mixed Isomers),LB
+37105,7.862964e-05,Chromium (VI),LB
+37105,28.6586,Benzene,LB
+37105,0.004173624,Nitrate portion of PM2.5-PRI,TON
+37097,4.80422,Ethyl Benzene,LB
+37097,0.10572798,Benzo[a]Pyrene,LB
+37097,0.339318,Benz[a]Anthracene,LB
+37097,0.06825694,Manganese,LB
+37097,1.6915694,Phenanthrene,LB
+37097,2152.364,Carbon Dioxide,TON
+37097,0.1252897,Elemental Carbon portion of PM2.5-PRI,TON
+37103,24.5588,Toluene,LB
+37103,0.1052906,Propionaldehyde,LB
+37103,0.008474954,"Benzo[g,h,i,]Perylene",LB
+37103,0.001830797,Chrysene,LB
+37103,1.3102354e-05,Mercury,LB
+37103,0.0002505104,Arsenic,LB
+37093,1.5174612,Hexane,LB
+37093,5.783224,Benzene,LB
+37093,2.217399,Carbon Monoxide,TON
+37093,0.1283531,PM25-Primary from certain diesel engines,TON
+37093,0.2068153,PM10 Primary (Filt + Cond),TON
+37083,0.05390854,Ethyl Benzene,LB
+37083,0.3569952,Toluene,LB
+37083,4.785284e-08,Chromium (VI),LB
+37083,0.0005733592,Fluoranthene,LB
+37083,0.0008043978,Fluorene,LB
+37083,0.01307557,Nitrous Oxide,TON
+37083,0.6955267,Nitrogen Oxides,TON
+37073,7.043082e-06,Mercury,LB
+37073,185.4683,Carbon Dioxide,TON
+37073,0.0214591,Elemental Carbon portion of PM2.5-PRI,TON
+37073,0.006326027,Ammonia,TON
+37073,0.5773307,Nitrogen Oxides,TON
+37073,2.376622,Acrolein,LB
+37073,0.000398789,"Benzo[g,h,i,]Perylene",LB
+37075,6.625068,Toluene,LB
+37075,0.0013916798,Benzo[k]Fluoranthene,LB
+37075,0.3819338,Fluorene,LB
+37075,0.07520544,Methane,TON
+37075,0.0005838606,Nitrate portion of PM2.5-PRI,TON
+37075,0.4407271,PM10 Primary (Filt + Cond),TON
+37067,0.2151552,Benz[a]Anthracene,LB
+37067,3.289008e-05,Mercury,LB
+37067,0.006876848,Arsenic,LB
+37067,9.719484,Naphthalene,LB
+37063,1.5584108,"1,3-Butadiene",LB
+37063,0.03911804,"Benzo[g,h,i,]Perylene",LB
+37063,33.91774,Benzene,LB
+37063,0.05694062,Fluorene,LB
+37063,1.460156,Naphthalene,LB
+37063,0.00954027,Organic Carbon portion of PM2.5-PRI,TON
+37063,0.02312386,PM2.5 Primary (Filt + Cond),TON
+37063,19.49419,PM2.5 Primary (Filt + Cond),TON
+37063,22295.6,Ethyl Benzene,LB
+37063,28804.42,Hexane,LB
+37063,11658.302,Formaldehyde,LB
+37063,15.984834,Benzo[a]Pyrene,LB
+37063,11.335488,Benz[a]Anthracene,LB
+37063,10.144866,Manganese,LB
+37063,5.956602,Arsenic,LB
+37063,1941.9406,Naphthalene,LB
+37063,9679.463,Carbon Monoxide,TON
+37063,3.647018,Elemental Carbon portion of PM2.5-PRI,TON
+37043,1.978908,Hexane,LB
+37043,3.79983,Propionaldehyde,LB
+37043,0.6397814,Pyrene,LB
+37043,0.04240802,Benzo[a]Pyrene,LB
+37043,8.59444,Nitrogen Oxides,TON
+37043,0.000203855,"Indeno[1,2,3-c,d]Pyrene",LB
+37043,0.0223904,Benz[a]Anthracene,LB
+37043,0.001547114,Arsenic,LB
+37043,0.03203723,PM10-Primary from certain diesel engines,TON
+37033,2.647062e-05,Mercury,LB
+37033,0.481718,Acenaphthene,LB
+37033,1.7420874,Phenanthrene,LB
+37033,4.73173,"1,3-Butadiene",LB
+37033,1.47456,Pyrene,LB
+37033,0.00431159,Benzo[k]Fluoranthene,LB
+37033,0.810029,Acenaphthylene,LB
+37033,0.02520866,Methane,TON
+37033,14.96325,Nitrogen Oxides,TON
+37031,6.799932,Xylenes (Mixed Isomers),LB
+37031,0.003123872,"Benzo[g,h,i,]Perylene",LB
+37031,0.01313866,Benzo[b]Fluoranthene,LB
+37031,0.5863002,Acenaphthylene,LB
+37031,0.04427148,Manganese,LB
+37031,1.114839,Phenanthrene,LB
+37031,11.527018,Naphthalene,LB
+37031,0.212527,PM25-Primary from certain diesel engines,TON
+37031,0.06496494,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.009259124,Sulfate Portion of PM2.5-PRI,TON
+37163,43.16122,Ethyl Benzene,LB
+37163,140.54806,Toluene,LB
+37163,34.60528,Hexane,LB
+37163,164.73222,Xylenes (Mixed Isomers),LB
+37163,0.11109808,Benzo[b]Fluoranthene,LB
+37163,0.14524276,Nickel,LB
+37163,10.788934,Phenanthrene,LB
+37163,5.372892,Fluorene,LB
+37163,1.925904,Methane,TON
+37163,3.310256,PM25-Primary from certain diesel engines,TON
+37163,2.179156,Elemental Carbon portion of PM2.5-PRI,TON
+37163,106.1738,Nitrogen Oxides,TON
+37163,0.3533103,Remaining PMFINE portion of PM2.5-PRI,TON
+37159,10.843176,"1,3-Butadiene",LB
+37159,27.3725,Acrolein,LB
+37159,18.005568,Propionaldehyde,LB
+37159,3.339214,Pyrene,LB
+37159,6.460634e-05,Chromium (VI),LB
+37159,0.0713683,Benzo[b]Fluoranthene,LB
+37159,4.13132,Phenanthrene,LB
+37159,2.375134,Fluorene,LB
+37159,0.01955043,Sulfur Dioxide,TON
+37159,1.980699,Volatile Organic Compounds,TON
+37155,0.008510089,Nitrous Oxide,TON
+37155,0.004100933,Nitrate portion of PM2.5-PRI,TON
+37155,10.256444,Ethyl Benzene,LB
+37155,20.24388,Toluene,LB
+37155,0.01772031,"Indeno[1,2,3-c,d]Pyrene",LB
+37155,307.8594,Formaldehyde,LB
+37151,0.0341554,Toluene,LB
+37151,2.35045e-07,Nickel,LB
+37151,6.781779e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37151,2.575912e-07,Nitrate portion of PM2.5-PRI,TON
+37147,0.014961602,Benzo[b]Fluoranthene,LB
+37147,0.4855198,Fluoranthene,LB
+37147,67.14244,Formaldehyde,LB
+37147,0.002051106,"Dibenzo[a,h]Anthracene",LB
+37147,0.7872058,Phenanthrene,LB
+37147,908.4379,Carbon Dioxide,TON
+37147,0.272188,PM10 Primary (Filt + Cond),TON
+37145,9.349632e-08,Nickel,LB
+37145,0.004864066,Ethyl Benzene,LB
+37145,0.0279556,Toluene,LB
+37145,6.74054e-06,Anthracene,LB
+37145,1.026363e-08,Nitrate portion of PM2.5-PRI,TON
+37145,9.620142e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37145,9.685104e-08,Sulfate Portion of PM2.5-PRI,TON
+37133,0.03051158,"Benzo[g,h,i,]Perylene",LB
+37133,0.01974741,Ammonia,TON
+37133,0.01554944,Sulfur Dioxide,TON
+37121,0.003342246,"Benzo[g,h,i,]Perylene",LB
+37121,0.0012609402,Benzo[a]Pyrene,LB
+37121,1.183362,Acetaldehyde,LB
+37121,0.000303602,Elemental Carbon portion of PM2.5-PRI,TON
+37119,10.927436,Fluorene,LB
+37119,53.78017,Carbon Monoxide,TON
+37119,0.3306383,Ammonia,TON
+37119,1.659777,Organic Carbon portion of PM2.5-PRI,TON
+37119,3.986047,PM2.5 Primary (Filt + Cond),TON
+37119,9.154174,Volatile Organic Compounds,TON
+37119,43.51256,Hexane,LB
+37111,127.59522,Styrene,LB
+37111,816.9868,"1,3-Butadiene",LB
+37111,5268.168,Hexane,LB
+37111,3.252528,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,2.107686,Benzo[k]Fluoranthene,LB
+37111,1.9076788,Chrysene,LB
+37111,4813.39,"2,2,4-Trimethylpentane",LB
+37111,29.86648,Phenanthrene,LB
+37099,0.9513624,Styrene,LB
+37099,2.25425,"1,3-Butadiene",LB
+37099,0.1804462,Anthracene,LB
+37099,0.0002632624,"Indeno[1,2,3-c,d]Pyrene",LB
+37099,0.0010308098,Benzo[b]Fluoranthene,LB
+37099,0.283561,Fluoranthene,LB
+37099,0.3779614,Acenaphthylene,LB
+37099,94.34806,Formaldehyde,LB
+37099,0.6822392,Phenanthrene,LB
+37095,0.5588548,Ethyl Benzene,LB
+37095,0.0012929448,Pyrene,LB
+37095,0.0006412358,"Benzo[g,h,i,]Perylene",LB
+37095,0.0001875149,Manganese,LB
+37095,4.160874e-05,Nickel,LB
+37095,0.004236708,Phenanthrene,LB
+37095,0.000525536,Ammonia,TON
+37095,7.923598e-06,Sulfate Portion of PM2.5-PRI,TON
+37095,0.011605912,Styrene,LB
+37095,1.0320414,Xylenes (Mixed Isomers),LB
+37095,1.28052e-07,Chromium (VI),LB
+37095,0.008229194,Volatile Organic Compounds,TON
+37091,3146.642,Ethyl Benzene,LB
+37091,128.2597,Styrene,LB
+37091,745.243,"1,3-Butadiene",LB
+37091,0.002642746,Chromium (VI),LB
+37091,4.11012,"Benzo[g,h,i,]Perylene",LB
+37091,1.558552,Benzo[a]Pyrene,LB
+37091,0.381189,Elemental Carbon portion of PM2.5-PRI,TON
+37091,2.300083,Nitrous Oxide,TON
+37091,0.004572963,Nitrate portion of PM2.5-PRI,TON
+37091,0.4281587,Remaining PMFINE portion of PM2.5-PRI,TON
+37083,3.854926,Pyrene,LB
+37083,3.1526,Fluoranthene,LB
+37083,0.230822,Chrysene,LB
+37083,66.91628,Benzene,LB
+37083,0.03169676,Arsenic,LB
+37083,307.1286,Acetaldehyde,LB
+37083,6.261382,Phenanthrene,LB
+37083,47.08113,Carbon Monoxide,TON
+37079,0.264492,Anthracene,LB
+37079,6.222834,Propionaldehyde,LB
+37079,0.08161806,Benzo[b]Fluoranthene,LB
+37079,0.08192824,Chrysene,LB
+37079,0.05305706,Manganese,LB
+37079,0.002257744,Mercury,LB
+37079,73.39673,Carbon Monoxide,TON
+37071,0.10121664,Benzo[a]Pyrene,LB
+37071,1.695759,Fluorene,LB
+37071,3.880616,Styrene,LB
+37071,2925.874,Carbon Dioxide,TON
+37071,0.00710119,Nitrous Oxide,TON
+37071,1.7155966,Anthracene,LB
+37071,39.7079,Propionaldehyde,LB
+37071,0.5656408,Benzo[b]Fluoranthene,LB
+37071,104.16432,Naphthalene,LB
+37071,0.02775166,Sulfate Portion of PM2.5-PRI,TON
+37061,53.92672,Ethyl Benzene,LB
+37061,107.41614,Acrolein,LB
+37061,43.45408,Hexane,LB
+37061,1.4145002,Benz[a]Anthracene,LB
+37061,0.0005836914,Mercury,LB
+37061,2.565725,Methane,TON
+37061,120.8292,Nitrogen Oxides,TON
+37061,3.843751,PM2.5 Primary (Filt + Cond),TON
+37061,14731.704,Xylenes (Mixed Isomers),LB
+37061,2.10951,Benzo[b]Fluoranthene,LB
+37061,8.579744,Fluoranthene,LB
+37061,26.32916,Acenaphthylene,LB
+37061,2.035078,Benz[a]Anthracene,LB
+37047,1.886456,Pyrene,LB
+37047,0.005646806,"Dibenzo[a,h]Anthracene",LB
+37047,0.03674124,Manganese,LB
+37047,0.07944862,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,0.009452146,Sulfate Portion of PM2.5-PRI,TON
+37045,5.50916e-05,Benz[a]Anthracene,LB
+37045,0.003073614,Manganese,LB
+37043,0.05397168,Benzene,LB
+37043,0.0003139,Phenanthrene,LB
+37043,0.0003560364,Naphthalene,LB
+37043,0.2195011,Carbon Monoxide,TON
+37043,0.2462632,Benz[a]Anthracene,LB
+37043,41.3107,Naphthalene,LB
+37043,0.30038,PM10-Primary from certain diesel engines,TON
+37043,0.0005056365,Nitrate portion of PM2.5-PRI,TON
+37043,12.5051,"1,3-Butadiene",LB
+37043,0.006933344,Benzo[b]Fluoranthene,LB
+37045,70.5723,Naphthalene,LB
+37045,10709.57,Carbon Dioxide,TON
+37045,3.07258,PM25-Primary from certain diesel engines,TON
+37045,0.009570842,Nitrate portion of PM2.5-PRI,TON
+37045,62.15796,Nitrogen Oxides,TON
+37045,15.983108,Hexane,LB
+37045,0.013362288,Chromium (VI),LB
+37045,0.12480422,"Dibenzo[a,h]Anthracene",LB
+37045,0.1339566,Mercury,LB
+37045,50.8004,Phenanthrene,LB
+37045,16.89975,Ammonia,TON
+37045,258.2316,Nitrogen Oxides,TON
+37045,201.5995,Volatile Organic Compounds,TON
+37039,6.3112,"1,3-Butadiene",LB
+37039,286.947,Hexane,LB
+37039,0.15101852,"Benzo[g,h,i,]Perylene",LB
+37039,0.041155,Benzo[b]Fluoranthene,LB
+37039,0.2816414,Fluorene,LB
+37039,0.1185302,Ammonia,TON
+37039,0.0551034,PM2.5 Primary (Filt + Cond),TON
+37027,38.23026,Acrolein,LB
+37027,0.3631514,Elemental Carbon portion of PM2.5-PRI,TON
+37175,2.295208,"1,3-Butadiene",LB
+37175,0.0007486732,Benzo[b]Fluoranthene,LB
+37175,0.3881624,Acenaphthylene,LB
+37175,0.017991536,Manganese,LB
+37159,5.844236,Ethyl Benzene,LB
+37159,5.419224,"1,3-Butadiene",LB
+37159,8.990182,Propionaldehyde,LB
+37159,0.00242217,Benzo[k]Fluoranthene,LB
+37159,177.40814,Formaldehyde,LB
+37159,4.375816e-05,Mercury,LB
+37159,75.80656,Acetaldehyde,LB
+37159,0.02139661,Sulfur Dioxide,TON
+37159,0.01870008,Sulfate Portion of PM2.5-PRI,TON
+37153,0.13934264,Benzene,LB
+37153,64.75948,Carbon Dioxide,TON
+37153,0.2854965,Nitrogen Oxides,TON
+37137,0.09748008,Chrysene,LB
+37137,0.1664151,Benz[a]Anthracene,LB
+37137,0.002954458,Arsenic,LB
+37137,0.2195074,Acenaphthene,LB
+37137,0.001372243,Nitrous Oxide,TON
+37131,9.10162,Hexane,LB
+37131,1.8552296e-05,Mercury,LB
+37131,0.001167343,Elemental Carbon portion of PM2.5-PRI,TON
+37131,0.002767614,Ammonia,TON
+37131,0.1726906,Volatile Organic Compounds,TON
+37127,0.2200784,Nickel,LB
+37127,3.721991,Methane,TON
+37127,44.73468,"1,3-Butadiene",LB
+37127,157.8025,Acrolein,LB
+37127,11.660626,Pyrene,LB
+37127,312.196,Xylenes (Mixed Isomers),LB
+37127,0.0006054602,Chromium (VI),LB
+37127,0.2264912,Benzo[b]Fluoranthene,LB
+37127,1.5023916,Chrysene,LB
+37121,5.488714,Toluene,LB
+37121,0.2235076,Benz[a]Anthracene,LB
+37121,0.02627134,Manganese,LB
+37121,0.01397126,Nickel,LB
+37121,38.02974,Acetaldehyde,LB
+37121,2.590576,Carbon Monoxide,TON
+37121,0.3919982,PM25-Primary from certain diesel engines,TON
+37121,0.01897588,Ammonia,TON
+37111,6.837334,Phenanthrene,LB
+37111,3.91116,Fluorene,LB
+37111,7748.662,Carbon Dioxide,TON
+37111,1.51935,PM25-Primary from certain diesel engines,TON
+37111,0.1815665,Ammonia,TON
+37111,41.56404,Toluene,LB
+37111,42.61202,Xylenes (Mixed Isomers),LB
+37111,4.223392,Fluoranthene,LB
+37111,0.016713654,Benzo[k]Fluoranthene,LB
+37111,1.7862548,Acenaphthene,LB
+37117,2687.742,Benzene,LB
+37117,2.5653,Acenaphthene,LB
+37117,46174.29,Carbon Dioxide,TON
+37117,0.04114578,Sulfate Portion of PM2.5-PRI,TON
+37107,0.013848548,Toluene,LB
+37107,1.1782428e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,1.1856492e-06,Benzo[a]Pyrene,LB
+37107,2.158358e-07,Manganese,LB
+37107,2.24552e-09,Mercury,LB
+37107,0.00018780764,Naphthalene,LB
+37107,1.22982e-06,PM2.5 Primary (Filt + Cond),TON
+37107,2.993541e-07,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,3.281826e-07,Sulfur Dioxide,TON
+37107,0.00010596734,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,8.188256e-05,Benzo[k]Fluoranthene,LB
+37107,8.209086e-05,Chrysene,LB
+37107,0.0006272416,Fluorene,LB
+37107,3.180555e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.006012684,Volatile Organic Compounds,TON
+37103,2.108858,Pyrene,LB
+37103,1.8503446,Fluoranthene,LB
+37103,0.7128348,Methane,TON
+37097,621.5314,Volatile Organic Compounds,TON
+37097,735.0064,Propionaldehyde,LB
+37097,15.917322,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,74.03454,Fluorene,LB
+37053,1.6589556,Acrolein,LB
+37053,0.0007126822,Benzo[k]Fluoranthene,LB
+37053,0.5738458,"2,2,4-Trimethylpentane",LB
+37053,2.329856,Naphthalene,LB
+37053,255.3628,Carbon Dioxide,TON
+37053,0.05960838,PM10-Primary from certain diesel engines,TON
+37053,0.0006983983,Nitrous Oxide,TON
+37053,0.8423794,Nitrogen Oxides,TON
+37015,3.396034,Styrene,LB
+37015,0.0017162302,"Indeno[1,2,3-c,d]Pyrene",LB
+37015,0.0009310452,"Dibenzo[a,h]Anthracene",LB
+37015,0.03088804,Manganese,LB
+37015,6.289142e-05,Mercury,LB
+37015,2.09839,Phenanthrene,LB
+37015,1.3398842,Fluorene,LB
+37015,0.2695617,PM10-Primary from certain diesel engines,TON
+37011,90.22276,Ethyl Benzene,LB
+37011,1.9485272,Styrene,LB
+37011,1.6952588,Acrolein,LB
+37011,0.03692412,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.08784624,Acenaphthene,LB
+37011,0.0398625,Methane,TON
+37011,2.766576,Volatile Organic Compounds,TON
+37009,0.5155448,"1,3-Butadiene",LB
+37009,0.003690374,"Benzo[g,h,i,]Perylene",LB
+37009,0.004223556,PM10 Primary (Filt + Cond),TON
+37009,0.014389512,Chrysene,LB
+37009,0.0004205126,"Dibenzo[a,h]Anthracene",LB
+37009,56.73126,Benzene,LB
+37009,0.006254897,Elemental Carbon portion of PM2.5-PRI,TON
+37009,5.322246e-05,Nitrate portion of PM2.5-PRI,TON
+37009,0.008957072,Organic Carbon portion of PM2.5-PRI,TON
+37009,1.112652,Volatile Organic Compounds,TON
+37001,0.12685078,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.07605782,Benz[a]Anthracene,LB
+37007,15267.452,Xylenes (Mixed Isomers),LB
+37007,2225.372,Formaldehyde,LB
+37007,1.7606668,Benz[a]Anthracene,LB
+37007,0.7788314,Arsenic,LB
+37007,0.4811589,Elemental Carbon portion of PM2.5-PRI,TON
+37007,0.0657677,Sulfate Portion of PM2.5-PRI,TON
+37057,0.2240746,Nitrogen Oxides,TON
+37057,0.02812478,PM10 Primary (Filt + Cond),TON
+37057,0.0002402603,Sulfate Portion of PM2.5-PRI,TON
+37057,0.6055294,Propionaldehyde,LB
+37013,0.00091281,Pyrene,LB
+37013,0.002217396,Acenaphthylene,LB
+37013,0.0004054296,Benz[a]Anthracene,LB
+37013,0.0011592924,Manganese,LB
+37013,0.000480655,Acenaphthene,LB
+37013,62.23819,Carbon Dioxide,TON
+37013,0.04673125,Nitrogen Oxides,TON
+37013,3.672102e-05,Sulfate Portion of PM2.5-PRI,TON
+37123,0.001160935,Arsenic,LB
+37123,0.003103344,Phenanthrene,LB
+37017,0.070131,Acrolein,LB
+37017,0.0010584204,Benzo[b]Fluoranthene,LB
+37017,3.835542,Benzene,LB
+37017,0.001364059,Manganese,LB
+37017,1.732783,Carbon Monoxide,TON
+37017,0.2106332,Nitrogen Oxides,TON
+37017,0.0008694327,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.0502158,"1,3-Butadiene",LB
+37073,0.890148,Toluene,LB
+37073,0.0006422224,Pyrene,LB
+37073,1.3914068e-05,"Dibenzo[a,h]Anthracene",LB
+37073,0.00028379,Benz[a]Anthracene,LB
+37073,0.00042441,Nickel,LB
+37073,0.0006858044,Fluorene,LB
+37073,0.017646322,Naphthalene,LB
+37073,0.003356466,PM10 Primary (Filt + Cond),TON
+37073,0.02603219,Volatile Organic Compounds,TON
+37071,0.0011634734,Benzo[b]Fluoranthene,LB
+37071,0.0011634734,Benzo[k]Fluoranthene,LB
+37071,0.0008704092,Chrysene,LB
+37071,2.387138,Benzene,LB
+37071,0.01557789,PM10 Primary (Filt + Cond),TON
+37071,0.003849776,PM2.5 Primary (Filt + Cond),TON
+37071,0.005166732,Sulfur Dioxide,TON
+37045,0.007225254,Manganese,LB
+37045,0.003754944,Fluorene,LB
+37045,2.883206,Carbon Monoxide,TON
+37045,0.01089226,Sulfur Dioxide,TON
+37045,0.2016636,Acrolein,LB
+37045,2.364696,"2,2,4-Trimethylpentane",LB
+37019,0.000685308,Anthracene,LB
+37019,0.0014542452,Pyrene,LB
+37019,0.002735202,Manganese,LB
+37019,8.327314e-05,Mercury,LB
+37019,0.0010383014,Nickel,LB
+37019,0.006645488,Methane,TON
+37019,142.0344,Carbon Dioxide,TON
+37173,0.3457532,"1,3-Butadiene",LB
+37173,2.389116,Hexane,LB
+37173,3.026928,"2,2,4-Trimethylpentane",LB
+37065,4.48518,Acrolein,LB
+37065,0.00215102,"Dibenzo[a,h]Anthracene",LB
+37065,12.356504,Naphthalene,LB
+37057,0.04728152,"Benzo[g,h,i,]Perylene",LB
+37057,0.03062876,Benzo[k]Fluoranthene,LB
+37057,127.69912,Benzene,LB
+37057,0.0004109422,Mercury,LB
+37057,0.1615282,Nickel,LB
+37057,8.266832,Fluorene,LB
+37057,0.4136726,Ammonia,TON
+37057,2.91964,PM2.5 Primary (Filt + Cond),TON
+37055,1.9982724,"1,3-Butadiene",LB
+37055,0.00019550524,"Indeno[1,2,3-c,d]Pyrene",LB
+37055,0.015332668,Chrysene,LB
+37045,0.019161848,Acenaphthene,LB
+37045,0.01208095,PM2.5 Primary (Filt + Cond),TON
+37045,52.52168,Xylenes (Mixed Isomers),LB
+37043,71.37746,Ethyl Benzene,LB
+37043,0.1044132,"Benzo[g,h,i,]Perylene",LB
+37043,0.03124836,Benzo[b]Fluoranthene,LB
+37043,0.03124836,Benzo[k]Fluoranthene,LB
+37043,122.02874,Benzene,LB
+37043,0.0007185832,Mercury,LB
+37043,6.43457,Naphthalene,LB
+37043,0.09082485,Ammonia,TON
+37043,0.04453264,PM2.5 Primary (Filt + Cond),TON
+37035,0.04785461,PM10 Primary (Filt + Cond),TON
+37035,0.006191022,Sulfur Dioxide,TON
+37035,30.63222,Ethyl Benzene,LB
+37035,6.6162e-06,Chromium (VI),LB
+37035,0.013183936,Chrysene,LB
+37035,0.006436134,Manganese,LB
+37035,0.004028524,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.01059383,Ammonia,TON
+37031,2.219072,Styrene,LB
+37031,8.274262,Propionaldehyde,LB
+37031,0.007548612,"Benzo[g,h,i,]Perylene",LB
+37031,0.2396456,Chrysene,LB
+37031,14.742648,Benzene,LB
+37031,0.04465292,Manganese,LB
+37031,0.5659197,PM10 Primary (Filt + Cond),TON
+37025,0.003629078,Mercury,LB
+37025,0.001085568,Nitrate portion of PM2.5-PRI,TON
+37025,0.2058681,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.3774593,PM2.5 Primary (Filt + Cond),TON
+37025,0.1046925,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,3.634698,Styrene,LB
+37171,3.93729e-05,Chromium (VI),LB
+37171,0.009418608,"Benzo[g,h,i,]Perylene",LB
+37171,0.02349226,Nickel,LB
+37171,30.84912,Naphthalene,LB
+37171,0.6948209,PM10 Primary (Filt + Cond),TON
+37171,0.01212078,Sulfate Portion of PM2.5-PRI,TON
+37169,1890.6852,"2,2,4-Trimethylpentane",LB
+37169,28.18555,Volatile Organic Compounds,TON
+37167,0.00012087276,Mercury,LB
+37167,0.228958,Phenanthrene,LB
+37167,30.54788,Hexane,LB
+37167,1.2057234e-05,Chromium (VI),LB
+37167,0.010300056,Benzo[b]Fluoranthene,LB
+37167,0.012743936,Benzo[a]Pyrene,LB
+37167,22.32308,"2,2,4-Trimethylpentane",LB
+37157,0.285655,Acrolein,LB
+37157,0.013246754,Anthracene,LB
+37157,0.02280342,Fluoranthene,LB
+37157,0.0006592418,Arsenic,LB
+37157,0.005371121,Ammonia,TON
+37157,0.01926065,PM10 Primary (Filt + Cond),TON
+37157,0.3685239,Volatile Organic Compounds,TON
+37151,6.583133,Nitrogen Oxides,TON
+37151,25.64368,"1,3-Butadiene",LB
+37151,190.65694,Hexane,LB
+37151,0.06884138,Benzo[b]Fluoranthene,LB
+37151,0.0005930098,Mercury,LB
+37151,0.01133741,Arsenic,LB
+37151,0.19094108,Acenaphthene,LB
+37151,1.0417606,Phenanthrene,LB
+37141,0.0861658,Chrysene,LB
+37141,229.9312,Formaldehyde,LB
+37141,0.0010623126,"Dibenzo[a,h]Anthracene",LB
+37141,0.03312624,Manganese,LB
+37141,100.04568,Acetaldehyde,LB
+37141,2.055638,Phenanthrene,LB
+37141,1.310936,Fluorene,LB
+37141,1700.227,Carbon Dioxide,TON
+37141,0.01469967,Sulfur Dioxide,TON
+37141,1.334892,Volatile Organic Compounds,TON
+37129,52.73088,Propionaldehyde,LB
+37129,0.2687796,Benzo[b]Fluoranthene,LB
+37129,0.2286637,Ammonia,TON
+37129,0.6678802,Remaining PMFINE portion of PM2.5-PRI,TON
+37125,67.9194,Benzene,LB
+37125,80.84332,Naphthalene,LB
+37125,33689.08,Carbon Dioxide,TON
+37125,0.03880321,Nitrous Oxide,TON
+37121,0.015852288,Benzo[b]Fluoranthene,LB
+37121,3.36496,"2,2,4-Trimethylpentane",LB
+37121,11.895708,Naphthalene,LB
+37121,5615.491,Carbon Dioxide,TON
+37121,0.08574765,Ammonia,TON
+37121,0.7165071,PM10 Primary (Filt + Cond),TON
+37111,9.310918e-06,Benzo[b]Fluoranthene,LB
+37111,0.009304228,"2,2,4-Trimethylpentane",LB
+37111,0.009516376,Hexane,LB
+37017,0.314274,Acenaphthene,LB
+37017,0.6842192,Fluorene,LB
+37017,0.1010265,Organic Carbon portion of PM2.5-PRI,TON
+37017,0.005170432,Sulfur Dioxide,TON
+37019,0.0013149322,Arsenic,LB
+37019,0.002416339,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.14343716,Acrolein,LB
+37019,0.010319288,"Benzo[g,h,i,]Perylene",LB
+37019,2.336308,Formaldehyde,LB
+37017,0.1965302,Styrene,LB
+37017,0.01363682,Pyrene,LB
+37017,0.007128342,"Benzo[g,h,i,]Perylene",LB
+37017,2.612122,Formaldehyde,LB
+37017,0.002166166,Benz[a]Anthracene,LB
+37017,0.006445884,Methane,TON
+37017,0.00149829,Organic Carbon portion of PM2.5-PRI,TON
+37013,0.0109295,Organic Carbon portion of PM2.5-PRI,TON
+37013,1.3387338,Propionaldehyde,LB
+37013,1.7850176e-05,Chromium (VI),LB
+37013,0.016524806,Benzo[b]Fluoranthene,LB
+37013,0.016524806,Benzo[k]Fluoranthene,LB
+37013,3.505234,Naphthalene,LB
+37013,699.1585,Carbon Dioxide,TON
+37115,1.251587,Formaldehyde,LB
+37115,5.434638e-05,"Dibenzo[a,h]Anthracene",LB
+37115,0.00019281004,Nickel,LB
+37115,0.003797882,Acenaphthene,LB
+37115,1.483899,Carbon Monoxide,TON
+37115,0.002161005,Nitrous Oxide,TON
+37115,8.407653e-05,Sulfate Portion of PM2.5-PRI,TON
+37115,1.5424878e-06,Chromium (VI),LB
+37115,0.0003654722,Pyrene,LB
+37115,0.14567428,"2,2,4-Trimethylpentane",LB
+37115,2.443176e-05,Manganese,LB
+37115,0.003564571,Volatile Organic Compounds,TON
+37101,0.8557566,Carbon Monoxide,TON
+37101,0.006404512,PM2.5 Primary (Filt + Cond),TON
+37101,0.2443572,Acrolein,LB
+37101,4.517008e-08,Chromium (VI),LB
+37101,0.0003726792,Fluoranthene,LB
+37101,5.746604e-05,Benz[a]Anthracene,LB
+37101,0.0004947252,Arsenic,LB
+37101,345.4382,Acrolein,LB
+37101,0.08494362,"Benzo[g,h,i,]Perylene",LB
+37101,16.879434,Fluoranthene,LB
+37101,1.3406284,Manganese,LB
+37101,0.3396532,Arsenic,LB
+37101,4.16486,"2,2,4-Trimethylpentane",LB
+37101,0.2337212,Benz[a]Anthracene,LB
+37101,0.5267708,Acenaphthene,LB
+37101,0.0180605,Sulfate Portion of PM2.5-PRI,TON
+37101,0.9376237,Volatile Organic Compounds,TON
+37101,4.63442e-05,Chromium (VI),LB
+37087,1.365479,Chrysene,LB
+37087,0.6795368,Benzo[a]Pyrene,LB
+37087,2.372446,Benz[a]Anthracene,LB
+37087,5.289269,PM10-Primary from certain diesel engines,TON
+37087,0.015333426,Fluoranthene,LB
+37087,0.0012574774,Arsenic,LB
+37087,0.5939686,Nitrogen Oxides,TON
+37081,3.584292,Toluene,LB
+37081,0.07965764,Chrysene,LB
+37081,0.13697706,Benz[a]Anthracene,LB
+37081,0.4170216,Fluorene,LB
+37081,0.0009575819,Nitrous Oxide,TON
+37081,2.387151,Nitrogen Oxides,TON
+37081,0.1373523,PM2.5 Primary (Filt + Cond),TON
+37081,2212.368,Ethyl Benzene,LB
+37081,0.17703566,Arsenic,LB
+37081,14630.95,Carbon Dioxide,TON
+37077,1.041669,Nickel,LB
+37077,303.5048,Naphthalene,LB
+37077,10.65009,Ammonia,TON
+37077,4.27422,PM2.5 Primary (Filt + Cond),TON
+37077,1.181869,Remaining PMFINE portion of PM2.5-PRI,TON
+37077,0.1155563,Sulfate Portion of PM2.5-PRI,TON
+37077,112.84146,Propionaldehyde,LB
+37077,9.938828,"Benzo[g,h,i,]Perylene",LB
+37077,26.66604,Acenaphthylene,LB
+37065,0.8919076,Anthracene,LB
+37065,0.15837244,Benzo[a]Pyrene,LB
+37065,0.5430868,Benz[a]Anthracene,LB
+37065,0.002782548,Nitrate portion of PM2.5-PRI,TON
+37051,0.06003578,Ammonia,TON
+37051,22.82223,Nitrogen Oxides,TON
+37051,0.654484,PM2.5 Primary (Filt + Cond),TON
+37051,7.67715,Hexane,LB
+37051,0.00849057,"Benzo[g,h,i,]Perylene",LB
+37051,0.11619136,Benzo[a]Pyrene,LB
+37051,133.001,Acetaldehyde,LB
+37051,3.180248,Phenanthrene,LB
+37051,0.000556557,"Benzo[g,h,i,]Perylene",LB
+37051,0.00011320496,Manganese,LB
+37051,0.04475978,Naphthalene,LB
+37051,0.0003605587,Nitrous Oxide,TON
+37049,0.9255744,Xylenes (Mixed Isomers),LB
+37049,0.0792959,Acenaphthylene,LB
+37049,0.019236676,Chrysene,LB
+37049,0.0004019384,"Dibenzo[a,h]Anthracene",LB
+37049,0.3517034,"2,2,4-Trimethylpentane",LB
+37049,1.5613856,Naphthalene,LB
+37049,0.26477,Carbon Monoxide,TON
+37049,0.005827141,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.08278382,Volatile Organic Compounds,TON
+37045,0.2752565,PM10 Primary (Filt + Cond),TON
+37045,0.3705666,Volatile Organic Compounds,TON
+37045,5.066844,Toluene,LB
+37045,0.6855582,Pyrene,LB
+37045,0.17111612,Benz[a]Anthracene,LB
+37045,0.005073412,Arsenic,LB
+37047,47.90944,Toluene,LB
+37047,0.3062144,Propionaldehyde,LB
+37047,0.03179224,Pyrene,LB
+37047,0.001751985,Arsenic,LB
+37047,5.568414,Acetaldehyde,LB
+37047,0.018807402,Acenaphthene,LB
+37041,0.14250636,Ethyl Benzene,LB
+37041,0.003368384,Acrolein,LB
+37041,0.2136114,Hexane,LB
+37041,0.00018561086,Anthracene,LB
+37041,0.00011169792,Benzo[b]Fluoranthene,LB
+37041,0.1991544,"2,2,4-Trimethylpentane",LB
+37041,0.00010275612,Benz[a]Anthracene,LB
+37041,0.0002116188,Acenaphthene,LB
+37041,0.0003005187,Methane,TON
+37041,0.0001808473,PM2.5 Primary (Filt + Cond),TON
+37031,0.02845112,PM2.5 Primary (Filt + Cond),TON
+37031,1.7253642,Styrene,LB
+37031,73.8241,Hexane,LB
+37031,0.015174984,Benzo[b]Fluoranthene,LB
+37031,0.07443212,Acenaphthene,LB
+37029,1.3525508,Toluene,LB
+37029,0.5306034,Hexane,LB
+37029,0.16214248,Pyrene,LB
+37029,5.17937e-06,Chromium (VI),LB
+37029,0.1268354,Fluoranthene,LB
+37029,0.007897914,Benzo[a]Pyrene,LB
+37029,0.03149064,Benz[a]Anthracene,LB
+37029,0.0001443224,Nitrate portion of PM2.5-PRI,TON
+37029,0.1257199,Volatile Organic Compounds,TON
+37019,0.0005343156,Arsenic,LB
+37019,2.665377,Carbon Monoxide,TON
+37019,3.21361e-06,Nitrate portion of PM2.5-PRI,TON
+37007,1.5944148,Xylenes (Mixed Isomers),LB
+37007,0.000744846,Benzo[k]Fluoranthene,LB
+37007,21.76776,Formaldehyde,LB
+37007,0.1543175,Fluorene,LB
+37007,2.343412,Naphthalene,LB
+37007,0.007018581,Ammonia,TON
+37007,0.002011606,Sulfur Dioxide,TON
+37007,0.1216032,Volatile Organic Compounds,TON
+37003,398.1678,Hexane,LB
+37003,827.1344,Xylenes (Mixed Isomers),LB
+37003,0.04198968,Benzo[b]Fluoranthene,LB
+37003,0.1572037,Acenaphthene,LB
+37065,0.008741962,Acenaphthene,LB
+37065,0.01770722,Fluorene,LB
+37065,0.157102,Acrolein,LB
+37065,11.65784,Hexane,LB
+37065,0.012984838,Fluoranthene,LB
+37065,0.002908034,Chrysene,LB
+37061,9.227336,Ethyl Benzene,LB
+37061,0.02659092,Fluoranthene,LB
+37061,0.08191374,Acenaphthylene,LB
+37061,0.0003764286,Sulfate Portion of PM2.5-PRI,TON
+37057,0.005548802,Manganese,LB
+37057,4.672225e-05,Nitrate portion of PM2.5-PRI,TON
+37057,0.0004663421,Sulfate Portion of PM2.5-PRI,TON
+37057,0.015521986,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.009705724,Benzo[b]Fluoranthene,LB
+37057,0.10311418,Acenaphthylene,LB
+37055,0.9610402,PM10-Primary from certain diesel engines,TON
+37055,0.004955642,Nitrate portion of PM2.5-PRI,TON
+37055,0.9533258,PM2.5 Primary (Filt + Cond),TON
+37051,115.87282,Hexane,LB
+37051,2.153642,Propionaldehyde,LB
+37051,0.2185574,Fluoranthene,LB
+37051,0.0014269258,"Dibenzo[a,h]Anthracene",LB
+37051,0.0006613488,Mercury,LB
+37051,0.05355663,Nitrous Oxide,TON
+37047,452.1826,Carbon Dioxide,TON
+37047,0.009764519,Ammonia,TON
+37047,6.23792e-05,Nitrate portion of PM2.5-PRI,TON
+37047,2.277694,Propionaldehyde,LB
+37047,2.962034e-05,Chromium (VI),LB
+37047,0.0008177462,Benzo[b]Fluoranthene,LB
+37047,0.13674726,Acenaphthene,LB
+37047,0.2353602,Fluorene,LB
+37047,337.5422,Ethyl Benzene,LB
+37047,12.366274,"1,3-Butadiene",LB
+37047,568.6044,Hexane,LB
+37047,1.5672088,Acenaphthylene,LB
+37047,0.10103062,Chrysene,LB
+37047,0.14750384,Benzo[a]Pyrene,LB
+37047,4.617256,Nitrogen Oxides,TON
+37047,0.03670359,Remaining PMFINE portion of PM2.5-PRI,TON
+37047,10.3491,Volatile Organic Compounds,TON
+37033,0.0013347566,Anthracene,LB
+37033,0.0004830848,Chrysene,LB
+37033,7.872326e-07,Mercury,LB
+37033,0.5257452,Carbon Monoxide,TON
+37033,0.0004007403,Nitrous Oxide,TON
+37033,6.743199e-05,Sulfur Dioxide,TON
+37033,0.02968664,Volatile Organic Compounds,TON
+37031,4.549094,Acenaphthene,LB
+37031,110.4931,Nitrogen Oxides,TON
+37031,103.0708,Volatile Organic Compounds,TON
+37031,1.4897814,Benz[a]Anthracene,LB
+37069,2.579174,Toluene,LB
+37069,0.224154,Propionaldehyde,LB
+37069,0.0009712264,Benzo[b]Fluoranthene,LB
+37069,0.0007487536,Chrysene,LB
+37069,1.4223596,Formaldehyde,LB
+37069,0.0018087202,Benzo[a]Pyrene,LB
+37069,0.008329415,Ammonia,TON
+37069,0.07567701,Volatile Organic Compounds,TON
+37047,1.8283088,"2,2,4-Trimethylpentane",LB
+37047,292.0714,Carbon Dioxide,TON
+37047,1.320709e-05,Nitrate portion of PM2.5-PRI,TON
+37047,0.1635652,Nitrogen Oxides,TON
+37047,0.005466482,PM2.5 Primary (Filt + Cond),TON
+37047,0.0419872,Styrene,LB
+37047,3.905458,Toluene,LB
+37047,0.0013719302,Anthracene,LB
+37047,0.349899,Propionaldehyde,LB
+37047,0.002918056,Pyrene,LB
+37047,0.003604534,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,0.006736984,Acenaphthylene,LB
+37047,0.0014159844,Chrysene,LB
+37105,0.297355,Hexane,LB
+37105,0.0005766568,Pyrene,LB
+37105,0.0016174238,Phenanthrene,LB
+37105,0.11195736,"1,3-Butadiene",LB
+37105,0.186288,Propionaldehyde,LB
+37105,0.0015732196,Pyrene,LB
+37105,0.0010547864,Benzo[k]Fluoranthene,LB
+37105,2.551212,Benzene,LB
+37105,0.003621272,Manganese,LB
+37105,0.0015653884,Fluorene,LB
+37105,0.04036882,Naphthalene,LB
+37105,1.312428,Carbon Monoxide,TON
+37105,0.002137499,Nitrous Oxide,TON
+37105,0.063652,Volatile Organic Compounds,TON
+37197,0.05046624,Nickel,LB
+37197,0.2831964,Nitrous Oxide,TON
+37197,0.0006879684,Nitrate portion of PM2.5-PRI,TON
+37197,17.30506,Nitrogen Oxides,TON
+37197,0.06478476,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,13.835956,Styrene,LB
+37197,81.99706,"1,3-Butadiene",LB
+37197,0.6170192,"Benzo[g,h,i,]Perylene",LB
+37197,0.16987972,Benzo[k]Fluoranthene,LB
+37197,0.005322286,"Dibenzo[a,h]Anthracene",LB
+37191,0.02361258,Ethyl Benzene,LB
+37191,0.001048149,Styrene,LB
+37191,5.362974e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37191,1.2306048e-06,"Dibenzo[a,h]Anthracene",LB
+37191,5.037418e-05,Acenaphthene,LB
+37191,0.00010203424,Fluorene,LB
+37191,0.002620324,Naphthalene,LB
+37191,1.920434e-06,Sulfate Portion of PM2.5-PRI,TON
+37191,20108.78,Benzene,LB
+37191,11.7424,Methane,TON
+37191,10.78397,Nitrous Oxide,TON
+37191,0.02242894,Nitrate portion of PM2.5-PRI,TON
+37189,0.16079864,Benz[a]Anthracene,LB
+37189,1.8265528e-05,Mercury,LB
+37189,11.91602,Naphthalene,LB
+37189,1103.591,Carbon Dioxide,TON
+37189,0.2370344,Formaldehyde,LB
+37189,8.175424e-06,Nickel,LB
+37189,0.0001153745,Ammonia,TON
+37189,2.663066,Toluene,LB
+37189,0.5878338,Hexane,LB
+37181,12.220744,Toluene,LB
+37181,3.14415e-05,Chromium (VI),LB
+37181,0.00932261,Fluoranthene,LB
+37181,0.00976125,Benzo[a]Pyrene,LB
+37181,0.2908322,Naphthalene,LB
+37181,0.0177974,Sulfur Dioxide,TON
+37081,34.62968,Hexane,LB
+37081,0.0356817,Anthracene,LB
+37081,0.05064674,Benzo[b]Fluoranthene,LB
+37081,0.05064674,Benzo[k]Fluoranthene,LB
+37081,6294.014,Carbon Dioxide,TON
+37081,0.02306884,Elemental Carbon portion of PM2.5-PRI,TON
+37081,0.0003560176,Nitrate portion of PM2.5-PRI,TON
+37081,0.05599668,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,0.541126,Ethyl Benzene,LB
+37011,0.0413703,Volatile Organic Compounds,TON
+37009,0.5796794,Hexane,LB
+37009,0.04759247,Volatile Organic Compounds,TON
+37141,21.00454,Toluene,LB
+37141,8.244944,Hexane,LB
+37141,0.015694162,Fluoranthene,LB
+37141,0.019603864,Manganese,LB
+37141,0.009151394,Acenaphthene,LB
+37141,6.51599e-05,Nitrate portion of PM2.5-PRI,TON
+37141,0.6086383,Volatile Organic Compounds,TON
+37199,0.0530489,Styrene,LB
+37199,2.231524,Hexane,LB
+37199,0.00193846,Anthracene,LB
+37199,1.074394e-06,Chromium (VI),LB
+37199,0.0009341782,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.003315802,Fluoranthene,LB
+37197,4.371422,Hexane,LB
+37197,0.0243203,Nickel,LB
+37197,0.009718362,Sulfur Dioxide,TON
+37187,0.002353622,Styrene,LB
+37187,8.790108e-05,Anthracene,LB
+37187,0.00015283208,Fluoranthene,LB
+37187,4.533464e-05,Benzo[k]Fluoranthene,LB
+37187,0.03094576,Acetaldehyde,LB
+37187,6.944881e-05,Methane,TON
+37183,0.1202661,Ammonia,TON
+37183,0.02425652,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.4480166,"1,3-Butadiene",LB
+37181,0.07790862,Propionaldehyde,LB
+37181,0.006315058,Fluoranthene,LB
+37181,0.002138702,Benz[a]Anthracene,LB
+37181,0.00406569,Acenaphthene,LB
+37181,0.00823514,Fluorene,LB
+37181,0.002660142,Methane,TON
+37181,1.249033e-05,Nitrate portion of PM2.5-PRI,TON
+37179,1.880433e-05,Nitrate portion of PM2.5-PRI,TON
+37179,0.7032894,Nitrogen Oxides,TON
+37179,0.0002205992,Sulfate Portion of PM2.5-PRI,TON
+37179,0.00506519,Benzo[a]Pyrene,LB
+37179,0.005356026,Benz[a]Anthracene,LB
+37007,0.00593212,Acenaphthene,LB
+37007,0.012015946,Fluorene,LB
+37007,0.001834242,Ammonia,TON
+37007,0.002204257,PM2.5 Primary (Filt + Cond),TON
+37007,0.1547312,Volatile Organic Compounds,TON
+37007,4.74231,Ethyl Benzene,LB
+37007,0.009814492,Pyrene,LB
+37007,0.0270007,Acenaphthylene,LB
+37007,0.15467436,Styrene,LB
+37007,0.002056196,"Indeno[1,2,3-c,d]Pyrene",LB
+37007,0.001624195,Benzo[b]Fluoranthene,LB
+37007,0.001646261,Chrysene,LB
+37007,4.722828e-05,"Dibenzo[a,h]Anthracene",LB
+37007,0.006360582,Acenaphthene,LB
+37007,0.012883706,Fluorene,LB
+37007,0.007523488,Methane,TON
+37013,296.4512,Propionaldehyde,LB
+37013,3.207662,Benzo[b]Fluoranthene,LB
+37013,3.207662,Benzo[k]Fluoranthene,LB
+37013,65.58564,Acenaphthylene,LB
+37013,3.71824,Benzo[a]Pyrene,LB
+37013,1.1689182,Arsenic,LB
+37013,14.416928,Acenaphthene,LB
+37013,2809.28,Carbon Monoxide,TON
+37013,0.9481274,Elemental Carbon portion of PM2.5-PRI,TON
+37013,9.342602,Ammonia,TON
+37013,0.01133462,Nitrate portion of PM2.5-PRI,TON
+37013,10.6332,PM10 Primary (Filt + Cond),TON
+37013,4.342796,PM2.5 Primary (Filt + Cond),TON
+37013,244.7752,Volatile Organic Compounds,TON
+37003,2.489228,Styrene,LB
+37003,25.59994,Xylenes (Mixed Isomers),LB
+37003,0.00869137,"Benzo[g,h,i,]Perylene",LB
+37003,0.03598344,Nickel,LB
+37003,101.06396,Acetaldehyde,LB
+37003,0.2634823,Methane,TON
+37003,1.98291,PM10 Primary (Filt + Cond),TON
+37001,0.353817,Pyrene,LB
+37001,0.0010887066,Benzo[k]Fluoranthene,LB
+37001,0.05031686,Chrysene,LB
+37001,38.76778,Formaldehyde,LB
+37001,0.009787591,Sulfate Portion of PM2.5-PRI,TON
+37043,1.0898872,Xylenes (Mixed Isomers),LB
+37043,0.9625632,"2,2,4-Trimethylpentane",LB
+37037,1.6659296,Hexane,LB
+37037,1.4907942,Benzene,LB
+37037,0.1367722,Volatile Organic Compounds,TON
+37171,0.03332188,Styrene,LB
+37171,0.005351022,Acenaphthylene,LB
+37171,1.403538,"2,2,4-Trimethylpentane",LB
+37171,0.00394213,Manganese,LB
+37171,0.1109827,Nitrogen Oxides,TON
+37145,0.2134488,Hexane,LB
+37145,0.0010293572,"Benzo[g,h,i,]Perylene",LB
+37145,0.0007846774,Sulfur Dioxide,TON
+37141,0.0008071164,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.375095,"2,2,4-Trimethylpentane",LB
+37141,0.0004537632,Nickel,LB
+37141,0.5316311,Carbon Monoxide,TON
+37099,0.15035398,Styrene,LB
+37099,0.5236898,Acrolein,LB
+37099,4.282016,Hexane,LB
+37099,0.005038738,Benz[a]Anthracene,LB
+37099,0.0004702905,Sulfate Portion of PM2.5-PRI,TON
+37097,1.0850806,Naphthalene,LB
+37097,2.35539,"1,3-Butadiene",LB
+37097,0.05471258,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.0374145,Fluoranthene,LB
+37171,10.71096,Ethyl Benzene,LB
+37171,16.119354,Hexane,LB
+37171,7.950164e-06,Chromium (VI),LB
+37171,0.012921426,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,4.970382,Formaldehyde,LB
+37171,0.00723533,Benz[a]Anthracene,LB
+37169,5.011016,"1,3-Butadiene",LB
+37169,0.04432668,"Benzo[g,h,i,]Perylene",LB
+37169,0.011219302,Chrysene,LB
+37169,0.016658668,Benzo[a]Pyrene,LB
+37169,0.0003826574,"Dibenzo[a,h]Anthracene",LB
+37169,33.4518,"2,2,4-Trimethylpentane",LB
+37149,2.782324e-05,Chromium (VI),LB
+37149,0.06867752,Fluoranthene,LB
+37149,33.93394,"2,2,4-Trimethylpentane",LB
+37149,0.03154199,Methane,TON
+37141,0.5621622,Ethyl Benzene,LB
+37141,0.0005177584,Chrysene,LB
+37141,0.8628732,Benzene,LB
+37137,6.301108,Fluorene,LB
+37137,1.460007,Nitrous Oxide,TON
+37137,0.449942,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.6791078,Sulfur Dioxide,TON
+37137,0.02357288,Sulfate Portion of PM2.5-PRI,TON
+37137,2385.086,Hexane,LB
+37137,62.80308,Propionaldehyde,LB
+37137,0.001721822,Chromium (VI),LB
+37133,4.397702,Volatile Organic Compounds,TON
+37129,6400.118,Xylenes (Mixed Isomers),LB
+37129,0.002478508,Chromium (VI),LB
+37129,992.286,Acetaldehyde,LB
+37129,0.6507412,Remaining PMFINE portion of PM2.5-PRI,TON
+37121,0.019349934,Anthracene,LB
+37121,4.909742e-05,Mercury,LB
+37117,0.918396,Toluene,LB
+37117,2.201234e-05,Benzo[k]Fluoranthene,LB
+37117,0.002029932,Ammonia,TON
+37117,1.6197264,Ethyl Benzene,LB
+37117,2.40974,Hexane,LB
+37117,0.002752842,Anthracene,LB
+37117,0.00418756,Chromium (VI),LB
+37117,1.8360472,Benzo[k]Fluoranthene,LB
+37117,1.9047076,Benz[a]Anthracene,LB
+37117,6.423461,Ammonia,TON
+37117,2.574291,PM2.5 Primary (Filt + Cond),TON
+37117,1.67226,Sulfur Dioxide,TON
+37101,307.615,Acrolein,LB
+37101,96.37738,Hexane,LB
+37101,0.0010274736,Chromium (VI),LB
+37101,366.1474,Benzene,LB
+37101,13.039884,Acenaphthene,LB
+37101,3.318037,PM25-Primary from certain diesel engines,TON
+37091,0.030357,Nickel,LB
+37091,0.9996852,Fluorene,LB
+37091,0.04507509,Sulfur Dioxide,TON
+37091,5.333962,Ethyl Benzene,LB
+37091,4.697118,"1,3-Butadiene",LB
+37091,1.0202012,Fluoranthene,LB
+37091,0.08873664,Benzo[a]Pyrene,LB
+37103,0.0006368204,Manganese,LB
+37103,0.4626366,Acetaldehyde,LB
+37103,0.008189518,Phenanthrene,LB
+37103,0.07751996,Naphthalene,LB
+37103,4.136517e-05,Sulfate Portion of PM2.5-PRI,TON
+37095,0.003718198,Elemental Carbon portion of PM2.5-PRI,TON
+37095,0.295067,Acrolein,LB
+37095,0.278859,Toluene,LB
+37095,0.3530698,Benzene,LB
+37095,0.0010908898,Manganese,LB
+37095,1.1929784e-06,Mercury,LB
+37095,0.1009499,Carbon Monoxide,TON
+37093,44.97476,Xylenes (Mixed Isomers),LB
+37093,0.018800548,Benzo[b]Fluoranthene,LB
+37093,68.26496,Benzene,LB
+37093,0.00013036434,Mercury,LB
+37093,0.0891812,Nickel,LB
+37093,0.02725712,Arsenic,LB
+37089,9.535786,Hexane,LB
+37089,3.309254,Phenanthrene,LB
+37089,0.5651179,PM10 Primary (Filt + Cond),TON
+37083,0.1459425,Volatile Organic Compounds,TON
+37083,1.3323134,Propionaldehyde,LB
+37083,0.004745036,Benzo[b]Fluoranthene,LB
+37083,0.03130084,Chrysene,LB
+37083,0.010224012,Manganese,LB
+37083,778.8928,Carbon Dioxide,TON
+37083,0.1316101,PM2.5 Primary (Filt + Cond),TON
+37083,2.930514,Xylenes (Mixed Isomers),LB
+37083,3.136682,Benzene,LB
+37083,0.006580216,Ammonia,TON
+37077,0.02924054,Pyrene,LB
+37077,8.69258,"2,2,4-Trimethylpentane",LB
+37077,0.00815589,Manganese,LB
+37053,0.3309776,Ethyl Benzene,LB
+37053,0.7513354,Toluene,LB
+37053,0.09474146,Pyrene,LB
+37053,0.0002871708,"Dibenzo[a,h]Anthracene",LB
+37053,0.9158056,Benzene,LB
+37053,0.005310238,Manganese,LB
+37053,0.04326224,PM25-Primary from certain diesel engines,TON
+37197,0.0003597016,Arsenic,LB
+37197,0.0004092396,Fluorene,LB
+37197,0.010547652,Naphthalene,LB
+37197,31.39543,Carbon Dioxide,TON
+37197,0.001636187,Ammonia,TON
+37197,0.02583457,Nitrogen Oxides,TON
+37197,0.11581162,Ethyl Benzene,LB
+37197,0.005843892,Styrene,LB
+37197,0.4575684,Toluene,LB
+37197,0.4117724,Xylenes (Mixed Isomers),LB
+37193,1.5758772,Pyrene,LB
+37193,2085.244,Xylenes (Mixed Isomers),LB
+37193,185.507,Carbon Monoxide,TON
+37193,0.08554158,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.5381227,Nitrous Oxide,TON
+37193,0.0009768473,Nitrate portion of PM2.5-PRI,TON
+37193,0.1742329,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.02061894,Styrene,LB
+37191,2.0572,Benzene,LB
+37191,0.9049186,Carbon Monoxide,TON
+37191,0.0004388414,Elemental Carbon portion of PM2.5-PRI,TON
+37191,0.002537064,PM2.5 Primary (Filt + Cond),TON
+37187,3293.176,Xylenes (Mixed Isomers),LB
+37187,0.00155516,Chromium (VI),LB
+37187,0.5481907,Nitrous Oxide,TON
+37179,18.521964,Xylenes (Mixed Isomers),LB
+37179,0.10167716,Benzo[a]Pyrene,LB
+37179,0.004172586,"Dibenzo[a,h]Anthracene",LB
+37179,2.68028,Phenanthrene,LB
+37179,0.04467098,Ammonia,TON
+37179,1.090162,PM10 Primary (Filt + Cond),TON
+37171,338.3356,Xylenes (Mixed Isomers),LB
+37171,0.15360498,Arsenic,LB
+37171,0.05424778,Nitrous Oxide,TON
+37171,0.9024379,Ammonia,TON
+37171,0.957145,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.4888351,Sulfate Portion of PM2.5-PRI,TON
+37171,0.05121706,Benzo[a]Pyrene,LB
+37171,0.2138748,Benz[a]Anthracene,LB
+37171,0.3444518,PM10-Primary from certain diesel engines,TON
+37171,0.07683096,Organic Carbon portion of PM2.5-PRI,TON
+37171,0.01177333,Sulfate Portion of PM2.5-PRI,TON
+37171,0.9058644,Acenaphthylene,LB
+37149,895.99,Toluene,LB
+37149,0.1305352,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.08698412,Chrysene,LB
+37149,0.5836802,Fluorene,LB
+37149,0.1314611,Nitrous Oxide,TON
+37149,0.2662942,PM10 Primary (Filt + Cond),TON
+37149,7589.022,Toluene,LB
+37149,1775.5146,"2,2,4-Trimethylpentane",LB
+37149,26.46875,Volatile Organic Compounds,TON
+37137,104.76632,"2,2,4-Trimethylpentane",LB
+37137,0.8003378,Phenanthrene,LB
+37137,0.09585087,Methane,TON
+37137,0.05065507,PM2.5 Primary (Filt + Cond),TON
+37137,3.4742,Styrene,LB
+37137,2.936568,Acrolein,LB
+37137,117.58864,Hexane,LB
+37135,36.1587,Toluene,LB
+37135,5.377934,Formaldehyde,LB
+37135,0.008964364,Benzo[a]Pyrene,LB
+37135,0.010194774,Manganese,LB
+37135,0.03075544,Fluorene,LB
+37135,5900.078,"2,2,4-Trimethylpentane",LB
+37133,0.10474674,Nickel,LB
+37133,2.273576,Acenaphthene,LB
+37133,88.338,Naphthalene,LB
+37133,4.356,Volatile Organic Compounds,TON
+37133,0.0002502272,Chromium (VI),LB
+37133,0.0224942,"Dibenzo[a,h]Anthracene",LB
+37133,23.59238,"2,2,4-Trimethylpentane",LB
+37129,0.00238209,Benzo[b]Fluoranthene,LB
+37129,1.2007132,Acenaphthylene,LB
+37129,304.1272,Formaldehyde,LB
+37129,7.167964,"1,3-Butadiene",LB
+37129,0.00014315428,Mercury,LB
+37129,7.61628,Hexane,LB
+37129,2.166262,Phenanthrene,LB
+37129,1.2467088,Fluorene,LB
+37129,2593.283,Carbon Dioxide,TON
+37129,0.03951354,PM25-Primary from certain diesel engines,TON
+37125,0.02691667,Organic Carbon portion of PM2.5-PRI,TON
+37125,2.44565,Benzene,LB
+37125,1.105573,Carbon Monoxide,TON
+37123,4.299468e-06,Chromium (VI),LB
+37123,0.00700471,Benzo[a]Pyrene,LB
+37123,0.2843468,"2,2,4-Trimethylpentane",LB
+37123,0.02365052,Benz[a]Anthracene,LB
+37123,0.002234156,Nickel,LB
+37123,0.05702354,PM10-Primary from certain diesel engines,TON
+37123,0.05246256,PM25-Primary from certain diesel engines,TON
+37123,0.004554516,Ammonia,TON
+37123,1.317506,Nitrogen Oxides,TON
+37123,0.06279949,Volatile Organic Compounds,TON
+37121,1.3751856,Phenanthrene,LB
+37121,13.057528,Naphthalene,LB
+37121,0.07563569,Methane,TON
+37121,0.1090852,Organic Carbon portion of PM2.5-PRI,TON
+37121,0.3770173,PM10 Primary (Filt + Cond),TON
+37121,0.2696403,PM2.5 Primary (Filt + Cond),TON
+37111,15.973794,Ethyl Benzene,LB
+37111,48.01992,"2,2,4-Trimethylpentane",LB
+37111,2.465095,Volatile Organic Compounds,TON
+37123,0.0015287474,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,0.372258,Fluorene,LB
+37123,2.265645,Carbon Monoxide,TON
+37123,0.001011826,Nitrous Oxide,TON
+37123,0.00476373,Sulfur Dioxide,TON
+37123,0.8746902,Styrene,LB
+37123,3.159834,Propionaldehyde,LB
+37119,0.15303344,Pyrene,LB
+37119,0.14357624,"Benzo[g,h,i,]Perylene",LB
+37119,78.01968,"2,2,4-Trimethylpentane",LB
+37119,0.03335594,Benz[a]Anthracene,LB
+37119,0.005487456,Arsenic,LB
+37119,361.547,Toluene,LB
+37119,0.0777357,Anthracene,LB
+37117,2991.312,Xylenes (Mixed Isomers),LB
+37113,1.062849,PM2.5 Primary (Filt + Cond),TON
+37113,3.794198,Anthracene,LB
+37113,74.20822,Propionaldehyde,LB
+37113,0.00029333,Chromium (VI),LB
+37113,0.018404136,"Benzo[g,h,i,]Perylene",LB
+37113,0.008547994,"Indeno[1,2,3-c,d]Pyrene",LB
+37113,0.03356338,Benzo[b]Fluoranthene,LB
+37113,0.11252116,Benzo[a]Pyrene,LB
+37113,0.15032056,Manganese,LB
+37105,0.3908878,Styrene,LB
+37105,0.0009353356,Benzo[k]Fluoranthene,LB
+37105,2.895244,Benzene,LB
+37105,13.606764,Acetaldehyde,LB
+37105,0.09101608,Acenaphthene,LB
+37105,508.4227,Carbon Dioxide,TON
+37105,0.1707073,Volatile Organic Compounds,TON
+37091,0.07253306,Benz[a]Anthracene,LB
+37091,0.00141307,Arsenic,LB
+37091,5.284398,Naphthalene,LB
+37091,3.867393,Nitrogen Oxides,TON
+37091,0.1071123,PM2.5 Primary (Filt + Cond),TON
+37093,203.6512,Styrene,LB
+37093,1234.9442,"1,3-Butadiene",LB
+37093,2960.106,Acetaldehyde,LB
+37093,46.45782,Phenanthrene,LB
+37093,17.388238,Fluorene,LB
+37093,85399.64,Carbon Dioxide,TON
+37093,5.842182,Ammonia,TON
+37093,0.006778184,Nitrate portion of PM2.5-PRI,TON
+37093,201.9242,Nitrogen Oxides,TON
+37093,146.4274,Volatile Organic Compounds,TON
+37079,2.473148,Pyrene,LB
+37079,27.46942,Xylenes (Mixed Isomers),LB
+37079,2.026728,Fluoranthene,LB
+37079,0.03211908,Benzo[a]Pyrene,LB
+37079,43.45794,Benzene,LB
+37079,0.05383016,Manganese,LB
+37079,0.07244788,Nickel,LB
+37079,0.02093008,Arsenic,LB
+37079,0.3936522,PM25-Primary from certain diesel engines,TON
+37079,0.006861541,Nitrous Oxide,TON
+37079,9.797442,Nitrogen Oxides,TON
+37079,0.02321471,Remaining PMFINE portion of PM2.5-PRI,TON
+37073,7.521374e-06,"Benzo[g,h,i,]Perylene",LB
+37073,6.303132e-06,Mercury,LB
+37073,32.61227,Carbon Dioxide,TON
+37073,0.004399571,PM10 Primary (Filt + Cond),TON
+37073,0.02082703,Volatile Organic Compounds,TON
+37073,0.07996516,Toluene,LB
+37073,0.0002289462,Pyrene,LB
+37073,0.017422464,Mercury,LB
+37073,1.944068,Methane,TON
+37073,0.5564896,Organic Carbon portion of PM2.5-PRI,TON
+37079,140.65242,Benzene,LB
+37067,0.003000446,"Indeno[1,2,3-c,d]Pyrene",LB
+37067,1.2888864,"2,2,4-Trimethylpentane",LB
+37067,4.309158,Acrolein,LB
+37067,374.2002,Carbon Dioxide,TON
+37067,1.0460338,Naphthalene,LB
+37067,0.01297271,Nitrous Oxide,TON
+37067,0.01254472,Organic Carbon portion of PM2.5-PRI,TON
+37067,0.02573938,PM2.5 Primary (Filt + Cond),TON
+37067,0.0007836073,Sulfate Portion of PM2.5-PRI,TON
+37067,0.3666754,Propionaldehyde,LB
+37067,0.03578686,Pyrene,LB
+37065,0.8666106,Acenaphthene,LB
+37065,0.7854946,Elemental Carbon portion of PM2.5-PRI,TON
+37065,2.155872,Fluoranthene,LB
+37059,21735.24,Toluene,LB
+37059,7.681564,Fluoranthene,LB
+37059,1523.5838,Formaldehyde,LB
+37059,0.06200854,"Dibenzo[a,h]Anthracene",LB
+37059,1250.782,Carbon Monoxide,TON
+37043,0.009188926,Fluorene,LB
+37043,0.1444085,Naphthalene,LB
+37043,0.003141335,PM2.5 Primary (Filt + Cond),TON
+37043,0.0005422127,Remaining PMFINE portion of PM2.5-PRI,TON
+37043,0.03350304,"2,2,4-Trimethylpentane",LB
+37043,6.76489,Acrolein,LB
+37043,4.4067,Propionaldehyde,LB
+37043,0.4483706,Acenaphthylene,LB
+37043,2.331956e-05,Mercury,LB
+37037,19.986042,Ethyl Benzene,LB
+37037,15.40462,Hexane,LB
+37037,0.0002250008,Mercury,LB
+37037,0.08998926,Nickel,LB
+37037,64.03896,Naphthalene,LB
+37037,1.404103,PM25-Primary from certain diesel engines,TON
+37037,1.489418,PM2.5 Primary (Filt + Cond),TON
+37035,93.65576,Acrolein,LB
+37035,4.500668,Anthracene,LB
+37035,10.013556,Fluoranthene,LB
+37035,0.04684514,Arsenic,LB
+37035,0.01782592,Nitrate portion of PM2.5-PRI,TON
+37035,0.5454782,Manganese,LB
+37027,0.2620238,PM10-Primary from certain diesel engines,TON
+37027,0.1377621,Elemental Carbon portion of PM2.5-PRI,TON
+37027,8.438395,Nitrogen Oxides,TON
+37027,4.004516,Ethyl Benzene,LB
+37027,29.14662,Propionaldehyde,LB
+37027,42.916,Acrolein,LB
+37027,3.045722,Acenaphthylene,LB
+37027,0.493828,Benzo[a]Pyrene,LB
+37027,9.493678e-05,Mercury,LB
+37027,235.1186,Acetaldehyde,LB
+37027,0.6985554,Organic Carbon portion of PM2.5-PRI,TON
+37027,3.545364,PM10 Primary (Filt + Cond),TON
+37023,1.8353834,Acenaphthene,LB
+37023,0.1616257,Methane,TON
+37023,0.018905938,"Dibenzo[a,h]Anthracene",LB
+37023,0.01265566,Nitrous Oxide,TON
+37023,0.1250418,Ammonia,TON
+37023,13.579194,Hexane,LB
+37159,0.002775262,Nitrous Oxide,TON
+37159,23.82324,Acrolein,LB
+37159,1.4979298,Pyrene,LB
+37159,1.617137,Acenaphthylene,LB
+37149,5.900818,Toluene,LB
+37149,0.4525286,Pyrene,LB
+37149,5.882856,Xylenes (Mixed Isomers),LB
+37149,0.3703114,Fluoranthene,LB
+37149,2.172748,"2,2,4-Trimethylpentane",LB
+37149,8.128182,Benzene,LB
+37149,0.1037823,PM10-Primary from certain diesel engines,TON
+37149,2.02958,Nitrogen Oxides,TON
+37153,15.070128,Styrene,LB
+37153,12.017368,Acrolein,LB
+37153,487.9236,Hexane,LB
+37153,0.16128672,Benzo[b]Fluoranthene,LB
+37153,0.0793815,Arsenic,LB
+37153,3.45037,Phenanthrene,LB
+37153,1.2888394,Fluorene,LB
+37153,7784.6,Carbon Dioxide,TON
+37153,17.33342,Nitrogen Oxides,TON
+37147,23.75815,Carbon Monoxide,TON
+37147,5.118794,PM10 Primary (Filt + Cond),TON
+37147,0.396083,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,9.270532,Styrene,LB
+37147,21.61306,"1,3-Butadiene",LB
+37147,0.880513,Chrysene,LB
+37147,71.4006,Benzene,LB
+37147,0.619732,"1,3-Butadiene",LB
+37147,1.2400848,Xylenes (Mixed Isomers),LB
+37147,0.10576756,Acenaphthylene,LB
+37147,0.470228,"2,2,4-Trimethylpentane",LB
+37147,0.04472908,Benz[a]Anthracene,LB
+37147,0.229845,Phenanthrene,LB
+37147,0.003115674,Ammonia,TON
+37147,0.001276626,Sulfur Dioxide,TON
+37135,157.51578,Toluene,LB
+37135,135.64654,Xylenes (Mixed Isomers),LB
+37015,1.901556e-07,Nitrate portion of PM2.5-PRI,TON
+37015,6.848176e-05,PM2.5 Primary (Filt + Cond),TON
+37015,0.07062298,Ethyl Benzene,LB
+37015,0.013480474,"1,3-Butadiene",LB
+37015,0.2607526,Xylenes (Mixed Isomers),LB
+37015,0.0001220437,Acenaphthene,LB
+37015,5.88214e-05,Ammonia,TON
+37199,0.4016744,"1,3-Butadiene",LB
+37199,0.668752,Propionaldehyde,LB
+37199,0.019274182,Chrysene,LB
+37191,0.14317544,Nickel,LB
+37191,312.149,Carbon Monoxide,TON
+37191,1.310137,Ammonia,TON
+37191,0.618017,PM2.5 Primary (Filt + Cond),TON
+37191,23.62308,Volatile Organic Compounds,TON
+37191,32.06874,Styrene,LB
+37191,198.48602,"1,3-Butadiene",LB
+37187,0.2531348,Ethyl Benzene,LB
+37187,0.012201134,Styrene,LB
+37187,0.0008259702,Benzo[a]Pyrene,LB
+37187,0.003691757,Methane,TON
+37187,0.03918497,Nitrogen Oxides,TON
+37187,0.0005414355,Organic Carbon portion of PM2.5-PRI,TON
+37187,1.293468,Phenanthrene,LB
+37187,0.6917654,PM10 Primary (Filt + Cond),TON
+37187,3.925756,Ethyl Benzene,LB
+37187,0.1267952,Chrysene,LB
+37187,119.98298,Formaldehyde,LB
+37187,0.219735,Benz[a]Anthracene,LB
+37195,0.0005711008,Chromium (VI),LB
+37195,0.5243438,Benzo[a]Pyrene,LB
+37195,3.725824,Anthracene,LB
+37195,0.5838538,Manganese,LB
+37195,0.15770322,Arsenic,LB
+37195,60130.13,Carbon Dioxide,TON
+37187,7.431306e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,1.2596248e-08,Mercury,LB
+37187,5.085116e-06,Benzo[k]Fluoranthene,LB
+37183,0.5442148,Benz[a]Anthracene,LB
+37183,0.010185106,"Benzo[g,h,i,]Perylene",LB
+37183,0.00014685246,Mercury,LB
+37183,0.03070578,Arsenic,LB
+37183,0.3212917,Methane,TON
+37183,12.55123,Nitrogen Oxides,TON
+37183,1.229867,PM10 Primary (Filt + Cond),TON
+37183,0.05647374,Sulfate Portion of PM2.5-PRI,TON
+37181,0.0005235874,Benzo[k]Fluoranthene,LB
+37181,0.326472,Anthracene,LB
+37181,8.28573,Xylenes (Mixed Isomers),LB
+37181,13.24391,Naphthalene,LB
+37181,775.0047,Carbon Dioxide,TON
+37181,0.1270215,PM10-Primary from certain diesel engines,TON
+37181,0.009387441,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.0024199,Fluorene,LB
+37179,0.002286329,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.0011271598,Anthracene,LB
+37179,0.2879654,Propionaldehyde,LB
+37179,0.007771814,"Benzo[g,h,i,]Perylene",LB
+37179,0.002880918,Benzo[a]Pyrene,LB
+37179,1.4247882,"2,2,4-Trimethylpentane",LB
+37181,2.84272,Acenaphthylene,LB
+37181,0.0038679,Mercury,LB
+37181,0.07394912,Arsenic,LB
+37181,7158.674,Carbon Dioxide,TON
+37181,0.07257,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,0.1501622,Sulfur Dioxide,TON
+37179,2.168772,"Benzo[g,h,i,]Perylene",LB
+37179,3.419012,Fluoranthene,LB
+37179,54.92776,Styrene,LB
+37179,0.6381394,Benz[a]Anthracene,LB
+37179,2393.736,Benzene,LB
+37179,0.02269984,Mercury,LB
+37179,0.4340294,Arsenic,LB
+37179,0.2284574,Elemental Carbon portion of PM2.5-PRI,TON
+37179,40.74045,Volatile Organic Compounds,TON
+37177,0.04073696,PM10-Primary from certain diesel engines,TON
+37177,0.0001902734,Nitrate portion of PM2.5-PRI,TON
+37177,0.0007353517,Sulfate Portion of PM2.5-PRI,TON
+37177,0.7757726,Propionaldehyde,LB
+37043,0.01034056,Nickel,LB
+37043,0.8076512,Phenanthrene,LB
+37043,0.2900182,PM25-Primary from certain diesel engines,TON
+37043,12.7664,Toluene,LB
+37043,2.805122,Hexane,LB
+37043,0.00580921,Pyrene,LB
+37043,0.0009735766,Benz[a]Anthracene,LB
+37043,0.0001358352,Manganese,LB
+37043,1.158488,Carbon Monoxide,TON
+37043,6.048757,Carbon Dioxide,TON
+37043,3.509961e-06,Nitrate portion of PM2.5-PRI,TON
+37043,0.06652038,Nitrogen Oxides,TON
+37043,0.001890461,PM10 Primary (Filt + Cond),TON
+37037,0.02884808,Acenaphthene,LB
+37037,1.304684,Nitrogen Oxides,TON
+37037,2565.936,Toluene,LB
+37037,0.5362944,Pyrene,LB
+37037,16.617904,Naphthalene,LB
+37037,0.2965294,Ammonia,TON
+37037,0.0004041803,Nitrate portion of PM2.5-PRI,TON
+37037,0.03539526,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,35.16786,Acrolein,LB
+37029,1.9365114,Fluoranthene,LB
+37029,0.0013159776,"Dibenzo[a,h]Anthracene",LB
+37029,0.02063756,Arsenic,LB
+37029,0.2966844,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.05137977,Organic Carbon portion of PM2.5-PRI,TON
+37025,120.28212,Benzene,LB
+37025,0.562192,Manganese,LB
+37025,3.102178,PM10-Primary from certain diesel engines,TON
+37025,0.1586097,Sulfur Dioxide,TON
+37025,36.87822,"1,3-Butadiene",LB
+37069,0.05883559,Sulfur Dioxide,TON
+37069,75.6773,Propionaldehyde,LB
+37069,7.96138,Acenaphthylene,LB
+37067,67.773,Ethyl Benzene,LB
+37067,193.68452,Xylenes (Mixed Isomers),LB
+37067,3.403822,Benz[a]Anthracene,LB
+37067,0.3903076,Nickel,LB
+37059,0.7332608,Naphthalene,LB
+37059,0.1381941,Carbon Monoxide,TON
+37059,0.0001382392,Nitrous Oxide,TON
+37059,0.5275652,Acrolein,LB
+37059,0.00017824374,Benzo[k]Fluoranthene,LB
+37059,6.698348,Formaldehyde,LB
+37065,23207.72,Toluene,LB
+37065,97.5619,Propionaldehyde,LB
+37065,8.543636,Pyrene,LB
+37065,1.9686032,Benzo[b]Fluoranthene,LB
+37065,1.8793898,Benz[a]Anthracene,LB
+37065,1298.47,Carbon Monoxide,TON
+37065,2.503455,Nitrous Oxide,TON
+37065,4.035223,PM2.5 Primary (Filt + Cond),TON
+37065,2.314465,Sulfur Dioxide,TON
+37049,22.66398,Benzene,LB
+37049,2.76391,Volatile Organic Compounds,TON
+37049,0.0013355502,Fluoranthene,LB
+37049,0.0002565544,Chrysene,LB
+37049,8.095723e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37049,9.036117e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.01969842,Propionaldehyde,LB
+37045,10.973912,Ethyl Benzene,LB
+37045,2.008036,"1,3-Butadiene",LB
+37045,0.03626922,Pyrene,LB
+37045,0.0009498954,Nickel,LB
+37045,0.0014564844,Arsenic,LB
+37041,5.001004,Acrolein,LB
+37041,1.1343458,Acenaphthylene,LB
+37041,0.001705155,"Dibenzo[a,h]Anthracene",LB
+37041,0.03307808,Manganese,LB
+37041,0.017902256,Nickel,LB
+37041,0.5048808,Fluorene,LB
+37041,0.02020529,Elemental Carbon portion of PM2.5-PRI,TON
+37041,0.0002218978,Nitrate portion of PM2.5-PRI,TON
+37041,0.02133678,Remaining PMFINE portion of PM2.5-PRI,TON
+37029,597.7776,Ethyl Benzene,LB
+37029,20.41896,Styrene,LB
+37029,322.9362,Acetaldehyde,LB
+37023,4.157415,PM25-Primary from certain diesel engines,TON
+37023,0.380188,Sulfur Dioxide,TON
+37023,4.133866,Fluorene,LB
+37023,16.235896,Hexane,LB
+37023,31.16896,Propionaldehyde,LB
+37023,0.02634398,"Benzo[g,h,i,]Perylene",LB
+37023,0.128891,Benzo[b]Fluoranthene,LB
+37133,255.3806,Benzene,LB
+37133,0.4301216,Manganese,LB
+37133,0.0007452172,Mercury,LB
+37133,2.564946,PM10-Primary from certain diesel engines,TON
+37133,2.359697,PM25-Primary from certain diesel engines,TON
+37131,0.006016814,"Dibenzo[a,h]Anthracene",LB
+37131,24.4368,Benzene,LB
+37131,2.931472,Phenanthrene,LB
+37131,0.06366548,Sulfate Portion of PM2.5-PRI,TON
+37129,551.155,Acrolein,LB
+37129,46.90358,Pyrene,LB
+37129,7.146276,Benzo[k]Fluoranthene,LB
+37129,28586.18,Benzene,LB
+37127,0.0007616344,"Benzo[g,h,i,]Perylene",LB
+37127,0.005847958,Methane,TON
+37127,0.05271062,PM10 Primary (Filt + Cond),TON
+37127,0.007050887,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.0706101,Acrolein,LB
+37113,0.0011180514,Benzo[k]Fluoranthene,LB
+37113,3.633208e-05,"Dibenzo[a,h]Anthracene",LB
+37113,1.879046e-05,Mercury,LB
+37113,0.0003592702,Arsenic,LB
+37113,0.002066527,PM2.5 Primary (Filt + Cond),TON
+37113,0.001325309,Sulfur Dioxide,TON
+37113,5.39183e-05,Sulfate Portion of PM2.5-PRI,TON
+37107,4.411774,Anthracene,LB
+37107,1.8404182,Benzo[b]Fluoranthene,LB
+37107,5864.85,Hexane,LB
+37107,2.56335,Manganese,LB
+37107,10.365806,Fluorene,LB
+37107,2.569581,Methane,TON
+37107,0.1038956,Sulfate Portion of PM2.5-PRI,TON
+37107,114.6215,Volatile Organic Compounds,TON
+37091,709.1048,Carbon Dioxide,TON
+37091,3.725414,"1,3-Butadiene",LB
+37091,0.03096476,Benzo[k]Fluoranthene,LB
+37091,0.0009910936,"Dibenzo[a,h]Anthracene",LB
+37091,0.03080008,Benz[a]Anthracene,LB
+37071,40.31393,Ammonia,TON
+37071,1184.743,Nitrogen Oxides,TON
+37071,6.423953,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.3547808,"Dibenzo[a,h]Anthracene",LB
+37071,31001.2,"2,2,4-Trimethylpentane",LB
+37071,14298.738,Acetaldehyde,LB
+37071,6064.544,"1,3-Butadiene",LB
+37071,11.696754,Benzo[k]Fluoranthene,LB
+37069,6.603642,Ethyl Benzene,LB
+37069,13.877046,Toluene,LB
+37069,1.0826846,Pyrene,LB
+37069,13.983888,Xylenes (Mixed Isomers),LB
+37069,0.006963606,Benzo[b]Fluoranthene,LB
+37069,0.02691268,Manganese,LB
+37069,4.438598e-05,Mercury,LB
+37069,1.7595968,Phenanthrene,LB
+37069,0.2086668,PM10-Primary from certain diesel engines,TON
+37069,1.135523,Volatile Organic Compounds,TON
+37069,0.7405602,Nickel,LB
+37069,1949.7548,Acetaldehyde,LB
+37069,5.313868,Acenaphthene,LB
+37069,0.6637594,Elemental Carbon portion of PM2.5-PRI,TON
+37069,1.008776,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.0821097,Sulfate Portion of PM2.5-PRI,TON
+37055,0.002057824,"Dibenzo[a,h]Anthracene",LB
+37055,323.6752,Benzene,LB
+37055,0.2447068,Acenaphthene,LB
+37055,1.3286596,Phenanthrene,LB
+37055,9.227878e-05,Chromium (VI),LB
+37055,0.06756076,Benzo[k]Fluoranthene,LB
+37047,0.04220925,Sulfate Portion of PM2.5-PRI,TON
+37047,7.013524,Styrene,LB
+37047,25.56076,Propionaldehyde,LB
+37047,3.484154,Fluorene,LB
+37047,13.26446,Carbon Monoxide,TON
+37047,1.465225,Elemental Carbon portion of PM2.5-PRI,TON
+37047,0.008819722,Nitrous Oxide,TON
+37047,2.882649,PM10 Primary (Filt + Cond),TON
+37045,0.567875,"1,3-Butadiene",LB
+37045,3.707942e-06,Chromium (VI),LB
+37045,0.02450656,Chrysene,LB
+37045,0.005472418,Methane,TON
+37045,0.002662036,"Indeno[1,2,3-c,d]Pyrene",LB
+37045,0.11389568,Chrysene,LB
+37045,33.44692,Naphthalene,LB
+37045,0.3180303,PM25-Primary from certain diesel engines,TON
+37045,1.746453,Volatile Organic Compounds,TON
+37045,0.04320224,Manganese,LB
+37045,8.060532e-05,Mercury,LB
+37045,0.016853912,Arsenic,LB
+37045,132.77544,Acetaldehyde,LB
+37041,0.03491778,Toluene,LB
+37041,0.02221216,Xylenes (Mixed Isomers),LB
+37041,1.6819066e-07,Arsenic,LB
+37041,9.167857e-07,Elemental Carbon portion of PM2.5-PRI,TON
+37041,6.909103e-06,PM10 Primary (Filt + Cond),TON
+37041,0.8321642,"Indeno[1,2,3-c,d]Pyrene",LB
+37041,2098.948,"2,2,4-Trimethylpentane",LB
+37041,58.17048,Acrolein,LB
+37041,2270.058,Hexane,LB
+37041,60.65574,Propionaldehyde,LB
+37041,2992.938,Benzene,LB
+37041,0.3243774,Manganese,LB
+37037,5.983744,"2,2,4-Trimethylpentane",LB
+37037,1.9407834,Phenanthrene,LB
+37037,0.03269956,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.01021765,Sulfate Portion of PM2.5-PRI,TON
+37037,1.266662,Volatile Organic Compounds,TON
+37171,6.678352,Xylenes (Mixed Isomers),LB
+37171,0.003470862,"Benzo[g,h,i,]Perylene",LB
+37171,0.004355092,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.002344022,"Dibenzo[a,h]Anthracene",LB
+37171,8.715452,Naphthalene,LB
+37171,0.05320979,Methane,TON
+37171,0.02867449,Ammonia,TON
+37171,0.009619144,Sulfate Portion of PM2.5-PRI,TON
+37171,0.442586,Volatile Organic Compounds,TON
+37161,1.3905272,Acrolein,LB
+37161,0.9037986,Propionaldehyde,LB
+37161,6.282754e-06,Chromium (VI),LB
+37161,0.4805644,"2,2,4-Trimethylpentane",LB
+37161,0.010231744,Manganese,LB
+37161,0.003058434,Nickel,LB
+37161,1.952714,Naphthalene,LB
+37161,0.05204678,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.000222015,Nitrate portion of PM2.5-PRI,TON
+37161,0.09992054,Volatile Organic Compounds,TON
+37145,3.166438,Phenanthrene,LB
+37145,1.495891,Volatile Organic Compounds,TON
+37145,2.275574,Pyrene,LB
+37135,31.32666,"1,3-Butadiene",LB
+37135,0.7431986,Benzo[a]Pyrene,LB
+37135,0.4204085,Ammonia,TON
+37135,0.5036278,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,2.913456,Acetaldehyde,LB
+37135,0.002301778,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.01690622,Ammonia,TON
+37135,1.0695882e-05,Chromium (VI),LB
+37143,73.75362,Ethyl Benzene,LB
+37143,2.945464e-05,Chromium (VI),LB
+37143,90.84118,Benzene,LB
+37143,0.00564544,Arsenic,LB
+37143,8.353903e-05,Nitrate portion of PM2.5-PRI,TON
+37143,0.007163885,Remaining PMFINE portion of PM2.5-PRI,TON
+37141,63.44424,Hexane,LB
+37141,2.948147,Volatile Organic Compounds,TON
+37141,1.7577404,Toluene,LB
+37141,2.455958e-05,Manganese,LB
+37141,4.930868e-06,Arsenic,LB
+37141,0.14292372,Acetaldehyde,LB
+37141,0.000701779,Methane,TON
+37141,3.544087e-05,Ammonia,TON
+37141,5.841176e-07,Nitrate portion of PM2.5-PRI,TON
+37141,0.0003164167,PM10 Primary (Filt + Cond),TON
+37141,0.0003813376,Anthracene,LB
+37141,0.009570494,Propionaldehyde,LB
+37141,0.000654251,Fluoranthene,LB
+37141,4.784414e-06,"Dibenzo[a,h]Anthracene",LB
+37133,47.67968,Propionaldehyde,LB
+37133,0.04463552,"Benzo[g,h,i,]Perylene",LB
+37133,22.39632,"2,2,4-Trimethylpentane",LB
+37133,0.04236168,Propionaldehyde,LB
+37133,4.174308,Xylenes (Mixed Isomers),LB
+37133,0.0004145604,Chrysene,LB
+37133,0.0004043312,Benz[a]Anthracene,LB
+37133,1.127244e-06,Nitrate portion of PM2.5-PRI,TON
+37129,0.0004940176,Fluorene,LB
+37129,0.0002223255,Methane,TON
+37129,0.001247325,PM10 Primary (Filt + Cond),TON
+37129,0.0002122744,Benzo[a]Pyrene,LB
+37117,0.01539063,Arsenic,LB
+37117,2925.2,Carbon Dioxide,TON
+37117,0.2479276,Elemental Carbon portion of PM2.5-PRI,TON
+37117,0.0250856,Sulfur Dioxide,TON
+37125,22.85878,Benzene,LB
+37125,0.0005806478,Manganese,LB
+37125,8.273201,Carbon Monoxide,TON
+37125,9.952959e-05,Sulfate Portion of PM2.5-PRI,TON
+37125,0.531779,Propionaldehyde,LB
+37125,7.997916,Formaldehyde,LB
+37119,1.8683764,"1,3-Butadiene",LB
+37119,0.011689792,Anthracene,LB
+37119,30.04378,Xylenes (Mixed Isomers),LB
+37119,10.091292,"2,2,4-Trimethylpentane",LB
+37119,0.01591322,Methane,TON
+37119,0.001243427,Elemental Carbon portion of PM2.5-PRI,TON
+37119,0.3002312,Nitrogen Oxides,TON
+37119,0.007768298,PM2.5 Primary (Filt + Cond),TON
+37107,0.248566,Anthracene,LB
+37107,0.0012597744,"Dibenzo[a,h]Anthracene",LB
+37107,0.2632184,Acenaphthene,LB
+37107,0.505226,Fluorene,LB
+37107,0.0005695071,Nitrate portion of PM2.5-PRI,TON
+37107,0.008091572,Sulfur Dioxide,TON
+37089,30.24192,Styrene,LB
+37089,0.0010428536,Chromium (VI),LB
+37089,1.2883176,Acenaphthene,LB
+37089,2.15151,PM10 Primary (Filt + Cond),TON
+37083,0.5095242,Anthracene,LB
+37083,0.00449472,Arsenic,LB
+37083,1010.955,Carbon Dioxide,TON
+37083,0.007205556,Sulfate Portion of PM2.5-PRI,TON
+37079,0.4934126,Phenanthrene,LB
+37079,0.3097572,Fluorene,LB
+37079,1.846992,Carbon Monoxide,TON
+37079,0.001848084,Sulfate Portion of PM2.5-PRI,TON
+37079,0.005255454,Benzo[b]Fluoranthene,LB
+37087,0.002217992,Benz[a]Anthracene,LB
+37087,0.00263067,Acenaphthene,LB
+37087,0.005471865,PM10 Primary (Filt + Cond),TON
+37087,0.00446485,PM2.5 Primary (Filt + Cond),TON
+37087,0.04025091,Volatile Organic Compounds,TON
+37087,0.0414488,Acrolein,LB
+37087,0.05671482,Propionaldehyde,LB
+37085,2.507964,Benzene,LB
+37085,0.0805569,Acenaphthene,LB
+37085,0.01851005,Methane,TON
+37085,0.001114125,Nitrous Oxide,TON
+37085,0.01238214,Ammonia,TON
+37075,0.0012103654,Acenaphthene,LB
+37075,5.221578,Toluene,LB
+37075,0.0008946083,Nitrous Oxide,TON
+37075,0.0007941019,Ammonia,TON
+37071,0.624265,Acrolein,LB
+37071,4.0617,Propionaldehyde,LB
+37071,0.0006133488,Arsenic,LB
+37071,0.0005007724,Acenaphthene,LB
+37071,0.0001567403,Sulfate Portion of PM2.5-PRI,TON
+37067,3.796136,Anthracene,LB
+37067,1060.326,Formaldehyde,LB
+37067,2.58223,PM25-Primary from certain diesel engines,TON
+37067,41.50163,Nitrogen Oxides,TON
+37067,0.07342653,Sulfate Portion of PM2.5-PRI,TON
+37053,0.10275922,Propionaldehyde,LB
+37053,4.36594,Benzene,LB
+37053,0.025888,Phenanthrene,LB
+37053,0.009654546,Fluorene,LB
+37053,0.002819793,PM10 Primary (Filt + Cond),TON
+37053,0.0002005533,Sulfur Dioxide,TON
+37051,1.6972988,"2,2,4-Trimethylpentane",LB
+37051,0.010103902,Nickel,LB
+37051,1.873953,Carbon Monoxide,TON
+37051,0.01738823,Sulfate Portion of PM2.5-PRI,TON
+37051,172.81502,Toluene,LB
+37051,127.95666,Propionaldehyde,LB
+37051,13.498408,Pyrene,LB
+37051,1063.9934,Acetaldehyde,LB
+37049,1.261353,"1,3-Butadiene",LB
+37049,39.27138,Toluene,LB
+37049,28.19166,Xylenes (Mixed Isomers),LB
+37049,0.02265688,Fluoranthene,LB
+37049,358.3528,Carbon Dioxide,TON
+37049,0.005103239,Remaining PMFINE portion of PM2.5-PRI,TON
+37049,0.007509536,Sulfur Dioxide,TON
+37041,0.03323952,Styrene,LB
+37041,3.487372,Xylenes (Mixed Isomers),LB
+37041,4.266656e-08,Chromium (VI),LB
+37041,0.0014599962,"Benzo[g,h,i,]Perylene",LB
+37041,0.4428714,Formaldehyde,LB
+37041,1.3214578,"2,2,4-Trimethylpentane",LB
+37041,0.002768794,Fluorene,LB
+37041,0.002651809,Methane,TON
+37033,0.005654848,"1,3-Butadiene",LB
+37033,4.547064e-09,Chromium (VI),LB
+37033,0.02200324,"2,2,4-Trimethylpentane",LB
+37033,2.60641e-06,Manganese,LB
+37033,3.399478e-05,Acenaphthene,LB
+37033,4.082757e-08,Nitrate portion of PM2.5-PRI,TON
+37033,1.455674e-05,PM2.5 Primary (Filt + Cond),TON
+37159,38.26366,Toluene,LB
+37091,0.6576136,Hexane,LB
+37083,6.743492,Xylenes (Mixed Isomers),LB
+37083,1.6577276,Benzene,LB
+37169,0.710796,Ethyl Benzene,LB
+37169,0.04960658,Benz[a]Anthracene,LB
+37169,0.02146144,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.0002687669,Nitrate portion of PM2.5-PRI,TON
+37165,0.04998682,Benzo[b]Fluoranthene,LB
+37165,231.9692,Acetaldehyde,LB
+37165,0.9198161,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.300325,Ethyl Benzene,LB
+37163,0.0008891636,Pyrene,LB
+37163,0.0002184506,Benzo[k]Fluoranthene,LB
+37163,2.88465e-05,Arsenic,LB
+37163,6.178659e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.0001889966,Organic Carbon portion of PM2.5-PRI,TON
+37157,77189.36,Toluene,LB
+37157,0.17509346,"Dibenzo[a,h]Anthracene",LB
+37157,1191.1114,Naphthalene,LB
+37157,12.20931,Methane,TON
+37157,4.839511,Sulfur Dioxide,TON
+37155,0.0003540896,Mercury,LB
+37155,0.006770152,Arsenic,LB
+37155,22.12582,Acetaldehyde,LB
+37155,0.07569428,Acenaphthene,LB
+37155,0.15332356,Fluorene,LB
+37155,0.03004168,Organic Carbon portion of PM2.5-PRI,TON
+37155,0.02430805,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.12942658,Pyrene,LB
+37153,0.00405016,"1,3-Butadiene",LB
+37153,0.02550998,Hexane,LB
+37153,0.0006087242,Propionaldehyde,LB
+37153,0.06891876,Xylenes (Mixed Isomers),LB
+37153,1.5385156e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,2.95898e-05,Acenaphthene,LB
+37153,5.993812e-05,Fluorene,LB
+37153,4.54394e-06,Ammonia,TON
+37153,2.522506e-05,PM10 Primary (Filt + Cond),TON
+37153,0.00014844032,Benz[a]Anthracene,LB
+37153,0.0002638832,Benzo[a]Pyrene,LB
+37153,0.0001351412,Nitrous Oxide,TON
+37153,0.0004993405,PM10 Primary (Filt + Cond),TON
+37153,1343.706,Ethyl Benzene,LB
+37175,38.67902,"1,3-Butadiene",LB
+37175,63.059,Propionaldehyde,LB
+37175,3.931344,Acenaphthene,LB
+37175,54.5921,Carbon Monoxide,TON
+37175,1.201934,PM10 Primary (Filt + Cond),TON
+37173,0.002438632,Fluoranthene,LB
+37173,0.531215,Formaldehyde,LB
+37173,1.8206444e-05,"Dibenzo[a,h]Anthracene",LB
+37173,1.82138e-05,Arsenic,LB
+37173,0.003348186,Fluorene,LB
+37173,0.02890336,Volatile Organic Compounds,TON
+37155,3.082804,"2,2,4-Trimethylpentane",LB
+37155,0.17940708,Benz[a]Anthracene,LB
+37155,12.012054,Benzene,LB
+37155,4.881086,Carbon Monoxide,TON
+37155,0.01016815,Sulfate Portion of PM2.5-PRI,TON
+37155,10.092764,Acrolein,LB
+37149,1.0352638,Styrene,LB
+37149,29.04028,Acetaldehyde,LB
+37149,0.4340246,Fluorene,LB
+37149,0.1706587,PM10-Primary from certain diesel engines,TON
+37149,0.1570067,PM25-Primary from certain diesel engines,TON
+37149,0.006145889,Sulfur Dioxide,TON
+37149,3.182238,Acetaldehyde,LB
+37149,0.008038362,Organic Carbon portion of PM2.5-PRI,TON
+37149,0.002516797,Sulfur Dioxide,TON
+37149,0.240407,Styrene,LB
+37149,25.03286,Xylenes (Mixed Isomers),LB
+37149,0.016328132,Fluoranthene,LB
+37149,0.014604894,Benzo[a]Pyrene,LB
+37157,0.03996132,PM10-Primary from certain diesel engines,TON
+37157,0.03676397,PM25-Primary from certain diesel engines,TON
+37157,0.01487851,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.0001924825,Nitrate portion of PM2.5-PRI,TON
+37157,0.4479764,"1,3-Butadiene",LB
+37157,0.3414898,"2,2,4-Trimethylpentane",LB
+37155,1040.1612,Benzene,LB
+37155,136.1767,Volatile Organic Compounds,TON
+37153,25.8364,Xylenes (Mixed Isomers),LB
+37153,0.014572966,Fluoranthene,LB
+37153,0.019480198,Fluorene,LB
+37153,0.006766622,Methane,TON
+37153,2.117424e-05,Nitrate portion of PM2.5-PRI,TON
+37153,0.002130992,Remaining PMFINE portion of PM2.5-PRI,TON
+37147,13.374658,Styrene,LB
+37147,11.607492,Acrolein,LB
+37147,0.614249,"Benzo[g,h,i,]Perylene",LB
+37147,0.6096078,Acenaphthene,LB
+37147,3.311178,Phenanthrene,LB
+37147,31.6525,Naphthalene,LB
+37147,143.0059,Carbon Monoxide,TON
+37147,0.4536719,Ammonia,TON
+37147,0.4165882,PM10 Primary (Filt + Cond),TON
+37129,0.02954856,Benzo[a]Pyrene,LB
+37129,15.370816,Acetaldehyde,LB
+37129,0.0005258415,Nitrate portion of PM2.5-PRI,TON
+37129,3.091822,Nitrogen Oxides,TON
+37129,0.2892247,PM10 Primary (Filt + Cond),TON
+37129,2.728204,Acrolein,LB
+37129,1.7447958,Propionaldehyde,LB
+37129,0.0012218226,Benzo[k]Fluoranthene,LB
+37129,0.1753446,Acenaphthylene,LB
+37129,36.81684,Formaldehyde,LB
+37141,0.3437916,"Benzo[g,h,i,]Perylene",LB
+37141,0.4297932,Fluoranthene,LB
+37141,0.0012658448,Mercury,LB
+37137,2.342002,Hexane,LB
+37137,0.8465802,Pyrene,LB
+37137,8.372524,Benzene,LB
+37137,0.01197746,Nickel,LB
+37137,0.06008296,Methane,TON
+37137,2.312554,Carbon Monoxide,TON
+37133,134.82152,Toluene,LB
+37133,36.79024,Hexane,LB
+37133,0.04283736,"Benzo[g,h,i,]Perylene",LB
+37133,0.2050936,Benzo[b]Fluoranthene,LB
+37133,5.521174,Acenaphthylene,LB
+37133,7.307164,Fluorene,LB
+37133,38.65904,Carbon Monoxide,TON
+37133,0.8962728,Ammonia,TON
+37133,0.4986072,Sulfur Dioxide,TON
+37125,4.965876e-05,Acenaphthene,LB
+37125,0.1109363,Carbon Dioxide,TON
+37125,0.0009607628,Volatile Organic Compounds,TON
+37115,0.5891454,Toluene,LB
+37115,0.2057746,Hexane,LB
+37115,0.003368346,Manganese,LB
+37115,0.8809888,Naphthalene,LB
+37115,0.03628891,PM25-Primary from certain diesel engines,TON
+37115,0.001547197,Sulfate Portion of PM2.5-PRI,TON
+37115,0.08848888,Benzo[a]Pyrene,LB
+37115,0.0370892,Manganese,LB
+37115,12.89361,Naphthalene,LB
+37107,0.5518292,Ethyl Benzene,LB
+37107,0.4934144,"1,3-Butadiene",LB
+37107,0.16338204,Pyrene,LB
+37107,0.12330956,Fluoranthene,LB
+37107,0.0005115486,"Dibenzo[a,h]Anthracene",LB
+37107,0.11210124,Fluorene,LB
+37103,0.086637,"1,3-Butadiene",LB
+37103,4.494324e-08,Chromium (VI),LB
+37103,0.0002350788,Nitrous Oxide,TON
+37103,0.01581718,Nitrogen Oxides,TON
+37103,0.000139063,Organic Carbon portion of PM2.5-PRI,TON
+37099,8.79496,Fluorene,LB
+37099,1.55122,PM10-Primary from certain diesel engines,TON
+37099,0.05060729,Sulfate Portion of PM2.5-PRI,TON
+37099,22.36192,Styrene,LB
+37099,0.2175898,Manganese,LB
+37097,292.23,Propionaldehyde,LB
+37097,27.16222,"Benzo[g,h,i,]Perylene",LB
+37097,6.445466,Benzo[k]Fluoranthene,LB
+37097,0.2342534,"Dibenzo[a,h]Anthracene",LB
+37097,5632.378,Acetaldehyde,LB
+37097,9.042508,Methane,TON
+37097,8.035701,Nitrous Oxide,TON
+37097,6.224653,Organic Carbon portion of PM2.5-PRI,TON
+37097,42.08587,PM10 Primary (Filt + Cond),TON
+37093,0.008019834,PM2.5 Primary (Filt + Cond),TON
+37093,0.0003177216,Benzo[b]Fluoranthene,LB
+37093,44.63502,Formaldehyde,LB
+37093,3.752528,Benzene,LB
+37085,2.312444,Anthracene,LB
+37085,63.51268,Xylenes (Mixed Isomers),LB
+37085,0.0297617,"Benzo[g,h,i,]Perylene",LB
+37085,0.019973422,"Dibenzo[a,h]Anthracene",LB
+37085,1.685523,PM25-Primary from certain diesel engines,TON
+37085,0.3361551,Remaining PMFINE portion of PM2.5-PRI,TON
+37079,2.621382,Styrene,LB
+37079,0.66371,Anthracene,LB
+37079,5.098048,"2,2,4-Trimethylpentane",LB
+37073,5.374548e-05,Benzo[k]Fluoranthene,LB
+37073,0.000394247,Manganese,LB
+37073,0.005819259,PM10 Primary (Filt + Cond),TON
+37073,0.0001354642,Sulfur Dioxide,TON
+37087,0.007676645,Ammonia,TON
+37087,0.02512565,PM2.5 Primary (Filt + Cond),TON
+37087,6.695338,Formaldehyde,LB
+37087,18.855184,"2,2,4-Trimethylpentane",LB
+37087,0.0006384906,Nickel,LB
+37087,2.585486,"1,3-Butadiene",LB
+37087,0.4217536,Propionaldehyde,LB
+37085,9.158952,Acrolein,LB
+37085,1130.8502,Hexane,LB
+37085,0.4034894,Anthracene,LB
+37085,0.13710018,Benzo[b]Fluoranthene,LB
+37085,2.561688,Phenanthrene,LB
+37085,3031.645,Carbon Dioxide,TON
+37085,5.801128,Nitrogen Oxides,TON
+37085,0.1035278,Organic Carbon portion of PM2.5-PRI,TON
+37085,0.1868172,PM2.5 Primary (Filt + Cond),TON
+37071,6.101756,"1,3-Butadiene",LB
+37071,0.0261599,Benzo[b]Fluoranthene,LB
+37071,0.15118576,Fluoranthene,LB
+37071,0.000285488,Mercury,LB
+37071,0.2111604,Fluorene,LB
+37071,0.03243832,Methane,TON
+37071,0.00013498,Nitrate portion of PM2.5-PRI,TON
+37071,0.001818052,Sulfate Portion of PM2.5-PRI,TON
+37059,0.02316192,Ethyl Benzene,LB
+37059,5.922848e-05,Fluoranthene,LB
+37059,3.133998e-05,Benzo[a]Pyrene,LB
+37059,0.000213368,Phenanthrene,LB
+37059,2.60057e-05,Methane,TON
+37007,0.0047262,Arsenic,LB
+37007,0.0197596,Phenanthrene,LB
+37007,0.02814614,Methane,TON
+37007,0.2266306,Volatile Organic Compounds,TON
+37007,2.00171,Ethyl Benzene,LB
+37007,0.003203244,Anthracene,LB
+37007,2.46587e-05,Chromium (VI),LB
+37007,0.00328597,Benzo[k]Fluoranthene,LB
+37007,3.59254,"2,2,4-Trimethylpentane",LB
+37001,0.005191708,Pyrene,LB
+37001,3.175892e-05,Chromium (VI),LB
+37001,0.002493198,Chrysene,LB
+37001,0.0226712,Methane,TON
+37001,0.0043681,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.01412681,Sulfur Dioxide,TON
+37113,0.00019696882,Chrysene,LB
+37113,0.0002221268,Benz[a]Anthracene,LB
+37113,0.007194566,Styrene,LB
+37113,3.01357,Acetaldehyde,LB
+37113,0.002171366,Methane,TON
+37113,32.32784,Carbon Dioxide,TON
+37113,0.0001327146,Elemental Carbon portion of PM2.5-PRI,TON
+37097,0.00223661,Remaining PMFINE portion of PM2.5-PRI,TON
+37097,0.007739065,Sulfur Dioxide,TON
+37097,1.50602e-05,Chromium (VI),LB
+37097,0.00015098028,Mercury,LB
+37097,0.002291046,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.02170501,PM10 Primary (Filt + Cond),TON
+37021,16.156896,Pyrene,LB
+37021,168.19164,Xylenes (Mixed Isomers),LB
+37021,1.194016,Benzo[a]Pyrene,LB
+37021,167.14078,Benzene,LB
+37021,0.11276628,Arsenic,LB
+37021,788.1332,Acetaldehyde,LB
+37021,1.484662,Elemental Carbon portion of PM2.5-PRI,TON
+37021,76.17523,Nitrogen Oxides,TON
+37021,0.2231147,Sulfur Dioxide,TON
+37017,1.5381232,Acenaphthylene,LB
+37017,374.2318,Formaldehyde,LB
+37017,0.007301136,"Dibenzo[a,h]Anthracene",LB
+37017,0.5889854,Benz[a]Anthracene,LB
+37017,3.687958,Phenanthrene,LB
+37017,18758.66,Carbon Dioxide,TON
+37017,1.461628,PM25-Primary from certain diesel engines,TON
+37017,44.1218,Nitrogen Oxides,TON
+37021,0.1349393,Hexane,LB
+37021,0.3276474,Xylenes (Mixed Isomers),LB
+37021,0.05624724,Formaldehyde,LB
+37021,8.689476e-05,Benz[a]Anthracene,LB
+37021,0.0507219,Acetaldehyde,LB
+37021,0.00016821218,Acenaphthene,LB
+37021,0.0001933438,Methane,TON
+37009,0.6686185,PM10 Primary (Filt + Cond),TON
+37009,0.01893062,Sulfate Portion of PM2.5-PRI,TON
+37009,6.981232,"1,3-Butadiene",LB
+37009,19.02344,Toluene,LB
+37009,1.1827438,Acenaphthylene,LB
+37009,246.0942,Formaldehyde,LB
+37009,0.05329824,Manganese,LB
+37005,0.2207536,Toluene,LB
+37005,0.014877564,Acenaphthylene,LB
+37005,0.0018059658,Benzo[a]Pyrene,LB
+37005,0.0772894,"2,2,4-Trimethylpentane",LB
+37005,1.2552998,Acetaldehyde,LB
+37005,0.01220753,PM10-Primary from certain diesel engines,TON
+37005,3.261859e-05,Nitrate portion of PM2.5-PRI,TON
+37005,7.469986,Xylenes (Mixed Isomers),LB
+37003,241.041,Acrolein,LB
+37003,44781.44,Toluene,LB
+37003,19.261488,Fluoranthene,LB
+37003,60.86308,Acenaphthylene,LB
+37003,3.105032,Chrysene,LB
+37003,0.732949,Arsenic,LB
+37003,13.380178,Acenaphthene,LB
+37003,6.366772,Ammonia,TON
+37003,288.9752,Nitrogen Oxides,TON
+37003,3.742613,PM2.5 Primary (Filt + Cond),TON
+37001,19.764042,Styrene,LB
+37001,4.907894,Anthracene,LB
+37001,364.188,Xylenes (Mixed Isomers),LB
+37001,0.06234048,"Indeno[1,2,3-c,d]Pyrene",LB
+37001,0.244627,Benzo[b]Fluoranthene,LB
+37001,0.01834224,Nitrate portion of PM2.5-PRI,TON
+37197,0.1332354,Propionaldehyde,LB
+37197,0.008597836,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.011000798,Fluoranthene,LB
+37197,0.014006972,Fluorene,LB
+37197,0.004778718,Methane,TON
+37197,2.561923e-05,Nitrate portion of PM2.5-PRI,TON
+37197,0.4410612,Nitrogen Oxides,TON
+37197,0.003562668,Sulfur Dioxide,TON
+37191,0.2617944,Acrolein,LB
+37191,3.149796,Hexane,LB
+37191,0.002139668,Chrysene,LB
+37191,0.00529931,Benzo[a]Pyrene,LB
+37181,0.007398632,Benzo[b]Fluoranthene,LB
+37181,2.792026,Benzene,LB
+37181,0.00964495,Manganese,LB
+37181,9.821944e-06,Mercury,LB
+37181,369.0619,Carbon Dioxide,TON
+37181,0.0923666,PM10-Primary from certain diesel engines,TON
+37181,0.08497548,PM25-Primary from certain diesel engines,TON
+37181,0.0004283787,Nitrate portion of PM2.5-PRI,TON
+37181,1.374583,Nitrogen Oxides,TON
+37197,0.2842186,Styrene,LB
+37197,0.0004945796,Benzo[k]Fluoranthene,LB
+37197,0.011939566,Benzo[a]Pyrene,LB
+37197,0.1363464,Fluorene,LB
+37197,0.008785886,Ammonia,TON
+37197,2.62392,Nitrogen Oxides,TON
+37185,0.697601,Styrene,LB
+37185,1.58052,"1,3-Butadiene",LB
+37185,0.0012038544,Benzo[b]Fluoranthene,LB
+37185,0.004034388,Benzo[a]Pyrene,LB
+37185,0.4301902,Phenanthrene,LB
+37185,0.05407436,PM10-Primary from certain diesel engines,TON
+37179,0.03982304,"1,3-Butadiene",LB
+37179,0.0011280426,Pyrene,LB
+37179,0.0010518636,Acenaphthylene,LB
+37179,3.176196e-06,Nickel,LB
+37179,0.03520859,PM10 Primary (Filt + Cond),TON
+37179,0.00550963,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.0001589355,Sulfate Portion of PM2.5-PRI,TON
+37179,0.1243339,Volatile Organic Compounds,TON
+37177,0.0003061068,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.03893368,Fluoranthene,LB
+37177,0.00016455564,"Dibenzo[a,h]Anthracene",LB
+37177,0.0014512674,Manganese,LB
+37177,0.2109894,Nitrogen Oxides,TON
+37177,0.15122954,"1,3-Butadiene",LB
+37177,0.123375,Hexane,LB
+37173,0.005652974,"1,3-Butadiene",LB
+37173,0.01382462,Acetaldehyde,LB
+37173,3.140374e-05,Methane,TON
+37173,7.33782e-06,Ammonia,TON
+37173,7.409038e-08,Nitrate portion of PM2.5-PRI,TON
+37173,1.383436e-05,Organic Carbon portion of PM2.5-PRI,TON
+37173,3.855857e-05,PM10 Primary (Filt + Cond),TON
+37173,0.0007290428,Volatile Organic Compounds,TON
+37027,3.156807,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,8178.632,Acetaldehyde,LB
+37027,18462.43,Hexane,LB
+37027,20.69176,Anthracene,LB
+37027,7616.642,Formaldehyde,LB
+37027,49.22626,Fluorene,LB
+37027,16.80607,Ammonia,TON
+37027,0.02342069,Nitrate portion of PM2.5-PRI,TON
+37055,0.952496,Elemental Carbon portion of PM2.5-PRI,TON
+37055,30.54728,Nitrogen Oxides,TON
+37055,0.03673693,Sulfate Portion of PM2.5-PRI,TON
+37055,11.580488,Ethyl Benzene,LB
+37055,5.23225,Styrene,LB
+37055,21.99464,Toluene,LB
+37055,0.01926311,"Benzo[g,h,i,]Perylene",LB
+37055,3.10335,Fluoranthene,LB
+37055,0.6161482,Chrysene,LB
+37055,1.0413124,Benz[a]Anthracene,LB
+37055,0.012767224,Arsenic,LB
+37039,378.632,"1,3-Butadiene",LB
+37039,1.1554028,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,0.3466108,Nickel,LB
+37039,1.331062,PM2.5 Primary (Filt + Cond),TON
+37039,0.7859118,Sulfur Dioxide,TON
+37175,10.282306,Propionaldehyde,LB
+37175,4.404304e-05,Chromium (VI),LB
+37175,4.414728e-05,Mercury,LB
+37175,88.39592,Acetaldehyde,LB
+37175,0.1229923,Methane,TON
+37175,0.04703065,Ammonia,TON
+37175,0.01859428,Sulfate Portion of PM2.5-PRI,TON
+37169,0.00016651846,Chromium (VI),LB
+37169,0.04259578,Benzo[b]Fluoranthene,LB
+37169,2.47892,Pyrene,LB
+37169,0.06053202,Nickel,LB
+37169,2.003508,PM10 Primary (Filt + Cond),TON
+37169,0.1420541,Sulfur Dioxide,TON
+37161,2.910644,Toluene,LB
+37161,1.2174746e-05,Chromium (VI),LB
+37161,3.501982,Benzene,LB
+37161,0.09857476,PM25-Primary from certain diesel engines,TON
+37161,0.03798593,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.00416088,Sulfur Dioxide,TON
+37161,0.2096835,Volatile Organic Compounds,TON
+37159,19.545274,Styrene,LB
+37159,2.939418,Benz[a]Anthracene,LB
+37159,54.04699,Carbon Monoxide,TON
+37159,0.07968779,Nitrous Oxide,TON
+37155,117.48724,Hexane,LB
+37155,0.0009813652,Chromium (VI),LB
+37155,350.5918,Benzene,LB
+37155,0.913459,Manganese,LB
+37155,0.2709858,Arsenic,LB
+37155,1737.3988,Acetaldehyde,LB
+37155,1.651154,Organic Carbon portion of PM2.5-PRI,TON
+37155,8.939582,PM2.5 Primary (Filt + Cond),TON
+37149,0.6204418,Phenanthrene,LB
+37149,9.187457,Carbon Monoxide,TON
+37149,0.01590905,Ammonia,TON
+37149,0.006087994,Sulfur Dioxide,TON
+37149,0.9384044,Styrene,LB
+37149,6.437474,Xylenes (Mixed Isomers),LB
+37149,0.0004026272,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,77.29744,Formaldehyde,LB
+37163,102.61614,Hexane,LB
+37163,2.003302,Propionaldehyde,LB
+37163,31.95338,Formaldehyde,LB
+37163,0.01146681,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.05956928,PM2.5 Primary (Filt + Cond),TON
+37163,0.03173926,Sulfur Dioxide,TON
+37157,0.27756,Phenanthrene,LB
+37157,719.9942,Carbon Dioxide,TON
+37157,0.06662111,Elemental Carbon portion of PM2.5-PRI,TON
+37157,0.1659342,PM10 Primary (Filt + Cond),TON
+37157,0.006146585,Sulfur Dioxide,TON
+37157,0.0768148,Anthracene,LB
+37157,1.1720792,Propionaldehyde,LB
+37157,0.11822564,Acenaphthylene,LB
+37155,1690.0346,"1,3-Butadiene",LB
+37155,53073.76,Toluene,LB
+37155,226.577,Propionaldehyde,LB
+37155,22.11148,"Benzo[g,h,i,]Perylene",LB
+37155,4059.514,Acetaldehyde,LB
+37155,63.8112,Phenanthrene,LB
+37155,23.57886,Fluorene,LB
+37155,389.1022,Nitrogen Oxides,TON
+37137,0.0005208398,Styrene,LB
+37137,0.003173618,"1,3-Butadiene",LB
+37137,7.033706e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,7.080038e-06,Benzo[a]Pyrene,LB
+37137,0.0011363336,Naphthalene,LB
+37137,1.646097e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37137,1.265948e-05,PM10 Primary (Filt + Cond),TON
+37137,7.292082e-06,PM2.5 Primary (Filt + Cond),TON
+37137,1.786584e-07,Sulfate Portion of PM2.5-PRI,TON
+37121,254.7312,Benzene,LB
+37121,0.525178,Fluorene,LB
+37121,0.02346195,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.02136296,Remaining PMFINE portion of PM2.5-PRI,TON
+37105,9.804176,"1,3-Butadiene",LB
+37105,3.89219,Phenanthrene,LB
+37105,0.0173741,Nitrous Oxide,TON
+37105,39.98678,Nitrogen Oxides,TON
+37105,0.1205645,Sulfate Portion of PM2.5-PRI,TON
+37101,0.372964,Hexane,LB
+37101,0.0003894374,Anthracene,LB
+37101,0.0007612774,Pyrene,LB
+37101,0.0006674758,Fluoranthene,LB
+37101,0.0002044096,Benzo[a]Pyrene,LB
+37101,0.00014171462,Benz[a]Anthracene,LB
+37101,0.0001612782,Nitrous Oxide,TON
+37101,4.787834e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37085,2.77657,Arsenic,LB
+37085,12.02798,Methane,TON
+37085,19.34988,Ammonia,TON
+37085,33.97796,Pyrene,LB
+37085,6.9584,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,5.391018,Benzo[b]Fluoranthene,LB
+37079,1382.9118,Ethyl Benzene,LB
+37079,2.696644,"Benzo[g,h,i,]Perylene",LB
+37079,0.6397406,Chrysene,LB
+37079,0.5030982,Arsenic,LB
+37079,2.002928,Acenaphthene,LB
+37079,4.057256,Fluorene,LB
+37079,1.04861,Methane,TON
+37079,35666.8,Carbon Dioxide,TON
+37079,0.5824029,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.7481365,Sulfur Dioxide,TON
+37079,41.43992,Volatile Organic Compounds,TON
+37077,2.89963e-06,Chromium (VI),LB
+37077,0.08859424,Fluoranthene,LB
+37077,0.06571396,Acenaphthylene,LB
+37077,0.2840824,"2,2,4-Trimethylpentane",LB
+37077,1.1003546,Benzene,LB
+37077,0.002373228,Manganese,LB
+37077,5.060922,Acetaldehyde,LB
+37077,0.14127456,Phenanthrene,LB
+37077,0.0001405901,Nitrate portion of PM2.5-PRI,TON
+37077,0.532917,Nitrogen Oxides,TON
+37077,0.02929962,PM2.5 Primary (Filt + Cond),TON
+37077,0.0009495104,Sulfur Dioxide,TON
+37067,2.813718,Chrysene,LB
+37067,35.69324,Phenanthrene,LB
+37067,99.26785,Carbon Monoxide,TON
+37067,18.29469,Volatile Organic Compounds,TON
+37057,0.9163586,Toluene,LB
+37057,0.0015960188,Acenaphthylene,LB
+37057,0.01032197,Ammonia,TON
+37051,0.0013770344,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,0.005408572,Benzo[b]Fluoranthene,LB
+37051,0.0007408178,Benzo[k]Fluoranthene,LB
+37051,0.001082794,Arsenic,LB
+37051,0.5081411,Carbon Monoxide,TON
+37051,0.02545105,Organic Carbon portion of PM2.5-PRI,TON
+37051,0.1524255,Volatile Organic Compounds,TON
+37049,1.051042,Carbon Monoxide,TON
+37049,639.9166,Carbon Dioxide,TON
+37049,0.1142159,PM25-Primary from certain diesel engines,TON
+37049,0.1831449,PM10 Primary (Filt + Cond),TON
+37049,0.002040528,"Benzo[g,h,i,]Perylene",LB
+37049,0.01022309,Benzo[b]Fluoranthene,LB
+37049,0.537738,Phenanthrene,LB
+37047,0.8050954,Styrene,LB
+37047,0.6308324,Pyrene,LB
+37047,0.014714988,Benzo[b]Fluoranthene,LB
+37047,59.1924,Formaldehyde,LB
+37047,1.5108184,"2,2,4-Trimethylpentane",LB
+37047,25.38772,Acetaldehyde,LB
+37047,0.4216616,Fluorene,LB
+37047,0.001607343,Nitrous Oxide,TON
+37047,0.2417805,PM10 Primary (Filt + Cond),TON
+37047,0.006758997,Sulfate Portion of PM2.5-PRI,TON
+37043,1.3799946,Toluene,LB
+37043,0.0720216,Pyrene,LB
+37043,7.13918e-06,Chromium (VI),LB
+37043,0.0001638162,"Benzo[g,h,i,]Perylene",LB
+37043,0.001408676,Arsenic,LB
+37043,0.0005544487,Elemental Carbon portion of PM2.5-PRI,TON
+37043,0.0004091523,Sulfate Portion of PM2.5-PRI,TON
+37143,1.756687,Hexane,LB
+37143,0.00334007,Fluoranthene,LB
+37143,0.0014551676,Chrysene,LB
+37143,0.00013885084,Mercury,LB
+37143,0.00200701,Acenaphthene,LB
+37143,0.00406542,Fluorene,LB
+37107,229.2988,Carbon Dioxide,TON
+37107,1.154703e-05,Nitrate portion of PM2.5-PRI,TON
+37107,0.002002657,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.00228627,Pyrene,LB
+37107,1.566692e-05,Chromium (VI),LB
+37107,13.50944,Acetaldehyde,LB
+37095,0.9682842,Xylenes (Mixed Isomers),LB
+37163,13.535676,Fluorene,LB
+37163,347.0826,Naphthalene,LB
+37163,3.503679,Methane,TON
+37163,11.267308,Pyrene,LB
+37163,2.280204,Benzo[b]Fluoranthene,LB
+37151,4.89861,Benzo[k]Fluoranthene,LB
+37151,4.49096,Chrysene,LB
+37151,3913.784,Formaldehyde,LB
+37151,4867.154,Acetaldehyde,LB
+37151,13.400722,Acenaphthene,LB
+37151,3039.828,Carbon Monoxide,TON
+37151,228849.3,Carbon Dioxide,TON
+37151,8.986559,PM2.5 Primary (Filt + Cond),TON
+37147,2.73704,Acetaldehyde,LB
+37147,0.4574602,Naphthalene,LB
+37147,243.0567,Carbon Dioxide,TON
+37147,0.1769136,Acrolein,LB
+37147,0.012795574,"Benzo[g,h,i,]Perylene",LB
+37147,0.003188292,Benzo[k]Fluoranthene,LB
+37147,9.62305,Benzene,LB
+37143,3.623466,"1,3-Butadiene",LB
+37143,9.45382,Acrolein,LB
+37143,6.085118,Propionaldehyde,LB
+37143,0.005034042,"Benzo[g,h,i,]Perylene",LB
+37143,0.03635622,Manganese,LB
+37143,53.11424,Acetaldehyde,LB
+37143,0.004867142,Nitrous Oxide,TON
+37143,0.01320469,Sulfate Portion of PM2.5-PRI,TON
+37143,0.0001159938,Benzo[k]Fluoranthene,LB
+37143,0.00011537304,"Dibenzo[a,h]Anthracene",LB
+37143,0.10543722,Hexane,LB
+37143,0.4454658,Naphthalene,LB
+37143,0.01915512,PM10-Primary from certain diesel engines,TON
+37143,0.7529518,Ethyl Benzene,LB
+37143,4.911822e-08,Chromium (VI),LB
+37143,0.0004268662,"Indeno[1,2,3-c,d]Pyrene",LB
+37143,0.0016372556,Fluoranthene,LB
+37143,0.005105922,Acenaphthylene,LB
+37143,6.139806e-06,Nickel,LB
+37143,0.0011210872,Acenaphthene,LB
+37143,6.72043e-05,Ammonia,TON
+37143,7.278418e-06,Sulfate Portion of PM2.5-PRI,TON
+37137,0.07279507,PM10 Primary (Filt + Cond),TON
+37137,0.1344271,Volatile Organic Compounds,TON
+37137,0.6006658,Hexane,LB
+37137,4.71705e-06,Chromium (VI),LB
+37137,0.0009702176,"Benzo[g,h,i,]Perylene",LB
+37137,0.0522432,Benz[a]Anthracene,LB
+37137,0.5711174,Toluene,LB
+37137,0.14212448,Hexane,LB
+37137,6.238348e-05,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.0590342,Formaldehyde,LB
+37137,6.373834e-05,Manganese,LB
+37137,3.680064e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.6256572,Naphthalene,LB
+37129,0.006733985,Methane,TON
+37129,0.01194787,Ammonia,TON
+37129,1.839084e-05,Nitrate portion of PM2.5-PRI,TON
+37129,0.2716694,Styrene,LB
+37129,1.0890032,"1,3-Butadiene",LB
+37129,38.83576,Toluene,LB
+37129,10.648304,Hexane,LB
+37129,0.2109752,Propionaldehyde,LB
+37129,0.003210228,Benz[a]Anthracene,LB
+37129,13.577942,Benzene,LB
+37117,0.5136148,Pyrene,LB
+37117,0.400769,Fluoranthene,LB
+37117,0.3790816,Acenaphthylene,LB
+37117,0.2254048,Acenaphthene,LB
+37117,0.03645284,Organic Carbon portion of PM2.5-PRI,TON
+37117,0.1484217,PM2.5 Primary (Filt + Cond),TON
+37121,1.785848e-06,Chromium (VI),LB
+37121,0.02535622,Acenaphthylene,LB
+37121,1.7903654e-05,Mercury,LB
+37121,0.011279988,Fluorene,LB
+37121,8.101661e-05,Sulfate Portion of PM2.5-PRI,TON
+37113,0.03534374,Pyrene,LB
+37113,0.0007615736,Benzo[b]Fluoranthene,LB
+37113,0.0004216604,Nickel,LB
+37193,0.0334588,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,638.1346,Formaldehyde,LB
+37193,49.18232,Acrolein,LB
+37193,16.027322,Hexane,LB
+37193,4.310396,Fluorene,LB
+37193,68.72184,Naphthalene,LB
+37193,1.616683,PM10-Primary from certain diesel engines,TON
+37193,0.5990229,Elemental Carbon portion of PM2.5-PRI,TON
+37193,0.02135792,Nitrous Oxide,TON
+37193,25.79934,Nitrogen Oxides,TON
+37193,0.05279177,Sulfate Portion of PM2.5-PRI,TON
+37193,3.566923,Volatile Organic Compounds,TON
+37197,0.0003041556,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.0004758236,Fluoranthene,LB
+37197,0.10087804,Formaldehyde,LB
+37197,6.97961e-06,"Dibenzo[a,h]Anthracene",LB
+37197,0.9873412,Toluene,LB
+37197,0.00016090178,Benz[a]Anthracene,LB
+37197,0.3194582,Benzene,LB
+37197,1.911289e-05,Arsenic,LB
+37197,0.001692386,Phenanthrene,LB
+37197,0.0001555245,Nitrous Oxide,TON
+37197,0.0001659203,Ammonia,TON
+37197,0.0004392411,PM10 Primary (Filt + Cond),TON
+37197,0.0001351552,Sulfur Dioxide,TON
+37189,3.05089,Formaldehyde,LB
+37189,0.003360688,Benzo[a]Pyrene,LB
+37189,0.009795262,Acenaphthene,LB
+37189,0.001555413,Sulfur Dioxide,TON
+37187,0.003919973,Ammonia,TON
+37187,0.09893957,PM10 Primary (Filt + Cond),TON
+37187,0.9889106,"1,3-Butadiene",LB
+37187,0.0013255526,"Benzo[g,h,i,]Perylene",LB
+37181,0.6486304,Toluene,LB
+37181,0.2570436,Hexane,LB
+37181,0.5337244,Formaldehyde,LB
+37181,0.0001596709,Elemental Carbon portion of PM2.5-PRI,TON
+37105,0.007124381,Nitrogen Oxides,TON
+37105,0.0002769546,"Benzo[g,h,i,]Perylene",LB
+37105,5.265412e-05,Benz[a]Anthracene,LB
+37105,0.09463014,Benzene,LB
+37105,0.2480504,Toluene,LB
+37093,4.07998,"Benzo[g,h,i,]Perylene",LB
+37093,1.125925,Chrysene,LB
+37093,1155.6158,Formaldehyde,LB
+37093,1.5378208,Benzo[a]Pyrene,LB
+37093,4360.936,Benzene,LB
+37093,1.3653842,Manganese,LB
+37093,0.8408,Arsenic,LB
+37093,8.250356,Fluorene,LB
+37093,835.3213,Carbon Monoxide,TON
+37093,2.061666,PM2.5 Primary (Filt + Cond),TON
+37083,0.00267172,Fluoranthene,LB
+37083,0.0006187074,Chrysene,LB
+37083,1.6292412,Benzene,LB
+37083,2.271804e-05,Arsenic,LB
+37083,0.0005425205,Organic Carbon portion of PM2.5-PRI,TON
+37083,0.0001064694,Sulfur Dioxide,TON
+37077,9497.566,Ethyl Benzene,LB
+37077,2177.594,"1,3-Butadiene",LB
+37077,72.804,Acenaphthylene,LB
+37077,3.470255,Organic Carbon portion of PM2.5-PRI,TON
+37057,2454.034,"1,3-Butadiene",LB
+37057,6.147532,Benzo[b]Fluoranthene,LB
+37057,5.56451,Chrysene,LB
+37057,4.6747,Manganese,LB
+37057,8.129239,Methane,TON
+37057,10.84102,PM2.5 Primary (Filt + Cond),TON
+37051,0.03782456,"Benzo[g,h,i,]Perylene",LB
+37051,0.007402378,Chrysene,LB
+37051,0.00325227,Arsenic,LB
+37051,0.9215958,Naphthalene,LB
+37051,656.2116,Carbon Dioxide,TON
+37035,135.9149,Xylenes (Mixed Isomers),LB
+37035,45.60164,Benzene,LB
+37177,0.4550042,Ethyl Benzene,LB
+37177,0.2151968,Styrene,LB
+37177,0.0340069,PM10-Primary from certain diesel engines,TON
+37177,0.0002560397,Nitrous Oxide,TON
+37173,0.05367582,Hexane,LB
+37173,0.011704578,Acenaphthylene,LB
+37173,2.13577,Formaldehyde,LB
+37173,5.97089e-05,"Dibenzo[a,h]Anthracene",LB
+37173,0.01488216,Fluorene,LB
+37173,0.1066074,Nitrogen Oxides,TON
+37173,0.000850707,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,10.572626,Styrene,LB
+37173,0.014766886,Benzo[b]Fluoranthene,LB
+37173,0.002055172,Benzo[k]Fluoranthene,LB
+37173,0.6667838,PM10-Primary from certain diesel engines,TON
+37173,0.01056671,Nitrous Oxide,TON
+37173,0.0791463,Organic Carbon portion of PM2.5-PRI,TON
+37173,0.03891681,Sulfur Dioxide,TON
+37173,0.01939038,Sulfate Portion of PM2.5-PRI,TON
+37167,0.09055876,Nickel,LB
+37167,216.8704,Acetaldehyde,LB
+37167,2.585599,Volatile Organic Compounds,TON
+37167,53.00916,Xylenes (Mixed Isomers),LB
+37167,0.016565968,"Benzo[g,h,i,]Perylene",LB
+37167,0.011223126,Benzo[k]Fluoranthene,LB
+37199,0.16729766,Fluorene,LB
+37199,22.03977,Carbon Monoxide,TON
+37199,539.1279,Carbon Dioxide,TON
+37199,1.161785,Nitrogen Oxides,TON
+37199,0.0187486,Organic Carbon portion of PM2.5-PRI,TON
+37199,0.01109068,Sulfur Dioxide,TON
+37199,90.0922,Ethyl Benzene,LB
+37199,1.3770174,Propionaldehyde,LB
+37199,0.03420014,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,0.376262,Acenaphthylene,LB
+37197,0.004630896,"Benzo[g,h,i,]Perylene",LB
+37197,0.002975576,Benzo[k]Fluoranthene,LB
+37197,0.002973544,"Dibenzo[a,h]Anthracene",LB
+37197,0.2493234,Benz[a]Anthracene,LB
+37197,0.003440588,Arsenic,LB
+37197,789.6828,Carbon Dioxide,TON
+37197,0.3102242,PM10-Primary from certain diesel engines,TON
+37197,0.005390968,Sulfate Portion of PM2.5-PRI,TON
+37193,3.003038e-05,"Benzo[g,h,i,]Perylene",LB
+37193,2.006797e-06,Nitrate portion of PM2.5-PRI,TON
+37193,0.0005977177,Sulfur Dioxide,TON
+37185,0.2531062,Xylenes (Mixed Isomers),LB
+37185,0.001337634,Methane,TON
+37185,0.01305567,PM10 Primary (Filt + Cond),TON
+37185,5.956516,Hexane,LB
+37185,0.006868754,Benzo[k]Fluoranthene,LB
+37185,0.16780834,Benzo[a]Pyrene,LB
+37185,0.06615302,Manganese,LB
+37185,25.50852,Naphthalene,LB
+37185,11.69633,Nitrogen Oxides,TON
+37185,0.8828701,PM10 Primary (Filt + Cond),TON
+37185,0.00099771,Styrene,LB
+37185,0.0007724962,Acrolein,LB
+37185,2.114834e-05,Benzo[k]Fluoranthene,LB
+37185,0.03092564,"2,2,4-Trimethylpentane",LB
+37185,1.1160882e-06,Arsenic,LB
+37185,0.02028827,Carbon Monoxide,TON
+37195,0.2014257,Sulfate Portion of PM2.5-PRI,TON
+37195,10385.582,"2,2,4-Trimethylpentane",LB
+37195,14390.924,Benzene,LB
+37195,16.74586,Ammonia,TON
+37189,1.6579126,"1,3-Butadiene",LB
+37189,7.229292,Xylenes (Mixed Isomers),LB
+37189,0.000592708,Benzo[b]Fluoranthene,LB
+37189,0.01427544,Nickel,LB
+37189,0.505026,Phenanthrene,LB
+37189,5.601455e-05,Nitrate portion of PM2.5-PRI,TON
+37189,0.004759423,Sulfur Dioxide,TON
+37187,1.5810076,"2,2,4-Trimethylpentane",LB
+37187,0.4400668,Benzene,LB
+37187,0.0009510569,Ammonia,TON
+37187,0.0005503339,Sulfur Dioxide,TON
+37187,0.08212601,Volatile Organic Compounds,TON
+37187,0.4216438,"1,3-Butadiene",LB
+37187,0.003141222,Acenaphthene,LB
+37183,0.89324,Styrene,LB
+37183,4.200694,"1,3-Butadiene",LB
+37183,4.240578e-05,Chromium (VI),LB
+37183,0.0212734,Benzo[k]Fluoranthene,LB
+37183,46.04898,Benzene,LB
+37183,12.103474,Acetaldehyde,LB
+37183,0.006678702,Elemental Carbon portion of PM2.5-PRI,TON
+37183,0.01840318,Remaining PMFINE portion of PM2.5-PRI,TON
+37181,1.179313,Phenanthrene,LB
+37181,0.2678368,PM10-Primary from certain diesel engines,TON
+37181,0.2464228,PM25-Primary from certain diesel engines,TON
+37181,0.3257841,PM10 Primary (Filt + Cond),TON
+37181,0.004861447,Sulfate Portion of PM2.5-PRI,TON
+37181,0.002447978,Arsenic,LB
+37181,37.07948,Acetaldehyde,LB
+37181,0.3006208,Acenaphthene,LB
+37181,0.1263663,Elemental Carbon portion of PM2.5-PRI,TON
+37181,0.2008767,PM2.5 Primary (Filt + Cond),TON
+37181,21.06474,Ethyl Benzene,LB
+37181,3.52816,Pyrene,LB
+37181,0.00014912762,Chromium (VI),LB
+37181,629.9806,Formaldehyde,LB
+37181,15.37427,"2,2,4-Trimethylpentane",LB
+37181,0.3927975,Elemental Carbon portion of PM2.5-PRI,TON
+37181,12.92912,Nitrogen Oxides,TON
+37185,2.86749,Xylenes (Mixed Isomers),LB
+37185,0.0015008896,"Benzo[g,h,i,]Perylene",LB
+37185,0.3242534,Acenaphthylene,LB
+37185,0.04414414,Chrysene,LB
+37185,0.08061272,Benz[a]Anthracene,LB
+37185,0.01059044,Manganese,LB
+37185,0.007812892,Nickel,LB
+37185,0.1368534,PM10-Primary from certain diesel engines,TON
+37185,0.007703676,Ammonia,TON
+37185,0.1647223,PM10 Primary (Filt + Cond),TON
+37195,0.03486446,Benzo[b]Fluoranthene,LB
+37195,0.004763866,"Dibenzo[a,h]Anthracene",LB
+37195,5.892024,Ethyl Benzene,LB
+37195,0.4228665,PM25-Primary from certain diesel engines,TON
+37187,0.00694367,Acrolein,LB
+37187,0.00013165366,Pyrene,LB
+37187,6.632828e-05,Benz[a]Anthracene,LB
+37187,0.8587384,Acetaldehyde,LB
+37187,0.01140903,Volatile Organic Compounds,TON
+37067,13.149772,Benzo[b]Fluoranthene,LB
+37067,47.7727,Fluoranthene,LB
+37067,11.169474,Arsenic,LB
+37067,174.1047,Phenanthrene,LB
+37067,18.61843,Methane,TON
+37067,4.871121,Elemental Carbon portion of PM2.5-PRI,TON
+37067,27.49888,PM2.5 Primary (Filt + Cond),TON
+37067,667.8411,Volatile Organic Compounds,TON
+37073,0.012422558,"1,3-Butadiene",LB
+37073,0.09284636,Hexane,LB
+37073,0.2376006,Xylenes (Mixed Isomers),LB
+37073,0.00016416784,Fluoranthene,LB
+37073,0.004884019,Nitrogen Oxides,TON
+37021,0.06472042,Pyrene,LB
+37021,0.171574,Acenaphthylene,LB
+37021,41.6311,Benzene,LB
+37021,12.053192,Acetaldehyde,LB
+37021,0.01527217,Organic Carbon portion of PM2.5-PRI,TON
+37021,0.03034092,PM2.5 Primary (Filt + Cond),TON
+37021,0.009623584,Sulfur Dioxide,TON
+37041,0.3854914,Acrolein,LB
+37041,0.3551412,Propionaldehyde,LB
+37041,0.018862992,"Benzo[g,h,i,]Perylene",LB
+37059,0.007644344,Styrene,LB
+37059,0.02744966,Acrolein,LB
+37059,0.612338,Toluene,LB
+37059,0.001581966,"Benzo[g,h,i,]Perylene",LB
+37059,0.0002372638,Chrysene,LB
+37059,0.0002691192,Benz[a]Anthracene,LB
+37059,0.7683752,Benzene,LB
+37059,2.260108e-05,Mercury,LB
+37059,0.001953876,Ammonia,TON
+37059,0.03018521,Nitrogen Oxides,TON
+37059,0.001190829,Sulfur Dioxide,TON
+37081,21.41366,Hexane,LB
+37081,0.000363896,Chromium (VI),LB
+37081,0.013519116,Benzo[b]Fluoranthene,LB
+37081,0.4609056,Benz[a]Anthracene,LB
+37081,0.6381383,PM10 Primary (Filt + Cond),TON
+37081,4.465357,Volatile Organic Compounds,TON
+37139,0.0005805722,Nickel,LB
+37139,0.0631634,Phenanthrene,LB
+37139,0.5796848,Naphthalene,LB
+37139,0.01253248,PM10-Primary from certain diesel engines,TON
+37139,0.343387,Toluene,LB
+37139,0.01867011,Anthracene,LB
+37139,0.335093,Xylenes (Mixed Isomers),LB
+37139,0.0296649,Acenaphthylene,LB
+37163,0.0005488262,Nitrate portion of PM2.5-PRI,TON
+37163,0.009957702,Sulfate Portion of PM2.5-PRI,TON
+37163,1.582225,Volatile Organic Compounds,TON
+37163,1.2073146,Fluoranthene,LB
+37163,1.5074764,Acenaphthylene,LB
+37163,0.09636484,Chrysene,LB
+37099,6.632694e-05,Acenaphthene,LB
+37099,0.0003610218,Phenanthrene,LB
+37099,0.0001343501,Fluorene,LB
+37099,0.2279754,Toluene,LB
+37099,5.693828e-05,Anthracene,LB
+37099,0.0204387,Formaldehyde,LB
+37099,7.897725e-07,Sulfate Portion of PM2.5-PRI,TON
+37197,14.326706,Hexane,LB
+37197,1.2466242,Benz[a]Anthracene,LB
+37197,0.006588921,Nitrate portion of PM2.5-PRI,TON
+37197,1342.3712,Ethyl Benzene,LB
+37197,2616.076,"2,2,4-Trimethylpentane",LB
+37197,38.99964,Volatile Organic Compounds,TON
+37189,32.0572,Hexane,LB
+37187,22.04916,"1,3-Butadiene",LB
+37187,118.3258,Hexane,LB
+37187,8.109242,Naphthalene,LB
+37187,0.1318439,Ammonia,TON
+37187,0.1276591,PM10 Primary (Filt + Cond),TON
+37187,0.03867968,Sulfur Dioxide,TON
+37187,0.001475469,Sulfate Portion of PM2.5-PRI,TON
+37187,10900.066,Toluene,LB
+37187,2.894074,Anthracene,LB
+37187,5.619572,Pyrene,LB
+37187,0.0017551104,Chromium (VI),LB
+37187,1.0638122,Benzo[a]Pyrene,LB
+37187,0.02424632,"Dibenzo[a,h]Anthracene",LB
+37187,3.395832,Acenaphthene,LB
+37187,2.202155,PM10 Primary (Filt + Cond),TON
+37197,0.0315954,Toluene,LB
+37197,0.007182478,Hexane,LB
+37197,4.704296e-07,Manganese,LB
+37197,6.670237e-06,Methane,TON
+37197,1.239056e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.0003089499,Nitrogen Oxides,TON
+37197,1.568625e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37197,0.0001585501,Volatile Organic Compounds,TON
+37193,0.0354798,PM10 Primary (Filt + Cond),TON
+37193,0.0006197307,Sulfate Portion of PM2.5-PRI,TON
+37193,0.820489,Acrolein,LB
+37193,0.6679542,Toluene,LB
+37193,0.03851396,Anthracene,LB
+37193,0.6498012,Xylenes (Mixed Isomers),LB
+37193,10.249108,Formaldehyde,LB
+37193,0.008364808,Benzo[a]Pyrene,LB
+37193,0.13113682,Phenanthrene,LB
+37185,0.6416228,Xylenes (Mixed Isomers),LB
+37185,0.008420368,Organic Carbon portion of PM2.5-PRI,TON
+37067,81.69136,Toluene,LB
+37067,4.447078,Fluoranthene,LB
+37067,0.00502924,"Dibenzo[a,h]Anthracene",LB
+37067,0.0003574806,Mercury,LB
+37067,0.002379898,Nitrate portion of PM2.5-PRI,TON
+37135,15.335738,"1,3-Butadiene",LB
+37135,14.280456,Hexane,LB
+37135,1.2511106,Anthracene,LB
+37135,49.74942,Xylenes (Mixed Isomers),LB
+37135,0.3038768,Benz[a]Anthracene,LB
+37135,0.09878794,Ammonia,TON
+37135,0.04029384,Sulfur Dioxide,TON
+37111,6.36697,Propionaldehyde,LB
+37111,3.337324e-05,Chromium (VI),LB
+37111,0.04353144,Chrysene,LB
+37111,3.028722,"2,2,4-Trimethylpentane",LB
+37111,0.01989844,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.6947681,Volatile Organic Compounds,TON
+37005,21.60476,Acetaldehyde,LB
+37005,0.1569688,Acenaphthene,LB
+37005,2.313282,Carbon Monoxide,TON
+37005,0.014172866,Chrysene,LB
+37007,0.3547968,Ethyl Benzene,LB
+37007,0.7844688,Xylenes (Mixed Isomers),LB
+37007,0.0001420881,Nitrate portion of PM2.5-PRI,TON
+37007,0.07342986,PM10 Primary (Filt + Cond),TON
+37007,0.002088681,Sulfate Portion of PM2.5-PRI,TON
+37089,0.0005649674,Arsenic,LB
+37089,0.004337478,Ammonia,TON
+37089,0.00317828,Acenaphthylene,LB
+37089,0.0006739162,Chrysene,LB
+37089,0.000367411,Benz[a]Anthracene,LB
+37177,0.0005157984,Nickel,LB
+37177,0.3984022,Naphthalene,LB
+37177,1.422684e-05,Nitrate portion of PM2.5-PRI,TON
+37177,0.005351482,PM2.5 Primary (Filt + Cond),TON
+37177,0.0001508083,Sulfate Portion of PM2.5-PRI,TON
+37177,0.002944838,Benzo[b]Fluoranthene,LB
+37197,10.13762,PM10 Primary (Filt + Cond),TON
+37197,0.1459397,Sulfate Portion of PM2.5-PRI,TON
+37197,0.07476118,Mercury,LB
+37189,0.0478597,Styrene,LB
+37189,0.05108466,Acrolein,LB
+37189,0.0017881862,Anthracene,LB
+37189,0.000567994,Benzo[k]Fluoranthene,LB
+37189,1.713372e-05,"Dibenzo[a,h]Anthracene",LB
+37189,0.0005766344,Benz[a]Anthracene,LB
+37189,2.462696,Benzene,LB
+37189,0.0009522339,Methane,TON
+37181,8.16577,Ethyl Benzene,LB
+37181,0.06192952,Benzo[b]Fluoranthene,LB
+37181,0.009885714,Arsenic,LB
+37181,0.852041,Acenaphthene,LB
+37181,1.470788,Volatile Organic Compounds,TON
+37179,0.2523514,PM10-Primary from certain diesel engines,TON
+37179,0.03786062,Ammonia,TON
+37179,0.7237606,Fluoranthene,LB
+37173,0.14766362,Acrolein,LB
+37173,1.4230372e-05,"Benzo[g,h,i,]Perylene",LB
+37173,0.0002204706,Fluoranthene,LB
+37173,59.10029,Carbon Dioxide,TON
+37193,2.113546e-05,Chromium (VI),LB
+37193,0.0002118724,Mercury,LB
+37185,0.007852404,"Benzo[g,h,i,]Perylene",LB
+37185,0.009265878,"Indeno[1,2,3-c,d]Pyrene",LB
+37185,0.00011094906,Mercury,LB
+37185,0.1861025,Organic Carbon portion of PM2.5-PRI,TON
+37195,95.11418,Xylenes (Mixed Isomers),LB
+37195,3.89172,Volatile Organic Compounds,TON
+37191,0.003029597,Nitrate portion of PM2.5-PRI,TON
+37191,0.2386871,Organic Carbon portion of PM2.5-PRI,TON
+37191,0.5781439,PM2.5 Primary (Filt + Cond),TON
+37191,18.201596,Acrolein,LB
+37191,0.8101622,Anthracene,LB
+37191,16.736276,Xylenes (Mixed Isomers),LB
+37189,0.2778496,Chrysene,LB
+37189,0.008573662,"Dibenzo[a,h]Anthracene",LB
+37189,0.284182,Benz[a]Anthracene,LB
+37189,1.0159212,Acenaphthene,LB
+37189,0.8474748,Ammonia,TON
+37189,16.19817,Volatile Organic Compounds,TON
+37187,1.1121756,Styrene,LB
+37187,0.7814972,Pyrene,LB
+37187,0.004272752,"Indeno[1,2,3-c,d]Pyrene",LB
+37187,32.20476,Acetaldehyde,LB
+37187,2.210616,Carbon Monoxide,TON
+37187,0.07926754,Organic Carbon portion of PM2.5-PRI,TON
+37183,21.89128,Hexane,LB
+37183,2.28669,Anthracene,LB
+37183,0.0200938,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,0.0564766,Arsenic,LB
+37183,1.536614,PM25-Primary from certain diesel engines,TON
+37183,0.1292864,Sulfur Dioxide,TON
+37183,0.1405685,Sulfate Portion of PM2.5-PRI,TON
+37183,4.586504,Volatile Organic Compounds,TON
+37183,0.01614084,Chromium (VI),LB
+37183,57.66046,Acenaphthylene,LB
+37183,5.581938,Benzo[a]Pyrene,LB
+37183,3.904556,Benz[a]Anthracene,LB
+37183,0.01972753,Nitrate portion of PM2.5-PRI,TON
+37183,2.985381,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,218.6984,Volatile Organic Compounds,TON
+37173,0.04087358,Propionaldehyde,LB
+37173,0.0009034162,Chrysene,LB
+37173,0.6660846,Acetaldehyde,LB
+37173,1.025443,Carbon Monoxide,TON
+37173,0.001294808,Nitrous Oxide,TON
+37173,0.0009941172,Organic Carbon portion of PM2.5-PRI,TON
+37095,0.7375842,Propionaldehyde,LB
+37095,0.1341101,Pyrene,LB
+37095,0.00279035,Benzo[b]Fluoranthene,LB
+37095,0.10199318,Fluoranthene,LB
+37095,6.118138,Acetaldehyde,LB
+37095,0.01351937,Elemental Carbon portion of PM2.5-PRI,TON
+37089,3.253708e-05,Chromium (VI),LB
+37089,0.8570872,Acenaphthylene,LB
+37089,0.2325486,Benz[a]Anthracene,LB
+37089,14.617632,Benzene,LB
+37089,2.871244e-05,Mercury,LB
+37089,0.018052756,Nickel,LB
+37089,0.006003294,Arsenic,LB
+37089,0.1788708,Elemental Carbon portion of PM2.5-PRI,TON
+37089,0.01553048,Sulfur Dioxide,TON
+37079,0.03220364,Benzo[b]Fluoranthene,LB
+37079,13.093484,Benzene,LB
+37079,2187.223,Carbon Dioxide,TON
+37073,0.2379824,Fluoranthene,LB
+37073,0.1728708,Acenaphthylene,LB
+37073,2.949908,Benzene,LB
+37073,0.09988133,PM10 Primary (Filt + Cond),TON
+37059,3.995536,Ethyl Benzene,LB
+37059,0.003053308,Chrysene,LB
+37059,3.723148e-05,Mercury,LB
+37059,0.0007118366,Arsenic,LB
+37059,2.916954,Carbon Monoxide,TON
+37049,5.362194,Hexane,LB
+37049,10.735676,Propionaldehyde,LB
+37049,1.137022,Fluorene,LB
+37049,0.05499409,Ammonia,TON
+37049,0.03474331,Organic Carbon portion of PM2.5-PRI,TON
+37037,0.0004836002,Chromium (VI),LB
+37037,8.531778,Fluoranthene,LB
+37037,0.006153722,"Dibenzo[a,h]Anthracene",LB
+37037,0.003089173,Nitrate portion of PM2.5-PRI,TON
+37037,11.44131,Volatile Organic Compounds,TON
+37037,49.16648,Hexane,LB
+37037,105.2073,Propionaldehyde,LB
+37025,364.0396,Xylenes (Mixed Isomers),LB
+37025,0.07164244,"Benzo[g,h,i,]Perylene",LB
+37025,0.04811286,Benzo[k]Fluoranthene,LB
+37025,3084.052,Formaldehyde,LB
+37025,0.04735768,"Dibenzo[a,h]Anthracene",LB
+37025,0.0010051974,Mercury,LB
+37025,4.234057,Methane,TON
+37025,1.933517,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.6973589,Sulfur Dioxide,TON
+37025,16.341762,Hexane,LB
+37025,650.9672,Formaldehyde,LB
+37025,0.0393385,Arsenic,LB
+37025,69.15652,Naphthalene,LB
+37025,8.38483,Styrene,LB
+37025,19.203698,"1,3-Butadiene",LB
+37013,0.056491,Pyrene,LB
+37013,0.0012168956,Benzo[b]Fluoranthene,LB
+37013,0.0308625,Acenaphthylene,LB
+37013,0.004081394,Benzo[a]Pyrene,LB
+37013,0.535304,Benzene,LB
+37013,0.0002097652,Arsenic,LB
+37013,0.001050616,Ammonia,TON
+37015,0.02852864,Ethyl Benzene,LB
+37015,0.166767,Toluene,LB
+37015,0.0009344756,Propionaldehyde,LB
+37015,7.613518e-05,Pyrene,LB
+37015,0.0002067438,Acenaphthylene,LB
+37015,3.479583e-05,Methane,TON
+37015,4.352868e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37015,2.573096e-05,Nitrous Oxide,TON
+37015,5.085059e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37015,5.511136e-07,Sulfate Portion of PM2.5-PRI,TON
+37009,2227.634,Xylenes (Mixed Isomers),LB
+37005,0.0005965462,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,0.1390372,Fluoranthene,LB
+37005,0.1391782,Acenaphthylene,LB
+37005,0.04681093,PM2.5 Primary (Filt + Cond),TON
+37067,0.01219663,PM2.5 Primary (Filt + Cond),TON
+37067,5.326544,Xylenes (Mixed Isomers),LB
+37067,0.00404465,Benzo[b]Fluoranthene,LB
+37067,0.004723748,Fluoranthene,LB
+37067,0.02984787,Ammonia,TON
+37067,2.922447e-05,Nitrate portion of PM2.5-PRI,TON
+37067,0.005230563,Organic Carbon portion of PM2.5-PRI,TON
+37049,5.248868,Benzene,LB
+37049,18.669206,Acetaldehyde,LB
+37049,0.0009973219,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.01772586,Ammonia,TON
+37049,0.002539154,Organic Carbon portion of PM2.5-PRI,TON
+37049,0.006060745,PM2.5 Primary (Filt + Cond),TON
+37049,0.1749684,Acrolein,LB
+37049,4.522012,Toluene,LB
+37049,2.124548e-05,Chromium (VI),LB
+37049,0.003663134,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.0014555208,Chrysene,LB
+37017,0.0013015706,"Benzo[g,h,i,]Perylene",LB
+37017,0.0003864686,Fluoranthene,LB
+37017,0.0004826692,Benzo[a]Pyrene,LB
+37017,0.2449736,"2,2,4-Trimethylpentane",LB
+37017,2.593982,Acetaldehyde,LB
+37017,0.0003154562,Organic Carbon portion of PM2.5-PRI,TON
+37017,1.980447e-05,Sulfate Portion of PM2.5-PRI,TON
+37003,2.581242,Xylenes (Mixed Isomers),LB
+37017,2.011668,Fluoranthene,LB
+37013,1.9037564e-05,"Benzo[g,h,i,]Perylene",LB
+37013,9.518822e-05,Chrysene,LB
+37013,53.56144,Formaldehyde,LB
+37013,0.01310426,PM10 Primary (Filt + Cond),TON
+37013,0.005681478,PM2.5 Primary (Filt + Cond),TON
+37011,31.30132,Ethyl Benzene,LB
+37011,0.016832426,"Indeno[1,2,3-c,d]Pyrene",LB
+37011,0.2107156,Acenaphthylene,LB
+37011,0.007835958,Manganese,LB
+37011,19.02206,Carbon Monoxide,TON
+37011,0.0383879,Nitrous Oxide,TON
+37027,999.0016,Carbon Dioxide,TON
+37027,0.01121352,Remaining PMFINE portion of PM2.5-PRI,TON
+37027,0.2332014,Styrene,LB
+37027,18.837562,Toluene,LB
+37027,0.015309148,Pyrene,LB
+37027,16.824404,Formaldehyde,LB
+37027,0.02546266,Manganese,LB
+37027,0.4201942,Naphthalene,LB
+37189,0.3670092,PM10 Primary (Filt + Cond),TON
+37189,18.235638,Toluene,LB
+37189,5.828748e-05,Mercury,LB
+37073,33.29584,Formaldehyde,LB
+37073,21.67134,Carbon Monoxide,TON
+37073,0.08228858,Ammonia,TON
+37073,0.08999969,PM10 Primary (Filt + Cond),TON
+37063,67334.55,Carbon Dioxide,TON
+37063,6.112163,PM25-Primary from certain diesel engines,TON
+37063,3.966778,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.07041357,Nitrous Oxide,TON
+37063,0.9775403,Ammonia,TON
+37063,9.180342,Fluoranthene,LB
+37063,1599.273,Formaldehyde,LB
+37063,0.03457284,"Dibenzo[a,h]Anthracene",LB
+37145,3.972792e-05,Benz[a]Anthracene,LB
+37145,0.000197696,Acenaphthene,LB
+37145,73.39179,Carbon Dioxide,TON
+37145,0.0003885583,Sulfur Dioxide,TON
+37145,5.94655e-05,Sulfate Portion of PM2.5-PRI,TON
+37189,0.013780928,"1,3-Butadiene",LB
+37189,0.0003692464,Pyrene,LB
+37189,2.471696e-08,Chromium (VI),LB
+37189,6.013032e-05,Chrysene,LB
+37189,0.0006761768,Naphthalene,LB
+37189,0.0003427643,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.004022571,PM2.5 Primary (Filt + Cond),TON
+37183,10.495972,Toluene,LB
+37183,0.9376288,Pyrene,LB
+37183,11.700204,Xylenes (Mixed Isomers),LB
+37183,4.363762e-05,Chromium (VI),LB
+37183,0.01739984,Nickel,LB
+37183,1.2565672,Phenanthrene,LB
+37183,0.03593448,Sulfur Dioxide,TON
+37057,10.79084,Naphthalene,LB
+37057,0.2379593,PM25-Primary from certain diesel engines,TON
+37057,0.099777,Elemental Carbon portion of PM2.5-PRI,TON
+37057,3.378324,Ethyl Benzene,LB
+37057,0.3138096,Anthracene,LB
+37057,0.4826626,Acenaphthylene,LB
+37191,10.06753,Carbon Monoxide,TON
+37191,812.8703,Carbon Dioxide,TON
+37191,0.6100161,Volatile Organic Compounds,TON
+37191,0.4895116,Pyrene,LB
+37191,4.53665e-05,Chromium (VI),LB
+37191,49.15674,Acetaldehyde,LB
+37153,0.002610258,"Benzo[g,h,i,]Perylene",LB
+37153,0.002720534,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.0212493,Manganese,LB
+37153,9.661828,Naphthalene,LB
+37153,0.01099185,Methane,TON
+37153,0.000639145,Nitrate portion of PM2.5-PRI,TON
+37153,7.361343,Nitrogen Oxides,TON
+37153,0.05089064,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.006874071,Sulfur Dioxide,TON
+37075,0.007405504,Acenaphthylene,LB
+37069,0.006810892,Benzo[b]Fluoranthene,LB
+37069,0.012406836,Fluoranthene,LB
+37069,0.005977248,Benz[a]Anthracene,LB
+37069,0.007481246,Acenaphthene,LB
+37069,7.297491,Carbon Monoxide,TON
+37069,0.006985749,Remaining PMFINE portion of PM2.5-PRI,TON
+37069,0.02543825,Sulfur Dioxide,TON
+37019,1.4766606,Acrolein,LB
+37019,0.013493134,Anthracene,LB
+37019,30.7489,Xylenes (Mixed Isomers),LB
+37019,0.1199505,Methane,TON
+37019,0.01946678,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.00214977,Anthracene,LB
+37019,0.003667758,Fluoranthene,LB
+37019,0.0002106516,Manganese,LB
+37015,0.1423346,Styrene,LB
+37015,17.230898,Xylenes (Mixed Isomers),LB
+37015,1.90053,Formaldehyde,LB
+37015,0.001639752,Benz[a]Anthracene,LB
+37015,0.1259486,Naphthalene,LB
+37015,0.001607841,Nitrous Oxide,TON
+37015,0.00121526,Sulfur Dioxide,TON
+37015,0.0473449,Volatile Organic Compounds,TON
+37015,1.5825504,Ethyl Benzene,LB
+37015,5.860966,Xylenes (Mixed Isomers),LB
+37015,0.0010637688,Benzo[a]Pyrene,LB
+37015,2.080406,"2,2,4-Trimethylpentane",LB
+37011,1.9097374,"Benzo[g,h,i,]Perylene",LB
+37011,0.4546774,Chrysene,LB
+37011,0.01453881,Mercury,LB
+37011,527.4188,Acetaldehyde,LB
+37011,7.789254,Phenanthrene,LB
+37011,0.8036249,PM2.5 Primary (Filt + Cond),TON
+37011,26.72561,Volatile Organic Compounds,TON
+37005,0.016758606,"1,3-Butadiene",LB
+37005,3.630518e-05,Chrysene,LB
+37005,5.230176e-05,Benzo[a]Pyrene,LB
+37005,0.1288988,Benzene,LB
+37005,2.32885e-06,Nickel,LB
+37003,0.0004328998,"Benzo[g,h,i,]Perylene",LB
+37003,0.0014461306,Nickel,LB
+37003,0.11475836,Phenanthrene,LB
+37003,0.3295233,Carbon Monoxide,TON
+37003,0.02573964,Elemental Carbon portion of PM2.5-PRI,TON
+37003,0.0001267889,Nitrate portion of PM2.5-PRI,TON
+37003,0.001519484,Sulfur Dioxide,TON
+37003,0.7238306,Acrolein,LB
+37003,0.9768176,Hexane,LB
+37003,0.003645052,PM10-Primary from certain diesel engines,TON
+37003,1.7792458,Propionaldehyde,LB
+37003,0.12833992,Fluoranthene,LB
+37003,3.153064e-05,Benzo[k]Fluoranthene,LB
+37051,10.25978,Carbon Monoxide,TON
+37051,0.01751342,Nitrous Oxide,TON
+37051,0.016074122,"Indeno[1,2,3-c,d]Pyrene",LB
+37051,7.87521,"2,2,4-Trimethylpentane",LB
+37051,0.018423538,Arsenic,LB
+37033,0.04852509,Volatile Organic Compounds,TON
+37017,0.10155644,Acrolein,LB
+37017,0.005136436,"Benzo[g,h,i,]Perylene",LB
+37017,0.005326432,Phenanthrene,LB
+37017,0.008286957,Methane,TON
+37017,0.00477996,Sulfur Dioxide,TON
+37017,0.07394654,Volatile Organic Compounds,TON
+37009,0.660972,Xylenes (Mixed Isomers),LB
+37009,2.305768e-06,Chromium (VI),LB
+37009,0.0002640778,Benzo[b]Fluoranthene,LB
+37009,0.0002640778,Benzo[k]Fluoranthene,LB
+37009,1.1137986e-05,"Dibenzo[a,h]Anthracene",LB
+37009,30.94287,Carbon Dioxide,TON
+37009,0.0009415174,Sulfur Dioxide,TON
+37009,0.02193743,Volatile Organic Compounds,TON
+37145,0.007706048,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,5.776158,"2,2,4-Trimethylpentane",LB
+37145,0.007595324,Manganese,LB
+37145,0.2974608,Naphthalene,LB
+37145,0.0141205,Sulfur Dioxide,TON
+37017,130.85832,Acetaldehyde,LB
+37017,0.9095508,Acenaphthene,LB
+37017,1.365562,PM10-Primary from certain diesel engines,TON
+37017,0.01116153,Nitrous Oxide,TON
+37013,5.362456,Toluene,LB
+37013,2.249486,Hexane,LB
+37013,0.011690354,Nickel,LB
+37013,0.002567628,Arsenic,LB
+37013,0.002014418,Nitrous Oxide,TON
+37013,0.2807227,PM10 Primary (Filt + Cond),TON
+37013,0.2077464,PM2.5 Primary (Filt + Cond),TON
+37021,1.423786,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,950.3626,Formaldehyde,LB
+37021,17.132208,Phenanthrene,LB
+37021,6.376042,Fluorene,LB
+37021,2.311869,Methane,TON
+37019,849.3006,Formaldehyde,LB
+37019,1.9383492,Benz[a]Anthracene,LB
+37019,9.759884,Phenanthrene,LB
+37019,88.96144,Naphthalene,LB
+37019,19.09015,Carbon Monoxide,TON
+37019,3.268881,PM10 Primary (Filt + Cond),TON
+37011,1.010173,Acetaldehyde,LB
+37011,0.00163328,Nitrous Oxide,TON
+37011,0.004956138,PM10 Primary (Filt + Cond),TON
+37011,0.064217,Styrene,LB
+37011,0.002744928,"Benzo[g,h,i,]Perylene",LB
+37003,0.32365,Styrene,LB
+37003,1.5752166,Toluene,LB
+37003,0.08535508,Anthracene,LB
+37003,5.120662e-06,Chromium (VI),LB
+37003,0.19144556,Fluoranthene,LB
+37003,0.01223932,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.0013822938,Benzo[k]Fluoranthene,LB
+37179,0.0016527704,Benzo[a]Pyrene,LB
+37179,5.465532e-05,Arsenic,LB
+37179,0.002036591,Nitrous Oxide,TON
+37179,0.0004474718,Remaining PMFINE portion of PM2.5-PRI,TON
+37179,0.009824522,Pyrene,LB
+37197,0.04496622,Methane,TON
+37197,0.03110478,PM10 Primary (Filt + Cond),TON
+37197,3.048752,Ethyl Benzene,LB
+37197,0.585313,"1,3-Butadiene",LB
+37197,5.27218,"2,2,4-Trimethylpentane",LB
+37197,14.39948,Benzene,LB
+37197,0.006738762,Manganese,LB
+37197,0.006250528,Arsenic,LB
+37197,64.9117,Acetaldehyde,LB
+37193,0.4476362,Acrolein,LB
+37193,60.348,Toluene,LB
+37193,5.270004e-06,Chromium (VI),LB
+37193,12.227244,"2,2,4-Trimethylpentane",LB
+37193,0.005713022,Benz[a]Anthracene,LB
+37193,0.01088519,PM2.5 Primary (Filt + Cond),TON
+37183,0.2124108,Nickel,LB
+37183,37.70308,Hexane,LB
+37183,2.77322,Anthracene,LB
+37183,61.13676,Propionaldehyde,LB
+37183,0.05935307,Sulfate Portion of PM2.5-PRI,TON
+37183,7.024948,Volatile Organic Compounds,TON
+37199,1.11128e-05,Mercury,LB
+37199,0.006454548,Nickel,LB
+37199,0.0009211417,Nitrous Oxide,TON
+37199,0.003015544,Remaining PMFINE portion of PM2.5-PRI,TON
+37199,14.792708,Xylenes (Mixed Isomers),LB
+37199,11.790754,"2,2,4-Trimethylpentane",LB
+37197,4.98427e-05,Sulfate Portion of PM2.5-PRI,TON
+37197,0.04614573,Volatile Organic Compounds,TON
+37197,0.18358414,Acrolein,LB
+37197,1.1467394e-06,Nickel,LB
+37197,0.002003208,Ammonia,TON
+37195,1.0450982,"1,3-Butadiene",LB
+37195,21.94668,Toluene,LB
+37195,0.0005615982,"Dibenzo[a,h]Anthracene",LB
+37195,0.05455318,Phenanthrene,LB
+37195,0.005555319,Elemental Carbon portion of PM2.5-PRI,TON
+37195,1.356363,Nitrogen Oxides,TON
+37195,0.0009845213,Sulfate Portion of PM2.5-PRI,TON
+37195,0.110126,"1,3-Butadiene",LB
+37195,0.3926166,Xylenes (Mixed Isomers),LB
+37195,2.060646e-05,Mercury,LB
+37195,0.002148878,Fluorene,LB
+37195,2.225151,Carbon Monoxide,TON
+37183,69.96302,"1,3-Butadiene",LB
+37183,0.02335366,"Indeno[1,2,3-c,d]Pyrene",LB
+37183,7.03995,Acenaphthene,LB
+37183,3.838722,PM10 Primary (Filt + Cond),TON
+37183,0.2749199,Remaining PMFINE portion of PM2.5-PRI,TON
+37183,180.8681,Benzene,LB
+37141,54.56754,Ethyl Benzene,LB
+37141,24.41114,Styrene,LB
+37141,0.0425686,Benzo[b]Fluoranthene,LB
+37141,9.389694,Acenaphthylene,LB
+37141,40.04036,"2,2,4-Trimethylpentane",LB
+37141,0.2659008,Nickel,LB
+37141,14.6725,Phenanthrene,LB
+37141,0.002840854,Nitrate portion of PM2.5-PRI,TON
+37141,0.2252572,Organic Carbon portion of PM2.5-PRI,TON
+37141,0.09987616,Sulfur Dioxide,TON
+37129,60.19724,Ethyl Benzene,LB
+37129,1.499709,Benz[a]Anthracene,LB
+37129,5.801928,Acenaphthene,LB
+37129,10.188174,Fluorene,LB
+37129,0.00481357,Nitrate portion of PM2.5-PRI,TON
+37129,37.78603,Nitrogen Oxides,TON
+37129,1.653767,PM2.5 Primary (Filt + Cond),TON
+37129,0.2161307,Remaining PMFINE portion of PM2.5-PRI,TON
+37129,0.116026,Sulfur Dioxide,TON
+37129,0.08673736,Sulfate Portion of PM2.5-PRI,TON
+37129,10.33953,Volatile Organic Compounds,TON
+37123,6.469136e-05,Benzo[k]Fluoranthene,LB
+37123,0.04411658,Formaldehyde,LB
+37123,1.6318374e-05,Manganese,LB
+37123,4.195308e-07,Mercury,LB
+37109,17.688476,"1,3-Butadiene",LB
+37109,31.39492,Propionaldehyde,LB
+37109,0.02235472,"Indeno[1,2,3-c,d]Pyrene",LB
+37109,0.012547304,Benzo[k]Fluoranthene,LB
+37109,1.020046,Benz[a]Anthracene,LB
+37107,0.35675,"2,2,4-Trimethylpentane",LB
+37107,6.178297e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37107,0.0004712006,PM10 Primary (Filt + Cond),TON
+37107,0.0003455647,PM2.5 Primary (Filt + Cond),TON
+37107,3.385848e-05,Sulfur Dioxide,TON
+37107,1.0282528,Xylenes (Mixed Isomers),LB
+37107,0.0003581304,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.0002168946,Benzo[b]Fluoranthene,LB
+37107,0.000686476,Fluoranthene,LB
+37107,0.00018714758,Chrysene,LB
+37097,48.6174,Toluene,LB
+37097,16.425574,Hexane,LB
+37097,0.11506738,Manganese,LB
+37097,0.0984472,Nickel,LB
+37091,0.2944414,Acenaphthylene,LB
+37091,0.0724146,Chrysene,LB
+37091,0.00592301,Nickel,LB
+37091,0.175133,Acenaphthene,LB
+37091,3.7085,Xylenes (Mixed Isomers),LB
+37091,0.011096216,Benzo[b]Fluoranthene,LB
+37091,0.3104149,Volatile Organic Compounds,TON
+37103,72.09178,Acrolein,LB
+37103,8642.412,Xylenes (Mixed Isomers),LB
+37103,1.0667008,Chrysene,LB
+37103,1310.673,Acetaldehyde,LB
+37103,4.020932,Acenaphthene,LB
+37103,2.204046,Methane,TON
+37103,51905.89,Carbon Dioxide,TON
+37103,0.2940088,Elemental Carbon portion of PM2.5-PRI,TON
+37103,3.633604,PM10 Primary (Filt + Cond),TON
+37103,66.23869,Volatile Organic Compounds,TON
+37095,0.03916808,Benz[a]Anthracene,LB
+37095,21.76856,"1,3-Butadiene",LB
+37095,34.21908,Carbon Monoxide,TON
+37093,0.017306262,"1,3-Butadiene",LB
+37093,0.0001003157,Anthracene,LB
+37093,0.0003233604,Arsenic,LB
+37093,0.0007453234,Phenanthrene,LB
+37093,0.0003335318,Fluorene,LB
+37093,0.000845687,Naphthalene,LB
+37093,2.040994e-06,Nitrate portion of PM2.5-PRI,TON
+37093,0.01402622,PM10 Primary (Filt + Cond),TON
+37093,0.000297288,Ammonia,TON
+37093,0.001586941,PM2.5 Primary (Filt + Cond),TON
+37087,0.0018342568,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,1.760737,Hexane,LB
+37087,7.71285,Naphthalene,LB
+37087,885.6352,Carbon Dioxide,TON
+37087,0.158669,PM10-Primary from certain diesel engines,TON
+37083,4.516002,Ethyl Benzene,LB
+37083,0.33188,PM2.5 Primary (Filt + Cond),TON
+37083,0.01192769,Sulfur Dioxide,TON
+37079,0.5865688,Acrolein,LB
+37079,0.07235014,Pyrene,LB
+37079,0.5492036,Xylenes (Mixed Isomers),LB
+37079,0.0003937084,"Indeno[1,2,3-c,d]Pyrene",LB
+37079,7.58767,Formaldehyde,LB
+37079,0.701173,Benzene,LB
+37079,0.08978198,Phenanthrene,LB
+37079,0.003668646,Methane,TON
+37079,0.03760941,PM10-Primary from certain diesel engines,TON
+37079,0.03460083,PM25-Primary from certain diesel engines,TON
+37079,0.02324429,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.04996462,PM10 Primary (Filt + Cond),TON
+37079,0.001716906,Sulfur Dioxide,TON
+37079,0.04951674,Acenaphthene,LB
+37079,0.0125574,Methane,TON
+37079,0.00316458,PM10-Primary from certain diesel engines,TON
+37079,0.002911532,PM25-Primary from certain diesel engines,TON
+37079,0.003741986,PM2.5 Primary (Filt + Cond),TON
+37079,0.0922183,Volatile Organic Compounds,TON
+37079,17.498676,Formaldehyde,LB
+37079,0.4656718,"2,2,4-Trimethylpentane",LB
+37087,0.001023496,Organic Carbon portion of PM2.5-PRI,TON
+37087,0.05962468,Propionaldehyde,LB
+37087,0.004264236,Methane,TON
+37083,1963.8186,"1,3-Butadiene",LB
+37083,14.594054,"Benzo[g,h,i,]Perylene",LB
+37083,14.704984,Acenaphthene,LB
+37083,469.8359,Nitrogen Oxides,TON
+37075,0.04701152,Ethyl Benzene,LB
+37075,0.0015159498,Acrolein,LB
+37075,0.17364422,Xylenes (Mixed Isomers),LB
+37075,7.4481e-06,Manganese,LB
+37075,7.806414e-05,Acenaphthene,LB
+37075,0.927871,Carbon Dioxide,TON
+37075,1.946127e-05,Sulfur Dioxide,TON
+37071,10.086098,Benzo[a]Pyrene,LB
+37071,17141.488,"2,2,4-Trimethylpentane",LB
+37071,0.2803424,Mercury,LB
+37071,3.495456,Nickel,LB
+37071,14.07865,PM2.5 Primary (Filt + Cond),TON
+37071,376.257,Volatile Organic Compounds,TON
+37071,12440.524,Ethyl Benzene,LB
+37071,2778.978,"1,3-Butadiene",LB
+37071,78473.6,Toluene,LB
+37071,6.61101,Benzo[b]Fluoranthene,LB
+37071,26.11552,Fluoranthene,LB
+37071,6.014838,Chrysene,LB
+37069,34.28428,Xylenes (Mixed Isomers),LB
+37069,0.00011660742,Mercury,LB
+37069,14.77902,Nitrogen Oxides,TON
+37069,0.5730998,Carbon Monoxide,TON
+37069,1.512521e-06,Nitrate portion of PM2.5-PRI,TON
+37069,0.0001083418,Sulfur Dioxide,TON
+37069,0.003961542,Styrene,LB
+37069,9.57008e-09,Chromium (VI),LB
+37069,0.14119062,"2,2,4-Trimethylpentane",LB
+37069,0.14964564,Benzene,LB
+37069,9.59398e-08,Mercury,LB
+37069,0.0003306994,Fluorene,LB
+37063,0.088201,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,2.300268,Chrysene,LB
+37059,107.07644,Toluene,LB
+37059,4.737398,Anthracene,LB
+37059,0.0003835238,Chromium (VI),LB
+37059,0.010813414,"Indeno[1,2,3-c,d]Pyrene",LB
+37059,0.5659548,Chrysene,LB
+37059,739.03,Acetaldehyde,LB
+37059,0.4492554,Methane,TON
+37059,100.0901,Carbon Monoxide,TON
+37059,0.0263438,Nitrous Oxide,TON
+37059,0.315559,Ammonia,TON
+37059,0.08244874,Sulfur Dioxide,TON
+37059,0.04442311,Sulfate Portion of PM2.5-PRI,TON
+37059,0.18455348,Propionaldehyde,LB
+37059,0.018754898,Pyrene,LB
+37059,21.12198,Xylenes (Mixed Isomers),LB
+37059,0.05081054,Acenaphthylene,LB
+37059,0.00012304514,"Dibenzo[a,h]Anthracene",LB
+37059,0.0004608284,Nickel,LB
+37059,0.011145966,Acenaphthene,LB
+37059,0.02257828,Fluorene,LB
+37059,208.9759,Carbon Dioxide,TON
+37055,179268.1,Carbon Dioxide,TON
+37055,39703.36,Toluene,LB
+37055,249.3596,Propionaldehyde,LB
+37055,20.31516,Pyrene,LB
+37055,3.021098,Benzo[k]Fluoranthene,LB
+37055,8589.714,"2,2,4-Trimethylpentane",LB
+37047,0.06553956,Manganese,LB
+37047,0.00012981866,Mercury,LB
+37047,1.5681044,Acenaphthene,LB
+37047,2.70336,Fluorene,LB
+37047,52.17874,Naphthalene,LB
+37047,10.69089,Nitrogen Oxides,TON
+37047,0.5374147,PM2.5 Primary (Filt + Cond),TON
+37039,0.002977807,Ammonia,TON
+37039,4.561034e-05,Sulfate Portion of PM2.5-PRI,TON
+37039,2.61988,Hexane,LB
+37039,0.003299766,"Benzo[g,h,i,]Perylene",LB
+37039,0.0008716356,Benzo[k]Fluoranthene,LB
+37039,0.012593246,Acenaphthylene,LB
+37039,0.00083016,Chrysene,LB
+37041,1.2573178,"Benzo[g,h,i,]Perylene",LB
+37041,5.288066,Acenaphthylene,LB
+37041,0.010847008,"Dibenzo[a,h]Anthracene",LB
+37041,2.351352,Fluorene,LB
+37041,0.001436434,Nitrate portion of PM2.5-PRI,TON
+37041,0.2651402,Organic Carbon portion of PM2.5-PRI,TON
+37041,23.95642,Volatile Organic Compounds,TON
+37035,0.1642508,Nickel,LB
+37035,0.05033651,Nitrous Oxide,TON
+37035,0.3944658,Ammonia,TON
+37027,0.0324224,Anthracene,LB
+37027,0.00210697,Manganese,LB
+37027,0.0008474042,Nickel,LB
+37027,0.0002575554,Arsenic,LB
+37027,0.01979433,PM25-Primary from certain diesel engines,TON
+37027,0.00938718,Organic Carbon portion of PM2.5-PRI,TON
+37027,0.01823237,PM10-Primary from certain diesel engines,TON
+37027,0.02889332,Chrysene,LB
+37027,6.232328,Propionaldehyde,LB
+37027,47.072,Xylenes (Mixed Isomers),LB
+37027,1.92601,Volatile Organic Compounds,TON
+37023,1.8570962,Styrene,LB
+37023,4.25439,"1,3-Butadiene",LB
+37023,0.007576442,Benzo[a]Pyrene,LB
+37023,0.08180892,Benz[a]Anthracene,LB
+37023,61.09448,Acetaldehyde,LB
+37023,0.02493767,PM25-Primary from certain diesel engines,TON
+37023,1.230337,Nitrogen Oxides,TON
+37011,0.04944664,Acrolein,LB
+37011,0.011244542,Acenaphthylene,LB
+37011,0.0007232942,Chrysene,LB
+37011,0.0007475202,Benz[a]Anthracene,LB
+37011,0.0001462116,Nickel,LB
+37001,3.972244,Acenaphthylene,LB
+37001,18.067312,"2,2,4-Trimethylpentane",LB
+37001,0.03415682,Arsenic,LB
+37001,313.4838,Acetaldehyde,LB
+37001,1.936901,Elemental Carbon portion of PM2.5-PRI,TON
+37001,0.01016348,Nitrate portion of PM2.5-PRI,TON
+37001,2.646008,Anthracene,LB
+37055,0.0004711308,Anthracene,LB
+37055,0.000619623,Benzo[b]Fluoranthene,LB
+37055,0.000619623,Benzo[k]Fluoranthene,LB
+37003,0.6101432,Hexane,LB
+37003,0.0004869416,Anthracene,LB
+37003,0.0007465492,"Indeno[1,2,3-c,d]Pyrene",LB
+37003,0.0008737086,Fluoranthene,LB
+37003,0.0011715272,Manganese,LB
+37003,0.00371915,Methane,TON
+37003,0.001241293,PM2.5 Primary (Filt + Cond),TON
+37173,2.464558,Xylenes (Mixed Isomers),LB
+37161,0.13540174,Ethyl Benzene,LB
+37161,0.02980534,"1,3-Butadiene",LB
+37161,0.487537,Xylenes (Mixed Isomers),LB
+37161,0.0004072596,Fluoranthene,LB
+37161,0.0005362692,Benzo[a]Pyrene,LB
+37161,0.671513,Benzene,LB
+37161,0.02540065,Nitrogen Oxides,TON
+37161,0.0003521774,Organic Carbon portion of PM2.5-PRI,TON
+37161,0.003065096,PM10 Primary (Filt + Cond),TON
+37141,2.330712,Hexane,LB
+37139,0.00774849,Fluoranthene,LB
+37087,0.0663079,Propionaldehyde,LB
+37087,0.563692,Xylenes (Mixed Isomers),LB
+37087,0.002399342,"Benzo[g,h,i,]Perylene",LB
+37087,0.5317038,Formaldehyde,LB
+37087,0.001760422,Sulfur Dioxide,TON
+37021,49.29294,"1,3-Butadiene",LB
+37021,0.0516502,Benzo[k]Fluoranthene,LB
+37021,25222.3,Carbon Dioxide,TON
+37021,0.02188008,Nitrate portion of PM2.5-PRI,TON
+37021,1.799301,Organic Carbon portion of PM2.5-PRI,TON
+37021,6.856396,PM2.5 Primary (Filt + Cond),TON
+37021,0.1895361,Sulfate Portion of PM2.5-PRI,TON
+37021,10.382322,Styrene,LB
+37021,814.3496,Formaldehyde,LB
+37021,0.6657072,Benz[a]Anthracene,LB
+37021,73.59646,Benzene,LB
+37021,0.04744338,Arsenic,LB
+37021,6687.802,Carbon Dioxide,TON
+37021,0.02388427,Nitrous Oxide,TON
+37021,17.41817,Nitrogen Oxides,TON
+37021,1220.848,Benzene,LB
+37021,160.6235,Volatile Organic Compounds,TON
+37015,7.801572,Benzene,LB
+37015,2.453668,Ethyl Benzene,LB
+37015,0.0798122,Propionaldehyde,LB
+37015,2.414462e-06,Chromium (VI),LB
+37015,0.0015507136,Benzo[b]Fluoranthene,LB
+37015,0.001475427,Chrysene,LB
+37015,0.002209602,Benzo[a]Pyrene,LB
+37015,2.420432e-05,Mercury,LB
+37015,0.01264821,PM10 Primary (Filt + Cond),TON
+37009,1124.5262,Xylenes (Mixed Isomers),LB
+37009,97.57749,Carbon Monoxide,TON
+37009,12.48524,Nitrogen Oxides,TON
+37009,0.1985282,PM2.5 Primary (Filt + Cond),TON
+37009,0.04761907,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,31.9375,Ethyl Benzene,LB
+37001,8.545052,Pyrene,LB
+37001,26.29426,"2,2,4-Trimethylpentane",LB
+37001,0.3645744,Manganese,LB
+37001,0.06364338,Arsenic,LB
+37001,102.17152,Naphthalene,LB
+37001,0.7065033,Methane,TON
+37001,2.177948,PM25-Primary from certain diesel engines,TON
+37001,0.8682437,Elemental Carbon portion of PM2.5-PRI,TON
+37085,0.002098202,Benz[a]Anthracene,LB
+37085,0.1731782,Nitrogen Oxides,TON
+37085,0.00319809,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,5.421552,Propionaldehyde,LB
+37071,0.00017378856,Chromium (VI),LB
+37071,0.04810254,Benzo[a]Pyrene,LB
+37071,23.95162,"2,2,4-Trimethylpentane",LB
+37071,0.02217766,Benz[a]Anthracene,LB
+37071,60.93324,Benzene,LB
+37071,0.06663566,Manganese,LB
+37071,0.12817606,Phenanthrene,LB
+37071,27.83178,Carbon Monoxide,TON
+37071,0.03178219,Organic Carbon portion of PM2.5-PRI,TON
+37063,9.277028,Ethyl Benzene,LB
+37063,0.000915584,"Dibenzo[a,h]Anthracene",LB
+37063,191.6527,Acetaldehyde,LB
+37063,0.09218778,Phenanthrene,LB
+37063,0.03249402,Fluorene,LB
+37063,0.1927194,PM10 Primary (Filt + Cond),TON
+37005,0.001198819,Anthracene,LB
+37005,0.002437538,Pyrene,LB
+37005,0.0009858352,Benzo[b]Fluoranthene,LB
+37005,0.0007923468,Chrysene,LB
+37005,0.00065579,Nickel,LB
+37005,0.00100554,Arsenic,LB
+37159,0.000123536,Nitrate portion of PM2.5-PRI,TON
+37159,1.877587,Nitrogen Oxides,TON
+37159,1.71785,"1,3-Butadiene",LB
+37159,34.68124,Toluene,LB
+37159,0.09006718,"Benzo[g,h,i,]Perylene",LB
+37159,0.0338389,"Indeno[1,2,3-c,d]Pyrene",LB
+37159,40.75836,Benzene,LB
+37159,0.04270156,Manganese,LB
+37177,0.000292269,Sulfur Dioxide,TON
+37177,0.011393322,Propionaldehyde,LB
+37177,5.81549e-06,Mercury,LB
+37161,0.15143314,"1,3-Butadiene",LB
+37161,2.304004,Xylenes (Mixed Isomers),LB
+37161,0.0017828812,Fluoranthene,LB
+37161,0.001197106,Benzo[k]Fluoranthene,LB
+37161,1.3095672,"2,2,4-Trimethylpentane",LB
+37161,0.00011985902,Mercury,LB
+37161,0.00229145,Arsenic,LB
+37133,0.16278354,Propionaldehyde,LB
+37133,1.2579254,Formaldehyde,LB
+37133,3.784152e-05,"Dibenzo[a,h]Anthracene",LB
+37133,8.206356,Acetaldehyde,LB
+37131,0.003703316,Acenaphthene,LB
+37131,0.3632612,Acrolein,LB
+37131,0.00401009,Benzo[b]Fluoranthene,LB
+37117,0.414138,Ethyl Benzene,LB
+37117,0.0013362362,Pyrene,LB
+37117,8.450552e-06,Chromium (VI),LB
+37117,0.0007542512,Benzo[b]Fluoranthene,LB
+37117,3.28232e-05,"Dibenzo[a,h]Anthracene",LB
+37117,0.0006544156,Benz[a]Anthracene,LB
+37117,0.008075499,PM10 Primary (Filt + Cond),TON
+37117,0.0008022456,Remaining PMFINE portion of PM2.5-PRI,TON
+37117,0.003498403,Sulfur Dioxide,TON
+37159,36.65936,Ethyl Benzene,LB
+37159,28.47536,Hexane,LB
+37159,0.19650212,Benzo[b]Fluoranthene,LB
+37159,2.16683,Benz[a]Anthracene,LB
+37159,0.1053492,Arsenic,LB
+37159,6.56597,Fluorene,LB
+37159,39515.12,Carbon Dioxide,TON
+37159,0.3235839,Sulfate Portion of PM2.5-PRI,TON
+37163,5.297058e-05,Mercury,LB
+37163,0.008249822,Ammonia,TON
+37163,0.0002043761,Sulfate Portion of PM2.5-PRI,TON
+37163,0.170312,Volatile Organic Compounds,TON
+37163,0.2011904,Styrene,LB
+37163,34.54316,Toluene,LB
+37163,0.016022782,"Benzo[g,h,i,]Perylene",LB
+37163,0.003749878,Benzo[b]Fluoranthene,LB
+37163,0.005984948,Benzo[a]Pyrene,LB
+37163,0.003530074,Benz[a]Anthracene,LB
+37153,0.2389908,Benzo[a]Pyrene,LB
+37153,1.6061886,Acenaphthene,LB
+37153,2.239877,PM10-Primary from certain diesel engines,TON
+37153,1.337135,Elemental Carbon portion of PM2.5-PRI,TON
+37153,0.02323747,Nitrous Oxide,TON
+37153,2.21937,PM2.5 Primary (Filt + Cond),TON
+37151,0.005743492,Chrysene,LB
+37151,0.011041976,Benzo[a]Pyrene,LB
+37151,8.7608,Ethyl Benzene,LB
+37151,0.0002552984,"Dibenzo[a,h]Anthracene",LB
+37151,0.005437808,Manganese,LB
+37151,0.01037265,Methane,TON
+37151,317.5928,Carbon Dioxide,TON
+37151,0.008976274,Nitrous Oxide,TON
+37145,0.19182668,Propionaldehyde,LB
+37145,0.0002023556,"Indeno[1,2,3-c,d]Pyrene",LB
+37145,0.002665998,Benzo[a]Pyrene,LB
+37145,0.008031333,PM25-Primary from certain diesel engines,TON
+37145,0.003737022,Organic Carbon portion of PM2.5-PRI,TON
+37145,7.209202,Ethyl Benzene,LB
+37145,0.2010862,Styrene,LB
+37145,0.01214541,Fluoranthene,LB
+37145,0.03834698,Acenaphthylene,LB
+37145,0.002145488,Benzo[a]Pyrene,LB
+37145,4.86456e-05,"Dibenzo[a,h]Anthracene",LB
+37145,0.0019734138,Benz[a]Anthracene,LB
+37145,0.0002093904,Arsenic,LB
+37145,0.0005688475,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.001678463,Ammonia,TON
+37145,0.002478909,PM2.5 Primary (Filt + Cond),TON
+37167,2.194728,Ethyl Benzene,LB
+37167,0.0011369634,"Indeno[1,2,3-c,d]Pyrene",LB
+37167,0.000885661,Benzo[k]Fluoranthene,LB
+37167,0.0002450184,Remaining PMFINE portion of PM2.5-PRI,TON
+37003,1.219238,PM10 Primary (Filt + Cond),TON
+37003,0.03580168,Benzo[b]Fluoranthene,LB
+37003,0.456342,Chrysene,LB
+37003,123.2722,Benzene,LB
+37003,0.00016072708,Mercury,LB
+37003,11.652946,Phenanthrene,LB
+37003,0.2607497,Methane,TON
+37067,0.0274381,Anthracene,LB
+37067,0.0383409,Benzo[k]Fluoranthene,LB
+37067,81.0144,Benzene,LB
+37067,0.002681288,Mercury,LB
+37067,0.05126178,Arsenic,LB
+37067,4815.539,Carbon Dioxide,TON
+37079,0.019698684,"1,3-Butadiene",LB
+37079,0.1543074,Hexane,LB
+37079,0.0009962412,"Benzo[g,h,i,]Perylene",LB
+37079,0.3187672,Formaldehyde,LB
+37079,8.591924e-06,"Dibenzo[a,h]Anthracene",LB
+37079,0.000393236,Manganese,LB
+37079,0.0003203824,Arsenic,LB
+37079,0.0003336542,Fluorene,LB
+37079,9.233421e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37079,0.001436605,Ammonia,TON
+37079,0.0002377067,Organic Carbon portion of PM2.5-PRI,TON
+37079,0.000849187,Sulfur Dioxide,TON
+37121,0.3070118,Ethyl Benzene,LB
+37121,0.2796314,"1,3-Butadiene",LB
+37121,0.2346452,Hexane,LB
+37121,2.717766e-06,Chromium (VI),LB
+37121,2.733246e-06,Mercury,LB
+37121,0.008506536,Elemental Carbon portion of PM2.5-PRI,TON
+37121,0.002824499,Ammonia,TON
+37127,0.10007482,Arsenic,LB
+37127,5.715296,Fluorene,LB
+37127,0.8101784,Methane,TON
+37127,2.44317,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.01043038,Nitrate portion of PM2.5-PRI,TON
+37127,90.80699,Nitrogen Oxides,TON
+37127,0.9203003,Organic Carbon portion of PM2.5-PRI,TON
+37127,0.519893,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,25.54442,"1,3-Butadiene",LB
+37127,70.1263,Acrolein,LB
+37127,0.03590116,"Benzo[g,h,i,]Perylene",LB
+37127,0.04471926,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,59.25856,Ethyl Benzene,LB
+37179,17.923564,Styrene,LB
+37179,75.2527,Propionaldehyde,LB
+37179,13.280406,Pyrene,LB
+37179,154.1195,Benzene,LB
+37179,738.6866,Acetaldehyde,LB
+37179,7.525703,PM10-Primary from certain diesel engines,TON
+37179,1.05909,Remaining PMFINE portion of PM2.5-PRI,TON
+37081,3.018528e-07,Mercury,LB
+37081,0.0002424375,Nitrous Oxide,TON
+37081,0.005823438,Nitrogen Oxides,TON
+37081,0.0002600809,PM10 Primary (Filt + Cond),TON
+37033,21.54308,Toluene,LB
+37035,0.08335682,Manganese,LB
+37035,0.03585963,Sulfur Dioxide,TON
+37035,3.10925,Pyrene,LB
+37035,0.0053058,"Indeno[1,2,3-c,d]Pyrene",LB
+37161,17.642682,Benzene,LB
+37161,0.014241414,Manganese,LB
+37161,0.0004337696,Mercury,LB
+37161,0.013330162,Fluorene,LB
+37161,807.268,Carbon Dioxide,TON
+37161,0.006589066,Remaining PMFINE portion of PM2.5-PRI,TON
+37161,0.03038626,Acenaphthylene,LB
+37099,0.8255608,Toluene,LB
+37099,0.3208336,Hexane,LB
+37099,0.0004556638,Benzo[k]Fluoranthene,LB
+37099,0.000392582,Benz[a]Anthracene,LB
+37099,0.0005763681,Organic Carbon portion of PM2.5-PRI,TON
+37099,0.001367986,PM2.5 Primary (Filt + Cond),TON
+37165,7.532758,Ethyl Benzene,LB
+37165,0.006749252,Benzo[k]Fluoranthene,LB
+37165,0.6216609,PM10-Primary from certain diesel engines,TON
+37165,10.36017,Nitrogen Oxides,TON
+37165,0.2349727,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.1083571,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.006733522,"Dibenzo[a,h]Anthracene",LB
+37165,3178.491,Carbon Dioxide,TON
+37159,0.0013186016,Fluoranthene,LB
+37159,0.779778,"2,2,4-Trimethylpentane",LB
+37159,4.116614e-05,Manganese,LB
+37159,0.000995835,Methane,TON
+37159,9.27077e-05,Ammonia,TON
+37151,10.904338,Styrene,LB
+37151,43.44866,Propionaldehyde,LB
+37151,37677.27,Carbon Dioxide,TON
+37151,3.679846,PM25-Primary from certain diesel engines,TON
+37151,0.5478646,Ammonia,TON
+37151,0.008701471,Nitrate portion of PM2.5-PRI,TON
+37151,0.4119272,Remaining PMFINE portion of PM2.5-PRI,TON
+37151,0.3198735,Sulfur Dioxide,TON
+37151,4.889664,Volatile Organic Compounds,TON
+37135,0.168975,"1,3-Butadiene",LB
+37135,0.5069078,Toluene,LB
+37135,5.423218e-08,Chromium (VI),LB
+37135,0.003107594,Acenaphthylene,LB
+37135,2.398796,Methane,TON
+37135,184.1205,Carbon Dioxide,TON
+37135,0.04217846,PM2.5 Primary (Filt + Cond),TON
+37135,0.02282917,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,0.03339692,Volatile Organic Compounds,TON
+37171,0.006523908,"Benzo[g,h,i,]Perylene",LB
+37171,0.002942214,Fluoranthene,LB
+37171,0.0013587232,Benzo[k]Fluoranthene,LB
+37171,4.260436,Xylenes (Mixed Isomers),LB
+37169,53.2546,Ethyl Benzene,LB
+37169,54.58612,"1,3-Butadiene",LB
+37169,7.247742,Fluoranthene,LB
+37169,0.5212208,Chrysene,LB
+37169,703.5748,Acetaldehyde,LB
+37169,26.77917,Nitrogen Oxides,TON
+37159,0.5448396,Propionaldehyde,LB
+37159,0.0458122,Pyrene,LB
+37159,4.9512e-06,Chromium (VI),LB
+37159,29.13146,Benzene,LB
+37159,0.0009489848,Arsenic,LB
+37149,7.753299e-06,Remaining PMFINE portion of PM2.5-PRI,TON
+37149,0.0731542,Toluene,LB
+37149,1.780406e-05,Benzo[b]Fluoranthene,LB
+37149,0.015777524,"2,2,4-Trimethylpentane",LB
+37149,0.0012659146,Naphthalene,LB
+37149,0.4298066,"1,3-Butadiene",LB
+37149,0.07953298,Propionaldehyde,LB
+37149,0.0035895,Benzo[k]Fluoranthene,LB
+37149,0.02338498,Phenanthrene,LB
+37149,0.002677855,Sulfur Dioxide,TON
+37149,0.07200634,Volatile Organic Compounds,TON
+37151,1.2690342,Ethyl Benzene,LB
+37151,0.4809534,Styrene,LB
+37151,2.897024,Acrolein,LB
+37151,0.9757338,Hexane,LB
+37151,0.0018169694,"Indeno[1,2,3-c,d]Pyrene",LB
+37151,0.18762724,Acenaphthylene,LB
+37151,1.0290226,"2,2,4-Trimethylpentane",LB
+37151,1.328065,Carbon Monoxide,TON
+37147,3.225736,Anthracene,LB
+37147,0.00067573,Mercury,LB
+37147,4.569732,PM25-Primary from certain diesel engines,TON
+37147,6.69369,Benzo[k]Fluoranthene,LB
+37147,0.19828488,"Dibenzo[a,h]Anthracene",LB
+37147,19040.626,"2,2,4-Trimethylpentane",LB
+37147,14.56052,Methane,TON
+37145,3.480494,Xylenes (Mixed Isomers),LB
+37145,0.01919088,Benz[a]Anthracene,LB
+37145,0.005032518,PM10-Primary from certain diesel engines,TON
+37143,6.479386e-06,Chromium (VI),LB
+37143,0.2357748,Fluoranthene,LB
+37143,0.1779444,Acenaphthylene,LB
+37143,0.881616,"2,2,4-Trimethylpentane",LB
+37133,993.9168,Benzene,LB
+37133,0.06444938,Manganese,LB
+37133,0.03583316,Nickel,LB
+37133,0.0408943,Elemental Carbon portion of PM2.5-PRI,TON
+37133,0.5948185,Ammonia,TON
+37131,0.10318304,Pyrene,LB
+37131,0.7956114,Xylenes (Mixed Isomers),LB
+37131,0.0002965456,"Dibenzo[a,h]Anthracene",LB
+37131,1.0238546,Benzene,LB
+37131,0.0001261449,Nitrate portion of PM2.5-PRI,TON
+37131,0.06227067,Volatile Organic Compounds,TON
+37095,0.2042302,Toluene,LB
+37095,0.01251511,Acenaphthylene,LB
+37095,4.900224e-06,"Dibenzo[a,h]Anthracene",LB
+37095,0.000542517,PM2.5 Primary (Filt + Cond),TON
+37093,2.396802e-05,Chromium (VI),LB
+37093,0.5583574,Acenaphthylene,LB
+37093,101.86774,Formaldehyde,LB
+37093,0.0005065732,"Dibenzo[a,h]Anthracene",LB
+37093,0.013390676,Manganese,LB
+37093,0.5773832,Fluorene,LB
+37093,11.147036,Naphthalene,LB
+37093,0.0002465091,Nitrate portion of PM2.5-PRI,TON
+37093,0.1009945,PM2.5 Primary (Filt + Cond),TON
+37093,0.00332516,Sulfate Portion of PM2.5-PRI,TON
+37089,19862.104,Toluene,LB
+37089,3513.464,Hexane,LB
+37073,0.02646545,PM10 Primary (Filt + Cond),TON
+37073,0.3134128,Acrolein,LB
+37073,0.2069368,Propionaldehyde,LB
+37073,0.10418716,"2,2,4-Trimethylpentane",LB
+37001,0.2940414,Styrene,LB
+37001,0.019466486,Fluoranthene,LB
+37001,0.6624742,Naphthalene,LB
+37001,0.004669782,Remaining PMFINE portion of PM2.5-PRI,TON
+37001,0.000394104,Sulfate Portion of PM2.5-PRI,TON
+37055,1159.101,Carbon Dioxide,TON
+37055,6.004131e-05,Nitrate portion of PM2.5-PRI,TON
+37055,0.8361116,"1,3-Butadiene",LB
+37055,0.0388924,"Benzo[g,h,i,]Perylene",LB
+37055,0.012535316,Fluoranthene,LB
+37055,0.02703876,Manganese,LB
+37055,0.3838228,Naphthalene,LB
+37033,0.2511848,Benzene,LB
+37033,8.468508,Carbon Dioxide,TON
+37033,0.002706086,Styrene,LB
+37033,0.011650338,"1,3-Butadiene",LB
+37033,0.00017372664,Pyrene,LB
+37033,0.0001531077,Fluoranthene,LB
+37033,0.00014295856,Benzo[a]Pyrene,LB
+37033,0.09522828,"2,2,4-Trimethylpentane",LB
+37033,0.006009232,Volatile Organic Compounds,TON
+37011,0.002936864,Anthracene,LB
+37011,6.352396,Xylenes (Mixed Isomers),LB
+37011,0.00320559,Arsenic,LB
+37011,0.02346997,Methane,TON
+37011,0.006419678,PM2.5 Primary (Filt + Cond),TON
+37011,0.1737063,Carbon Monoxide,TON
+37011,9.61582e-07,Nitrate portion of PM2.5-PRI,TON
+37011,0.0001780555,Organic Carbon portion of PM2.5-PRI,TON
+37011,0.0007469952,"Benzo[g,h,i,]Perylene",LB
+37173,0.04456528,"1,3-Butadiene",LB
+37173,0.03430018,Acrolein,LB
+37173,3.829344e-06,Chromium (VI),LB
+37173,0.3629432,"2,2,4-Trimethylpentane",LB
+37173,0.0009648385,PM2.5 Primary (Filt + Cond),TON
+37155,0.03853602,Volatile Organic Compounds,TON
+37155,0.06163016,"1,3-Butadiene",LB
+37155,0.0005385316,Anthracene,LB
+37149,0.7919654,Hexane,LB
+37139,1.000572,Ethyl Benzene,LB
+37119,0.04250896,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,18.957972,"2,2,4-Trimethylpentane",LB
+37119,0.10742218,Manganese,LB
+37119,0.002367126,Mercury,LB
+37119,157.93322,Acetaldehyde,LB
+37119,0.2003376,Ammonia,TON
+37119,0.0001967134,Nitrate portion of PM2.5-PRI,TON
+37119,1.182581,Volatile Organic Compounds,TON
+37087,1.3579532,Formaldehyde,LB
+37087,0.002390856,"Indeno[1,2,3-c,d]Pyrene",LB
+37087,0.004764682,Phenanthrene,LB
+37087,0.0001080335,Sulfate Portion of PM2.5-PRI,TON
+37007,7.342212,Hexane,LB
+37177,56.38978,Formaldehyde,LB
+37177,0.0012643328,"Dibenzo[a,h]Anthracene",LB
+37177,1.4796902,"2,2,4-Trimethylpentane",LB
+37177,0.10493026,Benz[a]Anthracene,LB
+37177,0.005453876,Arsenic,LB
+37177,0.04657945,Organic Carbon portion of PM2.5-PRI,TON
+37177,0.3257941,PM10 Primary (Filt + Cond),TON
+37175,1.0587166,Styrene,LB
+37175,0.07431392,Pyrene,LB
+37175,1.1382664e-05,Chromium (VI),LB
+37175,0.011103414,Benz[a]Anthracene,LB
+37175,0.09122032,Fluorene,LB
+37165,27.43644,Xylenes (Mixed Isomers),LB
+37165,1.122597,Volatile Organic Compounds,TON
+37163,0.015688,Ammonia,TON
+37163,1.8297972,Styrene,LB
+37163,6.3336,Xylenes (Mixed Isomers),LB
+37163,2.476942e-05,Chromium (VI),LB
+37161,0.09129428,Pyrene,LB
+37161,79.56054,Carbon Dioxide,TON
+37161,0.02331049,PM10-Primary from certain diesel engines,TON
+37159,0.0142268,Nitrous Oxide,TON
+37159,41.9273,Toluene,LB
+37159,3.323024,Acenaphthylene,LB
+37155,8.33244,Pyrene,LB
+37155,0.0369464,"Benzo[g,h,i,]Perylene",LB
+37155,0.17984768,Benzo[b]Fluoranthene,LB
+37155,0.6031432,Benzo[a]Pyrene,LB
+37155,0.13258566,Nickel,LB
+37155,2.694168,Acenaphthene,LB
+37155,0.2213172,Methane,TON
+37159,0.2392994,Nickel,LB
+37159,756.6902,Formaldehyde,LB
+37159,1445.7962,Ethyl Benzene,LB
+37159,46.33182,Acrolein,LB
+37159,10367.578,Ethyl Benzene,LB
+37159,65505.6,Toluene,LB
+37159,5.577676,Benzo[b]Fluoranthene,LB
+37159,14389.502,"2,2,4-Trimethylpentane",LB
+37159,14.28808,Acenaphthene,LB
+37153,0.0894874,Pyrene,LB
+37153,0.03421942,"Indeno[1,2,3-c,d]Pyrene",LB
+37153,0.2387994,Acenaphthylene,LB
+37153,42.38014,"2,2,4-Trimethylpentane",LB
+37153,0.017918788,Manganese,LB
+37147,0.7534174,PM10-Primary from certain diesel engines,TON
+37147,0.01788245,Sulfate Portion of PM2.5-PRI,TON
+37147,0.4176634,Chrysene,LB
+37147,287.0422,Formaldehyde,LB
+37147,0.2177376,Benzo[a]Pyrene,LB
+37147,26.77072,Benzene,LB
+37139,145.27298,Acrolein,LB
+37139,10.97254,Fluoranthene,LB
+37139,2.127892,Benzo[a]Pyrene,LB
+37139,5354.618,"2,2,4-Trimethylpentane",LB
+37139,2599.85,Acetaldehyde,LB
+37139,186.1185,Nitrogen Oxides,TON
+37139,127.6661,Volatile Organic Compounds,TON
+37137,18.5812,Propionaldehyde,LB
+37137,1.299129,Ammonia,TON
+37137,0.4880282,PM2.5 Primary (Filt + Cond),TON
+37137,502.7988,"2,2,4-Trimethylpentane",LB
+37133,1.435071,Fluorene,LB
+37133,0.4403996,PM25-Primary from certain diesel engines,TON
+37133,0.4791718,PM2.5 Primary (Filt + Cond),TON
+37133,17.993116,Acrolein,LB
+37133,5.347716e-05,Chromium (VI),LB
+37133,0.0290705,Nickel,LB
+37131,1.534325,Acenaphthylene,LB
+37131,0.003126014,"Dibenzo[a,h]Anthracene",LB
+37123,0.15898418,Acrolein,LB
+37123,2.12876e-08,Chromium (VI),LB
+37123,0.0003406474,Acenaphthylene,LB
+37117,7.026172,Hexane,LB
+37117,0.010175982,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,1.50063,Fluoranthene,LB
+37117,0.005683026,Benzo[k]Fluoranthene,LB
+37117,1.149925,Acenaphthylene,LB
+37117,7.854358,"2,2,4-Trimethylpentane",LB
+37117,112.90416,Acetaldehyde,LB
+37117,0.2071512,Ammonia,TON
+37117,0.1101232,Sulfate Portion of PM2.5-PRI,TON
+37111,0.629459,Phenanthrene,LB
+37111,0.02438728,Methane,TON
+37111,0.06219458,Elemental Carbon portion of PM2.5-PRI,TON
+37111,0.2083752,PM10 Primary (Filt + Cond),TON
+37111,1.5599988,"1,3-Butadiene",LB
+37111,0.003125642,"Indeno[1,2,3-c,d]Pyrene",LB
+37111,0.3994924,Fluoranthene,LB
+37111,0.0016839972,Benzo[k]Fluoranthene,LB
+37111,0.04116754,Benzo[a]Pyrene,LB
+37111,20.91354,Toluene,LB
+37111,5.09162,Hexane,LB
+37111,0.0207002,"Benzo[g,h,i,]Perylene",LB
+37111,2.051716,Formaldehyde,LB
+37111,4.728972e-05,Mercury,LB
+37111,0.000589651,Nickel,LB
+37111,0.03410716,Phenanthrene,LB
+37111,2.358583e-05,Nitrate portion of PM2.5-PRI,TON
+37119,77.03526,Fluorene,LB
+37119,44.49845,PM25-Primary from certain diesel engines,TON
+37119,0.141477,Nitrate portion of PM2.5-PRI,TON
+37119,11.24568,Organic Carbon portion of PM2.5-PRI,TON
+37119,0.1884824,Nitrate portion of PM2.5-PRI,TON
+37119,323.8138,PM10 Primary (Filt + Cond),TON
+37019,8.112948e-06,Benzo[a]Pyrene,LB
+37019,1.8696662e-07,"Dibenzo[a,h]Anthracene",LB
+37019,0.009056598,"2,2,4-Trimethylpentane",LB
+37019,2.561212e-08,Mercury,LB
+37019,4.896688e-07,Arsenic,LB
+37019,0.0006612447,Nitrogen Oxides,TON
+37017,0.1233758,Chrysene,LB
+37017,341.7808,"2,2,4-Trimethylpentane",LB
+37017,0.124817,Benz[a]Anthracene,LB
+37017,0.0666108,Arsenic,LB
+37017,0.4824238,Acenaphthene,LB
+37017,0.1210426,Benzo[b]Fluoranthene,LB
+37195,0.05541068,Arsenic,LB
+37195,6.308374,Fluorene,LB
+37195,8034.267,Carbon Dioxide,TON
+37195,0.002017653,Nitrate portion of PM2.5-PRI,TON
+37195,1.361428,PM10 Primary (Filt + Cond),TON
+37195,0.3810728,Chrysene,LB
+37195,0.10291828,Benzo[a]Pyrene,LB
+37187,16.10379,Acrolein,LB
+37187,0.004394898,"Benzo[g,h,i,]Perylene",LB
+37187,0.002723882,Benzo[k]Fluoranthene,LB
+37187,0.2293436,Benz[a]Anthracene,LB
+37187,0.1130733,Ammonia,TON
+37187,0.9017822,PM10 Primary (Filt + Cond),TON
+37187,0.05858641,Remaining PMFINE portion of PM2.5-PRI,TON
+37167,140.65652,Xylenes (Mixed Isomers),LB
+37167,231.6316,Benzene,LB
+37167,268.72,Naphthalene,LB
+37167,1.878197,PM25-Primary from certain diesel engines,TON
+37167,1.40858,Elemental Carbon portion of PM2.5-PRI,TON
+37161,0.9377068,Phenanthrene,LB
+37161,9.130819,Carbon Monoxide,TON
+37161,0.0168083,PM25-Primary from certain diesel engines,TON
+37161,0.005709709,Sulfur Dioxide,TON
+37161,0.629151,Volatile Organic Compounds,TON
+37161,0.0011957264,"Benzo[g,h,i,]Perylene",LB
+37159,15717.534,Xylenes (Mixed Isomers),LB
+37159,122.3537,Volatile Organic Compounds,TON
+37157,3254.262,Toluene,LB
+37157,0.03028848,Manganese,LB
+37135,1.0268038,Acenaphthylene,LB
+37135,0.07118072,Benzo[a]Pyrene,LB
+37135,0.00291711,"Dibenzo[a,h]Anthracene",LB
+37135,79.56708,Acetaldehyde,LB
+37135,1.1710934,Fluorene,LB
+37135,0.001279944,Nitrate portion of PM2.5-PRI,TON
+37135,0.1052103,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.1641103,Carbon Monoxide,TON
+37137,0.005978468,Elemental Carbon portion of PM2.5-PRI,TON
+37137,0.01720883,PM2.5 Primary (Filt + Cond),TON
+37137,0.0003815336,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.6038324,Benzene,LB
+37137,0.019645126,Acenaphthene,LB
+37131,5.322536e-07,Nickel,LB
+37131,0.0001224151,Arsenic,LB
+37131,0.002413793,PM2.5 Primary (Filt + Cond),TON
+37129,106.94136,Ethyl Benzene,LB
+37129,0.12486318,"Benzo[g,h,i,]Perylene",LB
+37129,60.35812,Formaldehyde,LB
+37129,0.09678268,Manganese,LB
+37123,1.8087792,Fluoranthene,LB
+37123,0.006381426,Benzo[k]Fluoranthene,LB
+37123,1.4414502,Acenaphthylene,LB
+37123,7.660012,"2,2,4-Trimethylpentane",LB
+37123,30.88348,Naphthalene,LB
+37123,0.06833073,Sulfate Portion of PM2.5-PRI,TON
+37117,14.82736,Acrolein,LB
+37117,11.388046,Toluene,LB
+37117,10.192604,Propionaldehyde,LB
+37117,0.011657392,"Indeno[1,2,3-c,d]Pyrene",LB
+37117,0.04176431,Methane,TON
+37117,0.002639713,Nitrate portion of PM2.5-PRI,TON
+37117,0.2157686,Organic Carbon portion of PM2.5-PRI,TON
+37105,110.21586,Styrene,LB
+37105,1741.0436,Acetaldehyde,LB
+37105,26.02926,Phenanthrene,LB
+37105,9.115989,Ammonia,TON
+37103,10.959662,Hexane,LB
+37103,26.233,Xylenes (Mixed Isomers),LB
+37103,0.00160954,"Dibenzo[a,h]Anthracene",LB
+37095,1.796333e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37095,2.381498e-06,Ammonia,TON
+37095,1.608477e-07,Sulfate Portion of PM2.5-PRI,TON
+37095,0.06313438,Xylenes (Mixed Isomers),LB
+37095,1.6288174e-07,"Dibenzo[a,h]Anthracene",LB
+37095,0.0013249238,Naphthalene,LB
+37093,7.339712,Benzene,LB
+37093,0.05367782,Acrolein,LB
+37093,2.900162,Benzene,LB
+37093,0.000300164,Arsenic,LB
+37093,0.002659608,Acenaphthene,LB
+37093,0.001824317,Methane,TON
+37093,0.00178425,Nitrous Oxide,TON
+37093,0.001187969,Sulfur Dioxide,TON
+37093,3.950505e-05,Sulfate Portion of PM2.5-PRI,TON
+37089,3.515983,Volatile Organic Compounds,TON
+37087,76.5195,Formaldehyde,LB
+37087,0.2224672,PM10-Primary from certain diesel engines,TON
+37087,0.00851088,Sulfur Dioxide,TON
+37087,0.009614149,Sulfate Portion of PM2.5-PRI,TON
+37083,12.165488,"1,3-Butadiene",LB
+37083,0.00010077498,Chromium (VI),LB
+37083,8.534242,"2,2,4-Trimethylpentane",LB
+37083,34.13534,Benzene,LB
+37083,156.38322,Acetaldehyde,LB
+37083,1.738313,PM25-Primary from certain diesel engines,TON
+37083,1.193356,Elemental Carbon portion of PM2.5-PRI,TON
+37083,0.006710129,Nitrous Oxide,TON
+37083,41.59949,Nitrogen Oxides,TON
+37083,2.25255,PM10 Primary (Filt + Cond),TON
+37083,0.07140296,"Indeno[1,2,3-c,d]Pyrene",LB
+37085,0.003552544,"1,3-Butadiene",LB
+37085,9.156968e-07,"Dibenzo[a,h]Anthracene",LB
+37085,0.05119752,Benzene,LB
+37085,2.06915,Carbon Dioxide,TON
+37085,5.26268e-05,Ammonia,TON
+37085,0.002184786,Nitrogen Oxides,TON
+37075,0.1007966,Anthracene,LB
+37075,4.16456,Naphthalene,LB
+37075,0.03940336,Pyrene,LB
+37075,0.002011602,Chrysene,LB
+37075,9.524016,Formaldehyde,LB
+37075,0.0003324426,Benzo[a]Pyrene,LB
+37075,0.0016136772,Manganese,LB
+37075,0.9856452,Naphthalene,LB
+37075,0.0002217739,Sulfate Portion of PM2.5-PRI,TON
+37069,3.309156,Styrene,LB
+37069,15.902706,Toluene,LB
+37069,5.865572,Hexane,LB
+37069,2.488124,Pyrene,LB
+37069,15.854296,Xylenes (Mixed Isomers),LB
+37069,0.011342318,"Benzo[g,h,i,]Perylene",LB
+37069,0.05633946,Benzo[b]Fluoranthene,LB
+37069,0.0900473,Manganese,LB
+37069,1.018242,PM25-Primary from certain diesel engines,TON
+37069,0.2699951,Organic Carbon portion of PM2.5-PRI,TON
+37053,0.09288822,Carbon Monoxide,TON
+37053,0.2687126,Propionaldehyde,LB
+37053,0.00671902,Chrysene,LB
+37053,8.021364e-07,Mercury,LB
+37053,0.0005951638,Nickel,LB
+37153,0.000478669,Sulfate Portion of PM2.5-PRI,TON
+37153,13.374136,Xylenes (Mixed Isomers),LB
+37153,14.185602,Formaldehyde,LB
+37153,0.006592026,Acenaphthene,LB
+37153,0.05152642,Methane,TON
+37153,755.8328,Carbon Dioxide,TON
+37153,0.05705553,PM10 Primary (Filt + Cond),TON
+37113,3.121354e-05,Chromium (VI),LB
+37113,0.00405101,Chrysene,LB
+37113,6.031372,"2,2,4-Trimethylpentane",LB
+37113,0.0308231,Ammonia,TON
+37113,0.6425109,Nitrogen Oxides,TON
+37097,23.11424,Xylenes (Mixed Isomers),LB
+37097,0.5212927,Volatile Organic Compounds,TON
+37083,0.7833194,"1,3-Butadiene",LB
+37083,0.006927732,Anthracene,LB
+37083,1.8032044,Propionaldehyde,LB
+37083,4.948533e-05,Nitrate portion of PM2.5-PRI,TON
+37083,0.02708586,Sulfur Dioxide,TON
+37169,0.006053795,Organic Carbon portion of PM2.5-PRI,TON
+37169,0.3220102,Fluoranthene,LB
+37169,37.5817,Acetaldehyde,LB
+37169,9.420388,Naphthalene,LB
+37157,4.58414,Propionaldehyde,LB
+37157,0.4801868,Fluoranthene,LB
+37157,0.004323332,Arsenic,LB
+37157,0.2803146,Acenaphthene,LB
+37157,0.2799443,PM10 Primary (Filt + Cond),TON
+37157,0.008770833,Sulfate Portion of PM2.5-PRI,TON
+37145,10.36578,Anthracene,LB
+37145,17.583934,Fluoranthene,LB
+37145,11857.894,Benzene,LB
+37145,91127.53,Carbon Dioxide,TON
+37145,203.9506,Volatile Organic Compounds,TON
+37199,4.19653,Acrolein,LB
+37199,3.999222,Xylenes (Mixed Isomers),LB
+37199,1.3971596,"2,2,4-Trimethylpentane",LB
+37199,0.008349302,Manganese,LB
+37199,0.02753211,Methane,TON
+37199,0.0005956368,Nitrate portion of PM2.5-PRI,TON
+37199,1.833127,Nitrogen Oxides,TON
+37199,0.3007174,Fluorene,LB
+37199,377.4749,Carbon Dioxide,TON
+37199,0.09437961,PM25-Primary from certain diesel engines,TON
+37199,0.2750772,Volatile Organic Compounds,TON
+37199,1.5107826,Ethyl Benzene,LB
+37199,1.5759644,"1,3-Butadiene",LB
+37199,0.351893,Pyrene,LB
+37199,0.0006705776,"Dibenzo[a,h]Anthracene",LB
+37193,1.3050764,"2,2,4-Trimethylpentane",LB
+37193,0.001216251,Remaining PMFINE portion of PM2.5-PRI,TON
+37193,0.0239324,Nickel,LB
+37193,0.1691801,PM25-Primary from certain diesel engines,TON
+37193,0.005213431,Sulfate Portion of PM2.5-PRI,TON
+37193,0.0014984952,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,3.356934,"1,3-Butadiene",LB
+37193,37.32818,Hexane,LB
+37193,0.0213392,Anthracene,LB
+37193,0.03667886,Fluoranthene,LB
+37193,0.11306726,Acenaphthylene,LB
+37193,0.01248522,Benzo[a]Pyrene,LB
+37193,0.008162998,Nitrous Oxide,TON
+37193,0.794297,Nitrogen Oxides,TON
+37185,3.22138e-05,"Dibenzo[a,h]Anthracene",LB
+37185,1.9566634,"2,2,4-Trimethylpentane",LB
+37185,2.26331e-05,Nickel,LB
+37185,0.005120166,Fluorene,LB
+37185,0.05449678,Propionaldehyde,LB
+37185,5.719784,Xylenes (Mixed Isomers),LB
+37185,0.011530506,Acenaphthylene,LB
+37185,7.284404,Carbon Dioxide,TON
+37185,0.0002472068,Ammonia,TON
+37189,10.767036,Ethyl Benzene,LB
+37189,3.61364,Pyrene,LB
+37189,0.016470156,"Benzo[g,h,i,]Perylene",LB
+37189,9.044243,Carbon Monoxide,TON
+37189,31.27388,Nitrogen Oxides,TON
+37189,0.04193295,Sulfur Dioxide,TON
+37181,4.756514,Anthracene,LB
+37181,30.12256,Phenanthrene,LB
+37181,287.0144,Naphthalene,LB
+37181,2.336001,Nitrous Oxide,TON
+37051,0.7421374,Ethyl Benzene,LB
+37051,0.001197409,Anthracene,LB
+37051,1.4808648,"2,2,4-Trimethylpentane",LB
+37051,0.0029571,Arsenic,LB
+37051,286.0213,Carbon Dioxide,TON
+37041,0.06133822,Styrene,LB
+37041,0.0019223584,Anthracene,LB
+37041,0.5111408,Propionaldehyde,LB
+37041,5.88657,Benzene,LB
+37041,0.0014771842,Nickel,LB
+37041,0.002264978,Arsenic,LB
+37041,2.415401,Carbon Monoxide,TON
+37041,0.01112215,Ammonia,TON
+37041,0.004167188,PM2.5 Primary (Filt + Cond),TON
+37041,0.006358815,Sulfur Dioxide,TON
+37041,0.0001102253,Sulfate Portion of PM2.5-PRI,TON
+37031,0.0012254422,Pyrene,LB
+37031,0.003695486,"Benzo[g,h,i,]Perylene",LB
+37031,0.0013884214,"Indeno[1,2,3-c,d]Pyrene",LB
+37031,7.713074,Acetaldehyde,LB
+37031,0.001205499,Remaining PMFINE portion of PM2.5-PRI,TON
+37031,2.563596,Benzene,LB
+37097,3.018528,Hexane,LB
+37097,5.377896,Xylenes (Mixed Isomers),LB
+37097,0.011060008,Acenaphthylene,LB
+37097,3.078178,"2,2,4-Trimethylpentane",LB
+37097,0.00300097,Benz[a]Anthracene,LB
+37097,0.004860512,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.04937945,PM10 Primary (Filt + Cond),TON
+37089,0.03259208,Manganese,LB
+37089,0.00970685,Acenaphthene,LB
+37089,0.5065708,Naphthalene,LB
+37089,0.005692838,Elemental Carbon portion of PM2.5-PRI,TON
+37089,1.090773,Nitrogen Oxides,TON
+37089,0.04313954,Sulfur Dioxide,TON
+37089,0.2807798,Styrene,LB
+37089,20.05788,Xylenes (Mixed Isomers),LB
+37089,0.000509093,"Dibenzo[a,h]Anthracene",LB
+37087,2.389838,Hexane,LB
+37087,8.699918,Xylenes (Mixed Isomers),LB
+37169,0.008479514,"Indeno[1,2,3-c,d]Pyrene",LB
+37169,1.7603676,Pyrene,LB
+37169,7.950963,Carbon Monoxide,TON
+37169,0.6162502,Elemental Carbon portion of PM2.5-PRI,TON
+37169,0.1334702,Ammonia,TON
+37169,0.1746782,Organic Carbon portion of PM2.5-PRI,TON
+37165,80.09854,Xylenes (Mixed Isomers),LB
+37165,0.07192738,"Benzo[g,h,i,]Perylene",LB
+37165,0.02702422,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.016669978,Benzo[b]Fluoranthene,LB
+37165,10.976464,Acetaldehyde,LB
+37165,0.6382455,Volatile Organic Compounds,TON
+37163,0.10486864,Pyrene,LB
+37163,0.007404062,Benzo[a]Pyrene,LB
+37163,0.03495024,Acenaphthene,LB
+37157,1.0254468,Acenaphthylene,LB
+37157,8.684504,Carbon Monoxide,TON
+37157,0.2657471,PM10 Primary (Filt + Cond),TON
+37157,12200.62,Carbon Dioxide,TON
+37157,1.405514,Elemental Carbon portion of PM2.5-PRI,TON
+37157,1.916926,PM2.5 Primary (Filt + Cond),TON
+37157,79.59474,"1,3-Butadiene",LB
+37157,13.069238,Pyrene,LB
+37157,21.06802,Phenanthrene,LB
+37157,0.15824332,Pyrene,LB
+37157,0.0296815,Benzo[b]Fluoranthene,LB
+37157,0.0003458262,Mercury,LB
+37157,0.07447524,Nitrous Oxide,TON
+37157,0.001290592,Sulfate Portion of PM2.5-PRI,TON
+37147,1.5323578,Propionaldehyde,LB
+37147,0.000964811,"Dibenzo[a,h]Anthracene",LB
+37147,1.1232576e-05,Mercury,LB
+37147,13.433278,Acetaldehyde,LB
+37147,0.2084522,Fluorene,LB
+37147,0.9887847,Carbon Monoxide,TON
+37135,27.94646,Naphthalene,LB
+37135,0.09803373,Methane,TON
+37135,0.7312883,PM10-Primary from certain diesel engines,TON
+37135,0.2714484,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.03891326,Ammonia,TON
+37135,0.0610503,Benzo[b]Fluoranthene,LB
+37135,254.968,Formaldehyde,LB
+37135,6.377084,"2,2,4-Trimethylpentane",LB
+37119,1953.6702,Propionaldehyde,LB
+37119,33.50672,Benzo[b]Fluoranthene,LB
+37119,31.47562,Chrysene,LB
+37119,1.1195478,"Dibenzo[a,h]Anthracene",LB
+37119,72367.02,"2,2,4-Trimethylpentane",LB
+37119,2623526,Carbon Dioxide,TON
+37119,0.1809635,Nitrate portion of PM2.5-PRI,TON
+37119,2.180688,Sulfate Portion of PM2.5-PRI,TON
+37117,0.004776608,Nitrogen Oxides,TON
+37117,3.930225e-05,Sulfur Dioxide,TON
+37117,0.247117,Xylenes (Mixed Isomers),LB
+37117,0.00016924328,Fluoranthene,LB
+37117,3.602758e-05,Chrysene,LB
+37117,0.00011458284,Acenaphthene,LB
+37107,1.1501508,Ethyl Benzene,LB
+37107,2.638208,Toluene,LB
+37107,0.11844118,Anthracene,LB
+37107,0.05207804,Chrysene,LB
+37107,35.11564,Formaldehyde,LB
+37107,0.08807366,Benz[a]Anthracene,LB
+37107,0.2368384,Fluorene,LB
+37107,3.7204,Naphthalene,LB
+37107,0.8113907,Carbon Monoxide,TON
+37107,0.0004814282,Nitrate portion of PM2.5-PRI,TON
+37107,0.03924228,Organic Carbon portion of PM2.5-PRI,TON
+37097,0.012459894,Benzo[k]Fluoranthene,LB
+37097,0.14089008,Acenaphthylene,LB
+37097,32.0856,"2,2,4-Trimethylpentane",LB
+37097,0.06251858,Fluorene,LB
+37097,0.02114401,Methane,TON
+37097,0.7006583,Volatile Organic Compounds,TON
+37085,0.2222598,Styrene,LB
+37085,0.15036146,Pyrene,LB
+37085,0.02043238,Chrysene,LB
+37085,0.003156516,Manganese,LB
+37085,0.2859305,Carbon Monoxide,TON
+37085,0.002737358,Ammonia,TON
+37143,1.342505,"Benzo[g,h,i,]Perylene",LB
+37143,0.355091,Benzo[b]Fluoranthene,LB
+37143,0.5044804,Benzo[a]Pyrene,LB
+37143,0.01570189,Sulfate Portion of PM2.5-PRI,TON
+37143,0.3157304,Manganese,LB
+37143,0.2826404,Arsenic,LB
+37143,19931.9,Carbon Dioxide,TON
+37143,28.44588,Nitrogen Oxides,TON
+37143,1.500546,PM10 Primary (Filt + Cond),TON
+37137,0.003529532,Acrolein,LB
+37137,3.861642e-06,"Dibenzo[a,h]Anthracene",LB
+37137,0.1979884,"2,2,4-Trimethylpentane",LB
+37137,9.605882e-05,Benz[a]Anthracene,LB
+37137,2.209402e-07,Mercury,LB
+37137,4.223974e-06,Arsenic,LB
+37137,0.0002215384,Acenaphthene,LB
+37137,0.0004487404,Fluorene,LB
+37137,1.432949,Carbon Dioxide,TON
+37137,8.858811e-05,Organic Carbon portion of PM2.5-PRI,TON
+37137,3.892425e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,1.8693972,Acrolein,LB
+37127,0.4239458,Acenaphthylene,LB
+37127,29.48724,Acetaldehyde,LB
+37117,6.085988,Hexane,LB
+37117,19.31674,Xylenes (Mixed Isomers),LB
+37117,0.04175946,Benzo[b]Fluoranthene,LB
+37117,0.4730192,Benz[a]Anthracene,LB
+37117,0.04592512,Nickel,LB
+37117,0.002445944,Nitrate portion of PM2.5-PRI,TON
+37117,0.2115586,Organic Carbon portion of PM2.5-PRI,TON
+37115,1.8143442,"1,3-Butadiene",LB
+37115,3.119578,Toluene,LB
+37115,0.402371,Pyrene,LB
+37115,0.0003450689,Nitrate portion of PM2.5-PRI,TON
+37115,4.357083,Nitrogen Oxides,TON
+37097,0.07822746,"Indeno[1,2,3-c,d]Pyrene",LB
+37097,0.3067838,Benzo[b]Fluoranthene,LB
+37097,7.565774,Acenaphthylene,LB
+37097,7.020515,PM10-Primary from certain diesel engines,TON
+37105,81.8217,"1,3-Butadiene",LB
+37105,462.5306,Hexane,LB
+37105,0.16995518,Benzo[k]Fluoranthene,LB
+37105,0.16440826,Chrysene,LB
+37105,172.624,Formaldehyde,LB
+37105,0.3508379,Nitrous Oxide,TON
+37105,0.6784412,Ammonia,TON
+37073,0.2231114,Hexane,LB
+37073,0.013792392,Chrysene,LB
+37073,0.2061678,Carbon Monoxide,TON
+37073,0.01029491,Organic Carbon portion of PM2.5-PRI,TON
+37073,1.2028328,Toluene,LB
+37073,0.0723356,Acenaphthylene,LB
+37073,0.003402566,Chrysene,LB
+37073,1.3598466,Benzene,LB
+37073,0.00141689,Arsenic,LB
+37073,0.001186661,Organic Carbon portion of PM2.5-PRI,TON
+37073,0.0009366277,Sulfur Dioxide,TON
+37077,4.204664,Pyrene,LB
+37077,48.34902,Benzene,LB
+37077,0.2078194,Manganese,LB
+37077,2.471285,PM10-Primary from certain diesel engines,TON
+37077,1.583591,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.00481274,Nitrate portion of PM2.5-PRI,TON
+37053,0.0716642,Benz[a]Anthracene,LB
+37053,21.07516,Acetaldehyde,LB
+37053,0.001196131,Nitrous Oxide,TON
+37053,0.1072967,PM2.5 Primary (Filt + Cond),TON
+37053,0.15336026,Anthracene,LB
+37053,0.001367823,"Indeno[1,2,3-c,d]Pyrene",LB
+37061,4.799248,Benzo[b]Fluoranthene,LB
+37061,26.66728,Fluoranthene,LB
+37061,4.90728,Benz[a]Anthracene,LB
+37061,2.221008,Manganese,LB
+37061,952.3808,Naphthalene,LB
+37061,206677,Carbon Dioxide,TON
+37061,4.334982,Sulfur Dioxide,TON
+37061,0.1796607,Sulfate Portion of PM2.5-PRI,TON
+37049,0.011914574,Arsenic,LB
+37049,5.191591,Nitrogen Oxides,TON
+37049,0.0960887,Anthracene,LB
+37049,262.715,Xylenes (Mixed Isomers),LB
+37049,0.14758176,"Benzo[g,h,i,]Perylene",LB
+37047,9.952976,Styrene,LB
+37047,0.041282,"Indeno[1,2,3-c,d]Pyrene",LB
+37047,3.85694,Acenaphthylene,LB
+37047,0.5436966,Benzo[a]Pyrene,LB
+37047,0.0222005,"Dibenzo[a,h]Anthracene",LB
+37047,0.0002348662,Mercury,LB
+37047,0.11773716,Nickel,LB
+37047,2.294404,Acenaphthene,LB
+37047,0.3689685,Methane,TON
+37047,16.72509,Carbon Monoxide,TON
+37047,2.107929,PM10-Primary from certain diesel engines,TON
+37047,0.02255614,Nitrous Oxide,TON
+37047,4.128694,Volatile Organic Compounds,TON
+37039,0.002870867,Remaining PMFINE portion of PM2.5-PRI,TON
+37039,0.019265306,"1,3-Butadiene",LB
+37039,1.280762,Propionaldehyde,LB
+37039,2.673752e-08,Chromium (VI),LB
+37039,1.8072896e-05,"Benzo[g,h,i,]Perylene",LB
+37039,0.4250864,Methane,TON
+37039,0.002149852,Ammonia,TON
+37043,1.0773724,"Benzo[g,h,i,]Perylene",LB
+37043,0.2839738,Benzo[k]Fluoranthene,LB
+37043,0.404765,Benzo[a]Pyrene,LB
+37043,46.53678,Naphthalene,LB
+37043,12452.16,Carbon Dioxide,TON
+37043,17.81422,Volatile Organic Compounds,TON
+37033,2.184006e-05,"Benzo[g,h,i,]Perylene",LB
+37033,0.15552306,Benzene,LB
+37033,0.0004505356,Fluorene,LB
+37033,0.001563827,Ammonia,TON
+37033,0.1114978,Volatile Organic Compounds,TON
+37033,5.935274e-06,Chromium (VI),LB
+37033,0.0012591322,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.00494528,Benzo[b]Fluoranthene,LB
+37029,8.303802,Xylenes (Mixed Isomers),LB
+37029,0.005397652,"Indeno[1,2,3-c,d]Pyrene",LB
+37029,0.7286568,Fluoranthene,LB
+37029,0.13651414,Chrysene,LB
+37029,0.2327026,Benz[a]Anthracene,LB
+37029,2.415325,Carbon Monoxide,TON
+37029,0.003714573,Nitrous Oxide,TON
+37029,0.5621279,Volatile Organic Compounds,TON
+37027,72.8166,Ethyl Benzene,LB
+37027,14.50442,"1,3-Butadiene",LB
+37027,0.09018068,Anthracene,LB
+37027,2.102336,Propionaldehyde,LB
+37027,0.004178738,Arsenic,LB
+37027,0.5743604,Phenanthrene,LB
+37027,0.009256132,Elemental Carbon portion of PM2.5-PRI,TON
+37027,0.1074575,PM10 Primary (Filt + Cond),TON
+37027,0.03592163,PM2.5 Primary (Filt + Cond),TON
+37027,2.171095,Volatile Organic Compounds,TON
+37129,274.602,Acrolein,LB
+37129,4.115936,Benzo[k]Fluoranthene,LB
+37129,5.98654,Benzo[a]Pyrene,LB
+37129,25.08664,Fluorene,LB
+37129,44.27211,PM10 Primary (Filt + Cond),TON
+37021,5.373084e-06,Chromium (VI),LB
+37021,0.0016258832,"Indeno[1,2,3-c,d]Pyrene",LB
+37021,0.2346816,Fluoranthene,LB
+37021,0.003217798,Nickel,LB
+37055,0.0005550282,Fluorene,LB
+37055,0.3893679,Nitrogen Oxides,TON
+37055,0.0291994,"1,3-Butadiene",LB
+37055,0.2983348,Acrolein,LB
+37055,2.789288e-05,Mercury,LB
+37055,0.0005332778,Arsenic,LB
+37151,772.8506,Propionaldehyde,LB
+37151,54.84414,Fluoranthene,LB
+37151,2.39094,Nickel,LB
+37151,3.666184,Arsenic,LB
+37151,12687.896,Acetaldehyde,LB
+37151,204.4466,Phenanthrene,LB
+37151,1955.7118,Naphthalene,LB
+37151,8116.211,Carbon Monoxide,TON
+37151,1005.718,Nitrogen Oxides,TON
+37151,7.264382,Organic Carbon portion of PM2.5-PRI,TON
+37151,0.3840356,Sulfate Portion of PM2.5-PRI,TON
+37139,12.63856,Acrolein,LB
+37139,0.0003871412,Chromium (VI),LB
+37139,0.15529568,Benzo[b]Fluoranthene,LB
+37139,0.6366906,Acenaphthene,LB
+37139,0.2465505,PM2.5 Primary (Filt + Cond),TON
+37139,0.07880471,Remaining PMFINE portion of PM2.5-PRI,TON
+37139,0.1570033,Sulfur Dioxide,TON
+37139,10.73751,Volatile Organic Compounds,TON
+37101,0.0009326374,Sulfate Portion of PM2.5-PRI,TON
+37101,0.5953472,Acrolein,LB
+37101,0.0022281,Arsenic,LB
+37101,0.06080002,Fluorene,LB
+37101,0.02014527,Methane,TON
+37101,15.17529,Carbon Monoxide,TON
+37101,0.009671346,Nitrous Oxide,TON
+37117,271.6748,Ethyl Benzene,LB
+37117,65.06556,"1,3-Butadiene",LB
+37117,8.797382,Acrolein,LB
+37117,1504.1216,Toluene,LB
+37117,0.003318926,Mercury,LB
+37117,2.52196,Phenanthrene,LB
+37189,1.2437416,Xylenes (Mixed Isomers),LB
+37189,0.000680736,Benzo[k]Fluoranthene,LB
+37189,1.135263,Formaldehyde,LB
+37189,0.6288108,"2,2,4-Trimethylpentane",LB
+37189,0.005479784,Methane,TON
+37189,0.0008307009,Organic Carbon portion of PM2.5-PRI,TON
+37185,1.8866134,"1,3-Butadiene",LB
+37185,3.081414,Propionaldehyde,LB
+37185,5.394294,Benzene,LB
+37185,0.0018806106,Arsenic,LB
+37185,0.4132092,Fluorene,LB
+37185,6.271042,Naphthalene,LB
+37185,398.6026,Carbon Dioxide,TON
+37185,0.1687769,PM10-Primary from certain diesel engines,TON
+37169,8.40808,Naphthalene,LB
+37169,3.499408,Carbon Monoxide,TON
+37169,0.09026076,PM10 Primary (Filt + Cond),TON
+37169,0.005727269,Remaining PMFINE portion of PM2.5-PRI,TON
+37169,0.0010372638,"Benzo[g,h,i,]Perylene",LB
+37169,0.008584824,Nickel,LB
+37127,0.6223314,"Benzo[g,h,i,]Perylene",LB
+37127,0.16074026,Benzo[k]Fluoranthene,LB
+37127,0.15105518,Chrysene,LB
+37127,0.484789,Acenaphthene,LB
+37127,0.3940301,Ammonia,TON
+37127,6.51308,Nitrogen Oxides,TON
+37127,0.06030552,Remaining PMFINE portion of PM2.5-PRI,TON
+37127,0.007099596,Sulfate Portion of PM2.5-PRI,TON
+37133,0.0010997644,Arsenic,LB
+37133,0.3514463,Methane,TON
+37133,0.2007594,Xylenes (Mixed Isomers),LB
+37133,3.67114e-06,"Benzo[g,h,i,]Perylene",LB
+37133,11.18196,Formaldehyde,LB
+37133,961.116,Hexane,LB
+37133,5.180308,Acenaphthylene,LB
+37133,21913.61,Carbon Dioxide,TON
+37133,0.1107041,Elemental Carbon portion of PM2.5-PRI,TON
+37133,1.861565,PM10 Primary (Filt + Cond),TON
+37133,19.97751,Volatile Organic Compounds,TON
+37127,0.9054318,Anthracene,LB
+37127,1.496582,Fluoranthene,LB
+37127,0.04095474,Benzo[a]Pyrene,LB
+37127,7.761423,Nitrogen Oxides,TON
+37127,0.5473534,PM10 Primary (Filt + Cond),TON
+37127,0.3280616,Acrolein,LB
+37127,87.25046,Toluene,LB
+37127,4.714418e-05,Mercury,LB
+37127,0.0009013566,Arsenic,LB
+37127,0.002216231,Elemental Carbon portion of PM2.5-PRI,TON
+37127,0.7267205,Nitrogen Oxides,TON
+37127,0.0004224435,Sulfate Portion of PM2.5-PRI,TON
+37127,0.2196996,"2,2,4-Trimethylpentane",LB
+37127,2.493287e-06,Sulfate Portion of PM2.5-PRI,TON
+37127,0.623821,Xylenes (Mixed Isomers),LB
+37121,0.3306648,Xylenes (Mixed Isomers),LB
+37121,0.00012096568,"Dibenzo[a,h]Anthracene",LB
+37121,0.0002843334,Arsenic,LB
+37121,0.02928516,Fluorene,LB
+37117,1.806757e-05,"Benzo[g,h,i,]Perylene",LB
+37117,8.869748e-05,Chrysene,LB
+37117,0.16587566,Benzene,LB
+37117,1.3016598e-06,Nickel,LB
+37117,5.265298,Acetaldehyde,LB
+37117,0.008778569,Nitrous Oxide,TON
+37117,0.002205004,Ammonia,TON
+37117,1.337497,Propionaldehyde,LB
+37111,0.00616487,Pyrene,LB
+37111,0.0013179956,Benzo[b]Fluoranthene,LB
+37111,4.562324e-05,"Dibenzo[a,h]Anthracene",LB
+37111,2.230298e-06,Mercury,LB
+37111,1.200316,Carbon Monoxide,TON
+37111,9.362165,Carbon Dioxide,TON
+37111,5.579428e-06,Nitrate portion of PM2.5-PRI,TON
+37125,14.328144,Ethyl Benzene,LB
+37125,0.02547012,Pyrene,LB
+37123,2056.914,Ethyl Benzene,LB
+37123,70.00778,Styrene,LB
+37123,1.5209096,Benzo[a]Pyrene,LB
+37123,0.04523442,Sulfate Portion of PM2.5-PRI,TON
+37107,19.260572,Formaldehyde,LB
+37107,65.1218,Benzene,LB
+37107,0.00016866326,Mercury,LB
+37107,0.06157588,Acenaphthene,LB
+37107,25.0575,Carbon Monoxide,TON
+37107,0.05241208,Anthracene,LB
+37107,1.2157826,Propionaldehyde,LB
+37107,0.10164224,Pyrene,LB
+37103,0.017520384,Ethyl Benzene,LB
+37103,7.503472e-05,Anthracene,LB
+37103,2.97683,Acetaldehyde,LB
+37103,0.001808183,Remaining PMFINE portion of PM2.5-PRI,TON
+37103,0.03084924,Volatile Organic Compounds,TON
+37097,0.0018399436,Pyrene,LB
+37097,0.0002490708,Chrysene,LB
+37091,51.04242,"1,3-Butadiene",LB
+37091,1.6246194,Acenaphthylene,LB
+37091,109.70418,Formaldehyde,LB
+37091,1.9350684,Phenanthrene,LB
+37091,9.50681,Nitrogen Oxides,TON
+37091,0.2924795,PM10 Primary (Filt + Cond),TON
+37089,0.06703948,Arsenic,LB
+37089,9.620288,Styrene,LB
+37089,79.51696,Xylenes (Mixed Isomers),LB
+37089,0.03365384,"Benzo[g,h,i,]Perylene",LB
+37089,0.04166404,Nitrous Oxide,TON
+37089,0.857642,Organic Carbon portion of PM2.5-PRI,TON
+37087,23.46596,"2,2,4-Trimethylpentane",LB
+37087,5.30126,Fluorene,LB
+37087,90.24566,Naphthalene,LB
+37087,23.77234,Carbon Monoxide,TON
+37087,0.8324272,Organic Carbon portion of PM2.5-PRI,TON
+37087,5.425343,PM10 Primary (Filt + Cond),TON
+37087,0.2252341,Sulfate Portion of PM2.5-PRI,TON
+37073,4.736402,Toluene,LB
+37073,0.1173703,Chrysene,LB
+37073,33.3529,Acetaldehyde,LB
+37073,8.443934,Naphthalene,LB
+37073,1176.236,Carbon Dioxide,TON
+37073,0.006806267,Sulfate Portion of PM2.5-PRI,TON
+37073,0.2968872,Acrolein,LB
+37073,0.0689478,Acenaphthylene,LB
+37073,15.892404,Benzene,LB
+37073,0.7863556,Naphthalene,LB
+37073,0.01822878,PM10 Primary (Filt + Cond),TON
+37067,0.06111452,Arsenic,LB
+37067,5.033534,Phenanthrene,LB
+37067,0.1275117,PM10-Primary from certain diesel engines,TON
+37067,0.1615363,PM2.5 Primary (Filt + Cond),TON
+37067,50.2236,Toluene,LB
+37067,0.001452557,Benzo[k]Fluoranthene,LB
+37067,0.0014376348,"Dibenzo[a,h]Anthracene",LB
+37059,6.239052,Styrene,LB
+37059,1.5294122,Anthracene,LB
+37059,0.04431688,Arsenic,LB
+37059,3.098104,Fluorene,LB
+37059,52.40094,Naphthalene,LB
+37059,55.54029,Nitrogen Oxides,TON
+37059,0.4423373,Organic Carbon portion of PM2.5-PRI,TON
+37057,17.488192,Toluene,LB
+37057,1.4665846,Pyrene,LB
+37057,0.005142864,"Benzo[g,h,i,]Perylene",LB
+37057,0.019651456,Benzo[b]Fluoranthene,LB
+37057,1.1554784,Fluoranthene,LB
+37057,0.002721658,Benzo[k]Fluoranthene,LB
+37057,10.85629,Carbon Monoxide,TON
+37057,0.2310426,Elemental Carbon portion of PM2.5-PRI,TON
+37051,133.67164,Hexane,LB
+37051,5350.128,Formaldehyde,LB
+37051,162.99588,"2,2,4-Trimethylpentane",LB
+37051,0.3449236,Arsenic,LB
+37051,9.38109,Acenaphthene,LB
+37051,12.49681,PM25-Primary from certain diesel engines,TON
+37051,0.1505897,Nitrous Oxide,TON
+37051,23.47723,PM10 Primary (Filt + Cond),TON
+37049,25.27708,Propionaldehyde,LB
+37049,0.0001617079,Chromium (VI),LB
+37049,3.616552,Fluoranthene,LB
+37049,0.00018173148,Mercury,LB
+37049,0.0379995,Arsenic,LB
+37049,0.1886345,Ammonia,TON
+37039,0.0002250102,Chromium (VI),LB
+37039,0.004622002,"Indeno[1,2,3-c,d]Pyrene",LB
+37039,5.276586,Acenaphthylene,LB
+37039,0.6172354,Benz[a]Anthracene,LB
+37039,5.300532,Fluorene,LB
+37039,50.29639,Carbon Monoxide,TON
+37039,25.27984,Xylenes (Mixed Isomers),LB
+37031,0.6635166,Fluorene,LB
+37031,1862.181,Carbon Dioxide,TON
+37031,0.06251136,Organic Carbon portion of PM2.5-PRI,TON
+37031,0.03830192,Sulfur Dioxide,TON
+37031,1448.8974,Xylenes (Mixed Isomers),LB
+37025,5.776914,"2,2,4-Trimethylpentane",LB
+37025,5.26249e-05,Mercury,LB
+37025,98.10964,Acetaldehyde,LB
+37025,0.1272302,Organic Carbon portion of PM2.5-PRI,TON
+37025,0.08272201,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,1.292063,Volatile Organic Compounds,TON
+37025,17.734288,Acrolein,LB
+37085,19.916368,Toluene,LB
+37085,273.1082,Formaldehyde,LB
+37085,0.01238212,Sulfate Portion of PM2.5-PRI,TON
+37085,518.0796,Benzene,LB
+37075,0.000304119,Organic Carbon portion of PM2.5-PRI,TON
+37075,0.03504295,Volatile Organic Compounds,TON
+37075,1.5576838,Hexane,LB
+37075,0.0005042444,Benzo[k]Fluoranthene,LB
+37075,6.970902e-06,Nickel,LB
+37075,0.09948688,Naphthalene,LB
+37063,11.163732,"1,3-Butadiene",LB
+37063,8.964688e-05,Chromium (VI),LB
+37063,0.009452802,"Benzo[g,h,i,]Perylene",LB
+37063,0.07197998,Ammonia,TON
+37059,1.3461998e-05,Chromium (VI),LB
+37059,0.002121442,"Benzo[g,h,i,]Perylene",LB
+37059,0.5448026,Phenanthrene,LB
+37059,0.3085982,Fluorene,LB
+37059,0.1222905,PM25-Primary from certain diesel engines,TON
+37059,0.1809364,PM10 Primary (Filt + Cond),TON
+37059,1.345977,"1,3-Butadiene",LB
+37059,2.231124,Propionaldehyde,LB
+37061,0.0002170672,Acenaphthene,LB
+37061,0.0010227342,Phenanthrene,LB
+37061,0.7218092,Carbon Monoxide,TON
+37061,91.50004,Carbon Dioxide,TON
+37055,10.373326,Toluene,LB
+37055,0.0006881602,Benzo[b]Fluoranthene,LB
+37055,1.9700098e-05,"Dibenzo[a,h]Anthracene",LB
+37055,0.000216013,Manganese,LB
+37055,0.8888342,Acetaldehyde,LB
+37055,5.97723,Carbon Dioxide,TON
+37055,0.000229999,Elemental Carbon portion of PM2.5-PRI,TON
+37055,0.05113372,Volatile Organic Compounds,TON
+37053,0.0003294416,Anthracene,LB
+37053,0.8719876,Xylenes (Mixed Isomers),LB
+37053,0.0017198882,Acenaphthylene,LB
+37053,0.3489934,Benzene,LB
+37053,0.0007615506,Fluorene,LB
+37053,5.577798e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37053,7.415156e-05,Ammonia,TON
+37047,82.66008,Toluene,LB
+37047,62.6794,Hexane,LB
+37039,9.044613e-05,Sulfate Portion of PM2.5-PRI,TON
+37039,0.932728,"1,3-Butadiene",LB
+37039,35.43502,Toluene,LB
+37039,6.383372e-05,"Dibenzo[a,h]Anthracene",LB
+37039,1.632066e-05,Mercury,LB
+37039,63.17901,Carbon Dioxide,TON
+37033,26.40887,Carbon Dioxide,TON
+37033,0.03602182,Volatile Organic Compounds,TON
+37033,0.0427256,Propionaldehyde,LB
+37033,0.002085052,"Benzo[g,h,i,]Perylene",LB
+37033,0.0007833596,"Indeno[1,2,3-c,d]Pyrene",LB
+37033,0.0006216948,Benzo[k]Fluoranthene,LB
+37023,1.0425794,Pyrene,LB
+37023,13.844156,Xylenes (Mixed Isomers),LB
+37023,0.14940776,Benz[a]Anthracene,LB
+37023,0.02599618,Nickel,LB
+37023,0.010082974,Arsenic,LB
+37023,1.7000934,Phenanthrene,LB
+37023,1362.034,Carbon Dioxide,TON
+37023,0.01172518,Sulfur Dioxide,TON
+37023,1.21404,Elemental Carbon portion of PM2.5-PRI,TON
+37023,224.5838,Nitrogen Oxides,TON
+37023,174.5578,Acrolein,LB
+37173,0.3875062,Manganese,LB
+37173,0.019000716,Mercury,LB
+37173,7.86102,Phenanthrene,LB
+37173,25386.31,Carbon Dioxide,TON
+37173,0.5681714,Nitrous Oxide,TON
+37173,2.413988,Ammonia,TON
+37173,0.002493588,Nitrate portion of PM2.5-PRI,TON
+37173,0.2466181,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,27.74182,Propionaldehyde,LB
+37173,0.5388588,Benzo[b]Fluoranthene,LB
+37167,13.826584,"Benzo[g,h,i,]Perylene",LB
+37167,5313.476,Formaldehyde,LB
+37167,2.875857,Organic Carbon portion of PM2.5-PRI,TON
+37167,6.08074,PM2.5 Primary (Filt + Cond),TON
+37159,0.12020078,Acenaphthene,LB
+37159,4.413598,Naphthalene,LB
+37159,0.0004866854,Nitrate portion of PM2.5-PRI,TON
+37159,1.3733236,Ethyl Benzene,LB
+37159,1.1924296,"1,3-Butadiene",LB
+37159,1.0566164,Hexane,LB
+37159,2.006654,Propionaldehyde,LB
+37159,0.0016668534,"Benzo[g,h,i,]Perylene",LB
+37159,0.02337334,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,0.03460342,Ethyl Benzene,LB
+37155,5.60093,Acetaldehyde,LB
+37149,3.279936,Anthracene,LB
+37149,71.59926,Xylenes (Mixed Isomers),LB
+37149,5.191696,Fluoranthene,LB
+37149,0.003082004,"Dibenzo[a,h]Anthracene",LB
+37149,86.12554,Carbon Monoxide,TON
+37149,1.0879,PM25-Primary from certain diesel engines,TON
+37149,0.07158879,Sulfur Dioxide,TON
+37161,2.234888,Styrene,LB
+37161,0.5137552,Acenaphthene,LB
+37161,17.412524,Naphthalene,LB
+37161,998.8032,Carbon Dioxide,TON
+37137,2.594684,Xylenes (Mixed Isomers),LB
+37137,1.1401766,Benzene,LB
+37137,0.0002179054,Organic Carbon portion of PM2.5-PRI,TON
+37137,0.0015278578,Fluoranthene,LB
+37131,0.8316974,Propionaldehyde,LB
+37131,0.0950576,"Benzo[g,h,i,]Perylene",LB
+37131,0.0357156,"Indeno[1,2,3-c,d]Pyrene",LB
+37131,0.04262842,Acenaphthene,LB
+37131,0.08634764,Fluorene,LB
+37131,0.03226921,Methane,TON
+37131,0.02920341,Nitrous Oxide,TON
+37131,0.01899707,Sulfur Dioxide,TON
+37117,0.03677248,Chrysene,LB
+37117,2.83641,Styrene,LB
+37117,2.412228,Acrolein,LB
+37117,0.18757964,Fluoranthene,LB
+37117,0.05853894,Methane,TON
+37117,0.006060009,Nitrous Oxide,TON
+37117,0.001577973,Sulfate Portion of PM2.5-PRI,TON
+37107,16.363196,Styrene,LB
+37107,36.69696,"1,3-Butadiene",LB
+37107,86.40528,Acrolein,LB
+37107,59.55616,Propionaldehyde,LB
+37107,0.03572414,Benzo[b]Fluoranthene,LB
+37107,0.14491484,Nickel,LB
+37107,0.2199632,Methane,TON
+37107,0.9144747,PM25-Primary from certain diesel engines,TON
+37107,0.1803115,Organic Carbon portion of PM2.5-PRI,TON
+37107,0.9514853,PM2.5 Primary (Filt + Cond),TON
+37107,3.62677,Ethyl Benzene,LB
+37107,0.009113786,Pyrene,LB
+37107,3.157192e-06,Chromium (VI),LB
+37107,0.02492412,Acenaphthylene,LB
+37107,0.001510617,Chrysene,LB
+37107,4.852336,"2,2,4-Trimethylpentane",LB
+37107,0.0003946376,Nickel,LB
+37107,2.515267,Carbon Monoxide,TON
+37107,8.293735e-05,Sulfate Portion of PM2.5-PRI,TON
+37099,194.28384,Formaldehyde,LB
+37099,4.873522,"2,2,4-Trimethylpentane",LB
+37099,0.632656,Acenaphthene,LB
+37099,1.1032538,Fluorene,LB
+37099,0.2377148,PM10-Primary from certain diesel engines,TON
+37099,0.04723509,Ammonia,TON
+37099,0.007345103,Sulfate Portion of PM2.5-PRI,TON
+37099,0.5313084,Anthracene,LB
+37099,13.192554,Xylenes (Mixed Isomers),LB
+37093,0.03092194,Anthracene,LB
+37093,0.0004214138,"Benzo[g,h,i,]Perylene",LB
+37093,0.11098468,Phenanthrene,LB
+37093,0.001944277,Sulfur Dioxide,TON
+37087,1.9261456,Nickel,LB
+37087,1210.5926,Naphthalene,LB
+37087,12.24988,Methane,TON
+37087,10.34539,Nitrous Oxide,TON
+37087,3153.328,"1,3-Butadiene",LB
+37087,420.0822,Acrolein,LB
+37087,7.810312,Benzo[b]Fluoranthene,LB
+37087,34.42286,Fluoranthene,LB
+37087,0.261984,"Dibenzo[a,h]Anthracene",LB
+37085,60.0953,Ethyl Benzene,LB
+37085,222.2582,Xylenes (Mixed Isomers),LB
+37085,0.07388656,Methane,TON
+37085,0.0001528379,Nitrate portion of PM2.5-PRI,TON
+37085,0.02658684,Organic Carbon portion of PM2.5-PRI,TON
+37081,0.017518034,Benzo[a]Pyrene,LB
+37081,23.10316,Ethyl Benzene,LB
+37081,28.81346,Hexane,LB
+37081,2.122256e-06,Chromium (VI),LB
+37081,0.017528786,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.05519224,Fluoranthene,LB
+37081,0.011492666,Chrysene,LB
+37081,33.64146,Benzene,LB
+37081,12.103186,Acetaldehyde,LB
+37081,0.2039296,Phenanthrene,LB
+37075,0.006062558,"1,3-Butadiene",LB
+37075,0.00017631184,Pyrene,LB
+37075,9.24741e-05,Fluoranthene,LB
+37075,14.518584,Formaldehyde,LB
+37075,24.73612,Carbon Dioxide,TON
+37075,0.0001502029,Elemental Carbon portion of PM2.5-PRI,TON
+37075,0.0006724378,Ammonia,TON
+37075,0.1114829,Nitrogen Oxides,TON
+37075,0.05793872,Acrolein,LB
+37075,0.01894255,Hexane,LB
+37075,1.53924e-07,Chromium (VI),LB
+37075,0.0016219382,Benz[a]Anthracene,LB
+37075,0.06930936,Benzene,LB
+37075,5.792506,Carbon Dioxide,TON
+37075,8.648863e-06,Nitrate portion of PM2.5-PRI,TON
+37047,3.027252,Hexane,LB
+37049,1.0304362,Formaldehyde,LB
+37049,0.0012115042,Benzo[a]Pyrene,LB
+37049,1.5515428,Benzene,LB
+37049,0.0010284508,Arsenic,LB
+37049,1.142922,Xylenes (Mixed Isomers),LB
+37049,0.003267458,"Benzo[g,h,i,]Perylene",LB
+37049,0.0012276194,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.006545824,PM10 Primary (Filt + Cond),TON
+37035,10.098998,Ethyl Benzene,LB
+37035,35.9596,Xylenes (Mixed Isomers),LB
+37035,0.019949634,Benzo[b]Fluoranthene,LB
+37035,18.42711,"2,2,4-Trimethylpentane",LB
+37035,0.016276152,Nickel,LB
+37035,0.1362689,Methane,TON
+37035,0.00912655,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.05632345,PM2.5 Primary (Filt + Cond),TON
+37035,0.07296384,Sulfur Dioxide,TON
+37007,8.062342,Toluene,LB
+37007,3.025264,"2,2,4-Trimethylpentane",LB
+37115,0.0014771744,Phenanthrene,LB
+37115,0.0005299888,Fluorene,LB
+37115,0.002137829,Methane,TON
+37115,0.000473993,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.0012071372,Acenaphthylene,LB
+37169,0.3423304,Xylenes (Mixed Isomers),LB
+37169,0.011328046,Benz[a]Anthracene,LB
+37169,0.0010132122,Manganese,LB
+37169,0.01154836,PM25-Primary from certain diesel engines,TON
+37169,0.0001078294,Nitrous Oxide,TON
+37167,3.507642e-05,Chromium (VI),LB
+37167,0.00697834,Arsenic,LB
+37167,43.23926,Acetaldehyde,LB
+37167,0.3000842,Acenaphthene,LB
+37021,1.0143572e-08,Chromium (VI),LB
+37021,2.332168e-05,Sulfate Portion of PM2.5-PRI,TON
+37011,12.499984,Toluene,LB
+37011,4.073744,Hexane,LB
+37011,0.16741602,Chrysene,LB
+37011,0.003474164,"Dibenzo[a,h]Anthracene",LB
+37011,6.687368e-05,Mercury,LB
+37011,0.4664472,Acenaphthene,LB
+37011,0.05970727,Remaining PMFINE portion of PM2.5-PRI,TON
+37009,0.004349328,PM2.5 Primary (Filt + Cond),TON
+37009,0.04177729,Volatile Organic Compounds,TON
+37009,38.04692,Formaldehyde,LB
+37009,4.013936e-05,Benz[a]Anthracene,LB
+37009,4.098796,Acetaldehyde,LB
+37009,0.00015614958,Acenaphthene,LB
+37005,0.006074068,"1,3-Butadiene",LB
+37005,0.00017805672,Pyrene,LB
+37005,0.0571286,Xylenes (Mixed Isomers),LB
+37005,4.776366e-06,Mercury,LB
+37005,24.85657,Carbon Dioxide,TON
+37005,0.007337393,Nitrous Oxide,TON
+37005,0.0005870663,Organic Carbon portion of PM2.5-PRI,TON
+37005,0.001699674,PM2.5 Primary (Filt + Cond),TON
+37005,0.0009414901,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,1.6115656,Acrolein,LB
+37155,0.00014682042,Chromium (VI),LB
+37155,0.02184572,Benzo[b]Fluoranthene,LB
+37155,0.8629748,Naphthalene,LB
+37155,1.077541,Volatile Organic Compounds,TON
+37135,1.130298e-05,Nitrate portion of PM2.5-PRI,TON
+37135,0.004653913,PM2.5 Primary (Filt + Cond),TON
+37135,1.0139842,Hexane,LB
+37135,2.174552,Xylenes (Mixed Isomers),LB
+37135,0.0013669414,Benz[a]Anthracene,LB
+37135,2.996742,Benzene,LB
+37135,0.006043616,Phenanthrene,LB
+37121,0.4271408,Xylenes (Mixed Isomers),LB
+37121,0.0008036232,"Benzo[g,h,i,]Perylene",LB
+37121,0.0001866746,Organic Carbon portion of PM2.5-PRI,TON
+37121,2.452636,Acetaldehyde,LB
+37007,0.10869668,Chrysene,LB
+37007,0.2455834,Acenaphthene,LB
+37007,5.854026,Acrolein,LB
+37189,1.0837928,Benz[a]Anthracene,LB
+37189,56434.86,Carbon Dioxide,TON
+37189,71.26984,Acrolein,LB
+37189,1.6403022,"Indeno[1,2,3-c,d]Pyrene",LB
+37179,2.195378,Acrolein,LB
+37179,0.09790632,Acenaphthylene,LB
+37179,23.62168,"2,2,4-Trimethylpentane",LB
+37179,61.37764,Toluene,LB
+37179,20.5606,Hexane,LB
+37179,0.0311317,Benzo[b]Fluoranthene,LB
+37179,21.40868,"2,2,4-Trimethylpentane",LB
+37179,0.10185034,Nickel,LB
+37179,0.8130412,PM2.5 Primary (Filt + Cond),TON
+37179,0.05452916,Sulfur Dioxide,TON
+37179,4.44125,Volatile Organic Compounds,TON
+37091,773.5618,Hexane,LB
+37087,0.0005023312,Acenaphthylene,LB
+37087,0.00010247926,Chrysene,LB
+37087,0.0004820632,Fluorene,LB
+37087,0.01143275,Nitrous Oxide,TON
+37087,7.074484e-05,Sulfate Portion of PM2.5-PRI,TON
+37087,0.05937672,Volatile Organic Compounds,TON
+37077,1785.5944,Ethyl Benzene,LB
+37077,396.5884,Benzene,LB
+37075,0.1901912,"Benzo[g,h,i,]Perylene",LB
+37075,66.53682,Formaldehyde,LB
+37075,0.4413138,Fluorene,LB
+37075,0.1097159,Nitrous Oxide,TON
+37075,0.16205,Ammonia,TON
+37069,2.734594e-07,Manganese,LB
+37069,0.02050802,Carbon Dioxide,TON
+37069,7.875988e-05,Volatile Organic Compounds,TON
+37069,8.71922e-05,Propionaldehyde,LB
+37069,0.009971014,Xylenes (Mixed Isomers),LB
+37069,1.1487554e-06,Benzo[b]Fluoranthene,LB
+37069,0.004305624,Benzene,LB
+37065,3.16492,Pyrene,LB
+37065,0.000209352,Chromium (VI),LB
+37065,0.012844996,"Benzo[g,h,i,]Perylene",LB
+37065,2.46386,Fluoranthene,LB
+37065,675.1428,Formaldehyde,LB
+37065,0.01938675,Nitrous Oxide,TON
+37063,3.52728,"1,3-Butadiene",LB
+37063,3.16695,Hexane,LB
+37063,0.00541662,"Benzo[g,h,i,]Perylene",LB
+37063,0.003719684,Benzo[k]Fluoranthene,LB
+37063,0.0905636,Benzo[a]Pyrene,LB
+37063,13.173934,Naphthalene,LB
+37063,0.1264788,Elemental Carbon portion of PM2.5-PRI,TON
+37055,9.415542,"1,3-Butadiene",LB
+37055,8.608192,Hexane,LB
+37055,2.953732,Pyrene,LB
+37055,0.000125366,Chromium (VI),LB
+37055,1.5921924,Acenaphthylene,LB
+37055,0.2531997,Methane,TON
+37055,0.8311582,Elemental Carbon portion of PM2.5-PRI,TON
+37055,1.781581,Volatile Organic Compounds,TON
+37049,0.08162278,Phenanthrene,LB
+37049,0.001246358,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.01286859,Anthracene,LB
+37049,0.003723164,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.18583116,Propionaldehyde,LB
+37035,2.243862e-06,"Benzo[g,h,i,]Perylene",LB
+37035,0.00015933064,Naphthalene,LB
+37033,0.9330536,PM25-Primary from certain diesel engines,TON
+37033,0.6573285,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.006327838,Nitrous Oxide,TON
+37033,0.09156715,Ammonia,TON
+37033,15.168338,Toluene,LB
+37033,0.00512764,Benzo[k]Fluoranthene,LB
+37027,1.0373254e-05,Chromium (VI),LB
+37027,0.0013217548,Benzo[k]Fluoranthene,LB
+37027,0.2028486,Acenaphthylene,LB
+37027,0.06103238,Chrysene,LB
+37027,0.0013191436,"Dibenzo[a,h]Anthracene",LB
+37027,449.9323,Carbon Dioxide,TON
+37027,0.01213609,Ammonia,TON
+37027,0.2222638,Volatile Organic Compounds,TON
+37023,0.8530122,Xylenes (Mixed Isomers),LB
+37023,0.10169826,Fluoranthene,LB
+37023,0.07498508,Acenaphthylene,LB
+37023,0.5953582,Nitrogen Oxides,TON
+37077,0.001088211,Anthracene,LB
+37077,0.0015223644,Benzo[b]Fluoranthene,LB
+37077,0.0011481812,Chrysene,LB
+37077,1.9002318,Formaldehyde,LB
+37077,0.0007284951,Elemental Carbon portion of PM2.5-PRI,TON
+37077,0.004167347,PM2.5 Primary (Filt + Cond),TON
+37175,0.010495186,Styrene,LB
+37175,0.4034092,Hexane,LB
+37175,0.0003297082,Anthracene,LB
+37175,0.0006788016,Pyrene,LB
+37175,0.0005918146,"Indeno[1,2,3-c,d]Pyrene",LB
+37175,0.4327602,"2,2,4-Trimethylpentane",LB
+37175,42.58796,Carbon Dioxide,TON
+37175,0.0007881663,Nitrous Oxide,TON
+37167,0.004770312,Phenanthrene,LB
+37167,0.0016976034,Fluorene,LB
+37167,0.002171711,Nitrous Oxide,TON
+37167,0.001215309,Organic Carbon portion of PM2.5-PRI,TON
+37167,0.002921414,PM2.5 Primary (Filt + Cond),TON
+37167,0.12517002,"1,3-Butadiene",LB
+37167,1.0484052,Hexane,LB
+37167,0.0016351674,Pyrene,LB
+37167,0.0012154494,Nickel,LB
+37137,0.2653646,Benzene,LB
+37137,8.778192e-05,Nickel,LB
+37137,0.0005140516,Phenanthrene,LB
+37123,0.4766848,Acrolein,LB
+37123,3.857946,Hexane,LB
+37123,0.007736307,Nitrous Oxide,TON
+37121,29.75672,Acetaldehyde,LB
+37121,4.946948,Toluene,LB
+37121,0.5614246,Propionaldehyde,LB
+37121,2.253062,"2,2,4-Trimethylpentane",LB
+37079,0.858795,Ethyl Benzene,LB
+37079,2.571102,"2,2,4-Trimethylpentane",LB
+37175,0.00976459,"Benzo[g,h,i,]Perylene",LB
+37175,1.5850856,Fluoranthene,LB
+37175,1.0419948,Acenaphthylene,LB
+37175,0.16469914,Benzo[a]Pyrene,LB
+37175,0.00671285,"Dibenzo[a,h]Anthracene",LB
+37175,2.9966e-05,Mercury,LB
+37175,0.04525082,Methane,TON
+37175,2408.259,Carbon Dioxide,TON
+37175,0.8961468,PM10-Primary from certain diesel engines,TON
+37175,1.152089,PM10 Primary (Filt + Cond),TON
+37175,0.02102528,Sulfur Dioxide,TON
+37175,0.7093116,Fluoranthene,LB
+37175,0.4903596,Acenaphthene,LB
+37175,89.31472,Carbon Monoxide,TON
+37175,0.3044247,Ammonia,TON
+37175,0.004231058,Sulfate Portion of PM2.5-PRI,TON
+37171,0.08956858,Anthracene,LB
+37171,0.475373,Acenaphthylene,LB
+37171,101.29952,"2,2,4-Trimethylpentane",LB
+37171,36.47886,Acetaldehyde,LB
+37171,765.6214,Carbon Dioxide,TON
+37169,0.6329428,Benz[a]Anthracene,LB
+37169,0.01276049,Nitrous Oxide,TON
+37169,0.08683463,Ammonia,TON
+37169,0.03199122,Sulfate Portion of PM2.5-PRI,TON
+37169,7.930926,Hexane,LB
+37169,14.806666,Propionaldehyde,LB
+37169,26.69464,Xylenes (Mixed Isomers),LB
+37167,5.971548,Benzene,LB
+37167,27.57196,Acetaldehyde,LB
+37167,6.957164,Naphthalene,LB
+37167,0.1968534,Anthracene,LB
+37167,0.0017900532,"Benzo[g,h,i,]Perylene",LB
+37167,0.2246824,PM10 Primary (Filt + Cond),TON
+37167,0.00516263,Sulfate Portion of PM2.5-PRI,TON
+37167,0.03889208,Nickel,LB
+37167,0.006674824,Nitrous Oxide,TON
+37167,0.4038346,PM10 Primary (Filt + Cond),TON
+37167,0.1086424,Chrysene,LB
+37149,88.0226,Acrolein,LB
+37149,0.016995642,"Benzo[g,h,i,]Perylene",LB
+37149,1484.2038,Formaldehyde,LB
+37149,0.000355425,Mercury,LB
+37149,2.180906,Acenaphthene,LB
+37149,2.420103,Methane,TON
+37149,83.33506,Nitrogen Oxides,TON
+37149,2.402276,PM2.5 Primary (Filt + Cond),TON
+37045,3.186238,"1,3-Butadiene",LB
+37045,0.005764142,Benzo[a]Pyrene,LB
+37045,11.512948,Naphthalene,LB
+37045,0.06742313,Methane,TON
+37045,9.901109,Carbon Monoxide,TON
+37045,0.001082671,Nitrous Oxide,TON
+37045,0.01610639,Ammonia,TON
+37045,0.01061354,Organic Carbon portion of PM2.5-PRI,TON
+37045,0.02526555,PM2.5 Primary (Filt + Cond),TON
+37045,0.5888427,Volatile Organic Compounds,TON
+37041,14.654596,Benzene,LB
+37041,7.639122e-05,Mercury,LB
+37041,0.3507884,Acenaphthene,LB
+37041,0.2551765,Methane,TON
+37041,0.09013038,Ammonia,TON
+37035,0.4010178,Arsenic,LB
+37035,0.5902338,Organic Carbon portion of PM2.5-PRI,TON
+37035,0.7630332,Benzo[k]Fluoranthene,LB
+37033,12.206494,Propionaldehyde,LB
+37033,0.0513772,Benzo[b]Fluoranthene,LB
+37033,1.2631378,Acenaphthylene,LB
+37033,100.7625,Acetaldehyde,LB
+37033,0.7513512,Acenaphthene,LB
+37033,1.640429,Fluorene,LB
+37033,0.0968913,Methane,TON
+37033,0.2425459,Organic Carbon portion of PM2.5-PRI,TON
+37029,0.4200718,Acenaphthylene,LB
+37029,6.959466,Benzene,LB
+37029,2.110506,Carbon Monoxide,TON
+37029,0.2174995,Elemental Carbon portion of PM2.5-PRI,TON
+37029,0.001001061,Nitrate portion of PM2.5-PRI,TON
+37029,7.527508,Nitrogen Oxides,TON
+37019,0.5872746,Manganese,LB
+37019,0.000718897,Mercury,LB
+37019,2.828008,Elemental Carbon portion of PM2.5-PRI,TON
+37019,0.8364793,Ammonia,TON
+37019,4.739056,PM2.5 Primary (Filt + Cond),TON
+37009,0.2348616,"1,3-Butadiene",LB
+37009,0.5985852,Acrolein,LB
+37009,0.0003797762,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,0.004997956,Benzo[a]Pyrene,LB
+37009,0.7168746,Benzene,LB
+37009,0.002589984,Ammonia,TON
+37009,0.05314214,"Indeno[1,2,3-c,d]Pyrene",LB
+37009,169.33058,Benzene,LB
+37009,0.258579,Fluorene,LB
+37005,0.008591706,Benzene,LB
+37005,1.7395162e-05,Fluorene,LB
+37005,2.061751e-06,Organic Carbon portion of PM2.5-PRI,TON
+37005,6.118794e-06,PM10 Primary (Filt + Cond),TON
+37005,9.468439e-07,Sulfur Dioxide,TON
+37005,9.590121e-08,Sulfate Portion of PM2.5-PRI,TON
+37005,0.005448794,Ethyl Benzene,LB
+37005,4.000948e-06,"Indeno[1,2,3-c,d]Pyrene",LB
+37005,2.733974e-06,Benz[a]Anthracene,LB
+37005,0.007176118,Acrolein,LB
+37005,6.40751e-05,Benzo[b]Fluoranthene,LB
+37005,0.0005697094,Fluorene,LB
+37005,0.00757597,Nitrogen Oxides,TON
+37005,6.453911e-05,Sulfur Dioxide,TON
+37005,0.004322752,Volatile Organic Compounds,TON
+37033,0.002577002,Benzo[b]Fluoranthene,LB
+37033,7.252838,Formaldehyde,LB
+37033,0.0018385722,Nickel,LB
+37033,0.002819044,Arsenic,LB
+37033,0.0001507569,Sulfate Portion of PM2.5-PRI,TON
+37009,1.253165e-05,Sulfate Portion of PM2.5-PRI,TON
+37009,0.1732394,Hexane,LB
+37009,0.000401871,Pyrene,LB
+37009,1.355552e-06,Chromium (VI),LB
+37009,0.00015783974,Chrysene,LB
+37009,0.00017744394,Benz[a]Anthracene,LB
+37009,0.0002598134,Arsenic,LB
+37143,0.3391702,Styrene,LB
+37143,0.2792588,Propionaldehyde,LB
+37143,0.0663627,Acenaphthylene,LB
+37143,0.004739042,Benzo[a]Pyrene,LB
+37143,0.003823362,Benz[a]Anthracene,LB
+37143,6.629032e-05,Mercury,LB
+37143,242.33,Carbon Dioxide,TON
+37129,3446.29,Ethyl Benzene,LB
+37125,22.04472,Ethyl Benzene,LB
+37125,17.134028,Hexane,LB
+37125,1.8691004,Anthracene,LB
+37125,0.700756,Chrysene,LB
+37125,0.00016693612,Mercury,LB
+37125,0.06676692,Nickel,LB
+37125,279.1208,Acetaldehyde,LB
+37125,2.009271,PM10 Primary (Filt + Cond),TON
+37125,0.06182827,Sulfur Dioxide,TON
+37125,15.63287,Ammonia,TON
+37125,0.01812632,Nitrate portion of PM2.5-PRI,TON
+37125,0.1804441,Sulfate Portion of PM2.5-PRI,TON
+37125,14601.76,Hexane,LB
+37121,2.527404e-05,Chromium (VI),LB
+37121,0.2989332,Acenaphthylene,LB
+37121,7.619784e-05,Nitrate portion of PM2.5-PRI,TON
+37119,0.28352,Arsenic,LB
+37119,41.07284,Fluorene,LB
+37119,25.31491,PM25-Primary from certain diesel engines,TON
+37119,191.63332,Ethyl Benzene,LB
+37119,145.9326,Hexane,LB
+37119,0.04153716,"Indeno[1,2,3-c,d]Pyrene",LB
+37119,0.0011112096,Mercury,LB
+37119,1395.6852,Acetaldehyde,LB
+37119,9.518004,Acenaphthene,LB
+37119,0.1229018,Nitrous Oxide,TON
+37119,0.2906902,Sulfur Dioxide,TON
+37119,0.2330507,Sulfate Portion of PM2.5-PRI,TON
+37099,31.56732,Toluene,LB
+37099,33.23204,Xylenes (Mixed Isomers),LB
+37099,0.5379168,Chrysene,LB
+37099,10.916424,"2,2,4-Trimethylpentane",LB
+37099,0.1209382,Ammonia,TON
+37099,0.004917243,Nitrate portion of PM2.5-PRI,TON
+37091,1.6937256,Acetaldehyde,LB
+37091,0.006440757,Methane,TON
+37091,8.810824,Carbon Dioxide,TON
+37091,4.790305e-06,Nitrate portion of PM2.5-PRI,TON
+37091,0.09663968,Nitrogen Oxides,TON
+37091,4.37636,Hexane,LB
+37091,0.001382477,Benz[a]Anthracene,LB
+37091,0.0001968441,Manganese,LB
+37071,4.215524,"1,3-Butadiene",LB
+37071,6.723568e-06,Chromium (VI),LB
+37071,0.15084546,Acenaphthylene,LB
+37071,0.011485578,Chrysene,LB
+37071,12.90177,Carbon Monoxide,TON
+37071,0.04773401,PM10 Primary (Filt + Cond),TON
+37071,0.0006553114,Sulfate Portion of PM2.5-PRI,TON
+37063,11.225928,Hexane,LB
+37063,1.459225e-05,Chromium (VI),LB
+37063,0.02199298,Fluoranthene,LB
+37063,0.013802484,Acenaphthene,LB
+37063,0.002872211,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.01161014,Sulfur Dioxide,TON
+37063,0.0006511102,Sulfate Portion of PM2.5-PRI,TON
+37065,0.06380982,Propionaldehyde,LB
+37065,0.01525571,Acenaphthylene,LB
+37065,0.1734872,Naphthalene,LB
+37065,0.002133786,Nitrous Oxide,TON
+37065,8.301715e-06,Nitrate portion of PM2.5-PRI,TON
+37065,0.001498601,Organic Carbon portion of PM2.5-PRI,TON
+37065,0.008310344,PM10 Primary (Filt + Cond),TON
+37061,0.15865316,Benz[a]Anthracene,LB
+37061,1.8724106,"1,3-Butadiene",LB
+37061,0.1722357,PM25-Primary from certain diesel engines,TON
+37049,136.24728,Acrolein,LB
+37049,0.0004133346,Chromium (VI),LB
+37049,9.636538,Acenaphthylene,LB
+37049,0.005898882,"Dibenzo[a,h]Anthracene",LB
+37049,42.2571,"2,2,4-Trimethylpentane",LB
+37049,188.7884,Naphthalene,LB
+37049,0.5595469,Methane,TON
+37049,0.9983756,Elemental Carbon portion of PM2.5-PRI,TON
+37049,0.09450257,Sulfur Dioxide,TON
+37047,0.00597961,Acrolein,LB
+37047,0.0003211222,Acenaphthene,LB
+37047,0.01720212,Nitrogen Oxides,TON
+37045,482.3392,Acrolein,LB
+37045,90126.34,Toluene,LB
+37045,7.208992,Benzo[k]Fluoranthene,LB
+37045,9.470924,Benzo[a]Pyrene,LB
+37045,19655.562,"2,2,4-Trimethylpentane",LB
+37045,0.1556072,Mercury,LB
+37045,8911.568,Acetaldehyde,LB
+37045,3.132862,Remaining PMFINE portion of PM2.5-PRI,TON
+37035,0.02214402,"Benzo[g,h,i,]Perylene",LB
+37035,0.3627312,Benzo[a]Pyrene,LB
+37035,12.445838,"2,2,4-Trimethylpentane",LB
+37035,2977.682,Carbon Dioxide,TON
+37035,1.269659,PM10-Primary from certain diesel engines,TON
+37035,0.05901734,Ammonia,TON
+37035,18.79646,Nitrogen Oxides,TON
+37025,4.151342e-06,Chromium (VI),LB
+37025,0.005426464,Benzo[b]Fluoranthene,LB
+37025,0.0353938,Chrysene,LB
+37025,0.00248604,Nickel,LB
+37027,1.207335,Acenaphthylene,LB
+37027,0.00297144,Nitrate portion of PM2.5-PRI,TON
+37027,1.278012,Volatile Organic Compounds,TON
+37023,0.0003657494,Fluoranthene,LB
+37023,0.00010380276,Chrysene,LB
+37023,0.0003931938,Arsenic,LB
+37023,111.2395,Carbon Dioxide,TON
+37023,0.01680543,PM10 Primary (Filt + Cond),TON
+37023,0.003731843,Remaining PMFINE portion of PM2.5-PRI,TON
+37023,0.0005889608,Sulfur Dioxide,TON
+37023,8.06727e-05,Sulfate Portion of PM2.5-PRI,TON
+37023,7.576968,Propionaldehyde,LB
+37023,0.181876,Benzo[a]Pyrene,LB
+37023,849.4004,"2,2,4-Trimethylpentane",LB
+37023,0.13318134,Benz[a]Anthracene,LB
+37023,0.020608,Nickel,LB
+37023,0.2130283,Methane,TON
+37023,0.02653134,Elemental Carbon portion of PM2.5-PRI,TON
+37023,0.04985503,Remaining PMFINE portion of PM2.5-PRI,TON
+37171,28.23134,Hexane,LB
+37171,0.00030775,Chromium (VI),LB
+37171,116.77114,Naphthalene,LB
+37171,0.8286054,Methane,TON
+37165,4.721516,Hexane,LB
+37165,0.003189544,"Indeno[1,2,3-c,d]Pyrene",LB
+37165,0.008933808,Fluoranthene,LB
+37165,0.0274756,Acenaphthylene,LB
+37165,1.9413628,Acetaldehyde,LB
+37165,0.005216041,PM10 Primary (Filt + Cond),TON
+37163,0.3645376,Styrene,LB
+37163,2.075826,Acrolein,LB
+37163,1.3735746,Propionaldehyde,LB
+37163,1.9476912,Xylenes (Mixed Isomers),LB
+37163,0.0007503384,Benzo[k]Fluoranthene,LB
+37163,0.012004952,Manganese,LB
+37163,9.285476e-06,Mercury,LB
+37163,11.515106,Acetaldehyde,LB
+37163,0.01305164,Methane,TON
+37163,0.02695284,Organic Carbon portion of PM2.5-PRI,TON
+37159,74.512,Styrene,LB
+37159,28.47148,Pyrene,LB
+37159,0.0011582098,Chromium (VI),LB
+37159,1.89804,Chrysene,LB
+37159,0.0227627,"Dibenzo[a,h]Anthracene",LB
+37159,470.1472,Benzene,LB
+37159,100.453,Nitrogen Oxides,TON
+37145,0.8232782,Ethyl Benzene,LB
+37145,1.9132012,Acrolein,LB
+37145,6.6441e-06,Chromium (VI),LB
+37145,6.681962e-06,Mercury,LB
+37145,0.0013970746,Arsenic,LB
+37145,0.02852963,Organic Carbon portion of PM2.5-PRI,TON
+37145,0.002531669,Sulfate Portion of PM2.5-PRI,TON
+37131,3.458954,Acrolein,LB
+37131,0.2614092,Fluoranthene,LB
+37131,0.0007791834,Nitrous Oxide,TON
+37131,0.001631795,Organic Carbon portion of PM2.5-PRI,TON
+37121,10.33194,Hexane,LB
+37121,410.9132,Formaldehyde,LB
+37121,0.03693102,Manganese,LB
+37121,0.01413182,Arsenic,LB
+37121,0.2713021,PM25-Primary from certain diesel engines,TON
+37121,0.3509863,PM10 Primary (Filt + Cond),TON
+37121,2.431556,Volatile Organic Compounds,TON
+37117,2.186248,Acetaldehyde,LB
+37117,0.016450692,Acenaphthene,LB
+37117,0.3968658,Acrolein,LB
+37111,0.5893438,Chrysene,LB
+37111,0.15261302,Benzo[a]Pyrene,LB
+37111,0.2146056,Manganese,LB
+37111,0.07515416,Arsenic,LB
+37111,752.2466,Acetaldehyde,LB
+37111,1.51191,PM25-Primary from certain diesel engines,TON
+37111,1.161977,Elemental Carbon portion of PM2.5-PRI,TON
+37123,2.570406e-05,Mercury,LB
+37123,1.9927966,Acetaldehyde,LB
+37123,0.7109626,"1,3-Butadiene",LB
+37123,16.22258,Toluene,LB
+37177,0.01749384,Remaining PMFINE portion of PM2.5-PRI,TON
+37177,0.3936372,Pyrene,LB
+37177,0.002169276,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.002058213,PM10 Primary (Filt + Cond),TON
+37177,0.0003231752,Sulfur Dioxide,TON
+37177,4.68414,Xylenes (Mixed Isomers),LB
+37177,0.000602967,Chrysene,LB
+37177,0.5372532,Formaldehyde,LB
+37177,0.0006395432,Benz[a]Anthracene,LB
+37177,1.7718258,Benzene,LB
+37177,15.41098,Carbon Dioxide,TON
+37171,0.4751656,Styrene,LB
+37171,0.3134198,Pyrene,LB
+37171,37.56276,Formaldehyde,LB
+37171,3.385644,Benzene,LB
+37165,0.08073705,Organic Carbon portion of PM2.5-PRI,TON
+37165,0.0346399,Remaining PMFINE portion of PM2.5-PRI,TON
+37165,0.004709969,Sulfate Portion of PM2.5-PRI,TON
+37165,4.032234,Propionaldehyde,LB
+37165,1.844907,"2,2,4-Trimethylpentane",LB
+37165,1.27667e-05,Mercury,LB
+37163,4.291732,Xylenes (Mixed Isomers),LB
+37163,0.014165722,Benzo[b]Fluoranthene,LB
+37163,0.305614,Acenaphthylene,LB
+37163,0.04750822,Benzo[a]Pyrene,LB
+37163,0.726555,Phenanthrene,LB
+37163,0.02919706,Methane,TON
+37163,1.352639,Carbon Monoxide,TON
+37163,0.06464419,Elemental Carbon portion of PM2.5-PRI,TON
+37163,0.3271002,Volatile Organic Compounds,TON
+37163,18.033802,Ethyl Benzene,LB
+37163,59.8909,Hexane,LB
+37153,0.002640478,Methane,TON
+37153,0.002160336,Organic Carbon portion of PM2.5-PRI,TON
+37153,0.000134345,Sulfate Portion of PM2.5-PRI,TON
+37153,0.007404446,Pyrene,LB
+37149,0.00014053008,Chrysene,LB
+37149,3.251428e-05,Manganese,LB
+37149,7.737136e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37135,0.002867276,Acrolein,LB
+37135,0.1158624,Hexane,LB
+37135,1.4112032e-07,Chromium (VI),LB
+37135,3.384343e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37135,0.000235201,Ammonia,TON
+37135,7.412661e-06,Sulfate Portion of PM2.5-PRI,TON
+37127,18.470062,Acenaphthene,LB
+37127,37.41292,Fluorene,LB
+37127,1.895998,Elemental Carbon portion of PM2.5-PRI,TON
+37127,21.73087,Ammonia,TON
+37127,6.588097,Sulfur Dioxide,TON
+37127,0.2883145,Sulfate Portion of PM2.5-PRI,TON
+37127,5.890904,Benzo[k]Fluoranthene,LB
+37127,0.19332164,"Dibenzo[a,h]Anthracene",LB
+37111,0.04507613,Methane,TON
+37111,0.006844,Sulfate Portion of PM2.5-PRI,TON
+37087,0.2842642,Phenanthrene,LB
+37087,25.92432,Carbon Monoxide,TON
+37087,0.02180701,Nitrous Oxide,TON
+37087,0.02920247,Ammonia,TON
+37087,1.1971924,Acrolein,LB
+37087,0.08666696,"Benzo[g,h,i,]Perylene",LB
+37087,0.2372614,Acenaphthylene,LB
+37087,0.018682282,Chrysene,LB
+37087,16.854042,Formaldehyde,LB
+37087,0.0007471902,"Dibenzo[a,h]Anthracene",LB
+37071,14.853804,Ethyl Benzene,LB
+37071,14.43015,"1,3-Butadiene",LB
+37071,3.509464,Fluoranthene,LB
+37071,11.201572,"2,2,4-Trimethylpentane",LB
+37071,0.014953074,Arsenic,LB
+37063,0.4401596,Methane,TON
+37063,4316.319,Carbon Dioxide,TON
+37063,0.009767622,Benzo[b]Fluoranthene,LB
+37063,599.246,Formaldehyde,LB
+37051,11.54724,PM10 Primary (Filt + Cond),TON
+37051,57.23386,Ethyl Benzene,LB
+37051,0.08776354,"Benzo[g,h,i,]Perylene",LB
+37051,0.944321,Manganese,LB
+37051,0.07647488,Arsenic,LB
+37051,749.0956,Acetaldehyde,LB
+37033,0.1047161,PM10 Primary (Filt + Cond),TON
+37033,0.07667979,PM2.5 Primary (Filt + Cond),TON
+37033,0.00226234,Sulfate Portion of PM2.5-PRI,TON
+37033,1.1760214,Ethyl Benzene,LB
+37033,2.833164,Acrolein,LB
+37033,35.20912,Formaldehyde,LB
+37033,15.48738,Acetaldehyde,LB
+37033,0.2260202,Fluorene,LB
+37033,0.07345233,PM25-Primary from certain diesel engines,TON
+37031,0.002771358,Acenaphthylene,LB
+37031,0.00015012668,Chrysene,LB
+37031,0.19642688,Acetaldehyde,LB
+37031,4.501142e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37031,4.162258e-06,Sulfate Portion of PM2.5-PRI,TON
+37177,7.860592,Propionaldehyde,LB
+37177,0.0008372966,"Indeno[1,2,3-c,d]Pyrene",LB
+37177,0.6418594,Fluoranthene,LB
+37177,0.0463302,Chrysene,LB
+37177,0.8323246,Fluorene,LB
+37177,1016.653,Carbon Dioxide,TON
+37177,0.1411556,PM2.5 Primary (Filt + Cond),TON
+37177,0.008840689,Sulfur Dioxide,TON
+37177,0.8503562,Volatile Organic Compounds,TON
+37173,0.00797613,Manganese,LB
+37173,0.00135067,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.003304782,Organic Carbon portion of PM2.5-PRI,TON
+37173,2.861762,Toluene,LB
+37173,0.08105962,Anthracene,LB
+37173,0.15537188,Pyrene,LB
+37173,36.1245,Formaldehyde,LB
+37015,6.673852,Benzene,LB
+37015,3.040773,Nitrogen Oxides,TON
+37015,0.07640192,Organic Carbon portion of PM2.5-PRI,TON
+37149,2.208882,Anthracene,LB
+37149,2203.966,"2,2,4-Trimethylpentane",LB
+37149,1.0228848,Benz[a]Anthracene,LB
+37149,0.4770492,Nickel,LB
+37149,2.544836,Acenaphthene,LB
+37149,1.538721,Methane,TON
+37061,0.014178678,Pyrene,LB
+37061,5.776362e-06,Chromium (VI),LB
+37061,0.00017006868,"Dibenzo[a,h]Anthracene",LB
+37061,2.524282,Acetaldehyde,LB
+37173,40.53496,Xylenes (Mixed Isomers),LB
+37173,0.00661164,"Benzo[g,h,i,]Perylene",LB
+37173,1.0952684,Acenaphthylene,LB
+37173,10.424366,"2,2,4-Trimethylpentane",LB
+37173,2.763262,Phenanthrene,LB
+37173,0.1693715,Ammonia,TON
+37173,0.5121924,"1,3-Butadiene",LB
+37173,0.002991179,Methane,TON
+37173,0.0004928926,Elemental Carbon portion of PM2.5-PRI,TON
+37173,0.1712983,Nitrogen Oxides,TON
+37173,0.005232461,PM10 Primary (Filt + Cond),TON
+37173,0.0008020484,Remaining PMFINE portion of PM2.5-PRI,TON
+37173,8.82109e-07,Chromium (VI),LB
+37173,0.002852998,"Indeno[1,2,3-c,d]Pyrene",LB
+37199,3.648192,Toluene,LB
+37199,1.5500402,Xylenes (Mixed Isomers),LB
+37195,1.9186196,Hexane,LB
+37195,0.007045258,Acenaphthylene,LB
+37195,0.004313792,Benzo[a]Pyrene,LB
+37195,1.9579564,"2,2,4-Trimethylpentane",LB
+37195,0.0015125474,Acenaphthene,LB
+37195,0.07905874,Naphthalene,LB
+37195,0.02612154,PM10 Primary (Filt + Cond),TON
+37057,15.801876,Ethyl Benzene,LB
+37057,0.003804302,"Indeno[1,2,3-c,d]Pyrene",LB
+37057,0.5292226,PM10-Primary from certain diesel engines,TON
+37057,0.01021346,Nitrous Oxide,TON
+37051,0.0001039333,Mercury,LB
+37051,2.134492,PM10 Primary (Filt + Cond),TON
+37051,0.04174178,Sulfur Dioxide,TON
+37051,3.261772,Volatile Organic Compounds,TON
+37051,0.01773343,"Dibenzo[a,h]Anthracene",LB
+37051,40.92624,Toluene,LB
+37051,0.00011555938,Chromium (VI),LB
+37051,3.062226,Acenaphthylene,LB
+37049,51.2303,Xylenes (Mixed Isomers),LB
+37049,0.000301031,Mercury,LB
+37049,58.7818,Naphthalene,LB
+37049,22535.91,Carbon Dioxide,TON
+37049,2.133336,Pyrene,LB
+37049,0.012055976,"Indeno[1,2,3-c,d]Pyrene",LB
+37049,0.6683612,Acenaphthene,LB
+37049,1.470805,Fluorene,LB
+37049,6.790979,Carbon Monoxide,TON
+37049,0.006826553,Nitrous Oxide,TON
+37045,9.027598,Acenaphthene,LB
+37045,23.51486,Phenanthrene,LB
+37045,1.656105,Elemental Carbon portion of PM2.5-PRI,TON
+37045,0.004823116,Nitrate portion of PM2.5-PRI,TON
+37045,0.3812782,Styrene,LB
+37045,0.02622902,Pyrene,LB
+37045,0.00010755448,Nickel,LB
+37045,1.858045e-05,Nitrate portion of PM2.5-PRI,TON
+37035,4.989434,Styrene,LB
+37035,22.31244,Xylenes (Mixed Isomers),LB
+37035,6.353874e-05,Mercury,LB
+37035,37.80698,Naphthalene,LB
+37035,0.4271098,Elemental Carbon portion of PM2.5-PRI,TON
+37035,0.009983719,Nitrous Oxide,TON
+37035,0.06088891,Ammonia,TON
+37035,1.188237,PM10 Primary (Filt + Cond),TON
+37033,0.005186714,Manganese,LB
+37033,0.006329174,Nickel,LB
+37033,0.15320214,Acenaphthene,LB
+37033,5.186844,Naphthalene,LB
+37033,3.285956,Toluene,LB
+37033,0.003560692,Benzo[a]Pyrene,LB
+37027,8.297674,"2,2,4-Trimethylpentane",LB
+37027,0.3095066,PM10-Primary from certain diesel engines,TON
+37027,0.0611174,Ammonia,TON
+37027,0.05945113,Organic Carbon portion of PM2.5-PRI,TON
+37023,5.411034e-05,"Dibenzo[a,h]Anthracene",LB
+37023,2.230012e-05,Arsenic,LB
+37023,0.09830482,Naphthalene,LB
+37023,0.692418,Carbon Monoxide,TON
+37023,7.973938,Carbon Dioxide,TON
+37023,0.03074602,Volatile Organic Compounds,TON
+37157,0.0898179,Benzo[b]Fluoranthene,LB
+37157,0.012614512,Benzo[k]Fluoranthene,LB
+37157,0.3008736,Benzo[a]Pyrene,LB
+37157,16.074022,"2,2,4-Trimethylpentane",LB
+37157,0.000302577,Mercury,LB
+37157,60.33666,Naphthalene,LB
+37157,0.02531777,Nitrous Oxide,TON
+37157,0.1672318,Sulfate Portion of PM2.5-PRI,TON
+37157,2.978892,Volatile Organic Compounds,TON
+37157,1.6285088,Anthracene,LB
+37135,0.002075114,Acrolein,LB
+37135,1.6495324e-08,Chromium (VI),LB
+37135,5.805346e-05,Benzo[k]Fluoranthene,LB
+37135,0.07431774,"2,2,4-Trimethylpentane",LB
+37135,0.00011073566,Acenaphthene,LB
+37135,9.934588e-05,PM2.5 Primary (Filt + Cond),TON
+37135,2.630158e-05,Remaining PMFINE portion of PM2.5-PRI,TON
+37137,0.4415495,Nitrogen Oxides,TON
+37137,0.0008911398,Arsenic,LB
+37137,12.99738,Hexane,LB
+37137,0.00347881,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.04684426,Anthracene,LB
+37137,245.9838,Xylenes (Mixed Isomers),LB
+37137,0.02263772,"Indeno[1,2,3-c,d]Pyrene",LB
+37137,0.249126,Acenaphthylene,LB
+37137,20.64196,Formaldehyde,LB
+37137,0.0226699,Benzo[a]Pyrene,LB
+37137,108.8988,"2,2,4-Trimethylpentane",LB
+37137,0.016294436,Benz[a]Anthracene,LB
+37137,0.004434744,Arsenic,LB
+37137,0.0268243,Methane,TON
+37137,14.71092,Carbon Monoxide,TON
+37137,377.9898,Carbon Dioxide,TON
+37137,2.067206,Volatile Organic Compounds,TON
+37131,0.05610216,"Dibenzo[a,h]Anthracene",LB
+37131,3.655519,Methane,TON
+37131,0.07257381,Sulfate Portion of PM2.5-PRI,TON
+37129,5.42075e-05,Chromium (VI),LB
+37129,0.2266324,Chrysene,LB
+37129,9.051464,Carbon Monoxide,TON
+37129,0.5018495,PM25-Primary from certain diesel engines,TON
+37129,17.70032,Nitrogen Oxides,TON
+37129,0.02567402,Sulfate Portion of PM2.5-PRI,TON
+37123,21.88766,Toluene,LB
+37123,0.015770916,"Indeno[1,2,3-c,d]Pyrene",LB
+37123,1.5562956,Acenaphthylene,LB
+37123,0.08181242,Manganese,LB
+37123,32.3689,Naphthalene,LB
+37123,0.8360575,PM10-Primary from certain diesel engines,TON
+37123,0.7691631,PM25-Primary from certain diesel engines,TON
+37123,0.009467838,Nitrous Oxide,TON
+37123,0.8021413,PM2.5 Primary (Filt + Cond),TON
+37117,0.0017959366,Benzo[b]Fluoranthene,LB
+37117,0.0005557662,Arsenic,LB
+37115,0.2443486,Toluene,LB
+37115,0.012023982,Anthracene,LB
+37115,9.464486e-05,Benzo[k]Fluoranthene,LB
+37115,0.02014911,Volatile Organic Compounds,TON
+37115,0.6749954,Styrene,LB
+37115,0.0006675258,Benzo[b]Fluoranthene,LB
+37115,0.002236068,Benzo[a]Pyrene,LB
+37115,0.02836442,Benz[a]Anthracene,LB
+37115,2.238218e-05,Mercury,LB
+37115,0.2701932,Fluorene,LB
+37115,361.4142,Carbon Dioxide,TON
+37115,0.02803144,PM10 Primary (Filt + Cond),TON
+37115,0.001456547,Sulfate Portion of PM2.5-PRI,TON
+37115,0.2966075,Volatile Organic Compounds,TON
+37113,0.1431231,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,1.287698,PM10-Primary from certain diesel engines,TON
+37113,34.97312,Xylenes (Mixed Isomers),LB
+37107,5.833616,Styrene,LB
+37107,42.22506,Benzene,LB
+37107,1.037243,PM25-Primary from certain diesel engines,TON
+37107,0.1371963,Ammonia,TON
+37107,0.2178438,Remaining PMFINE portion of PM2.5-PRI,TON
+37107,0.1987722,Pyrene,LB
+37107,0.00015343662,"Indeno[1,2,3-c,d]Pyrene",LB
+37107,0.16388642,Fluoranthene,LB
+37107,18.262736,Acetaldehyde,LB
+37107,0.2201392,Fluorene,LB
+37107,0.007456627,PM10-Primary from certain diesel engines,TON
+37107,0.006238831,Ammonia,TON
+37107,0.008170726,Chromium (VI),LB
+37107,4508.54,Formaldehyde,LB
+37107,7.224443,Methane,TON
+37107,6.99202,Nitrous Oxide,TON
+37107,402.7889,Nitrogen Oxides,TON
+37097,124.83484,Hexane,LB
+37097,0.4482276,Benzo[b]Fluoranthene,LB
+37097,14.188174,Acenaphthylene,LB
+37097,0.2865606,Arsenic,LB
+37097,8.461772,Acenaphthene,LB
+37097,11.73109,PM10-Primary from certain diesel engines,TON
+37091,0.4467982,"1,3-Butadiene",LB
+37091,0.0008926232,"Indeno[1,2,3-c,d]Pyrene",LB
+37091,0.003505602,Benzo[b]Fluoranthene,LB
+37091,1.3487874,Benzene,LB
+37091,4.587328e-06,Mercury,LB
+37091,0.102279,Fluorene,LB
+37099,0.08482898,Pyrene,LB
+37099,0.015007954,Benzo[k]Fluoranthene,LB
+37099,0.014995126,Benz[a]Anthracene,LB
+37099,0.00359004,Nickel,LB
+37095,10.48435,Carbon Dioxide,TON
+37095,0.00303487,Pyrene,LB
+37095,0.008380484,Acenaphthylene,LB
+37095,3.323566,Hexane,LB
+37095,0.0884467,Styrene,LB
+37095,0.003093352,Anthracene,LB
+37095,0.000300654,Elemental Carbon portion of PM2.5-PRI,TON
+37091,0.010319884,Acenaphthylene,LB
+37091,0.7090712,Formaldehyde,LB
+37091,2.012772e-05,"Dibenzo[a,h]Anthracene",LB
+37091,9.5886,Toluene,LB
+37091,0.00226571,Acenaphthene,LB
+37091,2.910968e-06,Nitrate portion of PM2.5-PRI,TON
+37089,2103.767,Carbon Dioxide,TON
+37075,0.0006256596,Ammonia,TON
+37075,0.247376,"1,3-Butadiene",LB
+37075,0.0426662,Acrolein,LB
+37075,4.679164,Toluene,LB
+37075,1.956207,Benzene,LB
+37075,0.00346543,Fluorene,LB
+37071,4.149274,Acrolein,LB
+37071,0.13291914,Benz[a]Anthracene,LB
+37071,23.2206,Acetaldehyde,LB
+37071,1503.255,Carbon Dioxide,TON
+37071,0.2662956,PM25-Primary from certain diesel engines,TON
+37071,0.1733126,Elemental Carbon portion of PM2.5-PRI,TON
+37071,0.06236654,Organic Carbon portion of PM2.5-PRI,TON
+37071,0.03577783,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,3.931985,Volatile Organic Compounds,TON
+37071,21.82272,"1,3-Butadiene",LB
+37071,47.89544,Xylenes (Mixed Isomers),LB
+37071,0.2740066,Chrysene,LB
+37071,0.01540679,Nitrous Oxide,TON
+37059,12.214288,Anthracene,LB
+37059,23.74256,Pyrene,LB
+37059,3.71928,Benzo[b]Fluoranthene,LB
+37059,4786.064,Acetaldehyde,LB
+37051,9.184444,Ethyl Benzene,LB
+37051,1.0285696,Pyrene,LB
+37049,0.2563536,Benzo[b]Fluoranthene,LB
+37049,0.2563536,Benzo[k]Fluoranthene,LB
+37049,330.544,Acetaldehyde,LB
+37049,0.9716847,Ammonia,TON
+37049,26.19369,Nitrogen Oxides,TON
+37037,8599.572,Ethyl Benzene,LB
+37037,11205.608,Hexane,LB
+37037,65.61008,Acenaphthylene,LB
+37037,5.266894,Benzo[a]Pyrene,LB
+37037,14293.692,Benzene,LB
+37037,1.3580968,Nickel,LB
+37037,4903.044,Acetaldehyde,LB
+37037,29.18412,Fluorene,LB
+37037,6.166265,PM2.5 Primary (Filt + Cond),TON
+37035,309.8164,Propionaldehyde,LB
+37035,25.21196,"Benzo[g,h,i,]Perylene",LB
+37035,6.143024,Benzo[k]Fluoranthene,LB
+37035,5.881672,Benz[a]Anthracene,LB
+37171,4.36869,Ethyl Benzene,LB
+37171,6.485132,Propionaldehyde,LB
+37171,0.0014606794,"Benzo[g,h,i,]Perylene",LB
+37171,0.0005680906,"Indeno[1,2,3-c,d]Pyrene",LB
+37171,0.007471718,Benzo[a]Pyrene,LB
+37171,0.01139855,Arsenic,LB
+37171,1.0817396,Phenanthrene,LB
+37171,0.02405122,PM25-Primary from certain diesel engines,TON
+37149,5.345446,Formaldehyde,LB
+37149,0.011315918,Benz[a]Anthracene,LB
+37149,0.017770456,Acenaphthene,LB
+37149,0.5888016,Naphthalene,LB
+37149,0.2868374,Propionaldehyde,LB
+37149,1.625749e-06,Chromium (VI),LB
+37149,0.02987804,Acenaphthylene,LB
+37149,0.01440255,PM25-Primary from certain diesel engines,TON
+37149,0.01830803,PM10 Primary (Filt + Cond),TON
+37149,0.01475099,PM2.5 Primary (Filt + Cond),TON
+37157,15.661964,Ethyl Benzene,LB
+37157,0.03477576,"Benzo[g,h,i,]Perylene",LB
+37157,0.008967532,Chrysene,LB
+37157,0.06190834,Fluorene,LB
+37157,0.0166128,Ammonia,TON
+37157,0.0199814,PM2.5 Primary (Filt + Cond),TON
+37155,0.0003558825,Methane,TON
+37155,3.071043e-05,Elemental Carbon portion of PM2.5-PRI,TON
+37155,5.352255e-05,Nitrous Oxide,TON
+37155,0.005245154,Propionaldehyde,LB
+37155,0.0004145044,Pyrene,LB
+37155,1.6335604e-08,Chromium (VI),LB
+37155,0.0003637382,Fluoranthene,LB
+37155,1.6376854e-07,Mercury,LB
+37153,7.277466e-05,Chromium (VI),LB
+37153,2.513414,Fluoranthene,LB
+37153,5.514578e-05,Mercury,LB
+37153,128.24798,Acetaldehyde,LB
+37153,1.887279,PM10 Primary (Filt + Cond),TON
+37147,0.03143744,Organic Carbon portion of PM2.5-PRI,TON
+37147,0.12265426,Anthracene,LB
+37147,0.05251044,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,0.2092744,Fluoranthene,LB
+37147,0.007891196,Nickel,LB
+37147,0.06924564,"2,2,4-Trimethylpentane",LB
+37147,8.101644e-05,Benz[a]Anthracene,LB
+37147,0.0003253172,Fluorene,LB
+37147,0.00875495,Nitrogen Oxides,TON
+37141,0.00250973,"Benzo[g,h,i,]Perylene",LB
+37141,0.012578324,Benzo[b]Fluoranthene,LB
+37141,0.008790222,Nickel,LB
+37141,0.3662596,Fluorene,LB
+37141,0.006955229,Sulfate Portion of PM2.5-PRI,TON
+37141,0.520909,Volatile Organic Compounds,TON
+37141,9.25872,Toluene,LB
+37141,4.583434,Propionaldehyde,LB
+37141,10.270726,Xylenes (Mixed Isomers),LB
+37141,0.0003353602,"Indeno[1,2,3-c,d]Pyrene",LB
+37141,0.3358214,Fluoranthene,LB
+37141,0.0285906,Nickel,LB
+37141,0.7912656,Phenanthrene,LB
+37133,2.126168,Styrene,LB
+37133,5.064616,"1,3-Butadiene",LB
+37133,5.460448,Hexane,LB
+37133,6.205724,"2,2,4-Trimethylpentane",LB
+37133,0.2332542,Methane,TON
+37121,0.0001974945,Benzo[b]Fluoranthene,LB
+37121,9.24717,Acetaldehyde,LB
+37121,0.01818104,Methane,TON
+37121,1.852661e-05,Nitrate portion of PM2.5-PRI,TON
+37121,0.147374,Nitrogen Oxides,TON
+37121,0.0905156,Pyrene,LB
+37123,0.7314516,Acrolein,LB
+37123,1.7286312e-05,Chromium (VI),LB
+37123,39.61176,Benzene,LB
+37123,0.003313266,Arsenic,LB
+37123,17.29285,Carbon Monoxide,TON
+37123,1.724439,Nitrogen Oxides,TON
+37123,0.0142683,Organic Carbon portion of PM2.5-PRI,TON
+37111,0.05291122,Phenanthrene,LB
+37111,0.003464666,Chrysene,LB
+37111,0.005994682,Benzo[a]Pyrene,LB
+37107,5.471874,Styrene,LB
+37107,0.2080548,Sulfate Portion of PM2.5-PRI,TON
+37085,0.05872263,Sulfur Dioxide,TON
+37063,47.31884,Acetaldehyde,LB
+37063,0.01885318,PM2.5 Primary (Filt + Cond),TON
+37063,0.11835792,Styrene,LB
+37063,5.207314,Hexane,LB
+37063,0.0297964,"Benzo[g,h,i,]Perylene",LB
+37033,0.019059022,Styrene,LB
+37033,0.07212032,Acrolein,LB
+37033,0.0005976822,Anthracene,LB
+37033,0.15882094,Propionaldehyde,LB
+37033,0.0004482192,Chrysene,LB
+37033,1.1001992,Formaldehyde,LB
+37033,2.410414e-05,"Dibenzo[a,h]Anthracene",LB
+37033,2.027888,Benzene,LB
+37033,0.0006588878,Acenaphthene,LB
+37033,0.0002799348,Elemental Carbon portion of PM2.5-PRI,TON
+37033,0.05287922,Nitrogen Oxides,TON
+37021,17.968558,Xylenes (Mixed Isomers),LB
+37021,0.4052485,Volatile Organic Compounds,TON
+37017,1.2661064,Benzene,LB
+37001,0.0013220164,Benzo[k]Fluoranthene,LB
+37001,0.0010018364,Chrysene,LB
+37001,2.067658,Formaldehyde,LB
+37001,0.002503986,Benzo[a]Pyrene,LB
+37001,5.825662e-05,"Dibenzo[a,h]Anthracene",LB
+37001,0.0011390512,Benz[a]Anthracene,LB
+37001,0.1109515,Nitrogen Oxides,TON
+37001,0.003977167,PM2.5 Primary (Filt + Cond),TON
+37149,0.00920444,Styrene,LB
+37149,0.0008359926,"Indeno[1,2,3-c,d]Pyrene",LB
+37149,0.0007425324,Manganese,LB
+37149,4.375346e-05,Mercury,LB
+37149,0.000644564,Fluorene,LB
+37157,2.443948,Anthracene,LB
+37157,44.97844,Propionaldehyde,LB
+37157,1246.3864,Formaldehyde,LB
+37157,0.4073284,Benzo[a]Pyrene,LB
+37157,10.070142,Propionaldehyde,LB
+37157,0.005438322,Benzo[k]Fluoranthene,LB
+37157,84.65098,Acetaldehyde,LB
+37157,0.1874169,Organic Carbon portion of PM2.5-PRI,TON
+37157,0.07966117,Remaining PMFINE portion of PM2.5-PRI,TON
+37155,2.965858,Fluorene,LB
+37155,2.455254,Pyrene,LB
+37155,1046.9622,"2,2,4-Trimethylpentane",LB
+37155,0.4542526,Benz[a]Anthracene,LB
+37147,0.7988312,"Indeno[1,2,3-c,d]Pyrene",LB
+37147,3.29874,Fluoranthene,LB
+37147,0.8024678,Benzo[a]Pyrene,LB
+37147,0.6204834,Benz[a]Anthracene,LB
+37147,2283.534,Benzene,LB
+37147,1.374857,Nitrous Oxide,TON
+37147,2.324283,Ammonia,TON
+37143,1.187954,Carbon Monoxide,TON
+37143,112.061,Carbon Dioxide,TON
+37143,0.001893638,PM25-Primary from certain diesel engines,TON
+37143,0.002502616,Ammonia,TON
+37143,1.165754e-05,Nitrate portion of PM2.5-PRI,TON
+37143,0.3513092,"1,3-Butadiene",LB
+37143,6.54804e-06,Chromium (VI),LB
+37177,1.987502,Benzene,LB
+37173,5.075316,Ethyl Benzene,LB
+37173,6.422448,Benzene,LB
+37173,0.7832322,Volatile Organic Compounds,TON
+37197,6.123044,Pyrene,LB
+37197,0.0233065,"Indeno[1,2,3-c,d]Pyrene",LB
+37197,0.6596008,Chrysene,LB
+37197,137.2231,Benzene,LB
+37197,12.53926,Phenanthrene,LB
+37197,2.049788,Elemental Carbon portion of PM2.5-PRI,TON
+37197,0.03138874,Nitrous Oxide,TON
+37197,4.610436,PM10 Primary (Filt + Cond),TON
+37197,2.703356,Pyrene,LB
+37197,15.849196,Xylenes (Mixed Isomers),LB
+37197,0.06438313,Methane,TON
+37197,8.198216,Carbon Monoxide,TON
+37197,1.279728,PM25-Primary from certain diesel engines,TON
+37197,0.04006094,Sulfur Dioxide,TON
+37153,0.4756148,Styrene,LB
+37153,0.8791156,Hexane,LB
+37153,0.0012032664,Benzo[k]Fluoranthene,LB
+37153,0.05559644,Chrysene,LB
+37153,0.0012010398,"Dibenzo[a,h]Anthracene",LB
+37153,0.002368918,Arsenic,LB
+37153,0.1965436,Volatile Organic Compounds,TON
+37147,0.746747,Fluorene,LB
+37147,11.602884,Acrolein,LB
+37147,6.565374e-05,Chromium (VI),LB
+37145,281.7346,Formaldehyde,LB
+37145,0.0222224,Arsenic,LB
+37145,0.1873458,Methane,TON
+37145,1.147088,PM2.5 Primary (Filt + Cond),TON
+37145,3.573784e-05,Benzo[a]Pyrene,LB
+37145,8.172046e-07,"Dibenzo[a,h]Anthracene",LB
+37145,2.751032e-05,Benz[a]Anthracene,LB
+37145,0.10369582,Benzene,LB
+37145,0.005189926,Naphthalene,LB
+37145,9.132434e-06,Elemental Carbon portion of PM2.5-PRI,TON
+37145,1.02408e-07,Nitrate portion of PM2.5-PRI,TON
+37145,0.013236264,"1,3-Butadiene",LB
+37145,1.7070866,"1,3-Butadiene",LB
+37145,37.30758,Toluene,LB
+37145,0.012051196,Anthracene,LB
+37145,0.2345088,Propionaldehyde,LB
+37145,0.0008808911,Elemental Carbon portion of PM2.5-PRI,TON
+37145,0.003155942,Ammonia,TON
+37143,0.03446746,"1,3-Butadiene",LB
+37143,0.7146294,Toluene,LB
+37143,6.652726e-05,Benzo[k]Fluoranthene,LB
+37143,0.0011798408,Acenaphthylene,LB
+37143,0.1471858,"2,2,4-Trimethylpentane",LB
+37115,3.601747,Carbon Monoxide,TON
+37115,0.06176779,PM25-Primary from certain diesel engines,TON
+37115,1.6359572e-05,Chromium (VI),LB
+37115,0.0009089556,"Benzo[g,h,i,]Perylene",LB
+37115,0.000463929,"Indeno[1,2,3-c,d]Pyrene",LB
+37115,0.006104612,Benzo[a]Pyrene,LB
+37113,324.2804,Hexane,LB
+37113,704.4502,Xylenes (Mixed Isomers),LB
+37113,6.148244e-05,Chromium (VI),LB
+37113,0.17096302,"Benzo[g,h,i,]Perylene",LB
+37113,0.0014738396,"Dibenzo[a,h]Anthracene",LB
+37113,0.012226714,Manganese,LB
+37113,38.20638,Acetaldehyde,LB
+37113,0.07504827,Methane,TON
+37113,0.0353802,Organic Carbon portion of PM2.5-PRI,TON
+37113,0.09642313,PM10 Primary (Filt + Cond),TON
+37113,0.01643835,Remaining PMFINE portion of PM2.5-PRI,TON
+37113,0.001932899,Sulfate Portion of PM2.5-PRI,TON
+37095,8.229336,Styrene,LB
+37095,0.5917588,Pyrene,LB
+37095,901.6226,Xylenes (Mixed Isomers),LB
+37095,0.1612618,"Indeno[1,2,3-c,d]Pyrene",LB
+37095,0.161213,Benzo[a]Pyrene,LB
+37095,0.0934268,Manganese,LB
+37095,0.7140094,Fluorene,LB
+37095,0.1769412,Methane,TON
+37095,5897.999,Carbon Dioxide,TON
+37095,0.4577432,PM10 Primary (Filt + Cond),TON
+37079,0.01284423,Formaldehyde,LB
+37079,4.178524e-07,"Dibenzo[a,h]Anthracene",LB
+37079,0.0350823,"2,2,4-Trimethylpentane",LB
+37079,1.29068e-05,Benzo[b]Fluoranthene,LB
+37079,6.411524e-07,Arsenic,LB
+37079,4.16625e-05,Acenaphthene,LB
+37079,2.529893e-05,Nitrous Oxide,TON
+37079,2.793289e-05,PM10 Primary (Filt + Cond),TON
+37081,0.6759598,Acenaphthylene,LB
+37077,0.3818492,Fluoranthene,LB
+37077,0.001711004,Nitrous Oxide,TON
+37077,0.2183314,Acenaphthene,LB
+37077,0.6621748,Nitrogen Oxides,TON
+37075,0.0001067441,Nitrous Oxide,TON
+37075,0.3011852,Nitrogen Oxides,TON
+37075,0.0001269272,"Benzo[g,h,i,]Perylene",LB
+37075,9.474026e-07,Mercury,LB
+37075,1.3285436,Acetaldehyde,LB
+37075,0.03611088,Phenanthrene,LB
+37075,0.02059166,Fluorene,LB
+37063,0.080936,"Indeno[1,2,3-c,d]Pyrene",LB
+37063,2.02369,Chrysene,LB
+37063,30.57626,"2,2,4-Trimethylpentane",LB
+37063,3.43017,Benz[a]Anthracene,LB
+37063,539.5648,Acetaldehyde,LB
+37063,16.112982,Phenanthrene,LB
+37063,34.59371,Carbon Monoxide,TON
+37063,0.2933725,Ammonia,TON
+37063,0.750234,Remaining PMFINE portion of PM2.5-PRI,TON
+37063,3.672292e-08,Mercury,LB
+37063,0.0001230436,"1,3-Butadiene",LB
+37063,2.967032e-06,Pyrene,LB
+37063,1.2039614e-06,Chrysene,LB
+37063,1.773772e-05,PM10 Primary (Filt + Cond),TON
+37053,6.43648,Hexane,LB
+37053,0.006207348,"Dibenzo[a,h]Anthracene",LB
+37053,0.4998212,Benz[a]Anthracene,LB
+37065,0.5645408,Ethyl Benzene,LB
+37065,0.02125458,Propionaldehyde,LB
+37065,2.075136,Xylenes (Mixed Isomers),LB
+37065,0.0005770407,Organic Carbon portion of PM2.5-PRI,TON
+37063,2.444818e-05,Manganese,LB
+37063,3.639468e-07,Mercury,LB
+37063,5.964303e-05,Ammonia,TON
+37063,1.559141e-06,Sulfate Portion of PM2.5-PRI,TON
+37063,2.298112e-05,Benzo[k]Fluoranthene,LB
+37043,0.3754788,Styrene,LB
+37043,0.000682131,"Benzo[g,h,i,]Perylene",LB
+37043,0.0007111292,Arsenic,LB
+37043,10.624746,Acetaldehyde,LB
+37043,0.256884,Phenanthrene,LB
+37043,0.0001672476,Nitrate portion of PM2.5-PRI,TON
+37031,4.133202,Ethyl Benzene,LB
+37031,3.499228,"1,3-Butadiene",LB
+37031,5.922164,Propionaldehyde,LB
+37031,0.5918178,Acenaphthylene,LB
+37031,10.9843,Carbon Monoxide,TON
+37025,0.02457214,Benzo[b]Fluoranthene,LB
+37025,3.080624,"2,2,4-Trimethylpentane",LB
+37025,1.3124578,Phenanthrene,LB
+37025,0.5955676,Volatile Organic Compounds,TON
+37025,0.05994032,Manganese,LB
+37025,27.0219,Naphthalene,LB
+37025,3.12745,Styrene,LB
+37025,20.3517,Toluene,LB
+37025,0.9197974,Fluoranthene,LB
+37025,0.02006096,Remaining PMFINE portion of PM2.5-PRI,TON
+37021,349.7627,Nitrogen Oxides,TON
+37021,14.26702,PM2.5 Primary (Filt + Cond),TON
+37021,1.035491,Sulfur Dioxide,TON
+37021,731.4202,Xylenes (Mixed Isomers),LB
+37021,22.37244,Fluoranthene,LB
+37021,0.08496912,"Dibenzo[a,h]Anthracene",LB
+37021,6.783204,Benz[a]Anthracene,LB
+37021,0.3821552,Nickel,LB
+37021,0.2903132,Arsenic,LB
+37021,7.021167,Elemental Carbon portion of PM2.5-PRI,TON
+37019,32.29716,Styrene,LB
+37019,0.0643145,Benzo[b]Fluoranthene,LB
+37019,54.08114,"2,2,4-Trimethylpentane",LB
+37019,1.97637,PM10-Primary from certain diesel engines,TON
+37019,0.0440209,Nitrous Oxide,TON
+37019,6.960332e-05,Chromium (VI),LB
+37019,0.04492444,"Indeno[1,2,3-c,d]Pyrene",LB
+37019,5.62833,Nitrogen Oxides,TON
+37019,0.02778195,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.05675712,Sulfur Dioxide,TON
+37019,22.70802,Ethyl Benzene,LB
+37019,113.64942,Toluene,LB
+37019,55.9196,Benzene,LB
+37019,8.32487e-05,Nitrate portion of PM2.5-PRI,TON
+37019,0.025151,Sulfur Dioxide,TON
+37019,0.001155164,Sulfate Portion of PM2.5-PRI,TON
+37019,0.5022592,Benzo[a]Pyrene,LB
+37019,497.0464,Acetaldehyde,LB
+37019,2.933148,Fluorene,LB
+37019,0.6780295,PM2.5 Primary (Filt + Cond),TON
+37015,0.002509512,Pyrene,LB
+37015,0.006859854,Acenaphthylene,LB
+37015,1.215476,"2,2,4-Trimethylpentane",LB
+37015,1.17508e-05,Nickel,LB
+37015,0.0015062118,Acenaphthene,LB
+37015,0.008181284,Phenanthrene,LB
+37015,0.4940567,Carbon Monoxide,TON
+37015,0.03425868,Nitrogen Oxides,TON
+37015,0.0005806741,PM2.5 Primary (Filt + Cond),TON
+37009,87.83962,Benzene,LB
+37009,0.1132616,Nickel,LB
+37009,0.1575646,Ammonia,TON
+37009,2.528896,Anthracene,LB
+37009,3.988126,Fluoranthene,LB
+37009,5.247958,Acenaphthylene,LB
+37009,0.0831126,Propionaldehyde,LB
+37009,0.0012427532,Benzo[b]Fluoranthene,LB
+37009,0.004972502,Acenaphthene,LB
+37009,0.02695864,Phenanthrene,LB
+37001,2.006034,Styrene,LB
+37001,1.0253194,Pyrene,LB
+37001,3.30523e-05,Chromium (VI),LB
+37001,3.74343,"2,2,4-Trimethylpentane",LB
+37001,0.017007532,Nickel,LB
+37001,63.0697,Acetaldehyde,LB
+37001,0.4619938,Acenaphthene,LB
+37001,0.06924105,Methane,TON
+37001,0.2749885,PM25-Primary from certain diesel engines,TON
+37001,0.8273083,Volatile Organic Compounds,TON
+37055,1.9457336,Hexane,LB
+37055,1.7412206,Benzene,LB
+37175,1.647318e-05,Chromium (VI),LB
+37175,0.002763006,Benzo[k]Fluoranthene,LB
+37175,0.002449638,Benz[a]Anthracene,LB
+37175,0.003187359,Organic Carbon portion of PM2.5-PRI,TON
+37163,28.05114,Toluene,LB
+37163,3.05428,Propionaldehyde,LB
+37163,0.05862362,"Benzo[g,h,i,]Perylene",LB
+37163,16.48696,Carbon Monoxide,TON
+37163,0.8106595,Volatile Organic Compounds,TON
+37193,0.016408406,Styrene,LB
+37193,0.000587653,Anthracene,LB
+37193,0.000481086,"Indeno[1,2,3-c,d]Pyrene",LB
+37193,0.0004781972,Benzo[a]Pyrene,LB
+37193,9.392522e-06,Nickel,LB
+37193,0.001369187,Fluorene,LB
+37189,4.293844,Hexane,LB
+37189,1.2763518,Propionaldehyde,LB
+37189,0.01011585,Pyrene,LB
+37189,3.54582e-05,Chromium (VI),LB
+37189,0.02639508,"Benzo[g,h,i,]Perylene",LB
+37189,0.008927698,Fluoranthene,LB
+37189,0.004610082,Benz[a]Anthracene,LB
+37189,0.004432384,Nickel,LB
+37189,0.2760372,Naphthalene,LB
+37189,5.699213,Carbon Monoxide,TON
+37189,0.002635514,Elemental Carbon portion of PM2.5-PRI,TON
+37189,0.03291285,Ammonia,TON
+37191,1.1735676,Hexane,LB
+37191,6.541142e-08,Chromium (VI),LB
+37191,1.2495578,Benzene,LB
+37187,0.002545226,Arsenic,LB
+37187,0.11815942,Naphthalene,LB
+37187,0.003743172,Nitrous Oxide,TON
+37187,0.01218928,PM10 Primary (Filt + Cond),TON
+37187,0.004671071,PM2.5 Primary (Filt + Cond),TON
+37187,0.00136638,Remaining PMFINE portion of PM2.5-PRI,TON
+37187,1.2868896,Ethyl Benzene,LB
+37187,4.966344,Toluene,LB
+37187,4.544606,Xylenes (Mixed Isomers),LB
+37183,0.15846498,Styrene,LB
+37183,0.014445758,Pyrene,LB
+37183,0.0001549082,Mercury,LB
+37183,1035.514,Carbon Dioxide,TON
+37179,47.79072,Ethyl Benzene,LB
+37179,94.4983,Xylenes (Mixed Isomers),LB
+37179,35.7359,"2,2,4-Trimethylpentane",LB
+37179,0.821773,Manganese,LB
+37179,0.06122522,Arsenic,LB
+37179,24506.39,Carbon Dioxide,TON
+37179,7.540133,PM10-Primary from certain diesel engines,TON
+37179,0.03664432,Nitrous Oxide,TON
+37179,0.2121171,Sulfur Dioxide,TON
+37177,0.6248858,Hexane,LB
+37177,0.0004557882,Benzo[a]Pyrene,LB
+37177,0.0002668798,Benz[a]Anthracene,LB
+37177,5.591442e-05,Nickel,LB
+37177,0.00351507,Phenanthrene,LB
+37177,15.36038,Carbon Dioxide,TON
+37177,0.0006974747,Ammonia,TON
+37177,0.0001755727,Remaining PMFINE portion of PM2.5-PRI,TON
+37019,0.3495376,Styrene,LB
+37019,0.7884064,"1,3-Butadiene",LB
+37019,1.5318776,Xylenes (Mixed Isomers),LB
+37019,23.8372,Formaldehyde,LB
+37019,0.00526362,Manganese,LB
+37019,186.6348,Carbon Dioxide,TON
+37019,0.02414684,Organic Carbon portion of PM2.5-PRI,TON
+37019,0.07476229,PM10 Primary (Filt + Cond),TON
+37019,0.0102421,Remaining PMFINE portion of PM2.5-PRI,TON
+37011,1.170017,Hexane,LB
+37011,0.15345962,Anthracene,LB
+37011,0.06919938,Benz[a]Anthracene,LB
+37011,0.006026494,Nickel,LB
+37011,0.000315206,Nitrate portion of PM2.5-PRI,TON
+37011,11.877432,Benzene,LB
+37011,54.52632,Acetaldehyde,LB
+37011,0.9231052,Fluorene,LB
+37011,0.6075819,PM10-Primary from certain diesel engines,TON
+37011,0.002482126,Nitrous Oxide,TON
+37011,0.02705878,Ammonia,TON
+37011,0.13619,Organic Carbon portion of PM2.5-PRI,TON
+37023,0.05507684,"Benzo[g,h,i,]Perylene",LB
+37023,0.008373056,Nickel,LB
+37023,0.018447118,Fluorene,LB
+37023,0.01928736,Nitrous Oxide,TON
+37023,0.0009100683,Sulfate Portion of PM2.5-PRI,TON
+37003,0.0002250224,Fluoranthene,LB
+37003,0.00014071588,Acenaphthene,LB
+37003,7.112087e-06,Sulfate Portion of PM2.5-PRI,TON
+37119,201.034,Ethyl Benzene,LB
+37079,0.1279365,PM2.5 Primary (Filt + Cond),TON
+37079,0.000450351,"Dibenzo[a,h]Anthracene",LB
+37079,0.0889312,Benz[a]Anthracene,LB
+37079,0.006596,Arsenic,LB
+37079,0.002364459,Nitrous Oxide,TON
+37081,105.3329,"1,3-Butadiene",LB
+37081,0.2074506,"Indeno[1,2,3-c,d]Pyrene",LB
+37081,0.8146672,Benzo[b]Fluoranthene,LB
+37081,0.1115571,"Dibenzo[a,h]Anthracene",LB
+37081,79.67822,"2,2,4-Trimethylpentane",LB
+37081,0.0006508158,Mercury,LB
+37081,1401.089,Acetaldehyde,LB
+37081,41.58706,Phenanthrene,LB
+37081,23.94276,Fluorene,LB
+37081,1.110372,Methane,TON
+37081,14.72655,PM2.5 Primary (Filt + Cond),TON
+37081,0.4690208,Sulfur Dioxide,TON
+37071,0.301848,Styrene,LB
+37071,5.159984e-06,Chromium (VI),LB
+37071,4.876768e-06,Mercury,LB
+37071,240.0498,Carbon Dioxide,TON
+37071,0.01048153,Remaining PMFINE portion of PM2.5-PRI,TON
+37071,0.124157,Volatile Organic Compounds,TON
+37071,0.07400517,Nitrous Oxide,TON
+37071,5.306615,PM10 Primary (Filt + Cond),TON
+37071,12.268636,Anthracene,LB
+37071,0.06543382,"Benzo[g,h,i,]Perylene",LB
+37071,20.10714,Fluoranthene,LB
+37071,0.02052396,Benzo[k]Fluoranthene,LB
+37071,24.75038,Acenaphthylene,LB
+37071,3.467124,Benz[a]Anthracene,LB
+37071,38.95136,Phenanthrene,LB
+37069,67.64382,Acenaphthylene,LB
+37069,3.73003,Benz[a]Anthracene,LB
+37069,2.487436,Manganese,LB
+37069,0.0732589,Mercury,LB
+37069,1.400617,Arsenic,LB
+37069,2760.802,Carbon Monoxide,TON
+37063,1.310936,Elemental Carbon portion of PM2.5-PRI,TON
+37063,0.522819,Ammonia,TON
+37063,3.476636,PM2.5 Primary (Filt + Cond),TON
+37063,34.76278,Hexane,LB
+37063,0.000435975,Chromium (VI),LB
+37063,6.477592,Acenaphthylene,LB
+37063,1.7374278,Chrysene,LB
+37063,8.57918,Fluorene,LB
+37059,0.6003296,Ethyl Benzene,LB
+37059,0.16594794,Pyrene,LB
+37059,0.007507172,Manganese,LB
+37059,513.5876,Carbon Dioxide,TON
+37065,1.456238,Propionaldehyde,LB
+37065,0.0003234944,"Benzo[g,h,i,]Perylene",LB
+37065,0.016817796,Benz[a]Anthracene,LB
+37065,0.002628096,Arsenic,LB
+37065,0.001888278,Sulfur Dioxide,TON
+37065,0.13829608,Fluorene,LB
+37061,0.8615432,Styrene,LB
+37061,1.9855474,"1,3-Butadiene",LB
+37061,0.003940104,Benzo[a]Pyrene,LB
+37061,0.02161074,Nickel,LB
+37061,0.008073912,Arsenic,LB
+37061,0.01321053,PM25-Primary from certain diesel engines,TON
+37045,7.499744e-05,Anthracene,LB
+37045,0.00014663612,Pyrene,LB
+37045,0.00012857066,Fluoranthene,LB
+37045,6.759944e-05,Methane,TON
+37045,1.132038e-07,Nitrate portion of PM2.5-PRI,TON
+37039,0.01324077,Nitrogen Oxides,TON
+37039,0.0012246184,Acenaphthylene,LB
+37039,3.679202e-06,"Dibenzo[a,h]Anthracene",LB
+37039,4.28112e-05,Manganese,LB
+37039,0.0005435908,Fluorene,LB
+37037,4.776659e-07,Nitrate portion of PM2.5-PRI,TON
+37037,0.0001727776,PM2.5 Primary (Filt + Cond),TON
+37037,0.006697602,"1,3-Butadiene",LB
+37037,8.689918e-05,Benzo[k]Fluoranthene,LB
+37037,0.006211226,Naphthalene,LB
+37035,0.02802712,PM2.5 Primary (Filt + Cond),TON
+37035,0.01580189,Sulfur Dioxide,TON
+37025,14.58606,Styrene,LB
+37025,127.80336,Xylenes (Mixed Isomers),LB
+37025,0.0004810062,Chromium (VI),LB
+37025,0.7983304,Benzo[a]Pyrene,LB
+37025,37.69754,"2,2,4-Trimethylpentane",LB
+37025,1.25741,Organic Carbon portion of PM2.5-PRI,TON
+37025,9.194286,PM10 Primary (Filt + Cond),TON
+37025,0.7838401,Remaining PMFINE portion of PM2.5-PRI,TON
+37025,163.42674,Toluene,LB
+37025,0.005603422,Benz[a]Anthracene,LB
+37025,0.002005152,Arsenic,LB
+37025,0.015540336,Acenaphthene,LB
+37025,0.00989656,Nitrous Oxide,TON
+37025,0.3143586,Acrolein,LB
+37025,1.0461662e-05,Chromium (VI),LB
+37025,0.005831364,Benzo[k]Fluoranthene,LB
+37025,238.4134,Toluene,LB
+37025,0.08423994,Anthracene,LB
+37025,1.5779268,Propionaldehyde,LB
+37025,175.66366,Xylenes (Mixed Isomers),LB
+37025,2.857992e-05,Chromium (VI),LB
+37025,0.03274254,"Indeno[1,2,3-c,d]Pyrene",LB
+37025,0.2000104,Fluorene,LB
+37025,5.126268,Naphthalene,LB
+37025,0.03814019,Nitrous Oxide,TON
+37025,1.401958,Volatile Organic Compounds,TON
diff --git a/tests/testdata/nlcd_2019_land_cover_l48_20210604.tif b/tests/testdata/nlcd_2019_land_cover_l48_20210604.tif
new file mode 100644
index 00000000..ec459f54
Binary files /dev/null and b/tests/testdata/nlcd_2019_land_cover_l48_20210604.tif differ
diff --git a/tests/testdata/nlcd_2019_land_cover_l48_20210604.tif.aux.xml b/tests/testdata/nlcd_2019_land_cover_l48_20210604.tif.aux.xml
new file mode 100644
index 00000000..85b33d64
--- /dev/null
+++ b/tests/testdata/nlcd_2019_land_cover_l48_20210604.tif.aux.xml
@@ -0,0 +1,2346 @@
+
+
+ NLCD Land Cover Class
+
+
+ value
+ 0
+ 0
+
+
+ NLCD Land Cover Class
+ 2
+ 0
+
+
+ Histogram
+ 1
+ 0
+
+
+ Red
+ 0
+ 0
+
+
+ Green
+ 0
+ 0
+
+
+ Blue
+ 0
+ 0
+
+
+ Opacity
+ 0
+ 0
+
+
+ 0
+ Unclassified
+ 7853863229
+ 0
+ 0
+ 0
+ 0
+
+
+ 1
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 2
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 3
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 4
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 5
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 6
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 7
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 8
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 9
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 10
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 11
+ Open Water
+ 472399232
+ 70
+ 107
+ 159
+ 255
+
+
+ 12
+ Perennial Snow/Ice
+ 962418
+ 209
+ 222
+ 248
+ 255
+
+
+ 13
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 14
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 15
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 16
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 17
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 18
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 19
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 20
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 21
+ Developed, Open Space
+ 240566180
+ 222
+ 197
+ 197
+ 255
+
+
+ 22
+ Developed, Low Intensity
+ 153288747
+ 217
+ 146
+ 130
+ 255
+
+
+ 23
+ Developed, Medium Intensity
+ 92578072
+ 235
+ 0
+ 0
+ 255
+
+
+ 24
+ Developed, High Intensity
+ 33121466
+ 171
+ 0
+ 0
+ 255
+
+
+ 25
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 26
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 27
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 28
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 29
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 30
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 31
+ Barren Land
+ 87406005
+ 179
+ 172
+ 159
+ 255
+
+
+ 32
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 33
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 34
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 35
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 36
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 37
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 38
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 39
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 40
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 41
+ Deciduous Forest
+ 833976610
+ 104
+ 171
+ 95
+ 255
+
+
+ 42
+ Evergreen Forest
+ 1033039764
+ 28
+ 95
+ 44
+ 255
+
+
+ 43
+ Mixed Forest
+ 305029988
+ 181
+ 197
+ 143
+ 255
+
+
+ 44
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 45
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 46
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 47
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 48
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 49
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 50
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 51
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 52
+ Shrub/Scrub
+ 1961779404
+ 204
+ 184
+ 121
+ 255
+
+
+ 53
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 54
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 55
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 56
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 57
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 58
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 59
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 60
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 61
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 62
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 63
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 64
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 65
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 66
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 67
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 68
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 69
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 70
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 71
+ Herbaceous
+ 1198000354
+ 223
+ 223
+ 194
+ 255
+
+
+ 72
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 73
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 74
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 75
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 76
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 77
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 78
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 79
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 80
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 81
+ Hay/Pasture
+ 560647664
+ 220
+ 217
+ 57
+ 255
+
+
+ 82
+ Cultivated Crops
+ 1464715609
+ 171
+ 108
+ 40
+ 255
+
+
+ 83
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 84
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 85
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 86
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 87
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 88
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 89
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 90
+ Woody Wetlands
+ 403631293
+ 184
+ 217
+ 235
+ 255
+
+
+ 91
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 92
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 93
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 94
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 95
+ Emergent Herbaceous Wetlands
+ 137098525
+ 108
+ 159
+ 184
+ 255
+
+
+ 96
+
+ 0
+ 96
+ 96
+ 96
+ 255
+
+
+ 97
+
+ 0
+ 97
+ 97
+ 97
+ 255
+
+
+ 98
+
+ 0
+ 98
+ 98
+ 98
+ 255
+
+
+ 99
+
+ 0
+ 99
+ 99
+ 99
+ 255
+
+
+ 100
+
+ 0
+ 100
+ 100
+ 100
+ 255
+
+
+ 101
+
+ 0
+ 101
+ 101
+ 101
+ 255
+
+
+ 102
+
+ 0
+ 102
+ 102
+ 102
+ 255
+
+
+ 103
+
+ 0
+ 103
+ 103
+ 103
+ 255
+
+
+ 104
+
+ 0
+ 104
+ 104
+ 104
+ 255
+
+
+ 105
+
+ 0
+ 105
+ 105
+ 105
+ 255
+
+
+ 106
+
+ 0
+ 106
+ 106
+ 106
+ 255
+
+
+ 107
+
+ 0
+ 107
+ 107
+ 107
+ 255
+
+
+ 108
+
+ 0
+ 108
+ 108
+ 108
+ 255
+
+
+ 109
+
+ 0
+ 109
+ 109
+ 109
+ 255
+
+
+ 110
+
+ 0
+ 110
+ 110
+ 110
+ 255
+
+
+ 111
+
+ 0
+ 111
+ 111
+ 111
+ 255
+
+
+ 112
+
+ 0
+ 112
+ 112
+ 112
+ 255
+
+
+ 113
+
+ 0
+ 113
+ 113
+ 113
+ 255
+
+
+ 114
+
+ 0
+ 114
+ 114
+ 114
+ 255
+
+
+ 115
+
+ 0
+ 115
+ 115
+ 115
+ 255
+
+
+ 116
+
+ 0
+ 116
+ 116
+ 116
+ 255
+
+
+ 117
+
+ 0
+ 117
+ 117
+ 117
+ 255
+
+
+ 118
+
+ 0
+ 118
+ 118
+ 118
+ 255
+
+
+ 119
+
+ 0
+ 119
+ 119
+ 119
+ 255
+
+
+ 120
+
+ 0
+ 120
+ 120
+ 120
+ 255
+
+
+ 121
+
+ 0
+ 121
+ 121
+ 121
+ 255
+
+
+ 122
+
+ 0
+ 122
+ 122
+ 122
+ 255
+
+
+ 123
+
+ 0
+ 123
+ 123
+ 123
+ 255
+
+
+ 124
+
+ 0
+ 124
+ 124
+ 124
+ 255
+
+
+ 125
+
+ 0
+ 125
+ 125
+ 125
+ 255
+
+
+ 126
+
+ 0
+ 126
+ 126
+ 126
+ 255
+
+
+ 127
+
+ 0
+ 127
+ 127
+ 127
+ 255
+
+
+ 128
+
+ 0
+ 128
+ 128
+ 128
+ 255
+
+
+ 129
+
+ 0
+ 129
+ 129
+ 129
+ 255
+
+
+ 130
+
+ 0
+ 130
+ 130
+ 130
+ 255
+
+
+ 131
+
+ 0
+ 131
+ 131
+ 131
+ 255
+
+
+ 132
+
+ 0
+ 132
+ 132
+ 132
+ 255
+
+
+ 133
+
+ 0
+ 133
+ 133
+ 133
+ 255
+
+
+ 134
+
+ 0
+ 134
+ 134
+ 134
+ 255
+
+
+ 135
+
+ 0
+ 135
+ 135
+ 135
+ 255
+
+
+ 136
+
+ 0
+ 136
+ 136
+ 136
+ 255
+
+
+ 137
+
+ 0
+ 137
+ 137
+ 137
+ 255
+
+
+ 138
+
+ 0
+ 138
+ 138
+ 138
+ 255
+
+
+ 139
+
+ 0
+ 139
+ 139
+ 139
+ 255
+
+
+ 140
+
+ 0
+ 140
+ 140
+ 140
+ 255
+
+
+ 141
+
+ 0
+ 141
+ 141
+ 141
+ 255
+
+
+ 142
+
+ 0
+ 142
+ 142
+ 142
+ 255
+
+
+ 143
+
+ 0
+ 143
+ 143
+ 143
+ 255
+
+
+ 144
+
+ 0
+ 144
+ 144
+ 144
+ 255
+
+
+ 145
+
+ 0
+ 145
+ 145
+ 145
+ 255
+
+
+ 146
+
+ 0
+ 146
+ 146
+ 146
+ 255
+
+
+ 147
+
+ 0
+ 147
+ 147
+ 147
+ 255
+
+
+ 148
+
+ 0
+ 148
+ 148
+ 148
+ 255
+
+
+ 149
+
+ 0
+ 149
+ 149
+ 149
+ 255
+
+
+ 150
+
+ 0
+ 150
+ 150
+ 150
+ 255
+
+
+ 151
+
+ 0
+ 151
+ 151
+ 151
+ 255
+
+
+ 152
+
+ 0
+ 152
+ 152
+ 152
+ 255
+
+
+ 153
+
+ 0
+ 153
+ 153
+ 153
+ 255
+
+
+ 154
+
+ 0
+ 154
+ 154
+ 154
+ 255
+
+
+ 155
+
+ 0
+ 155
+ 155
+ 155
+ 255
+
+
+ 156
+
+ 0
+ 156
+ 156
+ 156
+ 255
+
+
+ 157
+
+ 0
+ 157
+ 157
+ 157
+ 255
+
+
+ 158
+
+ 0
+ 158
+ 158
+ 158
+ 255
+
+
+ 159
+
+ 0
+ 159
+ 159
+ 159
+ 255
+
+
+ 160
+
+ 0
+ 160
+ 160
+ 160
+ 255
+
+
+ 161
+
+ 0
+ 161
+ 161
+ 161
+ 255
+
+
+ 162
+
+ 0
+ 162
+ 162
+ 162
+ 255
+
+
+ 163
+
+ 0
+ 163
+ 163
+ 163
+ 255
+
+
+ 164
+
+ 0
+ 164
+ 164
+ 164
+ 255
+
+
+ 165
+
+ 0
+ 165
+ 165
+ 165
+ 255
+
+
+ 166
+
+ 0
+ 166
+ 166
+ 166
+ 255
+
+
+ 167
+
+ 0
+ 167
+ 167
+ 167
+ 255
+
+
+ 168
+
+ 0
+ 168
+ 168
+ 168
+ 255
+
+
+ 169
+
+ 0
+ 169
+ 169
+ 169
+ 255
+
+
+ 170
+
+ 0
+ 170
+ 170
+ 170
+ 255
+
+
+ 171
+
+ 0
+ 171
+ 171
+ 171
+ 255
+
+
+ 172
+
+ 0
+ 172
+ 172
+ 172
+ 255
+
+
+ 173
+
+ 0
+ 173
+ 173
+ 173
+ 255
+
+
+ 174
+
+ 0
+ 174
+ 174
+ 174
+ 255
+
+
+ 175
+
+ 0
+ 175
+ 175
+ 175
+ 255
+
+
+ 176
+
+ 0
+ 176
+ 176
+ 176
+ 255
+
+
+ 177
+
+ 0
+ 177
+ 177
+ 177
+ 255
+
+
+ 178
+
+ 0
+ 178
+ 178
+ 178
+ 255
+
+
+ 179
+
+ 0
+ 179
+ 179
+ 179
+ 255
+
+
+ 180
+
+ 0
+ 180
+ 180
+ 180
+ 255
+
+
+ 181
+
+ 0
+ 181
+ 181
+ 181
+ 255
+
+
+ 182
+
+ 0
+ 182
+ 182
+ 182
+ 255
+
+
+ 183
+
+ 0
+ 183
+ 183
+ 183
+ 255
+
+
+ 184
+
+ 0
+ 184
+ 184
+ 184
+ 255
+
+
+ 185
+
+ 0
+ 185
+ 185
+ 185
+ 255
+
+
+ 186
+
+ 0
+ 186
+ 186
+ 186
+ 255
+
+
+ 187
+
+ 0
+ 187
+ 187
+ 187
+ 255
+
+
+ 188
+
+ 0
+ 188
+ 188
+ 188
+ 255
+
+
+ 189
+
+ 0
+ 189
+ 189
+ 189
+ 255
+
+
+ 190
+
+ 0
+ 190
+ 190
+ 190
+ 255
+
+
+ 191
+
+ 0
+ 191
+ 191
+ 191
+ 255
+
+
+ 192
+
+ 0
+ 192
+ 192
+ 192
+ 255
+
+
+ 193
+
+ 0
+ 193
+ 193
+ 193
+ 255
+
+
+ 194
+
+ 0
+ 194
+ 194
+ 194
+ 255
+
+
+ 195
+
+ 0
+ 195
+ 195
+ 195
+ 255
+
+
+ 196
+
+ 0
+ 196
+ 196
+ 196
+ 255
+
+
+ 197
+
+ 0
+ 197
+ 197
+ 197
+ 255
+
+
+ 198
+
+ 0
+ 198
+ 198
+ 198
+ 255
+
+
+ 199
+
+ 0
+ 199
+ 199
+ 199
+ 255
+
+
+ 200
+
+ 0
+ 200
+ 200
+ 200
+ 255
+
+
+ 201
+
+ 0
+ 201
+ 201
+ 201
+ 255
+
+
+ 202
+
+ 0
+ 202
+ 202
+ 202
+ 255
+
+
+ 203
+
+ 0
+ 203
+ 203
+ 203
+ 255
+
+
+ 204
+
+ 0
+ 204
+ 204
+ 204
+ 255
+
+
+ 205
+
+ 0
+ 205
+ 205
+ 205
+ 255
+
+
+ 206
+
+ 0
+ 206
+ 206
+ 206
+ 255
+
+
+ 207
+
+ 0
+ 207
+ 207
+ 207
+ 255
+
+
+ 208
+
+ 0
+ 208
+ 208
+ 208
+ 255
+
+
+ 209
+
+ 0
+ 209
+ 209
+ 209
+ 255
+
+
+ 210
+
+ 0
+ 210
+ 210
+ 210
+ 255
+
+
+ 211
+
+ 0
+ 211
+ 211
+ 211
+ 255
+
+
+ 212
+
+ 0
+ 212
+ 212
+ 212
+ 255
+
+
+ 213
+
+ 0
+ 213
+ 213
+ 213
+ 255
+
+
+ 214
+
+ 0
+ 214
+ 214
+ 214
+ 255
+
+
+ 215
+
+ 0
+ 215
+ 215
+ 215
+ 255
+
+
+ 216
+
+ 0
+ 216
+ 216
+ 216
+ 255
+
+
+ 217
+
+ 0
+ 217
+ 217
+ 217
+ 255
+
+
+ 218
+
+ 0
+ 218
+ 218
+ 218
+ 255
+
+
+ 219
+
+ 0
+ 219
+ 219
+ 219
+ 255
+
+
+ 220
+
+ 0
+ 220
+ 220
+ 220
+ 255
+
+
+ 221
+
+ 0
+ 221
+ 221
+ 221
+ 255
+
+
+ 222
+
+ 0
+ 222
+ 222
+ 222
+ 255
+
+
+ 223
+
+ 0
+ 223
+ 223
+ 223
+ 255
+
+
+ 224
+
+ 0
+ 224
+ 224
+ 224
+ 255
+
+
+ 225
+
+ 0
+ 225
+ 225
+ 225
+ 255
+
+
+ 226
+
+ 0
+ 226
+ 226
+ 226
+ 255
+
+
+ 227
+
+ 0
+ 227
+ 227
+ 227
+ 255
+
+
+ 228
+
+ 0
+ 228
+ 228
+ 228
+ 255
+
+
+ 229
+
+ 0
+ 229
+ 229
+ 229
+ 255
+
+
+ 230
+
+ 0
+ 230
+ 230
+ 230
+ 255
+
+
+ 231
+
+ 0
+ 231
+ 231
+ 231
+ 255
+
+
+ 232
+
+ 0
+ 232
+ 232
+ 232
+ 255
+
+
+ 233
+
+ 0
+ 233
+ 233
+ 233
+ 255
+
+
+ 234
+
+ 0
+ 234
+ 234
+ 234
+ 255
+
+
+ 235
+
+ 0
+ 235
+ 235
+ 235
+ 255
+
+
+ 236
+
+ 0
+ 236
+ 236
+ 236
+ 255
+
+
+ 237
+
+ 0
+ 237
+ 237
+ 237
+ 255
+
+
+ 238
+
+ 0
+ 238
+ 238
+ 238
+ 255
+
+
+ 239
+
+ 0
+ 239
+ 239
+ 239
+ 255
+
+
+ 240
+
+ 0
+ 240
+ 240
+ 240
+ 255
+
+
+ 241
+
+ 0
+ 241
+ 241
+ 241
+ 255
+
+
+ 242
+
+ 0
+ 242
+ 242
+ 242
+ 255
+
+
+ 243
+
+ 0
+ 243
+ 243
+ 243
+ 255
+
+
+ 244
+
+ 0
+ 244
+ 244
+ 244
+ 255
+
+
+ 245
+
+ 0
+ 245
+ 245
+ 245
+ 255
+
+
+ 246
+
+ 0
+ 246
+ 246
+ 246
+ 255
+
+
+ 247
+
+ 0
+ 247
+ 247
+ 247
+ 255
+
+
+ 248
+
+ 0
+ 248
+ 248
+ 248
+ 255
+
+
+ 249
+
+ 0
+ 249
+ 249
+ 249
+ 255
+
+
+ 250
+
+ 0
+ 250
+ 250
+ 250
+ 255
+
+
+ 251
+
+ 0
+ 251
+ 251
+ 251
+ 255
+
+
+ 252
+
+ 0
+ 252
+ 252
+ 252
+ 255
+
+
+ 253
+
+ 0
+ 253
+ 253
+ 253
+ 255
+
+
+ 254
+
+ 0
+ 254
+ 254
+ 254
+ 255
+
+
+ 255
+
+ 0
+ 255
+ 255
+ 255
+ 255
+
+
+
+
diff --git a/tests/testdata/nlcd_2021_land_cover_l48_20230630.tif b/tests/testdata/nlcd_2021_land_cover_l48_20230630.tif
new file mode 100644
index 00000000..0fcb38b5
Binary files /dev/null and b/tests/testdata/nlcd_2021_land_cover_l48_20230630.tif differ
diff --git a/tests/testdata/nlcd_2021_land_cover_l48_20230630.tif.aux.xml b/tests/testdata/nlcd_2021_land_cover_l48_20230630.tif.aux.xml
new file mode 100644
index 00000000..b25aa006
--- /dev/null
+++ b/tests/testdata/nlcd_2021_land_cover_l48_20230630.tif.aux.xml
@@ -0,0 +1,2346 @@
+
+
+ NLCD Land Cover Class
+
+
+ value
+ 0
+ 0
+
+
+ NLCD Land Cover Class
+ 2
+ 0
+
+
+ Histogram
+ 1
+ 0
+
+
+ Red
+ 0
+ 0
+
+
+ Green
+ 0
+ 0
+
+
+ Blue
+ 0
+ 0
+
+
+ Opacity
+ 0
+ 0
+
+
+ 0
+ Unclassified
+ 7853863229
+ 0
+ 0
+ 0
+ 0
+
+
+ 1
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 2
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 3
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 4
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 5
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 6
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 7
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 8
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 9
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 10
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 11
+ Open Water
+ 466021535
+ 70
+ 107
+ 159
+ 255
+
+
+ 12
+ Perennial Snow/Ice
+ 959819
+ 209
+ 222
+ 248
+ 255
+
+
+ 13
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 14
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 15
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 16
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 17
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 18
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 19
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 20
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 21
+ Developed, Open Space
+ 240377730
+ 222
+ 197
+ 197
+ 255
+
+
+ 22
+ Developed, Low Intensity
+ 154252969
+ 217
+ 146
+ 130
+ 255
+
+
+ 23
+ Developed, Medium Intensity
+ 94385151
+ 235
+ 0
+ 0
+ 255
+
+
+ 24
+ Developed, High Intensity
+ 33594478
+ 171
+ 0
+ 0
+ 255
+
+
+ 25
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 26
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 27
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 28
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 29
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 30
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 31
+ Barren Land
+ 88976651
+ 179
+ 172
+ 159
+ 255
+
+
+ 32
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 33
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 34
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 35
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 36
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 37
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 38
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 39
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 40
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 41
+ Deciduous Forest
+ 832916302
+ 104
+ 171
+ 95
+ 255
+
+
+ 42
+ Evergreen Forest
+ 1027738936
+ 28
+ 95
+ 44
+ 255
+
+
+ 43
+ Mixed Forest
+ 304954315
+ 181
+ 197
+ 143
+ 255
+
+
+ 44
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 45
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 46
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 47
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 48
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 49
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 50
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 51
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 52
+ Shrub/Scrub
+ 1953262413
+ 204
+ 184
+ 121
+ 255
+
+
+ 53
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 54
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 55
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 56
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 57
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 58
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 59
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 60
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 61
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 62
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 63
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 64
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 65
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 66
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 67
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 68
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 69
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 70
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 71
+ Herbaceous
+ 1223488270
+ 223
+ 223
+ 194
+ 255
+
+
+ 72
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 73
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 74
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 75
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 76
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 77
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 78
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 79
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 80
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 81
+ Hay/Pasture
+ 558088764
+ 220
+ 217
+ 57
+ 255
+
+
+ 82
+ Cultivated Crops
+ 1453539695
+ 171
+ 108
+ 40
+ 255
+
+
+ 83
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 84
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 85
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 86
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 87
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 88
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 89
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 90
+ Woody Wetlands
+ 403110859
+ 184
+ 217
+ 235
+ 255
+
+
+ 91
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 92
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 93
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 94
+
+ 0
+ 0
+ 0
+ 0
+ 255
+
+
+ 95
+ Emergent Herbaceous Wetlands
+ 142573444
+ 108
+ 159
+ 184
+ 255
+
+
+ 96
+
+ 0
+ 96
+ 96
+ 96
+ 255
+
+
+ 97
+
+ 0
+ 97
+ 97
+ 97
+ 255
+
+
+ 98
+
+ 0
+ 98
+ 98
+ 98
+ 255
+
+
+ 99
+
+ 0
+ 99
+ 99
+ 99
+ 255
+
+
+ 100
+
+ 0
+ 100
+ 100
+ 100
+ 255
+
+
+ 101
+
+ 0
+ 101
+ 101
+ 101
+ 255
+
+
+ 102
+
+ 0
+ 102
+ 102
+ 102
+ 255
+
+
+ 103
+
+ 0
+ 103
+ 103
+ 103
+ 255
+
+
+ 104
+
+ 0
+ 104
+ 104
+ 104
+ 255
+
+
+ 105
+
+ 0
+ 105
+ 105
+ 105
+ 255
+
+
+ 106
+
+ 0
+ 106
+ 106
+ 106
+ 255
+
+
+ 107
+
+ 0
+ 107
+ 107
+ 107
+ 255
+
+
+ 108
+
+ 0
+ 108
+ 108
+ 108
+ 255
+
+
+ 109
+
+ 0
+ 109
+ 109
+ 109
+ 255
+
+
+ 110
+
+ 0
+ 110
+ 110
+ 110
+ 255
+
+
+ 111
+
+ 0
+ 111
+ 111
+ 111
+ 255
+
+
+ 112
+
+ 0
+ 112
+ 112
+ 112
+ 255
+
+
+ 113
+
+ 0
+ 113
+ 113
+ 113
+ 255
+
+
+ 114
+
+ 0
+ 114
+ 114
+ 114
+ 255
+
+
+ 115
+
+ 0
+ 115
+ 115
+ 115
+ 255
+
+
+ 116
+
+ 0
+ 116
+ 116
+ 116
+ 255
+
+
+ 117
+
+ 0
+ 117
+ 117
+ 117
+ 255
+
+
+ 118
+
+ 0
+ 118
+ 118
+ 118
+ 255
+
+
+ 119
+
+ 0
+ 119
+ 119
+ 119
+ 255
+
+
+ 120
+
+ 0
+ 120
+ 120
+ 120
+ 255
+
+
+ 121
+
+ 0
+ 121
+ 121
+ 121
+ 255
+
+
+ 122
+
+ 0
+ 122
+ 122
+ 122
+ 255
+
+
+ 123
+
+ 0
+ 123
+ 123
+ 123
+ 255
+
+
+ 124
+
+ 0
+ 124
+ 124
+ 124
+ 255
+
+
+ 125
+
+ 0
+ 125
+ 125
+ 125
+ 255
+
+
+ 126
+
+ 0
+ 126
+ 126
+ 126
+ 255
+
+
+ 127
+
+ 0
+ 127
+ 127
+ 127
+ 255
+
+
+ 128
+
+ 0
+ 128
+ 128
+ 128
+ 255
+
+
+ 129
+
+ 0
+ 129
+ 129
+ 129
+ 255
+
+
+ 130
+
+ 0
+ 130
+ 130
+ 130
+ 255
+
+
+ 131
+
+ 0
+ 131
+ 131
+ 131
+ 255
+
+
+ 132
+
+ 0
+ 132
+ 132
+ 132
+ 255
+
+
+ 133
+
+ 0
+ 133
+ 133
+ 133
+ 255
+
+
+ 134
+
+ 0
+ 134
+ 134
+ 134
+ 255
+
+
+ 135
+
+ 0
+ 135
+ 135
+ 135
+ 255
+
+
+ 136
+
+ 0
+ 136
+ 136
+ 136
+ 255
+
+
+ 137
+
+ 0
+ 137
+ 137
+ 137
+ 255
+
+
+ 138
+
+ 0
+ 138
+ 138
+ 138
+ 255
+
+
+ 139
+
+ 0
+ 139
+ 139
+ 139
+ 255
+
+
+ 140
+
+ 0
+ 140
+ 140
+ 140
+ 255
+
+
+ 141
+
+ 0
+ 141
+ 141
+ 141
+ 255
+
+
+ 142
+
+ 0
+ 142
+ 142
+ 142
+ 255
+
+
+ 143
+
+ 0
+ 143
+ 143
+ 143
+ 255
+
+
+ 144
+
+ 0
+ 144
+ 144
+ 144
+ 255
+
+
+ 145
+
+ 0
+ 145
+ 145
+ 145
+ 255
+
+
+ 146
+
+ 0
+ 146
+ 146
+ 146
+ 255
+
+
+ 147
+
+ 0
+ 147
+ 147
+ 147
+ 255
+
+
+ 148
+
+ 0
+ 148
+ 148
+ 148
+ 255
+
+
+ 149
+
+ 0
+ 149
+ 149
+ 149
+ 255
+
+
+ 150
+
+ 0
+ 150
+ 150
+ 150
+ 255
+
+
+ 151
+
+ 0
+ 151
+ 151
+ 151
+ 255
+
+
+ 152
+
+ 0
+ 152
+ 152
+ 152
+ 255
+
+
+ 153
+
+ 0
+ 153
+ 153
+ 153
+ 255
+
+
+ 154
+
+ 0
+ 154
+ 154
+ 154
+ 255
+
+
+ 155
+
+ 0
+ 155
+ 155
+ 155
+ 255
+
+
+ 156
+
+ 0
+ 156
+ 156
+ 156
+ 255
+
+
+ 157
+
+ 0
+ 157
+ 157
+ 157
+ 255
+
+
+ 158
+
+ 0
+ 158
+ 158
+ 158
+ 255
+
+
+ 159
+
+ 0
+ 159
+ 159
+ 159
+ 255
+
+
+ 160
+
+ 0
+ 160
+ 160
+ 160
+ 255
+
+
+ 161
+
+ 0
+ 161
+ 161
+ 161
+ 255
+
+
+ 162
+
+ 0
+ 162
+ 162
+ 162
+ 255
+
+
+ 163
+
+ 0
+ 163
+ 163
+ 163
+ 255
+
+
+ 164
+
+ 0
+ 164
+ 164
+ 164
+ 255
+
+
+ 165
+
+ 0
+ 165
+ 165
+ 165
+ 255
+
+
+ 166
+
+ 0
+ 166
+ 166
+ 166
+ 255
+
+
+ 167
+
+ 0
+ 167
+ 167
+ 167
+ 255
+
+
+ 168
+
+ 0
+ 168
+ 168
+ 168
+ 255
+
+
+ 169
+
+ 0
+ 169
+ 169
+ 169
+ 255
+
+
+ 170
+
+ 0
+ 170
+ 170
+ 170
+ 255
+
+
+ 171
+
+ 0
+ 171
+ 171
+ 171
+ 255
+
+
+ 172
+
+ 0
+ 172
+ 172
+ 172
+ 255
+
+
+ 173
+
+ 0
+ 173
+ 173
+ 173
+ 255
+
+
+ 174
+
+ 0
+ 174
+ 174
+ 174
+ 255
+
+
+ 175
+
+ 0
+ 175
+ 175
+ 175
+ 255
+
+
+ 176
+
+ 0
+ 176
+ 176
+ 176
+ 255
+
+
+ 177
+
+ 0
+ 177
+ 177
+ 177
+ 255
+
+
+ 178
+
+ 0
+ 178
+ 178
+ 178
+ 255
+
+
+ 179
+
+ 0
+ 179
+ 179
+ 179
+ 255
+
+
+ 180
+
+ 0
+ 180
+ 180
+ 180
+ 255
+
+
+ 181
+
+ 0
+ 181
+ 181
+ 181
+ 255
+
+
+ 182
+
+ 0
+ 182
+ 182
+ 182
+ 255
+
+
+ 183
+
+ 0
+ 183
+ 183
+ 183
+ 255
+
+
+ 184
+
+ 0
+ 184
+ 184
+ 184
+ 255
+
+
+ 185
+
+ 0
+ 185
+ 185
+ 185
+ 255
+
+
+ 186
+
+ 0
+ 186
+ 186
+ 186
+ 255
+
+
+ 187
+
+ 0
+ 187
+ 187
+ 187
+ 255
+
+
+ 188
+
+ 0
+ 188
+ 188
+ 188
+ 255
+
+
+ 189
+
+ 0
+ 189
+ 189
+ 189
+ 255
+
+
+ 190
+
+ 0
+ 190
+ 190
+ 190
+ 255
+
+
+ 191
+
+ 0
+ 191
+ 191
+ 191
+ 255
+
+
+ 192
+
+ 0
+ 192
+ 192
+ 192
+ 255
+
+
+ 193
+
+ 0
+ 193
+ 193
+ 193
+ 255
+
+
+ 194
+
+ 0
+ 194
+ 194
+ 194
+ 255
+
+
+ 195
+
+ 0
+ 195
+ 195
+ 195
+ 255
+
+
+ 196
+
+ 0
+ 196
+ 196
+ 196
+ 255
+
+
+ 197
+
+ 0
+ 197
+ 197
+ 197
+ 255
+
+
+ 198
+
+ 0
+ 198
+ 198
+ 198
+ 255
+
+
+ 199
+
+ 0
+ 199
+ 199
+ 199
+ 255
+
+
+ 200
+
+ 0
+ 200
+ 200
+ 200
+ 255
+
+
+ 201
+
+ 0
+ 201
+ 201
+ 201
+ 255
+
+
+ 202
+
+ 0
+ 202
+ 202
+ 202
+ 255
+
+
+ 203
+
+ 0
+ 203
+ 203
+ 203
+ 255
+
+
+ 204
+
+ 0
+ 204
+ 204
+ 204
+ 255
+
+
+ 205
+
+ 0
+ 205
+ 205
+ 205
+ 255
+
+
+ 206
+
+ 0
+ 206
+ 206
+ 206
+ 255
+
+
+ 207
+
+ 0
+ 207
+ 207
+ 207
+ 255
+
+
+ 208
+
+ 0
+ 208
+ 208
+ 208
+ 255
+
+
+ 209
+
+ 0
+ 209
+ 209
+ 209
+ 255
+
+
+ 210
+
+ 0
+ 210
+ 210
+ 210
+ 255
+
+
+ 211
+
+ 0
+ 211
+ 211
+ 211
+ 255
+
+
+ 212
+
+ 0
+ 212
+ 212
+ 212
+ 255
+
+
+ 213
+
+ 0
+ 213
+ 213
+ 213
+ 255
+
+
+ 214
+
+ 0
+ 214
+ 214
+ 214
+ 255
+
+
+ 215
+
+ 0
+ 215
+ 215
+ 215
+ 255
+
+
+ 216
+
+ 0
+ 216
+ 216
+ 216
+ 255
+
+
+ 217
+
+ 0
+ 217
+ 217
+ 217
+ 255
+
+
+ 218
+
+ 0
+ 218
+ 218
+ 218
+ 255
+
+
+ 219
+
+ 0
+ 219
+ 219
+ 219
+ 255
+
+
+ 220
+
+ 0
+ 220
+ 220
+ 220
+ 255
+
+
+ 221
+
+ 0
+ 221
+ 221
+ 221
+ 255
+
+
+ 222
+
+ 0
+ 222
+ 222
+ 222
+ 255
+
+
+ 223
+
+ 0
+ 223
+ 223
+ 223
+ 255
+
+
+ 224
+
+ 0
+ 224
+ 224
+ 224
+ 255
+
+
+ 225
+
+ 0
+ 225
+ 225
+ 225
+ 255
+
+
+ 226
+
+ 0
+ 226
+ 226
+ 226
+ 255
+
+
+ 227
+
+ 0
+ 227
+ 227
+ 227
+ 255
+
+
+ 228
+
+ 0
+ 228
+ 228
+ 228
+ 255
+
+
+ 229
+
+ 0
+ 229
+ 229
+ 229
+ 255
+
+
+ 230
+
+ 0
+ 230
+ 230
+ 230
+ 255
+
+
+ 231
+
+ 0
+ 231
+ 231
+ 231
+ 255
+
+
+ 232
+
+ 0
+ 232
+ 232
+ 232
+ 255
+
+
+ 233
+
+ 0
+ 233
+ 233
+ 233
+ 255
+
+
+ 234
+
+ 0
+ 234
+ 234
+ 234
+ 255
+
+
+ 235
+
+ 0
+ 235
+ 235
+ 235
+ 255
+
+
+ 236
+
+ 0
+ 236
+ 236
+ 236
+ 255
+
+
+ 237
+
+ 0
+ 237
+ 237
+ 237
+ 255
+
+
+ 238
+
+ 0
+ 238
+ 238
+ 238
+ 255
+
+
+ 239
+
+ 0
+ 239
+ 239
+ 239
+ 255
+
+
+ 240
+
+ 0
+ 240
+ 240
+ 240
+ 255
+
+
+ 241
+
+ 0
+ 241
+ 241
+ 241
+ 255
+
+
+ 242
+
+ 0
+ 242
+ 242
+ 242
+ 255
+
+
+ 243
+
+ 0
+ 243
+ 243
+ 243
+ 255
+
+
+ 244
+
+ 0
+ 244
+ 244
+ 244
+ 255
+
+
+ 245
+
+ 0
+ 245
+ 245
+ 245
+ 255
+
+
+ 246
+
+ 0
+ 246
+ 246
+ 246
+ 255
+
+
+ 247
+
+ 0
+ 247
+ 247
+ 247
+ 255
+
+
+ 248
+
+ 0
+ 248
+ 248
+ 248
+ 255
+
+
+ 249
+
+ 0
+ 249
+ 249
+ 249
+ 255
+
+
+ 250
+
+ 0
+ 250
+ 250
+ 250
+ 255
+
+
+ 251
+
+ 0
+ 251
+ 251
+ 251
+ 255
+
+
+ 252
+
+ 0
+ 252
+ 252
+ 252
+ 255
+
+
+ 253
+
+ 0
+ 253
+ 253
+ 253
+ 255
+
+
+ 254
+
+ 0
+ 254
+ 254
+ 254
+ 255
+
+
+ 255
+
+ 0
+ 255
+ 255
+ 255
+ 255
+
+
+
+
diff --git a/tests/testdata/test_nc_output.nc b/tests/testdata/test_nc_output.nc
new file mode 100644
index 00000000..7be1f3fd
Binary files /dev/null and b/tests/testdata/test_nc_output.nc differ
diff --git a/tests/testdata/us_eco_l3_state_boundaries_2024-02-07_wget_command.txt b/tests/testdata/us_eco_l3_state_boundaries_2024-02-07_wget_command.txt
new file mode 100644
index 00000000..88706648
--- /dev/null
+++ b/tests/testdata/us_eco_l3_state_boundaries_2024-02-07_wget_command.txt
@@ -0,0 +1 @@
+wget --ca-certificate=/tmp/Rtmp5cEQ3l/cacert_gaftp_epa.pem https://gaftp.epa.gov/EPADataCommons/ORD/Ecoregions/us/us_eco_l3_state_boundaries.zip -O tests/testthat/../testdata//us_eco_l3_state_boundaries.zip
diff --git a/tests/testdata/us_eco_l3_state_boundaries_2024-02-08_wget_command.txt b/tests/testdata/us_eco_l3_state_boundaries_2024-02-08_wget_command.txt
new file mode 100644
index 00000000..41b8e70e
--- /dev/null
+++ b/tests/testdata/us_eco_l3_state_boundaries_2024-02-08_wget_command.txt
@@ -0,0 +1 @@
+wget --ca-certificate=/tmp/RtmpeRLmFs/cacert_gaftp_epa.pem https://gaftp.epa.gov/EPADataCommons/ORD/Ecoregions/us/us_eco_l3_state_boundaries.zip -O tests/testthat/../testdata//us_eco_l3_state_boundaries.zip
diff --git a/tests/testthat.R b/tests/testthat.R
new file mode 100755
index 00000000..e7c6ee44
--- /dev/null
+++ b/tests/testthat.R
@@ -0,0 +1,12 @@
+# This file is part of the standard setup for testthat.
+# It is recommended that you do not modify it.
+#
+# Where should you do additional test configuration?
+# Learn more about the roles of various files in:
+# * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
+# * https://testthat.r-lib.org/articles/special-files.html
+
+library(testthat)
+library(amadeus)
+
+test_check("amadeus")
diff --git a/tests/testthat/test-calculate_covariates.R b/tests/testthat/test-calculate_covariates.R
new file mode 100644
index 00000000..5e897d80
--- /dev/null
+++ b/tests/testthat/test-calculate_covariates.R
@@ -0,0 +1,486 @@
+## test for calculating covariates
+
+testthat::test_that("calc_koppen_geiger works well", {
+ withr::local_package("terra")
+ withr::local_package("sf")
+ withr::local_options(
+ list(sf_use_s2 = FALSE)
+ )
+
+ site_faux <-
+ data.frame(
+ site_id = "37031000188101",
+ lon = -78.90,
+ lat = 35.97
+ )
+ site_faux <- terra::vect(site_faux, crs = "EPSG:4326")
+ kp_path <- testthat::test_path("..", "testdata", "koppen_subset.tif")
+
+ testthat::expect_no_error(
+ kg_res <- calc_koppen_geiger(
+ path = kp_path,
+ sites = site_faux
+ )
+ )
+ testthat::expect_no_error(
+ kg_res <- calc_koppen_geiger(
+ path = kp_path,
+ sites = sf::st_as_sf(site_faux)
+ )
+ )
+ # the result is a data frame
+ testthat::expect_s3_class(kg_res, "data.frame")
+ # ncol is equal to 6
+ testthat::expect_equal(ncol(kg_res), 6)
+ # should have only one climate zone
+ testthat::expect_equal(sum(unlist(kg_res[, -1])), 1)
+})
+
+testthat::test_that("calc_dummies works well", {
+
+ site_faux <-
+ data.frame(
+ site_id = "37031000188101",
+ lon = -78.90,
+ lat = 35.97,
+ time = "2022-01-01"
+ )
+
+ testthat::expect_no_error(
+ dum_res <- calc_temporal_dummies(
+ sites = site_faux,
+ domain_year = seq(2018L, 2022L)
+ )
+ )
+
+ # the result is a data frame
+ testthat::expect_s3_class(dum_res, "data.frame")
+ # ncol is equal to 12 + 5 + 7 + 4
+ testthat::expect_equal(ncol(dum_res), 28L)
+ # should have each of the indicator groups
+ testthat::expect_equal(sum(unlist(dum_res[, -1:-4])), 3L)
+
+ # error cases
+ site_faux_err <- site_faux
+ colnames(site_faux_err)[4] <- "date"
+ testthat::expect_error(
+ dum_res <- calc_temporal_dummies(
+ sites = site_faux_err
+ )
+ )
+
+ testthat::expect_error(
+ dum_res <- calc_temporal_dummies(
+ sites = as.matrix(site_faux_err)
+ )
+ )
+
+})
+
+testthat::test_that("calc_ecoregion works well", {
+
+ withr::local_package("terra")
+ withr::local_package("sf")
+ withr::local_options(list(sf_use_s2 = FALSE))
+
+ site_faux <-
+ data.frame(
+ site_id = "37999109988101",
+ lon = -77.576,
+ lat = 39.40,
+ date = as.Date("2022-01-01")
+ )
+ site_faux <-
+ terra::vect(
+ site_faux,
+ geom = c("lon", "lat"),
+ crs = "EPSG:4326")
+ site_faux <- terra::project(site_faux, "EPSG:5070")
+
+ testthat::expect_no_error(
+ ecor_res <- calc_ecoregion(
+ path = testthat::test_path("..", "testdata", "eco_l3_clip.gpkg"),
+ sites = site_faux,
+ id_col = "site_id"
+ )
+ )
+
+ # the result is a data frame
+ testthat::expect_s3_class(ecor_res, "data.frame")
+ # ncol is equal to 2 + 5 + 2 + 1 + 1
+ testthat::expect_equal(ncol(ecor_res), 3L)
+ # should have each of the indicator groups
+ dum_cn <- grep("DUM_", colnames(ecor_res))
+ testthat::expect_equal(
+ sum(unlist(ecor_res[, dum_cn])), 2L)
+})
+
+
+testthat::test_that("calc_modis works well.", {
+ withr::local_package("sf")
+ withr::local_package("terra")
+ withr::local_package("stars")
+ withr::local_package("lwgeom")
+ withr::local_package("foreach")
+ withr::local_package("doParallel")
+ withr::local_options(
+ list(sf_use_s2 = FALSE,
+ foreachDoparLocal = TRUE)
+ )
+
+ site_faux <-
+ data.frame(
+ site_id = "37999904288101",
+ lon = -78.87,
+ lat = 35.8734,
+ time = as.Date("2021-08-15")
+ )
+ site_faux <-
+ terra::vect(
+ site_faux,
+ geom = c("lon", "lat"),
+ crs = "EPSG:4326")
+
+ # case 1: standard mod11a1
+ path_mod11 <-
+ testthat::test_path(
+ "../testdata/modis/",
+ "MOD11A1.A2021227.h11v05.061.2021228105320.hdf"
+ )
+ testthat::expect_no_error(
+ suppressWarnings(
+ calc_mod11 <-
+ calc_modis(
+ path = path_mod11,
+ product = "MOD11A1",
+ sites = sf::st_as_sf(site_faux),
+ name_covariates = c("MOD_LSTNT_0_", "MOD_LSTDY_0_"),
+ subdataset = "(LST_)",
+ nthreads = 1L
+ )
+ )
+ )
+ testthat::expect_s3_class(calc_mod11, "data.frame")
+
+ # case 2: swath mod06l2
+ path_mod06 <-
+ list.files(
+ testthat::test_path("..", "testdata/modis"),
+ "MOD06",
+ full.names = TRUE
+ )
+ testthat::expect_no_error(
+ suppressWarnings(
+ modis_mosaic_mod06(
+ paths = path_mod06,
+ date_in = "2021-08-15"
+ )
+ )
+ )
+
+ testthat::expect_no_error(
+ suppressWarnings(
+ calc_mod06 <-
+ calc_modis(
+ path = path_mod06,
+ product = "MOD06_L2",
+ sites = site_faux,
+ name_covariates = c("MOD_CLFRN_0_", "MOD_CLFRD_0_"),
+ nthreads = 1
+ )
+ )
+ )
+ testthat::expect_s3_class(calc_mod06, "data.frame")
+
+ # case 3: VIIRS
+ path_vnp46 <-
+ list.files(
+ testthat::test_path("..", "testdata/modis"),
+ "VNP46",
+ full.names = TRUE
+ )
+
+ testthat::expect_no_error(
+ suppressWarnings(
+ calc_vnp46 <-
+ calc_modis(
+ path = path_vnp46,
+ product = "VNP46A2",
+ sites = site_faux,
+ name_covariates = c("MOD_NITLT_0_"),
+ subdataset = 3L,
+ nthreads = 1
+ )
+ )
+ )
+ testthat::expect_s3_class(calc_vnp46, "data.frame")
+
+ # error cases
+ testthat::expect_error(
+ modis_get_vrt(path = site_faux)
+ )
+ testthat::expect_error(
+ modis_get_vrt(
+ paths = path_mod11,
+ product = "MOD11A1",
+ date_in = "2021-08-15",
+ foo = 3L
+ )
+ )
+ testthat::expect_error(
+ modis_get_vrt(
+ paths = path_mod11,
+ product = "MOD11A1",
+ date_in = "2021~08~15",
+ foo = "mean"
+ )
+ )
+
+ site_faux_r <- site_faux
+ names(site_faux_r)[1] <- "ID"
+ testthat::expect_error(
+ modis_worker(raster = rast(nrow = 3, ncol = 3), date = "2021-08-15",
+ sites_in = site_faux_r)
+ )
+ testthat::expect_error(
+ modis_worker(raster = rast(nrow = 3, ncol = 3), date = "2021-08-15",
+ sites_in = matrix(c(1, 3, 4, 5), nrow = 2))
+ )
+ testthat::expect_error(
+ modis_worker(raster = rast(nrow = 3, ncol = 3), date = "2021-08-15",
+ sites_in = sf::st_as_sf(site_faux))
+ )
+ site_faux2 <- site_faux
+ names(site_faux2)[2] <- "date"
+ testthat::expect_error(
+ modis_worker(raster = rast(nrow = 3, ncol = 3), date = "2021-08-15",
+ sites_in = sf::st_as_sf(site_faux2))
+ )
+
+ testthat::expect_error(
+ calc_modis(path = site_faux)
+ )
+ testthat::expect_error(
+ calc_modis(path = path_mod11, product = "MOD11A1", sites = list(1, 2, 3))
+ )
+ testthat::expect_warning(
+ calc_modis(
+ path = path_vnp46,
+ product = "VNP46A2",
+ sites = site_faux,
+ name_covariates = c("MOD_NITLT_0_", "MOD_K1_"),
+ subdataset = 3L,
+ nthreads = 1
+ )
+ )
+
+})
+
+
+testthat::test_that("Check extract_nlcd_ratio works", {
+ withr::local_package("terra")
+ withr::local_package("exactextractr")
+
+ point_us1 <- cbind(lon = -114.7, lat = 38.9, dem = 40)
+ point_us2 <- cbind(lon = -114, lat = 39, dem = 15)
+ point_ak <- cbind(lon = -155.997, lat = 69.3884, dem = 100) # alaska
+ point_fr <- cbind(lon = 2.957, lat = 43.976, dem = 15) # france
+ eg_data <- rbind(point_us1, point_us2, point_ak, point_fr) |>
+ as.data.frame() |>
+ terra::vect(crs = "EPSG:4326")
+
+ path_testdata <-
+ testthat::test_path(
+ "..",
+ "testdata"
+ )
+ # CHECK INPUT (error message)
+ # -- buf_radius is numeric
+ testthat::expect_error(
+ calc_nlcd_ratio(sites = eg_data,
+ radius = "1000",
+ path = path_testdata),
+ "radius is not a numeric."
+ )
+ # -- buf_radius has likely value
+ testthat::expect_error(
+ calc_nlcd_ratio(sites = eg_data,
+ radius = -3,
+ path = path_testdata),
+ "radius has not a likely value."
+ )
+ # -- year is numeric
+ testthat::expect_error(
+ calc_nlcd_ratio(sites = eg_data,
+ year = "2019",
+ path = path_testdata),
+ "year is not a numeric."
+ )
+ # -- year has likely value
+ testthat::expect_error(
+ calc_nlcd_ratio(sites = eg_data,
+ year = 20192,
+ path = path_testdata),
+ "NLCD data not available for this year."
+ )
+ testthat::expect_error(
+ calc_nlcd_ratio(sites = eg_data,
+ year = 2020,
+ path = path_testdata),
+ "NLCD data not available for this year."
+ )
+ # -- data_vect is a SpatVector
+ testthat::expect_error(
+ calc_nlcd_ratio(sites = 12,
+ path = path_testdata),
+ "sites is not a terra::SpatVector."
+ )
+ # -- nlcd_path is not a character
+ testthat::expect_error(
+ calc_nlcd_ratio(sites = eg_data,
+ path = 2),
+ "path is not a character."
+ )
+ # -- nlcd_path does not exist
+ nice_sentence <- "That's one small step for a man, a giant leap for mankind."
+ testthat::expect_error(
+ calc_nlcd_ratio(sites = eg_data,
+ path = nice_sentence),
+ "path does not exist."
+ )
+
+ # CHECK OUTPUT
+ year <- 2021
+ buf_radius <- 3000
+ testthat::expect_no_error(
+ calc_nlcd_ratio(
+ sites = eg_data,
+ year = year,
+ radius = buf_radius,
+ path = path_testdata
+ )
+ )
+ output <- calc_nlcd_ratio(
+ sites = eg_data,
+ year = year,
+ radius = buf_radius,
+ path = path_testdata
+ )
+ # -- returns a SpatVector
+ testthat::expect_equal(class(output)[1], "SpatVector")
+ # -- crs is the same than input
+ testthat::expect_true(terra::same.crs(eg_data, output))
+ # -- out-of-mainland-US points removed (France and Alaska)
+ testthat::expect_equal(nrow(output), 2)
+ # -- initial names are still in the output SpatVector
+ testthat::expect_true(all(names(eg_data) %in% names(output)))
+ # -- check the value of some of the points in the US
+ testthat::expect_equal(
+ output$LDU_EFO_0_03000_2021[1], 0.7940682, tolerance = 1e-7
+ )
+ testthat::expect_equal(
+ output$LDU_SHB_0_03000_2021[2], 0.9987249, tolerance = 1e-7
+ )
+ # -- class fraction rows should sum to 1
+ testthat::expect_equal(
+ rowSums(as.data.frame(output[, 2:ncol(output)])),
+ rep(1, 2),
+ tolerance = 1e-7
+ )
+})
+
+
+testthat::test_that("NEI calculation", {
+ withr::local_package("terra")
+ withr::local_package("sf")
+ withr::local_package("data.table")
+ withr::local_options(list(sf_use_s2 = FALSE))
+ withr::local_seed(202401)
+
+ ncpath <- system.file("gpkg/nc.gpkg", package = "sf")
+ nc <- terra::vect(ncpath)
+ nc <- nc[grep("(Orange|Wake|Durham)", nc$NAME), ]
+
+ testthat::expect_error(
+ calc_nei(neipath,
+ ncp,
+ year = 2017,
+ county_shp = nc,
+ sites_epsg = "EPSG:4267"
+ )
+ )
+ testthat::expect_error(
+ calc_nei(neipath,
+ ncpt,
+ year = 2010,
+ county_shp = nc,
+ sites_epsg = "EPSG:4267"
+ )
+ )
+ testthat::expect_error(
+ calc_nei(neipath,
+ ncpt,
+ year = 2017,
+ county_shp = "your/file/is/nowhere",
+ sites_epsg = "EPSG:4267"
+ )
+ )
+
+ nc$GEOID <- nc$FIPS
+ ncp <- data.frame(lon = -78.8277, lat = 35.95013)
+ ncp$site_id <- "3799900018810101"
+ ncp$time <- 2018
+ ncpt <- ncp# as.data.frame(ncp, geom = "XY")
+
+ # test data should be prepared
+ neipath <- testthat::test_path("..", "testdata", "nei")
+ testthat::expect_no_error(
+ ncnei <-
+ calc_nei(neipath,
+ ncpt,
+ year = 2017,
+ county_shp = nc,
+ sites_epsg = "EPSG:4267"
+ )
+ )
+ testthat::expect_no_error(
+ calc_nei(neipath,
+ ncpt,
+ year = 2017,
+ county_shp = ncpath,
+ sites_epsg = "EPSG:4267"
+ )
+ )
+
+ testthat::expect_true(any(grepl("NEI17", names(ncnei))))
+ testthat::expect_equal(ncnei$TRF_NEI17_0_00000, 1579079, tolerance = 1)
+
+ # error cases
+ testthat::expect_error(
+ calc_nei(neipath,
+ sf::st_as_sf(ncpt, coords = c("lon", "lat")),
+ year = 2017,
+ county_shp = nc,
+ sites_epsg = "EPSG:4267"
+ )
+ )
+ ncpsf <- sf::st_as_sf(ncpt, coords = c("lon", "lat"), remove = FALSE)
+ sf::st_crs(ncpsf) <- "EPSG:4267"
+ testthat::expect_no_error(
+ calc_nei(neipath,
+ ncpsf,
+ year = 2017,
+ county_shp = nc,
+ sites_epsg = "EPSG:4267"
+ )
+ )
+ testthat::expect_no_error(
+ calc_nei(neipath,
+ convert_stobj_to_stdt(ncpsf),
+ year = 2017,
+ county_shp = ncpath,
+ sites_epsg = "EPSG:4267"
+ )
+ )
+
+})
diff --git a/tests/testthat/test-calculate_covariates_support.R b/tests/testthat/test-calculate_covariates_support.R
new file mode 100644
index 00000000..0f32b221
--- /dev/null
+++ b/tests/testthat/test-calculate_covariates_support.R
@@ -0,0 +1,242 @@
+testthat::test_that("test MODIS prefilter", {
+ # main test
+ txt_products <- c("MOD11A1", "MOD13A2", "MOD09GA", "MCD19A2")
+ txt_exp_output <-
+ c(
+ MOD11A1 = "(LST_)",
+ MOD13A2 = "(NDVI)",
+ MOD09GA = "(sur_refl_b0)",
+ MCD19A2 = "(Optical_Depth)"
+ )
+ txt_exp_output <- unname(txt_exp_output)
+ # expect
+ testthat::expect_message(
+ mcdtest <- modis_prefilter_sds("MCD19A2")
+ )
+ testthat::expect_equal(
+ mcdtest, "(Optical_Depth)"
+ )
+ testthat::expect_no_error(
+ modis_prefilter_sds("MCD19A2", "(cos|RelAZ|Angle)")
+ )
+ for (i in 1:3) {
+ testthat::expect_equal(
+ modis_prefilter_sds(txt_products[i]), txt_exp_output[i]
+ )
+ }
+ testthat::expect_no_error(
+ filt_other <- modis_prefilter_sds("ignored", "(cos)")
+ )
+ testthat::expect_equal(filt_other, "(cos)")
+
+})
+
+
+testthat::test_that("modis_aggregate_sds", {
+ withr::local_package("terra")
+ withr::local_package("stars")
+ withr::local_options(list(sf_use_s2 = FALSE))
+
+ mcd19 <- testthat::test_path(
+ "..", "testdata", "modis", "MCD19A2.A2021227.h11v05.061.2023149160635.hdf"
+ )
+ mod09 <- testthat::test_path(
+ "..", "testdata", "modis", "MOD09GA.A2021227.h11v05.061.2021229035936.hdf"
+ )
+
+ # main test: mcd19
+ testthat::expect_no_error(
+ mcdaggr <-
+ modis_aggregate_sds(
+ path = mcd19,
+ product = "MCD19A2",
+ nsds = "Optical_Depth",
+ fun_agg = "mean"
+ )
+ )
+ testthat::expect_s4_class(mcdaggr, "SpatRaster")
+ testthat::expect_equal(terra::nlyr(mcdaggr), 2L)
+ testthat::expect_equal(
+ all(grepl("^Optical", names(mcdaggr))),
+ TRUE
+ )
+
+ # mod09 test
+ mod09_sub <-
+ sprintf("HDF4_EOS:EOS_GRID:%s:MODIS_Grid_500m_2D:sur_refl_b01_1", mod09)
+ # main test: mcd19
+ testthat::expect_no_error(
+ modaggr <-
+ modis_aggregate_sds(
+ path = mod09_sub,
+ product = "MOD09GA",
+ nsds = NULL,
+ fun_agg = "mean"
+ )
+ )
+ testthat::expect_s4_class(modaggr, "SpatRaster")
+ testthat::expect_equal(terra::nlyr(modaggr), 1L)
+ testthat::expect_true(grepl("^500m Surface", names(modaggr)))
+})
+
+
+testthat::test_that("modis_get_vrt is good to go", {
+ withr::local_package("terra")
+ withr::local_package("stars")
+ withr::local_options(list(sf_use_s2 = FALSE))
+
+ path_mod11 <-
+ testthat::test_path(
+ "../testdata/modis/",
+ "MOD11A1.A2021227.h11v05.061.2021228105320.hdf"
+ )
+ testthat::expect_no_error(
+ modis_get_vrt(
+ paths = path_mod11,
+ "MOD11A1",
+ date_in = "2021-08-15",
+ regex_sds = "(LST_)"
+ )
+ )
+ # case 2: standard mod13a2
+ path_mod13 <-
+ testthat::test_path(
+ "../testdata/modis/",
+ "MOD13A2.A2021225.h11v05.061.2021320163751.hdf"
+ )
+ testthat::expect_no_error(
+ modis_get_vrt(
+ paths = path_mod13,
+ "MOD13A2",
+ date_in = "2021-08-13",
+ regex_sds = "(NDVI)"
+ )
+ )
+
+ # case 3: standard mcd19a2
+ path_mcd19 <-
+ testthat::test_path(
+ "../testdata/modis/",
+ "MCD19A2.A2021227.h11v05.061.2023149160635.hdf"
+ )
+ testthat::expect_no_error(
+ modis_get_vrt(
+ paths = path_mcd19,
+ "MCD19A2",
+ date_in = "2021-08-15",
+ regex_sds = "(Optical_Depth)"
+ )
+ )
+
+ # case 3: standard mcd19a2
+ path_mod09 <-
+ testthat::test_path(
+ "../testdata/modis/",
+ "MOD09GA.A2021227.h11v05.061.2021229035936.hdf"
+ )
+ testthat::expect_no_error(
+ modis_get_vrt(
+ paths = path_mod09,
+ "MOD09GA",
+ date_in = "2021-08-15",
+ regex_sds = "(sur_refl_b0)"
+ )
+ )
+
+})
+
+
+testthat::test_that("VNP46 preprocess tests", {
+ withr::local_package("terra")
+
+ path_vnp46 <-
+ list.files(
+ testthat::test_path("..", "testdata", "modis"),
+ "^VNP46A2",
+ full.names = TRUE
+ )
+
+ testthat::expect_warning(
+ vnp46_proc <- modis_preprocess_vnp46(
+ paths = path_vnp46[1],
+ date_in = "2018-08-13"
+ )
+ )
+ testthat::expect_s4_class(vnp46_proc, "SpatRaster")
+ testthat::expect_equal(terra::nlyr(vnp46_proc), 1L)
+
+ testthat::expect_error(
+ modis_preprocess_vnp46(
+ paths = path_vnp46[1],
+ date_in = "2018~08~13"
+ )
+ )
+
+})
+
+
+testthat::test_that("Swath warping abides", {
+ withr::local_package("stars")
+ withr::local_package("terra")
+ withr::local_options(list(sf_use_s2 = FALSE))
+
+ path_mod06 <-
+ testthat::test_path(
+ "..", "testdata", "modis",
+ "MOD06_L2.A2021227.0320.061.2021227134022.hdf"
+ )
+ path_mod06 <-
+ sprintf("HDF4_EOS:EOS_SWATH:%s:mod06:Cloud_Fraction_Night", path_mod06)
+ # internal warning from stars
+ testthat::expect_warning(
+ warped <- modis_warp_stars(
+ path = path_mod06
+ )
+ )
+ testthat::expect_s3_class(warped, "stars")
+ testthat::expect_equal(
+ unname(stars::st_res(warped)[1]), 0.25, tolerance = 1e-6
+ )
+
+})
+
+
+testthat::test_that("Other MODIS function errors", {
+ withr::local_package("terra")
+ withr::local_package("stars")
+ withr::local_options(list(sf_use_s2 = FALSE))
+ path_mod06 <-
+ testthat::test_path(
+ "..", "testdata", "modis",
+ "MOD06_L2.A2021227.0320.061.2021227134022.hdf"
+ )
+ path_mod06 <-
+ sprintf("HDF4_EOS:EOS_SWATH:%s:mod06:Cloud_Fraction_Night", path_mod06)
+
+ testthat::expect_no_error(
+ suppressWarnings(
+ modis_mosaic_mod06(
+ paths = path_mod06,
+ date_in = "2021-08-15"
+ )
+ )
+ )
+ testthat::expect_error(
+ modis_mosaic_mod06(
+ paths = path_mod06,
+ date_in = "2021~08~15"
+ )
+ )
+ testthat::expect_error(
+ modis_mosaic_mod06(
+ paths = path_mod06,
+ date_in = "2021-13-15"
+ )
+ )
+ testthat::expect_error(
+ modis_mosaic_mod06(
+ paths = path_mod06,
+ date_in = "2021-12-45"
+ )
+ )
+})
diff --git a/tests/testthat/test-download_functions.R b/tests/testthat/test-download_functions.R
new file mode 100644
index 00000000..eff91a39
--- /dev/null
+++ b/tests/testthat/test-download_functions.R
@@ -0,0 +1,1147 @@
+#' @author Mitchell Manware
+#' @description Unit test for for checking data download functions.
+testthat::test_that("Error when data_download_acknowledgement = FALSE", {
+ download_datasets <- c("aqs", "ecoregion", "geos", "gmted", "koppen",
+ "koppengeiger", "merra2", "merra", "narr_monolevel",
+ "narr_p_levels", "nlcd", "noaa", "sedac_groads",
+ "sedac_population", "groads", "population", "plevels",
+ "p_levels", "monolevel", "hms", "smoke")
+ for (d in seq_along(download_datasets)) {
+ expect_error(
+ download_data(dataset_name = download_datasets[d],
+ data_download_acknowledgement = FALSE),
+ paste0("Please refer to the argument list and ",
+ "the error message above to rectify the error.\n")
+ )
+ }
+})
+
+testthat::test_that("Error when one parameter is NULL.", {
+ download_datasets <- c("aqs", "ecoregion", "geos", "gmted", "koppen",
+ "koppengeiger", "merra2", "merra", "narr_monolevel",
+ "narr_p_levels", "nlcd", "noaa", "sedac_groads",
+ "sedac_population", "groads", "population", "plevels",
+ "p_levels", "monolevel", "hms", "smoke")
+ for (d in seq_along(download_datasets)) {
+ expect_error(
+ download_data(dataset_name = download_datasets[d],
+ data_download_acknowledgement = TRUE,
+ directory_to_save = NULL),
+ paste0("Please refer to the argument list and ",
+ "the error message above to rectify the error.\n")
+ )
+ }
+})
+
+testthat::test_that("Errors when temporal ranges invalid.", {
+ expect_error(
+ download_geos_cf_data(
+ date_start = "1900-01-01",
+ collection = "aqc_tavg_1hr_g1440x721_v1",
+ data_download_acknowledgement = TRUE,
+ directory_to_save = "../testdata"
+ )
+ )
+ expect_error(
+ download_aqs_data(
+ year_start = 1900,
+ data_download_acknowledgement = TRUE,
+ directory_to_save = "../testdata"
+ )
+ )
+ expect_error(
+ download_narr_monolevel_data(
+ year_start = 1900,
+ collection = "air.sfc",
+ data_download_acknowledgement = TRUE,
+ directory_to_save = "../testdata"
+ )
+ )
+ expect_error(
+ download_narr_p_levels_data(
+ year_start = 1900,
+ collection = "omega",
+ data_download_acknowledgement = TRUE,
+ directory_to_save = "../testdata"
+ )
+ )
+ expect_error(
+ download_merra2_data(
+ date_start = "1900-01-01",
+ collection = "inst1_2d_asm_Nx",
+ directory_to_save = "../testdata",
+ data_download_acknowledgement = TRUE
+ )
+ )
+ expect_error(
+ download_noaa_hms_smoke_data(
+ date_start = "1900-01-01",
+ directory_to_save = "../testdata",
+ directory_to_download = "../testdata",
+ data_download_acknowledgement = TRUE
+ )
+ )
+})
+
+testthat::test_that("EPA AQS download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ year_start <- 2018
+ year_end <- 2022
+ resolution_temporal <- "daily"
+ parameter_code <- 88101
+ directory_to_download <- testthat::test_path("..", "testdata/", "")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ # run download function
+ download_data(dataset_name = "aqs",
+ year_start = year_start,
+ year_end = year_end,
+ directory_to_save = directory_to_save,
+ directory_to_download = directory_to_download,
+ data_download_acknowledgement = TRUE,
+ unzip = FALSE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE)
+ # define file path with commands
+ commands_path <-
+ paste0(
+ directory_to_download,
+ "aqs_",
+ parameter_code,
+ "_",
+ year_start, "_", year_end,
+ "_",
+ resolution_temporal,
+ "_curl_commands.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 2)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = length(urls), method = "HEAD")
+ # implement unit tets
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+})
+
+
+testthat::test_that("Ecoregion download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ directory_to_download <- testthat::test_path("..", "testdata/", "")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ certificate <- system.file("extdata/cacert_gaftp_epa.pem",
+ package = "amadeus")
+ # run download function
+ download_data(dataset_name = "ecoregion",
+ directory_to_save = directory_to_save,
+ directory_to_download = directory_to_download,
+ data_download_acknowledgement = TRUE,
+ unzip = FALSE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE,
+ epa_certificate_path = certificate)
+ # define file path with commands
+ commands_path <- paste0(
+ directory_to_download,
+ "us_eco_l3_state_boundaries_",
+ Sys.Date(),
+ "_wget_command.txt"
+ )
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 3)
+ # check HTTP URL status
+ url_status <-
+ httr::HEAD(urls, config = httr::config(cainfo = certificate))
+ url_status <- url_status$status_code
+ # implement unit tets
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+})
+
+testthat::test_that("GEOS-CF download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ date_start <- "2019-09-09"
+ date_end <- "2019-09-21"
+ collections <- c("aqc_tavg_1hr_g1440x721_v1",
+ "chm_inst_1hr_g1440x721_p23")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ for (c in seq_along(collections)) {
+ # run download function
+ download_data(dataset_name = "geos",
+ date_start = date_start,
+ date_end = date_end,
+ collection = collections[c],
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE)
+ # define file path with commands
+ commands_path <- paste0(directory_to_save,
+ collections[c],
+ "_",
+ date_start,
+ "_",
+ date_end,
+ "_wget_commands.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 2)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 20L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+ }
+})
+
+testthat::test_that("GMTED download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ # function parameters
+ statistics <- c("Breakline Emphasis",
+ # "Systematic Subsample",
+ # "Median Statistic", "Minimum Statistic",
+ # "Mean Statistic", "Maximum Statistic",
+ "Standard Deviation Statistic")
+ resolution <- "7.5 arc-seconds"
+ directory_to_download <- testthat::test_path("..", "testdata/", "")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ for (s in seq_along(statistics)) {
+ # run download function
+ download_data(dataset_name = "gmted",
+ statistic = statistics[s],
+ resolution = resolution,
+ directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ unzip = FALSE,
+ remove_zip = FALSE,
+ download = FALSE)
+ # define file path with commands
+ commands_path <- paste0(directory_to_download,
+ "gmted_",
+ gsub(" ", "", statistics[s]),
+ "_",
+ gsub(" ", "", resolution),
+ "_",
+ Sys.Date(),
+ "_curl_command.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 6)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 1L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+ }
+})
+
+testthat::test_that("MERRA2 download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ date_start <- "2022-02-14"
+ date_end <- "2022-03-08"
+ collections <- c("inst1_2d_asm_Nx", "inst3_3d_asm_Np")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ for (c in seq_along(collections)) {
+ # run download function
+ download_data(dataset_name = "merra2",
+ date_start = date_start,
+ date_end = date_end,
+ collection = collections[c],
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE)
+ # define path with commands
+ commands_path <- paste0(directory_to_save,
+ collections[c],
+ "_",
+ date_start,
+ "_",
+ date_end,
+ "_wget_commands.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 2)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 30L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+ }
+})
+
+testthat::test_that("MERRA2 returns message with unrecognized collection.", {
+ # function parameters
+ collections <- "uNrEcOgNiZeD"
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ testthat::expect_error(
+ download_data(
+ dataset_name = "merra",
+ collection = collections,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE
+ )
+ )
+})
+
+testthat::test_that("NARR monolevel download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ year_start <- 2018
+ year_end <- 2018
+ variables <- c("weasd", "air.2m")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ # run download function
+ download_data(dataset_name = "narr_monolevel",
+ year_start = year_start,
+ year_end = year_end,
+ variables = variables,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE)
+ # define path with commands
+ commands_path <- paste0(directory_to_save,
+ "narr_monolevel_",
+ year_start, "_", year_end,
+ "_curl_commands.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 6)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 5L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+})
+
+testthat::test_that("NARR p-levels download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ year_start <- 2020
+ year_end <- 2021
+ variables <- c("shum", "omega")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ # run download function
+ download_data(dataset_name = "narr_p_levels",
+ year_start = year_start,
+ year_end = year_end,
+ variables = variables,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE)
+ # define file path with commands
+ commands_path <- paste0(directory_to_save,
+ "narr_p_levels_",
+ year_start, "_", year_end,
+ "_curl_commands.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 6)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 20L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+})
+
+testthat::test_that("NOAA HMS Smoke download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ date_start <- "2022-08-12"
+ date_end <- "2022-09-21"
+ directory_to_download <- testthat::test_path("..", "testdata/", "")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ # run download function
+ download_data(dataset_name = "smoke",
+ date_start = date_start,
+ date_end = date_end,
+ directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE)
+ # define file path with commands
+ commands_path <- paste0(directory_to_download,
+ "hms_smoke_",
+ gsub("-", "", date_start),
+ "_",
+ gsub("-", "", date_end),
+ "_curl_commands.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 6)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 30L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+})
+
+testthat::test_that("NLCD download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ years <- c(2021, 2019, 2016)
+ collections <- c(rep("Coterminous United States", 2), "Alaska")
+ collection_codes <- c(rep("l48", 2), "ak")
+ directory_to_download <- testthat::test_path("..", "testdata/", "")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ # run download function
+ for (y in seq_along(years)) {
+ download_data(dataset_name = "nlcd",
+ year = years[y],
+ collection = collections[y],
+ directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE)
+ # define file path with commands
+ commands_path <- paste0(directory_to_download,
+ "nlcd_",
+ years[y],
+ "_land_cover_",
+ collection_codes[y],
+ "_",
+ Sys.Date(),
+ "_curl_command.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 5)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 1L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+ }
+ testthat::expect_error(
+ download_data(dataset_name = "nlcd",
+ year = 2000,
+ collection = "Coterminous United States",
+ directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = TRUE,
+ unzip = FALSE,
+ remove_zip = FALSE)
+ )
+
+})
+
+testthat::test_that("SEDAC groads download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ data_regions <- c("Americas", "Global")
+ data_formats <- c("Geodatabase", "Shapefile")
+ directory_to_download <- testthat::test_path("..", "testdata/", "")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ # run download function
+ for (r in seq_along(data_regions)) {
+ data_region <- data_regions[r]
+ for (f in seq_along(data_formats)) {
+ download_data(dataset_name = "sedac_groads",
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ data_format = data_formats[f],
+ data_region = data_region,
+ directory_to_download = directory_to_download,
+ download = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE,
+ remove_command = FALSE)
+ # define file path with commands
+ commands_path <- paste0(directory_to_download,
+ "sedac_groads_",
+ gsub(" ", "_", tolower(data_region)),
+ "_",
+ Sys.Date(),
+ "_curl_command.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 11)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 1L, method = "GET")
+ # implement unit tests
+ test_download_functions(directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+ }
+ }
+
+ testthat::expect_message(
+ download_data(dataset_name = "sedac_groads",
+ data_format = "Shapefile",
+ data_region = "Global",
+ directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE,
+ remove_command = TRUE)
+ )
+})
+
+testthat::test_that("SEDAC population download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ years <- c("2020")
+ data_formats <- c("GeoTIFF")
+ data_resolutions <- cbind(c("30 second"),
+ c("30_sec"))
+ directory_to_download <- testthat::test_path("..", "testdata/", "")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ for (f in seq_along(data_formats)) {
+ data_format <- data_formats[f]
+ for (y in seq_along(years)) {
+ year <- years[y]
+ for (r in seq_len(nrow(data_resolutions))) {
+ # run download function
+ download_data(dataset_name = "sedac_population",
+ year = year,
+ data_format = data_format,
+ data_resolution = data_resolutions[r, 1],
+ directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE,
+ remove_command = FALSE)
+ # define file path with commands
+ if (year == "all") {
+ year <- "totpop"
+ } else {
+ year <- year
+ }
+ if (year == "totpop" && data_resolutions[r, 2] == "30_sec") {
+ resolution <- "2pt5_min"
+ } else {
+ resolution <- data_resolutions[r, 2]
+ }
+ commands_path <- paste0(directory_to_download,
+ "sedac_population_",
+ year,
+ "_",
+ resolution,
+ "_",
+ Sys.Date(),
+ "_curl_commands.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 11)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 1L, method = "GET")
+ # implement unit tests
+ test_download_functions(directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+ }
+ }
+ }
+})
+
+testthat::test_that("SEDAC population data types are coerced.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ year <- c("totpop")
+ data_formats <- c("GeoTIFF", "ASCII", "netCDF")
+ data_resolutions <- c("30 second", "2pt5_min")
+ directory_to_download <- "../testdata/"
+ directory_to_save <- "../testdata/"
+ for (f in seq_along(data_formats)) {
+ download_data(dataset_name = "sedac_population",
+ year = year,
+ data_format = data_formats[f],
+ data_resolution = data_resolutions[1],
+ directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE,
+ remove_command = FALSE)
+ commands_path <- paste0(directory_to_download,
+ "sedac_population_",
+ year,
+ "_",
+ data_resolutions[2],
+ "_",
+ Sys.Date(),
+ "_curl_commands.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 11)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 1L, method = "GET")
+ # implement unit tests
+ test_download_functions(directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+ }
+})
+
+testthat::test_that("Koppen Geiger download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ time_periods <- c("Present", "Future")
+ data_resolutions <- c("0.0083")
+ directory_to_download <- testthat::test_path("..", "testdata/", "")
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ # run download function
+ for (p in seq_along(time_periods)) {
+ time_period <- time_periods[p]
+ for (d in seq_along(data_resolutions)) {
+ download_data(dataset_name = "koppen",
+ time_period = time_period,
+ data_resolution = data_resolutions[d],
+ directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ unzip = FALSE,
+ remove_zip = FALSE,
+ download = FALSE,
+ remove_command = FALSE)
+ # define file path with commands
+ commands_path <- paste0(directory_to_download,
+ "koppen_geiger_",
+ time_period,
+ "_",
+ gsub("\\.",
+ "p",
+ data_resolutions[d]),
+ "_",
+ Sys.Date(),
+ "_wget_command.txt")
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 2)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 1L, method = "GET")
+ # implement unit tests
+ test_download_functions(directory_to_download = directory_to_download,
+ directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+ }
+ }
+})
+
+testthat::test_that("MODIS-MOD09GA download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ years <- 2020
+ product <- "MOD09GA"
+ version <- "61"
+ horizontal_tiles <- c(12, 13)
+ vertical_tiles <- c(5, 6)
+ nasa_earth_data_token <- "tOkEnPlAcEhOlDeR"
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ for (y in seq_along(years)) {
+ date_start <- paste0(years[y], "-06-20")
+ date_end <- paste0(years[y], "-06-24")
+ # run download function
+ download_data(dataset_name = "modis",
+ date_start = date_start,
+ date_end = date_end,
+ product = product,
+ version = version,
+ horizontal_tiles = horizontal_tiles,
+ vertical_tiles = vertical_tiles,
+ nasa_earth_data_token = nasa_earth_data_token,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE)
+ # define file path with commands
+ commands_path <- paste0(
+ directory_to_save,
+ product,
+ "_",
+ date_start,
+ "_",
+ date_end,
+ "_wget_commands.txt"
+ )
+ # import commands
+ commands <- read_commands(commands_path = commands_path)[, 2]
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 4)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 10L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+ }
+})
+
+
+testthat::test_that("MODIS-MOD06L2 download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ product <- "MOD06_L2"
+ version <- "61"
+ date_start <- "2019-02-18"
+ date_end <- "2019-02-18"
+ nasa_earth_data_token <- "tOkEnPlAcEhOlDeR"
+ horizontal_tiles <- c(8, 10)
+ vertical_tiles <- c(4, 5)
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+
+ testthat::expect_error(
+ kax <- download_data(dataset_name = "modis",
+ date_start = date_start,
+ date_end = date_end,
+ product = product,
+ version = version,
+ horizontal_tiles = horizontal_tiles,
+ vertical_tiles = vertical_tiles,
+ nasa_earth_data_token = nasa_earth_data_token,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ mod06_links = NULL,
+ remove_command = FALSE)
+ )
+ # link check
+ tdir <- tempdir()
+ faux_urls <-
+ rbind(
+ c(4387858920,
+ "/archive/allData/61/MOD06_L2/2019/049/MOD06_L2.A2019049.0720.061.2019049194350.hdf",
+ 28267915)
+ )
+
+ faux_urls <- data.frame(faux_urls)
+ mod06_scenes <- paste0(tdir, "/mod06_example.csv")
+ write.csv(faux_urls, mod06_scenes, row.names = FALSE)
+
+ download_data(dataset_name = "modis",
+ date_start = date_start,
+ date_end = date_end,
+ product = product,
+ version = version,
+ horizontal_tiles = horizontal_tiles,
+ vertical_tiles = vertical_tiles,
+ nasa_earth_data_token = nasa_earth_data_token,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ mod06_links = mod06_scenes,
+ remove_command = FALSE)
+
+ # define file path with commands
+ commands_path <- paste0(
+ directory_to_save,
+ product,
+ "_",
+ date_start,
+ "_",
+ date_end,
+ "_wget_commands.txt"
+ )
+ # import commands
+ commands <- read_commands(commands_path = commands_path)[, 2]
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 4)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 1L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+})
+
+
+testthat::test_that("MODIS download error cases.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ years <- 2020
+ product <- "MOD09GA"
+ version <- "61"
+ horizontal_tiles <- c(12, 13)
+ vertical_tiles <- c(5, 6)
+ nasa_earth_data_token <- "tOkEnPlAcEhOlDeR"
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ date_start <- paste0(years, "-06-25")
+ date_end <- paste0(years, "-06-30")
+
+ # no token
+ testthat::expect_no_error(
+ download_data(dataset_name = "modis",
+ date_start = date_start,
+ date_end = date_end,
+ product = product,
+ version = version,
+ horizontal_tiles = horizontal_tiles,
+ vertical_tiles = vertical_tiles,
+ nasa_earth_data_token = nasa_earth_data_token,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE)
+ )
+
+ # no token
+ testthat::expect_error(
+ download_data(dataset_name = "modis",
+ date_start = date_start,
+ date_end = date_end,
+ product = product,
+ version = version,
+ horizontal_tiles = horizontal_tiles,
+ vertical_tiles = vertical_tiles,
+ nasa_earth_data_token = NULL,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE)
+ )
+
+ # year difference between date_start and date_end
+ testthat::expect_error(
+ download_data(dataset_name = "modis",
+ date_start = date_start,
+ date_end = "2024-03-28",
+ product = "MOD11A1",
+ version = version,
+ horizontal_tiles = horizontal_tiles,
+ vertical_tiles = vertical_tiles,
+ nasa_earth_data_token = NULL,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE)
+ )
+
+ # null version
+ testthat::expect_error(
+ download_data(dataset_name = "modis",
+ date_start = date_start,
+ date_end = date_end,
+ product = product,
+ version = NULL,
+ horizontal_tiles = horizontal_tiles,
+ vertical_tiles = vertical_tiles,
+ nasa_earth_data_token = nasa_earth_data_token,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE)
+ )
+
+ # invalid tile range (horizontal)
+ testthat::expect_error(
+ download_data(dataset_name = "modis",
+ date_start = date_start,
+ date_end = date_end,
+ product = product,
+ version = NULL,
+ horizontal_tiles = c(-13, -3),
+ vertical_tiles = vertical_tiles,
+ nasa_earth_data_token = NULL,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE)
+ )
+
+ # invalid tile range (horizontal)
+ testthat::expect_error(
+ download_data(dataset_name = "modis",
+ date_start = date_start,
+ date_end = date_end,
+ product = product,
+ version = NULL,
+ horizontal_tiles = horizontal_tiles,
+ vertical_tiles = c(100, 102),
+ nasa_earth_data_token = NULL,
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE)
+ )
+
+
+ # define file path with commands
+ commands_path <- paste0(
+ directory_to_save,
+ product,
+ "_",
+ date_start,
+ "_",
+ date_end,
+ "_wget_commands.txt"
+ )
+ # import commands
+ commands <- read_commands(commands_path = commands_path)[, 2]
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 4)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 10L, method = "HEAD")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+})
+
+
+
+testthat::test_that("EPA TRI download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ # run download function
+ download_data(dataset_name = "tri",
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE)
+ year_start <- 2018L
+ year_end <- 2022L
+
+ # define file path with commands
+ commands_path <- paste0(
+ directory_to_save,
+ "TRI_",
+ year_start, "_", year_end,
+ "_",
+ Sys.Date(),
+ "_curl_commands.txt"
+ )
+
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 3)
+ # check HTTP URL status
+ url_status <- check_urls(urls = urls, size = 1L, method = "GET")
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+})
+
+
+testthat::test_that("EPA NEI (AADT) download URLs have HTTP status 200.", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ certificate <- system.file("extdata/cacert_gaftp_epa.pem",
+ package = "amadeus")
+ # run download function
+ year_target <- c(2017L, 2020L)
+ download_data(dataset_name = "nei",
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ year_target = year_target,
+ remove_command = FALSE,
+ epa_certificate_path = certificate
+ )
+ # define file path with commands
+ commands_path <- paste0(
+ directory_to_save,
+ "NEI_AADT_",
+ paste(year_target, collapse = "-"),
+ "_",
+ Sys.Date(),
+ "_wget_commands.txt"
+ )
+
+ # import commands
+ commands <- read_commands(commands_path = commands_path)
+ # extract urls
+ urls <- extract_urls(commands = commands, position = 3)
+ # check HTTP URL status
+ url_status <-
+ httr::HEAD(urls[1], config = httr::config(cainfo = certificate))
+ url_status <- url_status$status_code
+ # implement unit tests
+ test_download_functions(directory_to_save = directory_to_save,
+ commands_path = commands_path,
+ url_status = url_status)
+ # remove file with commands after test
+ file.remove(commands_path)
+})
+
+testthat::test_that("Test error cases in EPA gaftp sources 1", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ tdir <- tempdir()
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ certificate <- file.path(tdir, "cacert_gaftp_epa.pem")
+ # remove if there is a preexisting file
+ if (file.exists(certificate)) {
+ file.remove(certificate)
+ file.remove(gsub("pem", "crt", certificate))
+ }
+
+ # run download function
+ year_target <- c(2017L)
+ testthat::expect_message(
+ download_data(dataset_name = "nei",
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ year_target = year_target,
+ remove_command = FALSE,
+ epa_certificate_path = certificate
+ )
+ )
+ # define file path with commands
+ commands_path <- paste0(
+ directory_to_save,
+ "NEI_AADT_",
+ paste(year_target, collapse = "-"),
+ "_",
+ Sys.Date(),
+ "_wget_commands.txt"
+ )
+ # remove file with commands after test
+ testthat::expect_true(file.exists(commands_path))
+ file.remove(commands_path)
+})
+
+testthat::test_that("Test error cases in EPA gaftp sources 2", {
+ withr::local_package("httr")
+ withr::local_package("stringr")
+ # function parameters
+ tdir <- tempdir(check = TRUE)
+ directory_to_save <- testthat::test_path("..", "testdata/", "")
+ certificate <- file.path(tdir, "cacert_gaftp_epa.pem")
+ # remove if there is a preexisting file
+ if (file.exists(certificate)) {
+ file.remove(certificate)
+ file.remove(gsub("pem", "crt", certificate))
+ }
+
+ # run download function
+
+ testthat::expect_message(
+ download_data(dataset_name = "ecoregion",
+ directory_to_save = directory_to_save,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE,
+ directory_to_download = directory_to_save,
+ epa_certificate_path = certificate
+ )
+ )
+ # unlink dir
+ unlink(tdir)
+
+ # define file path with commands
+ commands_path <- paste0(
+ directory_to_save,
+ "us_eco_l3_state_boundaries_",
+ Sys.Date(),
+ "_wget_command.txt"
+ )
+
+ # remove file with commands after test
+ testthat::expect_true(file.exists(commands_path))
+ file.remove(commands_path)
+})
+
+
+testthat::test_that("epa certificate", {
+ testthat::expect_error(
+ download_epa_certificate("file.txt")
+ )
+ testthat::expect_message(
+ download_epa_certificate(file.path(tempdir(), "file.pem"))
+ )
+ testthat::expect_no_error(
+ download_epa_certificate(
+ system.file("extdata/cacert_gaftp_epa.pem", package = "amadeus")
+ )
+ )
+})
\ No newline at end of file
diff --git a/tests/testthat/test-manipulate_spacetime_data.R b/tests/testthat/test-manipulate_spacetime_data.R
new file mode 100644
index 00000000..7958522a
--- /dev/null
+++ b/tests/testthat/test-manipulate_spacetime_data.R
@@ -0,0 +1,295 @@
+test_that("convert_stobj_to_stdt works well", {
+ withr::local_package("sf")
+ withr::local_package("terra")
+ withr::local_package("data.table")
+ withr::local_package("dplyr")
+ withr::local_options(list(sf_use_s2 = FALSE))
+
+ lon <- seq(-112, -101, length.out = 5) # create lon sequence
+ lat <- seq(33.5, 40.9, length.out = 5) # create lat sequence
+ df <- expand.grid("lon" = lon, "lat" = lat) # expand to regular grid
+ df <- rbind(df, df)
+ df$time <- c(rep("2023-11-02", 25), rep("2023-11-03", 25))
+ df$var1 <- 1:50
+ df$var2 <- 51:100
+
+ # test that is fails if stobj is not from an accepted st class
+ expect_error(
+ convert_stobj_to_stdt(stobj = "I love cheese")
+ )
+
+ # test with dataframe / datatable objects
+ # 1) it should work
+ expect_no_error(convert_stobj_to_stdt(df))
+ expect_no_error(convert_stobj_to_stdt(data.table::as.data.table(df)))
+ expect_true(is.na(convert_stobj_to_stdt(df)$crs_stdt))
+ expect_equal(class(convert_stobj_to_stdt(df)$stdt)[[1]], "data.table")
+ expect_false(any(!(c("lon", "lat", "time") %in%
+ colnames(convert_stobj_to_stdt(df)$stdt))))
+ # 2) it should fail because time column is missing
+ df$time <- NULL
+ expect_error(
+ convert_stobj_to_stdt(df)
+ )
+
+ # test with sf / sftime objects
+ # 1) it should work
+ df$time <- c(rep("2023-11-02", 25), rep("2023-11-03", 25))
+ stobj <- sf::st_as_sf(df, coords = c("lon", "lat"), crs = "EPSG:4326")
+ expect_no_error(convert_stobj_to_stdt(stobj))
+ stdt <- convert_stobj_to_stdt(stobj)$stdt
+ crsdt <- convert_stobj_to_stdt(stobj)$crs_stdt
+ expect_equal(class(stdt)[[1]], "data.table")
+ expect_equal(class(crsdt), "character")
+ expect_true(terra::same.crs(crsdt, "EPSG:4326"))
+ expect_false(any(!(c("lon", "lat", "time") %in% colnames(stdt))))
+ expect_equal(
+ stdt[lon == -112 & lat == 35.35 & time == "2023-11-02", var1],
+ 6
+ )
+ expect_equal(
+ stdt[lon == -112 & lat == 35.35 & time == "2023-11-02", var2],
+ 56
+ )
+ df$time <- as.Date(df$time)
+ stobj <- sftime::st_as_sftime(df,
+ coords = c("lon", "lat"),
+ time_column_name = "time",
+ crs = "EPSG:4326"
+ )
+ expect_no_error(convert_stobj_to_stdt(stobj))
+ expect_equal(class(convert_stobj_to_stdt(stobj)$crs_stdt), "character")
+ # 2) it should fail because time columns is misspelled
+ stobj$time <- stobj$time
+ stobj$time <- NULL
+ expect_error(
+ convert_stobj_to_stdt(stobj),
+ "Error: stobj does not contain geometry and time columns"
+ )
+
+ # test with SpatVector objects
+ # 1) it should work
+ stobj <-
+ terra::vect(
+ df,
+ geom = c("lon", "lat"),
+ crs = "EPSG:4326",
+ keepgeom = FALSE)
+ expect_no_error(convert_stobj_to_stdt(stobj))
+ stdt <- convert_stobj_to_stdt(stobj)$stdt
+ expect_equal(class(stdt)[[1]], "data.table")
+ expect_equal(class(convert_stobj_to_stdt(stobj)$crs_stdt), "character")
+ expect_true({
+ terra::same.crs(convert_stobj_to_stdt(stobj)$crs_stdt,
+ "EPSG:4326")})
+ expect_false(any(!(c("lon", "lat", "time") %in% colnames(stdt))))
+ expect_equal(
+ stdt[lon == -112 & lat == 35.35 & time == "2023-11-02", var1],
+ 6
+ )
+ expect_equal(
+ stdt[lon == -112 & lat == 35.35 & time == "2023-11-02", var2],
+ 56
+ )
+
+ # test with SpatRastDataset created from 2 SpatRast (i.e. 2 variables)
+ # with 3 layers (i.e. 3 timestamps)
+ # 1) it should work
+ var1 <-
+ terra::rast(
+ extent = c(-112, -101, 33.5, 40.9),
+ ncol = 5,
+ nrow = 5,
+ crs = "EPSG:4326")
+ terra::values(var1) <- seq(-5, 19)
+ terra::add(var1) <- c(var1 ** 2, var1 ** 3)
+ var1 <- rast(
+ extent = c(-112, -101, 33.5, 40.9),
+ ncol = 5,
+ nrow = 5,
+ crs = "EPSG:4326"
+ )
+ values(var1) <- seq(-5, 19)
+ add(var1) <- c(var1 ** 2, var1 ** 3)
+ names(var1) <- c("2023-11-01", "2023-11-02", "2023-11-03")
+ var2 <- rast(
+ extent = c(-112, -101, 33.5, 40.9),
+ ncol = 5,
+ nrow = 5,
+ crs = "EPSG:4326"
+ )
+ values(var2) <- seq(-15, 9)
+ add(var2) <- c(var2**2, var2**3)
+ names(var2) <- c("2023-11-01", "2023-11-02", "2023-11-03")
+ stobj <- terra::sds(var1, var2)
+ names(stobj) <- c("var1", "var2")
+ expect_no_error(stdt_converted <- convert_stobj_to_stdt(stobj))
+ expect_equal(class(stdt_converted$stdt)[[1]], "data.table")
+ expect_equal(class(stdt_converted$crs_stdt), "character")
+ expect_true(terra::same.crs(stdt_converted$crs_stdt, "EPSG:4326"))
+
+ expect_false({
+ any(!(c("lon", "lat", "time") %in%
+ colnames(stdt_converted$stdt)))})
+ expect_equal({
+ stdt_converted$stdt[
+ lon == -106.5 &
+ lat == stdt_converted$stdt$lat[37] &
+ time == "2023-11-02", var1]},
+ 49)
+ expect_equal({
+ stdt_converted$stdt[
+ lon == -106.5 &
+ lat == stdt_converted$stdt$lat[37] &
+ time == "2023-11-02", var2]},
+ 9)
+
+ var1sds <- terra::sds(var1)
+ expect_error(convert_stobj_to_stdt(var1sds))
+
+ # convert stdt to spatrastdataset test
+ expect_no_error(sds_from_stdt <- convert_stdt_spatrastdataset(stdt_converted))
+ expect_s4_class(sds_from_stdt, "SpatRasterDataset")
+
+})
+
+
+
+test_that("is_stdt works as expected", {
+ withr::local_package("sf")
+ withr::local_package("terra")
+ withr::local_package("data.table")
+ withr::local_package("dplyr")
+ withr::local_options(list(sf_use_s2 = FALSE))
+
+ lon <- seq(-112, -101, length.out = 5) # create lon sequence
+ lat <- seq(33.5, 40.9, length.out = 5) # create lat sequence
+ df <- expand.grid("lon" = lon, "lat" = lat) # expand to regular grid
+ df <- rbind(df, df)
+ df$time <- c(rep("2023-11-02", 25), rep("2023-11-03", 25))
+ df$var1 <- 1:50
+ df$var2 <- 51:100
+
+ errstdt1 <- list(1L, 2L)
+ expect_equal(is_stdt(errstdt1), FALSE)
+ names(errstdt1) <- c("stdt", "crs_stdt")
+ expect_equal(is_stdt(errstdt1), FALSE)
+ class(errstdt1) <- c("list", "stdt")
+ expect_equal(is_stdt(errstdt1), FALSE)
+ errstdt2 <- errstdt1
+ errstdt2$stdt <- data.table(A = 1, B = 2, C = 3)
+ expect_equal(is_stdt(errstdt2), FALSE)
+ names(errstdt2$stdt) <- c("lon", "lat", "time")
+ expect_equal(is_stdt(errstdt2), FALSE)
+ expect_error(convert_stdt(errstdt2))
+ expect_error(convert_stdt_spatvect(errstdt2))
+ expect_error(convert_stdt_sftime(errstdt2))
+ expect_error(convert_stdt_spatrastdataset(errstdt2))
+
+
+})
+
+
+test_that("dt_to_sf works as expected", {
+ withr::local_package("sf")
+ withr::local_package("terra")
+ withr::local_package("data.table")
+ withr::local_package("dplyr")
+ withr::local_options(list(sf_use_s2 = FALSE))
+
+ lon <- seq(-112, -101, length.out = 5) # create lon sequence
+ lat <- seq(33.5, 40.9, length.out = 5) # create lat sequence
+ df <- expand.grid("lon" = lon, "lat" = lat) # expand to regular grid
+ df <- rbind(df, df)
+ df$time <- c(rep("2023-11-02", 25), rep("2023-11-03", 25))
+ df$var1 <- 1:50
+ df$var2 <- 51:100
+
+ expect_error(dt_to_sf(df, 3L))
+ expect_error(dt_to_sf(as.data.table(df), 3L))
+
+ dfe <- as.data.table(df)
+ names(dfe)[1] <- "xcoord"
+ expect_error(dt_to_sf(dfe, "EPSG:4326"))
+ dfe <- as.data.table(df)
+ names(dfe)[2] <- "ycoord"
+ expect_error(dt_to_sf(dfe, "EPSG:4326"))
+
+ dfdt <- as.data.table(df)
+ expect_no_error(dt_to_sf(dfdt, "EPSG:4326"))
+ dfsf <- dt_to_sf(dfdt, "EPSG:4326")
+ expect_s3_class(dfsf, "sf")
+})
+
+
+test_that("dt_to_sftime works as expected", {
+ withr::local_package("sf")
+ withr::local_package("sftime")
+ withr::local_package("terra")
+ withr::local_package("data.table")
+ withr::local_package("dplyr")
+ withr::local_options(list(sf_use_s2 = FALSE))
+
+ lon <- seq(-112, -101, length.out = 5) # create lon sequence
+ lat <- seq(33.5, 40.9, length.out = 5) # create lat sequence
+ df <- expand.grid("lon" = lon, "lat" = lat) # expand to regular grid
+ df <- rbind(df, df)
+ df$time <- as.Date(c(rep("2023-11-02", 25), rep("2023-11-03", 25)))
+ df$var1 <- 1:50
+ df$var2 <- 51:100
+
+ expect_error(dt_to_sftime(df, 3L))
+ expect_error(dt_to_sftime(as.data.table(df), 3L))
+
+ dfe <- as.data.table(df)
+ names(dfe)[1] <- "xcoord"
+ expect_error(dt_to_sftime(dfe, "EPSG:4326"))
+ dfe <- as.data.table(df)
+ names(dfe)[2] <- "ycoord"
+ expect_error(dt_to_sftime(dfe, "EPSG:4326"))
+
+ dfdt <- as.data.table(df)
+ expect_no_error(dt_to_sftime(dfdt, "EPSG:4326"))
+ dfsf <- dt_to_sftime(dfdt, "EPSG:4326")
+ expect_s3_class(dfsf, "sftime")
+
+ df_nonstandard <- df
+ colnames(df_nonstandard)[3] <- "yeardate"
+ expect_error(dt_to_sftime(df_nonstandard, "EPSG:4326"))
+})
+
+
+
+test_that("project_dt works as expected", {
+ withr::local_package("sf")
+ withr::local_package("sftime")
+ withr::local_package("terra")
+ withr::local_package("data.table")
+ withr::local_package("dplyr")
+ withr::local_options(list(sf_use_s2 = FALSE))
+
+ lon <- seq(-112, -101, length.out = 5) # create lon sequence
+ lat <- seq(33.5, 40.9, length.out = 5) # create lat sequence
+ df <- expand.grid("lon" = lon, "lat" = lat) # expand to regular grid
+ df <- rbind(df, df)
+ df$time <- c(rep("2023-11-02", 25), rep("2023-11-03", 25))
+ df$var1 <- 1:50
+ df$var2 <- 51:100
+ dfdt <- as.data.table(df)
+
+ expect_error(project_dt(dfdt, 3L, 2L))
+ expect_error(project_dt(dfdt, "EPSG:4326", 2L))
+ expect_error(project_dt(as.matrix(dfdt), 3L, 2L))
+
+ dfdte <- dfdt
+ names(dfdte)[1] <- "xcoord"
+ expect_error(project_dt(dfdte, "EPSG:4326", "EPSG:5070"))
+ dfdte <- as.data.table(df)
+ names(dfdte)[2] <- "ycoord"
+ expect_error(project_dt(dfdte, "EPSG:4326", "EPSG:5070"))
+
+ expect_no_error(project_dt(dfdt, "EPSG:4326", "EPSG:5070"))
+ dfdtp <- project_dt(dfdt, "EPSG:4326", "EPSG:5070")
+
+ expect_s3_class(dfdtp, "data.table")
+})
diff --git a/vignettes/download_functions.Rmd b/vignettes/download_functions.Rmd
new file mode 100644
index 00000000..274bc25b
--- /dev/null
+++ b/vignettes/download_functions.Rmd
@@ -0,0 +1,1062 @@
+---
+title: "download_data() and NASA EarthData Account"
+output: rmarkdown::html_vignette
+vignette: >
+ %\VignetteIndexEntry{download_data() and NASA EarthData Account}
+ %\VignetteEngine{knitr::rmarkdown}
+ %\VignetteEncoding{UTF-8}
+date: "2024-01-18"
+author: "Mitchell Manware"
+---
+
+```{r, echo = FALSE, warning = FALSE, message = FALSE}
+# packages
+library(knitr)
+library(testthat)
+# source functions
+sapply(
+ list.files(
+ "../R/",
+ pattern = "download",
+ full.names = TRUE
+ ),
+ source
+)
+```
+
+## Motivation
+
+The `data_download()` function was developed to improve researchers' access to publicly available geospatial data sets. Although the data are already available online, using a web browser to manually download hundreds or thousands of data files is slow, arduous, and not (efficiently) repeatable. Additionally, as users may not be familiar with creating download recipes in Bash (Unix shell), `data_download()` allows researchers to download data directly with R, a common coding language in the field of environmental health research. Finally, function-izing data downloads is useful for repeated code or automated analysis pipelines.
+
+## data_download()
+
+`data_download()` is capable of accessing and downloading geospatial data sets, collections, and variables from a variety of sources. This wrapper function calls on source-specific data download functions, each utilizing a unique combination of input parameters, host URL, naming convention, and data formats.
+
+```{r, echo = FALSE}
+functions <- c(
+ "download_aqs_data", "download_ecoregion_data",
+ "download_geos_cf_data", "download_gmted_data",
+ "download_koppen_geiger_data", "download_merra2_data",
+ "download_narr_monolevel_data", "download_narr_p_levels_data",
+ "download_nlcd_data", "download_noaa_hms_smoke_data",
+ "download_sedac_groads_data", "download_sedac_population_data",
+ "download_modis_data"
+)
+source <- c(
+ "US EPA Air Data Pre-Generated Data Files",
+ "US EPA Ecoregions",
+ "NASA Goddard Earth Observing System Composition Forecasting (GEOS-CF)",
+ "USGS Global Multi-resolution Terrain Elevation Data (GMTED2010)",
+ "Köppen-Geiger Climate Classification (Beck et al., 2018)",
+ paste0(
+ "NASA Modern-Era Retrospective analysis for Research and ",
+ "Applications, Version 2 (MERRA-2)"
+ ),
+ "NOAA NCEP North American Regional Reanalysis (NARR) (monolevel variables)",
+ paste0(
+ "NOAA NCEP North American Regional Reanalysis (NARR) (pressure ",
+ "levels variables)"
+ ),
+ "MRLC Consortium National Land Cover Database (NLCD)",
+ "NOAA Hazard Mapping System Fire and Smoke Product",
+ "NASA SEDAC Global Roads Open Access Data Set",
+ "NASA SEDAC UN WPP-Adjusted Population Density",
+ "NASA Moderate Resolution Imaging Spectroradiometer (MODIS)"
+)
+
+link <- c(
+ "https://aqs.epa.gov/aqsweb/airdata/download_files.html",
+ "https://www.epa.gov/eco-research/ecoregions",
+ "https://gmao.gsfc.nasa.gov/GEOS_systems/",
+ "https://www.usgs.gov/coastal-changes-and-impacts/gmted2010",
+ "https://www.nature.com/articles/sdata2018214",
+ "https://gmao.gsfc.nasa.gov/reanalysis/MERRA-2/",
+ "https://psl.noaa.gov/data/gridded/data.narr.html",
+ "https://psl.noaa.gov/data/gridded/data.narr.html",
+ "https://www.mrlc.gov/data",
+ "https://www.ospo.noaa.gov/Products/land/hms.html#0",
+ paste0(
+ "https://sedac.ciesin.columbia.edu/data/set/groads-",
+ "global-roads-open-access-v1/data-download"
+ ),
+ paste0(
+ "https://sedac.ciesin.columbia.edu/data/set/gpw-v4-",
+ "population-density-adjusted-to-2015-unwpp-country-",
+ "totals-rev11"
+ ),
+ "https://modis.gsfc.nasa.gov/data/"
+)
+source <- paste0(
+ "[",
+ source,
+ "](",
+ link,
+ ")"
+)
+
+functions_sources <- data.frame(functions, source)
+colnames(functions_sources) <- c("Function", "Source")
+kable(functions_sources,
+ caption =
+ "Source-Specific Download Functions and Sources"
+)
+```
+
+It is important to note that `data_download()` calls a source-specific function based on the `dataset_name =` parameter. Using the source-specific function directly will return the exact same data (**if the parameters are the same**), but `data_download()` may be beneficial if using a `for` loop to download data from various sources. For example, `download_data(dataset_name = "hms", ...)` will return the same data as `download_noaa_hms_smoke(...)` assuming that `...` indicates the same parameters.
+
+### Parameters
+
+User-defined parameters differ based on the data source. Required parameters for each source can be checked with `names(formals())`.
+
+```{r}
+names(formals(download_noaa_hms_smoke_data))
+names(formals(download_narr_monolevel_data))
+```
+
+The two functions have different required parameters because `download_noaa_hms_smoke_data()` uses a daily temporal resolution while `download_narr_monolevel_data()` uses yearly, but they share some common, standard parameters.
+
+#### Standard parameters
+
+Four parameters are included in all of the data download functions.
+
+```{r, echo = FALSE}
+parameter <- c(
+ "directory_to_save",
+ "data_download_acknowledgement",
+ "download", "remove_command"
+)
+type <- c("Character", "Logical", "Logical", "Logical")
+description <- c(
+ paste0(
+ "There must be a directory to save downloaded ",
+ "data. Default = './input/DATASET_NAME/'."
+ ),
+ paste0(
+ "User must acknowledge that downloading geospatial ",
+ "data can be very lage and may use lots of machine ",
+ "storage and memory."
+ ),
+ paste0(
+ "Run or skip the data download. Utilized primarily ",
+ "for unit tests (see [Unit Tests])."
+ ),
+ paste0(
+ "Remove or retain the text file containing the ",
+ "generated download commands. Utilized primarily ",
+ "for unit tests (see [Unit Tests] and [4. Initiate ",
+ "\"...commands.txt\"])."
+ )
+)
+parameter_descriptions <- data.frame(parameter, type, description)
+colnames(parameter_descriptions) <- c("Parameter", "Type", "Description")
+kable(parameter_descriptions)
+```
+
+Additionally, the `dataset_name =` parameter must be specified when using `data_download()`, but is assumed when using a source-specific download function.
+
+### Function Structure
+
+Although each source-specific download function is unique, they all follow the same general structure. The following chunks of code have been **adopted** from `download_noaa_hms_smoke_data()` to demonstrate the functions' structure.
+
+[1. Clean Parameters]
+
+[2. Generate Download URLs]
+
+[3. Generate download file names]
+
+[4. Initiate "...commands.txt"]
+
+[5. Concatenate download commands]
+
+[6. Finalize "...commands.txt"]
+
+[7. Run commands in "...commands.txt"]
+
+[8. Zip files (if applicable)](#zip-files-if-applicable)
+
+#### 1. Clean parameters
+
+Cleaning the user-defined parameters is highly dependent on the parameters themselves and the desired URL to be created. A common parameter cleaning step is creating a date-time sequence based on a given temporal range and required format, in this case `YYYYMMDD`.
+
+```{r}
+# user defined parameters
+date_start <- "2023-12-28"
+date_end <- "2024-01-02"
+```
+
+```{r}
+date_sequence <- seq(
+ as.Date(date_start, format = "%Y-%m-%d"),
+ as.Date(date_end, format = "%Y-%m-%d"),
+ "day"
+)
+date_sequence <- gsub("-", "", as.character(date_sequence))
+date_sequence
+```
+
+#### 2. Generate download URLs
+
+The URL base and pattern are identified by manually inspecting the download link on the source-specific web page. `download_noaa_hms_smoke_data()` utilizes the year, month, date, and data format to generate the download url.
+
+```{r}
+# user defined parameters
+data_format <- "Shapefile"
+suffix <- ".zip"
+```
+
+```{r}
+urls <- NULL
+for (d in seq_along(date_sequence)) {
+ year <- substr(date_sequence[d], 1, 4)
+ month <- substr(date_sequence[d], 5, 6)
+ base <- "https://satepsanone.nesdis.noaa.gov/pub/FIRE/web/HMS/Smoke_Polygons/"
+ url <- paste0(
+ base,
+ data_format,
+ "/",
+ year,
+ "/",
+ month,
+ "/hms_smoke",
+ date_sequence[d],
+ suffix
+ )
+ urls <- c(urls, url)
+}
+urls
+```
+
+A download URL is created for each date in `date_sequence` based on the fixed pattern.
+
+#### 3. Generate download file names
+
+The generation of download file names also follows a fixed pattern, typically a combination of the user-defined download directory, data set name, spatiotemporal characteristic, data type, and, if applicable, specific variable name. Unlike the download URLs, the download file names can be defined in any way by the writer of the function, but using the previously defined characteristics is useful for identification.
+
+```{r}
+# user defined parameters
+directory_to_download <- "./data/"
+```
+
+```{r}
+download_file_names <- NULL
+for (d in seq_along(date_sequence)) {
+ download_file_name <- paste0(
+ directory_to_download,
+ "hms_smoke_",
+ data_format,
+ "_",
+ date_sequence[d],
+ suffix
+ )
+ download_file_names <- c(download_file_names, download_file_name)
+}
+download_file_names
+```
+
+A download URL is created for each date in `date_sequence` based on the fixed pattern.
+
+#### 4. Initiate "...commands.txt"
+
+An important aspect of the data download function is its `sink()...cat()...sink()` structure. Rather than using the `utils::download.file()` function, a text file is created to store all of the download commands generated from the URLs and file names.
+
+This structure is utilized for several reasons:
+
+- Consistent structure for all the source-specific download functions.
+
+- The `download.file()` function cannot accept vectors of URLs and destination files for downloading. An additional `for` loop to download data will increase function complexity and may reduce performance.
+
+- Writing commands in Bash (Unix shell) script allows for specific arguments and flags.
+
+- Storing the download URLs without immediately running the download allows for unit testing and URL checking (more on this in [Unit Tests]).
+
+The text file containing the download commands is named based on the data set, temporal range, and data transfer method.
+
+```{r}
+commands_txt <- paste0(
+ directory_to_download,
+ "hms_smoke_",
+ head(date_sequence, n = 1),
+ "_",
+ tail(date_sequence, n = 1),
+ "_curl_commands.txt"
+)
+```
+
+Create and sink the text file.
+
+```{r, eval = FALSE}
+sink(commands_txt)
+```
+
+#### 5. Concatenate download commands
+
+The Linux-based download commands are written according to the data transfer method, download URL, download file name, and additional arguments. Which additional arguments are included, and their order, depend on the data transfer method and URL type.
+
+For more information on `curl` and `wget`, the two data transfer methods utilized by the data download functions, see [curl.1 the man page](https://curl.se/docs/manpage.html) and [GNU Wget 1.21.1-dirty Manual](https://www.gnu.org/software/wget/manual/wget.html) (latest version as of January 8, 2024).
+
+The `cat()` function will store each of the download commands written in the `for` loop to the previously sunk commands text file (`commands_txt`).
+
+```{r, eval = FALSE}
+for (d in seq_along(date_sequence)) {
+ download_comamnd <- paste0(
+ "curl -s -o ",
+ download_file_names[d],
+ " --url ",
+ urls[d],
+ "\n"
+ )
+ cat(download_comamnd)
+}
+```
+
+#### 6. Finalize "...commands.txt"
+
+After the download commands have been concatenated to the commands text file, a second `sink()` command is run to finalize the file and stop the appending of R output.
+
+```{r, eval = FALSE}
+sink()
+```
+
+#### 7. Run commands in "...commands.txt"
+
+A "system command" must be created to run all of the download commands stored in the commands text file. In bash script, `.` indicates to run all of the commands within a given script. In this case, we will run all of the commands within the commands text file.
+
+```{r}
+system_command <- paste0(
+ ". ",
+ commands_txt,
+ "\n"
+)
+system_command
+```
+
+Running the `system_command` deploys a "helper function", `download_run()`, a function created to reduce repeated code across the source-specific download functions. The function takes two parameters, `system_command =`, which indicates the command to be run, and `download =`, a user-defined logical parameter.
+
+```{r}
+download_run <- function(
+ download = FALSE,
+ system_command = NULL) {
+ if (download == TRUE) {
+ cat(paste0("Downloading requested files...\n"))
+ system(command = system_command)
+ cat(paste0("Requested files have been downloaded.\n"))
+ } else {
+ cat(paste0("Skipping data download.\n"))
+ return(NULL)
+ }
+}
+```
+
+The data download is initiated by running `download_run()` with the system command identified and `download = TRUE`.
+
+```{r, eval = FALSE}
+download_run(
+ download = TRUE,
+ system_command = system_command
+)
+```
+
+Checking the download directory shows that all of the requested files have been downloaded.
+
+```{r, eval = FALSE}
+list.files(path = directory_to_download)
+```
+
+```{r, echo = FALSE}
+paste0("hms_smoke_Shapefile_", date_sequence, ".zip")
+```
+
+
+#### 8. Zip files (if applicable) {#zip-files-if-applicable}
+
+All of the source-specific data download functions follow this general pattern, but those functions which download zip files require additional steps to inflate and remove the downloaded zip files, if desired. Each of these two steps are run by helper functions, and they are run by the user-defined `unzip = ` and `remove_zip = ` parameters in `data_download()`.
+
+`download_unzip()` inflates zip files if `unzip = TRUE`, and skips inflation if `unzip = FALSE`.
+
+```{r}
+download_unzip <-
+ function(file_name,
+ directory_to_unzip,
+ unzip = TRUE) {
+ if (!unzip) {
+ cat(paste0("Downloaded files will not be unzipped.\n"))
+ return(NULL)
+ }
+ cat(paste0("Unzipping files...\n"))
+ unzip(file_name,
+ exdir = directory_to_unzip
+ )
+ cat(paste0(
+ "Files unzipped and saved in ",
+ directory_to_unzip,
+ ".\n"
+ ))
+ }
+```
+
+`download_remove_zips()` removes the downloaded zip files if `remove = TRUE`, and skips removal if `remove = FALSE`.
+
+```{r}
+download_remove_zips <-
+ function(remove = FALSE,
+ download_name) {
+ if (remove) {
+ cat(paste0("Removing download files...\n"))
+ file.remove(download_name)
+ cat(paste0("Download files removed.\n"))
+ }
+ }
+```
+
+For this demonstration we will unzip (inflate) the downloaded zip files but we will not delete them.
+
+```{r, eval = FALSE}
+for (f in seq_along(download_file_names)) {
+ download_unzip(
+ file_name = download_file_names[f],
+ directory_to_unzip = directory_to_download,
+ unzip = TRUE
+ )
+}
+download_remove_zips(
+ download_name = download_file_names,
+ remove = FALSE
+)
+```
+
+```{r, echo = FALSE}
+for (f in seq_along(download_file_names)) {
+ cat(paste0("Unzipping files...\n"))
+ cat(paste0(
+ "Files unzipped and saved in ",
+ directory_to_download,
+ ".\n"
+ ))
+}
+```
+
+
+Listing the files again shows that the contents of the zip files have been inflated and the zip files have been retained.
+
+```{r, eval = FALSE}
+list.files(path = directory_to_download)
+```
+
+```{r, echo = FALSE}
+zips <- paste0("hms_smoke_Shapefile_", date_sequence, ".zip")
+for (s in seq_along(date_sequence)) {
+ shps <- c(
+ paste0("hms_smoke", date_sequence[s], ".dbf"),
+ paste0("hms_smoke", date_sequence[s], ".prj"),
+ paste0("hms_smoke", date_sequence[s], ".shp"),
+ paste0("hms_smoke", date_sequence[s], ".shx")
+ )
+ zips <- c(zips, shps)
+}
+zips
+```
+
+The download function was structured successfully.
+
+## Unit Tests
+
+The previous outline successfully cleaned parameters, generated URLs, and downloaded data, but how can we be sure that it will continue to work with different temporal ranges and data types? To this end, unit tests have been implemented to ensure that each data download function runs properly and that URLs produced by [2. Generate download URLs] are valid and accessible. Like the download functions, the unit tests rely on "helper" functions to reduce repeated code across the tests.
+
+### Helper functions
+
+`read_commands()` imports the commands text file and converts the data frame to a vector.
+
+```{r}
+read_commands <- function(
+ commands_path = commands_path) {
+ commands <- utils::read.csv(commands_path, header = FALSE)
+ commands <- commands[seq_len(nrow(commands)), ]
+ return(commands)
+}
+```
+
+`extract_urls()` extracts each download URL from the vector of commands. The `position =` of the URL within the download command is determined in [5. Concatenate download commands].
+
+```{r}
+# function to extract URLs from vector
+extract_urls <- function(
+ commands = commands,
+ position = NULL) {
+ if (is.null(position)) {
+ cat(paste0("URL position in command is not defined.\n"))
+ return(NULL)
+ }
+ url_list <- NULL
+ for (c in seq_along(commands)) {
+ url <- stringr::str_split_i(commands[c], " ", position)
+ url_list <- c(url_list, url)
+ }
+ return(url_list)
+}
+```
+
+`check_url_status()` is the most important of the download test "helper" functions. This function utilizes `httr::HEAD()` and `httr::GET()` to check the HTTP response status of a given URL. The desired HTTP response status is 200, which means the URL is valid and accessible. `check_url_status()` returns a logical value to indicate whether the URL returns HTTP status 200 (`TRUE`) or not (`FALSE`). For more information on HTTP status', see [HTTP response status codes](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status).
+
+```{r}
+check_url_status <- function(
+ url,
+ method = "HEAD") {
+ http_status_ok <- 200
+ if (method == "HEAD") {
+ hd <- httr::HEAD(url)
+ } else if (method == "GET") {
+ hd <- httr::GET(url)
+ }
+ status <- hd$status_code
+ return(status == http_status_ok)
+}
+```
+
+`check_urls()` applies `check_url_status()` to a random sample of URLs extracted by `extract_urls()`. The sample size will vary based on the data set and spatio-temporal parameters being tested. The function returns a logical vector containing the output from `check_url_status()`.
+
+```{r}
+check_urls <- function(
+ urls = urls,
+ size = NULL,
+ method = "HEAD") {
+ if (is.null(size)) {
+ cat(paste0("URL sample size is not defined.\n"))
+ return(NULL)
+ }
+ if (length(urls) < size) {
+ size <- length(urls)
+ }
+ url_sample <- sample(urls, size, replace = FALSE)
+ url_status <- sapply(url_sample,
+ check_url_status,
+ method = method
+ )
+ return(url_status)
+}
+```
+
+### testthat
+
+To demonstrate a test in action, test the URLs generated by `download_data()` for the NOAA HMS Smoke data set.
+
+For more information see [testthat](https://testthat.r-lib.org/).
+
+```{r, eval = FALSE}
+library(testthat)
+testthat::test_that(
+ "Valid dates return HTTP response status = 200.",
+ {
+ # parameters
+ test_start <- "2023-12-28"
+ test_end <- "2024-01-02"
+ test_directory <- "./data"
+ # download
+ download_data(
+ dataset_name = "noaa",
+ date_start = test_start,
+ date_end = test_end,
+ data_format = "Shapefile",
+ directory_to_download = test_directory,
+ directory_to_save = test_directory,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE
+ )
+ commands_path <- paste0(
+ test_directory,
+ "hms_smoke_",
+ gsub("-", "", test_start),
+ "_",
+ gsub("-", "", test_end),
+ "_curl_commands.txt"
+ )
+ # helpers
+ commands <- read_commands(commands_path = commands_path)
+ urls <- extract_urls(commands = commands, position = 6)
+ url_status <- check_urls(urls = urls, size = 6, method = "HEAD")
+ # test for true
+ expect_true(all(url_status))
+ }
+)
+```
+
+```{r, echo = FALSE}
+library(testthat)
+testthat::test_that(
+ "Valid dates return HTTP response status = 200.",
+ {
+ # parameters
+ test_start <- "2023-12-28"
+ test_end <- "2024-01-02"
+ test_directory <- "../inst/extdata/"
+ # download
+ download_data(
+ dataset_name = "noaa",
+ date_start = test_start,
+ date_end = test_end,
+ data_format = "Shapefile",
+ directory_to_download = test_directory,
+ directory_to_save = test_directory,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE
+ )
+ commands_path <- paste0(
+ test_directory,
+ "hms_smoke_",
+ gsub("-", "", test_start),
+ "_",
+ gsub("-", "", test_end),
+ "_curl_commands.txt"
+ )
+ # helpers
+ commands <- read_commands(commands_path = commands_path)
+ urls <- extract_urls(commands = commands, position = 6)
+ url_status <- check_urls(urls = urls, size = 6, method = "HEAD")
+ # test for true
+ expect_true(all(url_status))
+ # remove after test
+ file.remove(commands_path)
+ }
+)
+```
+
+
+Although the `testthat::test_that(...)` chunk contains 32 lines of code, the unit test is performed by `expect_true(all(url_status))`. In words, this line is expecting (`expect_true()`) that all (`all()`) of the sampled URLs return HTTP response status 200 (`url_status`). Since this expectation was met, the test passed!
+
+For an alternate example, we can use a start and end date that are known to not have data. As the URLs associated with these dates do not exist, we expect the function will fail. This test utilizes `expect_error()` because the `data_download()` wrapper function returns an error message if the underlying source-specific download function returns an error.
+
+```{r}
+testthat::test_that(
+ "Invalid dates cause function to fail.",
+ {
+ # parameters
+ test_start <- "1800-01-01"
+ test_end <- "1800-01-02"
+ test_directory <- "../inst/extdata/"
+ # test for error
+ testthat::expect_error(
+ download_data(
+ dataset_name = "noaa",
+ date_start = test_start,
+ date_end = test_end,
+ data_format = "Shapefile",
+ directory_to_download = test_directory,
+ directory_to_save = test_directory,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE
+ )
+ )
+ }
+)
+```
+
+
+This test utilizes `expect_error()` because the `data_download()` wrapper function returns an error message if the underlying source-specific download function returns an error. If we directly used the `download_noaa_hms_smoke` function, we would expect and receive an error.
+
+```{r}
+testthat::test_that(
+ "Invalid dates cause function to fail.",
+ {
+ # parameters
+ test_start <- "1800-01-01"
+ test_end <- "1800-01-02"
+ test_directory <- "../inst/extdata/"
+ # test for error
+ testthat::expect_error(
+ download_noaa_hms_smoke_data(
+ date_start = test_start,
+ date_end = test_end,
+ data_format = "Shapefile",
+ directory_to_download = test_directory,
+ directory_to_save = test_directory,
+ data_download_acknowledgement = TRUE,
+ download = FALSE,
+ remove_command = FALSE,
+ unzip = FALSE,
+ remove_zip = FALSE
+ )
+ )
+ }
+)
+```
+
+
+As expected, the test passes because the NOAA HMS Smoke data set does not contain data for January 1-2, 1800.
+
+These unit tests are just two of many implemented on `download_data()` and the accompanying source-specific download functions, but they demonstrate how unit testing helps build stable code.
+
+## Download Example
+
+With the function structure outlined and the unit tests in place, we can now perform a data download. To begin, check the parameters required by the source-specific data download function.
+
+```{r}
+names(formals(download_noaa_hms_smoke_data))
+```
+
+Define the parameters.
+
+```{r}
+date_start <- "2023-12-28"
+date_end <- "2024-01-02"
+data_format <- "Shapefile"
+data_directory <- "./download_example/"
+data_download_acknowledgement <- TRUE
+download <- TRUE # run data download
+remove_command <- TRUE # delete "...commands.txt" file
+unzip <- TRUE # inflate (unzip) downloaded zip files
+remove_zip <- FALSE # retain downloaded zip files
+```
+
+Download the data.
+
+```{r, eval = FALSE}
+download_data(
+ dataset_name = "hms",
+ date_start = date_start,
+ date_end = date_end,
+ directory_to_download = data_directory,
+ directory_to_save = data_directory,
+ data_download_acknowledgement = data_download_acknowledgement,
+ download = download,
+ remove_command = remove_command,
+ unzip = unzip,
+ remove_zip = remove_zip
+)
+```
+
+```{r, echo = FALSE}
+to_cat <-
+ paste0(
+ "Downloading requested files...\n",
+ "Requested files have been downloaded.\n"
+ )
+cat(to_cat)
+for (f in seq_along(download_file_names)) {
+ cat(paste0("Unzipping files...\n"))
+ cat(paste0(
+ "Files unzipped and saved in ",
+ data_directory,
+ ".\n"
+ ))
+}
+```
+
+Checking the directory shows that all of our desired data has been downloaded and inflated, and the original zip files have been retained.
+
+```{r, eval = FALSE}
+list.files(data_directory)
+```
+
+```{r, echo = FALSE}
+zips <- paste0("hms_smoke_Shapefile_", date_sequence, ".zip")
+for (s in seq_along(date_sequence)) {
+ shps <- c(
+ paste0("hms_smoke", date_sequence[s], ".dbf"),
+ paste0("hms_smoke", date_sequence[s], ".prj"),
+ paste0("hms_smoke", date_sequence[s], ".shp"),
+ paste0("hms_smoke", date_sequence[s], ".shx")
+ )
+ zips <- c(zips, shps)
+}
+zips
+```
+
+## NASA EarthData Account
+
+As mentioned in [Motivation], `data_download()` provides access to **publicly available** geospatial data. Although publicly available, some of the NASA data sources require a NASA EarthData Account.
+
+For example, the UN WPP-Adjusted population density data from NASA Socioeconomic Data and Applications Center (SEDAC) requires an EarthData account. Without an EarthData Account and the prerequisite files prepared, the data download functions will return an error.
+
+```{r, eval = FALSE}
+download_data(
+ dataset_name = "sedac_population",
+ year = "2020",
+ data_format = "GeoTIFF",
+ data_resolution = "60 minute",
+ directory_to_download = "./sedac_population/",
+ directory_to_save = "./sedac_population",
+ data_download_acknowledgement = TRUE,
+ download = TRUE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ remove_command = TRUE
+)
+```
+
+```{r, echo = FALSE}
+to_cat <-
+ paste0(
+ "Downloading requested files...\n",
+ "Requested files have been downloaded.\n",
+ "Unzipping files...\n\n",
+ "Warning in unzip(file_name, exdir = directory_to_unzip): ",
+ "error 1 in extracting from zip file\n\n",
+ "Files unzipped and saved in ./sedac_population/.\n\n"
+ )
+cat(to_cat)
+```
+
+The downloaded file cannot be unzipped because the data was not downloaded properly.
+
+### Register or log in
+
+Visit [https://urs.earthdata.nasa.gov/](http://urs.earthdata.nasa.gov) to register for or log into a NASA EarthData account.
+
+![NASA EarthData Account Landing Page](../inst/extdata/vignette_images/NASA_EarthData_login.png)
+
+Account registration provides access to NASA's Earth Observing System Data and Information System (EOSDIS) and its twelve Distributed Active Archive Centers (DAAC), including:
+
+- Alaska Satellite Facility (ASF) DAAC
+- Atmospheric Science Data Center (ASDC)
+- Crustal Dynamics Data Information System (CDDIS)
+- Global Hydrometeorology Resource Center (GHRC)
+- Goddard Earth Sciences Data and Information Services Center (GES DISC)
+- Land Processes DAAC (LP DAAC)
+- Level 1 and Atmosphere Archive and Distribution System (LAADS) DAAC
+- National Snow and Ice Data Center (NSIDC) DAAC
+- Oak Ridge National Laboratory (ORNL) DAAC
+- Ocean Biology DAAC (OB.DAAC)
+- Physical Oceanography DAAC (PO.DAAC)
+- Socioeconomic Data and Applications Center (SEDAC)
+
+See for more information.
+
+### Approved applications
+
+After creating an account, navigate to "My Profile"(https://urs.earthdata.nasa.gov/profile), and then to "Applications \> Authorized Apps". This "Authorized Apps" page specifies which NASA EarthData applications can use your login credentials. For this example, ensure that authorization is enabled for "SEDAC Website", "SEDAC Website (Alpha)", and "SEDAC Website (Beta)".
+
+![NASA EarthData Approved Applications](../inst/extdata/vignette_images/NASA_EarthData_applications.png)
+
+### Prerequisite files
+
+With a NASA EarthData Account and the required applications authorized to use the credentials, it is time to create the prerequisite files.
+
+**Note** As the steps to produce the prerequisite files is very specific, much of the code used is adopted from [How to Generate Earthdata Prerequisite Files](https://disc.gsfc.nasa.gov/information/howto?title=How%20to%20Generate%20Earthdata%20Prerequisite%20Files) on NASA GES DISC's "How-To's" webpage ([link](https://disc.gsfc.nasa.gov/information/howto)).
+
+#### `.netrc`
+
+The following commands create the `.netrc` file, which contains your NASA EarthData Account credentials.
+
+First, set your working directory to the home directory. Setting a working directory differs between Mac/Linux and Windows machines.
+
+```{r, eval = FALSE}
+if (.Platform$OS.type == "unix") {
+ setwd("~/")
+} else if (.Platform$OS.type == "windows") {
+ setwd("C:/")
+}
+```
+
+Create a file named `.netrc` with `file.create()`.
+
+```{r, eval = FALSE}
+file.create(".netrc")
+```
+
+Open a connection to `.netrc` with `sink()`. Write the line `machine urs...` replacing `YOUR_USERNAME` and `YOUR_PASSWORD` with your NASA EarthData username and password, respectively. After writing the line, close the connection with `sink()` again.
+
+```{r, eval = FALSE}
+sink(".netrc")
+writeLines(
+ "machine urs.earthdata.nasa.gov login YOUR_USERNAME password YOUR_PASSWORD"
+)
+sink()
+```
+
+Edit the settings so only you, the owner of the file, can read and write `.netrc`.
+
+```{r, eval = FALSE}
+system("chmod 0600 .netrc")
+```
+
+After, check to ensure the file was created properly.
+
+```{r, eval = FALSE}
+file.exists(".netrc")
+```
+
+```{r, echo = FALSE}
+TRUE
+```
+
+```{r, eval = FALSE}
+readLines(".netrc")
+```
+
+```{r, echo = FALSE}
+paste0(
+ "machine urs.earthdata.nasa.gov login YOUR_USERNAME password YOUR_PASSWORD"
+)
+```
+
+
+#### `.urs_cookies`
+
+The following commands create the `.urs_cookies` file.
+
+First, set your working directory to the home directory.
+
+```{r, eval = FALSE}
+if (.Platform$OS.type == "unix") {
+ setwd("~/")
+} else if (.Platform$OS.type == "windows") {
+ setwd("C:/")
+}
+```
+
+Create a file named `.netrc` with `file.create()`.
+
+```{r, eval = FALSE}
+file.create(".urs_cookies")
+```
+
+After, check to ensure the file was created properly.
+
+```{r, eval = FALSE}
+file.exists(".urs_cookies")
+```
+
+```{r, echo = FALSE}
+TRUE
+```
+
+#### `.dodsrc`
+
+The following commands create the `.urs_cookies` file.
+
+First, set your working directory to the home directory.
+
+```{r, eval = FALSE}
+if (.Platform$OS.type == "unix") {
+ setwd("~/")
+} else if (.Platform$OS.type == "windows") {
+ setwd("C:/")
+}
+```
+
+Create a file named ".dodsrc" with `file.create()`
+
+```{r, eval = FALSE}
+file.create(".dodsrc")
+```
+
+Open a connection to `.dodsrc` with `sink()`. Write the lines beginning with `HTTP.`, replacing `YOUR_USERNAME` and `YOUR_PASSWORD` with your NASA EarthData username and password, respectively. After writing the line, close the connection with `sink()` again.
+
+```{r, eval = FALSE}
+sink(".dodsrc")
+writeLines(
+ paste0(
+ "HTTP.NETRC=YOUR_HOME_DIRECTORY/.netrc\n",
+ "HTTP.COOKIE.JAR=YOUR_HOME_DIRECTORY/.urs_cookies"
+ )
+)
+sink()
+```
+
+After, check to ensure the file was created properly.
+
+```{r, eval = FALSE}
+file.exists(".dodsrc")
+```
+
+```{r, echo = FALSE}
+TRUE
+```
+
+```{r, eval = FALSE}
+readLines(".dodsrc")
+```
+
+```{r, echo = FALSE}
+paste0(
+ c(
+ "HTTP.NETRC=YOUR_HOME_DIRECTORY/.netrc",
+ "HTTP.COOKIE.JAR=YOUR_HOME_DIRECTORY/.urs_cookies"
+ )
+)
+```
+
+If working on a **Windows** machine, copy the `.dodsrc` file to the project working directory. Replace `YOUR_WORKING_DIRECTORY` with the absolute path to the project working directory.
+
+```{r}
+if (.Platform$OS.type == "windows") {
+ file.copy(
+ "C:/.dodsrc",
+ "YOUR_WORKING_DIRECTORY/.dodsrc"
+ )
+}
+```
+
+It is important to ensure that these commands, as well as your username, password, and home directory, are typed without error, as a single problem with any of these files will result in a failed download.
+
+If the files have been created correctly, the UN WPP-Adjusted population density data from NASA Socioeconomic Data and Applications Center (SEDAC) will be downloaded and unzipped without returning an error.
+
+```{r, eval = FALSE}
+download_data(
+ dataset_name = "sedac_population",
+ year = "2020",
+ data_format = "GeoTIFF",
+ data_resolution = "60 minute",
+ directory_to_download = "./sedac_population/",
+ directory_to_save = "./sedac_population",
+ data_download_acknowledgement = TRUE,
+ download = TRUE,
+ unzip = TRUE,
+ remove_zip = FALSE,
+ remove_command = TRUE
+)
+```
+
+```{r, echo = FALSE}
+to_cat <-
+ paste0(
+ "Downloading requested files...\n",
+ "Requested files have been downloaded.\n",
+ "Unzipping files...\n",
+ "Files unzipped and saved in ./sedac_population/.\n"
+ )
+cat(to_cat)
+```
+
+```{r, eval = FALSE}
+list.files("./sedac_population")
+```
+
+```{r, echo = FALSE}
+sedac_files <- c(
+ paste0(
+ "gpw_v4_population_density_adjusted_to_2015_unwpp_country_totals_",
+ "rev11_2020_1_deg_tif_readme.txt"
+ ),
+ paste0(
+ "gpw_v4_population_density_adjusted_to_2015_unwpp_country_totals_",
+ "rev11_2020_1_deg_tif.zip"
+ ),
+ paste0(
+ "gpw_v4_population_density_adjusted_to_2015_unwpp_country_totals_",
+ "rev11_2020_1_deg.tif"
+ )
+)
+sedac_files
+```
+
+## References
+
+- EOSDIS Distributed Active Archive Centers (DAAC). *National Aeronautics and Space Administration (NASA)*. Date accessed: January 3, 2024. [https://www.earthdata.nasa.gov/eosdis/daacs]().
+- How to Generate Earthdata Prerequisite Files. *National Aeronautics and Space Administration (NASA)*. Date accessed: January 3, 2024. [https://disc.gsfc.nasa.gov/information/howto?title=How%20to%20Generate%20Earthdata%20Prerequisite%20Files]().
+
+## Code Example
+
+The following is the entire R code used to create `download_noaa_hms_smoke_data()`.
+
+```{r}
+download_noaa_hms_smoke_data
+```
diff --git a/vignettes/epa_download.Rmd b/vignettes/epa_download.Rmd
new file mode 100644
index 00000000..b359577c
--- /dev/null
+++ b/vignettes/epa_download.Rmd
@@ -0,0 +1,157 @@
+---
+title: "Downloading EPA Daily Data"
+output: rmarkdown::html_vignette
+vignette: >
+ %\VignetteIndexEntry{Downloading EPA Daily Data}
+ %\VignetteEngine{knitr::rmarkdown}
+ %\VignetteEncoding{UTF-8}
+date: "2023-08-21"
+author: "Mariana Alifa"
+---
+
+```{r setup, include=FALSE}
+knitr::opts_chunk$set(echo = TRUE)
+```
+## Downloading and pre-processing pre-generated EPA AQS data from their website
+
+This script downloads pre-processed data from EPA's AQS data for the desired
+variable, year(s), and temporal resolution.
+
+The script also joins multiple years' data into a single data frame,
+and downloads a file with metadata about all the monitors
+included in the dataset.
+
+The first version of this script (August 2023) is written to download daily
+PM2.5 data for the period 2018-2022.
+
+Available datasets can be found at the website
+.
+
+#### 1. Setting up for data download
+Specifying temporal resolution, parameter of interest, and year
+```{r}
+resolution <- "daily"
+parameter_code <- 88101 # Parameter Code for PM2.5 local conditions
+startyear <- 2018
+endyear <- 2022
+```
+Create a list of file URLs
+```{r}
+file_urls <- sprintf(
+ paste("https://aqs.epa.gov/aqsweb/airdata/", resolution,
+ "_", parameter_code, "_%.0f.zip",
+ sep = ""
+ ),
+ startyear:endyear
+)
+file_urls
+```
+Specify download folder and desired name of the downloaded zip files
+```{r}
+download_dir <- "../input/aqs/"
+download_names <- sprintf(
+ paste(download_dir,
+ "download_output_%.0f.zip",
+ sep = ""
+ ),
+ startyear:endyear
+)
+download_names
+```
+#### 2. Downloading data
+Download zip files from website
+```{r, eval = FALSE}
+download.file(file_urls, download_names, method = "libcurl")
+```
+
+Construct string with unzipped file names
+```{r}
+csv_names <- sprintf(
+ paste(download_dir, resolution, "_",
+ parameter_code, "_%.0f.csv",
+ sep = ""
+ ),
+ startyear:endyear
+)
+```
+#### 3. Processing data
+Unzip and read in .csv files, process and join in one dataframe.
+The unique site identifier "ID.Code" is a string with the structure
+State-County-Site-Parameter-POC
+```{r, eval = FALSE}
+for (n in seq_along(file_urls)) {
+ # Unzips file to same folder it was downloaded to
+ unzip(download_names[n], exdir = download_dir)
+
+ # Read in dataframe
+ print(paste("reading and processing file:", csv_names[n], "..."))
+ data <- read.csv(csv_names[n], stringsAsFactors = FALSE)
+
+ # Make unique site identifier: State-County-Site-Parameter-POC
+ data$ID.Code <- paste(data$State.Code, data$County.Code,
+ data$Site.Num, data$Parameter.Code,
+ data$POC,
+ sep = "-"
+ )
+
+ # Concatenate with other years
+ if (n == 1) {
+ data_all <- data
+ } else {
+ data_all <- rbind(data_all, data)
+ }
+}
+```
+```{r, echo = FALSE}
+for (c in seq_along(csv_names)) {
+ print(paste0("reading and processing file:", csv_names[c], "..."))
+}
+```
+
+
+#### 4. Downloading monitor metadata file and filter for relevant sites
+Download monitors file
+```{r, eval = FALSE}
+destfile <- paste(download_dir, "aqs_monitors.zip", sep = "")
+download.file("https://aqs.epa.gov/aqsweb/airdata/aqs_monitors.zip", destfile)
+```
+
+Unzip and read in
+```{r, eval = FALSE}
+unzip(destfile, exdir = download_dir)
+monitors <- read.csv("../input/aqs/aqs_monitors.csv", stringsAsFactors = FALSE)
+```
+
+Create site identifier
+```{r, eval = FALSE}
+# Convert from string to numeric to get rid of leading zeros,
+# the NAs introduced are from monitors in Canada with site number="CC"
+monitors$State.Code <- as.numeric(monitors$State.Code)
+monitors$ID.Code <- paste(monitors$State.Code, monitors$County.Code,
+ monitors$Site.Num, monitors$Parameter.Code,
+ monitors$POC,
+ sep = "-"
+)
+monitors <- read.csv("../input/aqs/aqs_monitors.csv",
+ stringsAsFactors = FALSE
+)
+```
+
+Filter monitors file to include only monitors in our csv
+```{r, eval = FALSE}
+monitors_filter <- monitors[which(monitors$ID.Code %in% data_all$ID.Code), ]
+```
+
+#### 5. Uploading data to desired folder
+```{r, eval = FALSE}
+savepath <- "../input/aqs/"
+
+write.csv(data_all, paste(savepath, resolution, "_", parameter_code, "_",
+ startyear, "-", endyear, ".csv",
+ sep = ""
+))
+write.csv(monitors_filter, paste(savepath, "monitors_", parameter_code, "_",
+ startyear, "-", endyear, ".csv",
+ sep = ""
+))
+```